diff --git a/Build/package-lock.json b/Build/package-lock.json index aa0d527d0fcbc4edc8aba7b1811b36c739d62883..fbad779b4ffcbfed428efec13616b5f5e76583fb 100644 --- a/Build/package-lock.json +++ b/Build/package-lock.json @@ -18,6 +18,7 @@ "@ckeditor/ckeditor5-engine": "^41.1.0", "@ckeditor/ckeditor5-essentials": "^41.1.0", "@ckeditor/ckeditor5-find-and-replace": "^41.1.0", + "@ckeditor/ckeditor5-font": "^41.1.0", "@ckeditor/ckeditor5-heading": "^41.1.0", "@ckeditor/ckeditor5-horizontal-line": "^41.1.0", "@ckeditor/ckeditor5-html-support": "^41.1.0", @@ -586,6 +587,14 @@ "lodash-es": "4.17.21" } }, + "node_modules/@ckeditor/ckeditor5-font": { + "version": "41.1.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-41.1.0.tgz", + "integrity": "sha512-z0OA6GWBP4NCB//73E5Xu8ku42Odhzkby0if+fAMGi/0vWPT3sDOnRbmewRHkVUTT73iriB5FKoMxCrkkJ8FFQ==", + "dependencies": { + "ckeditor5": "41.1.0" + } + }, "node_modules/@ckeditor/ckeditor5-heading": { "version": "41.1.0", "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-41.1.0.tgz", diff --git a/Build/package.json b/Build/package.json index eaa0a16e02927666f35741bf85d44d2708649016..9cf98b53799ba7b01fb4adaa11d10d1697068032 100644 --- a/Build/package.json +++ b/Build/package.json @@ -101,6 +101,7 @@ "@ckeditor/ckeditor5-engine": "^41.1.0", "@ckeditor/ckeditor5-essentials": "^41.1.0", "@ckeditor/ckeditor5-find-and-replace": "^41.1.0", + "@ckeditor/ckeditor5-font": "^41.1.0", "@ckeditor/ckeditor5-heading": "^41.1.0", "@ckeditor/ckeditor5-horizontal-line": "^41.1.0", "@ckeditor/ckeditor5-html-support": "^41.1.0", diff --git a/Build/web-test-runner.config.mjs b/Build/web-test-runner.config.mjs index f2903602adb0bc2cb9dbeca9f02fa9aae2a988ca..7177b5a04ba192f03c8a70d9a6c3b6ed4b46aac9 100644 --- a/Build/web-test-runner.config.mjs +++ b/Build/web-test-runner.config.mjs @@ -154,6 +154,7 @@ export default { '@ckeditor/ckeditor5-enter': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-enter.js', '@ckeditor/ckeditor5-essentials': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-essentials.js', '@ckeditor/ckeditor5-find-and-replace': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-find-and-replace.js', + '@ckeditor/ckeditor5-font': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-font.js', '@ckeditor/ckeditor5-heading': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-heading.js', '@ckeditor/ckeditor5-horizontal-line': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-horizontal-line.js', '@ckeditor/ckeditor5-html-support': './typo3/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-html-support.js', diff --git a/typo3/sysext/core/Classes/Configuration/CKEditor5Migrator.php b/typo3/sysext/core/Classes/Configuration/CKEditor5Migrator.php index 7b1f6268be3a368600fe9539ebf24dabbbc97b70..783e6fec2d4169b10a2a6f915f7cbe92e2623b01 100644 --- a/typo3/sysext/core/Classes/Configuration/CKEditor5Migrator.php +++ b/typo3/sysext/core/Classes/Configuration/CKEditor5Migrator.php @@ -160,11 +160,11 @@ class CKEditor5Migrator // styles 'Styles' => 'style', 'Format' => 'heading', - 'Font' => null, - 'FontSize' => null, + 'Font' => 'fontFamily', + 'FontSize' => 'fontSize', // colors - 'TextColor' => null, - 'BGColor' => null, + 'TextColor' => 'fontColor', + 'BGColor' => 'fontBackgroundColor', // tools 'Maximize' => null, 'ShowBlocks' => null, @@ -202,6 +202,14 @@ class CKEditor5Migrator 'module' => '@ckeditor/ckeditor5-link', 'exports' => [ 'AutoLink' ], ], + 'font' => [ + 'module' => '@ckeditor/ckeditor5-font', + 'exports' => [ 'Font' ], + ], + 'Font' => [ + 'module' => '@ckeditor/ckeditor5-font', + 'exports' => [ 'Font' ], + ], 'justify' => [ 'module' => '@ckeditor/ckeditor5-alignment', 'exports' => [ 'Alignment' ], diff --git a/typo3/sysext/core/Documentation/Changelog/12.4.x/Important-100847-AddedFontPluginToCKEditor5.rst b/typo3/sysext/core/Documentation/Changelog/12.4.x/Important-100847-AddedFontPluginToCKEditor5.rst new file mode 100644 index 0000000000000000000000000000000000000000..103bf218f970e60bdf64624bdca54edc336ab658 --- /dev/null +++ b/typo3/sysext/core/Documentation/Changelog/12.4.x/Important-100847-AddedFontPluginToCKEditor5.rst @@ -0,0 +1,62 @@ +.. include:: /Includes.rst.txt + +.. _important-100847-1686218342: + +=================================================== +Important: #100847 - Added font plugin to CKEditor5 +=================================================== + +See :issue:`100847` + +Description +=========== + +The font plugin has been added to the CKEditor5. +In order to use the font plugin, the RTE configuration needs to be adapted: + +.. code-block:: yaml + + editor: + config: + toolbar: + items: + # add button to select font family + - fontFamily + # add button to select font size + - fontSize + # add button to select font color + - fontColor + # add button to select font background color + - fontBackgroundColor + + fontColor: + colors: + - { label: 'Orange', color: '#ff8700' } + - { label: 'Blue', color: '#0080c9' } + - { label: 'Green', color: '#209d44' } + + fontBackgroundColor: + colors: + - { label: 'Stage orange light', color: '#fab85c' } + + fontFamily: + options: + - 'default' + - 'Arial, sans-serif' + + fontSize: + options: + - 'default' + - 18 + - 21 + + importModules: + - { 'module': '@ckeditor/ckeditor5-font', 'exports': ['Font'] } + + +More information can be found in the official documentation_. + + +.. _documentation: https://ckeditor.com/docs/ckeditor5/latest/features/font.html + +.. index:: RTE, ext:rte_ckeditor diff --git a/typo3/sysext/core/Tests/Unit/Configuration/CKEditor5MigratorTest.php b/typo3/sysext/core/Tests/Unit/Configuration/CKEditor5MigratorTest.php index 40fd22007966f4852097e3cf49fc50c4ad960fc2..105b39c07551443eadb7abb85baa0177012dbe8e 100644 --- a/typo3/sysext/core/Tests/Unit/Configuration/CKEditor5MigratorTest.php +++ b/typo3/sysext/core/Tests/Unit/Configuration/CKEditor5MigratorTest.php @@ -757,6 +757,8 @@ final class CKEditor5MigratorTest extends UnitTestCase 'items' => [ 'style', 'heading', + 'fontFamily', + 'fontSize', '|', 'bold', 'italic', @@ -890,6 +892,8 @@ final class CKEditor5MigratorTest extends UnitTestCase '-', 'style', 'heading', + 'fontFamily', + 'fontSize', ], 'removeItems' => [], 'shouldNotGroupWhenFull' => true, diff --git a/typo3/sysext/rte_ckeditor/Configuration/JavaScriptModules.php b/typo3/sysext/rte_ckeditor/Configuration/JavaScriptModules.php index e2d03ac4e2c831688eaea41002dbe7daf4bf4bbd..505c10e6e8c45a07ce794aec1244f63236e10301 100644 --- a/typo3/sysext/rte_ckeditor/Configuration/JavaScriptModules.php +++ b/typo3/sysext/rte_ckeditor/Configuration/JavaScriptModules.php @@ -27,6 +27,7 @@ return [ '@ckeditor/ckeditor5-enter' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-enter.js', '@ckeditor/ckeditor5-essentials' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-essentials.js', '@ckeditor/ckeditor5-find-and-replace' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-find-and-replace.js', + '@ckeditor/ckeditor5-font' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-font.js', '@ckeditor/ckeditor5-heading' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-heading.js', '@ckeditor/ckeditor5-horizontal-line' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-horizontal-line.js', '@ckeditor/ckeditor5-html-support' => 'EXT:rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-html-support.js', diff --git a/typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml b/typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml index 09a7013f06c742103cf80f2c318c51a8a5d88c2c..4e3ebaec7987f07b21940d284b6168edda693f5d 100644 --- a/typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml +++ b/typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml @@ -70,6 +70,10 @@ editor: - '-' - style - heading + - fontFamily + - fontBackgroundColor + - fontColor + - fontSize alignment: options: @@ -87,3 +91,29 @@ editor: - tableProperties - tableCellProperties - toggleTableCaption + + fontColor: + colors: + - { label: 'Orange', color: '#ff8700' } + - { label: 'Blue', color: '#0080c9' } + - { label: 'Green', color: '#209d44' } + + fontBackgroundColor: + colors: + - { label: 'Stage orange light', color: '#fab85c' } + + fontFamily: + options: + - 'default' + - 'Arial, sans-serif' + + fontSize: + options: + - 'default' + - 18 + - 21 + + importModules: + - { 'module': '@ckeditor/ckeditor5-font', 'exports': ['Font'] } + - { 'module': '@ckeditor/ckeditor5-show-blocks', 'exports': ['ShowBlocks'] } + - { 'module': '@ckeditor/ckeditor5-word-count', 'exports': ['WordCount'] } diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-font.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-font.js new file mode 100644 index 0000000000000000000000000000000000000000..93644b62c2187dd517eb4b7b292c8e50ba13935f --- /dev/null +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/@ckeditor/ckeditor5-font.js @@ -0,0 +1,94 @@ +import{Command as e,Plugin as t}from"@ckeditor/ckeditor5-core";import{ColorSelectorView as o,createDropdown as n,addListToDropdown as l,ViewModel as i,normalizeColorOptions as r,getLocalizedColorOptions as s,focusChildOnDropdownOpen as a}from"@ckeditor/ckeditor5-ui";import{Collection as c,CKEditorError as u}from"@ckeditor/ckeditor5-utils";import{isLength as m,isPercentage as d,addBackgroundRules as p}from"@ckeditor/ckeditor5-engine"; +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class g extends e{constructor(e,t){super(e),this.attributeKey=t}refresh(){const e=this.editor.model,t=e.document;this.value=t.selection.getAttribute(this.attributeKey),this.isEnabled=e.schema.checkAttributeInSelection(t.selection,this.attributeKey)}execute(e={}){const t=this.editor.model,o=t.document.selection,n=e.value,l=e.batch,i=e=>{if(o.isCollapsed)n?e.setSelectionAttribute(this.attributeKey,n):e.removeSelectionAttribute(this.attributeKey);else{const l=t.schema.getValidRanges(o.getRanges(),this.attributeKey);for(const t of l)n?e.setAttribute(this.attributeKey,n,t):e.removeAttribute(this.attributeKey,t)}};l?t.enqueueChange(l,(e=>{i(e)})):t.change((e=>{i(e)}))}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */const h="fontSize",f="fontFamily",b="fontColor",w="fontBackgroundColor";function v(e,t){const o={model:{key:e,values:[]},view:{},upcastAlso:{}};for(const e of t)o.model.values.push(e.model),o.view[e.model]=e.view,e.upcastAlso&&(o.upcastAlso[e.model]=e.upcastAlso);return o}function y(e){return t=>t.getStyle(e).replace(/\s/g,"")}function x(e){return(t,{writer:o})=>o.createAttributeElement("span",{style:`${e}:${t}`},{priority:7})} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ +class C extends g{constructor(e){super(e,f)}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */function k(e){return e.map(A).filter((e=>void 0!==e))}function A(e){return"object"==typeof e?e:"default"===e?{title:"Default",model:void 0}:"string"==typeof e?function(e){const t=e.replace(/"|'/g,"").split(","),o=t[0],n=t.map(z).join(", ");return{title:o,model:n,view:{name:"span",styles:{"font-family":n},priority:7}}}(e):void 0}function z(e){return(e=e.trim()).indexOf(" ")>0&&(e=`'${e}'`),e} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class L extends t{static get pluginName(){return"FontFamilyEditing"}constructor(e){super(e),e.config.define(f,{options:["default","Arial, Helvetica, sans-serif","Courier New, Courier, monospace","Georgia, serif","Lucida Sans Unicode, Lucida Grande, sans-serif","Tahoma, Geneva, sans-serif","Times New Roman, Times, serif","Trebuchet MS, Helvetica, sans-serif","Verdana, Geneva, sans-serif"],supportAllValues:!1})}init(){const e=this.editor;e.model.schema.extend("$text",{allowAttributes:f}),e.model.schema.setAttributeProperties(f,{isFormatting:!0,copyOnEnter:!0});const t=k(e.config.get("fontFamily.options")).filter((e=>e.model)),o=v(f,t);e.config.get("fontFamily.supportAllValues")?(this._prepareAnyValueConverters(),this._prepareCompatibilityConverter()):e.conversion.attributeToElement(o),e.commands.add(f,new C(e))}_prepareAnyValueConverters(){const e=this.editor;e.conversion.for("downcast").attributeToElement({model:f,view:(e,{writer:t})=>t.createAttributeElement("span",{style:"font-family:"+e},{priority:7})}),e.conversion.for("upcast").elementToAttribute({model:{key:f,value:e=>e.getStyle("font-family")},view:{name:"span",styles:{"font-family":/.*/}}})}_prepareCompatibilityConverter(){this.editor.conversion.for("upcast").elementToAttribute({view:{name:"font",attributes:{face:/.*/}},model:{key:f,value:e=>e.getAttribute("face")}})}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ +class N extends t{static get pluginName(){return"FontFamilyUI"}init(){const e=this.editor,t=e.t,o=this._getLocalizedOptions(),r=e.commands.get(f),s=t("Font Family");e.ui.componentFactory.add(f,(t=>{const a=n(t);return l(a,(()=>function(e,t){const o=new c;for(const n of e){const e={type:"button",model:new i({commandName:f,commandParam:n.model,label:n.title,role:"menuitemradio",withText:!0})};e.model.bind("isOn").to(t,"value",(e=>e===n.model||!(!e||!n.model)&&e.split(",")[0].replace(/'/g,"").toLowerCase()===n.model.toLowerCase())),n.view&&"string"!=typeof n.view&&n.view.styles&&e.model.set("labelStyle",`font-family: ${n.view.styles["font-family"]}`),o.add(e)}return o} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */(o,r)),{role:"menu",ariaLabel:s}),a.buttonView.set({label:s,icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M11.03 3h6.149a.75.75 0 1 1 0 1.5h-5.514L11.03 3zm1.27 3h4.879a.75.75 0 1 1 0 1.5h-4.244L12.3 6zm1.27 3h3.609a.75.75 0 1 1 0 1.5h-2.973L13.57 9zm-2.754 2.5L8.038 4.785 5.261 11.5h5.555zm.62 1.5H4.641l-1.666 4.028H1.312l5.789-14h1.875l5.789 14h-1.663L11.436 13z"/></svg>',tooltip:!0}),a.extendTemplate({attributes:{class:"ck-font-family-dropdown"}}),a.bind("isEnabled").to(r),this.listenTo(a,"execute",(t=>{e.execute(t.source.commandName,{value:t.source.commandParam}),e.editing.view.focus()})),a}))}_getLocalizedOptions(){const e=this.editor,t=e.t;return k(e.config.get(f).options).map((e=>("Default"===e.title&&(e.title=t("Default")),e)))}}class S extends t{static get requires(){return[L,N]}static get pluginName(){return"FontFamily"}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class F extends g{constructor(e){super(e,h)}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */function T(e){return e.map((e=>function(e){"number"==typeof e&&(e=String(e));if("object"==typeof e&&(t=e,t.title&&t.model&&t.view))return V(e);var t;const o=function(e){return"string"==typeof e?B[e]:B[e.model]}(e);if(o)return V(o);if("default"===e)return{model:void 0,title:"Default"};if(function(e){let t;if("object"==typeof e){if(!e.model)throw new u("font-size-invalid-definition",null,e);t=parseFloat(e.model)}else t=parseFloat(e);return isNaN(t)} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */(e))return;return function(e){"string"==typeof e&&(e={title:e,model:`${parseFloat(e)}px`});return e.view={name:"span",styles:{"font-size":e.model}},V(e)}(e)}(e))).filter((e=>void 0!==e))}const B={get tiny(){return{title:"Tiny",model:"tiny",view:{name:"span",classes:"text-tiny",priority:7}}},get small(){return{title:"Small",model:"small",view:{name:"span",classes:"text-small",priority:7}}},get big(){return{title:"Big",model:"big",view:{name:"span",classes:"text-big",priority:7}}},get huge(){return{title:"Huge",model:"huge",view:{name:"span",classes:"text-huge",priority:7}}}};function V(e){return e.view&&"string"!=typeof e.view&&!e.view.priority&&(e.view.priority=7),e}const E=["x-small","x-small","small","medium","large","x-large","xx-large","xxx-large"];class P extends t{static get pluginName(){return"FontSizeEditing"}constructor(e){super(e),e.config.define(h,{options:["tiny","small","default","big","huge"],supportAllValues:!1})}init(){const e=this.editor;e.model.schema.extend("$text",{allowAttributes:h}),e.model.schema.setAttributeProperties(h,{isFormatting:!0,copyOnEnter:!0});const t=e.config.get("fontSize.supportAllValues"),o=T(this.editor.config.get("fontSize.options")).filter((e=>e.model)),n=v(h,o);t?(this._prepareAnyValueConverters(n),this._prepareCompatibilityConverter()):e.conversion.attributeToElement(n),e.commands.add(h,new F(e))}_prepareAnyValueConverters(e){const t=this.editor,o=e.model.values.filter((e=>!m(String(e))&&!d(String(e))));if(o.length)throw new u("font-size-invalid-use-of-named-presets",null,{presets:o});t.conversion.for("downcast").attributeToElement({model:h,view:(e,{writer:t})=>{if(e)return t.createAttributeElement("span",{style:"font-size:"+e},{priority:7})}}),t.conversion.for("upcast").elementToAttribute({model:{key:h,value:e=>e.getStyle("font-size")},view:{name:"span",styles:{"font-size":/.*/}}})}_prepareCompatibilityConverter(){this.editor.conversion.for("upcast").elementToAttribute({view:{name:"font",attributes:{size:/^[+-]?\d{1,3}$/}},model:{key:h,value:e=>{const t=e.getAttribute("size"),o="-"===t[0]||"+"===t[0];let n=parseInt(t,10);o&&(n=3+n);const l=E.length-1,i=Math.min(Math.max(n,0),l);return E[i]}}})}}!function(e,{insertAt:t}={}){if(!e||"undefined"==typeof document)return;const o=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css",window.litNonce&&n.setAttribute("nonce",window.litNonce),"top"===t&&o.firstChild?o.insertBefore(n,o.firstChild):o.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}(".ck-content .text-tiny{font-size:.7em}.ck-content .text-small{font-size:.85em}.ck-content .text-big{font-size:1.4em}.ck-content .text-huge{font-size:1.8em}"); +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ +class O extends t{static get pluginName(){return"FontSizeUI"}init(){const e=this.editor,t=e.t,o=this._getLocalizedOptions(),r=e.commands.get(h),s=t("Font Size");e.ui.componentFactory.add(h,(t=>{const a=n(t);return l(a,(()=>function(e,t){const o=new c;for(const n of e){const e={type:"button",model:new i({commandName:h,commandParam:n.model,label:n.title,class:"ck-fontsize-option",role:"menuitemradio",withText:!0})};n.view&&"string"!=typeof n.view&&(n.view.styles&&e.model.set("labelStyle",`font-size:${n.view.styles["font-size"]}`),n.view.classes&&e.model.set("class",`${e.model.class} ${n.view.classes}`)),e.model.bind("isOn").to(t,"value",(e=>e===n.model)),o.add(e)}return o} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */(o,r)),{role:"menu",ariaLabel:s}),a.buttonView.set({label:s,icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M9.816 11.5 7.038 4.785 4.261 11.5h5.555zm.62 1.5H3.641l-1.666 4.028H.312l5.789-14h1.875l5.789 14h-1.663L10.436 13zm7.55 2.279.779-.779.707.707-2.265 2.265-2.193-2.265.707-.707.765.765V4.825c0-.042 0-.083.002-.123l-.77.77-.707-.707L17.207 2.5l2.265 2.265-.707.707-.782-.782c.002.043.003.089.003.135v10.454z"/></svg>',tooltip:!0}),a.extendTemplate({attributes:{class:["ck-font-size-dropdown"]}}),a.bind("isEnabled").to(r),this.listenTo(a,"execute",(t=>{e.execute(t.source.commandName,{value:t.source.commandParam}),e.editing.view.focus()})),a}))}_getLocalizedOptions(){const e=this.editor,t=e.t,o={Default:t("Default"),Tiny:t("Tiny"),Small:t("Small"),Big:t("Big"),Huge:t("Huge")};return T(e.config.get(h).options).map((e=>{const t=o[e.title];return t&&t!=e.title&&(e=Object.assign({},e,{title:t})),e}))}}class H extends t{static get requires(){return[P,O]}static get pluginName(){return"FontSize"}normalizeSizeOptions(e){return T(e)}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class _ extends g{constructor(e){super(e,b)}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class $ extends t{static get pluginName(){return"FontColorEditing"}constructor(e){super(e),e.config.define(b,{colors:[{color:"hsl(0, 0%, 0%)",label:"Black"},{color:"hsl(0, 0%, 30%)",label:"Dim grey"},{color:"hsl(0, 0%, 60%)",label:"Grey"},{color:"hsl(0, 0%, 90%)",label:"Light grey"},{color:"hsl(0, 0%, 100%)",label:"White",hasBorder:!0},{color:"hsl(0, 75%, 60%)",label:"Red"},{color:"hsl(30, 75%, 60%)",label:"Orange"},{color:"hsl(60, 75%, 60%)",label:"Yellow"},{color:"hsl(90, 75%, 60%)",label:"Light green"},{color:"hsl(120, 75%, 60%)",label:"Green"},{color:"hsl(150, 75%, 60%)",label:"Aquamarine"},{color:"hsl(180, 75%, 60%)",label:"Turquoise"},{color:"hsl(210, 75%, 60%)",label:"Light blue"},{color:"hsl(240, 75%, 60%)",label:"Blue"},{color:"hsl(270, 75%, 60%)",label:"Purple"}],columns:5}),e.conversion.for("upcast").elementToAttribute({view:{name:"span",styles:{color:/[\s\S]+/}},model:{key:b,value:y("color")}}),e.conversion.for("upcast").elementToAttribute({view:{name:"font",attributes:{color:/^#?\w+$/}},model:{key:b,value:e=>e.getAttribute("color")}}),e.conversion.for("downcast").attributeToElement({model:b,view:x("color")}),e.commands.add(b,new _(e)),e.model.schema.extend("$text",{allowAttributes:b}),e.model.schema.setAttributeProperties(b,{isFormatting:!0,copyOnEnter:!0})}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class G extends t{constructor(e,{commandName:t,componentName:o,icon:n,dropdownLabel:l}){super(e),this.commandName=t,this.componentName=o,this.icon=n,this.dropdownLabel=l,this.columns=e.config.get(`${this.componentName}.columns`)}init(){const e=this.editor,t=e.locale,l=t.t,i=e.commands.get(this.commandName),c=e.config.get(this.componentName),u=r(c.colors),m=s(t,u),d=c.documentColors,p=!1!==c.colorPicker;e.ui.componentFactory.add(this.componentName,(t=>{const r=n(t);let s=!1;const u=function({dropdownView:e,colors:t,columns:n,removeButtonLabel:l,colorPickerLabel:i,documentColorsLabel:r,documentColorsCount:s,colorPickerViewConfig:a}){const c=e.locale,u=new o(c,{colors:t,columns:n,removeButtonLabel:l,colorPickerLabel:i,documentColorsLabel:r,documentColorsCount:s,colorPickerViewConfig:a});return e.colorSelectorView=u,e.panelView.children.add(u),u}({dropdownView:r,colors:m.map((e=>({label:e.label,color:e.model,options:{hasBorder:e.hasBorder}}))),columns:this.columns,removeButtonLabel:l("Remove color"),colorPickerLabel:l("Color picker"),documentColorsLabel:0!==d?l("Document colors"):"",documentColorsCount:void 0===d?this.columns:d,colorPickerViewConfig:!!p&&(c.colorPicker||{})});return u.bind("selectedColor").to(i,"value"),r.buttonView.set({label:this.dropdownLabel,icon:this.icon,tooltip:!0}),r.extendTemplate({attributes:{class:"ck-color-ui-dropdown"}}),r.bind("isEnabled").to(i),u.on("execute",((t,o)=>{r.isOpen&&e.execute(this.commandName,{value:o.value,batch:this._undoStepBatch}),"colorPicker"!==o.source&&e.editing.view.focus(),"colorPickerSaveButton"===o.source&&(r.isOpen=!1)})),u.on("colorPicker:show",(()=>{this._undoStepBatch=e.model.createBatch()})),u.on("colorPicker:cancel",(()=>{this._undoStepBatch.operations.length&&(r.isOpen=!1,e.execute("undo",this._undoStepBatch)),e.editing.view.focus()})),r.on("change:isOpen",((t,o,n)=>{s||(s=!0,r.colorSelectorView.appendUI()),n&&(0!==d&&u.updateDocumentColors(e.model,this.componentName),u.updateSelectedColors(),u.showColorGridsFragment())})),a(r,(()=>r.colorSelectorView.colorGridsFragmentView.staticColorsGrid.items.find((e=>e.isOn)))),r}))}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ +class q extends G{constructor(e){const t=e.locale.t;super(e,{commandName:b,componentName:b,icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M12.4 10.3 10 4.5l-2.4 5.8h4.8zm.5 1.2H7.1L5.7 15H4.2l5-12h1.6l5 12h-1.5L13 11.5zm3.1 7H4a1 1 0 0 1 0-2h12a1 1 0 0 1 0 2z"/></svg>',dropdownLabel:t("Font Color")})}static get pluginName(){return"FontColorUI"}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class D extends t{static get requires(){return[$,q]}static get pluginName(){return"FontColor"}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class K extends g{constructor(e){super(e,w)}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class I extends t{static get pluginName(){return"FontBackgroundColorEditing"}constructor(e){super(e),e.config.define(w,{colors:[{color:"hsl(0, 0%, 0%)",label:"Black"},{color:"hsl(0, 0%, 30%)",label:"Dim grey"},{color:"hsl(0, 0%, 60%)",label:"Grey"},{color:"hsl(0, 0%, 90%)",label:"Light grey"},{color:"hsl(0, 0%, 100%)",label:"White",hasBorder:!0},{color:"hsl(0, 75%, 60%)",label:"Red"},{color:"hsl(30, 75%, 60%)",label:"Orange"},{color:"hsl(60, 75%, 60%)",label:"Yellow"},{color:"hsl(90, 75%, 60%)",label:"Light green"},{color:"hsl(120, 75%, 60%)",label:"Green"},{color:"hsl(150, 75%, 60%)",label:"Aquamarine"},{color:"hsl(180, 75%, 60%)",label:"Turquoise"},{color:"hsl(210, 75%, 60%)",label:"Light blue"},{color:"hsl(240, 75%, 60%)",label:"Blue"},{color:"hsl(270, 75%, 60%)",label:"Purple"}],columns:5}),e.data.addStyleProcessorRules(p),e.conversion.for("upcast").elementToAttribute({view:{name:"span",styles:{"background-color":/[\s\S]+/}},model:{key:w,value:y("background-color")}}),e.conversion.for("downcast").attributeToElement({model:w,view:x("background-color")}),e.commands.add(w,new K(e)),e.model.schema.extend("$text",{allowAttributes:w}),e.model.schema.setAttributeProperties(w,{isFormatting:!0,copyOnEnter:!0})}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ +class M extends G{constructor(e){const t=e.locale.t;super(e,{commandName:w,componentName:w,icon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M4 2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8.38 9.262H7.62L10 5.506l2.38 5.756zm.532 1.285L14.34 16h1.426L10.804 4H9.196L4.234 16H5.66l1.428-3.453h5.824z"/></svg>',dropdownLabel:t("Font Background Color")})}static get pluginName(){return"FontBackgroundColorUI"}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class R extends t{static get requires(){return[I,M]}static get pluginName(){return"FontBackgroundColor"}} +/** + * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */class U extends t{static get requires(){return[S,H,D,R]}static get pluginName(){return"Font"}}export{U as Font,R as FontBackgroundColor,I as FontBackgroundColorEditing,M as FontBackgroundColorUI,D as FontColor,$ as FontColorEditing,q as FontColorUI,S as FontFamily,L as FontFamilyEditing,N as FontFamilyUI,H as FontSize,P as FontSizeEditing,O as FontSizeUI}; \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ar.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ar.js index a0b422de12620bcd0962d011af871598a8917805..b6e03851899cb9114feda8d2f48a6180ce968678 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ar.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ar.js @@ -1 +1 @@ -(function(d){ const l = d['ar'] = d['ar'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Ù…Øاذاة لليسار","Align right":"Ù…Øاذاة لليمين","Align center":"Ù…Øاذاة ÙÙŠ المنتصÙ",Justify:"ضبط","Text alignment":"Ù…Øاذاة النص","Text alignment toolbar":"شريط أدوات Ù…Øاذاة النص",Bold:"عريض",Italic:"مائل",Underline:"تØته خط",Code:"Ø´Ùرة برمجية",Strikethrough:"يتوسطه خط",Subscript:"Øر٠منخÙض",Superscript:"Øر٠مرتÙع","Block quote":"اقتباس","Insert code block":"إدراج كتلة تعليمات برمجية","Plain text":"نص عادي",Cancel:"إلغاء",Clear:"مسØ","Remove color":"إزالة اللون","Restore default":"استعادة الاÙتراضي",Save:"ØÙظ","Show more items":"عرض المزيد من العناصر","%0 of %1":"%0 من %1","Cannot upload file:":"لا يمكن رÙع الملÙ:","Rich Text Editor. Editing area: %0":"Ù…Øرر النصوص المنسّقة. منطقة التØرير: %0","Insert with file manager":"إدخال مع مدير الملÙات","Replace with file manager":"استبدال بمدير الملÙات","Insert image with file manager":"إدراج صورة مع مدير الملÙات","Replace image with file manager":"استبدال الصورة بمدير الملÙات","Find and replace":"البØØ« والاستبدال","Find in text…":"البØØ« ÙÙŠ النص...",Find:"البØØ«","Previous result":"النتيجة السابقة","Next result":"النتيجة التالية",Replace:"استبدال","Replace all":"استبدال الكل","Match case":"مطابقة Øالة الأØرÙ","Whole words only":"الكلمات بأكملها Ùقط","Replace with…":"استبدال بـ...","Text to find must not be empty.":"لا يمكن لبيان النص المطلوب البØØ« عنه أن يكون Ùارغاً.","Tip: Find some text first in order to replace it.":"نصيØØ©: ÙÙŠ البداية، ابØØ« عن جزء من النص؛ لتتمكن من استبداله. ","Advanced options":"الخيارات المتقدمة",Paragraph:"Ùقرة",Heading:"عنوان","Choose heading":"اختر عنوان","Heading 1":"عنوان 1","Heading 2":"عنوان 2","Heading 3":"عنوان 3","Heading 4":"عنوان 4","Heading 5":"عنوان 5","Heading 6":"عنوان 6","Type your title":"أدخل العنوان","Type or paste your content here.":"أكتب المØتوى أو ألصقه هنا.","Horizontal line":"خط Ø£Ùقي","HTML object":"عنصر HTML","Increase indent":"زيادة المساÙØ© البادئة","Decrease indent":"تقليص المساÙØ© البادئة",Unlink:"إلغاء الرابط",Link:"رابط","Link URL":"رابط عنوان","Link image":"ربط الصورة","Edit link":"تØرير الرابط","Open link in new tab":"ÙØªØ Ø§Ù„Ø±Ø§Ø¨Ø· ÙÙŠ تبويب جديد","This link has no URL":"لا ÙŠØتوي هذا الرابط على عنوان","Open in a new tab":"ÙØªØ ÙÙŠ تبويب جديد",Downloadable:"يمكن تنزيله","Numbered List":"قائمة رقمية","Bulleted List":"قائمة نقطية","To-do List":"قائمة المهام","Bulleted list styles toolbar":"شريط أدوات أنماط قوائم التعداد النقطي","Numbered list styles toolbar":"شريط أدوات أنماط القوائم المرقمة","Toggle the disc list style":"تبديل نمط قائمة الأقراص","Toggle the circle list style":"تبديل نمط قائمة الدوائر","Toggle the square list style":"تبديل نمط قائمة المربعات","Toggle the decimal list style":"تبديل نمط قائمة الأرقام العشرية","Toggle the decimal with leading zero list style":"تبديل الأرقام العشرية بنمط قائمة الأصÙار البادئة","Toggle the lower–roman list style":"تبديل نمط قائمة الأرقام الرومانية الصغيرة","Toggle the upper–roman list style":"تبديل نمط قائمة الأرقام الرومانية الكبيرة","Toggle the lower–latin list style":"تبديل نمط قائمة الأØر٠اللاتينية الصغيرة","Toggle the upper–latin list style":"تبديل نمط قائمة الأØر٠اللاتينية الكبيرة",Disc:"قرص",Circle:"دائرة",Square:"مربع",Decimal:"رقم عشري","Decimal with leading zero":"رقم عشري مع البدء بصÙر ","Lower–roman":"رقم روماني صغير","Upper-roman":"رقم روماني كبير","Lower-latin":"Øر٠لاتيني صغير","Upper-latin":"Øر٠لاتيني كبير","List properties":"خصائص القائمة","Start at":"البدء من","Start index must be greater than 0.":"يجب أن تكون قيمة البداية ÙÙŠ الÙهرس أكبر من 0.","Reversed order":"عكس اتجاه الترتيب","Remove Format":"إزالة التنسيق","Select all":"تØديد الكل","Show blocks":"عرض الكتل",Source:"المصدر","Special characters":"Ø£Øر٠خاصة",All:"الكل",Arrows:"أسهم",Currency:"عملة",Latin:"لاتيني",Mathematical:"رياضي",Text:"نص","leftwards simple arrow":"سهم بسيط يشير إلى اليسار","rightwards simple arrow":"سهم بسيط يشير إلى اليمين","upwards simple arrow":"سهم بسيط يشير إلى الأعلى","downwards simple arrow":"سهم بسيط يشير إلى الأسÙÙ„","leftwards double arrow":"سهم مزدوج متجه يساراً","rightwards double arrow":"سهم مزدوج متجه يميناً","upwards double arrow":"سهم مزدوج متجه لأعلى","downwards double arrow":"سهم مزدوج متجه لأسÙÙ„","leftwards dashed arrow":"سهم متقطع متجه يساراً","rightwards dashed arrow":"سهم متقطع متجه يميناً","upwards dashed arrow":"سهم متقطع متجه لأعلى","downwards dashed arrow":"سهم متقطع متجه لأسÙÙ„","leftwards arrow to bar":"سهم يشير إلى خط جهة اليسار","rightwards arrow to bar":"سهم يشير إلى خط جهة اليمين","upwards arrow to bar":"سهم لأعلى يشير إلى خط","downwards arrow to bar":"سهم لأسÙÙ„ يشير إلى خط","up down arrow with base":"سهم بالاتجاهين أعلى وأسÙÙ„ØŒ له قاعدة","back with leftwards arrow above":"\"عودة\" أعلاها سهم يتجه يساراً","end with leftwards arrow above":"\"النهاية\" أعلاها سهم يتجه يساراً","on with exclamation mark with left right arrow above":"\"يعمل\" وعلامة تعجب، أعلاهما سهم باتجاهين يميناً ويساراً","soon with rightwards arrow above":"\"قريباً\" أعلاها سهم يتجه يميناً","top with upwards arrow above":"\"إلى القمة\" أعلاها سهم لأعلى","Dollar sign":"رمز الدولار","Euro sign":"رمز اليورو","Yen sign":"رمز الين","Pound sign":"رمز الجنيه","Cent sign":"رمز السنت","Euro-currency sign":"رمز عملة اليورو","Colon sign":"رمز الكولون","Cruzeiro sign":"رمز الكروزيرو","French franc sign":"رمز الÙرانك الÙرنسي","Lira sign":"رمز الليرة","Currency sign":"رمز العملة","Bitcoin sign":"رمز البيتكوين","Mill sign":"رمز المليم","Naira sign":"رمز النيرة","Peseta sign":"رمز البيزيتا","Rupee sign":"رمز الروبية","Won sign":"رمز الوون","New sheqel sign":"رمز الشيكل الجديد","Dong sign":"رمز الدونغ","Kip sign":"رمز الكيب","Tugrik sign":"رمز التوغروغ","Drachma sign":"رمز الدراخما","German penny sign":"رمز البنس الألماني","Peso sign":"رمز البيزو","Guarani sign":"رمز الغواراني","Austral sign":"رمز الأسترال","Hryvnia sign":"رمز الهريÙنا","Cedi sign":"رمز السيدي","Livre tournois sign":"رمز الليÙر تورنوز","Spesmilo sign":"رمز السبسميلو","Tenge sign":"رمز التينغ","Indian rupee sign":"رمز الروبية الهندية","Turkish lira sign":"رمز الليرة التركية","Nordic mark sign":"رمز المارك الاسكندناÙÙŠ","Manat sign":"رمز المانات","Ruble sign":"رمز الروبيل","Latin capital letter a with macron":"Øر٠a لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter a with macron":"Øر٠a لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter a with breve":"Øر٠a لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter a with breve":"Øر٠a لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter a with ogonek":"Øر٠a لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter a with ogonek":"Øر٠a لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter c with acute":"Øر٠c لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter c with acute":"Øر٠c لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter c with circumflex":"Øر٠c لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter c with circumflex":"Øر٠c لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter c with dot above":"Øر٠c لاتيني كبير مع نقطة أعلاه","Latin small letter c with dot above":"Øر٠c لاتيني صغير مع نقطة أعلاه","Latin capital letter c with caron":"Øر٠c لاتيني كبير مع علامة تشكيل كارون","Latin small letter c with caron":"Øر٠c لاتيني صغير مع علامة تشكيل كارون","Latin capital letter d with caron":"Øر٠d لاتيني كبير مع علامة تشكيل كارون","Latin small letter d with caron":"Øر٠d لاتيني صغير مع علامة تشكيل كارون","Latin capital letter d with stroke":"Øر٠d لاتيني كبير مع علامة شطب","Latin small letter d with stroke":"Øر٠d لاتيني صغير مع علامة شطب","Latin capital letter e with macron":"Øر٠e لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter e with macron":"Øر٠e لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter e with breve":"Øر٠e لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter e with breve":"Øر٠e لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter e with dot above":"Øر٠e لاتيني كبير مع نقطة أعلاه","Latin small letter e with dot above":"Øر٠e لاتيني صغير مع نقطة أعلاه","Latin capital letter e with ogonek":"Øر٠e لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter e with ogonek":"Øر٠e لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter e with caron":"Øر٠e لاتيني كبير مع علامة تشكيل كارون","Latin small letter e with caron":"Øر٠e لاتيني صغير مع علامة تشكيل كارون","Latin capital letter g with circumflex":"Øر٠g لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter g with circumflex":"Øر٠g لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter g with breve":"Øر٠g لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter g with breve":"Øر٠g لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter g with dot above":"Øر٠g لاتيني كبير مع نقطة أعلاه","Latin small letter g with dot above":"Øر٠g لاتيني صغير مع نقطة أعلاه","Latin capital letter g with cedilla":"Øر٠g لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter g with cedilla":"Øر٠g لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter h with circumflex":"Øر٠h لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter h with circumflex":"Øر٠h لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter h with stroke":"Øر٠h لاتيني كبير مع علامة شطب","Latin small letter h with stroke":"Øر٠h لاتيني صغير مع علامة شطب","Latin capital letter i with tilde":"Øر٠i لاتيني كبير مع علامة المد","Latin small letter i with tilde":"Øر٠i لاتيني صغير مع علامة المد","Latin capital letter i with macron":"Øر٠i لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter i with macron":"Øر٠i لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter i with breve":"Øر٠i لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter i with breve":"Øر٠i لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter i with ogonek":"Øر٠i لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter i with ogonek":"Øر٠i لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter i with dot above":"Øر٠i لاتيني كبير مع نقطة أعلاه","Latin small letter dotless i":"Øر٠i لاتيني صغير بدون نقطة","Latin capital ligature ij":"Øر٠ij لاتيني Ù…Ùركَّب كبير","Latin small ligature ij":"Øر٠ij لاتيني Ù…Ùركَّب صغير","Latin capital letter j with circumflex":"Øر٠j لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter j with circumflex":"Øر٠j لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter k with cedilla":"Øر٠k لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter k with cedilla":"Øر٠k لاتيني صغير مع علامة تشكيل السيديلة","Latin small letter kra":"Øر٠kra لاتيني صغير","Latin capital letter l with acute":"Øر٠l لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter l with acute":"Øر٠l لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter l with cedilla":"Øر٠l لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter l with cedilla":"Øر٠l لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter l with caron":"Øر٠l لاتيني كبير مع علامة تشكيل كارون","Latin small letter l with caron":"Øر٠l لاتيني صغير مع علامة تشكيل كارون","Latin capital letter l with middle dot":"Øر٠l لاتيني كبير مع نقطة عند الوسط","Latin small letter l with middle dot":"Øر٠l لاتيني صغير مع نقطة عند الوسط","Latin capital letter l with stroke":"Øر٠l لاتيني كبير مع علامة شطب","Latin small letter l with stroke":"Øر٠l لاتيني صغير مع علامة شطب","Latin capital letter n with acute":"Øر٠n لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter n with acute":"Øر٠n لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter n with cedilla":"Øر٠n لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter n with cedilla":"Øر٠n لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter n with caron":"Øر٠n لاتيني كبير مع علامة تشكيل كارون","Latin small letter n with caron":"Øر٠n لاتيني صغير مع علامة تشكيل كارون","Latin small letter n preceded by apostrophe":"Øر٠n لاتيني صغير مسبوقة بعلامة Ùاصلة عليا","Latin capital letter eng":"Øر٠eng لاتيني كبير","Latin small letter eng":"Øر٠eng لاتيني صغير","Latin capital letter o with macron":"Øر٠o لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter o with macron":"Øر٠o لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter o with breve":"Øر٠o لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter o with breve":"Øر٠o لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter o with double acute":"Øر٠o لاتيني كبير مع علامة تشكيل النبرة الØادة المزدوجة","Latin small letter o with double acute":"Øر٠o لاتيني صغير مع علامة تشكيل النبرة الØادة المزدوجة","Latin capital ligature oe":"Øر٠oe لاتيني Ù…Ùركَّب كبير","Latin small ligature oe":"Øر٠oe لاتيني Ù…Ùركَّب صغير","Latin capital letter r with acute":"Øر٠r لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter r with acute":"Øر٠r لاتيني صغير مع علامة تشكيل النبرة الØادة\n","Latin capital letter r with cedilla":"Øر٠r لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter r with cedilla":"Øر٠r لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter r with caron":"Øر٠r لاتيني كبير مع علامة تشكيل كارون","Latin small letter r with caron":"Øر٠r لاتيني صغير مع علامة تشكيل كارون","Latin capital letter s with acute":"Øر٠s لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter s with acute":"Øر٠s لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter s with circumflex":"Øر٠s لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter s with circumflex":"Øر٠s لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter s with cedilla":"Øر٠s لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter s with cedilla":"Øر٠s لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter s with caron":"Øر٠s لاتيني كبير مع علامة تشكيل كارون","Latin small letter s with caron":"Øر٠s لاتيني صغير مع علامة تشكيل كارون","Latin capital letter t with cedilla":"Øر٠t لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter t with cedilla":"Øر٠t لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter t with caron":"Øر٠t لاتيني كبير مع علامة تشكيل كارون","Latin small letter t with caron":"Øر٠t لاتيني صغير مع علامة تشكيل كارون","Latin capital letter t with stroke":"Øر٠t لاتيني كبير مع علامة شطب","Latin small letter t with stroke":"Øر٠t لاتيني صغير مع علامة شطب","Latin capital letter u with tilde":"Øر٠u لاتيني كبير مع علامة المد","Latin small letter u with tilde":"Øر٠u لاتيني صغير مع علامة المد","Latin capital letter u with macron":"Øر٠u لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter u with macron":"Øر٠u لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter u with breve":"Øر٠u لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter u with breve":"Øر٠u لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter u with ring above":"Øر٠u لاتيني كبير مع Øلقة أعلاه","Latin small letter u with ring above":"Øر٠u لاتيني صغير مع Øلقة أعلاه","Latin capital letter u with double acute":"Øر٠u لاتيني كبير مع علامة تشكيل النبرة الØادة المزدوجة","Latin small letter u with double acute":"Øر٠u لاتيني صغير مع علامة تشكيل النبرة الØادة المزدوجة","Latin capital letter u with ogonek":"Øر٠u لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter u with ogonek":"Øر٠u لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter w with circumflex":"Øر٠w لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter w with circumflex":"Øر٠w لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter y with circumflex":"Øر٠y لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter y with circumflex":"Øر٠y لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter y with diaeresis":"Øر٠y لاتيني كبير مع نقطتين أعلاه","Latin capital letter z with acute":"Øر٠z لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter z with acute":"Øر٠z لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter z with dot above":"Øر٠z لاتيني كبير مع نقطة أعلاه","Latin small letter z with dot above":"Øر٠z لاتيني صغير مع نقطة أعلاه","Latin capital letter z with caron":"Øر٠z لاتيني كبير مع علامة تشكيل كارون","Latin small letter z with caron":"Øر٠z لاتيني صغير مع علامة تشكيل كارون","Latin small letter long s":"Øر٠\"s طويل\" لاتيني صغير","Less-than sign":"علامة أقل من","Greater-than sign":"علامة أكبر من","Less-than or equal to":"أقل من أو يساوي","Greater-than or equal to":"أكبر من أو يساوي","En dash":"شرطة قصيرة","Em dash":"شرطة طويلة",Macron:"علامة التشكيل ماكرون",Overline:"خط أعلى الØرÙ","Degree sign":"علامة الدرجة","Minus sign":"علامة الطرØ","Plus-minus sign":"علامة Ø§Ù„Ø·Ø±Ø ÙˆØ§Ù„Ø¬Ù…Ø¹","Division sign":"علامة القسمة","Fraction slash":"شرطة الكسر","Multiplication sign":"علامة الضرب","Latin small letter f with hook":"Øر٠f لاتيني صغير مع علامة الخطاÙ",Integral:"علامة التكامل","N-ary summation":"جمع مصÙÙˆÙØ© N",Infinity:"علامة ما لا نهاية","Square root":"الجذر التربيعي","Tilde operator":"علامة دلتا","Approximately equal to":"يساوي تقريباً","Almost equal to":"يساوي على الأرجØ","Not equal to":"لا يساوي","Identical to":"مطابق لـ","Element of":"ينتمي إلى","Not an element of":"لا ينتمي إلى","Contains as member":"ÙŠØتوي كعضو","N-ary product":"Øاصل مصÙÙˆÙØ© N","Logical and":"and المنطقية","Logical or":"or المنطقية","Not sign":"علامة Not المنطقية",Intersection:"تقاطع",Union:"اتØاد","Partial differential":"التÙاضلية الجزئية","For all":"علامة للكل","There exists":"علامة يوجد بها","Empty set":"مجموعة Ùارغة",Nabla:"رمز نبلة","Asterisk operator":"علامة الضرب (النجمة)","Proportional to":"يتناسب مع",Angle:"علامة الزاوية","Vulgar fraction one quarter":"الكسر الاعتيادي ربع","Vulgar fraction one half":"الكسر الاعتيادي نصÙ","Vulgar fraction three quarters":"الكسر الاعتيادي ثلاثة أرباع","Single left-pointing angle quotation mark":"علامة تنصيص Ø£Øادية، رمز الزاوية، تشير جهة اليسار","Single right-pointing angle quotation mark":"علامة تنصيص Ø£Øادية، رمز الزاوية، تشير جهة اليمين","Left-pointing double angle quotation mark":"علامة تنصيص مزدوجة، رمز الزاوية، تشير جهة اليسار","Right-pointing double angle quotation mark":"علامة تنصيص مزدوجة، رمز الزاوية، تشير جهة اليمين","Left single quotation mark":"علامة تنصيص Ø£Øادية، تشير جهة اليسار","Right single quotation mark":"علامة تنصيص Ø£Øادية، تشير جهة اليمين","Left double quotation mark":"علامة تنصيص مزدوجة، تشير جهة اليسار","Right double quotation mark":"علامة تنصيص مزدوجة، تشير جهة اليمين","Single low-9 quotation mark":"علامة تنصيص 9 منخÙضة، Ø£Øادية","Double low-9 quotation mark":"علامة تنصيص 9 منخÙضة، مزدوجة","Inverted exclamation mark":"علامة تعجّب مقلوبة","Inverted question mark":"علامة استÙهام مقلوبة","Two dot leader":"سابقة من نقطتان","Horizontal ellipsis":"علامة القطع الأÙقي","Double dagger":"رمز الخنجر المزدوج","Per mille sign":"علامة \"لكل ميل\"","Per ten thousand sign":"علامة \"لكل 10 آلاÙ\"","Double exclamation mark":"علامة تعجّب مزدوجة","Question exclamation mark":"علامة استÙهام مزدوجة","Exclamation question mark":"علامة استÙهام مع علامة تعجب","Double question mark":"علامة استÙهام مزدوجة","Copyright sign":"علامة \"ØÙ‚ التألي٠والنشر\"","Registered sign":"علامة \"مسجل\"","Trade mark sign":"رمز العلامة التجارية","Section sign":"علامة القطاع","Paragraph sign":"علامة الÙقرة","Reversed paragraph sign":"علامة الÙقرة مقلوبة","Character categories":"Ùئات الأØرÙ",Styles:"الأنماط","Multiple styles":"أنماط متعددة","Block styles":"أنماط الكتل","Text styles":"أنماط النصوص","Insert table":"إدراج جدول","Header column":"عمود عنوان","Insert column left":"أدخل العمود إلى اليسار","Insert column right":"أدخل العمود إلى اليمين","Delete column":"Øذ٠العمود","Select column":"Øدد العمود",Column:"عمود","Header row":"ص٠عنوان","Insert row below":"ادراج ص٠بعد","Insert row above":"ادراج ص٠قبل","Delete row":"Øذ٠الصÙ","Select row":"Øدد صÙًا",Row:"صÙ","Merge cell up":"دمج الخلايا للأعلى","Merge cell right":"دمج الخلايا لليمين","Merge cell down":"دمج الخلايا للأسÙÙ„","Merge cell left":"دمج الخلايا لليسار","Split cell vertically":"Ùصل الخلايا بشكل عمودي","Split cell horizontally":"Ùصل الخلايا بشكل اÙقي","Merge cells":"دمج الخلايا","Table toolbar":"شريط أدوات الجدول","Table properties":"خصائص الجدول","Cell properties":"خصائص الخلية",Border:"الØدود",Style:"أسلوب",Width:"العرض",Height:"الارتÙاع",Color:"اللون",Background:"الخلÙية",Padding:"الØاشية",Dimensions:"الابعاد","Table cell text alignment":"Ù…Øاذاة نص خلية الجدول",Alignment:"المØاذاة","Horizontal text alignment toolbar":"شريط أدوات Ù…Øاذاة النص الأÙقي","Vertical text alignment toolbar":"شريط أدوات Ù…Øاذاة النص العمودي","Table alignment toolbar":"شريط أدوات Ù…Øاذاة الجدول",None:"لا شيء",Solid:"صلب",Dotted:"منقط",Dashed:"متقطع",Double:"مزدوج",Groove:"إطار Ù…ØÙور",Ridge:"إطار ناتئ",Inset:"منخÙض",Outset:"بارز","Align cell text to the left":"قم بمØاذاة نص الخلية إلى اليسار","Align cell text to the center":"قم بمØاذاة نص الخلية إلى المركز","Align cell text to the right":"قم بمØاذاة نص الخلية إلى اليمين","Justify cell text":"ضبط نص الخلية","Align cell text to the top":"قم بمØاذاة نص الخلية إلى الأعلى","Align cell text to the middle":"قم بمØاذاة نص الخلية إلى المنتصÙ","Align cell text to the bottom":"قم بمØاذاة نص الخلية للاسÙÙ„","Align table to the left":"قم بمØاذاة الجدول إلى اليسار","Center table":"قم بمØاذاة الجدول إلى المنتصÙ","Align table to the right":"قم بمØاذاة الجدول إلى اليمين","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"هذا اللون غير صالØ. جرّÙب \"#FF0000\" أو \"rgb(255,0,0)\" أو \"Ø£Øمر\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"هذه القيمة غير صالØØ©. جرّÙب \"10px\" أو \"2em\" أو \"2\" ÙˆØسب.","Color picker":"أداة انتقاء الألوان","Toggle caption off":"إخÙاء التسمية التوضيØية","Toggle caption on":"عرض التسمية التوضيØية","Enter table caption":"أدخل التسمية التوضيØية للجدول","Rich Text Editor":"معالج نصوص","Editor editing area: %0":"منطقة تØرير المØرر: %0","Edit block":"كتلة التØرير","Click to edit block":"انقر لتØرير الوØدة التجميعية","Drag to move":"اسØب للنقل",Next:"التالي",Previous:"السابق","Editor toolbar":"شريط أدوات المØرر","Dropdown toolbar":"شريط أدوات القائمة المنسدلة",Black:"أسود","Dim grey":"رمادي خاÙت",Grey:"رمادي","Light grey":"رمادي ÙاتØ",White:"أبيض",Red:"Ø£Øمر",Orange:"برتقالي",Yellow:"أصÙر","Light green":"أخضر ÙاتØ",Green:"أخضر",Aquamarine:"أخضر زبرجد",Turquoise:"Ùيروزي","Light blue":"أزرق ÙاتØ",Blue:"أزرق",Purple:"أرجواني","Editor block content toolbar":"شريط المØرر لأدوات كتلة المØتوى","Editor contextual toolbar":"شريط المØرر للأدوات السياقية",HEX:"لون سداسي عشري",Accept:"قبول","No results found":"لم يتم العثور على نتائج","No searchable items":"لا توجد عناصر قابلة للبØØ« متاØØ©","Editor dialog":"Øوار المØرر",Close:"إغلاق",Undo:"تراجع",Redo:"إعادة","Upload in progress":"جاري الرÙع","Widget toolbar":"شريط أدوات الواجهة","Insert paragraph before block":"إدراج Ùقرة قبل الكتلة","Insert paragraph after block":"إدراج Ùقرة بعد الكتلة","Press Enter to type after or press Shift + Enter to type before the widget":"اضغط على Enter للكتابة بعد ذلك أو اضغط على Shift + Enter للكتابة قبل الأداة","Words: %0":"الكلمات: %0","Characters: %0":"الأØرÙ: %0"} );l.getPluralForm=function(n){return n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ar'] = d['ar'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Ù…Øاذاة لليسار","Align right":"Ù…Øاذاة لليمين","Align center":"Ù…Øاذاة ÙÙŠ المنتصÙ",Justify:"ضبط","Text alignment":"Ù…Øاذاة النص","Text alignment toolbar":"شريط أدوات Ù…Øاذاة النص",Bold:"عريض",Italic:"مائل",Underline:"تØته خط",Code:"Ø´Ùرة برمجية",Strikethrough:"يتوسطه خط",Subscript:"Øر٠منخÙض",Superscript:"Øر٠مرتÙع","Block quote":"اقتباس","Insert code block":"إدراج كتلة تعليمات برمجية","Plain text":"نص عادي",Cancel:"إلغاء",Clear:"مسØ","Remove color":"إزالة اللون","Restore default":"استعادة الاÙتراضي",Save:"ØÙظ","Show more items":"عرض المزيد من العناصر","%0 of %1":"%0 من %1","Cannot upload file:":"لا يمكن رÙع الملÙ:","Rich Text Editor. Editing area: %0":"Ù…Øرر النصوص المنسّقة. منطقة التØرير: %0","Insert with file manager":"إدخال مع مدير الملÙات","Replace with file manager":"استبدال بمدير الملÙات","Insert image with file manager":"إدراج صورة مع مدير الملÙات","Replace image with file manager":"استبدال الصورة بمدير الملÙات","Find and replace":"البØØ« والاستبدال","Find in text…":"البØØ« ÙÙŠ النص...",Find:"البØØ«","Previous result":"النتيجة السابقة","Next result":"النتيجة التالية",Replace:"استبدال","Replace all":"استبدال الكل","Match case":"مطابقة Øالة الأØرÙ","Whole words only":"الكلمات بأكملها Ùقط","Replace with…":"استبدال بـ...","Text to find must not be empty.":"لا يمكن لبيان النص المطلوب البØØ« عنه أن يكون Ùارغاً.","Tip: Find some text first in order to replace it.":"نصيØØ©: ÙÙŠ البداية، ابØØ« عن جزء من النص؛ لتتمكن من استبداله. ","Advanced options":"الخيارات المتقدمة","Font Size":"Øجم الخط",Tiny:"ضئيل",Small:"صغير",Big:"كبير",Huge:"ضخم","Font Family":"نوع الخط",Default:"اÙتراضي","Font Color":"لون الخط","Font Background Color":"لون خلÙية الخط","Document colors":"ألوان المستند",Paragraph:"Ùقرة",Heading:"عنوان","Choose heading":"اختر عنوان","Heading 1":"عنوان 1","Heading 2":"عنوان 2","Heading 3":"عنوان 3","Heading 4":"عنوان 4","Heading 5":"عنوان 5","Heading 6":"عنوان 6","Type your title":"أدخل العنوان","Type or paste your content here.":"أكتب المØتوى أو ألصقه هنا.","Horizontal line":"خط Ø£Ùقي","HTML object":"عنصر HTML","Increase indent":"زيادة المساÙØ© البادئة","Decrease indent":"تقليص المساÙØ© البادئة",Unlink:"إلغاء الرابط",Link:"رابط","Link URL":"رابط عنوان","Link image":"ربط الصورة","Edit link":"تØرير الرابط","Open link in new tab":"ÙØªØ Ø§Ù„Ø±Ø§Ø¨Ø· ÙÙŠ تبويب جديد","This link has no URL":"لا ÙŠØتوي هذا الرابط على عنوان","Open in a new tab":"ÙØªØ ÙÙŠ تبويب جديد",Downloadable:"يمكن تنزيله","Numbered List":"قائمة رقمية","Bulleted List":"قائمة نقطية","To-do List":"قائمة المهام","Bulleted list styles toolbar":"شريط أدوات أنماط قوائم التعداد النقطي","Numbered list styles toolbar":"شريط أدوات أنماط القوائم المرقمة","Toggle the disc list style":"تبديل نمط قائمة الأقراص","Toggle the circle list style":"تبديل نمط قائمة الدوائر","Toggle the square list style":"تبديل نمط قائمة المربعات","Toggle the decimal list style":"تبديل نمط قائمة الأرقام العشرية","Toggle the decimal with leading zero list style":"تبديل الأرقام العشرية بنمط قائمة الأصÙار البادئة","Toggle the lower–roman list style":"تبديل نمط قائمة الأرقام الرومانية الصغيرة","Toggle the upper–roman list style":"تبديل نمط قائمة الأرقام الرومانية الكبيرة","Toggle the lower–latin list style":"تبديل نمط قائمة الأØر٠اللاتينية الصغيرة","Toggle the upper–latin list style":"تبديل نمط قائمة الأØر٠اللاتينية الكبيرة",Disc:"قرص",Circle:"دائرة",Square:"مربع",Decimal:"رقم عشري","Decimal with leading zero":"رقم عشري مع البدء بصÙر ","Lower–roman":"رقم روماني صغير","Upper-roman":"رقم روماني كبير","Lower-latin":"Øر٠لاتيني صغير","Upper-latin":"Øر٠لاتيني كبير","List properties":"خصائص القائمة","Start at":"البدء من","Start index must be greater than 0.":"يجب أن تكون قيمة البداية ÙÙŠ الÙهرس أكبر من 0.","Reversed order":"عكس اتجاه الترتيب","Remove Format":"إزالة التنسيق","Select all":"تØديد الكل","Show blocks":"عرض الكتل",Source:"المصدر","Special characters":"Ø£Øر٠خاصة",All:"الكل",Arrows:"أسهم",Currency:"عملة",Latin:"لاتيني",Mathematical:"رياضي",Text:"نص","leftwards simple arrow":"سهم بسيط يشير إلى اليسار","rightwards simple arrow":"سهم بسيط يشير إلى اليمين","upwards simple arrow":"سهم بسيط يشير إلى الأعلى","downwards simple arrow":"سهم بسيط يشير إلى الأسÙÙ„","leftwards double arrow":"سهم مزدوج متجه يساراً","rightwards double arrow":"سهم مزدوج متجه يميناً","upwards double arrow":"سهم مزدوج متجه لأعلى","downwards double arrow":"سهم مزدوج متجه لأسÙÙ„","leftwards dashed arrow":"سهم متقطع متجه يساراً","rightwards dashed arrow":"سهم متقطع متجه يميناً","upwards dashed arrow":"سهم متقطع متجه لأعلى","downwards dashed arrow":"سهم متقطع متجه لأسÙÙ„","leftwards arrow to bar":"سهم يشير إلى خط جهة اليسار","rightwards arrow to bar":"سهم يشير إلى خط جهة اليمين","upwards arrow to bar":"سهم لأعلى يشير إلى خط","downwards arrow to bar":"سهم لأسÙÙ„ يشير إلى خط","up down arrow with base":"سهم بالاتجاهين أعلى وأسÙÙ„ØŒ له قاعدة","back with leftwards arrow above":"\"عودة\" أعلاها سهم يتجه يساراً","end with leftwards arrow above":"\"النهاية\" أعلاها سهم يتجه يساراً","on with exclamation mark with left right arrow above":"\"يعمل\" وعلامة تعجب، أعلاهما سهم باتجاهين يميناً ويساراً","soon with rightwards arrow above":"\"قريباً\" أعلاها سهم يتجه يميناً","top with upwards arrow above":"\"إلى القمة\" أعلاها سهم لأعلى","Dollar sign":"رمز الدولار","Euro sign":"رمز اليورو","Yen sign":"رمز الين","Pound sign":"رمز الجنيه","Cent sign":"رمز السنت","Euro-currency sign":"رمز عملة اليورو","Colon sign":"رمز الكولون","Cruzeiro sign":"رمز الكروزيرو","French franc sign":"رمز الÙرانك الÙرنسي","Lira sign":"رمز الليرة","Currency sign":"رمز العملة","Bitcoin sign":"رمز البيتكوين","Mill sign":"رمز المليم","Naira sign":"رمز النيرة","Peseta sign":"رمز البيزيتا","Rupee sign":"رمز الروبية","Won sign":"رمز الوون","New sheqel sign":"رمز الشيكل الجديد","Dong sign":"رمز الدونغ","Kip sign":"رمز الكيب","Tugrik sign":"رمز التوغروغ","Drachma sign":"رمز الدراخما","German penny sign":"رمز البنس الألماني","Peso sign":"رمز البيزو","Guarani sign":"رمز الغواراني","Austral sign":"رمز الأسترال","Hryvnia sign":"رمز الهريÙنا","Cedi sign":"رمز السيدي","Livre tournois sign":"رمز الليÙر تورنوز","Spesmilo sign":"رمز السبسميلو","Tenge sign":"رمز التينغ","Indian rupee sign":"رمز الروبية الهندية","Turkish lira sign":"رمز الليرة التركية","Nordic mark sign":"رمز المارك الاسكندناÙÙŠ","Manat sign":"رمز المانات","Ruble sign":"رمز الروبيل","Latin capital letter a with macron":"Øر٠a لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter a with macron":"Øر٠a لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter a with breve":"Øر٠a لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter a with breve":"Øر٠a لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter a with ogonek":"Øر٠a لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter a with ogonek":"Øر٠a لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter c with acute":"Øر٠c لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter c with acute":"Øر٠c لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter c with circumflex":"Øر٠c لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter c with circumflex":"Øر٠c لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter c with dot above":"Øر٠c لاتيني كبير مع نقطة أعلاه","Latin small letter c with dot above":"Øر٠c لاتيني صغير مع نقطة أعلاه","Latin capital letter c with caron":"Øر٠c لاتيني كبير مع علامة تشكيل كارون","Latin small letter c with caron":"Øر٠c لاتيني صغير مع علامة تشكيل كارون","Latin capital letter d with caron":"Øر٠d لاتيني كبير مع علامة تشكيل كارون","Latin small letter d with caron":"Øر٠d لاتيني صغير مع علامة تشكيل كارون","Latin capital letter d with stroke":"Øر٠d لاتيني كبير مع علامة شطب","Latin small letter d with stroke":"Øر٠d لاتيني صغير مع علامة شطب","Latin capital letter e with macron":"Øر٠e لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter e with macron":"Øر٠e لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter e with breve":"Øر٠e لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter e with breve":"Øر٠e لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter e with dot above":"Øر٠e لاتيني كبير مع نقطة أعلاه","Latin small letter e with dot above":"Øر٠e لاتيني صغير مع نقطة أعلاه","Latin capital letter e with ogonek":"Øر٠e لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter e with ogonek":"Øر٠e لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter e with caron":"Øر٠e لاتيني كبير مع علامة تشكيل كارون","Latin small letter e with caron":"Øر٠e لاتيني صغير مع علامة تشكيل كارون","Latin capital letter g with circumflex":"Øر٠g لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter g with circumflex":"Øر٠g لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter g with breve":"Øر٠g لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter g with breve":"Øر٠g لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter g with dot above":"Øر٠g لاتيني كبير مع نقطة أعلاه","Latin small letter g with dot above":"Øر٠g لاتيني صغير مع نقطة أعلاه","Latin capital letter g with cedilla":"Øر٠g لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter g with cedilla":"Øر٠g لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter h with circumflex":"Øر٠h لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter h with circumflex":"Øر٠h لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter h with stroke":"Øر٠h لاتيني كبير مع علامة شطب","Latin small letter h with stroke":"Øر٠h لاتيني صغير مع علامة شطب","Latin capital letter i with tilde":"Øر٠i لاتيني كبير مع علامة المد","Latin small letter i with tilde":"Øر٠i لاتيني صغير مع علامة المد","Latin capital letter i with macron":"Øر٠i لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter i with macron":"Øر٠i لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter i with breve":"Øر٠i لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter i with breve":"Øر٠i لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter i with ogonek":"Øر٠i لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter i with ogonek":"Øر٠i لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter i with dot above":"Øر٠i لاتيني كبير مع نقطة أعلاه","Latin small letter dotless i":"Øر٠i لاتيني صغير بدون نقطة","Latin capital ligature ij":"Øر٠ij لاتيني Ù…Ùركَّب كبير","Latin small ligature ij":"Øر٠ij لاتيني Ù…Ùركَّب صغير","Latin capital letter j with circumflex":"Øر٠j لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter j with circumflex":"Øر٠j لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter k with cedilla":"Øر٠k لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter k with cedilla":"Øر٠k لاتيني صغير مع علامة تشكيل السيديلة","Latin small letter kra":"Øر٠kra لاتيني صغير","Latin capital letter l with acute":"Øر٠l لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter l with acute":"Øر٠l لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter l with cedilla":"Øر٠l لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter l with cedilla":"Øر٠l لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter l with caron":"Øر٠l لاتيني كبير مع علامة تشكيل كارون","Latin small letter l with caron":"Øر٠l لاتيني صغير مع علامة تشكيل كارون","Latin capital letter l with middle dot":"Øر٠l لاتيني كبير مع نقطة عند الوسط","Latin small letter l with middle dot":"Øر٠l لاتيني صغير مع نقطة عند الوسط","Latin capital letter l with stroke":"Øر٠l لاتيني كبير مع علامة شطب","Latin small letter l with stroke":"Øر٠l لاتيني صغير مع علامة شطب","Latin capital letter n with acute":"Øر٠n لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter n with acute":"Øر٠n لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter n with cedilla":"Øر٠n لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter n with cedilla":"Øر٠n لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter n with caron":"Øر٠n لاتيني كبير مع علامة تشكيل كارون","Latin small letter n with caron":"Øر٠n لاتيني صغير مع علامة تشكيل كارون","Latin small letter n preceded by apostrophe":"Øر٠n لاتيني صغير مسبوقة بعلامة Ùاصلة عليا","Latin capital letter eng":"Øر٠eng لاتيني كبير","Latin small letter eng":"Øر٠eng لاتيني صغير","Latin capital letter o with macron":"Øر٠o لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter o with macron":"Øر٠o لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter o with breve":"Øر٠o لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter o with breve":"Øر٠o لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter o with double acute":"Øر٠o لاتيني كبير مع علامة تشكيل النبرة الØادة المزدوجة","Latin small letter o with double acute":"Øر٠o لاتيني صغير مع علامة تشكيل النبرة الØادة المزدوجة","Latin capital ligature oe":"Øر٠oe لاتيني Ù…Ùركَّب كبير","Latin small ligature oe":"Øر٠oe لاتيني Ù…Ùركَّب صغير","Latin capital letter r with acute":"Øر٠r لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter r with acute":"Øر٠r لاتيني صغير مع علامة تشكيل النبرة الØادة\n","Latin capital letter r with cedilla":"Øر٠r لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter r with cedilla":"Øر٠r لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter r with caron":"Øر٠r لاتيني كبير مع علامة تشكيل كارون","Latin small letter r with caron":"Øر٠r لاتيني صغير مع علامة تشكيل كارون","Latin capital letter s with acute":"Øر٠s لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter s with acute":"Øر٠s لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter s with circumflex":"Øر٠s لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter s with circumflex":"Øر٠s لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter s with cedilla":"Øر٠s لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter s with cedilla":"Øر٠s لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter s with caron":"Øر٠s لاتيني كبير مع علامة تشكيل كارون","Latin small letter s with caron":"Øر٠s لاتيني صغير مع علامة تشكيل كارون","Latin capital letter t with cedilla":"Øر٠t لاتيني كبير مع علامة تشكيل السيديلة","Latin small letter t with cedilla":"Øر٠t لاتيني صغير مع علامة تشكيل السيديلة","Latin capital letter t with caron":"Øر٠t لاتيني كبير مع علامة تشكيل كارون","Latin small letter t with caron":"Øر٠t لاتيني صغير مع علامة تشكيل كارون","Latin capital letter t with stroke":"Øر٠t لاتيني كبير مع علامة شطب","Latin small letter t with stroke":"Øر٠t لاتيني صغير مع علامة شطب","Latin capital letter u with tilde":"Øر٠u لاتيني كبير مع علامة المد","Latin small letter u with tilde":"Øر٠u لاتيني صغير مع علامة المد","Latin capital letter u with macron":"Øر٠u لاتيني كبير مع علامة تشكيل ماكرون","Latin small letter u with macron":"Øر٠u لاتيني صغير مع علامة تشكيل ماكرون","Latin capital letter u with breve":"Øر٠u لاتيني كبير مع علامة تشكيل بريÙ","Latin small letter u with breve":"Øر٠u لاتيني صغير مع علامة تشكيل بريÙ","Latin capital letter u with ring above":"Øر٠u لاتيني كبير مع Øلقة أعلاه","Latin small letter u with ring above":"Øر٠u لاتيني صغير مع Øلقة أعلاه","Latin capital letter u with double acute":"Øر٠u لاتيني كبير مع علامة تشكيل النبرة الØادة المزدوجة","Latin small letter u with double acute":"Øر٠u لاتيني صغير مع علامة تشكيل النبرة الØادة المزدوجة","Latin capital letter u with ogonek":"Øر٠u لاتيني كبير مع علامة تشكيل خطاÙ","Latin small letter u with ogonek":"Øر٠u لاتيني صغير مع علامة تشكيل خطاÙ","Latin capital letter w with circumflex":"Øر٠w لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter w with circumflex":"Øر٠w لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter y with circumflex":"Øر٠y لاتيني كبير مع علامة تشكيل ثنية Ù…Øيطة","Latin small letter y with circumflex":"Øر٠y لاتيني صغير مع علامة تشكيل ثنية Ù…Øيطة","Latin capital letter y with diaeresis":"Øر٠y لاتيني كبير مع نقطتين أعلاه","Latin capital letter z with acute":"Øر٠z لاتيني كبير مع علامة تشكيل النبرة الØادة","Latin small letter z with acute":"Øر٠z لاتيني صغير مع علامة تشكيل النبرة الØادة","Latin capital letter z with dot above":"Øر٠z لاتيني كبير مع نقطة أعلاه","Latin small letter z with dot above":"Øر٠z لاتيني صغير مع نقطة أعلاه","Latin capital letter z with caron":"Øر٠z لاتيني كبير مع علامة تشكيل كارون","Latin small letter z with caron":"Øر٠z لاتيني صغير مع علامة تشكيل كارون","Latin small letter long s":"Øر٠\"s طويل\" لاتيني صغير","Less-than sign":"علامة أقل من","Greater-than sign":"علامة أكبر من","Less-than or equal to":"أقل من أو يساوي","Greater-than or equal to":"أكبر من أو يساوي","En dash":"شرطة قصيرة","Em dash":"شرطة طويلة",Macron:"علامة التشكيل ماكرون",Overline:"خط أعلى الØرÙ","Degree sign":"علامة الدرجة","Minus sign":"علامة الطرØ","Plus-minus sign":"علامة Ø§Ù„Ø·Ø±Ø ÙˆØ§Ù„Ø¬Ù…Ø¹","Division sign":"علامة القسمة","Fraction slash":"شرطة الكسر","Multiplication sign":"علامة الضرب","Latin small letter f with hook":"Øر٠f لاتيني صغير مع علامة الخطاÙ",Integral:"علامة التكامل","N-ary summation":"جمع مصÙÙˆÙØ© N",Infinity:"علامة ما لا نهاية","Square root":"الجذر التربيعي","Tilde operator":"علامة دلتا","Approximately equal to":"يساوي تقريباً","Almost equal to":"يساوي على الأرجØ","Not equal to":"لا يساوي","Identical to":"مطابق لـ","Element of":"ينتمي إلى","Not an element of":"لا ينتمي إلى","Contains as member":"ÙŠØتوي كعضو","N-ary product":"Øاصل مصÙÙˆÙØ© N","Logical and":"and المنطقية","Logical or":"or المنطقية","Not sign":"علامة Not المنطقية",Intersection:"تقاطع",Union:"اتØاد","Partial differential":"التÙاضلية الجزئية","For all":"علامة للكل","There exists":"علامة يوجد بها","Empty set":"مجموعة Ùارغة",Nabla:"رمز نبلة","Asterisk operator":"علامة الضرب (النجمة)","Proportional to":"يتناسب مع",Angle:"علامة الزاوية","Vulgar fraction one quarter":"الكسر الاعتيادي ربع","Vulgar fraction one half":"الكسر الاعتيادي نصÙ","Vulgar fraction three quarters":"الكسر الاعتيادي ثلاثة أرباع","Single left-pointing angle quotation mark":"علامة تنصيص Ø£Øادية، رمز الزاوية، تشير جهة اليسار","Single right-pointing angle quotation mark":"علامة تنصيص Ø£Øادية، رمز الزاوية، تشير جهة اليمين","Left-pointing double angle quotation mark":"علامة تنصيص مزدوجة، رمز الزاوية، تشير جهة اليسار","Right-pointing double angle quotation mark":"علامة تنصيص مزدوجة، رمز الزاوية، تشير جهة اليمين","Left single quotation mark":"علامة تنصيص Ø£Øادية، تشير جهة اليسار","Right single quotation mark":"علامة تنصيص Ø£Øادية، تشير جهة اليمين","Left double quotation mark":"علامة تنصيص مزدوجة، تشير جهة اليسار","Right double quotation mark":"علامة تنصيص مزدوجة، تشير جهة اليمين","Single low-9 quotation mark":"علامة تنصيص 9 منخÙضة، Ø£Øادية","Double low-9 quotation mark":"علامة تنصيص 9 منخÙضة، مزدوجة","Inverted exclamation mark":"علامة تعجّب مقلوبة","Inverted question mark":"علامة استÙهام مقلوبة","Two dot leader":"سابقة من نقطتان","Horizontal ellipsis":"علامة القطع الأÙقي","Double dagger":"رمز الخنجر المزدوج","Per mille sign":"علامة \"لكل ميل\"","Per ten thousand sign":"علامة \"لكل 10 آلاÙ\"","Double exclamation mark":"علامة تعجّب مزدوجة","Question exclamation mark":"علامة استÙهام مزدوجة","Exclamation question mark":"علامة استÙهام مع علامة تعجب","Double question mark":"علامة استÙهام مزدوجة","Copyright sign":"علامة \"ØÙ‚ التألي٠والنشر\"","Registered sign":"علامة \"مسجل\"","Trade mark sign":"رمز العلامة التجارية","Section sign":"علامة القطاع","Paragraph sign":"علامة الÙقرة","Reversed paragraph sign":"علامة الÙقرة مقلوبة","Character categories":"Ùئات الأØرÙ",Styles:"الأنماط","Multiple styles":"أنماط متعددة","Block styles":"أنماط الكتل","Text styles":"أنماط النصوص","Insert table":"إدراج جدول","Header column":"عمود عنوان","Insert column left":"أدخل العمود إلى اليسار","Insert column right":"أدخل العمود إلى اليمين","Delete column":"Øذ٠العمود","Select column":"Øدد العمود",Column:"عمود","Header row":"ص٠عنوان","Insert row below":"ادراج ص٠بعد","Insert row above":"ادراج ص٠قبل","Delete row":"Øذ٠الصÙ","Select row":"Øدد صÙًا",Row:"صÙ","Merge cell up":"دمج الخلايا للأعلى","Merge cell right":"دمج الخلايا لليمين","Merge cell down":"دمج الخلايا للأسÙÙ„","Merge cell left":"دمج الخلايا لليسار","Split cell vertically":"Ùصل الخلايا بشكل عمودي","Split cell horizontally":"Ùصل الخلايا بشكل اÙقي","Merge cells":"دمج الخلايا","Table toolbar":"شريط أدوات الجدول","Table properties":"خصائص الجدول","Cell properties":"خصائص الخلية",Border:"الØدود",Style:"أسلوب",Width:"العرض",Height:"الارتÙاع",Color:"اللون",Background:"الخلÙية",Padding:"الØاشية",Dimensions:"الابعاد","Table cell text alignment":"Ù…Øاذاة نص خلية الجدول",Alignment:"المØاذاة","Horizontal text alignment toolbar":"شريط أدوات Ù…Øاذاة النص الأÙقي","Vertical text alignment toolbar":"شريط أدوات Ù…Øاذاة النص العمودي","Table alignment toolbar":"شريط أدوات Ù…Øاذاة الجدول",None:"لا شيء",Solid:"صلب",Dotted:"منقط",Dashed:"متقطع",Double:"مزدوج",Groove:"إطار Ù…ØÙور",Ridge:"إطار ناتئ",Inset:"منخÙض",Outset:"بارز","Align cell text to the left":"قم بمØاذاة نص الخلية إلى اليسار","Align cell text to the center":"قم بمØاذاة نص الخلية إلى المركز","Align cell text to the right":"قم بمØاذاة نص الخلية إلى اليمين","Justify cell text":"ضبط نص الخلية","Align cell text to the top":"قم بمØاذاة نص الخلية إلى الأعلى","Align cell text to the middle":"قم بمØاذاة نص الخلية إلى المنتصÙ","Align cell text to the bottom":"قم بمØاذاة نص الخلية للاسÙÙ„","Align table to the left":"قم بمØاذاة الجدول إلى اليسار","Center table":"قم بمØاذاة الجدول إلى المنتصÙ","Align table to the right":"قم بمØاذاة الجدول إلى اليمين","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"هذا اللون غير صالØ. جرّÙب \"#FF0000\" أو \"rgb(255,0,0)\" أو \"Ø£Øمر\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"هذه القيمة غير صالØØ©. جرّÙب \"10px\" أو \"2em\" أو \"2\" ÙˆØسب.","Color picker":"أداة انتقاء الألوان","Toggle caption off":"إخÙاء التسمية التوضيØية","Toggle caption on":"عرض التسمية التوضيØية","Enter table caption":"أدخل التسمية التوضيØية للجدول","Rich Text Editor":"معالج نصوص","Editor editing area: %0":"منطقة تØرير المØرر: %0","Edit block":"كتلة التØرير","Click to edit block":"انقر لتØرير الوØدة التجميعية","Drag to move":"اسØب للنقل",Next:"التالي",Previous:"السابق","Editor toolbar":"شريط أدوات المØرر","Dropdown toolbar":"شريط أدوات القائمة المنسدلة",Black:"أسود","Dim grey":"رمادي خاÙت",Grey:"رمادي","Light grey":"رمادي ÙاتØ",White:"أبيض",Red:"Ø£Øمر",Orange:"برتقالي",Yellow:"أصÙر","Light green":"أخضر ÙاتØ",Green:"أخضر",Aquamarine:"أخضر زبرجد",Turquoise:"Ùيروزي","Light blue":"أزرق ÙاتØ",Blue:"أزرق",Purple:"أرجواني","Editor block content toolbar":"شريط المØرر لأدوات كتلة المØتوى","Editor contextual toolbar":"شريط المØرر للأدوات السياقية",HEX:"لون سداسي عشري",Accept:"قبول","No results found":"لم يتم العثور على نتائج","No searchable items":"لا توجد عناصر قابلة للبØØ« متاØØ©","Editor dialog":"Øوار المØرر",Close:"إغلاق",Undo:"تراجع",Redo:"إعادة","Upload in progress":"جاري الرÙع","Widget toolbar":"شريط أدوات الواجهة","Insert paragraph before block":"إدراج Ùقرة قبل الكتلة","Insert paragraph after block":"إدراج Ùقرة بعد الكتلة","Press Enter to type after or press Shift + Enter to type before the widget":"اضغط على Enter للكتابة بعد ذلك أو اضغط على Shift + Enter للكتابة قبل الأداة","Words: %0":"الكلمات: %0","Characters: %0":"الأØرÙ: %0"} );l.getPluralForm=function(n){return n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/az.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/az.js index 32b52dfa8188f879c1c9ec88172b106705e7dd0b..76b5f10407d7f8606cdc3aeb377089e88c88ffe1 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/az.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/az.js @@ -1 +1 @@ -(function(d){ const l = d['az'] = d['az'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Soldan düzlÉ™ndir","Align right":"SaÄŸdan düzlÉ™ndir","Align center":"MÉ™rkÉ™zÉ™ düzlÉ™ndir",Justify:"EninÉ™ görÉ™","Text alignment":"MÉ™tn düzlÉ™ndirmÉ™si","Text alignment toolbar":"MÉ™tnin düzlÉ™ndirmÉ™ paneli",Bold:"Yarıqalın",Italic:"Maili",Underline:"Altdan xÉ™tt",Code:"Kod",Strikethrough:"Qaralanmış",Subscript:"Alt yazı",Superscript:"Ãœst yazı","Block quote":"Sitat bloku","Insert code block":"Kod blokunu É™lavÉ™ et","Plain text":"SadÉ™ mÉ™tn",Cancel:"Ä°mtina et",Clear:"","Remove color":"RÉ™ngi ləğv et","Restore default":"",Save:"Yadda saxla","Show more items":"Daha çox əşyanı göstÉ™rin","%0 of %1":"%1-dÉ™n %0","Cannot upload file:":"Fayl yüklÉ™nÉ™ bilmir","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Abzas",Heading:"BaÅŸlıq","Choose heading":"BaÅŸlıqı seç","Heading 1":"BaÅŸlıq 1","Heading 2":"BaÅŸlıq 2","Heading 3":"BaÅŸlıq 3","Heading 4":"BaÅŸlıq 4","Heading 5":"BaÅŸlıq 5","Heading 6":"BaÅŸlıq 6","Type your title":"BaÅŸlığınızı yazın","Type or paste your content here.":"","Horizontal line":"Ãœfüqi xÉ™tt","Increase indent":"BoÅŸ yeri böyüt","Decrease indent":"BoÅŸ yeri kiçilt",Unlink:"Linki sil",Link:"ÆlaqÉ™lÉ™ndir","Link URL":"Linkin URL","Link image":"","Edit link":"Linki redaktÉ™ et","Open link in new tab":"Linki yeni pÉ™ncÉ™rÉ™dÉ™ aç","This link has no URL":"Bu linkdÉ™ URL yoxdur","Open in a new tab":"Yeni pÉ™ncÉ™rÉ™dÉ™ aç",Downloadable:"YüklÉ™nÉ™ bilÉ™r","Numbered List":"NömrÉ™lÉ™nmiÅŸ siyahı","Bulleted List":"MarkerlÉ™nmiÅŸ siyahı","To-do List":"To-do siyahı","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatı Ləğv Et","Special characters":"Xüsusi simvollar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"sola ikiqat ox","rightwards double arrow":"saÄŸa ikiqat ox","upwards double arrow":"yuxarı ikiqat ox","downwards double arrow":"aÅŸağı ikiqat ox","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"CÉ™dvÉ™li É™lavÉ™ et","Header column":"BaÅŸlıqlı sütun","Insert column left":"Sola sütun É™lavÉ™ et","Insert column right":"SaÄŸa sütun É™lavÉ™ et","Delete column":"Sütunları sil","Select column":"",Column:"Sütun","Header row":"BaÅŸlıqlı sÉ™tir","Insert row below":"Yuxarıya sÉ™tir É™lavÉ™ et","Insert row above":"AÅŸağıya sÉ™tir É™lavÉ™ et","Delete row":"SÉ™tirlÉ™ri sil","Select row":"",Row:"SÉ™tir","Merge cell up":"Xanaları yuxarı birləşdir","Merge cell right":"Xanaları saÄŸa birləşdir","Merge cell down":"Xanaları aÅŸağı birləşdir","Merge cell left":"Xanaları sola birləşdir","Split cell vertically":"Xanaları ÅŸaquli böl","Split cell horizontally":"Xanaları üfüqi böl","Merge cells":"Xanaları birləşdir","Table toolbar":"CÉ™dvÉ™l paneli","Table properties":"CÉ™dvÉ™l xüsusiyyÉ™tlÉ™ri","Cell properties":"",Border:"SÉ™rhÉ™d",Style:"",Width:"Eni",Height:"Hündürlük",Color:"RÉ™ng",Background:"Fon",Padding:"",Dimensions:"ÖlçülÉ™r","Table cell text alignment":"CÉ™dvÉ™l hüceyrÉ™si mÉ™tninin uyÄŸunlaÅŸdırılması",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich Text Redaktoru","Editor editing area: %0":"","Edit block":"RedaktÉ™ etmÉ™k bloku","Click to edit block":"","Drag to move":"",Next:"NövbÉ™ti",Previous:"ÆvvÉ™lki","Editor toolbar":"Redaktorun paneli","Dropdown toolbar":"Açılan paneli",Black:"Qara","Dim grey":"Tünd boz",Grey:"Boz","Light grey":"Açıq boz",White:"AÄŸ",Red:"Qırmızı",Orange:"Narıncı",Yellow:"Sarı","Light green":"Açıq yaşıl",Green:"Yaşıl",Aquamarine:"Akvamarin",Turquoise:"FiruzÉ™yi","Light blue":"Açıq mavi",Blue:"Mavi",Purple:"BÉ™növÅŸÉ™yi","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Ä°mtina et",Redo:"TÉ™krar et","Upload in progress":"YüklÉ™nir","Widget toolbar":"Vidgetin paneli","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"SözlÉ™r: %0","Characters: %0":"Simvolar: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['az'] = d['az'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Soldan düzlÉ™ndir","Align right":"SaÄŸdan düzlÉ™ndir","Align center":"MÉ™rkÉ™zÉ™ düzlÉ™ndir",Justify:"EninÉ™ görÉ™","Text alignment":"MÉ™tn düzlÉ™ndirmÉ™si","Text alignment toolbar":"MÉ™tnin düzlÉ™ndirmÉ™ paneli",Bold:"Yarıqalın",Italic:"Maili",Underline:"Altdan xÉ™tt",Code:"Kod",Strikethrough:"Qaralanmış",Subscript:"Alt yazı",Superscript:"Ãœst yazı","Block quote":"Sitat bloku","Insert code block":"Kod blokunu É™lavÉ™ et","Plain text":"SadÉ™ mÉ™tn",Cancel:"Ä°mtina et",Clear:"","Remove color":"RÉ™ngi ləğv et","Restore default":"",Save:"Yadda saxla","Show more items":"Daha çox əşyanı göstÉ™rin","%0 of %1":"%1-dÉ™n %0","Cannot upload file:":"Fayl yüklÉ™nÉ™ bilmir","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Åžrift ölçüsü",Tiny:"Miniatür",Small:"Kiçik",Big:"Böyük",Huge:"NÉ™hÉ™ng","Font Family":"Åžrift ailÉ™si",Default:"Default","Font Color":"Åžrift RÉ™ngi","Font Background Color":"Åžrift Fonunun RÉ™ngi","Document colors":"RÉ™nglÉ™r",Paragraph:"Abzas",Heading:"BaÅŸlıq","Choose heading":"BaÅŸlıqı seç","Heading 1":"BaÅŸlıq 1","Heading 2":"BaÅŸlıq 2","Heading 3":"BaÅŸlıq 3","Heading 4":"BaÅŸlıq 4","Heading 5":"BaÅŸlıq 5","Heading 6":"BaÅŸlıq 6","Type your title":"BaÅŸlığınızı yazın","Type or paste your content here.":"","Horizontal line":"Ãœfüqi xÉ™tt","Increase indent":"BoÅŸ yeri böyüt","Decrease indent":"BoÅŸ yeri kiçilt",Unlink:"Linki sil",Link:"ÆlaqÉ™lÉ™ndir","Link URL":"Linkin URL","Link image":"","Edit link":"Linki redaktÉ™ et","Open link in new tab":"Linki yeni pÉ™ncÉ™rÉ™dÉ™ aç","This link has no URL":"Bu linkdÉ™ URL yoxdur","Open in a new tab":"Yeni pÉ™ncÉ™rÉ™dÉ™ aç",Downloadable:"YüklÉ™nÉ™ bilÉ™r","Numbered List":"NömrÉ™lÉ™nmiÅŸ siyahı","Bulleted List":"MarkerlÉ™nmiÅŸ siyahı","To-do List":"To-do siyahı","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatı Ləğv Et","Special characters":"Xüsusi simvollar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"sola ikiqat ox","rightwards double arrow":"saÄŸa ikiqat ox","upwards double arrow":"yuxarı ikiqat ox","downwards double arrow":"aÅŸağı ikiqat ox","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"CÉ™dvÉ™li É™lavÉ™ et","Header column":"BaÅŸlıqlı sütun","Insert column left":"Sola sütun É™lavÉ™ et","Insert column right":"SaÄŸa sütun É™lavÉ™ et","Delete column":"Sütunları sil","Select column":"",Column:"Sütun","Header row":"BaÅŸlıqlı sÉ™tir","Insert row below":"Yuxarıya sÉ™tir É™lavÉ™ et","Insert row above":"AÅŸağıya sÉ™tir É™lavÉ™ et","Delete row":"SÉ™tirlÉ™ri sil","Select row":"",Row:"SÉ™tir","Merge cell up":"Xanaları yuxarı birləşdir","Merge cell right":"Xanaları saÄŸa birləşdir","Merge cell down":"Xanaları aÅŸağı birləşdir","Merge cell left":"Xanaları sola birləşdir","Split cell vertically":"Xanaları ÅŸaquli böl","Split cell horizontally":"Xanaları üfüqi böl","Merge cells":"Xanaları birləşdir","Table toolbar":"CÉ™dvÉ™l paneli","Table properties":"CÉ™dvÉ™l xüsusiyyÉ™tlÉ™ri","Cell properties":"",Border:"SÉ™rhÉ™d",Style:"",Width:"Eni",Height:"Hündürlük",Color:"RÉ™ng",Background:"Fon",Padding:"",Dimensions:"ÖlçülÉ™r","Table cell text alignment":"CÉ™dvÉ™l hüceyrÉ™si mÉ™tninin uyÄŸunlaÅŸdırılması",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich Text Redaktoru","Editor editing area: %0":"","Edit block":"RedaktÉ™ etmÉ™k bloku","Click to edit block":"","Drag to move":"",Next:"NövbÉ™ti",Previous:"ÆvvÉ™lki","Editor toolbar":"Redaktorun paneli","Dropdown toolbar":"Açılan paneli",Black:"Qara","Dim grey":"Tünd boz",Grey:"Boz","Light grey":"Açıq boz",White:"AÄŸ",Red:"Qırmızı",Orange:"Narıncı",Yellow:"Sarı","Light green":"Açıq yaşıl",Green:"Yaşıl",Aquamarine:"Akvamarin",Turquoise:"FiruzÉ™yi","Light blue":"Açıq mavi",Blue:"Mavi",Purple:"BÉ™növÅŸÉ™yi","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Ä°mtina et",Redo:"TÉ™krar et","Upload in progress":"YüklÉ™nir","Widget toolbar":"Vidgetin paneli","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"SözlÉ™r: %0","Characters: %0":"Simvolar: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bg.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bg.js index a3f82dfea5ba0ee9d00628db5467e9bae3daae96..4c1f154c2301af8bde942878c660299d01307fd4 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bg.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bg.js @@ -1 +1 @@ -(function(d){ const l = d['bg'] = d['bg'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"ЛÑво подравнÑване","Align right":"ДÑÑно подравнÑване","Align center":"Централно подравнÑване",Justify:"Разпредели по равно","Text alignment":"ПодравнÑване на текÑта","Text alignment toolbar":"Лента за подравнÑване на текÑÑ‚",Bold:"Удебелен",Italic:"КурÑив",Underline:"Подчертаване",Code:"Код",Strikethrough:"Зачертаване",Subscript:"Долен индекÑ",Superscript:"Горен индекÑ","Block quote":"Цитат","Insert code block":"Въведи кодов блок","Plain text":"Обикновен текÑÑ‚",Cancel:"Отказ",Clear:"ИзчиÑти","Remove color":"Премахни цвÑÑ‚","Restore default":"ВъзÑтанови първоначалните наÑтройки",Save:"Запазване","Show more items":"Покажи повече единици","%0 of %1":"%0 от %1","Cannot upload file:":"Ðе може да качи файл:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Зона за редактиране: %0","Insert with file manager":"Вмъкване Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Replace with file manager":"Заменете Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Insert image with file manager":"Вмъкнете изображение Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Replace image with file manager":"Заменете изображението Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Find and replace":"Ðамери и замени","Find in text…":"Ðамери в текÑта...",Find:"Ðамери","Previous result":"Предишен резултат","Next result":"Следващ резултат",Replace:"Замени","Replace all":"Замени вÑички","Match case":"Сравни Ñъвпадащ шрифт","Whole words only":"Само цели думи","Replace with…":"Замени Ñ...","Text to find must not be empty.":"ТекÑÑ‚ÑŠÑ‚ за намиране не Ñ‚Ñ€Ñбва да е празен.","Tip: Find some text first in order to replace it.":"Съвет: Първо намерете нÑкакъв текÑÑ‚, за да го замените.","Advanced options":"Разширени опции",Paragraph:"Параграф",Heading:"Заглавие","Choose heading":"Избери заглавие","Heading 1":"Заглавие 1","Heading 2":"Заглавие 2","Heading 3":"Заглавие 3","Heading 4":"Заглавие 4","Heading 5":"Заглавие 5","Heading 6":"Заглавие 6","Type your title":"Ðапишете заглавието Ñи","Type or paste your content here.":"Ðапишете или поÑтавете Ñъдържанието Ñи тук.","Horizontal line":"Хоризонтална черта","HTML object":"HTML обект","Increase indent":"Увеличи отÑтъпа","Decrease indent":"Ðамали отÑтъпа",Unlink:"Премахване на линка",Link:"Линк","Link URL":"Уеб Ð°Ð´Ñ€ÐµÑ Ð½Ð° линка","Link image":"Свържи изображение","Edit link":"Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° линк","Open link in new tab":"ОтварÑне на линк в нов раздел","This link has no URL":"Този линк нÑма уеб адреÑ","Open in a new tab":"ОтварÑне в нов раздел",Downloadable:"ИзтеглÑне","Numbered List":"Ðомериране","Bulleted List":"Водещи Ñимволи","To-do List":"СпиÑък ÑÑŠÑ Ð·Ð°Ð´Ð°Ñ‡Ð¸","Bulleted list styles toolbar":"Лента ÑÑŠÑ Ñтилове за подточки","Numbered list styles toolbar":"Лента ÑÑŠÑ Ñтилове за номерациÑ","Toggle the disc list style":"Превключи между Ñтиловете на диÑÐºÐ¾Ð²Ð¸Ñ ÑпиÑък ","Toggle the circle list style":"Превключи между Ñтиловете на ÐºÑ€ÑŠÐ³Ð¾Ð²Ð¸Ñ ÑпиÑък","Toggle the square list style":"Превключи между Ñтиловете на ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð½Ð¸Ñ ÑпиÑък","Toggle the decimal list style":"Превключи между Ñтиловете на деÑÐµÑ‚Ð¸Ñ‡Ð½Ð¸Ñ ÑпиÑък","Toggle the decimal with leading zero list style":"Превключи между Ñтиловете на деÑÐµÑ‚Ð¸Ñ‡Ð½Ð¸Ñ ÑпиÑък Ñ Ð½Ð°Ñ‡Ð°Ð»Ð¾ нула","Toggle the lower–roman list style":"Превключи между Ñтиловете на долен-римÑки ÑпиÑък","Toggle the upper–roman list style":"Превключи между Ñтиловете на горен-римÑки ÑпиÑък","Toggle the lower–latin list style":"Превключи между Ñтиловете на долен-латиÑнки ÑпиÑък","Toggle the upper–latin list style":"Превключи между Ñтиловете на горен-латинÑки ÑпиÑък",Disc:"ДиÑк",Circle:"Кръг",Square:"Квадрат",Decimal:"ДеÑетичен","Decimal with leading zero":"ДеÑетичен Ñ Ð²Ð¾Ð´ÐµÑ‰Ð° нула","Lower–roman":"Долен-римÑки","Upper-roman":"Горен-римÑки","Lower-latin":"Долен-латинÑки","Upper-latin":"Горен-латинÑки","List properties":"СвойÑтва на ÑпиÑъка","Start at":"Започни Ñ","Start index must be greater than 0.":"Ð¡Ñ‚Ð°Ñ€Ñ‚Ð¾Ð²Ð¸Ñ Ð¸Ð½Ð´ÐµÐºÑ Ñ‚Ñ€Ñбва да е по-голÑм от 0.","Reversed order":"Обърнат ред","Remove Format":"Премахни форматиране","Select all":"Избери вÑички","Show blocks":"Покажи блокове",Source:"Източник","Special characters":"Специални Ñимволи",All:"Ð’Ñички",Arrows:"Стрелки",Currency:"Валутни Ñимволи",Latin:"Латиница",Mathematical:"МатематичеÑки Ñимволи",Text:"ТекÑÑ‚","leftwards simple arrow":"обикновена Ñтрелка налÑво","rightwards simple arrow":"обикновена Ñтрелка надÑÑно","upwards simple arrow":"обикновена Ñтрелка нагоре","downwards simple arrow":"обикновена Ñтрелка надолу","leftwards double arrow":"двойна Ñтрелка налÑво","rightwards double arrow":"двойна Ñтрелка надÑÑно","upwards double arrow":"двойна Ñтрелка нагоре","downwards double arrow":"двойна Ñтрелка надолу","leftwards dashed arrow":"пунктирана Ñтрелка налÑво","rightwards dashed arrow":"пунктирана Ñтрелка надÑÑно","upwards dashed arrow":"пунктирана Ñтрелка нагоре","downwards dashed arrow":"пунктирана Ñтрелка надолу","leftwards arrow to bar":"Ñтрелка налÑво към лентата\n","rightwards arrow to bar":"Ñтрелка надÑÑно към лентата","upwards arrow to bar":"Ñтрелка нагоре към лентата","downwards arrow to bar":"Ñтрелка надолу към лентата","up down arrow with base":"Ñтрелка нагоре надолу Ñ Ð¾Ñнова","back with leftwards arrow above":"назад ÑÑŠÑ Ñтрелка налÑво отгоре","end with leftwards arrow above":"завършва ÑÑŠÑ Ñтрелка налÑво отгоре","on with exclamation mark with left right arrow above":"върху Ñ ÑƒÐ´Ð¸Ð²Ð¸Ñ‚ÐµÐ»ÐµÐ½ знак ÑÑŠÑ Ñтрелка налÑво надÑÑно над","soon with rightwards arrow above":"Ñкоро ÑÑŠÑ Ñтрелка надÑÑно отгоре","top with upwards arrow above":"отгоре ÑÑŠÑ Ñтрелка нагоре отгоре","Dollar sign":"Символ на долар","Euro sign":"Символ на евро","Yen sign":"Символ на йена","Pound sign":"Символ на лира Ñтерлинг","Cent sign":"Символ на цент","Euro-currency sign":"Символ на евровалута","Colon sign":"Символ двоеточие","Cruzeiro sign":"Символ Крузейро","French franc sign":"Символ на френÑки франк","Lira sign":"Символ на лира","Currency sign":"Символ на валута","Bitcoin sign":"Символ на Биткойн","Mill sign":"Символ на мелница","Naira sign":"Символ Ðайра","Peseta sign":"Символ на пеÑета","Rupee sign":"Символ на рупиÑ","Won sign":"Символ на уон","New sheqel sign":"Символ на нов шекел","Dong sign":"Символ на донг","Kip sign":"Символ на кип","Tugrik sign":"Символ на тугрик","Drachma sign":"Символ на драхма","German penny sign":"Символ на немÑко пени","Peso sign":"Символ на пеÑо","Guarani sign":"Символ на гуарани","Austral sign":"Символ на ауÑтрал","Hryvnia sign":"Символ на гривнa","Cedi sign":"Символ Седи","Livre tournois sign":"Символ на ливр турноа","Spesmilo sign":"Символ на ÑпеÑмило","Tenge sign":"Символ на тенге","Indian rupee sign":"Символ на индийÑка рупиÑ","Turkish lira sign":"Символ на турÑка лира","Nordic mark sign":"Символ на ÑкандинавÑки знак","Manat sign":"Символ на манат","Ruble sign":"Символ на рубла","Latin capital letter a with macron":"Главна латинÑка буква „a“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter a with macron":"Малка латинÑка буква „a“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter a with breve":"Главна латинÑка буква „a“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter a with breve":"Малка латинÑка буква „а“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter a with ogonek":"Главна латинÑка буква „a“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter a with ogonek":"Малка латинÑка буква „a“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter c with acute":"Главна латинÑка буква „c“ Ñ Ð°ÐºÑƒÑ‚","Latin small letter c with acute":"Малка латинÑка буква „c“ Ñ Ð°ÐºÑƒÑ‚","Latin capital letter c with circumflex":"Главна латинÑка буква „c“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter c with circumflex":"Малка латинÑка буква „c“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter c with dot above":"Главна латинÑка буква „c“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter c with dot above":"Малка латинÑка буква „c“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter c with caron":"Главна латинÑка буква „c“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter c with caron":"Mалка латинÑка буква „c“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter d with caron":"Главна латинÑка буква d Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter d with caron":"Малка латинÑка буква d Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter d with stroke":"Главна латинÑка буква d Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter d with stroke":"Малк а латинÑка буква d Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter e with macron":"Главна латинÑка буква „e“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter e with macron":"Малка латинÑка буква „e“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter e with breve":"Главна латинÑка буква „e“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter e with breve":"Малка латинÑка буква „e“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter e with dot above":"Главна латинÑка буква „e“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter e with dot above":"Малка латинÑка буква „e“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter e with ogonek":"Главна латинÑка буква „e“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter e with ogonek":"Малка латинÑка буква „e“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter e with caron":"Главна латинÑка буква „e“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter e with caron":"Малка латинÑка буква „e“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter g with circumflex":"Главна латинÑка буква „g“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter g with circumflex":"Малка латинÑка буква „g“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter g with breve":"Главна латинÑка буква „g“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter g with breve":"Малка латинÑка буква „g“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter g with dot above":"Главна латинÑка буква „g“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter g with dot above":"Малка латинÑка буква „g“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter g with cedilla":"Главна латинÑка буква „g“ ÑÑŠÑ Ñедил","Latin small letter g with cedilla":"Малка латинÑка буква „g“ ÑÑŠÑ Ñедил","Latin capital letter h with circumflex":"Главна латинÑка буква h Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter h with circumflex":"Малка латинÑка буква h Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter h with stroke":"Главна латинÑка буква h Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter h with stroke":"Малка латинÑка буква h Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter i with tilde":"Главна латинÑка буква i Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin small letter i with tilde":"Малка латинÑка буква i Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin capital letter i with macron":"Главна латинÑка буква i Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter i with macron":"Малка латинÑка буква i Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter i with breve":"Главна латинÑка буква i Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter i with breve":"Малка латинÑка буква i Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter i with ogonek":"Главна латинÑка буква i Ñ ogonek","Latin small letter i with ogonek":"Малка латинÑка буква i Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter i with dot above":"Главна латинÑка буква i Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter dotless i":"Малка латинÑка буква без точка i","Latin capital ligature ij":"Главна латинÑка лигатура ij","Latin small ligature ij":"Mалка латинÑка лигатура ij","Latin capital letter j with circumflex":"Главна латинÑка буква j Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter j with circumflex":"Малка латинÑка буква j Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter k with cedilla":"Главна латинÑка буква k ÑÑŠÑ Ñедил","Latin small letter k with cedilla":"Mалка lатинÑка буква k ÑÑŠÑ Ñедил","Latin small letter kra":"Mалка латинÑка буква kra","Latin capital letter l with acute":"Главна латинÑка буква l Ñ Ð°ÐºÑƒÑ‚","Latin small letter l with acute":"Mалка латинÑка буква l Ñ Ð°ÐºÑƒÑ‚","Latin capital letter l with cedilla":"Главна латинÑка буква l ÑÑŠÑ Ñедил","Latin small letter l with cedilla":"Малка латинÑка буква l ÑÑŠÑ Ñедил","Latin capital letter l with caron":"Главна латинÑка буква l Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter l with caron":"Малка латинÑка буква l Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter l with middle dot":"Главна латинÑка буква l ÑÑŠÑ Ñредна точка","Latin small letter l with middle dot":"Малка латинÑка буква l ÑÑŠÑ Ñредна точка","Latin capital letter l with stroke":"Главна латинÑка буква l Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter l with stroke":"Малка латинÑка буква l Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter n with acute":"Главна латинÑка буква n Ñ Ð°ÐºÑƒÑ‚","Latin small letter n with acute":"Малка латинÑка буква n Ñ Ð°ÐºÑƒÑ‚","Latin capital letter n with cedilla":"Главна латинÑка буква n ÑÑŠÑ Ñедил","Latin small letter n with cedilla":"Малка латинÑка буква n ÑÑŠÑ Ñедил","Latin capital letter n with caron":"Главна латинÑка буква n Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter n with caron":"Малка латинÑка буква n Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter n preceded by apostrophe":"Малка латинÑка буква n, предшеÑтвана от апоÑтроф","Latin capital letter eng":"Главна латинÑка буква eng","Latin small letter eng":"Малка латинÑка буква eng","Latin capital letter o with macron":"Главна латинÑка буква „o“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter o with macron":"Малка латинÑка буква „o“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter o with breve":"Главна латинÑка буква „o“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter o with breve":"Малка латинÑка буква „o“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter o with double acute":"Главна латинÑка буква „o“ Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin small letter o with double acute":"Малка латинÑка буква „o“ Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin capital ligature oe":"Главна латинÑка лигатура oe","Latin small ligature oe":"Малка латинÑка лигатура oe","Latin capital letter r with acute":"Главна латинÑка буква r Ñ Ð°ÐºÑƒÑ‚","Latin small letter r with acute":"Малка латинÑка буква r Ñ Ð°ÐºÑƒÑ‚","Latin capital letter r with cedilla":"Главна латинÑка буква r ÑÑŠÑ Ñедил","Latin small letter r with cedilla":"Малка латинÑка буква r ÑÑŠÑ Ñедил","Latin capital letter r with caron":"Главна латинÑка буква r Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter r with caron":"Малка латинÑка буква r Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter s with acute":"Главна латинÑка буква s Ñ Ð°ÐºÑƒÑ‚","Latin small letter s with acute":"Малка латинÑка буква s Ñ Ð°ÐºÑƒÑ‚","Latin capital letter s with circumflex":"Главна латинÑка буква s Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter s with circumflex":"Малка латинÑка буква s Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter s with cedilla":"Главна латинÑка буква s ÑÑŠÑ Ñедил","Latin small letter s with cedilla":"Малка латинÑка буква s ÑÑŠÑ Ñедил","Latin capital letter s with caron":"Главна латинÑка буква s Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter s with caron":"Малка латинÑка буква s Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter t with cedilla":"Главна латинÑка буква t ÑÑŠÑ Ñедил","Latin small letter t with cedilla":"Малка латинÑка буква t ÑÑŠÑ Ñедил","Latin capital letter t with caron":"Главна латинÑка буква t Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter t with caron":"Малка латинÑка буква t Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter t with stroke":"Главна латинÑка буква t Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter t with stroke":"Малка латинÑка буква t Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter u with tilde":"Главна латинÑка буква u Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin small letter u with tilde":"Малка латинÑка буква u Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin capital letter u with macron":"Главна латинÑка буква u Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter u with macron":"Малка латинÑка буква u Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter u with breve":"Главна латинÑка буква u Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter u with breve":"Малка латинÑка буква u Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter u with ring above":"Главна латинÑка буква u Ñ Ð¿Ñ€ÑŠÑтен отгоре","Latin small letter u with ring above":"Малка латинÑка буква u Ñ Ð¿Ñ€ÑŠÑтен отгоре","Latin capital letter u with double acute":"Главна латинÑка буква u Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin small letter u with double acute":"Малка латинÑка буква u Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin capital letter u with ogonek":"Главна латинÑка буква u Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter u with ogonek":"Малка латинÑка буква u Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter w with circumflex":"Главна латинÑка буква w Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter w with circumflex":"Малка латинÑка буква w Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter y with circumflex":"Главна латинÑка буква y Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter y with circumflex":"Малка латинÑка буква y Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter y with diaeresis":"Главна латинÑка буква y Ñ Ð´Ð¸Ð°Ñ€ÐµÐ·Ð°","Latin capital letter z with acute":"Главна латинÑка буква z Ñ Ð°ÐºÑƒÑ‚","Latin small letter z with acute":"Малка латинÑка буква z Ñ Ð°ÐºÑƒÑ‚","Latin capital letter z with dot above":"Главна латинÑка буква z Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter z with dot above":"Малка латинÑка буква z Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter z with caron":"Главна латинÑка буква z Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter z with caron":"Малка латинÑка буква z Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter long s":"Малка латинÑка буква дълго s","Less-than sign":"Знак „по-малко от“ ","Greater-than sign":"Знак „по-голÑмо от“","Less-than or equal to":"По-малко или равно на","Greater-than or equal to":"По-голÑмо или равно на","En dash":"Ен тире","Em dash":"Ем тире",Macron:"Макрон",Overline:"Черта над буква","Degree sign":"Знак за Ñтепен","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плюÑ-минуÑ","Division sign":"Знак за деление","Fraction slash":"Дробна наклонена черта","Multiplication sign":"Знак за умножение","Latin small letter f with hook":"Малка латинÑка буква f Ñ ÐºÑƒÐºÐ¸Ñ‡ÐºÐ°",Integral:"Интеграл","N-ary summation":"N-арно Ñумиране",Infinity:"БезкрайноÑÑ‚","Square root":"Корен квадратен","Tilde operator":"Оператор тилда","Approximately equal to":"Приблизително равно на","Almost equal to":"Почти равно на","Not equal to":"Ðе е равно на","Identical to":"Идентично на","Element of":"Елемент на","Not an element of":"Ðе е елемент от","Contains as member":"Съдържа като член","N-ary product":"N-арен продукт","Logical and":"Логично и","Logical or":"Логично или","Not sign":"Знак „не“",Intersection:"ПреÑечна точка",Union:"Съюз","Partial differential":"ЧаÑтичен диференциал","For all":"За вÑички","There exists":"СъщеÑтвува","Empty set":"Празен комплект",Nabla:"Ðабла","Asterisk operator":"Оператор звездичка","Proportional to":"Пропорционално на",Angle:"Ъгъл","Vulgar fraction one quarter":"ПроÑта дроб една четвърт","Vulgar fraction one half":"ПроÑта дроб една половина","Vulgar fraction three quarters":"ПроÑта дроб три четвърти","Single left-pointing angle quotation mark":"\nЕдинична Ñочеща налÑво ъглова кавичка","Single right-pointing angle quotation mark":"Единична Ñочеща надÑÑно ъглова кавичка","Left-pointing double angle quotation mark":"Сочеща налÑво двойна ъглова кавичка","Right-pointing double angle quotation mark":"Сочеща надÑÑно двойна ъглова кавичка","Left single quotation mark":"ЛÑва единична кавичка","Right single quotation mark":"ДÑÑна единична кавичка","Left double quotation mark":"ЛÑва двойна кавичка","Right double quotation mark":"ДÑÑна двойна кавичка","Single low-9 quotation mark":"Единична ниÑка 9-кавичка","Double low-9 quotation mark":"Двойна ниÑка 9-кавичка","Inverted exclamation mark":"Обърнат удивителен знак","Inverted question mark":"Обърнат въпроÑителен знак","Two dot leader":"Водач Ñ Ð´Ð²Ðµ точки","Horizontal ellipsis":"Хоризонтална елипÑа","Double dagger":"Двойна кама","Per mille sign":"Знак за промили","Per ten thousand sign":"Символ на деÑет хилÑди","Double exclamation mark":"Двоен удивителен знак","Question exclamation mark":"Знак въпроÑителна удивителна","Exclamation question mark":"Знак удивителна въпроÑителна","Double question mark":"Двоен въпроÑителен знак","Copyright sign":"Знак за авторÑки права","Registered sign":"РегиÑтриран знак","Trade mark sign":"Знак за търговÑка марка","Section sign":"Знак за раздел","Paragraph sign":"Знак за параграф","Reversed paragraph sign":"Обърнат знак за параграф","Character categories":"Категории Ñимволи",Styles:"Стилове","Multiple styles":"МножеÑтво Ñтилове","Block styles":"Блокови Ñтилове","Text styles":"ТекÑтови Ñтилове","Insert table":"Вмъкни таблица","Header column":"Заглавна колона","Insert column left":"Вмъкни колона отлÑво","Insert column right":"Вмъкни колона отдÑÑно","Delete column":"Изтриване на колона","Select column":"Избери колона",Column:"Колона","Header row":"Заглавен ред","Insert row below":"Вмъкни ред отдолу","Insert row above":"Вмъкни ред отгоре","Delete row":"Изтриване на ред","Select row":"Избери ред",Row:"Ред","Merge cell up":"ОбединÑване на клетка отгоре","Merge cell right":"ОбединÑване на клетка отдÑÑно","Merge cell down":"ОбединÑване на клетка надолу","Merge cell left":"ОбединÑване на клетка отлÑво","Split cell vertically":"РазделÑне на клетки вертикално","Split cell horizontally":"РазделÑне на клетки хоризонтално","Merge cells":"ОбединÑване на клетки","Table toolbar":"Лента за таблици","Table properties":"СвойÑтва на таблици","Cell properties":"СвойÑтва на клетки",Border:"Граница",Style:"Стил",Width:"Ширина",Height:"ВиÑочина",Color:"ЦвÑÑ‚",Background:"Фон",Padding:"Пълнеж",Dimensions:"Размери","Table cell text alignment":"ПодравнÑване на текÑÑ‚ в клетка",Alignment:"ПодравнÑване","Horizontal text alignment toolbar":"Лента за хоризонтално подравнÑване на текÑÑ‚","Vertical text alignment toolbar":"Лента за вертикално подравнÑване на текÑÑ‚","Table alignment toolbar":"Лента за подравнÑване на таблици",None:"Ðищо",Solid:"Твърд",Dotted:"Ðа точки",Dashed:"Ðа черти",Double:"Двоен",Groove:"Ðа зиг-заг",Ridge:"Ðазъбен",Inset:"Вмъкни",Outset:"Изпъкнала","Align cell text to the left":"Подравни текÑта в клетката налÑво","Align cell text to the center":"Подравни текÑта в клетката централно","Align cell text to the right":"Подравни текÑта в клетката надÑÑно","Justify cell text":"Разпредели равномерно текÑта в клетката","Align cell text to the top":"Подравни текÑта в клетката нагоре","Align cell text to the middle":"Подравни текÑта в клетката към Ñредата","Align cell text to the bottom":"Подравни текÑта в клетката към дъното","Align table to the left":"Подравни таблицата налÑво","Center table":"Центрирай таблицата","Align table to the right":"Подравни таблицата надÑÑно","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Цветът е невалиден. Опитайте \"#FF0000\" или \"rgb(255,0,0)\", или \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"СтойноÑтта е невалидна. Опитайте \"10px\" или \"2em\", или проÑто \"2\".","Color picker":"Избор на цвÑÑ‚","Toggle caption off":"Превключи изключване на надпиÑи","Toggle caption on":"Превключи включване на надпиÑи","Enter table caption":"Въведи Ð½Ð°Ð´Ð¿Ð¸Ñ Ð½Ð° таблица","Rich Text Editor":"Богат текÑтов редактор","Editor editing area: %0":"Зона за редактиране на редактора: %0","Edit block":"Редактирай блок","Click to edit block":"Кликнете, за да редактирате блок","Drag to move":"Плъзнете за премеÑтване",Next:"Следващ",Previous:"Предишен","Editor toolbar":"Лента за редакциÑ","Dropdown toolbar":"Лента Ñ Ð¿Ð°Ð´Ð°Ñ‰Ð¾ меню",Black:"Черен","Dim grey":"Тъмно Ñив",Grey:"Сив","Light grey":"Светло Ñив",White:"БÑл",Red:"Червен",Orange:"Оранжев",Yellow:"Жълт","Light green":"Светло зелен",Green:"Зелен",Aquamarine:"Ðквамарин",Turquoise:"Тюркоазен","Light blue":"Светло Ñин",Blue:"Син",Purple:"Лилав","Editor block content toolbar":"Лента Ñ Ð¸Ð½Ñтрументи за блокиране на Ñъдържанието на редактора","Editor contextual toolbar":"КонтекÑтна лента Ñ Ð¸Ð½Ñтрументи на редактора",HEX:"ÐЕХ",Accept:"Приемане","No results found":"ÐÑма намерени резултати","No searchable items":"ÐÑма елементи за Ñ‚ÑŠÑ€Ñене","Editor dialog":"Диалогов прозорец на редактора",Close:"Затвори",Undo:"Отмени",Redo:"Повтори","Upload in progress":"Качването е в процеÑ","Widget toolbar":"Лента Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸ ÑредÑтва","Insert paragraph before block":"Въведи параграф преди блока","Insert paragraph after block":"Въведи параграф Ñлед блока","Press Enter to type after or press Shift + Enter to type before the widget":"ÐатиÑнете Enter за въвеждане или натиÑнете Shift + Enter за въвеждане преди Ð¸Ð·Ð¿ÑŠÐ»Ð½Ð¸Ð¼Ð¸Ñ Ð¼Ð¾Ð´ÑƒÐ»","Words: %0":"Думи: %0","Characters: %0":"Знаци: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['bg'] = d['bg'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"ЛÑво подравнÑване","Align right":"ДÑÑно подравнÑване","Align center":"Централно подравнÑване",Justify:"Разпредели по равно","Text alignment":"ПодравнÑване на текÑта","Text alignment toolbar":"Лента за подравнÑване на текÑÑ‚",Bold:"Удебелен",Italic:"КурÑив",Underline:"Подчертаване",Code:"Код",Strikethrough:"Зачертаване",Subscript:"Долен индекÑ",Superscript:"Горен индекÑ","Block quote":"Цитат","Insert code block":"Въведи кодов блок","Plain text":"Обикновен текÑÑ‚",Cancel:"Отказ",Clear:"ИзчиÑти","Remove color":"Премахни цвÑÑ‚","Restore default":"ВъзÑтанови първоначалните наÑтройки",Save:"Запазване","Show more items":"Покажи повече единици","%0 of %1":"%0 от %1","Cannot upload file:":"Ðе може да качи файл:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Зона за редактиране: %0","Insert with file manager":"Вмъкване Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Replace with file manager":"Заменете Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Insert image with file manager":"Вмъкнете изображение Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Replace image with file manager":"Заменете изображението Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð¼ÐµÐ½Ð¸Ð´Ð¶ÑŠÑ€","Find and replace":"Ðамери и замени","Find in text…":"Ðамери в текÑта...",Find:"Ðамери","Previous result":"Предишен резултат","Next result":"Следващ резултат",Replace:"Замени","Replace all":"Замени вÑички","Match case":"Сравни Ñъвпадащ шрифт","Whole words only":"Само цели думи","Replace with…":"Замени Ñ...","Text to find must not be empty.":"ТекÑÑ‚ÑŠÑ‚ за намиране не Ñ‚Ñ€Ñбва да е празен.","Tip: Find some text first in order to replace it.":"Съвет: Първо намерете нÑкакъв текÑÑ‚, за да го замените.","Advanced options":"Разширени опции","Font Size":"Размер на шрифта",Tiny:"Много малък",Small:"Малък",Big:"Едър",Huge:"Много едър","Font Family":"СемейÑтво шрифтове",Default:"По подразбиране","Font Color":"ЦвÑÑ‚ на шрифта","Font Background Color":"ЦвÑÑ‚ на ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ð½","Document colors":"ЦвÑÑ‚ на документа",Paragraph:"Параграф",Heading:"Заглавие","Choose heading":"Избери заглавие","Heading 1":"Заглавие 1","Heading 2":"Заглавие 2","Heading 3":"Заглавие 3","Heading 4":"Заглавие 4","Heading 5":"Заглавие 5","Heading 6":"Заглавие 6","Type your title":"Ðапишете заглавието Ñи","Type or paste your content here.":"Ðапишете или поÑтавете Ñъдържанието Ñи тук.","Horizontal line":"Хоризонтална черта","HTML object":"HTML обект","Increase indent":"Увеличи отÑтъпа","Decrease indent":"Ðамали отÑтъпа",Unlink:"Премахване на линка",Link:"Линк","Link URL":"Уеб Ð°Ð´Ñ€ÐµÑ Ð½Ð° линка","Link image":"Свържи изображение","Edit link":"Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° линк","Open link in new tab":"ОтварÑне на линк в нов раздел","This link has no URL":"Този линк нÑма уеб адреÑ","Open in a new tab":"ОтварÑне в нов раздел",Downloadable:"ИзтеглÑне","Numbered List":"Ðомериране","Bulleted List":"Водещи Ñимволи","To-do List":"СпиÑък ÑÑŠÑ Ð·Ð°Ð´Ð°Ñ‡Ð¸","Bulleted list styles toolbar":"Лента ÑÑŠÑ Ñтилове за подточки","Numbered list styles toolbar":"Лента ÑÑŠÑ Ñтилове за номерациÑ","Toggle the disc list style":"Превключи между Ñтиловете на диÑÐºÐ¾Ð²Ð¸Ñ ÑпиÑък ","Toggle the circle list style":"Превключи между Ñтиловете на ÐºÑ€ÑŠÐ³Ð¾Ð²Ð¸Ñ ÑпиÑък","Toggle the square list style":"Превключи между Ñтиловете на ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð½Ð¸Ñ ÑпиÑък","Toggle the decimal list style":"Превключи между Ñтиловете на деÑÐµÑ‚Ð¸Ñ‡Ð½Ð¸Ñ ÑпиÑък","Toggle the decimal with leading zero list style":"Превключи между Ñтиловете на деÑÐµÑ‚Ð¸Ñ‡Ð½Ð¸Ñ ÑпиÑък Ñ Ð½Ð°Ñ‡Ð°Ð»Ð¾ нула","Toggle the lower–roman list style":"Превключи между Ñтиловете на долен-римÑки ÑпиÑък","Toggle the upper–roman list style":"Превключи между Ñтиловете на горен-римÑки ÑпиÑък","Toggle the lower–latin list style":"Превключи между Ñтиловете на долен-латиÑнки ÑпиÑък","Toggle the upper–latin list style":"Превключи между Ñтиловете на горен-латинÑки ÑпиÑък",Disc:"ДиÑк",Circle:"Кръг",Square:"Квадрат",Decimal:"ДеÑетичен","Decimal with leading zero":"ДеÑетичен Ñ Ð²Ð¾Ð´ÐµÑ‰Ð° нула","Lower–roman":"Долен-римÑки","Upper-roman":"Горен-римÑки","Lower-latin":"Долен-латинÑки","Upper-latin":"Горен-латинÑки","List properties":"СвойÑтва на ÑпиÑъка","Start at":"Започни Ñ","Start index must be greater than 0.":"Ð¡Ñ‚Ð°Ñ€Ñ‚Ð¾Ð²Ð¸Ñ Ð¸Ð½Ð´ÐµÐºÑ Ñ‚Ñ€Ñбва да е по-голÑм от 0.","Reversed order":"Обърнат ред","Remove Format":"Премахни форматиране","Select all":"Избери вÑички","Show blocks":"Покажи блокове",Source:"Източник","Special characters":"Специални Ñимволи",All:"Ð’Ñички",Arrows:"Стрелки",Currency:"Валутни Ñимволи",Latin:"Латиница",Mathematical:"МатематичеÑки Ñимволи",Text:"ТекÑÑ‚","leftwards simple arrow":"обикновена Ñтрелка налÑво","rightwards simple arrow":"обикновена Ñтрелка надÑÑно","upwards simple arrow":"обикновена Ñтрелка нагоре","downwards simple arrow":"обикновена Ñтрелка надолу","leftwards double arrow":"двойна Ñтрелка налÑво","rightwards double arrow":"двойна Ñтрелка надÑÑно","upwards double arrow":"двойна Ñтрелка нагоре","downwards double arrow":"двойна Ñтрелка надолу","leftwards dashed arrow":"пунктирана Ñтрелка налÑво","rightwards dashed arrow":"пунктирана Ñтрелка надÑÑно","upwards dashed arrow":"пунктирана Ñтрелка нагоре","downwards dashed arrow":"пунктирана Ñтрелка надолу","leftwards arrow to bar":"Ñтрелка налÑво към лентата\n","rightwards arrow to bar":"Ñтрелка надÑÑно към лентата","upwards arrow to bar":"Ñтрелка нагоре към лентата","downwards arrow to bar":"Ñтрелка надолу към лентата","up down arrow with base":"Ñтрелка нагоре надолу Ñ Ð¾Ñнова","back with leftwards arrow above":"назад ÑÑŠÑ Ñтрелка налÑво отгоре","end with leftwards arrow above":"завършва ÑÑŠÑ Ñтрелка налÑво отгоре","on with exclamation mark with left right arrow above":"върху Ñ ÑƒÐ´Ð¸Ð²Ð¸Ñ‚ÐµÐ»ÐµÐ½ знак ÑÑŠÑ Ñтрелка налÑво надÑÑно над","soon with rightwards arrow above":"Ñкоро ÑÑŠÑ Ñтрелка надÑÑно отгоре","top with upwards arrow above":"отгоре ÑÑŠÑ Ñтрелка нагоре отгоре","Dollar sign":"Символ на долар","Euro sign":"Символ на евро","Yen sign":"Символ на йена","Pound sign":"Символ на лира Ñтерлинг","Cent sign":"Символ на цент","Euro-currency sign":"Символ на евровалута","Colon sign":"Символ двоеточие","Cruzeiro sign":"Символ Крузейро","French franc sign":"Символ на френÑки франк","Lira sign":"Символ на лира","Currency sign":"Символ на валута","Bitcoin sign":"Символ на Биткойн","Mill sign":"Символ на мелница","Naira sign":"Символ Ðайра","Peseta sign":"Символ на пеÑета","Rupee sign":"Символ на рупиÑ","Won sign":"Символ на уон","New sheqel sign":"Символ на нов шекел","Dong sign":"Символ на донг","Kip sign":"Символ на кип","Tugrik sign":"Символ на тугрик","Drachma sign":"Символ на драхма","German penny sign":"Символ на немÑко пени","Peso sign":"Символ на пеÑо","Guarani sign":"Символ на гуарани","Austral sign":"Символ на ауÑтрал","Hryvnia sign":"Символ на гривнa","Cedi sign":"Символ Седи","Livre tournois sign":"Символ на ливр турноа","Spesmilo sign":"Символ на ÑпеÑмило","Tenge sign":"Символ на тенге","Indian rupee sign":"Символ на индийÑка рупиÑ","Turkish lira sign":"Символ на турÑка лира","Nordic mark sign":"Символ на ÑкандинавÑки знак","Manat sign":"Символ на манат","Ruble sign":"Символ на рубла","Latin capital letter a with macron":"Главна латинÑка буква „a“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter a with macron":"Малка латинÑка буква „a“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter a with breve":"Главна латинÑка буква „a“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter a with breve":"Малка латинÑка буква „а“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter a with ogonek":"Главна латинÑка буква „a“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter a with ogonek":"Малка латинÑка буква „a“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter c with acute":"Главна латинÑка буква „c“ Ñ Ð°ÐºÑƒÑ‚","Latin small letter c with acute":"Малка латинÑка буква „c“ Ñ Ð°ÐºÑƒÑ‚","Latin capital letter c with circumflex":"Главна латинÑка буква „c“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter c with circumflex":"Малка латинÑка буква „c“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter c with dot above":"Главна латинÑка буква „c“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter c with dot above":"Малка латинÑка буква „c“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter c with caron":"Главна латинÑка буква „c“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter c with caron":"Mалка латинÑка буква „c“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter d with caron":"Главна латинÑка буква d Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter d with caron":"Малка латинÑка буква d Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter d with stroke":"Главна латинÑка буква d Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter d with stroke":"Малк а латинÑка буква d Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter e with macron":"Главна латинÑка буква „e“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter e with macron":"Малка латинÑка буква „e“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter e with breve":"Главна латинÑка буква „e“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter e with breve":"Малка латинÑка буква „e“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter e with dot above":"Главна латинÑка буква „e“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter e with dot above":"Малка латинÑка буква „e“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter e with ogonek":"Главна латинÑка буква „e“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter e with ogonek":"Малка латинÑка буква „e“ Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter e with caron":"Главна латинÑка буква „e“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter e with caron":"Малка латинÑка буква „e“ Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter g with circumflex":"Главна латинÑка буква „g“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter g with circumflex":"Малка латинÑка буква „g“ Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter g with breve":"Главна латинÑка буква „g“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter g with breve":"Малка латинÑка буква „g“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter g with dot above":"Главна латинÑка буква „g“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter g with dot above":"Малка латинÑка буква „g“ Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter g with cedilla":"Главна латинÑка буква „g“ ÑÑŠÑ Ñедил","Latin small letter g with cedilla":"Малка латинÑка буква „g“ ÑÑŠÑ Ñедил","Latin capital letter h with circumflex":"Главна латинÑка буква h Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter h with circumflex":"Малка латинÑка буква h Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter h with stroke":"Главна латинÑка буква h Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter h with stroke":"Малка латинÑка буква h Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter i with tilde":"Главна латинÑка буква i Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin small letter i with tilde":"Малка латинÑка буква i Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin capital letter i with macron":"Главна латинÑка буква i Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter i with macron":"Малка латинÑка буква i Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter i with breve":"Главна латинÑка буква i Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter i with breve":"Малка латинÑка буква i Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter i with ogonek":"Главна латинÑка буква i Ñ ogonek","Latin small letter i with ogonek":"Малка латинÑка буква i Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter i with dot above":"Главна латинÑка буква i Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter dotless i":"Малка латинÑка буква без точка i","Latin capital ligature ij":"Главна латинÑка лигатура ij","Latin small ligature ij":"Mалка латинÑка лигатура ij","Latin capital letter j with circumflex":"Главна латинÑка буква j Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter j with circumflex":"Малка латинÑка буква j Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter k with cedilla":"Главна латинÑка буква k ÑÑŠÑ Ñедил","Latin small letter k with cedilla":"Mалка lатинÑка буква k ÑÑŠÑ Ñедил","Latin small letter kra":"Mалка латинÑка буква kra","Latin capital letter l with acute":"Главна латинÑка буква l Ñ Ð°ÐºÑƒÑ‚","Latin small letter l with acute":"Mалка латинÑка буква l Ñ Ð°ÐºÑƒÑ‚","Latin capital letter l with cedilla":"Главна латинÑка буква l ÑÑŠÑ Ñедил","Latin small letter l with cedilla":"Малка латинÑка буква l ÑÑŠÑ Ñедил","Latin capital letter l with caron":"Главна латинÑка буква l Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter l with caron":"Малка латинÑка буква l Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter l with middle dot":"Главна латинÑка буква l ÑÑŠÑ Ñредна точка","Latin small letter l with middle dot":"Малка латинÑка буква l ÑÑŠÑ Ñредна точка","Latin capital letter l with stroke":"Главна латинÑка буква l Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter l with stroke":"Малка латинÑка буква l Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter n with acute":"Главна латинÑка буква n Ñ Ð°ÐºÑƒÑ‚","Latin small letter n with acute":"Малка латинÑка буква n Ñ Ð°ÐºÑƒÑ‚","Latin capital letter n with cedilla":"Главна латинÑка буква n ÑÑŠÑ Ñедил","Latin small letter n with cedilla":"Малка латинÑка буква n ÑÑŠÑ Ñедил","Latin capital letter n with caron":"Главна латинÑка буква n Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter n with caron":"Малка латинÑка буква n Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter n preceded by apostrophe":"Малка латинÑка буква n, предшеÑтвана от апоÑтроф","Latin capital letter eng":"Главна латинÑка буква eng","Latin small letter eng":"Малка латинÑка буква eng","Latin capital letter o with macron":"Главна латинÑка буква „o“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter o with macron":"Малка латинÑка буква „o“ Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter o with breve":"Главна латинÑка буква „o“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter o with breve":"Малка латинÑка буква „o“ Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter o with double acute":"Главна латинÑка буква „o“ Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin small letter o with double acute":"Малка латинÑка буква „o“ Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin capital ligature oe":"Главна латинÑка лигатура oe","Latin small ligature oe":"Малка латинÑка лигатура oe","Latin capital letter r with acute":"Главна латинÑка буква r Ñ Ð°ÐºÑƒÑ‚","Latin small letter r with acute":"Малка латинÑка буква r Ñ Ð°ÐºÑƒÑ‚","Latin capital letter r with cedilla":"Главна латинÑка буква r ÑÑŠÑ Ñедил","Latin small letter r with cedilla":"Малка латинÑка буква r ÑÑŠÑ Ñедил","Latin capital letter r with caron":"Главна латинÑка буква r Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter r with caron":"Малка латинÑка буква r Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter s with acute":"Главна латинÑка буква s Ñ Ð°ÐºÑƒÑ‚","Latin small letter s with acute":"Малка латинÑка буква s Ñ Ð°ÐºÑƒÑ‚","Latin capital letter s with circumflex":"Главна латинÑка буква s Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter s with circumflex":"Малка латинÑка буква s Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter s with cedilla":"Главна латинÑка буква s ÑÑŠÑ Ñедил","Latin small letter s with cedilla":"Малка латинÑка буква s ÑÑŠÑ Ñедил","Latin capital letter s with caron":"Главна латинÑка буква s Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter s with caron":"Малка латинÑка буква s Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter t with cedilla":"Главна латинÑка буква t ÑÑŠÑ Ñедил","Latin small letter t with cedilla":"Малка латинÑка буква t ÑÑŠÑ Ñедил","Latin capital letter t with caron":"Главна латинÑка буква t Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter t with caron":"Малка латинÑка буква t Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin capital letter t with stroke":"Главна латинÑка буква t Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin small letter t with stroke":"Малка латинÑка буква t Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Latin capital letter u with tilde":"Главна латинÑка буква u Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin small letter u with tilde":"Малка латинÑка буква u Ñ Ñ‚Ð¸Ð»Ð´Ð°","Latin capital letter u with macron":"Главна латинÑка буква u Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin small letter u with macron":"Малка латинÑка буква u Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½","Latin capital letter u with breve":"Главна латинÑка буква u Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin small letter u with breve":"Малка латинÑка буква u Ñ Ð±Ñ€ÐµÐ²Ðµ","Latin capital letter u with ring above":"Главна латинÑка буква u Ñ Ð¿Ñ€ÑŠÑтен отгоре","Latin small letter u with ring above":"Малка латинÑка буква u Ñ Ð¿Ñ€ÑŠÑтен отгоре","Latin capital letter u with double acute":"Главна латинÑка буква u Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin small letter u with double acute":"Малка латинÑка буква u Ñ Ð´Ð²Ð¾ÐµÐ½ акут","Latin capital letter u with ogonek":"Главна латинÑка буква u Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin small letter u with ogonek":"Малка латинÑка буква u Ñ Ð¾Ð³Ð¾Ð½ÐµÐº","Latin capital letter w with circumflex":"Главна латинÑка буква w Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter w with circumflex":"Малка латинÑка буква w Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter y with circumflex":"Главна латинÑка буква y Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin small letter y with circumflex":"Малка латинÑка буква y Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑ","Latin capital letter y with diaeresis":"Главна латинÑка буква y Ñ Ð´Ð¸Ð°Ñ€ÐµÐ·Ð°","Latin capital letter z with acute":"Главна латинÑка буква z Ñ Ð°ÐºÑƒÑ‚","Latin small letter z with acute":"Малка латинÑка буква z Ñ Ð°ÐºÑƒÑ‚","Latin capital letter z with dot above":"Главна латинÑка буква z Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin small letter z with dot above":"Малка латинÑка буква z Ñ Ñ‚Ð¾Ñ‡ÐºÐ° отгоре","Latin capital letter z with caron":"Главна латинÑка буква z Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter z with caron":"Малка латинÑка буква z Ñ ÐºÐ°Ñ€Ð¾Ð½","Latin small letter long s":"Малка латинÑка буква дълго s","Less-than sign":"Знак „по-малко от“ ","Greater-than sign":"Знак „по-голÑмо от“","Less-than or equal to":"По-малко или равно на","Greater-than or equal to":"По-голÑмо или равно на","En dash":"Ен тире","Em dash":"Ем тире",Macron:"Макрон",Overline:"Черта над буква","Degree sign":"Знак за Ñтепен","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плюÑ-минуÑ","Division sign":"Знак за деление","Fraction slash":"Дробна наклонена черта","Multiplication sign":"Знак за умножение","Latin small letter f with hook":"Малка латинÑка буква f Ñ ÐºÑƒÐºÐ¸Ñ‡ÐºÐ°",Integral:"Интеграл","N-ary summation":"N-арно Ñумиране",Infinity:"БезкрайноÑÑ‚","Square root":"Корен квадратен","Tilde operator":"Оператор тилда","Approximately equal to":"Приблизително равно на","Almost equal to":"Почти равно на","Not equal to":"Ðе е равно на","Identical to":"Идентично на","Element of":"Елемент на","Not an element of":"Ðе е елемент от","Contains as member":"Съдържа като член","N-ary product":"N-арен продукт","Logical and":"Логично и","Logical or":"Логично или","Not sign":"Знак „не“",Intersection:"ПреÑечна точка",Union:"Съюз","Partial differential":"ЧаÑтичен диференциал","For all":"За вÑички","There exists":"СъщеÑтвува","Empty set":"Празен комплект",Nabla:"Ðабла","Asterisk operator":"Оператор звездичка","Proportional to":"Пропорционално на",Angle:"Ъгъл","Vulgar fraction one quarter":"ПроÑта дроб една четвърт","Vulgar fraction one half":"ПроÑта дроб една половина","Vulgar fraction three quarters":"ПроÑта дроб три четвърти","Single left-pointing angle quotation mark":"\nЕдинична Ñочеща налÑво ъглова кавичка","Single right-pointing angle quotation mark":"Единична Ñочеща надÑÑно ъглова кавичка","Left-pointing double angle quotation mark":"Сочеща налÑво двойна ъглова кавичка","Right-pointing double angle quotation mark":"Сочеща надÑÑно двойна ъглова кавичка","Left single quotation mark":"ЛÑва единична кавичка","Right single quotation mark":"ДÑÑна единична кавичка","Left double quotation mark":"ЛÑва двойна кавичка","Right double quotation mark":"ДÑÑна двойна кавичка","Single low-9 quotation mark":"Единична ниÑка 9-кавичка","Double low-9 quotation mark":"Двойна ниÑка 9-кавичка","Inverted exclamation mark":"Обърнат удивителен знак","Inverted question mark":"Обърнат въпроÑителен знак","Two dot leader":"Водач Ñ Ð´Ð²Ðµ точки","Horizontal ellipsis":"Хоризонтална елипÑа","Double dagger":"Двойна кама","Per mille sign":"Знак за промили","Per ten thousand sign":"Символ на деÑет хилÑди","Double exclamation mark":"Двоен удивителен знак","Question exclamation mark":"Знак въпроÑителна удивителна","Exclamation question mark":"Знак удивителна въпроÑителна","Double question mark":"Двоен въпроÑителен знак","Copyright sign":"Знак за авторÑки права","Registered sign":"РегиÑтриран знак","Trade mark sign":"Знак за търговÑка марка","Section sign":"Знак за раздел","Paragraph sign":"Знак за параграф","Reversed paragraph sign":"Обърнат знак за параграф","Character categories":"Категории Ñимволи",Styles:"Стилове","Multiple styles":"МножеÑтво Ñтилове","Block styles":"Блокови Ñтилове","Text styles":"ТекÑтови Ñтилове","Insert table":"Вмъкни таблица","Header column":"Заглавна колона","Insert column left":"Вмъкни колона отлÑво","Insert column right":"Вмъкни колона отдÑÑно","Delete column":"Изтриване на колона","Select column":"Избери колона",Column:"Колона","Header row":"Заглавен ред","Insert row below":"Вмъкни ред отдолу","Insert row above":"Вмъкни ред отгоре","Delete row":"Изтриване на ред","Select row":"Избери ред",Row:"Ред","Merge cell up":"ОбединÑване на клетка отгоре","Merge cell right":"ОбединÑване на клетка отдÑÑно","Merge cell down":"ОбединÑване на клетка надолу","Merge cell left":"ОбединÑване на клетка отлÑво","Split cell vertically":"РазделÑне на клетки вертикално","Split cell horizontally":"РазделÑне на клетки хоризонтално","Merge cells":"ОбединÑване на клетки","Table toolbar":"Лента за таблици","Table properties":"СвойÑтва на таблици","Cell properties":"СвойÑтва на клетки",Border:"Граница",Style:"Стил",Width:"Ширина",Height:"ВиÑочина",Color:"ЦвÑÑ‚",Background:"Фон",Padding:"Пълнеж",Dimensions:"Размери","Table cell text alignment":"ПодравнÑване на текÑÑ‚ в клетка",Alignment:"ПодравнÑване","Horizontal text alignment toolbar":"Лента за хоризонтално подравнÑване на текÑÑ‚","Vertical text alignment toolbar":"Лента за вертикално подравнÑване на текÑÑ‚","Table alignment toolbar":"Лента за подравнÑване на таблици",None:"Ðищо",Solid:"Твърд",Dotted:"Ðа точки",Dashed:"Ðа черти",Double:"Двоен",Groove:"Ðа зиг-заг",Ridge:"Ðазъбен",Inset:"Вмъкни",Outset:"Изпъкнала","Align cell text to the left":"Подравни текÑта в клетката налÑво","Align cell text to the center":"Подравни текÑта в клетката централно","Align cell text to the right":"Подравни текÑта в клетката надÑÑно","Justify cell text":"Разпредели равномерно текÑта в клетката","Align cell text to the top":"Подравни текÑта в клетката нагоре","Align cell text to the middle":"Подравни текÑта в клетката към Ñредата","Align cell text to the bottom":"Подравни текÑта в клетката към дъното","Align table to the left":"Подравни таблицата налÑво","Center table":"Центрирай таблицата","Align table to the right":"Подравни таблицата надÑÑно","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Цветът е невалиден. Опитайте \"#FF0000\" или \"rgb(255,0,0)\", или \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"СтойноÑтта е невалидна. Опитайте \"10px\" или \"2em\", или проÑто \"2\".","Color picker":"Избор на цвÑÑ‚","Toggle caption off":"Превключи изключване на надпиÑи","Toggle caption on":"Превключи включване на надпиÑи","Enter table caption":"Въведи Ð½Ð°Ð´Ð¿Ð¸Ñ Ð½Ð° таблица","Rich Text Editor":"Богат текÑтов редактор","Editor editing area: %0":"Зона за редактиране на редактора: %0","Edit block":"Редактирай блок","Click to edit block":"Кликнете, за да редактирате блок","Drag to move":"Плъзнете за премеÑтване",Next:"Следващ",Previous:"Предишен","Editor toolbar":"Лента за редакциÑ","Dropdown toolbar":"Лента Ñ Ð¿Ð°Ð´Ð°Ñ‰Ð¾ меню",Black:"Черен","Dim grey":"Тъмно Ñив",Grey:"Сив","Light grey":"Светло Ñив",White:"БÑл",Red:"Червен",Orange:"Оранжев",Yellow:"Жълт","Light green":"Светло зелен",Green:"Зелен",Aquamarine:"Ðквамарин",Turquoise:"Тюркоазен","Light blue":"Светло Ñин",Blue:"Син",Purple:"Лилав","Editor block content toolbar":"Лента Ñ Ð¸Ð½Ñтрументи за блокиране на Ñъдържанието на редактора","Editor contextual toolbar":"КонтекÑтна лента Ñ Ð¸Ð½Ñтрументи на редактора",HEX:"ÐЕХ",Accept:"Приемане","No results found":"ÐÑма намерени резултати","No searchable items":"ÐÑма елементи за Ñ‚ÑŠÑ€Ñене","Editor dialog":"Диалогов прозорец на редактора",Close:"Затвори",Undo:"Отмени",Redo:"Повтори","Upload in progress":"Качването е в процеÑ","Widget toolbar":"Лента Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸ ÑредÑтва","Insert paragraph before block":"Въведи параграф преди блока","Insert paragraph after block":"Въведи параграф Ñлед блока","Press Enter to type after or press Shift + Enter to type before the widget":"ÐатиÑнете Enter за въвеждане или натиÑнете Shift + Enter за въвеждане преди Ð¸Ð·Ð¿ÑŠÐ»Ð½Ð¸Ð¼Ð¸Ñ Ð¼Ð¾Ð´ÑƒÐ»","Words: %0":"Думи: %0","Characters: %0":"Знаци: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bn.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bn.js index 2a9fffae9aed24f1f3fd9003352a4b0f769d10f4..5dde40a808775ffeed63bb161544f8f41b4935a9 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bn.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bn.js @@ -1 +1 @@ -(function(d){ const l = d['bn'] = d['bn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"বামে সারিবদà§à¦§ করà§à¦¨","Align right":"ডানদিকে সারিবদà§à¦§ করà§à¦¨","Align center":"কেনà§à¦¦à§à¦° সারিবদà§à¦§ করà§à¦¨",Justify:"জাসà§à¦Ÿà¦¿à¦«à¦¾à¦‡","Text alignment":"টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£","Text alignment toolbar":"টেকà§à¦¸à¦Ÿ শà§à¦°à§‡à¦£à§€à¦¬à¦¿à¦¨à§à¦¯à¦¾à¦¸ টà§à¦²à¦¬à¦¾à¦°",Bold:"বোলà§à¦¡",Italic:"ইটালিক",Underline:"আনà§à¦¡à¦¾à¦°à¦²à¦¾à¦‡à¦¨",Code:"কোড",Strikethrough:"সà§à¦Ÿà§à¦°à¦¾à¦‡à¦•à¦¥à§à¦°à§",Subscript:"সাবসà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ",Superscript:"সà§à¦ªà¦¾à¦°à¦¸à§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ","Block quote":"বà§à¦²à¦• কোট","Insert code block":"কোড বà§à¦²à¦• ঢোকান","Plain text":"পà§à¦²à§‡à¦‡à¦¨ টেকà§à¦¸à¦Ÿ",Cancel:"বাতিল করà§à¦¨",Clear:"পরিষà§à¦•à¦¾à¦° করà§à¦¨","Remove color":"রং মà§à¦›à§‡ ফেলà§à¦¨","Restore default":"পূরà§à¦¬à¦¾à¦¬à¦¸à§à¦¥à¦¾à¦¯à¦¼ ফিরিয়ে আনà§à¦¨",Save:"সংরকà§à¦·à¦£ করà§à¦¨","Show more items":"আরও আইটেম দেখান","%0 of %1":"%0 à¦à¦° %1","Cannot upload file:":"ফাইল আপলোড করা যাবে নাঃ","Rich Text Editor. Editing area: %0":"রিচ টেকà§à¦¸à¦Ÿ à¦à¦¡à¦¿à¦Ÿà¦°à¥¤ সমà§à¦ªà¦¾à¦¦à¦¨à¦¾à¦° কà§à¦·à§‡à¦¤à§à¦°: %0","Insert with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে পà§à¦°à¦¬à§‡à¦¶ করান","Replace with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Insert image with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে ছবি পà§à¦°à¦¬à§‡à¦¶ করান","Replace image with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে ছবি পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Find and replace":"অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ ও পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Find in text…":"টেকà§à¦¸à¦Ÿà§‡ খà§à¦à¦œà§à¦¨â€¦",Find:"খà§à¦à¦œà§à¦¨ ","Previous result":"পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ ফলাফল","Next result":"পরবরà§à¦¤à§€ ফলাফল",Replace:"পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Replace all":"সব পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨","Match case":"মà§à¦¯à¦¾à¦š কেস","Whole words only":"শà§à¦§à§à¦®à¦¾à¦¤à§à¦° পà§à¦°à§‹ শবà§à¦¦","Replace with…":"à¦à¦° সাথে পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨...","Text to find must not be empty.":"খà§à¦à¦œà§‡ পেতে টেকà§à¦¸à¦Ÿ খালি হওয়া উচিত নয়।","Tip: Find some text first in order to replace it.":"পরামরà§à¦¶à¦ƒ à¦à¦Ÿà¦¿ পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করতে পà§à¦°à¦¥à¦®à§‡ কিছৠটেকà§à¦¸à¦Ÿ খà§à¦à¦œà§à¦¨à¥¤","Advanced options":"উনà§à¦¨à¦¤ বিকলà§à¦ªà¦—à§à¦²à¦¿",Paragraph:"অনà§à¦šà§à¦›à§‡à¦¦",Heading:"শিরোনাম","Choose heading":"শিরোনাম নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨","Heading 1":"শিরোনাম 1","Heading 2":"শিরোনাম 2","Heading 3":"শিরোনাম 3","Heading 4":"শিরোনাম 4","Heading 5":"শিরোনাম 5","Heading 6":"শিরোনাম 6","Type your title":"আপনার শিরোনাম টাইপ করà§à¦¨","Type or paste your content here.":"আপনার বিষয়বসà§à¦¤à§ à¦à¦–ানে টাইপ অথবা পেসà§à¦Ÿ করà§à¦¨à¥¤","Horizontal line":"অনà§à¦à§‚মিক রেখা","HTML object":"HTML অবজেকà§à¦Ÿ","Increase indent":"ইনà§à¦¡à§‡à¦¨à§à¦Ÿ বৃদà§à¦§à¦¿ করà§à¦¨","Decrease indent":"ইনà§à¦¡à§‡à¦¨à§à¦Ÿ হà§à¦°à¦¾à¦¸ করà§à¦¨",Unlink:"লিঙà§à¦•à¦®à§à¦•à§à¦¤ করà§à¦¨",Link:"লিঙà§à¦•","Link URL":"লিঙà§à¦• URL","Link image":"লিঙà§à¦• চিতà§à¦°","Edit link":"\t\nলিঙà§à¦• à¦à¦¡à¦¿à¦Ÿ করà§à¦¨","Open link in new tab":"লিঙà§à¦•à¦Ÿà¦¿ নতà§à¦¨ টà§à¦¯à¦¾à¦¬à§‡ খà§à¦²à§à¦¨","This link has no URL":"à¦à¦‡ লিঙà§à¦•à§‡à¦° কোন URL নেই","Open in a new tab":"à¦à¦•à¦Ÿà¦¿ নতà§à¦¨ টà§à¦¯à¦¾à¦¬à§‡ খà§à¦²à§à¦¨",Downloadable:"ডাউনলোডযোগà§à¦¯","Numbered List":"সংখà§à¦¯à¦¾à¦¯à§à¦•à§à¦¤ তালিকা","Bulleted List":"বà§à¦²à§‡à¦Ÿà¦¯à§à¦•à§à¦¤ তালিকা","To-do List":"তালিকা তৈরি","Bulleted list styles toolbar":"বà§à¦²à§‡à¦Ÿà§‡à¦¡ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টà§à¦²à¦¬à¦¾à¦°","Numbered list styles toolbar":"সংখà§à¦¯à¦¾à¦¯à§à¦•à§à¦¤ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টà§à¦²à¦¬à¦¾à¦°","Toggle the disc list style":"ডিসà§à¦• তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the circle list style":"বৃতà§à¦¤ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the square list style":"বরà§à¦—াকার তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the decimal list style":"দশমিক তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the decimal with leading zero list style":"অগà§à¦°à¦£à§€ 0 তালিকা সà§à¦Ÿà¦¾à¦‡à¦² সহ দশমিক টগল করà§à¦¨","Toggle the lower–roman list style":"নিমà§à¦¨-রোমান তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the upper–roman list style":"উপরের-রোমান তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the lower–latin list style":"নিমà§à¦¨-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the upper–latin list style":"উপরের-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨",Disc:"ডিসà§à¦•",Circle:"বৃতà§à¦¤",Square:"বরà§à¦—কà§à¦·à§‡à¦¤à§à¦°",Decimal:"দশমিক","Decimal with leading zero":"অগà§à¦°à¦£à§€ 0 সহ দশমিক ","Lower–roman":"নিমà§à¦¨-রোমান","Upper-roman":"উচà§à¦š-রোমান","Lower-latin":"নিমà§à¦¨-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨","Upper-latin":"উচà§à¦š-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨","List properties":"বৈশিষà§à¦Ÿà§à¦¯ তালিকাà¦à§à¦•à§à¦¤ করà§à¦¨","Start at":"শà§à¦°à§ হবে","Start index must be greater than 0.":"সà§à¦Ÿà¦¾à¦°à§à¦Ÿ ইনডেকà§à¦¸ অবশà§à¦¯à¦‡ 0-à¦à¦° বেশি হতে হবে।","Reversed order":"উলà§à¦Ÿà§‹ কà§à¦°à¦®","Remove Format":"ফরমà§à¦¯à¦¾à¦Ÿ মà§à¦›à§‡ ফেলà§à¦¨","Select all":"সব নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨","Show blocks":"বà§à¦²à¦•à¦—à§à¦²à¦¿ দেখান",Source:"উৎস","Special characters":"বিশেষ অকà§à¦·à¦°",All:"সকল",Arrows:"তীর",Currency:"মà§à¦¦à§à¦°à¦¾",Latin:"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨",Mathematical:"গাণিতিক",Text:"পাঠà§à¦¯","leftwards simple arrow":"বাম দিকে সরল তীর","rightwards simple arrow":"ডানমà§à¦–ী সরল তীর","upwards simple arrow":"উপরের দিকে সরল তীর","downwards simple arrow":"নিচের দিকে সরল তীর","leftwards double arrow":"বামমà§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","rightwards double arrow":"ডানমà§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","upwards double arrow":"উরà§à¦§à§à¦¬à¦®à§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","downwards double arrow":"নিমà§à¦¨à¦®à§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","leftwards dashed arrow":"বামমà§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","rightwards dashed arrow":"ডানমà§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","upwards dashed arrow":"উরà§à¦§à§à¦¬à¦®à§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","downwards dashed arrow":"নিমà§à¦¨à¦®à§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","leftwards arrow to bar":"বামমà§à¦–ী তীরের বার","rightwards arrow to bar":"ডানমà§à¦–ী তীরের বার","upwards arrow to bar":"উরà§à¦§à§à¦¬à¦®à§à¦–ী তীরের বার","downwards arrow to bar":"নিমà§à¦¨à¦®à§à¦–ী তীরের বার","up down arrow with base":"বেসসহ উপরে নিচের তীর","back with leftwards arrow above":"বà§à¦¯à¦¾à¦• à¦à¦° উপরে বামমà§à¦–ী তীর","end with leftwards arrow above":"à¦à¦¨à§à¦¡ à¦à¦° উপরে বামমà§à¦–ী তীর","on with exclamation mark with left right arrow above":"বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦•à¦¸à¦¹ অন à¦à¦° উপরে বাম ডান তীর","soon with rightwards arrow above":"শীঘà§à¦°à¦‡ à¦à¦° উপরে ডানমà§à¦–ী তীর","top with upwards arrow above":"টপ লেখাসহ উপরে উরà§à¦§à§à¦¬à¦®à§à¦–ী তীর","Dollar sign":"ডলারের চিহà§à¦¨","Euro sign":"ইউরো চিহà§à¦¨","Yen sign":"ইয়েন চিহà§à¦¨","Pound sign":"পাউনà§à¦¡ চিহà§à¦¨","Cent sign":"সেনà§à¦Ÿ চিহà§à¦¨","Euro-currency sign":"ইউরো-মà§à¦¦à§à¦°à¦¾à¦° চিহà§à¦¨","Colon sign":"কোলন চিহà§à¦¨","Cruzeiro sign":"তà§à¦°à§à§à¦œà§‡à¦‡à¦°à§‹ চিহà§à¦¨","French franc sign":"ফরাসি ফà§à¦°à¦¾à¦™à§à¦• চিহà§à¦¨","Lira sign":"লিরার চিহà§à¦¨","Currency sign":"মà§à¦¦à§à¦°à¦¾à¦° চিহà§à¦¨","Bitcoin sign":"বিটকয়েনের চিহà§à¦¨","Mill sign":"মিল চিহà§à¦¨","Naira sign":"নাইরা চিহà§à¦¨","Peseta sign":"পেসেটা চিহà§à¦¨","Rupee sign":"রà§à¦ªà¦¿à¦° চিহà§à¦¨","Won sign":"ওন চিহà§à¦¨","New sheqel sign":"নিউ শেকেল চিহà§à¦¨","Dong sign":"ডং চিহà§à¦¨","Kip sign":"কিপ চিহà§à¦¨","Tugrik sign":"তà§à¦—à§à¦°à¦¿à¦• চিহà§à¦¨","Drachma sign":"ডà§à¦°à¦¾à¦•à¦®à¦¾ চিহà§à¦¨","German penny sign":"জারà§à¦®à¦¾à¦¨ পেনি চিহà§à¦¨","Peso sign":"পেসো চিহà§à¦¨","Guarani sign":"গà§à¦¯à¦¼à¦¾à¦°à¦¾à¦¨à¦¿ চিহà§à¦¨","Austral sign":"অসà§à¦Ÿà§à¦°à¦¾à¦² চিহà§à¦¨","Hryvnia sign":"হিরà¦à¦¨à¦¿à¦¯à¦¼à¦¾ চিহà§à¦¨","Cedi sign":"সেডি চিহà§à¦¨","Livre tournois sign":"লিà¦à¦°à§‡ টà§à¦°à¦¨à§‹à¦‡à¦¸ চিহà§à¦¨","Spesmilo sign":"সà§à¦ªà§‡à¦¸à¦®à¦¿à¦²à§‹ চিহà§à¦¨","Tenge sign":"টেঞà§à¦œ চিহà§à¦¨","Indian rupee sign":"à¦à¦¾à¦°à¦¤à§€à¦¯à¦¼ রà§à¦ªà¦¿à¦° চিহà§à¦¨","Turkish lira sign":"তà§à¦°à§à¦•à¦¿ লিরা সাইন ","Nordic mark sign":"নরà§à¦¡à¦¿à¦• মারà§à¦• চিহà§à¦¨","Manat sign":"মানাত চিহà§à¦¨","Ruble sign":"রà§à¦¬à¦² চিহà§à¦¨","Latin capital letter a with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter a with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter a with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter c with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with circumflex":"সারকামফà§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with circumflex":"সারকামফà§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter d with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° d","Latin small letter d with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° d","Latin capital letter d with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° d","Latin small letter d with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° d","Latin capital letter e with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter g with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter h with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° h","Latin small letter h with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° h","Latin capital letter h with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° h","Latin small letter h with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° h","Latin capital letter i with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter dotless i":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° বিনà§à¦¦à§à¦¬à¦¿à¦¹à§€à¦¨ i","Latin capital ligature ij":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের লিগেচার ij","Latin small ligature ij":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের লিগেচার ij","Latin capital letter j with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° j","Latin small letter j with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° j","Latin capital letter k with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° k","Latin small letter k with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° k","Latin small letter kra":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° kra","Latin capital letter l with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with middle dot":"মধà§à¦¯à¦¬à¦¿à¦¨à§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with middle dot":"মধà§à¦¯à¦¬à¦¿à¦¨à§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter n with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin capital letter n with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin capital letter n with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin small letter n preceded by apostrophe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n à¦à¦° পূরà§à¦¬à§‡ apostrophe","Latin capital letter eng":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° eng","Latin small letter eng":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° eng","Latin capital letter o with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital letter o with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital letter o with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital ligature oe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের লিগà§à¦¯à¦¾à¦šà¦¾à¦° oe","Latin small ligature oe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের লিগà§à¦¯à¦¾à¦šà¦¾à¦° oe","Latin capital letter r with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter r with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter r with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter s with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter t with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter t with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter t with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter u with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with ring above":"উপরে রিং সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with ring above":"উপরে রিং সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter w with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° w","Latin small letter w with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° w","Latin capital letter y with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° y","Latin small letter y with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° y","Latin capital letter y with diaeresis":"ডায়েরেসিস সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° y","Latin capital letter z with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin capital letter z with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin capital letter z with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin small letter long s":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° দীরà§à¦˜ s","Less-than sign":"à¦à¦° চেয়ে কম চিহà§à¦¨","Greater-than sign":"à¦à¦° চেয়ে বেশি চিহà§à¦¨","Less-than or equal to":"à¦à¦° চেয়ে কম বা সমান চিহà§à¦¨","Greater-than or equal to":"à¦à¦° চেয়ে বেশি বা সমান চিহà§à¦¨","En dash":"En ডà§à¦¯à¦¾à¦¶","Em dash":"Em ডà§à¦¯à¦¾à¦¶",Macron:"মà§à¦¯à¦¾à¦•à§à¦°à¦¨",Overline:"ওà¦à¦¾à¦°à¦²à¦¾à¦‡à¦¨","Degree sign":"ডিগà§à¦°à¦¿ চিহà§à¦¨","Minus sign":"বিয়োগ চিহà§à¦¨","Plus-minus sign":"যোগ-বিয়োগ চিহà§à¦¨","Division sign":"à¦à¦¾à¦— চিহà§à¦¨","Fraction slash":"à¦à¦—à§à¦¨à¦¾à¦‚শ সà§à¦²à§à¦¯à¦¾à¦¶","Multiplication sign":"গà§à¦£ চিহà§à¦¨","Latin small letter f with hook":"হà§à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° f",Integral:"ইনà§à¦Ÿà¦¿à¦—à§à¦°à¦¾à¦²","N-ary summation":"N-ary সমষà§à¦Ÿà¦¿",Infinity:"অসীম","Square root":"বরà§à¦—মূল","Tilde operator":"টিলà§à¦¡ অপারেটর","Approximately equal to":"পà§à¦°à¦¾à¦¯à¦¼ সমান","Almost equal to":"পà§à¦°à¦¾à¦¯à¦¼ সমান","Not equal to":"সমান নয়","Identical to":"à¦à¦° অনà§à¦°à§‚প","Element of":"à¦à¦° উপাদান","Not an element of":"à¦à¦° à¦à¦•à¦Ÿà¦¿ উপাদান নয়","Contains as member":"সদসà§à¦¯ হিসেবে রয়েছে","N-ary product":"N-ary গà§à¦£à¦«à¦²","Logical and":"লজিকà§à¦¯à¦¾à¦² à¦à¦¨à§à¦¡ ","Logical or":"লজিকà§à¦¯à¦¾à¦² অর","Not sign":"নট চিহà§à¦¨",Intersection:"ছেদ",Union:"সংযোগ","Partial differential":"আংশিক ডিফারেনশিয়াল","For all":"সবার জনà§à¦¯","There exists":"অসà§à¦¤à¦¿à¦¤à§à¦¬ আছে","Empty set":"ফাà¦à¦•à¦¾ সেট",Nabla:"নà§à¦¯à¦¾à¦¬à¦²à¦¾","Asterisk operator":"অসà§à¦Ÿà§à¦°à¦¿à¦• অপারেটর","Proportional to":"সমানà§à¦ªà¦¾à¦¤à¦¿à¦•",Angle:"কোণ","Vulgar fraction one quarter":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ à¦à¦• চতà§à¦°à§à¦¥à¦¾à¦‚শ","Vulgar fraction one half":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ à¦à¦•à§‡à¦° অরà§à¦§à§‡à¦•","Vulgar fraction three quarters":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ তিন চতà§à¦°à§à¦¥à¦¾à¦‚শ","Single left-pointing angle quotation mark":"à¦à¦•à¦• বাম-নিরà§à¦¦à§‡à¦¶à¦• কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Single right-pointing angle quotation mark":"à¦à¦•à¦• ডান-নিরà§à¦¦à§‡à¦¶à¦• কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left-pointing double angle quotation mark":"বাম-নিরà§à¦¦à§‡à¦¶à¦• দà§à¦¬à§ˆà¦¤ কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right-pointing double angle quotation mark":"ডান-নিরà§à¦¦à§‡à¦¶à¦• দà§à¦¬à§ˆà¦¤ কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left single quotation mark":"বাম à¦à¦•à¦• উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right single quotation mark":"ডান à¦à¦•à¦• উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left double quotation mark":"বাম দà§à¦¬à§ˆà¦¤ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right double quotation mark":"ডান দà§à¦¬à§ˆà¦¤ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Single low-9 quotation mark":"à¦à¦•à¦• লো-9 উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Double low-9 quotation mark":"দà§à¦¬à§ˆà¦¤ লো-9 উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Inverted exclamation mark":"ইনà¦à¦¾à¦°à§à¦Ÿà§‡à¦¡ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Inverted question mark":"ইনà¦à¦¾à¦°à§à¦Ÿà§‡à¦¡ পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Two dot leader":"দà§à¦‡ বিনà§à¦¦à§ লিডার","Horizontal ellipsis":"অনà§à¦à§‚মিক উপবৃতà§à¦¤à¦¾à¦•à¦¾à¦°","Double dagger":"ডাবল ডà§à¦¯à¦¾à¦—ার","Per mille sign":"পà§à¦°à¦¤à¦¿ মাইল চিহà§à¦¨","Per ten thousand sign":"পà§à¦°à¦¤à¦¿ দশ হাজার চিহà§à¦¨","Double exclamation mark":"দà§à¦¬à§ˆà¦¤ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Question exclamation mark":"পà§à¦°à¦¶à§à¦¨ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Exclamation question mark":"বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Double question mark":"দà§à¦¬à§ˆà¦¤ পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Copyright sign":"কপিরাইট চিহà§à¦¨","Registered sign":"নিবনà§à¦§à¦¿à¦¤ চিহà§à¦¨","Trade mark sign":"টà§à¦°à§‡à¦¡ মারà§à¦• সাইন","Section sign":"সেকশন চিহà§à¦¨","Paragraph sign":"পà§à¦¯à¦¾à¦°à¦¾à¦—à§à¦°à¦¾à¦« চিহà§à¦¨","Reversed paragraph sign":"বিপরীত পà§à¦¯à¦¾à¦°à¦¾à¦—à§à¦°à¦¾à¦« চিহà§à¦¨","Character categories":"অকà§à¦·à¦°à§‡à¦° শà§à¦°à§‡à¦£à§€à¦¬à¦¿à¦à¦¾à¦—সমূহ",Styles:"সà§à¦Ÿà¦¾à¦‡à¦²à¦¸","Multiple styles":"à¦à¦•à¦¾à¦§à¦¿à¦• সà§à¦Ÿà¦¾à¦‡à¦²","Block styles":"বà§à¦²à¦• সà§à¦Ÿà¦¾à¦‡à¦²","Text styles":"টেসà§à¦•à¦Ÿ সà§à¦Ÿà¦¾à¦‡à¦²","Insert table":"টেবিল ঢোকান","Header column":"হেডার কলাম","Insert column left":"বাম দিকে কলাম ঢোকান","Insert column right":"ডানদিকে কলাম ঢোকান","Delete column":"কলাম মà§à¦›à§‡ ফেলà§à¦¨","Select column":"কলাম নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨",Column:"কলাম","Header row":"হেডার সারি","Insert row below":"নীচে সারি ঢোকান","Insert row above":"উপরে সারি ঢোকান","Delete row":"সারি মà§à¦›à§à¦¨","Select row":"সারি নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨",Row:"সারি ","Merge cell up":"সেল আপ মারà§à¦œ","Merge cell right":" ডানদিকে সেল মারà§à¦œ করà§à¦¨","Merge cell down":"নিচে সেল মারà§à¦œ করà§à¦¨","Merge cell left":"বামদিকে সেল মারà§à¦œ করà§à¦¨","Split cell vertically":"সেল উলà§à¦²à¦®à§à¦¬à¦à¦¾à¦¬à§‡ বিà¦à¦•à§à¦¤ করà§à¦¨","Split cell horizontally":"অনà§à¦à§‚মিকà¦à¦¾à¦¬à§‡ সেল বিà¦à¦•à§à¦¤ করà§à¦¨","Merge cells":"সেল à¦à¦•à¦¤à§à¦°à¦¿à¦¤ করà§à¦¨","Table toolbar":"টেবিল টà§à¦²à¦¬à¦¾à¦°","Table properties":"টেবিল বৈশিষà§à¦Ÿà§à¦¯","Cell properties":"সেল বৈশিষà§à¦Ÿà§à¦¯",Border:"বরà§à¦¡à¦¾à¦° ",Style:"সà§à¦Ÿà¦¾à¦‡à¦² ",Width:"পà§à¦°à¦¸à§à¦¥",Height:"উচà§à¦šà¦¤à¦¾",Color:" রং",Background:"বà§à¦¯à¦¾à¦•à¦—à§à¦°à¦¾à¦‰à¦¨à§à¦¡",Padding:"পà§à¦¯à¦¾à¦¡à¦¿à¦‚",Dimensions:"মাতà§à¦°à¦¾à¦—à§à¦²à§‹","Table cell text alignment":"সকà§à¦·à¦® সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£",Alignment:"সারিবদà§à¦§à¦•à¦°à¦£","Horizontal text alignment toolbar":"অনà§à¦à§‚মিক টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°","Vertical text alignment toolbar":"উলà§à¦²à¦®à§à¦¬ টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°","Table alignment toolbar":"টেবিল সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°",None:"কোনোটিই নয়",Solid:"সলিড",Dotted:"ডটেড",Dashed:"ডà§à¦¯à¦¾à¦¶à¦¡",Double:"দà§à¦¬à¦¿à¦—à§à¦£",Groove:"খাà¦à¦œà¦•à¦¾à¦Ÿà¦¾",Ridge:"রিজ",Inset:"ইনসেট",Outset:"শà§à¦°à§","Align cell text to the left":"বাম দিকে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the center":"কেনà§à¦¦à§à¦°à§‡ সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the right":"ডানদিকে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨ ","Justify cell text":"সেল টেকà§à¦¸à¦Ÿ জাসà§à¦Ÿà¦¿à¦«à¦¾à¦‡ করà§à¦¨","Align cell text to the top":"শীরà§à¦·à§‡ সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the middle":"মাà¦à¦–ানে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the bottom":"নীচে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align table to the left":"বাম দিকে টেবিল সারিবদà§à¦§ করà§à¦¨","Center table":"কেনà§à¦¦à§à¦°à§‡à¦° টেবিল","Align table to the right":"ডানদিকে টেবিলটি সারিবদà§à¦§ করà§à¦¨","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"রংটি সঠিক নয়। \"#FF0000\" অথবা \"rgb(255,0,0)\" অথবা \"লাল\" বà§à¦¯à¦¾à¦¬à¦¹à¦¾à¦° করà§à¦¨à¥¤\n","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"মানটি সঠিক নয়। \"10px\" বা \"2em\" বা সহজà¦à¦¾à¦¬à§‡ \"2\" বà§à¦¯à¦¬à¦¹à¦¾à¦° করে দেখà§à¦¨à¥¤","Color picker":"রং বাছাইকারী","Toggle caption off":"টগল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ বনà§à¦§ করà§à¦¨","Toggle caption on":"টগল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ চালৠকরà§à¦¨","Enter table caption":"টেবিল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ লিখà§à¦¨","Rich Text Editor":"রিচ টেকà§à¦¸à¦Ÿ à¦à¦¡à¦¿à¦Ÿà¦°","Editor editing area: %0":"সমà§à¦ªà¦¾à¦¦à¦• সমà§à¦ªà¦¾à¦¦à¦¨à¦¾à¦° কà§à¦·à§‡à¦¤à§à¦°: %0","Edit block":"à¦à¦¡à¦¿à¦Ÿ বà§à¦²à¦•","Click to edit block":"বà§à¦²à¦• à¦à¦¡à¦¿à¦Ÿ করতে কà§à¦²à¦¿à¦• করà§à¦¨","Drag to move":"সরানোর জনà§à¦¯ টেনে আনà§à¦¨",Next:"পরবরà§à¦¤à§€",Previous:"পূরà§à¦¬à¦¬à¦°à§à¦¤à§€","Editor toolbar":"সমà§à¦ªà¦¾à¦¦à¦• টà§à¦²à¦¬à¦¾à¦°","Dropdown toolbar":"ডà§à¦°à¦ªà¦¡à¦¾à¦‰à¦¨ টà§à¦²à¦¬à¦¾à¦°",Black:"কালো","Dim grey":"আবছা ধূসর",Grey:"ধূসর","Light grey":"হালকা ধূসর",White:"সাদা",Red:"লাল",Orange:"কমলা",Yellow:"হলà§à¦¦ ","Light green":"হালকা সবà§à¦œ",Green:"সবà§à¦œ",Aquamarine:"ফেকাশে সবà§à¦œà¦¬à¦°à§à¦£",Turquoise:"ফিরোজা","Light blue":"হালকা নীল",Blue:"নীল ",Purple:"বেগà§à¦¨à¦¿","Editor block content toolbar":"সমà§à¦ªà¦¾à¦¦à¦• বà§à¦²à¦• কনà§à¦Ÿà§‡à¦¨à§à¦Ÿ টà§à¦²à¦¬à¦¾à¦°","Editor contextual toolbar":"সমà§à¦ªà¦¾à¦¦à¦• পà§à¦°à¦¾à¦¸à¦™à§à¦—িক টà§à¦²à¦¬à¦¾à¦°",HEX:"HEX",Accept:"গà§à¦°à¦¹à¦£ করà§à¦¨","No results found":"কোন ফলাফল পাওয়া যায়নি","No searchable items":"কোনো অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨à¦¯à§‹à¦—à§à¦¯ আইটেম নেই","Editor dialog":"ইডিটর ডায়ালগ",Close:"বনà§à¦§ করà§à¦¨",Undo:"পূরà§à¦¬à¦¾à¦¬à¦¸à§à¦¥à¦¾à¦¯à¦¼ ফেরান",Redo:"রেডো","Upload in progress":"আপলোড চলছে","Widget toolbar":"উইজেট টà§à¦²à¦¬à¦¾à¦°","Insert paragraph before block":"বà§à¦²à¦• করার আগে অনà§à¦šà§à¦›à§‡à¦¦ ঢোকান","Insert paragraph after block":"বà§à¦²à¦•à§‡à¦° পর অনà§à¦šà§à¦›à§‡à¦¦ ঢোকান","Press Enter to type after or press Shift + Enter to type before the widget":"পরে টাইপ করতে à¦à¦¨à§à¦Ÿà¦¾à¦° চাপà§à¦¨ বা উইজেটের আগে টাইপ করতে Shift + à¦à¦¨à§à¦Ÿà¦¾à¦° চাপà§à¦¨","Words: %0":"শবà§à¦¦à¦—à§à¦²à§‹à¦ƒ %0","Characters: %0":"অকà§à¦·à¦°à¦¸à¦®à§‚হঃ %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['bn'] = d['bn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"বামে সারিবদà§à¦§ করà§à¦¨","Align right":"ডানদিকে সারিবদà§à¦§ করà§à¦¨","Align center":"কেনà§à¦¦à§à¦° সারিবদà§à¦§ করà§à¦¨",Justify:"জাসà§à¦Ÿà¦¿à¦«à¦¾à¦‡","Text alignment":"টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£","Text alignment toolbar":"টেকà§à¦¸à¦Ÿ শà§à¦°à§‡à¦£à§€à¦¬à¦¿à¦¨à§à¦¯à¦¾à¦¸ টà§à¦²à¦¬à¦¾à¦°",Bold:"বোলà§à¦¡",Italic:"ইটালিক",Underline:"আনà§à¦¡à¦¾à¦°à¦²à¦¾à¦‡à¦¨",Code:"কোড",Strikethrough:"সà§à¦Ÿà§à¦°à¦¾à¦‡à¦•à¦¥à§à¦°à§",Subscript:"সাবসà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ",Superscript:"সà§à¦ªà¦¾à¦°à¦¸à§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ","Block quote":"বà§à¦²à¦• কোট","Insert code block":"কোড বà§à¦²à¦• ঢোকান","Plain text":"পà§à¦²à§‡à¦‡à¦¨ টেকà§à¦¸à¦Ÿ",Cancel:"বাতিল করà§à¦¨",Clear:"পরিষà§à¦•à¦¾à¦° করà§à¦¨","Remove color":"রং মà§à¦›à§‡ ফেলà§à¦¨","Restore default":"পূরà§à¦¬à¦¾à¦¬à¦¸à§à¦¥à¦¾à¦¯à¦¼ ফিরিয়ে আনà§à¦¨",Save:"সংরকà§à¦·à¦£ করà§à¦¨","Show more items":"আরও আইটেম দেখান","%0 of %1":"%0 à¦à¦° %1","Cannot upload file:":"ফাইল আপলোড করা যাবে নাঃ","Rich Text Editor. Editing area: %0":"রিচ টেকà§à¦¸à¦Ÿ à¦à¦¡à¦¿à¦Ÿà¦°à¥¤ সমà§à¦ªà¦¾à¦¦à¦¨à¦¾à¦° কà§à¦·à§‡à¦¤à§à¦°: %0","Insert with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে পà§à¦°à¦¬à§‡à¦¶ করান","Replace with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Insert image with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে ছবি পà§à¦°à¦¬à§‡à¦¶ করান","Replace image with file manager":"ফাইল মà§à¦¯à¦¾à¦¨à§‡à¦œà¦¾à¦° দিয়ে ছবি পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Find and replace":"অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ ও পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Find in text…":"টেকà§à¦¸à¦Ÿà§‡ খà§à¦à¦œà§à¦¨â€¦",Find:"খà§à¦à¦œà§à¦¨ ","Previous result":"পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ ফলাফল","Next result":"পরবরà§à¦¤à§€ ফলাফল",Replace:"পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨","Replace all":"সব পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨","Match case":"মà§à¦¯à¦¾à¦š কেস","Whole words only":"শà§à¦§à§à¦®à¦¾à¦¤à§à¦° পà§à¦°à§‹ শবà§à¦¦","Replace with…":"à¦à¦° সাথে পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨...","Text to find must not be empty.":"খà§à¦à¦œà§‡ পেতে টেকà§à¦¸à¦Ÿ খালি হওয়া উচিত নয়।","Tip: Find some text first in order to replace it.":"পরামরà§à¦¶à¦ƒ à¦à¦Ÿà¦¿ পà§à¦°à¦¤à¦¿à¦¸à§à¦¥à¦¾à¦ªà¦¨ করতে পà§à¦°à¦¥à¦®à§‡ কিছৠটেকà§à¦¸à¦Ÿ খà§à¦à¦œà§à¦¨à¥¤","Advanced options":"উনà§à¦¨à¦¤ বিকলà§à¦ªà¦—à§à¦²à¦¿","Font Size":"অকà§à¦·à¦°à§‡à¦° আকার",Tiny:"কà§à¦·à§à¦¦à§à¦°",Small:"ছোট",Big:"বড়",Huge:"অনেক বড়","Font Family":"ফনà§à¦Ÿ পরিবার",Default:"ডিফলà§à¦Ÿ","Font Color":"ফনà§à¦Ÿà§‡à¦° রং","Font Background Color":"ফনà§à¦Ÿ বà§à¦¯à¦¾à¦•à¦—à§à¦°à¦¾à¦‰à¦¨à§à¦¡à§‡à¦° রং","Document colors":"নথির রং",Paragraph:"অনà§à¦šà§à¦›à§‡à¦¦",Heading:"শিরোনাম","Choose heading":"শিরোনাম নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨","Heading 1":"শিরোনাম 1","Heading 2":"শিরোনাম 2","Heading 3":"শিরোনাম 3","Heading 4":"শিরোনাম 4","Heading 5":"শিরোনাম 5","Heading 6":"শিরোনাম 6","Type your title":"আপনার শিরোনাম টাইপ করà§à¦¨","Type or paste your content here.":"আপনার বিষয়বসà§à¦¤à§ à¦à¦–ানে টাইপ অথবা পেসà§à¦Ÿ করà§à¦¨à¥¤","Horizontal line":"অনà§à¦à§‚মিক রেখা","HTML object":"HTML অবজেকà§à¦Ÿ","Increase indent":"ইনà§à¦¡à§‡à¦¨à§à¦Ÿ বৃদà§à¦§à¦¿ করà§à¦¨","Decrease indent":"ইনà§à¦¡à§‡à¦¨à§à¦Ÿ হà§à¦°à¦¾à¦¸ করà§à¦¨",Unlink:"লিঙà§à¦•à¦®à§à¦•à§à¦¤ করà§à¦¨",Link:"লিঙà§à¦•","Link URL":"লিঙà§à¦• URL","Link image":"লিঙà§à¦• চিতà§à¦°","Edit link":"\t\nলিঙà§à¦• à¦à¦¡à¦¿à¦Ÿ করà§à¦¨","Open link in new tab":"লিঙà§à¦•à¦Ÿà¦¿ নতà§à¦¨ টà§à¦¯à¦¾à¦¬à§‡ খà§à¦²à§à¦¨","This link has no URL":"à¦à¦‡ লিঙà§à¦•à§‡à¦° কোন URL নেই","Open in a new tab":"à¦à¦•à¦Ÿà¦¿ নতà§à¦¨ টà§à¦¯à¦¾à¦¬à§‡ খà§à¦²à§à¦¨",Downloadable:"ডাউনলোডযোগà§à¦¯","Numbered List":"সংখà§à¦¯à¦¾à¦¯à§à¦•à§à¦¤ তালিকা","Bulleted List":"বà§à¦²à§‡à¦Ÿà¦¯à§à¦•à§à¦¤ তালিকা","To-do List":"তালিকা তৈরি","Bulleted list styles toolbar":"বà§à¦²à§‡à¦Ÿà§‡à¦¡ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টà§à¦²à¦¬à¦¾à¦°","Numbered list styles toolbar":"সংখà§à¦¯à¦¾à¦¯à§à¦•à§à¦¤ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টà§à¦²à¦¬à¦¾à¦°","Toggle the disc list style":"ডিসà§à¦• তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the circle list style":"বৃতà§à¦¤ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the square list style":"বরà§à¦—াকার তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the decimal list style":"দশমিক তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the decimal with leading zero list style":"অগà§à¦°à¦£à§€ 0 তালিকা সà§à¦Ÿà¦¾à¦‡à¦² সহ দশমিক টগল করà§à¦¨","Toggle the lower–roman list style":"নিমà§à¦¨-রোমান তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the upper–roman list style":"উপরের-রোমান তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the lower–latin list style":"নিমà§à¦¨-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨","Toggle the upper–latin list style":"উপরের-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ তালিকা সà§à¦Ÿà¦¾à¦‡à¦² টগল করà§à¦¨",Disc:"ডিসà§à¦•",Circle:"বৃতà§à¦¤",Square:"বরà§à¦—কà§à¦·à§‡à¦¤à§à¦°",Decimal:"দশমিক","Decimal with leading zero":"অগà§à¦°à¦£à§€ 0 সহ দশমিক ","Lower–roman":"নিমà§à¦¨-রোমান","Upper-roman":"উচà§à¦š-রোমান","Lower-latin":"নিমà§à¦¨-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨","Upper-latin":"উচà§à¦š-লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨","List properties":"বৈশিষà§à¦Ÿà§à¦¯ তালিকাà¦à§à¦•à§à¦¤ করà§à¦¨","Start at":"শà§à¦°à§ হবে","Start index must be greater than 0.":"সà§à¦Ÿà¦¾à¦°à§à¦Ÿ ইনডেকà§à¦¸ অবশà§à¦¯à¦‡ 0-à¦à¦° বেশি হতে হবে।","Reversed order":"উলà§à¦Ÿà§‹ কà§à¦°à¦®","Remove Format":"ফরমà§à¦¯à¦¾à¦Ÿ মà§à¦›à§‡ ফেলà§à¦¨","Select all":"সব নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨","Show blocks":"বà§à¦²à¦•à¦—à§à¦²à¦¿ দেখান",Source:"উৎস","Special characters":"বিশেষ অকà§à¦·à¦°",All:"সকল",Arrows:"তীর",Currency:"মà§à¦¦à§à¦°à¦¾",Latin:"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨",Mathematical:"গাণিতিক",Text:"পাঠà§à¦¯","leftwards simple arrow":"বাম দিকে সরল তীর","rightwards simple arrow":"ডানমà§à¦–ী সরল তীর","upwards simple arrow":"উপরের দিকে সরল তীর","downwards simple arrow":"নিচের দিকে সরল তীর","leftwards double arrow":"বামমà§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","rightwards double arrow":"ডানমà§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","upwards double arrow":"উরà§à¦§à§à¦¬à¦®à§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","downwards double arrow":"নিমà§à¦¨à¦®à§à¦–ী দà§à¦¬à§ˆà¦¤ তীর","leftwards dashed arrow":"বামমà§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","rightwards dashed arrow":"ডানমà§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","upwards dashed arrow":"উরà§à¦§à§à¦¬à¦®à§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","downwards dashed arrow":"নিমà§à¦¨à¦®à§à¦–ী ডà§à¦¯à¦¾à¦¶à¦¡ তীর","leftwards arrow to bar":"বামমà§à¦–ী তীরের বার","rightwards arrow to bar":"ডানমà§à¦–ী তীরের বার","upwards arrow to bar":"উরà§à¦§à§à¦¬à¦®à§à¦–ী তীরের বার","downwards arrow to bar":"নিমà§à¦¨à¦®à§à¦–ী তীরের বার","up down arrow with base":"বেসসহ উপরে নিচের তীর","back with leftwards arrow above":"বà§à¦¯à¦¾à¦• à¦à¦° উপরে বামমà§à¦–ী তীর","end with leftwards arrow above":"à¦à¦¨à§à¦¡ à¦à¦° উপরে বামমà§à¦–ী তীর","on with exclamation mark with left right arrow above":"বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦•à¦¸à¦¹ অন à¦à¦° উপরে বাম ডান তীর","soon with rightwards arrow above":"শীঘà§à¦°à¦‡ à¦à¦° উপরে ডানমà§à¦–ী তীর","top with upwards arrow above":"টপ লেখাসহ উপরে উরà§à¦§à§à¦¬à¦®à§à¦–ী তীর","Dollar sign":"ডলারের চিহà§à¦¨","Euro sign":"ইউরো চিহà§à¦¨","Yen sign":"ইয়েন চিহà§à¦¨","Pound sign":"পাউনà§à¦¡ চিহà§à¦¨","Cent sign":"সেনà§à¦Ÿ চিহà§à¦¨","Euro-currency sign":"ইউরো-মà§à¦¦à§à¦°à¦¾à¦° চিহà§à¦¨","Colon sign":"কোলন চিহà§à¦¨","Cruzeiro sign":"তà§à¦°à§à§à¦œà§‡à¦‡à¦°à§‹ চিহà§à¦¨","French franc sign":"ফরাসি ফà§à¦°à¦¾à¦™à§à¦• চিহà§à¦¨","Lira sign":"লিরার চিহà§à¦¨","Currency sign":"মà§à¦¦à§à¦°à¦¾à¦° চিহà§à¦¨","Bitcoin sign":"বিটকয়েনের চিহà§à¦¨","Mill sign":"মিল চিহà§à¦¨","Naira sign":"নাইরা চিহà§à¦¨","Peseta sign":"পেসেটা চিহà§à¦¨","Rupee sign":"রà§à¦ªà¦¿à¦° চিহà§à¦¨","Won sign":"ওন চিহà§à¦¨","New sheqel sign":"নিউ শেকেল চিহà§à¦¨","Dong sign":"ডং চিহà§à¦¨","Kip sign":"কিপ চিহà§à¦¨","Tugrik sign":"তà§à¦—à§à¦°à¦¿à¦• চিহà§à¦¨","Drachma sign":"ডà§à¦°à¦¾à¦•à¦®à¦¾ চিহà§à¦¨","German penny sign":"জারà§à¦®à¦¾à¦¨ পেনি চিহà§à¦¨","Peso sign":"পেসো চিহà§à¦¨","Guarani sign":"গà§à¦¯à¦¼à¦¾à¦°à¦¾à¦¨à¦¿ চিহà§à¦¨","Austral sign":"অসà§à¦Ÿà§à¦°à¦¾à¦² চিহà§à¦¨","Hryvnia sign":"হিরà¦à¦¨à¦¿à¦¯à¦¼à¦¾ চিহà§à¦¨","Cedi sign":"সেডি চিহà§à¦¨","Livre tournois sign":"লিà¦à¦°à§‡ টà§à¦°à¦¨à§‹à¦‡à¦¸ চিহà§à¦¨","Spesmilo sign":"সà§à¦ªà§‡à¦¸à¦®à¦¿à¦²à§‹ চিহà§à¦¨","Tenge sign":"টেঞà§à¦œ চিহà§à¦¨","Indian rupee sign":"à¦à¦¾à¦°à¦¤à§€à¦¯à¦¼ রà§à¦ªà¦¿à¦° চিহà§à¦¨","Turkish lira sign":"তà§à¦°à§à¦•à¦¿ লিরা সাইন ","Nordic mark sign":"নরà§à¦¡à¦¿à¦• মারà§à¦• চিহà§à¦¨","Manat sign":"মানাত চিহà§à¦¨","Ruble sign":"রà§à¦¬à¦² চিহà§à¦¨","Latin capital letter a with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter a with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter a with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° a","Latin small letter a with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° a","Latin capital letter c with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with circumflex":"সারকামফà§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with circumflex":"সারকামফà§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter c with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° c","Latin small letter c with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° c","Latin capital letter d with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° d","Latin small letter d with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° d","Latin capital letter d with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° d","Latin small letter d with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° d","Latin capital letter e with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter e with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° e","Latin small letter e with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° e","Latin capital letter g with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter g with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° g","Latin small letter g with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° g","Latin capital letter h with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° h","Latin small letter h with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° h","Latin capital letter h with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° h","Latin small letter h with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° h","Latin capital letter i with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter i with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° i","Latin capital letter i with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° i","Latin small letter dotless i":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° বিনà§à¦¦à§à¦¬à¦¿à¦¹à§€à¦¨ i","Latin capital ligature ij":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের লিগেচার ij","Latin small ligature ij":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের লিগেচার ij","Latin capital letter j with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° j","Latin small letter j with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° j","Latin capital letter k with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° k","Latin small letter k with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° k","Latin small letter kra":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° kra","Latin capital letter l with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with middle dot":"মধà§à¦¯à¦¬à¦¿à¦¨à§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with middle dot":"মধà§à¦¯à¦¬à¦¿à¦¨à§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter l with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° l","Latin small letter l with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° l","Latin capital letter n with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin capital letter n with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin capital letter n with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° n","Latin small letter n with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n","Latin small letter n preceded by apostrophe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° n à¦à¦° পূরà§à¦¬à§‡ apostrophe","Latin capital letter eng":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° eng","Latin small letter eng":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° eng","Latin capital letter o with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital letter o with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital letter o with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° o","Latin small letter o with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° o","Latin capital ligature oe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের লিগà§à¦¯à¦¾à¦šà¦¾à¦° oe","Latin small ligature oe":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের লিগà§à¦¯à¦¾à¦šà¦¾à¦° oe","Latin capital letter r with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter r with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter r with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° r","Latin small letter r with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° r","Latin capital letter s with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter s with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° s","Latin small letter s with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° s","Latin capital letter t with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with cedilla":"সেডিলা সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter t with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter t with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° t","Latin small letter t with stroke":"সà§à¦Ÿà§à¦°à§‹à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° t","Latin capital letter u with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with tilde":"টিলà§à¦¡ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with macron":"মà§à¦¯à¦¾à¦•à§à¦°à§‹à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with breve":"বà§à¦°à§‡à¦ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with ring above":"উপরে রিং সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with ring above":"উপরে রিং সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with double acute":"দà§à¦¬à§ˆà¦¤ অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter u with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° u","Latin small letter u with ogonek":"ওগোনেক সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° u","Latin capital letter w with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° w","Latin small letter w with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° w","Latin capital letter y with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° y","Latin small letter y with circumflex":"সারà§à¦•à¦¾à¦®à¦«à§à¦²à§‡à¦•à§à¦¸ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° y","Latin capital letter y with diaeresis":"ডায়েরেসিস সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° y","Latin capital letter z with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with acute":"অà§à¦¯à¦¾à¦•à¦¿à¦‰à¦Ÿ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin capital letter z with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with dot above":"উপরে বিনà§à¦¦à§ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin capital letter z with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ বড় হাতের অকà§à¦·à¦° z","Latin small letter z with caron":"কà§à¦¯à¦¾à¦°à¦¨ সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° z","Latin small letter long s":"লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° দীরà§à¦˜ s","Less-than sign":"à¦à¦° চেয়ে কম চিহà§à¦¨","Greater-than sign":"à¦à¦° চেয়ে বেশি চিহà§à¦¨","Less-than or equal to":"à¦à¦° চেয়ে কম বা সমান চিহà§à¦¨","Greater-than or equal to":"à¦à¦° চেয়ে বেশি বা সমান চিহà§à¦¨","En dash":"En ডà§à¦¯à¦¾à¦¶","Em dash":"Em ডà§à¦¯à¦¾à¦¶",Macron:"মà§à¦¯à¦¾à¦•à§à¦°à¦¨",Overline:"ওà¦à¦¾à¦°à¦²à¦¾à¦‡à¦¨","Degree sign":"ডিগà§à¦°à¦¿ চিহà§à¦¨","Minus sign":"বিয়োগ চিহà§à¦¨","Plus-minus sign":"যোগ-বিয়োগ চিহà§à¦¨","Division sign":"à¦à¦¾à¦— চিহà§à¦¨","Fraction slash":"à¦à¦—à§à¦¨à¦¾à¦‚শ সà§à¦²à§à¦¯à¦¾à¦¶","Multiplication sign":"গà§à¦£ চিহà§à¦¨","Latin small letter f with hook":"হà§à¦• সহ লà§à¦¯à¦¾à¦Ÿà¦¿à¦¨ ছোট হাতের অকà§à¦·à¦° f",Integral:"ইনà§à¦Ÿà¦¿à¦—à§à¦°à¦¾à¦²","N-ary summation":"N-ary সমষà§à¦Ÿà¦¿",Infinity:"অসীম","Square root":"বরà§à¦—মূল","Tilde operator":"টিলà§à¦¡ অপারেটর","Approximately equal to":"পà§à¦°à¦¾à¦¯à¦¼ সমান","Almost equal to":"পà§à¦°à¦¾à¦¯à¦¼ সমান","Not equal to":"সমান নয়","Identical to":"à¦à¦° অনà§à¦°à§‚প","Element of":"à¦à¦° উপাদান","Not an element of":"à¦à¦° à¦à¦•à¦Ÿà¦¿ উপাদান নয়","Contains as member":"সদসà§à¦¯ হিসেবে রয়েছে","N-ary product":"N-ary গà§à¦£à¦«à¦²","Logical and":"লজিকà§à¦¯à¦¾à¦² à¦à¦¨à§à¦¡ ","Logical or":"লজিকà§à¦¯à¦¾à¦² অর","Not sign":"নট চিহà§à¦¨",Intersection:"ছেদ",Union:"সংযোগ","Partial differential":"আংশিক ডিফারেনশিয়াল","For all":"সবার জনà§à¦¯","There exists":"অসà§à¦¤à¦¿à¦¤à§à¦¬ আছে","Empty set":"ফাà¦à¦•à¦¾ সেট",Nabla:"নà§à¦¯à¦¾à¦¬à¦²à¦¾","Asterisk operator":"অসà§à¦Ÿà§à¦°à¦¿à¦• অপারেটর","Proportional to":"সমানà§à¦ªà¦¾à¦¤à¦¿à¦•",Angle:"কোণ","Vulgar fraction one quarter":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ à¦à¦• চতà§à¦°à§à¦¥à¦¾à¦‚শ","Vulgar fraction one half":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ à¦à¦•à§‡à¦° অরà§à¦§à§‡à¦•","Vulgar fraction three quarters":"à¦à¦¾à¦²à¦—ার à¦à¦—à§à¦¨à¦¾à¦‚শ তিন চতà§à¦°à§à¦¥à¦¾à¦‚শ","Single left-pointing angle quotation mark":"à¦à¦•à¦• বাম-নিরà§à¦¦à§‡à¦¶à¦• কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Single right-pointing angle quotation mark":"à¦à¦•à¦• ডান-নিরà§à¦¦à§‡à¦¶à¦• কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left-pointing double angle quotation mark":"বাম-নিরà§à¦¦à§‡à¦¶à¦• দà§à¦¬à§ˆà¦¤ কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right-pointing double angle quotation mark":"ডান-নিরà§à¦¦à§‡à¦¶à¦• দà§à¦¬à§ˆà¦¤ কোণ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left single quotation mark":"বাম à¦à¦•à¦• উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right single quotation mark":"ডান à¦à¦•à¦• উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Left double quotation mark":"বাম দà§à¦¬à§ˆà¦¤ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Right double quotation mark":"ডান দà§à¦¬à§ˆà¦¤ উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Single low-9 quotation mark":"à¦à¦•à¦• লো-9 উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Double low-9 quotation mark":"দà§à¦¬à§ˆà¦¤ লো-9 উদà§à¦§à§ƒà¦¤à¦¿ চিহà§à¦¨","Inverted exclamation mark":"ইনà¦à¦¾à¦°à§à¦Ÿà§‡à¦¡ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Inverted question mark":"ইনà¦à¦¾à¦°à§à¦Ÿà§‡à¦¡ পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Two dot leader":"দà§à¦‡ বিনà§à¦¦à§ লিডার","Horizontal ellipsis":"অনà§à¦à§‚মিক উপবৃতà§à¦¤à¦¾à¦•à¦¾à¦°","Double dagger":"ডাবল ডà§à¦¯à¦¾à¦—ার","Per mille sign":"পà§à¦°à¦¤à¦¿ মাইল চিহà§à¦¨","Per ten thousand sign":"পà§à¦°à¦¤à¦¿ দশ হাজার চিহà§à¦¨","Double exclamation mark":"দà§à¦¬à§ˆà¦¤ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Question exclamation mark":"পà§à¦°à¦¶à§à¦¨ বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• চিহà§à¦¨","Exclamation question mark":"বিসà§à¦®à¦¯à¦¼à¦¬à§‹à¦§à¦• পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Double question mark":"দà§à¦¬à§ˆà¦¤ পà§à¦°à¦¶à§à¦¨ চিহà§à¦¨","Copyright sign":"কপিরাইট চিহà§à¦¨","Registered sign":"নিবনà§à¦§à¦¿à¦¤ চিহà§à¦¨","Trade mark sign":"টà§à¦°à§‡à¦¡ মারà§à¦• সাইন","Section sign":"সেকশন চিহà§à¦¨","Paragraph sign":"পà§à¦¯à¦¾à¦°à¦¾à¦—à§à¦°à¦¾à¦« চিহà§à¦¨","Reversed paragraph sign":"বিপরীত পà§à¦¯à¦¾à¦°à¦¾à¦—à§à¦°à¦¾à¦« চিহà§à¦¨","Character categories":"অকà§à¦·à¦°à§‡à¦° শà§à¦°à§‡à¦£à§€à¦¬à¦¿à¦à¦¾à¦—সমূহ",Styles:"সà§à¦Ÿà¦¾à¦‡à¦²à¦¸","Multiple styles":"à¦à¦•à¦¾à¦§à¦¿à¦• সà§à¦Ÿà¦¾à¦‡à¦²","Block styles":"বà§à¦²à¦• সà§à¦Ÿà¦¾à¦‡à¦²","Text styles":"টেসà§à¦•à¦Ÿ সà§à¦Ÿà¦¾à¦‡à¦²","Insert table":"টেবিল ঢোকান","Header column":"হেডার কলাম","Insert column left":"বাম দিকে কলাম ঢোকান","Insert column right":"ডানদিকে কলাম ঢোকান","Delete column":"কলাম মà§à¦›à§‡ ফেলà§à¦¨","Select column":"কলাম নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨",Column:"কলাম","Header row":"হেডার সারি","Insert row below":"নীচে সারি ঢোকান","Insert row above":"উপরে সারি ঢোকান","Delete row":"সারি মà§à¦›à§à¦¨","Select row":"সারি নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨",Row:"সারি ","Merge cell up":"সেল আপ মারà§à¦œ","Merge cell right":" ডানদিকে সেল মারà§à¦œ করà§à¦¨","Merge cell down":"নিচে সেল মারà§à¦œ করà§à¦¨","Merge cell left":"বামদিকে সেল মারà§à¦œ করà§à¦¨","Split cell vertically":"সেল উলà§à¦²à¦®à§à¦¬à¦à¦¾à¦¬à§‡ বিà¦à¦•à§à¦¤ করà§à¦¨","Split cell horizontally":"অনà§à¦à§‚মিকà¦à¦¾à¦¬à§‡ সেল বিà¦à¦•à§à¦¤ করà§à¦¨","Merge cells":"সেল à¦à¦•à¦¤à§à¦°à¦¿à¦¤ করà§à¦¨","Table toolbar":"টেবিল টà§à¦²à¦¬à¦¾à¦°","Table properties":"টেবিল বৈশিষà§à¦Ÿà§à¦¯","Cell properties":"সেল বৈশিষà§à¦Ÿà§à¦¯",Border:"বরà§à¦¡à¦¾à¦° ",Style:"সà§à¦Ÿà¦¾à¦‡à¦² ",Width:"পà§à¦°à¦¸à§à¦¥",Height:"উচà§à¦šà¦¤à¦¾",Color:" রং",Background:"বà§à¦¯à¦¾à¦•à¦—à§à¦°à¦¾à¦‰à¦¨à§à¦¡",Padding:"পà§à¦¯à¦¾à¦¡à¦¿à¦‚",Dimensions:"মাতà§à¦°à¦¾à¦—à§à¦²à§‹","Table cell text alignment":"সকà§à¦·à¦® সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£",Alignment:"সারিবদà§à¦§à¦•à¦°à¦£","Horizontal text alignment toolbar":"অনà§à¦à§‚মিক টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°","Vertical text alignment toolbar":"উলà§à¦²à¦®à§à¦¬ টেকà§à¦¸à¦Ÿ সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°","Table alignment toolbar":"টেবিল সারিবদà§à¦§à¦•à¦°à¦£ টà§à¦²à¦¬à¦¾à¦°",None:"কোনোটিই নয়",Solid:"সলিড",Dotted:"ডটেড",Dashed:"ডà§à¦¯à¦¾à¦¶à¦¡",Double:"দà§à¦¬à¦¿à¦—à§à¦£",Groove:"খাà¦à¦œà¦•à¦¾à¦Ÿà¦¾",Ridge:"রিজ",Inset:"ইনসেট",Outset:"শà§à¦°à§","Align cell text to the left":"বাম দিকে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the center":"কেনà§à¦¦à§à¦°à§‡ সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the right":"ডানদিকে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨ ","Justify cell text":"সেল টেকà§à¦¸à¦Ÿ জাসà§à¦Ÿà¦¿à¦«à¦¾à¦‡ করà§à¦¨","Align cell text to the top":"শীরà§à¦·à§‡ সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the middle":"মাà¦à¦–ানে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align cell text to the bottom":"নীচে সেল টেকà§à¦¸à¦Ÿ সারিবদà§à¦§ করà§à¦¨","Align table to the left":"বাম দিকে টেবিল সারিবদà§à¦§ করà§à¦¨","Center table":"কেনà§à¦¦à§à¦°à§‡à¦° টেবিল","Align table to the right":"ডানদিকে টেবিলটি সারিবদà§à¦§ করà§à¦¨","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"রংটি সঠিক নয়। \"#FF0000\" অথবা \"rgb(255,0,0)\" অথবা \"লাল\" বà§à¦¯à¦¾à¦¬à¦¹à¦¾à¦° করà§à¦¨à¥¤\n","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"মানটি সঠিক নয়। \"10px\" বা \"2em\" বা সহজà¦à¦¾à¦¬à§‡ \"2\" বà§à¦¯à¦¬à¦¹à¦¾à¦° করে দেখà§à¦¨à¥¤","Color picker":"রং বাছাইকারী","Toggle caption off":"টগল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ বনà§à¦§ করà§à¦¨","Toggle caption on":"টগল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ চালৠকরà§à¦¨","Enter table caption":"টেবিল কà§à¦¯à¦¾à¦ªà¦¶à¦¨ লিখà§à¦¨","Rich Text Editor":"রিচ টেকà§à¦¸à¦Ÿ à¦à¦¡à¦¿à¦Ÿà¦°","Editor editing area: %0":"সমà§à¦ªà¦¾à¦¦à¦• সমà§à¦ªà¦¾à¦¦à¦¨à¦¾à¦° কà§à¦·à§‡à¦¤à§à¦°: %0","Edit block":"à¦à¦¡à¦¿à¦Ÿ বà§à¦²à¦•","Click to edit block":"বà§à¦²à¦• à¦à¦¡à¦¿à¦Ÿ করতে কà§à¦²à¦¿à¦• করà§à¦¨","Drag to move":"সরানোর জনà§à¦¯ টেনে আনà§à¦¨",Next:"পরবরà§à¦¤à§€",Previous:"পূরà§à¦¬à¦¬à¦°à§à¦¤à§€","Editor toolbar":"সমà§à¦ªà¦¾à¦¦à¦• টà§à¦²à¦¬à¦¾à¦°","Dropdown toolbar":"ডà§à¦°à¦ªà¦¡à¦¾à¦‰à¦¨ টà§à¦²à¦¬à¦¾à¦°",Black:"কালো","Dim grey":"আবছা ধূসর",Grey:"ধূসর","Light grey":"হালকা ধূসর",White:"সাদা",Red:"লাল",Orange:"কমলা",Yellow:"হলà§à¦¦ ","Light green":"হালকা সবà§à¦œ",Green:"সবà§à¦œ",Aquamarine:"ফেকাশে সবà§à¦œà¦¬à¦°à§à¦£",Turquoise:"ফিরোজা","Light blue":"হালকা নীল",Blue:"নীল ",Purple:"বেগà§à¦¨à¦¿","Editor block content toolbar":"সমà§à¦ªà¦¾à¦¦à¦• বà§à¦²à¦• কনà§à¦Ÿà§‡à¦¨à§à¦Ÿ টà§à¦²à¦¬à¦¾à¦°","Editor contextual toolbar":"সমà§à¦ªà¦¾à¦¦à¦• পà§à¦°à¦¾à¦¸à¦™à§à¦—িক টà§à¦²à¦¬à¦¾à¦°",HEX:"HEX",Accept:"গà§à¦°à¦¹à¦£ করà§à¦¨","No results found":"কোন ফলাফল পাওয়া যায়নি","No searchable items":"কোনো অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨à¦¯à§‹à¦—à§à¦¯ আইটেম নেই","Editor dialog":"ইডিটর ডায়ালগ",Close:"বনà§à¦§ করà§à¦¨",Undo:"পূরà§à¦¬à¦¾à¦¬à¦¸à§à¦¥à¦¾à¦¯à¦¼ ফেরান",Redo:"রেডো","Upload in progress":"আপলোড চলছে","Widget toolbar":"উইজেট টà§à¦²à¦¬à¦¾à¦°","Insert paragraph before block":"বà§à¦²à¦• করার আগে অনà§à¦šà§à¦›à§‡à¦¦ ঢোকান","Insert paragraph after block":"বà§à¦²à¦•à§‡à¦° পর অনà§à¦šà§à¦›à§‡à¦¦ ঢোকান","Press Enter to type after or press Shift + Enter to type before the widget":"পরে টাইপ করতে à¦à¦¨à§à¦Ÿà¦¾à¦° চাপà§à¦¨ বা উইজেটের আগে টাইপ করতে Shift + à¦à¦¨à§à¦Ÿà¦¾à¦° চাপà§à¦¨","Words: %0":"শবà§à¦¦à¦—à§à¦²à§‹à¦ƒ %0","Characters: %0":"অকà§à¦·à¦°à¦¸à¦®à§‚হঃ %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bs.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bs.js index b50697fa42deec8cbfda7c8ad569916a5f721f43..f580783a86174ad1cc8fa7220d8a8241689cf2a0 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bs.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/bs.js @@ -1 +1 @@ -(function(d){ const l = d['bs'] = d['bs'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Lijevo poravnanje","Align right":"Desno poravnanje","Align center":"Centrirati",Justify:"","Text alignment":"Poravnanje teksta","Text alignment toolbar":"Traka za poravnanje teksta",Bold:"Podebljano",Italic:"Zakrivljeno",Underline:"Podcrtano",Code:"Kod",Strikethrough:"Precrtano",Subscript:"",Superscript:"","Block quote":"Citat","Insert code block":"Umetni kod blok","Plain text":"Tekst",Cancel:"PoniÅ¡ti",Clear:"","Remove color":"Ukloni boju","Restore default":"Vrati na zadano",Save:"SaÄuvaj","Show more items":"Prikaži viÅ¡e stavki","%0 of %1":"%0 od %1","Cannot upload file:":"Nije moguće uÄitati fajl:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"PronaÄ‘i i zamijeni","Find in text…":"PronaÄ‘i u tekstu",Find:"PronaÄ‘i","Previous result":"Prethodni rezultat","Next result":"",Replace:"Zamijeni","Replace all":"Zamijeni sve","Match case":"Podudaranje","Whole words only":"Samo cijele rijeÄi","Replace with…":"Zamijeni sa...","Text to find must not be empty.":"Unesite tekst za pretragu.","Tip: Find some text first in order to replace it.":"","Advanced options":"",Paragraph:"Paragraf",Heading:"Naslov","Choose heading":"Odaberi naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Unesite naslov","Type or paste your content here.":"Unesite ili zalijepite vaÅ¡ sadržaj ovdje","Horizontal line":"Horizontalna linija"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['bs'] = d['bs'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Lijevo poravnanje","Align right":"Desno poravnanje","Align center":"Centrirati",Justify:"","Text alignment":"Poravnanje teksta","Text alignment toolbar":"Traka za poravnanje teksta",Bold:"Podebljano",Italic:"Zakrivljeno",Underline:"Podcrtano",Code:"Kod",Strikethrough:"Precrtano",Subscript:"",Superscript:"","Block quote":"Citat","Insert code block":"Umetni kod blok","Plain text":"Tekst",Cancel:"PoniÅ¡ti",Clear:"","Remove color":"Ukloni boju","Restore default":"Vrati na zadano",Save:"SaÄuvaj","Show more items":"Prikaži viÅ¡e stavki","%0 of %1":"%0 od %1","Cannot upload file:":"Nije moguće uÄitati fajl:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"PronaÄ‘i i zamijeni","Find in text…":"PronaÄ‘i u tekstu",Find:"PronaÄ‘i","Previous result":"Prethodni rezultat","Next result":"",Replace:"Zamijeni","Replace all":"Zamijeni sve","Match case":"Podudaranje","Whole words only":"Samo cijele rijeÄi","Replace with…":"Zamijeni sa...","Text to find must not be empty.":"Unesite tekst za pretragu.","Tip: Find some text first in order to replace it.":"","Advanced options":"","Font Size":"VeliÄina fonta",Tiny:"",Small:"",Big:"",Huge:"","Font Family":"Font",Default:"Zadani","Font Color":"Boja","Font Background Color":"Boja pozadine","Document colors":"",Paragraph:"Paragraf",Heading:"Naslov","Choose heading":"Odaberi naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Unesite naslov","Type or paste your content here.":"Unesite ili zalijepite vaÅ¡ sadržaj ovdje","Horizontal line":"Horizontalna linija"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ca.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ca.js index 4d072583d4b894ceab95d843552c3d22507669e3..64311feab27728968b5171e9ac593d53d5d0d259 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ca.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ca.js @@ -1 +1 @@ -(function(d){ const l = d['ca'] = d['ca'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alineació esquerra","Align right":"Alineació dreta","Align center":"Alineació centre",Justify:"Justificar","Text alignment":"Alineació text","Text alignment toolbar":"Barra d'eines d'alineació de text",Bold:"Negreta",Italic:"Cursiva",Underline:"Subrallat",Code:"Codi",Strikethrough:"Marcat",Subscript:"SubÃndex",Superscript:"SuperÃndex","Block quote":"Cita de bloc","Insert code block":"Introduir un bloc de codi","Plain text":"Text simple",Cancel:"Cancel·lar",Clear:"Esborra","Remove color":"Eliminar el color","Restore default":"Restaurar el valor predeterminat",Save:"Desar","Show more items":"Mostrar més elements","%0 of %1":"%0 de %1","Cannot upload file:":"No es pot pujar l'arxiu:","Rich Text Editor. Editing area: %0":"Editor de text enriquit. Àrea d'edició: %0","Insert with file manager":"Insereix-ho amb un gestor de fitxers","Replace with file manager":"Substitueix-ho amb un gestor de fitxers","Insert image with file manager":"Insereix la imatge amb el gestor de fitxers","Replace image with file manager":"Substitueix la imatge amb un gestor de fitxers","Find and replace":"Trobar i substituir","Find in text…":"Trobar al text...",Find:"Trobar","Previous result":"Resultat anterior","Next result":"Següent resultat",Replace:"Substituir","Replace all":"Substituir-ho tot","Match case":"Coincidència de majúscules i minúscules","Whole words only":"Només paraules senceres","Replace with…":"Substituir per...","Text to find must not be empty.":"El text per cercar no pot estar buit.","Tip: Find some text first in order to replace it.":"Consell: Troba primer un text per substituir-lo.","Advanced options":"Opcions avançades",Paragraph:"Pà rraf",Heading:"Capçalera","Choose heading":"Escull capçalera","Heading 1":"Capçalera 1","Heading 2":"Capçalera 2","Heading 3":"Capçalera 3","Heading 4":"Encapçalament 4","Heading 5":"Encapçalament 5","Heading 6":"Encapçalament 6","Type your title":"Escriu el teu tÃtol","Type or paste your content here.":"Escriu o enganxa el teu contingut aquÃ.","Horizontal line":"LÃnia horitzontal","HTML object":"Objecte HTML","Increase indent":"Augmentar el sagnat","Decrease indent":"Reduir el sagnat",Unlink:"Desenllaçar",Link:"Enllaç","Link URL":"Enllaçar URL","Link image":"Enllaçar imatge","Edit link":"Editar enllaç","Open link in new tab":"Obrir l'enllaç en una pestanya nova","This link has no URL":"Aquest enllaç no té cap URL","Open in a new tab":"Obrir en una pestanya nova",Downloadable:"Es pot descarregar","Numbered List":"Llista numerada","Bulleted List":"Llista amb vinyetes","To-do List":"Llista de tasques pendents","Bulleted list styles toolbar":"Barra d'eines d'estils de llista amb vinyetes","Numbered list styles toolbar":"Barra d'eines d'estils de llista numerada","Toggle the disc list style":"Canviar l'estil de llista de discs","Toggle the circle list style":"Canviar l'estil de llista de cercles","Toggle the square list style":"Canviar l'estil de llista quadrada","Toggle the decimal list style":"Canviar l'estil de llista decimal","Toggle the decimal with leading zero list style":"Commutar l'estil de la llista de decimals amb un zero al davant","Toggle the lower–roman list style":"Canviar l'estil de la llista a numerals romans en minúscules","Toggle the upper–roman list style":"Canviar l'estil de la llista a numerals romans en majúscules","Toggle the lower–latin list style":"Canviar l'estil de la llista a lletres llatines en minúscules","Toggle the upper–latin list style":"Canviar l'estil de la llista a lletres llatines en majúscules",Disc:"Disc",Circle:"Cercle",Square:"Quadrat",Decimal:"Decimal","Decimal with leading zero":"Decimal amb un zero al davant","Lower–roman":"Numerals romans en minúscules","Upper-roman":"Numerals romans en majúscules","Lower-latin":"Lletres llatines en minúscules","Upper-latin":"Lletres llatines en majúscules","List properties":"Llista de propietats","Start at":"Començar a","Start index must be greater than 0.":"L'Ãndex inicial ha de ser superior a 0.","Reversed order":"Ordre invertit","Remove Format":"Esborrar el format","Select all":"Seleccionar-ho tot","Show blocks":"Mostra blocs",Source:"Font","Special characters":"Carà cters especials",All:"Tot",Arrows:"Fletxes",Currency:"Moneda",Latin:"LlatÃ",Mathematical:"Matemà tic",Text:"Text","leftwards simple arrow":"fletxa simple cap a l'esquerra","rightwards simple arrow":"fletxa simple cap a la dreta","upwards simple arrow":"fletxa simple cap amunt","downwards simple arrow":"fletxa simple cap avall","leftwards double arrow":"fletxa doble cap a l'esquerra","rightwards double arrow":"fletxa doble cap a la dreta","upwards double arrow":"fletxa doble cap amunt","downwards double arrow":"fletxa doble cap avall","leftwards dashed arrow":"fletxa discontÃnua cap a l'esquerra","rightwards dashed arrow":"fletxa discontÃnua cap a la dreta","upwards dashed arrow":"fletxa discontÃnua cap amunt","downwards dashed arrow":"fletxa discontÃnua cap avall","leftwards arrow to bar":"fletxa cap a la barra de l'esquerra","rightwards arrow to bar":"fletxa cap a la barra de la dreta","upwards arrow to bar":"fletxa cap a la barra de dalt","downwards arrow to bar":"fletxa cap a la barra de sota","up down arrow with base":"fletxa cap amunt i cap avall amb base","back with leftwards arrow above":"back amb fletxa cap a l'esquerra per sobre","end with leftwards arrow above":"end amb fletxa cap a l'esquerra per sobre","on with exclamation mark with left right arrow above":"on amb el signe d'exclamació i fletxa cap a l'esquerra i cap a la dreta per sobre","soon with rightwards arrow above":"soon amb fletxa cap a la dreta per sobre","top with upwards arrow above":"top amb fletxa cap amunt per sobre","Dollar sign":"signe del dòlar","Euro sign":"signe de l'euro","Yen sign":"signe del ien","Pound sign":"signe de la lliura","Cent sign":"signe del cèntim","Euro-currency sign":"signe de l'eurodivisa","Colon sign":"signe del còlon","Cruzeiro sign":"signe del cruzeiro","French franc sign":"signe del franc francès","Lira sign":"signe de la lira","Currency sign":"signe de divisa","Bitcoin sign":"signe del bitcoin","Mill sign":"signe del mill","Naira sign":"signe de la naira","Peseta sign":"signe de la pesseta","Rupee sign":"signe de la rupia","Won sign":"signe del won","New sheqel sign":"signe del nou xéquel","Dong sign":"signe del dong","Kip sign":"signe del kip","Tugrik sign":"signe del tögrög","Drachma sign":"signe del dracma","German penny sign":"signe del cèntim alemany","Peso sign":"signe del peso","Guarani sign":"signe del guaranÃ","Austral sign":"signe de l'austral","Hryvnia sign":"signe de la hrÃvnia","Cedi sign":"ok","Livre tournois sign":"signe de la lliura tornesa","Spesmilo sign":"signe del spesmilo","Tenge sign":"signe del tenge","Indian rupee sign":"signe de la rupia Ãndia","Turkish lira sign":"signe de la lira turca","Nordic mark sign":"Signe del marc nòrdic","Manat sign":"signe del manat","Ruble sign":"signe del ruble","Latin capital letter a with macron":"lletra llatina a majúscula amb mà cron","Latin small letter a with macron":"lletra llatina a minúscula amb mà cron","Latin capital letter a with breve":"lletra llatina a majúscula amb breu","Latin small letter a with breve":"lletra llatina a minúscula amb breu","Latin capital letter a with ogonek":"lletra llatina a majúscula amb ogonek","Latin small letter a with ogonek":"lletra llatina a minúscula amb ogonek","Latin capital letter c with acute":"lletra llatina c majúscula amb accent agut","Latin small letter c with acute":"lletra llatina c minúscula amb accent agut","Latin capital letter c with circumflex":"lletra llatina c majúscula amb accent circumflex","Latin small letter c with circumflex":"lletra llatina c minúscula amb accent circumflex","Latin capital letter c with dot above":"lletra llatina c majúscula amb un punt per sobre","Latin small letter c with dot above":"lletra llatina c minúscula amb un punt per sobre","Latin capital letter c with caron":"lletra llatina c majúscula amb anticircumflex","Latin small letter c with caron":"lletra llatina c minúscula amb anticircumflex","Latin capital letter d with caron":"lletra llatina d majúscula amb anticircumflex","Latin small letter d with caron":"lletra llatina d minúscula amb anticircumflex","Latin capital letter d with stroke":"lletra llatina d majúscula amb barra inscrita","Latin small letter d with stroke":"lletra llatina d minúscula amb barra inscrita","Latin capital letter e with macron":"lletra llatina e majúscula amb mà cron","Latin small letter e with macron":"lletra llatina e minúscula amb mà cron","Latin capital letter e with breve":"lletra llatina e majúscula amb breu","Latin small letter e with breve":"lletra llatina e minúscula amb breu","Latin capital letter e with dot above":"lletra llatina e majúscula amb un punt per sobre","Latin small letter e with dot above":"lletra llatina e minúscula amb un punt per sobre","Latin capital letter e with ogonek":"lletra llatina e majúscula amb ogonek","Latin small letter e with ogonek":"lletra llatina e minúscula amb ogonek","Latin capital letter e with caron":"lletra llatina e majúscula amb anticircumflex","Latin small letter e with caron":"lletra llatina e minúscula amb anticircumflex","Latin capital letter g with circumflex":"lletra llatina g majúscula amb accent circumflex","Latin small letter g with circumflex":"lletra llatina g minúscula amb accent circumflex","Latin capital letter g with breve":"lletra llatina g majúscula amb breu","Latin small letter g with breve":"lletra llatina g minúscula amb breu","Latin capital letter g with dot above":"lletra llatina g majúscula amb un punt per sobre","Latin small letter g with dot above":"lletra llatina g minúscula amb un punt per sobre","Latin capital letter g with cedilla":"lletra llatina g majúscula amb trenc","Latin small letter g with cedilla":"lletra llatina g minúscula amb trenc","Latin capital letter h with circumflex":"lletra llatina h majúscula amb accent circumflex","Latin small letter h with circumflex":"lletra llatina h minúscula amb accent circumflex","Latin capital letter h with stroke":"lletra llatina h majúscula amb barra inscrita","Latin small letter h with stroke":"lletra llatina h minúscula amb barra inscrita","Latin capital letter i with tilde":"lletra llatina i majúscula amb titlla","Latin small letter i with tilde":"lletra llatina i minúscula amb titlla","Latin capital letter i with macron":"lletra llatina i majúscula amb mà cron","Latin small letter i with macron":"lletra llatina i minúscula amb mà cron","Latin capital letter i with breve":"lletra llatina i majúscula amb breu","Latin small letter i with breve":"lletra llatina i minúscula amb breu","Latin capital letter i with ogonek":"lletra llatina i majúscula amb ogonek","Latin small letter i with ogonek":"lletra llatina i minúscula amb ogonek","Latin capital letter i with dot above":"lletra llatina i majúscula amb un punt per sobre","Latin small letter dotless i":"lletra llatina i sense punt minúscula","Latin capital ligature ij":"lligadura llatina ij majúscula","Latin small ligature ij":"lligadura llatina ij minúscula","Latin capital letter j with circumflex":"lletra llatina i majúscula amb circumflex","Latin small letter j with circumflex":"lletra llatina i minúscula amb circumflex","Latin capital letter k with cedilla":"lletra llatina k majúscula amb trenc","Latin small letter k with cedilla":"lletra llatina k minúscula amb trenc","Latin small letter kra":"lletra llatina kra minúscula","Latin capital letter l with acute":"lletra llatina l majúscula amb accent agut","Latin small letter l with acute":"lletra llatina l minúscula amb accent agut","Latin capital letter l with cedilla":"lletra llatina l majúscula amb trenc","Latin small letter l with cedilla":"lletra llatina l minúscula amb trenc","Latin capital letter l with caron":"lletra llatina l majúscula amb anticircumflex","Latin small letter l with caron":"lletra llatina l minúscula amb anticircumflex","Latin capital letter l with middle dot":"lletra llatina l majúscula amb punt volat","Latin small letter l with middle dot":"lletra llatina l minúscula amb punt volat","Latin capital letter l with stroke":"lletra llatina l majúscula amb barra inscrita","Latin small letter l with stroke":"lletra llatina l minúscula amb barra inscrita","Latin capital letter n with acute":"lletra llatina n majúscula amb accent agut","Latin small letter n with acute":"lletra llatina n minúscula amb accent agut","Latin capital letter n with cedilla":"lletra llatina n majúscula amb trenc","Latin small letter n with cedilla":"lletra llatina n minúscula amb trenc","Latin capital letter n with caron":"lletra llatina n majúscula amb anticircumflex","Latin small letter n with caron":"lletra llatina n minúscula amb anticircumflex","Latin small letter n preceded by apostrophe":"Lletra llatina n minúscula precedida d'apòstrof","Latin capital letter eng":"lletra llatina eng majúscula","Latin small letter eng":"lletra llatina eng minúscula","Latin capital letter o with macron":"lletra llatina o majúscula amb mà cron","Latin small letter o with macron":"lletra llatina o minúscula amb mà cron","Latin capital letter o with breve":"lletra llatina o majúscula amb breu","Latin small letter o with breve":"lletra llatina o minúscula amb breu","Latin capital letter o with double acute":"lletra llatina o majúscula amb accent agut doble","Latin small letter o with double acute":"lletra llatina o minúscula amb accent agut doble","Latin capital ligature oe":"lligadura llatina oe majúscula","Latin small ligature oe":"lligadura llatina oe minúscula","Latin capital letter r with acute":"lletra llatina r majúscula amb accent agut","Latin small letter r with acute":"lletra llatina r minúscula amb accent agut","Latin capital letter r with cedilla":"lletra llatina r majúscula amb trenc","Latin small letter r with cedilla":"lletra llatina r minúscula amb trenc","Latin capital letter r with caron":"lletra llatina r majúscula amb anticircumflex","Latin small letter r with caron":"lletra llatina r minúscula amb anticircumflex","Latin capital letter s with acute":"lletra llatina s majúscula amb accent agut","Latin small letter s with acute":"lletra llatina s minúscula amb accent agut","Latin capital letter s with circumflex":"lletra llatina s majúscula amb accent circumflex","Latin small letter s with circumflex":"lletra llatina s minúscula amb accent circumflex","Latin capital letter s with cedilla":"lletra llatina s majúscula amb trenc","Latin small letter s with cedilla":"lletra llatina s minúscula amb trenc","Latin capital letter s with caron":"lletra llatina s majúscula amb anticircumflex","Latin small letter s with caron":"lletra llatina s minúscula amb anticircumflex","Latin capital letter t with cedilla":"lletra llatina t majúscula amb trenc","Latin small letter t with cedilla":"lletra llatina t minúscula amb trenc","Latin capital letter t with caron":"lletra llatina t majúscula amb anticircumflex","Latin small letter t with caron":"lletra llatina t minúscula amb anticircumflex","Latin capital letter t with stroke":"lletra llatina t majúscula amb barra inscrita","Latin small letter t with stroke":"lletra llatina t minúscula amb barra inscrita","Latin capital letter u with tilde":"lletra llatina u majúscula amb titlla","Latin small letter u with tilde":"lletra llatina u minúscula amb titlla","Latin capital letter u with macron":"lletra llatina u majúscula amb mà cron","Latin small letter u with macron":"lletra llatina u minúscula amb mà cron","Latin capital letter u with breve":"lletra llatina u majúscula amb breu","Latin small letter u with breve":"lletra llatina u minúscula amb breu","Latin capital letter u with ring above":"lletra llatina u majúscula amb anell per sobre","Latin small letter u with ring above":"lletra llatina u minúscula amb anell per sobre","Latin capital letter u with double acute":"lletra llatina u majúscula amb accent agut doble","Latin small letter u with double acute":"lletra llatina u minúscula amb accent agut doble","Latin capital letter u with ogonek":"lletra llatina u majúscula amb ogonek","Latin small letter u with ogonek":"lletra llatina u minúscula amb ogonek","Latin capital letter w with circumflex":"lletra llatina w majúscula amb accent circumflex","Latin small letter w with circumflex":"lletra llatina w minúscula amb accent circumflex","Latin capital letter y with circumflex":"lletra llatina y majúscula amb accent circumflex","Latin small letter y with circumflex":"lletra llatina y minúscula amb accent circumflex","Latin capital letter y with diaeresis":"lletra llatina y majúscula amb dièresi","Latin capital letter z with acute":"lletra llatina z majúscula amb accent agut","Latin small letter z with acute":"lletra llatina z minúscula amb accent agut","Latin capital letter z with dot above":"lletra llatina z majúscula amb un punt per sobre","Latin small letter z with dot above":"lletra llatina z minúscula amb un punt per sobre","Latin capital letter z with caron":"lletra llatina z majúscula amb anticircumflex","Latin small letter z with caron":"lletra llatina z minúscula amb anticircumflex","Latin small letter long s":"lletra llatina s llarga minúscula","Less-than sign":"signe de més petit que","Greater-than sign":"signe de més gran que","Less-than or equal to":"més petit o igual que","Greater-than or equal to":"més gran o igual que","En dash":"Guió mitjà ","Em dash":"Guió llarg",Macron:"Mà cron",Overline:"SobrelÃnia","Degree sign":"Signe del grau","Minus sign":"Signe de menys","Plus-minus sign":"Signe de més o menys","Division sign":"Signe de divisió","Fraction slash":"Barra obliqua de fracció","Multiplication sign":"Signe de multiplicació","Latin small letter f with hook":"lletra llatina f minúscula amb cua",Integral:"Integral","N-ary summation":"Suma n-à ria",Infinity:"Infinit","Square root":"Arrel quadrada","Tilde operator":"Operador de titlla","Approximately equal to":"Aproximadament igual a","Almost equal to":"Gairebé igual a","Not equal to":"No igual a","Identical to":"Idèntic a","Element of":"Element de","Not an element of":"No és un element de","Contains as member":"Conté com a membre","N-ary product":"Producte de n-à ria","Logical and":"Conjunció lògica","Logical or":"Disjunció lògica","Not sign":"Negació lògica",Intersection:"Intersecció",Union:"Unió","Partial differential":"Derivada parcial","For all":"Per a tot","There exists":"Quantificador existencial","Empty set":"Conjunt buit",Nabla:"Gradient","Asterisk operator":"Operador d'asterisc","Proportional to":"Proporcional a",Angle:"Angle","Vulgar fraction one quarter":"Fracció comuna d'un quart","Vulgar fraction one half":"Fracció comuna d'una meitat","Vulgar fraction three quarters":"Fracció comuna de tres quarts","Single left-pointing angle quotation mark":"Cometa angular simple cap a l'esquerra","Single right-pointing angle quotation mark":"Cometa angular simple cap a la dreta","Left-pointing double angle quotation mark":"Cometes angulars dobles cap a l'esquerra","Right-pointing double angle quotation mark":"Cometes angulars dobles cap a la dreta","Left single quotation mark":"Cometa simple cap a l'esquerra","Right single quotation mark":"Cometa simple cap a la dreta","Left double quotation mark":"Cometes dobles a l'esquerra","Right double quotation mark":"Cometes dobles a la dreta","Single low-9 quotation mark":"Cometes simples inferiors","Double low-9 quotation mark":"Cometes dobles inferiors","Inverted exclamation mark":"Signe d'exclamació invertit","Inverted question mark":"Signe d'interrogació invertit","Two dot leader":"Dos punts horitzontals","Horizontal ellipsis":"Punts suspensius","Double dagger":"Doble obelisc o diesi","Per mille sign":"Signe de per mil","Per ten thousand sign":"Signe de per deu mil","Double exclamation mark":"Doble signe d'exclamació","Question exclamation mark":"Signe d'exclamació d'interrogació","Exclamation question mark":"Signe d'interrogació d'exclamació","Double question mark":"Doble signe d'interrogació","Copyright sign":"Signe de drets d'autor","Registered sign":"Signe de marca registrada","Trade mark sign":"Signe de marca comercial","Section sign":"Signe de secció","Paragraph sign":"Signe de parà graf","Reversed paragraph sign":"Signe de parà graf invertit","Character categories":"Categories de carà cters",Styles:"Estils","Multiple styles":"Estils múltiples","Block styles":"Estils de bloc","Text styles":"Estils de text","Insert table":"Introduir taula","Header column":"Columna d'encapçalament","Insert column left":"Inserir columna a l'esquerra","Insert column right":"Inserir la columna a la dreta","Delete column":"Suprimir la columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Fila d'encapçalament","Insert row below":"Inserir la fila a continuació","Insert row above":"Inserir fila a sobre","Delete row":"Suprimir fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar la cel·la cap amunt","Merge cell right":"Combinar la cel·la a la dreta","Merge cell down":"Combinar la cel·la cap avall","Merge cell left":"Combinar la cel·la a l'esquerra","Split cell vertically":"Dividir la cel·la verticalment","Split cell horizontally":"Dividir la cel·la horitzontalment","Merge cells":"Combinar cel·les","Table toolbar":"Barra d'eines de taula","Table properties":"Propietats de la taula","Cell properties":"Propietats de la cel·la",Border:"Vora",Style:"Estil",Width:"Amplada",Height:"Alçada",Color:"Color",Background:"Fons",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Alineació del text de la cel·la de la taula",Alignment:"Alineació","Horizontal text alignment toolbar":"Barra d'eines d'alineació de text horitzontal","Vertical text alignment toolbar":"Barra d'eines d'alineació de text vertical","Table alignment toolbar":"Barra d'eines d'alineació de taules",None:"Cap",Solid:"Sòlid",Dotted:"De punts",Dashed:"De guions",Double:"Doble",Groove:"De solc",Ridge:"De cresta",Inset:"Entrant",Outset:"Sortint","Align cell text to the left":"Alinear el text de la cel·la a l'esquerra","Align cell text to the center":"Alinear el text de la cel·la al centre","Align cell text to the right":"Alinear el text de la cel·la a la dreta","Justify cell text":"Justificar el text de la cel·la","Align cell text to the top":"Alinear el text de la cel·la a la part superior","Align cell text to the middle":"Alinear el text de la cel·la al centre","Align cell text to the bottom":"Alinear el text de la cel·la a la part inferior","Align table to the left":"Alinear la taula a l'esquerra","Center table":"Centrar la taula","Align table to the right":"Alinear la taula a la dreta","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"El color és invà lid. Prova \"#FF0000\" o \"rgb(255,0,0)\" o \"vermell\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"El valor és invà lid. Prova \"10px\" o \"2em\" o simplement \"2\".","Color picker":"Selector de colors","Toggle caption off":"Desactivar el peu de foto","Toggle caption on":"Activar el peu de foto","Enter table caption":"Introduir el peu de foto de la taula","Rich Text Editor":"Editor de text enriquit","Editor editing area: %0":"Àrea d'edició d'editor: %0","Edit block":"Editar bloc","Click to edit block":"Fes clic per editar el bloc","Drag to move":"Arrossega per moure",Next:"Següent",Previous:"Anterior","Editor toolbar":"Barra d'eines de l'editor","Dropdown toolbar":"Barra d'eines desplegable",Black:"Negre","Dim grey":"Gris fosc",Grey:"Gris","Light grey":"Gris clar",White:"Blanc",Red:"Vermell",Orange:"Taronja",Yellow:"Groc","Light green":"Verd clar",Green:"Verd",Aquamarine:"Aiguamarina",Turquoise:"Turquesa","Light blue":"Blau clar",Blue:"Blau",Purple:"Lila","Editor block content toolbar":"Barra d'eines de contingut del bloc de l'editor","Editor contextual toolbar":"Barra d'eines contextual de l'editor",HEX:"HEX",Accept:"Accepta","No results found":"Sense resultats","No searchable items":"No hi ha elements de cerca","Editor dialog":"Dià leg de l'editor",Close:"Tanca",Undo:"Desfer",Redo:"Refer","Upload in progress":"Carrega en curs","Widget toolbar":"Barra d'eines de ginys","Insert paragraph before block":"Inserir un parà graf abans del bloc","Insert paragraph after block":"Inserir un parà graf després del bloc","Press Enter to type after or press Shift + Enter to type before the widget":"Premeu Retorn per escriure després o premeu Maj + Retorn per escriure abans del giny","Words: %0":"Paraules: %0","Characters: %0":"Carà cters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ca'] = d['ca'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alineació esquerra","Align right":"Alineació dreta","Align center":"Alineació centre",Justify:"Justificar","Text alignment":"Alineació text","Text alignment toolbar":"Barra d'eines d'alineació de text",Bold:"Negreta",Italic:"Cursiva",Underline:"Subrallat",Code:"Codi",Strikethrough:"Marcat",Subscript:"SubÃndex",Superscript:"SuperÃndex","Block quote":"Cita de bloc","Insert code block":"Introduir un bloc de codi","Plain text":"Text simple",Cancel:"Cancel·lar",Clear:"Esborra","Remove color":"Eliminar el color","Restore default":"Restaurar el valor predeterminat",Save:"Desar","Show more items":"Mostrar més elements","%0 of %1":"%0 de %1","Cannot upload file:":"No es pot pujar l'arxiu:","Rich Text Editor. Editing area: %0":"Editor de text enriquit. Àrea d'edició: %0","Insert with file manager":"Insereix-ho amb un gestor de fitxers","Replace with file manager":"Substitueix-ho amb un gestor de fitxers","Insert image with file manager":"Insereix la imatge amb el gestor de fitxers","Replace image with file manager":"Substitueix la imatge amb un gestor de fitxers","Find and replace":"Trobar i substituir","Find in text…":"Trobar al text...",Find:"Trobar","Previous result":"Resultat anterior","Next result":"Següent resultat",Replace:"Substituir","Replace all":"Substituir-ho tot","Match case":"Coincidència de majúscules i minúscules","Whole words only":"Només paraules senceres","Replace with…":"Substituir per...","Text to find must not be empty.":"El text per cercar no pot estar buit.","Tip: Find some text first in order to replace it.":"Consell: Troba primer un text per substituir-lo.","Advanced options":"Opcions avançades","Font Size":"Mida de la font",Tiny:"Molt petita",Small:"Peita",Big:"Gran",Huge:"Molt gran","Font Family":"Font",Default:"Predeterminada","Font Color":"Color del tipus de lletra","Font Background Color":"Color de fons del tipus de lletra","Document colors":"Colors del document",Paragraph:"Pà rraf",Heading:"Capçalera","Choose heading":"Escull capçalera","Heading 1":"Capçalera 1","Heading 2":"Capçalera 2","Heading 3":"Capçalera 3","Heading 4":"Encapçalament 4","Heading 5":"Encapçalament 5","Heading 6":"Encapçalament 6","Type your title":"Escriu el teu tÃtol","Type or paste your content here.":"Escriu o enganxa el teu contingut aquÃ.","Horizontal line":"LÃnia horitzontal","HTML object":"Objecte HTML","Increase indent":"Augmentar el sagnat","Decrease indent":"Reduir el sagnat",Unlink:"Desenllaçar",Link:"Enllaç","Link URL":"Enllaçar URL","Link image":"Enllaçar imatge","Edit link":"Editar enllaç","Open link in new tab":"Obrir l'enllaç en una pestanya nova","This link has no URL":"Aquest enllaç no té cap URL","Open in a new tab":"Obrir en una pestanya nova",Downloadable:"Es pot descarregar","Numbered List":"Llista numerada","Bulleted List":"Llista amb vinyetes","To-do List":"Llista de tasques pendents","Bulleted list styles toolbar":"Barra d'eines d'estils de llista amb vinyetes","Numbered list styles toolbar":"Barra d'eines d'estils de llista numerada","Toggle the disc list style":"Canviar l'estil de llista de discs","Toggle the circle list style":"Canviar l'estil de llista de cercles","Toggle the square list style":"Canviar l'estil de llista quadrada","Toggle the decimal list style":"Canviar l'estil de llista decimal","Toggle the decimal with leading zero list style":"Commutar l'estil de la llista de decimals amb un zero al davant","Toggle the lower–roman list style":"Canviar l'estil de la llista a numerals romans en minúscules","Toggle the upper–roman list style":"Canviar l'estil de la llista a numerals romans en majúscules","Toggle the lower–latin list style":"Canviar l'estil de la llista a lletres llatines en minúscules","Toggle the upper–latin list style":"Canviar l'estil de la llista a lletres llatines en majúscules",Disc:"Disc",Circle:"Cercle",Square:"Quadrat",Decimal:"Decimal","Decimal with leading zero":"Decimal amb un zero al davant","Lower–roman":"Numerals romans en minúscules","Upper-roman":"Numerals romans en majúscules","Lower-latin":"Lletres llatines en minúscules","Upper-latin":"Lletres llatines en majúscules","List properties":"Llista de propietats","Start at":"Començar a","Start index must be greater than 0.":"L'Ãndex inicial ha de ser superior a 0.","Reversed order":"Ordre invertit","Remove Format":"Esborrar el format","Select all":"Seleccionar-ho tot","Show blocks":"Mostra blocs",Source:"Font","Special characters":"Carà cters especials",All:"Tot",Arrows:"Fletxes",Currency:"Moneda",Latin:"LlatÃ",Mathematical:"Matemà tic",Text:"Text","leftwards simple arrow":"fletxa simple cap a l'esquerra","rightwards simple arrow":"fletxa simple cap a la dreta","upwards simple arrow":"fletxa simple cap amunt","downwards simple arrow":"fletxa simple cap avall","leftwards double arrow":"fletxa doble cap a l'esquerra","rightwards double arrow":"fletxa doble cap a la dreta","upwards double arrow":"fletxa doble cap amunt","downwards double arrow":"fletxa doble cap avall","leftwards dashed arrow":"fletxa discontÃnua cap a l'esquerra","rightwards dashed arrow":"fletxa discontÃnua cap a la dreta","upwards dashed arrow":"fletxa discontÃnua cap amunt","downwards dashed arrow":"fletxa discontÃnua cap avall","leftwards arrow to bar":"fletxa cap a la barra de l'esquerra","rightwards arrow to bar":"fletxa cap a la barra de la dreta","upwards arrow to bar":"fletxa cap a la barra de dalt","downwards arrow to bar":"fletxa cap a la barra de sota","up down arrow with base":"fletxa cap amunt i cap avall amb base","back with leftwards arrow above":"back amb fletxa cap a l'esquerra per sobre","end with leftwards arrow above":"end amb fletxa cap a l'esquerra per sobre","on with exclamation mark with left right arrow above":"on amb el signe d'exclamació i fletxa cap a l'esquerra i cap a la dreta per sobre","soon with rightwards arrow above":"soon amb fletxa cap a la dreta per sobre","top with upwards arrow above":"top amb fletxa cap amunt per sobre","Dollar sign":"signe del dòlar","Euro sign":"signe de l'euro","Yen sign":"signe del ien","Pound sign":"signe de la lliura","Cent sign":"signe del cèntim","Euro-currency sign":"signe de l'eurodivisa","Colon sign":"signe del còlon","Cruzeiro sign":"signe del cruzeiro","French franc sign":"signe del franc francès","Lira sign":"signe de la lira","Currency sign":"signe de divisa","Bitcoin sign":"signe del bitcoin","Mill sign":"signe del mill","Naira sign":"signe de la naira","Peseta sign":"signe de la pesseta","Rupee sign":"signe de la rupia","Won sign":"signe del won","New sheqel sign":"signe del nou xéquel","Dong sign":"signe del dong","Kip sign":"signe del kip","Tugrik sign":"signe del tögrög","Drachma sign":"signe del dracma","German penny sign":"signe del cèntim alemany","Peso sign":"signe del peso","Guarani sign":"signe del guaranÃ","Austral sign":"signe de l'austral","Hryvnia sign":"signe de la hrÃvnia","Cedi sign":"ok","Livre tournois sign":"signe de la lliura tornesa","Spesmilo sign":"signe del spesmilo","Tenge sign":"signe del tenge","Indian rupee sign":"signe de la rupia Ãndia","Turkish lira sign":"signe de la lira turca","Nordic mark sign":"Signe del marc nòrdic","Manat sign":"signe del manat","Ruble sign":"signe del ruble","Latin capital letter a with macron":"lletra llatina a majúscula amb mà cron","Latin small letter a with macron":"lletra llatina a minúscula amb mà cron","Latin capital letter a with breve":"lletra llatina a majúscula amb breu","Latin small letter a with breve":"lletra llatina a minúscula amb breu","Latin capital letter a with ogonek":"lletra llatina a majúscula amb ogonek","Latin small letter a with ogonek":"lletra llatina a minúscula amb ogonek","Latin capital letter c with acute":"lletra llatina c majúscula amb accent agut","Latin small letter c with acute":"lletra llatina c minúscula amb accent agut","Latin capital letter c with circumflex":"lletra llatina c majúscula amb accent circumflex","Latin small letter c with circumflex":"lletra llatina c minúscula amb accent circumflex","Latin capital letter c with dot above":"lletra llatina c majúscula amb un punt per sobre","Latin small letter c with dot above":"lletra llatina c minúscula amb un punt per sobre","Latin capital letter c with caron":"lletra llatina c majúscula amb anticircumflex","Latin small letter c with caron":"lletra llatina c minúscula amb anticircumflex","Latin capital letter d with caron":"lletra llatina d majúscula amb anticircumflex","Latin small letter d with caron":"lletra llatina d minúscula amb anticircumflex","Latin capital letter d with stroke":"lletra llatina d majúscula amb barra inscrita","Latin small letter d with stroke":"lletra llatina d minúscula amb barra inscrita","Latin capital letter e with macron":"lletra llatina e majúscula amb mà cron","Latin small letter e with macron":"lletra llatina e minúscula amb mà cron","Latin capital letter e with breve":"lletra llatina e majúscula amb breu","Latin small letter e with breve":"lletra llatina e minúscula amb breu","Latin capital letter e with dot above":"lletra llatina e majúscula amb un punt per sobre","Latin small letter e with dot above":"lletra llatina e minúscula amb un punt per sobre","Latin capital letter e with ogonek":"lletra llatina e majúscula amb ogonek","Latin small letter e with ogonek":"lletra llatina e minúscula amb ogonek","Latin capital letter e with caron":"lletra llatina e majúscula amb anticircumflex","Latin small letter e with caron":"lletra llatina e minúscula amb anticircumflex","Latin capital letter g with circumflex":"lletra llatina g majúscula amb accent circumflex","Latin small letter g with circumflex":"lletra llatina g minúscula amb accent circumflex","Latin capital letter g with breve":"lletra llatina g majúscula amb breu","Latin small letter g with breve":"lletra llatina g minúscula amb breu","Latin capital letter g with dot above":"lletra llatina g majúscula amb un punt per sobre","Latin small letter g with dot above":"lletra llatina g minúscula amb un punt per sobre","Latin capital letter g with cedilla":"lletra llatina g majúscula amb trenc","Latin small letter g with cedilla":"lletra llatina g minúscula amb trenc","Latin capital letter h with circumflex":"lletra llatina h majúscula amb accent circumflex","Latin small letter h with circumflex":"lletra llatina h minúscula amb accent circumflex","Latin capital letter h with stroke":"lletra llatina h majúscula amb barra inscrita","Latin small letter h with stroke":"lletra llatina h minúscula amb barra inscrita","Latin capital letter i with tilde":"lletra llatina i majúscula amb titlla","Latin small letter i with tilde":"lletra llatina i minúscula amb titlla","Latin capital letter i with macron":"lletra llatina i majúscula amb mà cron","Latin small letter i with macron":"lletra llatina i minúscula amb mà cron","Latin capital letter i with breve":"lletra llatina i majúscula amb breu","Latin small letter i with breve":"lletra llatina i minúscula amb breu","Latin capital letter i with ogonek":"lletra llatina i majúscula amb ogonek","Latin small letter i with ogonek":"lletra llatina i minúscula amb ogonek","Latin capital letter i with dot above":"lletra llatina i majúscula amb un punt per sobre","Latin small letter dotless i":"lletra llatina i sense punt minúscula","Latin capital ligature ij":"lligadura llatina ij majúscula","Latin small ligature ij":"lligadura llatina ij minúscula","Latin capital letter j with circumflex":"lletra llatina i majúscula amb circumflex","Latin small letter j with circumflex":"lletra llatina i minúscula amb circumflex","Latin capital letter k with cedilla":"lletra llatina k majúscula amb trenc","Latin small letter k with cedilla":"lletra llatina k minúscula amb trenc","Latin small letter kra":"lletra llatina kra minúscula","Latin capital letter l with acute":"lletra llatina l majúscula amb accent agut","Latin small letter l with acute":"lletra llatina l minúscula amb accent agut","Latin capital letter l with cedilla":"lletra llatina l majúscula amb trenc","Latin small letter l with cedilla":"lletra llatina l minúscula amb trenc","Latin capital letter l with caron":"lletra llatina l majúscula amb anticircumflex","Latin small letter l with caron":"lletra llatina l minúscula amb anticircumflex","Latin capital letter l with middle dot":"lletra llatina l majúscula amb punt volat","Latin small letter l with middle dot":"lletra llatina l minúscula amb punt volat","Latin capital letter l with stroke":"lletra llatina l majúscula amb barra inscrita","Latin small letter l with stroke":"lletra llatina l minúscula amb barra inscrita","Latin capital letter n with acute":"lletra llatina n majúscula amb accent agut","Latin small letter n with acute":"lletra llatina n minúscula amb accent agut","Latin capital letter n with cedilla":"lletra llatina n majúscula amb trenc","Latin small letter n with cedilla":"lletra llatina n minúscula amb trenc","Latin capital letter n with caron":"lletra llatina n majúscula amb anticircumflex","Latin small letter n with caron":"lletra llatina n minúscula amb anticircumflex","Latin small letter n preceded by apostrophe":"Lletra llatina n minúscula precedida d'apòstrof","Latin capital letter eng":"lletra llatina eng majúscula","Latin small letter eng":"lletra llatina eng minúscula","Latin capital letter o with macron":"lletra llatina o majúscula amb mà cron","Latin small letter o with macron":"lletra llatina o minúscula amb mà cron","Latin capital letter o with breve":"lletra llatina o majúscula amb breu","Latin small letter o with breve":"lletra llatina o minúscula amb breu","Latin capital letter o with double acute":"lletra llatina o majúscula amb accent agut doble","Latin small letter o with double acute":"lletra llatina o minúscula amb accent agut doble","Latin capital ligature oe":"lligadura llatina oe majúscula","Latin small ligature oe":"lligadura llatina oe minúscula","Latin capital letter r with acute":"lletra llatina r majúscula amb accent agut","Latin small letter r with acute":"lletra llatina r minúscula amb accent agut","Latin capital letter r with cedilla":"lletra llatina r majúscula amb trenc","Latin small letter r with cedilla":"lletra llatina r minúscula amb trenc","Latin capital letter r with caron":"lletra llatina r majúscula amb anticircumflex","Latin small letter r with caron":"lletra llatina r minúscula amb anticircumflex","Latin capital letter s with acute":"lletra llatina s majúscula amb accent agut","Latin small letter s with acute":"lletra llatina s minúscula amb accent agut","Latin capital letter s with circumflex":"lletra llatina s majúscula amb accent circumflex","Latin small letter s with circumflex":"lletra llatina s minúscula amb accent circumflex","Latin capital letter s with cedilla":"lletra llatina s majúscula amb trenc","Latin small letter s with cedilla":"lletra llatina s minúscula amb trenc","Latin capital letter s with caron":"lletra llatina s majúscula amb anticircumflex","Latin small letter s with caron":"lletra llatina s minúscula amb anticircumflex","Latin capital letter t with cedilla":"lletra llatina t majúscula amb trenc","Latin small letter t with cedilla":"lletra llatina t minúscula amb trenc","Latin capital letter t with caron":"lletra llatina t majúscula amb anticircumflex","Latin small letter t with caron":"lletra llatina t minúscula amb anticircumflex","Latin capital letter t with stroke":"lletra llatina t majúscula amb barra inscrita","Latin small letter t with stroke":"lletra llatina t minúscula amb barra inscrita","Latin capital letter u with tilde":"lletra llatina u majúscula amb titlla","Latin small letter u with tilde":"lletra llatina u minúscula amb titlla","Latin capital letter u with macron":"lletra llatina u majúscula amb mà cron","Latin small letter u with macron":"lletra llatina u minúscula amb mà cron","Latin capital letter u with breve":"lletra llatina u majúscula amb breu","Latin small letter u with breve":"lletra llatina u minúscula amb breu","Latin capital letter u with ring above":"lletra llatina u majúscula amb anell per sobre","Latin small letter u with ring above":"lletra llatina u minúscula amb anell per sobre","Latin capital letter u with double acute":"lletra llatina u majúscula amb accent agut doble","Latin small letter u with double acute":"lletra llatina u minúscula amb accent agut doble","Latin capital letter u with ogonek":"lletra llatina u majúscula amb ogonek","Latin small letter u with ogonek":"lletra llatina u minúscula amb ogonek","Latin capital letter w with circumflex":"lletra llatina w majúscula amb accent circumflex","Latin small letter w with circumflex":"lletra llatina w minúscula amb accent circumflex","Latin capital letter y with circumflex":"lletra llatina y majúscula amb accent circumflex","Latin small letter y with circumflex":"lletra llatina y minúscula amb accent circumflex","Latin capital letter y with diaeresis":"lletra llatina y majúscula amb dièresi","Latin capital letter z with acute":"lletra llatina z majúscula amb accent agut","Latin small letter z with acute":"lletra llatina z minúscula amb accent agut","Latin capital letter z with dot above":"lletra llatina z majúscula amb un punt per sobre","Latin small letter z with dot above":"lletra llatina z minúscula amb un punt per sobre","Latin capital letter z with caron":"lletra llatina z majúscula amb anticircumflex","Latin small letter z with caron":"lletra llatina z minúscula amb anticircumflex","Latin small letter long s":"lletra llatina s llarga minúscula","Less-than sign":"signe de més petit que","Greater-than sign":"signe de més gran que","Less-than or equal to":"més petit o igual que","Greater-than or equal to":"més gran o igual que","En dash":"Guió mitjà ","Em dash":"Guió llarg",Macron:"Mà cron",Overline:"SobrelÃnia","Degree sign":"Signe del grau","Minus sign":"Signe de menys","Plus-minus sign":"Signe de més o menys","Division sign":"Signe de divisió","Fraction slash":"Barra obliqua de fracció","Multiplication sign":"Signe de multiplicació","Latin small letter f with hook":"lletra llatina f minúscula amb cua",Integral:"Integral","N-ary summation":"Suma n-à ria",Infinity:"Infinit","Square root":"Arrel quadrada","Tilde operator":"Operador de titlla","Approximately equal to":"Aproximadament igual a","Almost equal to":"Gairebé igual a","Not equal to":"No igual a","Identical to":"Idèntic a","Element of":"Element de","Not an element of":"No és un element de","Contains as member":"Conté com a membre","N-ary product":"Producte de n-à ria","Logical and":"Conjunció lògica","Logical or":"Disjunció lògica","Not sign":"Negació lògica",Intersection:"Intersecció",Union:"Unió","Partial differential":"Derivada parcial","For all":"Per a tot","There exists":"Quantificador existencial","Empty set":"Conjunt buit",Nabla:"Gradient","Asterisk operator":"Operador d'asterisc","Proportional to":"Proporcional a",Angle:"Angle","Vulgar fraction one quarter":"Fracció comuna d'un quart","Vulgar fraction one half":"Fracció comuna d'una meitat","Vulgar fraction three quarters":"Fracció comuna de tres quarts","Single left-pointing angle quotation mark":"Cometa angular simple cap a l'esquerra","Single right-pointing angle quotation mark":"Cometa angular simple cap a la dreta","Left-pointing double angle quotation mark":"Cometes angulars dobles cap a l'esquerra","Right-pointing double angle quotation mark":"Cometes angulars dobles cap a la dreta","Left single quotation mark":"Cometa simple cap a l'esquerra","Right single quotation mark":"Cometa simple cap a la dreta","Left double quotation mark":"Cometes dobles a l'esquerra","Right double quotation mark":"Cometes dobles a la dreta","Single low-9 quotation mark":"Cometes simples inferiors","Double low-9 quotation mark":"Cometes dobles inferiors","Inverted exclamation mark":"Signe d'exclamació invertit","Inverted question mark":"Signe d'interrogació invertit","Two dot leader":"Dos punts horitzontals","Horizontal ellipsis":"Punts suspensius","Double dagger":"Doble obelisc o diesi","Per mille sign":"Signe de per mil","Per ten thousand sign":"Signe de per deu mil","Double exclamation mark":"Doble signe d'exclamació","Question exclamation mark":"Signe d'exclamació d'interrogació","Exclamation question mark":"Signe d'interrogació d'exclamació","Double question mark":"Doble signe d'interrogació","Copyright sign":"Signe de drets d'autor","Registered sign":"Signe de marca registrada","Trade mark sign":"Signe de marca comercial","Section sign":"Signe de secció","Paragraph sign":"Signe de parà graf","Reversed paragraph sign":"Signe de parà graf invertit","Character categories":"Categories de carà cters",Styles:"Estils","Multiple styles":"Estils múltiples","Block styles":"Estils de bloc","Text styles":"Estils de text","Insert table":"Introduir taula","Header column":"Columna d'encapçalament","Insert column left":"Inserir columna a l'esquerra","Insert column right":"Inserir la columna a la dreta","Delete column":"Suprimir la columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Fila d'encapçalament","Insert row below":"Inserir la fila a continuació","Insert row above":"Inserir fila a sobre","Delete row":"Suprimir fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar la cel·la cap amunt","Merge cell right":"Combinar la cel·la a la dreta","Merge cell down":"Combinar la cel·la cap avall","Merge cell left":"Combinar la cel·la a l'esquerra","Split cell vertically":"Dividir la cel·la verticalment","Split cell horizontally":"Dividir la cel·la horitzontalment","Merge cells":"Combinar cel·les","Table toolbar":"Barra d'eines de taula","Table properties":"Propietats de la taula","Cell properties":"Propietats de la cel·la",Border:"Vora",Style:"Estil",Width:"Amplada",Height:"Alçada",Color:"Color",Background:"Fons",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Alineació del text de la cel·la de la taula",Alignment:"Alineació","Horizontal text alignment toolbar":"Barra d'eines d'alineació de text horitzontal","Vertical text alignment toolbar":"Barra d'eines d'alineació de text vertical","Table alignment toolbar":"Barra d'eines d'alineació de taules",None:"Cap",Solid:"Sòlid",Dotted:"De punts",Dashed:"De guions",Double:"Doble",Groove:"De solc",Ridge:"De cresta",Inset:"Entrant",Outset:"Sortint","Align cell text to the left":"Alinear el text de la cel·la a l'esquerra","Align cell text to the center":"Alinear el text de la cel·la al centre","Align cell text to the right":"Alinear el text de la cel·la a la dreta","Justify cell text":"Justificar el text de la cel·la","Align cell text to the top":"Alinear el text de la cel·la a la part superior","Align cell text to the middle":"Alinear el text de la cel·la al centre","Align cell text to the bottom":"Alinear el text de la cel·la a la part inferior","Align table to the left":"Alinear la taula a l'esquerra","Center table":"Centrar la taula","Align table to the right":"Alinear la taula a la dreta","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"El color és invà lid. Prova \"#FF0000\" o \"rgb(255,0,0)\" o \"vermell\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"El valor és invà lid. Prova \"10px\" o \"2em\" o simplement \"2\".","Color picker":"Selector de colors","Toggle caption off":"Desactivar el peu de foto","Toggle caption on":"Activar el peu de foto","Enter table caption":"Introduir el peu de foto de la taula","Rich Text Editor":"Editor de text enriquit","Editor editing area: %0":"Àrea d'edició d'editor: %0","Edit block":"Editar bloc","Click to edit block":"Fes clic per editar el bloc","Drag to move":"Arrossega per moure",Next:"Següent",Previous:"Anterior","Editor toolbar":"Barra d'eines de l'editor","Dropdown toolbar":"Barra d'eines desplegable",Black:"Negre","Dim grey":"Gris fosc",Grey:"Gris","Light grey":"Gris clar",White:"Blanc",Red:"Vermell",Orange:"Taronja",Yellow:"Groc","Light green":"Verd clar",Green:"Verd",Aquamarine:"Aiguamarina",Turquoise:"Turquesa","Light blue":"Blau clar",Blue:"Blau",Purple:"Lila","Editor block content toolbar":"Barra d'eines de contingut del bloc de l'editor","Editor contextual toolbar":"Barra d'eines contextual de l'editor",HEX:"HEX",Accept:"Accepta","No results found":"Sense resultats","No searchable items":"No hi ha elements de cerca","Editor dialog":"Dià leg de l'editor",Close:"Tanca",Undo:"Desfer",Redo:"Refer","Upload in progress":"Carrega en curs","Widget toolbar":"Barra d'eines de ginys","Insert paragraph before block":"Inserir un parà graf abans del bloc","Insert paragraph after block":"Inserir un parà graf després del bloc","Press Enter to type after or press Shift + Enter to type before the widget":"Premeu Retorn per escriure després o premeu Maj + Retorn per escriure abans del giny","Words: %0":"Paraules: %0","Characters: %0":"Carà cters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/cs.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/cs.js index 51e7c750597b7fa1bebcd12e3b07b4da7efee3d7..69246ca9765bd9744ff8be616789a9ebf7d7a0cd 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/cs.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/cs.js @@ -1 +1 @@ -(function(d){ const l = d['cs'] = d['cs'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Zarovnat vlevo","Align right":"Zarovnat vpravo","Align center":"Zarovnat na stÅ™ed",Justify:"Zarovnat do bloku","Text alignment":"Zarovnánà textu","Text alignment toolbar":"Panel nástrojů zarovnánà textu",Bold:"TuÄné",Italic:"KurzÃva",Underline:"Podtržené",Code:"Kódový blok",Strikethrough:"PÅ™eÅ¡krtnuté",Subscript:"Dolnà index",Superscript:"Hornà index","Block quote":"Citace","Insert code block":"Vložit blok zdrojového kódu","Plain text":"Prostý text",Cancel:"ZruÅ¡it",Clear:"Smazat","Remove color":"Odstranit barvu","Restore default":"Obnovit výchozÃ",Save:"Uložit","Show more items":"Zobrazit dalÅ¡Ã položky","%0 of %1":"%0 z %1","Cannot upload file:":"Soubor nelze nahrát:","Rich Text Editor. Editing area: %0":"EditaÄnà oblast rich text editoru: %0","Insert with file manager":"Vložit pomocà správce souborů","Replace with file manager":"Nahradit pomocà správce souborů","Insert image with file manager":"Vložit obrázek pomocà správce souborů","Replace image with file manager":"Nahradit obrázek pomocà správce souborů","Find and replace":"NajÃt a nahradit","Find in text…":"NajÃt v textu...",Find:"NajÃt","Previous result":"PÅ™edchozà výskyt","Next result":"DalÅ¡Ã výskyt",Replace:"Nahradit","Replace all":"Nahradit vÅ¡e","Match case":"RozliÅ¡ovat velikost pÃsmen","Whole words only":"Pouze celá slova","Replace with…":"Nahradit ÄÃm...","Text to find must not be empty.":"Hledaný text nesmà být prázdný.","Tip: Find some text first in order to replace it.":"Tip: Nejprve najdÄ›te nÄ›jaký text, abyste jej mohli nahradit.","Advanced options":"PokroÄilé možnosti",Paragraph:"Odstavec",Heading:"Nadpis","Choose heading":"Zvolte nadpis","Heading 1":"Nadpis 1","Heading 2":"Nadpis 2","Heading 3":"Nadpis 3","Heading 4":"Nadpis 4","Heading 5":"Nadpis 5","Heading 6":"Nadpis 6","Type your title":"Sem zadejte název","Type or paste your content here.":"Zde zadejte nebo vložte obsah.","Horizontal line":"Vodorovná Äára","HTML object":"HTML objekt","Increase indent":"ZvÄ›tÅ¡it odsazenÃ","Decrease indent":"ZmenÅ¡it odsazenÃ",Unlink:"Odstranit odkaz",Link:"Odkaz","Link URL":"URL odkazu","Link image":"Adresa obrázku","Edit link":"Upravit odkaz","Open link in new tab":"OtevÅ™Ãt odkaz v nové kartÄ›","This link has no URL":"Tento odkaz nemá žádnou URL","Open in a new tab":"OtevÅ™Ãt v nové kartÄ›",Downloadable:"Ke staženÃ","Numbered List":"ÄŒÃslovánÃ","Bulleted List":"Odrážky","To-do List":"Seznam úkolů","Bulleted list styles toolbar":"Panel seznamu s odrážkami","Numbered list styles toolbar":"Panel se styly ÄÃslovaného seznamu","Toggle the disc list style":"PÅ™epnout na seznam s oznaÄenÃm plného kruhu","Toggle the circle list style":"PÅ™epnout na seznam s kruhovým oznaÄenÃm","Toggle the square list style":"PÅ™epnout na seznam se Ätvercovým oznaÄenÃm","Toggle the decimal list style":"PÅ™epnout na ÄÃselný seznam","Toggle the decimal with leading zero list style":"PÅ™epnout na ÄÃselný seznam s nulou na zaÄátku","Toggle the lower–roman list style":"PÅ™epnout na seznam s malými Å™Ãmskými ÄÃsly","Toggle the upper–roman list style":"PÅ™epnout na seznam s velkými Å™Ãmskými ÄÃsly","Toggle the lower–latin list style":"PÅ™epnout na seznam s malými pÃsmeny","Toggle the upper–latin list style":"PÅ™epnout na seznam s velkými pÃsmeny",Disc:"Plný kruh",Circle:"Kruh",Square:"ÄŒtverec",Decimal:"ÄŒÃsla","Decimal with leading zero":"ÄŒÃsla s nulou na zaÄátku","Lower–roman":"Malé Å™Ãmské ÄÃsla","Upper-roman":"Velké Å™Ãmské ÄÃsla","Lower-latin":"Malá pÃsmena","Upper-latin":"Velká pÃsmena","List properties":"Vlastnosti seznamu","Start at":"ZaÄÃt na","Start index must be greater than 0.":"PoÄátek musà být vÄ›tÅ¡Ã jak 0.","Reversed order":"Obrácené poÅ™adÃ","Remove Format":"Odstranit formátovánÃ","Select all":"Vybrat vÅ¡e","Show blocks":"Zobrazit bloky",Source:"Zdroj","Special characters":"Speciálnà znaky",All:"VÅ¡e",Arrows:"Å ipky",Currency:"MÄ›na",Latin:"Latina",Mathematical:"Matematické",Text:"Text","leftwards simple arrow":"jednoduchá Å¡ipka doleva","rightwards simple arrow":"jednoduchá Å¡ipka doprava","upwards simple arrow":"jednoduchá Å¡ipka nahoru","downwards simple arrow":"jednoduchá Å¡ipka dolů","leftwards double arrow":"dvojitá Å¡ipka doleva","rightwards double arrow":"dvojitá Å¡ipka doprava","upwards double arrow":"dvojitá Å¡ipka nahoru","downwards double arrow":"dvojitá Å¡ipka dolů","leftwards dashed arrow":"pÅ™eruÅ¡ovaná Å¡ipka doleva","rightwards dashed arrow":"Äárkovaná Å¡ipka doprava","upwards dashed arrow":"Äárkovaná Å¡ipka nahoru","downwards dashed arrow":"pÅ™eruÅ¡ovaná Å¡ipka dolů","leftwards arrow to bar":"Å¡ipka doleva do svislé Äáry","rightwards arrow to bar":"Å¡ipka doprava do svislé Äáry","upwards arrow to bar":"Å¡ipka nahoru do svislé Äáry","downwards arrow to bar":"Å¡ipka dolů do svislé Äáry","up down arrow with base":"Å ipka nahoru-dolů od základny","back with leftwards arrow above":"Å¡ipka zpÄ›t","end with leftwards arrow above":"Å¡ipka konec","on with exclamation mark with left right arrow above":"ON s vykÅ™iÄnÃkem se Å¡ipkou doleva doprava nahoru","soon with rightwards arrow above":"brzy se Å¡ipkou doprava nahoru","top with upwards arrow above":"TOP se Å¡ipkou nahoru","Dollar sign":"Znak Dolar","Euro sign":"Znak Euro","Yen sign":"Znak Jen","Pound sign":"Znak Libra","Cent sign":"Znak cent","Euro-currency sign":"Mena Euro","Colon sign":"dvojteÄka","Cruzeiro sign":"MÄ›na Cruzeiro","French franc sign":"MÄ›na Francouzský Frank","Lira sign":"MÄ›na Lira","Currency sign":"Znak mÄ›ny","Bitcoin sign":"MÄ›na Bitcoin","Mill sign":"Znak Mill","Naira sign":"Znak Naira","Peseta sign":"Znak Peseta","Rupee sign":"Znak Rupee","Won sign":"Znak Won","New sheqel sign":"Nový znak Å¡ekel","Dong sign":"Znak Dong","Kip sign":"Znak Kip","Tugrik sign":"Znak Tugrik","Drachma sign":"Znak Drachma","German penny sign":"NÄ›mecká penny","Peso sign":"Znak Peso","Guarani sign":"Znak Guarani","Austral sign":"Znak Austral","Hryvnia sign":"Znak Hryvnia","Cedi sign":"Znak Cedi","Livre tournois sign":"Znak Livre tournois","Spesmilo sign":"Znak Spesmilo","Tenge sign":"Znak Tenge","Indian rupee sign":"Znak Indická rupia","Turkish lira sign":"Znak Turecká lÃra","Nordic mark sign":"Znak Nórska marka","Manat sign":"Znak Manat","Ruble sign":"Znak Ruble","Latin capital letter a with macron":"Latinské velké pÃsmeno a s Äárou","Latin small letter a with macron":"Latinské malé pÃsmeno a s Äárou","Latin capital letter a with breve":"Latinské velké pÃsmeno a s háÄkem","Latin small letter a with breve":"Latinské malé pÃsmeno a s háÄkem","Latin capital letter a with ogonek":"Latinské velké pÃsmeno a s háÄkem","Latin small letter a with ogonek":"Latinské malé pÃsmeno a s háÄkem","Latin capital letter c with acute":"Latinské velké pÃsmeno c s Äárkou","Latin small letter c with acute":"Latinské malé pÃsmeno c s Äárkou","Latin capital letter c with circumflex":"Latinské velké pÃsmeno c s obráceným háÄkem","Latin small letter c with circumflex":"Latinské malé pÃsmeno c s obráceným háÄkem","Latin capital letter c with dot above":"Latinské velké pÃsmeno c s teÄkou nad znakem","Latin small letter c with dot above":"Latinské malé pÃsmeno c s teÄkou nad znakem","Latin capital letter c with caron":"Latinské veľké pÃsmeno c s mäkÄeňom","Latin small letter c with caron":"Latinské malé pÃsmeno c s háÄkem","Latin capital letter d with caron":"Latinské velké pÃsmeno d s háÄkem","Latin small letter d with caron":"Latinské malé pÃsmeno d s háÄkem","Latin capital letter d with stroke":"Latinské velké pÃsmeno d s pÅ™eÅ¡krtnutÃm","Latin small letter d with stroke":"Latinské malé pÃsmeno d s pÅ™eÅ¡krtnutÃm","Latin capital letter e with macron":"Latinské velké pÃsmeno e s Äárou","Latin small letter e with macron":"Latinské malé pÃsmeno e s Äárou","Latin capital letter e with breve":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with breve":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter e with dot above":"Latinské velké pÃsmeno e s teÄkou nad znakem","Latin small letter e with dot above":"Latinské malé pÃsmeno e s teÄkou nad znakem","Latin capital letter e with ogonek":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with ogonek":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter e with caron":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with caron":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter g with circumflex":"Latinské velké pÃsmeno g s obráceným háÄkem","Latin small letter g with circumflex":"Latinské malé pÃsmeno g s obráceným háÄkem","Latin capital letter g with breve":"Latinské velké pÃsmeno g s háÄkem","Latin small letter g with breve":"Latinské malé pÃsmeno g s háÄkem","Latin capital letter g with dot above":"Latinské velké pÃsmeno g s teÄkou nad znakem","Latin small letter g with dot above":"Latinské malé pÃsmeno g s teÄkou nad znakem","Latin capital letter g with cedilla":"Latinské velké pÃsmeno g s háÄkem","Latin small letter g with cedilla":"Latinské malé pÃsmeno g s háÄkem","Latin capital letter h with circumflex":"Latinské velké pÃsmeno h s obráceným háÄkem","Latin small letter h with circumflex":"Latinské malé pÃsmeno h s obráceným háÄkem","Latin capital letter h with stroke":"Latinské velké pÃsmeno h s pÅ™eÅ¡krtnutÃm","Latin small letter h with stroke":"Latinské malé pÃsmeno h s pÅ™eÅ¡krtnutÃm","Latin capital letter i with tilde":"Latinské velké pÃsmeno i s vlnovkou","Latin small letter i with tilde":"Latinské malé pÃsmeno i s vlnovkou","Latin capital letter i with macron":"Latinské velké pÃsmeno i s Äárou","Latin small letter i with macron":"Latinské malé pÃsmeno i s Äárou","Latin capital letter i with breve":"Latinské velké pÃsmeno i s háÄkem","Latin small letter i with breve":"Latinské malé pÃsmeno i s háÄkem","Latin capital letter i with ogonek":"Latinské velké pÃsmeno i s háÄkem","Latin small letter i with ogonek":"Latinské malé pÃsmeno i s háÄkem","Latin capital letter i with dot above":"Latinské velké pÃsmeno i s teÄkou nad znakem","Latin small letter dotless i":"Latinské malé pÃsmeno i bez teÄky","Latin capital ligature ij":"Latinský velký znak ligatury ij","Latin small ligature ij":"Latinský malý znak ligatury ij","Latin capital letter j with circumflex":"Latinské velké pÃsmeno j s obráceným háÄkem","Latin small letter j with circumflex":"Latinské malé pÃsmeno j s obráceným háÄkem","Latin capital letter k with cedilla":"Latinské velké pÃsmeno k s háÄkem","Latin small letter k with cedilla":"Latinské malé pÃsmeno k s háÄkem","Latin small letter kra":"Latinský malý znak Kra","Latin capital letter l with acute":"Latinské velké pÃsmeno l s Äárkou","Latin small letter l with acute":"Latinské malé pÃsmeno l s Äárkou","Latin capital letter l with cedilla":"Latinské velké pÃsmeno l s háÄkem","Latin small letter l with cedilla":"Latinské malé pÃsmeno l s háÄkem","Latin capital letter l with caron":"Latinské velké pÃsmeno l s háÄkem","Latin small letter l with caron":"Latinské malé pÃsmeno l s háÄkem","Latin capital letter l with middle dot":"Latinské velké pÃsmeno l s teÄkou uprostÅ™ed","Latin small letter l with middle dot":"Latinské malé pÃsmeno l s teÄkou uprostÅ™ed","Latin capital letter l with stroke":"Latinské velké pÃsmeno l s pÅ™eÅ¡krtnutÃm","Latin small letter l with stroke":"Latinské malé pÃsmeno l s pÅ™eÅ¡krtnutÃm","Latin capital letter n with acute":"Latinské velké pÃsmeno n s Äárkou","Latin small letter n with acute":"Latinské malé pÃsmeno n s Äárkou","Latin capital letter n with cedilla":"Latinské velké pÃsmeno n s háÄkem","Latin small letter n with cedilla":"Latinské malé pÃsmeno n s háÄkem","Latin capital letter n with caron":"Latinské velké pÃsmeno n s háÄkem","Latin small letter n with caron":"Latinské malé pÃsmeno n s háÄkem","Latin small letter n preceded by apostrophe":"Latinské malé pÃsmeno n s apostrofem","Latin capital letter eng":"Latinské velké pÃsmeno Eng","Latin small letter eng":"Latinské malé pÃsmeno Eng","Latin capital letter o with macron":"Latinské velké pÃsmeno o s Äárou","Latin small letter o with macron":"Latinské malé pÃsmeno o s Äárou","Latin capital letter o with breve":"Latinské velké pÃsmeno o s háÄkem","Latin small letter o with breve":"Latinské malé pÃsmeno o s háÄkem","Latin capital letter o with double acute":"Latinské velké pÃsmeno o s Äárkou","Latin small letter o with double acute":"Latinské malé pÃsmeno o s Äárkou","Latin capital ligature oe":"Latinský velký znak ligatury oe","Latin small ligature oe":"Latinský malý znak ligatury oe","Latin capital letter r with acute":"Latinské velké pÃsmeno r s Äárkou","Latin small letter r with acute":"Latinské malé pÃsmeno r s Äárkou","Latin capital letter r with cedilla":"Latinské velké pÃsmeno r s háÄkem","Latin small letter r with cedilla":"Latinské malé pÃsmeno r s háÄkem","Latin capital letter r with caron":"Latinské velké pÃsmeno r s háÄkem","Latin small letter r with caron":"Latinské malé pÃsmeno r s háÄkem","Latin capital letter s with acute":"Latinské velké pÃsmeno s s Äárkou","Latin small letter s with acute":"Latinské malé pÃsmeno s s Äárkou","Latin capital letter s with circumflex":"Latinské velké pÃsmeno s s obráceným háÄkem","Latin small letter s with circumflex":"Latinské malé pÃsmeno s s obráceným háÄkem","Latin capital letter s with cedilla":"Latinské velké pÃsmeno s s háÄkem","Latin small letter s with cedilla":"Latinské malé pÃsmeno s s háÄkem","Latin capital letter s with caron":"Latinské velké pÃsmeno s s háÄkem","Latin small letter s with caron":"Latinské malé pÃsmeno s s háÄkem","Latin capital letter t with cedilla":"Latinské velké pÃsmeno t s háÄkem","Latin small letter t with cedilla":"Latinské malé pÃsmeno t s háÄkem","Latin capital letter t with caron":"Latinské velké pÃsmeno t s háÄkem","Latin small letter t with caron":"Latinské malé pÃsmeno t s háÄkem","Latin capital letter t with stroke":"Latinské velké pÃsmeno t s pÅ™eÅ¡krtnutÃm","Latin small letter t with stroke":"Latinské malé pÃsmeno t s pÅ™eÅ¡krtnutÃm","Latin capital letter u with tilde":"Latinské velké pÃsmeno u s vlnovkou","Latin small letter u with tilde":"Latinské malé pÃsmeno u s vlnovkou","Latin capital letter u with macron":"Latinské velké pÃsmeno u s Äárou","Latin small letter u with macron":"Latinské malé pÃsmeno o s Äárou","Latin capital letter u with breve":"Latinské velké pÃsmeno u s háÄkem","Latin small letter u with breve":"Latinské malé pÃsmeno u s háÄkem","Latin capital letter u with ring above":"Latinské velké pÃsmeno u s kroužkem nad znakem","Latin small letter u with ring above":"Latinské malé pÃsmeno u s kroužkem nad znakem","Latin capital letter u with double acute":"Latinské velké pÃsmeno u s dvojitým akcentu","Latin small letter u with double acute":"Latinské malé pÃsmeno u s dvojitým akcentu","Latin capital letter u with ogonek":"Latinské velké pÃsmeno u s háÄkem","Latin small letter u with ogonek":"Latinské malé pÃsmeno u s háÄkem","Latin capital letter w with circumflex":"Latinské velké pÃsmeno w s obráceným háÄkem","Latin small letter w with circumflex":"Latinské malé pÃsmeno w s obráceným háÄkem","Latin capital letter y with circumflex":"Latinské velké pÃsmeno y s obráceným háÄkem","Latin small letter y with circumflex":"Latinské malé pÃsmeno y s obráteným mäkÄeňom","Latin capital letter y with diaeresis":"Latinské velké pÃsmeno y s dvojteÄkou nad znakem","Latin capital letter z with acute":"Latinské velké pÃsmeno z s Äárkou","Latin small letter z with acute":"Latinské malé pÃsmeno z s Äárkou","Latin capital letter z with dot above":"Latinské velké pÃsmeno z s teÄkou nad znakem","Latin small letter z with dot above":"Latinské malé pÃsmeno z s teÄkou nad znakem","Latin capital letter z with caron":"Latinské velké pÃsmeno z s háÄkem","Latin small letter z with caron":"Malé pÃsmeno s z háÄkem","Latin small letter long s":"Malé dlouhé pÃsmeno s","Less-than sign":"MenÅ¡Ã než","Greater-than sign":"VÄ›tÅ¡Ã než","Less-than or equal to":"MenÅ¡Ã nebo roven","Greater-than or equal to":"VÄ›tÅ¡Ã nebo roven","En dash":"PomlÄka","Em dash":"Dlouhá pomlÄka",Macron:"Hornà Äára",Overline:"PÅ™eÅ¡krtnutÃ","Degree sign":"Znak stupeň","Minus sign":"Znak mÃnus","Plus-minus sign":"Znak plus-minus","Division sign":"DÄ›lenÃ","Fraction slash":"LomÃtko / DÄ›lenÃ","Multiplication sign":"NásobenÃ","Latin small letter f with hook":"Funkce",Integral:"Integrál","N-ary summation":"Znak cyklického sÄÃtánÃ",Infinity:"NekoneÄno","Square root":"Odmocnina","Tilde operator":"Vlnovka","Approximately equal to":"Aproximace","Almost equal to":"ČásteÄnÄ› rovný","Not equal to":"Nerovná se","Identical to":"Identický k","Element of":"Patřà / Je souÄástÃ","Not an element of":"Nepatřà / Nenà souÄástÃ","Contains as member":"Obsahuje prvek","N-ary product":"Znak cyklického násobenÃ","Logical and":"Logický AND","Logical or":"Logický OR","Not sign":"Nenà rovný",Intersection:"PrůseÄÃk / Průnik",Union:"SjednocenÃ","Partial differential":"Parciálnà diference","For all":"Pro vÅ¡echny prvky v množinÄ›","There exists":"Existuje v množinÄ›","Empty set":"Prázdná množina",Nabla:"Nabla","Asterisk operator":"HvÄ›zdiÄka / násobenÃ","Proportional to":"ÚmÄ›rný k",Angle:"Úhel","Vulgar fraction one quarter":"Jedna Ätvrtina","Vulgar fraction one half":"Polovina","Vulgar fraction three quarters":"TÅ™i Ätvrtiny","Single left-pointing angle quotation mark":"Å ipka ukazujÃcà do leva","Single right-pointing angle quotation mark":"Å ipka ukazujÃcà do prava","Left-pointing double angle quotation mark":"Dvojitá Å¡ipka ukazujÃcà do leva","Right-pointing double angle quotation mark":"Dvojitá Å¡ipka ukazujÃcà do prava","Left single quotation mark":"Levá uvozovka","Right single quotation mark":"Pravá uvozovka","Left double quotation mark":"Levá dvojitá uvozovka","Right double quotation mark":"Pravá dvojitá uvozovka","Single low-9 quotation mark":"Spodnà uvozovka","Double low-9 quotation mark":"Dvojitá spodnà uvozovka","Inverted exclamation mark":"Obrácený vykÅ™iÄnÃk","Inverted question mark":"Obrácený otaznÃk","Two dot leader":"Horizontálnà dvojteÄka","Horizontal ellipsis":"TeÄky","Double dagger":"DvojkřÞ","Per mille sign":"Promile","Per ten thousand sign":"Na deset tisÃc","Double exclamation mark":"Dvojitý vykÅ™iÄnÃk","Question exclamation mark":"OtaznÃk a vykÅ™iÄnÃk","Exclamation question mark":"VykÅ™iÄnÃk a otaznÃk","Double question mark":"Dvojitý otaznÃk","Copyright sign":"Copyright","Registered sign":"Registrovaný","Trade mark sign":"Ochranná známka","Section sign":"Sekce","Paragraph sign":"Odstavec","Reversed paragraph sign":"Obrácený znak odstavce","Character categories":"Kategorie znaků",Styles:"Styly","Multiple styles":"VÃce stylů","Block styles":"Styly bloků","Text styles":"Styly textu","Insert table":"Vložit tabulku","Header column":"Sloupec záhlavÃ","Insert column left":"Vložit sloupec vlevo","Insert column right":"Vložit sloupec vpravo","Delete column":"Smazat sloupec","Select column":"Vybrat sloupec",Column:"Sloupec","Header row":"Řádek záhlavÃ","Insert row below":"Vložit řádek pod","Insert row above":"Vložit řádek pÅ™ed","Delete row":"Smazat řádek","Select row":"Vybrat řádek",Row:"Řádek","Merge cell up":"SlouÄit s buňkou nad","Merge cell right":"SlouÄit s buňkou vpravo","Merge cell down":"SlouÄit s buňkou pod","Merge cell left":"SlouÄit s buňkou vlevo","Split cell vertically":"RozdÄ›lit buňky vertikálnÄ›","Split cell horizontally":"RozdÄ›lit buňky horizontálnÄ›","Merge cells":"SlouÄit buňky","Table toolbar":"Panel nástrojů tabulky","Table properties":"Vlastnosti tabulky","Cell properties":"Vlastnosti buňky",Border:"Okraj",Style:"Styl",Width:"Å ÃÅ™ka",Height:"Výška",Color:"Barva",Background:"PozadÃ",Padding:"VnitÅ™nà okraj",Dimensions:"RozmÄ›ry","Table cell text alignment":"Zarovnánà textu buňky tabulky",Alignment:"ZarovnánÃ","Horizontal text alignment toolbar":"Horizontálnà zarovnánà textu v panelu","Vertical text alignment toolbar":"Vertikálnà zarovnánà textu v panelu","Table alignment toolbar":"Panel zarovnánà tabulky",None:"Žádná",Solid:"Plná",Dotted:"TeÄkovaná",Dashed:"Čárkovaná",Double:"Dvojitá",Groove:"Drážkovaná",Ridge:"Rámovaná",Inset:"Vložená zevnitÅ™",Outset:"Vložená zvenku","Align cell text to the left":"Zarovnat text buňky doleva","Align cell text to the center":"Zarovnat text buňky na stÅ™ed","Align cell text to the right":"Zarovnat text buňky doprava","Justify cell text":"Zarovnat text buňky z obou stran","Align cell text to the top":"Zarovnat text buňky nahoru","Align cell text to the middle":"Zarovnat text buňky na stÅ™ed","Align cell text to the bottom":"Zarovnat text buňky dolů","Align table to the left":"Zarovnat tabulku doleva","Center table":"Centrovat tabulku","Align table to the right":"Zarovnat tabulku doprava","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Barva má nesprávný formát. Zkuste \"#FF0000\", \"rgb(255,0,0)\" nebo \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Hodnota je nesprávná. Zkuste \"10px\", \"2em\" nebo jednoduÅ¡e \"2\".","Color picker":"Vybrat barvu","Toggle caption off":"Vypnout titulek","Toggle caption on":"Zapnout titulek","Enter table caption":"Zadejte titulek tabulky","Rich Text Editor":"Textový editor","Editor editing area: %0":"EditaÄnà oblast editoru: %0","Edit block":"Upravit blok","Click to edit block":"KliknutÃm upravÃte blok","Drag to move":"PÅ™esuňte potaženÃm",Next:"DalÅ¡Ã",Previous:"PÅ™edchozÃ","Editor toolbar":"Panel nástrojů editoru","Dropdown toolbar":"Rozbalovacà panel nástrojů",Black:"ÄŒerná","Dim grey":"TmavÄ› Å¡edá",Grey:"Å edá","Light grey":"SvÄ›tle Å¡edá",White:"BÃlá",Red:"ÄŒervená",Orange:"Oranžová",Yellow:"Žlutá","Light green":"SvÄ›tle zelená",Green:"Zelená",Aquamarine:"AkvamarÃnová",Turquoise:"Tyrkysová","Light blue":"SvÄ›tle modrá",Blue:"Modrá",Purple:"Fialová","Editor block content toolbar":"Panel nástrojů obsahu bloku editoru","Editor contextual toolbar":"Kontextový panel nástrojů editoru",HEX:"HEX",Accept:"PÅ™ijmout","No results found":"Nenalezeny žádné výsledky","No searchable items":"Žádné položky k vyhledánÃ","Editor dialog":"Dialog editoru",Close:"ZavÅ™Ãt",Undo:"ZpÄ›t",Redo:"Znovu","Upload in progress":"ProbÃhá nahrávánÃ","Widget toolbar":"Panel nástrojů ovládacÃho prvku","Insert paragraph before block":"Vložte odstavec pÅ™ed blok","Insert paragraph after block":"Vložte odstavec za blok","Press Enter to type after or press Shift + Enter to type before the widget":"StisknutÃm klávesy Enter můžete psát za widgetem a stisknutÃm Shift + Enter pÅ™ed nÃm","Words: %0":"PoÄet slov: %0","Characters: %0":"PoÄet znaků: %0"} );l.getPluralForm=function(n){return (n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['cs'] = d['cs'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Zarovnat vlevo","Align right":"Zarovnat vpravo","Align center":"Zarovnat na stÅ™ed",Justify:"Zarovnat do bloku","Text alignment":"Zarovnánà textu","Text alignment toolbar":"Panel nástrojů zarovnánà textu",Bold:"TuÄné",Italic:"KurzÃva",Underline:"Podtržené",Code:"Kódový blok",Strikethrough:"PÅ™eÅ¡krtnuté",Subscript:"Dolnà index",Superscript:"Hornà index","Block quote":"Citace","Insert code block":"Vložit blok zdrojového kódu","Plain text":"Prostý text",Cancel:"ZruÅ¡it",Clear:"Smazat","Remove color":"Odstranit barvu","Restore default":"Obnovit výchozÃ",Save:"Uložit","Show more items":"Zobrazit dalÅ¡Ã položky","%0 of %1":"%0 z %1","Cannot upload file:":"Soubor nelze nahrát:","Rich Text Editor. Editing area: %0":"EditaÄnà oblast rich text editoru: %0","Insert with file manager":"Vložit pomocà správce souborů","Replace with file manager":"Nahradit pomocà správce souborů","Insert image with file manager":"Vložit obrázek pomocà správce souborů","Replace image with file manager":"Nahradit obrázek pomocà správce souborů","Find and replace":"NajÃt a nahradit","Find in text…":"NajÃt v textu...",Find:"NajÃt","Previous result":"PÅ™edchozà výskyt","Next result":"DalÅ¡Ã výskyt",Replace:"Nahradit","Replace all":"Nahradit vÅ¡e","Match case":"RozliÅ¡ovat velikost pÃsmen","Whole words only":"Pouze celá slova","Replace with…":"Nahradit ÄÃm...","Text to find must not be empty.":"Hledaný text nesmà být prázdný.","Tip: Find some text first in order to replace it.":"Tip: Nejprve najdÄ›te nÄ›jaký text, abyste jej mohli nahradit.","Advanced options":"PokroÄilé možnosti","Font Size":"Velikost pÃsma",Tiny:"Drobné",Small:"Malé",Big:"Velké",Huge:"Obrovské","Font Family":"Typ pÃsma",Default:"VýchozÃ","Font Color":"Barva pÃsma","Font Background Color":"Barva pozadà pÃsma","Document colors":"Barvy dokumentu",Paragraph:"Odstavec",Heading:"Nadpis","Choose heading":"Zvolte nadpis","Heading 1":"Nadpis 1","Heading 2":"Nadpis 2","Heading 3":"Nadpis 3","Heading 4":"Nadpis 4","Heading 5":"Nadpis 5","Heading 6":"Nadpis 6","Type your title":"Sem zadejte název","Type or paste your content here.":"Zde zadejte nebo vložte obsah.","Horizontal line":"Vodorovná Äára","HTML object":"HTML objekt","Increase indent":"ZvÄ›tÅ¡it odsazenÃ","Decrease indent":"ZmenÅ¡it odsazenÃ",Unlink:"Odstranit odkaz",Link:"Odkaz","Link URL":"URL odkazu","Link image":"Adresa obrázku","Edit link":"Upravit odkaz","Open link in new tab":"OtevÅ™Ãt odkaz v nové kartÄ›","This link has no URL":"Tento odkaz nemá žádnou URL","Open in a new tab":"OtevÅ™Ãt v nové kartÄ›",Downloadable:"Ke staženÃ","Numbered List":"ÄŒÃslovánÃ","Bulleted List":"Odrážky","To-do List":"Seznam úkolů","Bulleted list styles toolbar":"Panel seznamu s odrážkami","Numbered list styles toolbar":"Panel se styly ÄÃslovaného seznamu","Toggle the disc list style":"PÅ™epnout na seznam s oznaÄenÃm plného kruhu","Toggle the circle list style":"PÅ™epnout na seznam s kruhovým oznaÄenÃm","Toggle the square list style":"PÅ™epnout na seznam se Ätvercovým oznaÄenÃm","Toggle the decimal list style":"PÅ™epnout na ÄÃselný seznam","Toggle the decimal with leading zero list style":"PÅ™epnout na ÄÃselný seznam s nulou na zaÄátku","Toggle the lower–roman list style":"PÅ™epnout na seznam s malými Å™Ãmskými ÄÃsly","Toggle the upper–roman list style":"PÅ™epnout na seznam s velkými Å™Ãmskými ÄÃsly","Toggle the lower–latin list style":"PÅ™epnout na seznam s malými pÃsmeny","Toggle the upper–latin list style":"PÅ™epnout na seznam s velkými pÃsmeny",Disc:"Plný kruh",Circle:"Kruh",Square:"ÄŒtverec",Decimal:"ÄŒÃsla","Decimal with leading zero":"ÄŒÃsla s nulou na zaÄátku","Lower–roman":"Malé Å™Ãmské ÄÃsla","Upper-roman":"Velké Å™Ãmské ÄÃsla","Lower-latin":"Malá pÃsmena","Upper-latin":"Velká pÃsmena","List properties":"Vlastnosti seznamu","Start at":"ZaÄÃt na","Start index must be greater than 0.":"PoÄátek musà být vÄ›tÅ¡Ã jak 0.","Reversed order":"Obrácené poÅ™adÃ","Remove Format":"Odstranit formátovánÃ","Select all":"Vybrat vÅ¡e","Show blocks":"Zobrazit bloky",Source:"Zdroj","Special characters":"Speciálnà znaky",All:"VÅ¡e",Arrows:"Å ipky",Currency:"MÄ›na",Latin:"Latina",Mathematical:"Matematické",Text:"Text","leftwards simple arrow":"jednoduchá Å¡ipka doleva","rightwards simple arrow":"jednoduchá Å¡ipka doprava","upwards simple arrow":"jednoduchá Å¡ipka nahoru","downwards simple arrow":"jednoduchá Å¡ipka dolů","leftwards double arrow":"dvojitá Å¡ipka doleva","rightwards double arrow":"dvojitá Å¡ipka doprava","upwards double arrow":"dvojitá Å¡ipka nahoru","downwards double arrow":"dvojitá Å¡ipka dolů","leftwards dashed arrow":"pÅ™eruÅ¡ovaná Å¡ipka doleva","rightwards dashed arrow":"Äárkovaná Å¡ipka doprava","upwards dashed arrow":"Äárkovaná Å¡ipka nahoru","downwards dashed arrow":"pÅ™eruÅ¡ovaná Å¡ipka dolů","leftwards arrow to bar":"Å¡ipka doleva do svislé Äáry","rightwards arrow to bar":"Å¡ipka doprava do svislé Äáry","upwards arrow to bar":"Å¡ipka nahoru do svislé Äáry","downwards arrow to bar":"Å¡ipka dolů do svislé Äáry","up down arrow with base":"Å ipka nahoru-dolů od základny","back with leftwards arrow above":"Å¡ipka zpÄ›t","end with leftwards arrow above":"Å¡ipka konec","on with exclamation mark with left right arrow above":"ON s vykÅ™iÄnÃkem se Å¡ipkou doleva doprava nahoru","soon with rightwards arrow above":"brzy se Å¡ipkou doprava nahoru","top with upwards arrow above":"TOP se Å¡ipkou nahoru","Dollar sign":"Znak Dolar","Euro sign":"Znak Euro","Yen sign":"Znak Jen","Pound sign":"Znak Libra","Cent sign":"Znak cent","Euro-currency sign":"Mena Euro","Colon sign":"dvojteÄka","Cruzeiro sign":"MÄ›na Cruzeiro","French franc sign":"MÄ›na Francouzský Frank","Lira sign":"MÄ›na Lira","Currency sign":"Znak mÄ›ny","Bitcoin sign":"MÄ›na Bitcoin","Mill sign":"Znak Mill","Naira sign":"Znak Naira","Peseta sign":"Znak Peseta","Rupee sign":"Znak Rupee","Won sign":"Znak Won","New sheqel sign":"Nový znak Å¡ekel","Dong sign":"Znak Dong","Kip sign":"Znak Kip","Tugrik sign":"Znak Tugrik","Drachma sign":"Znak Drachma","German penny sign":"NÄ›mecká penny","Peso sign":"Znak Peso","Guarani sign":"Znak Guarani","Austral sign":"Znak Austral","Hryvnia sign":"Znak Hryvnia","Cedi sign":"Znak Cedi","Livre tournois sign":"Znak Livre tournois","Spesmilo sign":"Znak Spesmilo","Tenge sign":"Znak Tenge","Indian rupee sign":"Znak Indická rupia","Turkish lira sign":"Znak Turecká lÃra","Nordic mark sign":"Znak Nórska marka","Manat sign":"Znak Manat","Ruble sign":"Znak Ruble","Latin capital letter a with macron":"Latinské velké pÃsmeno a s Äárou","Latin small letter a with macron":"Latinské malé pÃsmeno a s Äárou","Latin capital letter a with breve":"Latinské velké pÃsmeno a s háÄkem","Latin small letter a with breve":"Latinské malé pÃsmeno a s háÄkem","Latin capital letter a with ogonek":"Latinské velké pÃsmeno a s háÄkem","Latin small letter a with ogonek":"Latinské malé pÃsmeno a s háÄkem","Latin capital letter c with acute":"Latinské velké pÃsmeno c s Äárkou","Latin small letter c with acute":"Latinské malé pÃsmeno c s Äárkou","Latin capital letter c with circumflex":"Latinské velké pÃsmeno c s obráceným háÄkem","Latin small letter c with circumflex":"Latinské malé pÃsmeno c s obráceným háÄkem","Latin capital letter c with dot above":"Latinské velké pÃsmeno c s teÄkou nad znakem","Latin small letter c with dot above":"Latinské malé pÃsmeno c s teÄkou nad znakem","Latin capital letter c with caron":"Latinské veľké pÃsmeno c s mäkÄeňom","Latin small letter c with caron":"Latinské malé pÃsmeno c s háÄkem","Latin capital letter d with caron":"Latinské velké pÃsmeno d s háÄkem","Latin small letter d with caron":"Latinské malé pÃsmeno d s háÄkem","Latin capital letter d with stroke":"Latinské velké pÃsmeno d s pÅ™eÅ¡krtnutÃm","Latin small letter d with stroke":"Latinské malé pÃsmeno d s pÅ™eÅ¡krtnutÃm","Latin capital letter e with macron":"Latinské velké pÃsmeno e s Äárou","Latin small letter e with macron":"Latinské malé pÃsmeno e s Äárou","Latin capital letter e with breve":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with breve":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter e with dot above":"Latinské velké pÃsmeno e s teÄkou nad znakem","Latin small letter e with dot above":"Latinské malé pÃsmeno e s teÄkou nad znakem","Latin capital letter e with ogonek":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with ogonek":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter e with caron":"Latinské velké pÃsmeno e s háÄkem","Latin small letter e with caron":"Latinské malé pÃsmeno e s háÄkem","Latin capital letter g with circumflex":"Latinské velké pÃsmeno g s obráceným háÄkem","Latin small letter g with circumflex":"Latinské malé pÃsmeno g s obráceným háÄkem","Latin capital letter g with breve":"Latinské velké pÃsmeno g s háÄkem","Latin small letter g with breve":"Latinské malé pÃsmeno g s háÄkem","Latin capital letter g with dot above":"Latinské velké pÃsmeno g s teÄkou nad znakem","Latin small letter g with dot above":"Latinské malé pÃsmeno g s teÄkou nad znakem","Latin capital letter g with cedilla":"Latinské velké pÃsmeno g s háÄkem","Latin small letter g with cedilla":"Latinské malé pÃsmeno g s háÄkem","Latin capital letter h with circumflex":"Latinské velké pÃsmeno h s obráceným háÄkem","Latin small letter h with circumflex":"Latinské malé pÃsmeno h s obráceným háÄkem","Latin capital letter h with stroke":"Latinské velké pÃsmeno h s pÅ™eÅ¡krtnutÃm","Latin small letter h with stroke":"Latinské malé pÃsmeno h s pÅ™eÅ¡krtnutÃm","Latin capital letter i with tilde":"Latinské velké pÃsmeno i s vlnovkou","Latin small letter i with tilde":"Latinské malé pÃsmeno i s vlnovkou","Latin capital letter i with macron":"Latinské velké pÃsmeno i s Äárou","Latin small letter i with macron":"Latinské malé pÃsmeno i s Äárou","Latin capital letter i with breve":"Latinské velké pÃsmeno i s háÄkem","Latin small letter i with breve":"Latinské malé pÃsmeno i s háÄkem","Latin capital letter i with ogonek":"Latinské velké pÃsmeno i s háÄkem","Latin small letter i with ogonek":"Latinské malé pÃsmeno i s háÄkem","Latin capital letter i with dot above":"Latinské velké pÃsmeno i s teÄkou nad znakem","Latin small letter dotless i":"Latinské malé pÃsmeno i bez teÄky","Latin capital ligature ij":"Latinský velký znak ligatury ij","Latin small ligature ij":"Latinský malý znak ligatury ij","Latin capital letter j with circumflex":"Latinské velké pÃsmeno j s obráceným háÄkem","Latin small letter j with circumflex":"Latinské malé pÃsmeno j s obráceným háÄkem","Latin capital letter k with cedilla":"Latinské velké pÃsmeno k s háÄkem","Latin small letter k with cedilla":"Latinské malé pÃsmeno k s háÄkem","Latin small letter kra":"Latinský malý znak Kra","Latin capital letter l with acute":"Latinské velké pÃsmeno l s Äárkou","Latin small letter l with acute":"Latinské malé pÃsmeno l s Äárkou","Latin capital letter l with cedilla":"Latinské velké pÃsmeno l s háÄkem","Latin small letter l with cedilla":"Latinské malé pÃsmeno l s háÄkem","Latin capital letter l with caron":"Latinské velké pÃsmeno l s háÄkem","Latin small letter l with caron":"Latinské malé pÃsmeno l s háÄkem","Latin capital letter l with middle dot":"Latinské velké pÃsmeno l s teÄkou uprostÅ™ed","Latin small letter l with middle dot":"Latinské malé pÃsmeno l s teÄkou uprostÅ™ed","Latin capital letter l with stroke":"Latinské velké pÃsmeno l s pÅ™eÅ¡krtnutÃm","Latin small letter l with stroke":"Latinské malé pÃsmeno l s pÅ™eÅ¡krtnutÃm","Latin capital letter n with acute":"Latinské velké pÃsmeno n s Äárkou","Latin small letter n with acute":"Latinské malé pÃsmeno n s Äárkou","Latin capital letter n with cedilla":"Latinské velké pÃsmeno n s háÄkem","Latin small letter n with cedilla":"Latinské malé pÃsmeno n s háÄkem","Latin capital letter n with caron":"Latinské velké pÃsmeno n s háÄkem","Latin small letter n with caron":"Latinské malé pÃsmeno n s háÄkem","Latin small letter n preceded by apostrophe":"Latinské malé pÃsmeno n s apostrofem","Latin capital letter eng":"Latinské velké pÃsmeno Eng","Latin small letter eng":"Latinské malé pÃsmeno Eng","Latin capital letter o with macron":"Latinské velké pÃsmeno o s Äárou","Latin small letter o with macron":"Latinské malé pÃsmeno o s Äárou","Latin capital letter o with breve":"Latinské velké pÃsmeno o s háÄkem","Latin small letter o with breve":"Latinské malé pÃsmeno o s háÄkem","Latin capital letter o with double acute":"Latinské velké pÃsmeno o s Äárkou","Latin small letter o with double acute":"Latinské malé pÃsmeno o s Äárkou","Latin capital ligature oe":"Latinský velký znak ligatury oe","Latin small ligature oe":"Latinský malý znak ligatury oe","Latin capital letter r with acute":"Latinské velké pÃsmeno r s Äárkou","Latin small letter r with acute":"Latinské malé pÃsmeno r s Äárkou","Latin capital letter r with cedilla":"Latinské velké pÃsmeno r s háÄkem","Latin small letter r with cedilla":"Latinské malé pÃsmeno r s háÄkem","Latin capital letter r with caron":"Latinské velké pÃsmeno r s háÄkem","Latin small letter r with caron":"Latinské malé pÃsmeno r s háÄkem","Latin capital letter s with acute":"Latinské velké pÃsmeno s s Äárkou","Latin small letter s with acute":"Latinské malé pÃsmeno s s Äárkou","Latin capital letter s with circumflex":"Latinské velké pÃsmeno s s obráceným háÄkem","Latin small letter s with circumflex":"Latinské malé pÃsmeno s s obráceným háÄkem","Latin capital letter s with cedilla":"Latinské velké pÃsmeno s s háÄkem","Latin small letter s with cedilla":"Latinské malé pÃsmeno s s háÄkem","Latin capital letter s with caron":"Latinské velké pÃsmeno s s háÄkem","Latin small letter s with caron":"Latinské malé pÃsmeno s s háÄkem","Latin capital letter t with cedilla":"Latinské velké pÃsmeno t s háÄkem","Latin small letter t with cedilla":"Latinské malé pÃsmeno t s háÄkem","Latin capital letter t with caron":"Latinské velké pÃsmeno t s háÄkem","Latin small letter t with caron":"Latinské malé pÃsmeno t s háÄkem","Latin capital letter t with stroke":"Latinské velké pÃsmeno t s pÅ™eÅ¡krtnutÃm","Latin small letter t with stroke":"Latinské malé pÃsmeno t s pÅ™eÅ¡krtnutÃm","Latin capital letter u with tilde":"Latinské velké pÃsmeno u s vlnovkou","Latin small letter u with tilde":"Latinské malé pÃsmeno u s vlnovkou","Latin capital letter u with macron":"Latinské velké pÃsmeno u s Äárou","Latin small letter u with macron":"Latinské malé pÃsmeno o s Äárou","Latin capital letter u with breve":"Latinské velké pÃsmeno u s háÄkem","Latin small letter u with breve":"Latinské malé pÃsmeno u s háÄkem","Latin capital letter u with ring above":"Latinské velké pÃsmeno u s kroužkem nad znakem","Latin small letter u with ring above":"Latinské malé pÃsmeno u s kroužkem nad znakem","Latin capital letter u with double acute":"Latinské velké pÃsmeno u s dvojitým akcentu","Latin small letter u with double acute":"Latinské malé pÃsmeno u s dvojitým akcentu","Latin capital letter u with ogonek":"Latinské velké pÃsmeno u s háÄkem","Latin small letter u with ogonek":"Latinské malé pÃsmeno u s háÄkem","Latin capital letter w with circumflex":"Latinské velké pÃsmeno w s obráceným háÄkem","Latin small letter w with circumflex":"Latinské malé pÃsmeno w s obráceným háÄkem","Latin capital letter y with circumflex":"Latinské velké pÃsmeno y s obráceným háÄkem","Latin small letter y with circumflex":"Latinské malé pÃsmeno y s obráteným mäkÄeňom","Latin capital letter y with diaeresis":"Latinské velké pÃsmeno y s dvojteÄkou nad znakem","Latin capital letter z with acute":"Latinské velké pÃsmeno z s Äárkou","Latin small letter z with acute":"Latinské malé pÃsmeno z s Äárkou","Latin capital letter z with dot above":"Latinské velké pÃsmeno z s teÄkou nad znakem","Latin small letter z with dot above":"Latinské malé pÃsmeno z s teÄkou nad znakem","Latin capital letter z with caron":"Latinské velké pÃsmeno z s háÄkem","Latin small letter z with caron":"Malé pÃsmeno s z háÄkem","Latin small letter long s":"Malé dlouhé pÃsmeno s","Less-than sign":"MenÅ¡Ã než","Greater-than sign":"VÄ›tÅ¡Ã než","Less-than or equal to":"MenÅ¡Ã nebo roven","Greater-than or equal to":"VÄ›tÅ¡Ã nebo roven","En dash":"PomlÄka","Em dash":"Dlouhá pomlÄka",Macron:"Hornà Äára",Overline:"PÅ™eÅ¡krtnutÃ","Degree sign":"Znak stupeň","Minus sign":"Znak mÃnus","Plus-minus sign":"Znak plus-minus","Division sign":"DÄ›lenÃ","Fraction slash":"LomÃtko / DÄ›lenÃ","Multiplication sign":"NásobenÃ","Latin small letter f with hook":"Funkce",Integral:"Integrál","N-ary summation":"Znak cyklického sÄÃtánÃ",Infinity:"NekoneÄno","Square root":"Odmocnina","Tilde operator":"Vlnovka","Approximately equal to":"Aproximace","Almost equal to":"ČásteÄnÄ› rovný","Not equal to":"Nerovná se","Identical to":"Identický k","Element of":"Patřà / Je souÄástÃ","Not an element of":"Nepatřà / Nenà souÄástÃ","Contains as member":"Obsahuje prvek","N-ary product":"Znak cyklického násobenÃ","Logical and":"Logický AND","Logical or":"Logický OR","Not sign":"Nenà rovný",Intersection:"PrůseÄÃk / Průnik",Union:"SjednocenÃ","Partial differential":"Parciálnà diference","For all":"Pro vÅ¡echny prvky v množinÄ›","There exists":"Existuje v množinÄ›","Empty set":"Prázdná množina",Nabla:"Nabla","Asterisk operator":"HvÄ›zdiÄka / násobenÃ","Proportional to":"ÚmÄ›rný k",Angle:"Úhel","Vulgar fraction one quarter":"Jedna Ätvrtina","Vulgar fraction one half":"Polovina","Vulgar fraction three quarters":"TÅ™i Ätvrtiny","Single left-pointing angle quotation mark":"Å ipka ukazujÃcà do leva","Single right-pointing angle quotation mark":"Å ipka ukazujÃcà do prava","Left-pointing double angle quotation mark":"Dvojitá Å¡ipka ukazujÃcà do leva","Right-pointing double angle quotation mark":"Dvojitá Å¡ipka ukazujÃcà do prava","Left single quotation mark":"Levá uvozovka","Right single quotation mark":"Pravá uvozovka","Left double quotation mark":"Levá dvojitá uvozovka","Right double quotation mark":"Pravá dvojitá uvozovka","Single low-9 quotation mark":"Spodnà uvozovka","Double low-9 quotation mark":"Dvojitá spodnà uvozovka","Inverted exclamation mark":"Obrácený vykÅ™iÄnÃk","Inverted question mark":"Obrácený otaznÃk","Two dot leader":"Horizontálnà dvojteÄka","Horizontal ellipsis":"TeÄky","Double dagger":"DvojkřÞ","Per mille sign":"Promile","Per ten thousand sign":"Na deset tisÃc","Double exclamation mark":"Dvojitý vykÅ™iÄnÃk","Question exclamation mark":"OtaznÃk a vykÅ™iÄnÃk","Exclamation question mark":"VykÅ™iÄnÃk a otaznÃk","Double question mark":"Dvojitý otaznÃk","Copyright sign":"Copyright","Registered sign":"Registrovaný","Trade mark sign":"Ochranná známka","Section sign":"Sekce","Paragraph sign":"Odstavec","Reversed paragraph sign":"Obrácený znak odstavce","Character categories":"Kategorie znaků",Styles:"Styly","Multiple styles":"VÃce stylů","Block styles":"Styly bloků","Text styles":"Styly textu","Insert table":"Vložit tabulku","Header column":"Sloupec záhlavÃ","Insert column left":"Vložit sloupec vlevo","Insert column right":"Vložit sloupec vpravo","Delete column":"Smazat sloupec","Select column":"Vybrat sloupec",Column:"Sloupec","Header row":"Řádek záhlavÃ","Insert row below":"Vložit řádek pod","Insert row above":"Vložit řádek pÅ™ed","Delete row":"Smazat řádek","Select row":"Vybrat řádek",Row:"Řádek","Merge cell up":"SlouÄit s buňkou nad","Merge cell right":"SlouÄit s buňkou vpravo","Merge cell down":"SlouÄit s buňkou pod","Merge cell left":"SlouÄit s buňkou vlevo","Split cell vertically":"RozdÄ›lit buňky vertikálnÄ›","Split cell horizontally":"RozdÄ›lit buňky horizontálnÄ›","Merge cells":"SlouÄit buňky","Table toolbar":"Panel nástrojů tabulky","Table properties":"Vlastnosti tabulky","Cell properties":"Vlastnosti buňky",Border:"Okraj",Style:"Styl",Width:"Å ÃÅ™ka",Height:"Výška",Color:"Barva",Background:"PozadÃ",Padding:"VnitÅ™nà okraj",Dimensions:"RozmÄ›ry","Table cell text alignment":"Zarovnánà textu buňky tabulky",Alignment:"ZarovnánÃ","Horizontal text alignment toolbar":"Horizontálnà zarovnánà textu v panelu","Vertical text alignment toolbar":"Vertikálnà zarovnánà textu v panelu","Table alignment toolbar":"Panel zarovnánà tabulky",None:"Žádná",Solid:"Plná",Dotted:"TeÄkovaná",Dashed:"Čárkovaná",Double:"Dvojitá",Groove:"Drážkovaná",Ridge:"Rámovaná",Inset:"Vložená zevnitÅ™",Outset:"Vložená zvenku","Align cell text to the left":"Zarovnat text buňky doleva","Align cell text to the center":"Zarovnat text buňky na stÅ™ed","Align cell text to the right":"Zarovnat text buňky doprava","Justify cell text":"Zarovnat text buňky z obou stran","Align cell text to the top":"Zarovnat text buňky nahoru","Align cell text to the middle":"Zarovnat text buňky na stÅ™ed","Align cell text to the bottom":"Zarovnat text buňky dolů","Align table to the left":"Zarovnat tabulku doleva","Center table":"Centrovat tabulku","Align table to the right":"Zarovnat tabulku doprava","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Barva má nesprávný formát. Zkuste \"#FF0000\", \"rgb(255,0,0)\" nebo \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Hodnota je nesprávná. Zkuste \"10px\", \"2em\" nebo jednoduÅ¡e \"2\".","Color picker":"Vybrat barvu","Toggle caption off":"Vypnout titulek","Toggle caption on":"Zapnout titulek","Enter table caption":"Zadejte titulek tabulky","Rich Text Editor":"Textový editor","Editor editing area: %0":"EditaÄnà oblast editoru: %0","Edit block":"Upravit blok","Click to edit block":"KliknutÃm upravÃte blok","Drag to move":"PÅ™esuňte potaženÃm",Next:"DalÅ¡Ã",Previous:"PÅ™edchozÃ","Editor toolbar":"Panel nástrojů editoru","Dropdown toolbar":"Rozbalovacà panel nástrojů",Black:"ÄŒerná","Dim grey":"TmavÄ› Å¡edá",Grey:"Å edá","Light grey":"SvÄ›tle Å¡edá",White:"BÃlá",Red:"ÄŒervená",Orange:"Oranžová",Yellow:"Žlutá","Light green":"SvÄ›tle zelená",Green:"Zelená",Aquamarine:"AkvamarÃnová",Turquoise:"Tyrkysová","Light blue":"SvÄ›tle modrá",Blue:"Modrá",Purple:"Fialová","Editor block content toolbar":"Panel nástrojů obsahu bloku editoru","Editor contextual toolbar":"Kontextový panel nástrojů editoru",HEX:"HEX",Accept:"PÅ™ijmout","No results found":"Nenalezeny žádné výsledky","No searchable items":"Žádné položky k vyhledánÃ","Editor dialog":"Dialog editoru",Close:"ZavÅ™Ãt",Undo:"ZpÄ›t",Redo:"Znovu","Upload in progress":"ProbÃhá nahrávánÃ","Widget toolbar":"Panel nástrojů ovládacÃho prvku","Insert paragraph before block":"Vložte odstavec pÅ™ed blok","Insert paragraph after block":"Vložte odstavec za blok","Press Enter to type after or press Shift + Enter to type before the widget":"StisknutÃm klávesy Enter můžete psát za widgetem a stisknutÃm Shift + Enter pÅ™ed nÃm","Words: %0":"PoÄet slov: %0","Characters: %0":"PoÄet znaků: %0"} );l.getPluralForm=function(n){return (n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/da.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/da.js index e07ba79b8de9a6ed98f205b2009d703a1a55d82a..6f469344d967b0b1e92593bc69f2704d5be6a09f 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/da.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/da.js @@ -1 +1 @@ -(function(d){ const l = d['da'] = d['da'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Justér venstre","Align right":"Justér højre","Align center":"Justér center",Justify:"Justér","Text alignment":"Tekstjustering","Text alignment toolbar":"Tekstjustering værktøjslinje",Bold:"Fed",Italic:"Kursiv",Underline:"Understreget",Code:"Kode",Strikethrough:"Gennemstreg",Subscript:"Sænket skrift",Superscript:"Hævet skrift","Block quote":"Blot citat","Insert code block":"Indsæt kodeblok","Plain text":"Plain tekst",Cancel:"Annullér",Clear:"Ryd","Remove color":"Fjern farve","Restore default":"Nulstil",Save:"Gem","Show more items":"Vis flere emner","%0 of %1":"%0 af %1","Cannot upload file:":"Kan ikke uploade fil:","Rich Text Editor. Editing area: %0":"Rich text redigering. RedigeringsomrÃ¥de: %0","Insert with file manager":"Indsæt med filhÃ¥ndtering","Replace with file manager":"Udskift med filhÃ¥ndtering","Insert image with file manager":"Indsæt billede med filhÃ¥ndtering","Replace image with file manager":"Udskift billede med filhÃ¥ndtering","Find and replace":"Søg og erstat","Find in text…":"Find i tekst...",Find:"Find","Previous result":"Forrige","Next result":"Næste",Replace:"Erstat","Replace all":"Erstatte alle","Match case":"Skeln mellem store og smÃ¥ bogstaver","Whole words only":"Kun hele ord","Replace with…":"Erstat med...","Text to find must not be empty.":"Tekst der skal findes, mÃ¥ ikke være tom.","Tip: Find some text first in order to replace it.":"Tip: Find først noget tekst, for at erstatte det.","Advanced options":"Avancerede indstillinger",Paragraph:"Afsnit",Heading:"Overskrift","Choose heading":"Vælg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"Overskrift 4","Heading 5":"Overskrift 5","Heading 6":"Overskrift 6","Type your title":"Skriv din titel","Type or paste your content here.":"Skriv eller indsæt dit indhold her.","Horizontal line":"Horisontal linje","HTML object":"HTML-objekt","Increase indent":"Forøg indrykning","Decrease indent":"Formindsk indrykning",Unlink:"Fjern link",Link:"Link","Link URL":"Link URL","Link image":"Link-billede","Edit link":"Redigér link","Open link in new tab":"Ã…ben link i ny fane","This link has no URL":"Dette link har ingen URL","Open in a new tab":"Ã…ben i ny fane",Downloadable:"Kan downloades","Numbered List":"Opstilling med tal","Bulleted List":"Punktopstilling","To-do List":"To-do liste","Bulleted list styles toolbar":"Værktøjslinje til punktopdelt liste","Numbered list styles toolbar":"Værktøjslinje til nummereret listestil","Toggle the disc list style":"SlÃ¥ listestilen disk til og fra","Toggle the circle list style":"SlÃ¥ listestilen cirkel til og fra","Toggle the square list style":"SlÃ¥ listestilen firkantet til og fra","Toggle the decimal list style":"SlÃ¥ listestilen decimal til og fra","Toggle the decimal with leading zero list style":"SlÃ¥ listestilen decimal med nul i starten til og fra","Toggle the lower–roman list style":"SlÃ¥ listestilen romertal med smÃ¥ bogstaver til","Toggle the upper–roman list style":"SlÃ¥ listestilen romertal med store bogstaver til","Toggle the lower–latin list style":"SlÃ¥ listestilen latinsk med smÃ¥ bogstaver til","Toggle the upper–latin list style":"SlÃ¥ listestilen latinsk med store bogstaver til",Disc:"Disk",Circle:"Cirkel",Square:"Firkant",Decimal:"Decimal","Decimal with leading zero":"Decimal med nul i starten","Lower–roman":"Romertal med smÃ¥ bogstaver","Upper-roman":"Romertal med store bogstaver","Lower-latin":"Latinsk med smÃ¥ bogstaver","Upper-latin":"Latinsk med store bogstaver","List properties":"Listeegenskaber","Start at":"Start ved","Start index must be greater than 0.":"Startindeks skal være større end 0.","Reversed order":"Omvendt rækkefølge","Remove Format":"Fjern format","Select all":"Vælg alt","Show blocks":"Vis blokke",Source:"Kilde","Special characters":"Specialtegn",All:"Alle",Arrows:"Pile",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematisk",Text:"Tekst","leftwards simple arrow":"venstrepegende simpel pil","rightwards simple arrow":"højrepegende simpel pil","upwards simple arrow":"opadgÃ¥ende simpel pil","downwards simple arrow":"nedadgÃ¥ende simpel pil","leftwards double arrow":"venstrepegende dobbeltpil","rightwards double arrow":"højrepegende dobbeltpil","upwards double arrow":"Opadpegende dobbeltpil","downwards double arrow":"nedadpegende dobbeltpil","leftwards dashed arrow":"venstrepegende stiplet pil","rightwards dashed arrow":"højrepegende stiplet pil","upwards dashed arrow":"opadpegende stiplet pil","downwards dashed arrow":"nedadpegende stiplet pil","leftwards arrow to bar":"venstrepegende pil mod bjælke","rightwards arrow to bar":"højrepegende pil mod bjælke","upwards arrow to bar":"opadpegende pil mod bjælke","downwards arrow to bar":"nedadpegende pil mod bjælke","up down arrow with base":"Op- og nedadpegende pil med streg under","back with leftwards arrow above":"tilbage med venstrepegende pil over","end with leftwards arrow above":"afslut med venstrepegende pil over","on with exclamation mark with left right arrow above":"til med udrÃ¥bstegn med pil mod venstre og højre over","soon with rightwards arrow above":"snart med højrepegende pil over","top with upwards arrow above":"top med opadpegende pil over","Dollar sign":"Dollartegn","Euro sign":"Eurotegn","Yen sign":"Yen-tegn","Pound sign":"Pund-tegn","Cent sign":"Cent-tegn","Euro-currency sign":"Euro-valutategn","Colon sign":"Kolontegn","Cruzeiro sign":"Cruzeiro-tegn","French franc sign":"Franske franc-tegn","Lira sign":"Lira-tegn","Currency sign":"Valuta-tegn","Bitcoin sign":"Bitcoin-tegn","Mill sign":"Mill-tegn","Naira sign":"Naira-tegn","Peseta sign":"Peseta-tegn","Rupee sign":"Rupee-tegn","Won sign":"Won-tegn","New sheqel sign":"Ny Shekel-tegn","Dong sign":"Dong-tegn","Kip sign":"Kip-tegn","Tugrik sign":"Tugrik-tegn","Drachma sign":"Drakmer-tegn","German penny sign":"Tysk penny-tegn","Peso sign":"Peso-tegn","Guarani sign":"Guarani-tegn","Austral sign":"Austral-tegn","Hryvnia sign":"Hryvnia-tegn","Cedi sign":"Cedi-tegn","Livre tournois sign":"Livre tournois-tegn","Spesmilo sign":"Spesmilo-tegn","Tenge sign":"Tenge-tegn","Indian rupee sign":"Indisk rupee-tegn","Turkish lira sign":"Tyrkisk lira-tegn","Nordic mark sign":"Nordisk mark-tegn","Manat sign":"Manat-tegn","Ruble sign":"Rubel-tegn","Latin capital letter a with macron":"Latinsk stort bogstav a med macron","Latin small letter a with macron":"Latinsk lille bogstav a med macron","Latin capital letter a with breve":"Latinsk stort bogstav a med en breve","Latin small letter a with breve":"Latinsk lille bogstav a med en breve","Latin capital letter a with ogonek":"Latinsk stort bogstav a med ogonek","Latin small letter a with ogonek":"Latinsk lille bogstav a med ogonek","Latin capital letter c with acute":"Latinsk stort bogstav c med accent","Latin small letter c with acute":"Latinsk lille bogstav c med accent","Latin capital letter c with circumflex":"Latinsk stort bogstav c med cirkumfleks","Latin small letter c with circumflex":"Latinsk ille bogstav c med cirkumfleks","Latin capital letter c with dot above":"Latinsk stort bogstav c med prik over","Latin small letter c with dot above":"Latinsk lille bogstav c med prik over","Latin capital letter c with caron":"Latinsk stort bogstav c med caron","Latin small letter c with caron":"Latinsk lille bogstav c med caron","Latin capital letter d with caron":"Latinsk stort bogstav d med caron","Latin small letter d with caron":"Latinsk lille bogstav d med caron","Latin capital letter d with stroke":"Latinsk stort bogstav d med streg","Latin small letter d with stroke":"Latinsk lille bogstav d med streg","Latin capital letter e with macron":"Latinsk stort bogstav e med macron","Latin small letter e with macron":"Latinsk lille bogstav e med macron","Latin capital letter e with breve":"Latinsk stort bogstav e med en breve","Latin small letter e with breve":"Latinsk lille bogstav e med en breve","Latin capital letter e with dot above":"Latinsk stort bogstav e med en prik over","Latin small letter e with dot above":"Latinsk lille bogstav e med en prik over","Latin capital letter e with ogonek":"Latinsk stort bogstav e med ogonek","Latin small letter e with ogonek":"Latinsk lille bogstav e med ogonek","Latin capital letter e with caron":"Latinsk stort bogstav e med caron","Latin small letter e with caron":"Latinsk lille bogstav e med caron","Latin capital letter g with circumflex":"Latinsk stort bogstav g med cirkumfleks","Latin small letter g with circumflex":"Latinsk lille bogstav g med cirkumfleks","Latin capital letter g with breve":"Latinsk stort bogstav g med en breve","Latin small letter g with breve":"Latinsk lille bogstav g med en breve","Latin capital letter g with dot above":"Latinsk stort bogstav g med en prik over","Latin small letter g with dot above":"Latinsk lille bogstav g med en prik over","Latin capital letter g with cedilla":"Latinsk stort bogstav g med cedille","Latin small letter g with cedilla":"Latinsk lille bogstav g med cedille","Latin capital letter h with circumflex":"Latinsk stort bogstav h med cirkumfleks","Latin small letter h with circumflex":"Latinsk lille bogstav h med cirkumfleks","Latin capital letter h with stroke":"Latinsk stort bogstav h med streg","Latin small letter h with stroke":"Latinsk lille bogstav h med streg","Latin capital letter i with tilde":"Latinsk stort bogstav i med tilde","Latin small letter i with tilde":"Latinsk lille bogstav i med tilde","Latin capital letter i with macron":"Latinsk stort bogstav i med macron","Latin small letter i with macron":"Latinsk lille bogstav i med macron","Latin capital letter i with breve":"Latinsk stort bogstav i med en breve","Latin small letter i with breve":"Latinsk lille bogstav i med en breve","Latin capital letter i with ogonek":"Latinsk stort bogstav i med ogonek","Latin small letter i with ogonek":"Latinsk lille bogstav i med ogonek","Latin capital letter i with dot above":"Latinsk stort bogstav i med en prik over","Latin small letter dotless i":"Latinsk lille i uden prik","Latin capital ligature ij":"Latinsk stort sammensat ij","Latin small ligature ij":"Latinsk lille sammensat ij","Latin capital letter j with circumflex":"Latinsk stort bogstav j med cirkumfleks","Latin small letter j with circumflex":"Latinsk lille bogstav j med cirkumfleks","Latin capital letter k with cedilla":"Latinsk stort bogstav k med cedille","Latin small letter k with cedilla":"Latinsk lille bogstav k med cedille","Latin small letter kra":"Latinsk lille bogstav kra","Latin capital letter l with acute":"Latinsk stort bogstav l med akut accent","Latin small letter l with acute":"Latinsk lille bogstav l med akut accent","Latin capital letter l with cedilla":"Latinsk stort bogstav l med cedille","Latin small letter l with cedilla":"Latinsk lille bogstav l med cedille","Latin capital letter l with caron":"Latinsk stort bogstav l med caron","Latin small letter l with caron":"Latinsk lille bogstav l med caron","Latin capital letter l with middle dot":"Latinsk stort bogstav l med prik i midten","Latin small letter l with middle dot":"Latinsk lille bogstav l med prik i midten","Latin capital letter l with stroke":"Latinsk stort bogstav l med streg","Latin small letter l with stroke":"Latinsk lille bogstav l med streg","Latin capital letter n with acute":"Latinsk stort bogstav n med akut accent","Latin small letter n with acute":"Latinsk lille bogstav n med akut accent","Latin capital letter n with cedilla":"Latinsk stort bogstav n med cedille","Latin small letter n with cedilla":"Latinsk lille bogstav n med cedille","Latin capital letter n with caron":"Latinsk stort bogstav n med caron","Latin small letter n with caron":"Latinsk lille bogstav n med caron","Latin small letter n preceded by apostrophe":"Latinsk lille bogstav n med apostrof inden ","Latin capital letter eng":"Latinsk stort bogstav eng","Latin small letter eng":"Latinsk lille bogstav eng","Latin capital letter o with macron":"Latinsk stort bogstav o med macron","Latin small letter o with macron":"Latinsk lille bogstav o med macron","Latin capital letter o with breve":"Latinsk stort bogstav o med en breve","Latin small letter o with breve":"Latinsk lille bogstav o med en breve","Latin capital letter o with double acute":"Latinsk stort bogstav o med dobbelt akut accent","Latin small letter o with double acute":"Latinsk lille bogstav o med dobbelt akut accent","Latin capital ligature oe":"Latinsk stort sammensat oe","Latin small ligature oe":"Latinsk lille sammensat oe","Latin capital letter r with acute":"Latinsk stort bogstav r med akut accent","Latin small letter r with acute":"Latinsk lille bogstav r med akut accent","Latin capital letter r with cedilla":"Latinsk stort bogstav r med cedille","Latin small letter r with cedilla":"Latinsk lille bogstav r med cedille","Latin capital letter r with caron":"Latinsk stort bogstav r med caron","Latin small letter r with caron":"Latinsk lille bogstav r med caron","Latin capital letter s with acute":"Latinsk stort bogstav s med akut accent","Latin small letter s with acute":"Latinsk lille bogstav s med akut accent","Latin capital letter s with circumflex":"Latinsk stort bogstav s med cirkumfleks","Latin small letter s with circumflex":"Latinsk lille bogstav s med cirkumfleks","Latin capital letter s with cedilla":"Latinsk stort bogstav s med cedille","Latin small letter s with cedilla":"Latinsk lille bogstav s med cedille","Latin capital letter s with caron":"Latinsk stort bogstav s med caron","Latin small letter s with caron":"Latinsk lille bogstav s med caron","Latin capital letter t with cedilla":"Latinsk stort bogstav t med cedille","Latin small letter t with cedilla":"Latinsk lille bogstav t med cedille","Latin capital letter t with caron":"Latinsk stort bogstav t med caron","Latin small letter t with caron":"Latinsk lille bogstav t med caron","Latin capital letter t with stroke":"Latinsk stort bogstav t med streg","Latin small letter t with stroke":"Latinsk lille bogstav t med streg","Latin capital letter u with tilde":"Latinsk stort bogstav u med tilde","Latin small letter u with tilde":"Latinsk lille bogstav u med tilde","Latin capital letter u with macron":"Latinsk stort bogstav u med macron","Latin small letter u with macron":"Latinsk lille bogstav u med macron","Latin capital letter u with breve":"Latinsk stort bogstav u med en breve","Latin small letter u with breve":"Latinsk lille bogstav u med en breve","Latin capital letter u with ring above":"Latinsk stort bogstav u med ring over","Latin small letter u with ring above":"Latinsk lille bogstav u med ring over","Latin capital letter u with double acute":"Latinsk lille bogstav u med dobbelt akut accent","Latin small letter u with double acute":"Latinsk stort bogstav u med dobbelt akut accent","Latin capital letter u with ogonek":"Latinsk stort bogstav u med ogonek","Latin small letter u with ogonek":"Latinsk lille bogstav u med ogonek","Latin capital letter w with circumflex":"Latinsk stort bogstav w med cirkumfleks","Latin small letter w with circumflex":"Latinsk lille bogstav w med cirkumfleks","Latin capital letter y with circumflex":"Latinsk stort bogstav y med cirkumfleks","Latin small letter y with circumflex":"Latinsk lille bogstav y med cirkumfleks","Latin capital letter y with diaeresis":"Latinsk stort bogstav y med trema","Latin capital letter z with acute":"Latinsk stort bogstav z med akut accent","Latin small letter z with acute":"Latinsk lille bogstav z med akut accent","Latin capital letter z with dot above":"Latinsk stort bogstav z med en prik over","Latin small letter z with dot above":"Latinsk lille bogstav z med en prik over","Latin capital letter z with caron":"Latinsk stort bogstav z med caron","Latin small letter z with caron":"Latinsk lille bogstav z med caron","Latin small letter long s":"Latinsk lille bogstav langt s","Less-than sign":"Mindre end-tegn","Greater-than sign":"Større end-tegn","Less-than or equal to":"Mindre end eller lig med-tegn","Greater-than or equal to":"Større end eller lig med-tegn","En dash":"En-bindestreg","Em dash":"Em-bindestreg",Macron:"Macron",Overline:"Streg over","Degree sign":"Grad-tegn","Minus sign":"Minus-tegn","Plus-minus sign":"Plus-minus-tegn","Division sign":"Divisionstegn","Fraction slash":"Brøk-tegn","Multiplication sign":"Gangetegn","Latin small letter f with hook":"Latinsk lille bogstav f med krog",Integral:"Integral","N-ary summation":"Sum-tegn",Infinity:"Uendelig","Square root":"Kvadratrod","Tilde operator":"Tilde-operator","Approximately equal to":"Nogenlunde lig med","Almost equal to":"Næsten lig med","Not equal to":"Ikke lig med","Identical to":"Lig med","Element of":"Element af","Not an element of":"Ikke et element af","Contains as member":"Element i","N-ary product":"Sumprodukttegn","Logical and":"Logisk og","Logical or":"Logisk eller","Not sign":"Ikke-tegn",Intersection:"Intersektion",Union:"Union","Partial differential":"Delvis differential","For all":"For alle","There exists":"Der eksisterer","Empty set":"Tomt sæt",Nabla:"Nabla","Asterisk operator":"Asterisk-operator","Proportional to":"Proportionelt med",Angle:"Vinkel","Vulgar fraction one quarter":"En kvart","Vulgar fraction one half":"En halv","Vulgar fraction three quarters":"Trekvart","Single left-pointing angle quotation mark":"Enkelt venstrepegende vinkel citationstegn","Single right-pointing angle quotation mark":"Enkelt højrepegende vinkel citationstegn","Left-pointing double angle quotation mark":"Venstrepegende dobbeltvinklet citationstegn","Right-pointing double angle quotation mark":"Højrepegende dobbeltvinklet citationstegn","Left single quotation mark":"Venstre enkelt citationstegn","Right single quotation mark":"Højre enkelt citationstegn","Left double quotation mark":"Venstre dobbelt citationstegn","Right double quotation mark":"Højre dobbelt citationstegn","Single low-9 quotation mark":"Enkelt lav-9 citationstegn","Double low-9 quotation mark":"Dobbelt lav-9 citationstegn","Inverted exclamation mark":"Omvendt udrÃ¥bstegn","Inverted question mark":"Omvendt spørgsmÃ¥lstegn","Two dot leader":"Dobbelt punktum","Horizontal ellipsis":"Horisontal ellipse","Double dagger":"Dobbeltobelisk","Per mille sign":"Promilletegn","Per ten thousand sign":"Per titusind-tegn","Double exclamation mark":"Dobbelt udrÃ¥bstegn","Question exclamation mark":"SpørgsmÃ¥lstegn-udrÃ¥bstegn","Exclamation question mark":"UdrÃ¥bstegn-spørgsmÃ¥lstegn","Double question mark":"Dobbelt spørgsmÃ¥lstegn","Copyright sign":"Copyright-tegnb","Registered sign":"Registreret-tegn","Trade mark sign":"Varemærke-tegn","Section sign":"Sektionstegn","Paragraph sign":"Paragraftegn","Reversed paragraph sign":"Omvendt paragraftegn","Character categories":"Tegnkategorier",Styles:"Stile","Multiple styles":"Flere stile","Block styles":"Blokstile","Text styles":"Tekststile","Insert table":"Indsæt tabel","Header column":"Headerkolonne","Insert column left":"Indsæt kolonne venstre","Insert column right":"Indsæt kolonne højre","Delete column":"Slet kolonne","Select column":"Vælg kolonne",Column:"Kolonne","Header row":"Headerrække","Insert row below":"Indsæt header under","Insert row above":"Indsæt header over","Delete row":"Slet række","Select row":"Vælg række",Row:"Række","Merge cell up":"Flet celler op","Merge cell right":"Flet celler højre","Merge cell down":"Flet celler ned","Merge cell left":"Flet celler venstre","Split cell vertically":"Del celle vertikalt","Split cell horizontally":"Del celle horisontalt","Merge cells":"Flet celler","Table toolbar":"Tabel værktøjslinje","Table properties":"Tabelegenskaber","Cell properties":"Celleegenskaber",Border:"Ramme",Style:"Stil",Width:"Bredde",Height:"Højde",Color:"Farve",Background:"Baggrund",Padding:"Fyld",Dimensions:"Dimensioner","Table cell text alignment":"Tabelcelle tekstjustering",Alignment:"Justering","Horizontal text alignment toolbar":"Horisontal tekstjustering værktøjslinje","Vertical text alignment toolbar":"Vertikal tekstjustering værktøjslinje","Table alignment toolbar":"Tabeljustering værktøjslinje",None:"Ingen",Solid:"Massiv",Dotted:"Stiplet (prik)",Dashed:"Stiplet (streg)",Double:"Dobbel",Groove:"Not",Ridge:"Kam",Inset:"Forsænket",Outset:"Fra starten","Align cell text to the left":"Justér tekstcelle til venstre","Align cell text to the center":"Justér tekstcelle centreret","Align cell text to the right":"Justér tekstcelle til højre","Justify cell text":"Justér tekstcelle","Align cell text to the top":"Justér tekstcelle til top","Align cell text to the middle":"Justér tekstcelle til midten","Align cell text to the bottom":"Justér tekstcelle til bunden","Align table to the left":"Justér tabel til venstre","Center table":"Centrér tabel","Align table to the right":"Justér tabel til højre","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Farven er ugyldig. Prøv \"#FF0000\" eller \"rgb(255,0,0)\" eller \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Værdien er ugyldig. Prøv \"10px\" eller \"2em\" eller ganske enkelt \"2\".","Color picker":"Farvevælger","Toggle caption off":"SlÃ¥ billedtekst fra","Toggle caption on":"SlÃ¥ billedtekst til","Enter table caption":"Indtast tabeltekst","Rich Text Editor":"Wysiwyg editor","Editor editing area: %0":"RedigeringsomrÃ¥de: %0","Edit block":"Redigér blok","Click to edit block":"Klik for at redigere blok","Drag to move":"Træk for at flytte",Next:"Næste",Previous:"Forrige","Editor toolbar":"Editor værktøjslinje","Dropdown toolbar":"Dropdown værktøjslinje",Black:"Sort","Dim grey":"Dunkel grÃ¥",Grey:"GrÃ¥","Light grey":"Lys grÃ¥",White:"Hvid",Red:"Rød",Orange:"Orange",Yellow:"Gyl","Light green":"Lys grøn",Green:"Grøn",Aquamarine:"MarineblÃ¥",Turquoise:"Turkis","Light blue":"Lys blÃ¥",Blue:"BlÃ¥",Purple:"Lilla","Editor block content toolbar":"Redigeringskasse indholdsværktøjslinje","Editor contextual toolbar":"Kontekstuel værktøjslinje til redigeringsprogram",HEX:"Hex",Accept:"Accepter","No results found":"Ingen resultater blev fundet","No searchable items":"Ingen søgbare artikler","Editor dialog":"Editor-dialog",Close:"Luk",Undo:"Fortryd",Redo:"Gentag","Upload in progress":"Upload i gang","Widget toolbar":"Widget værktøjslinje","Insert paragraph before block":"Indsæt paragraf før blok","Insert paragraph after block":"Indsæt paragraf efter blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tryk pÃ¥ Enter for at skrive efter, eller tryk pÃ¥ Shift + Enter for at skrive før widgetten","Words: %0":"Ord: %0","Characters: %0":"Karakterer: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['da'] = d['da'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Justér venstre","Align right":"Justér højre","Align center":"Justér center",Justify:"Justér","Text alignment":"Tekstjustering","Text alignment toolbar":"Tekstjustering værktøjslinje",Bold:"Fed",Italic:"Kursiv",Underline:"Understreget",Code:"Kode",Strikethrough:"Gennemstreg",Subscript:"Sænket skrift",Superscript:"Hævet skrift","Block quote":"Blot citat","Insert code block":"Indsæt kodeblok","Plain text":"Plain tekst",Cancel:"Annullér",Clear:"Ryd","Remove color":"Fjern farve","Restore default":"Nulstil",Save:"Gem","Show more items":"Vis flere emner","%0 of %1":"%0 af %1","Cannot upload file:":"Kan ikke uploade fil:","Rich Text Editor. Editing area: %0":"Rich text redigering. RedigeringsomrÃ¥de: %0","Insert with file manager":"Indsæt med filhÃ¥ndtering","Replace with file manager":"Udskift med filhÃ¥ndtering","Insert image with file manager":"Indsæt billede med filhÃ¥ndtering","Replace image with file manager":"Udskift billede med filhÃ¥ndtering","Find and replace":"Søg og erstat","Find in text…":"Find i tekst...",Find:"Find","Previous result":"Forrige","Next result":"Næste",Replace:"Erstat","Replace all":"Erstatte alle","Match case":"Skeln mellem store og smÃ¥ bogstaver","Whole words only":"Kun hele ord","Replace with…":"Erstat med...","Text to find must not be empty.":"Tekst der skal findes, mÃ¥ ikke være tom.","Tip: Find some text first in order to replace it.":"Tip: Find først noget tekst, for at erstatte det.","Advanced options":"Avancerede indstillinger","Font Size":"Skriftstørrelse",Tiny:"Lillebitte",Small:"Lille",Big:"Stor",Huge:"Kæmpe","Font Family":"Skriftfamilie",Default:"Standard","Font Color":"Skriftfarve","Font Background Color":"Skrift baggrundsfarve","Document colors":"Dokumentfarve",Paragraph:"Afsnit",Heading:"Overskrift","Choose heading":"Vælg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"Overskrift 4","Heading 5":"Overskrift 5","Heading 6":"Overskrift 6","Type your title":"Skriv din titel","Type or paste your content here.":"Skriv eller indsæt dit indhold her.","Horizontal line":"Horisontal linje","HTML object":"HTML-objekt","Increase indent":"Forøg indrykning","Decrease indent":"Formindsk indrykning",Unlink:"Fjern link",Link:"Link","Link URL":"Link URL","Link image":"Link-billede","Edit link":"Redigér link","Open link in new tab":"Ã…ben link i ny fane","This link has no URL":"Dette link har ingen URL","Open in a new tab":"Ã…ben i ny fane",Downloadable:"Kan downloades","Numbered List":"Opstilling med tal","Bulleted List":"Punktopstilling","To-do List":"To-do liste","Bulleted list styles toolbar":"Værktøjslinje til punktopdelt liste","Numbered list styles toolbar":"Værktøjslinje til nummereret listestil","Toggle the disc list style":"SlÃ¥ listestilen disk til og fra","Toggle the circle list style":"SlÃ¥ listestilen cirkel til og fra","Toggle the square list style":"SlÃ¥ listestilen firkantet til og fra","Toggle the decimal list style":"SlÃ¥ listestilen decimal til og fra","Toggle the decimal with leading zero list style":"SlÃ¥ listestilen decimal med nul i starten til og fra","Toggle the lower–roman list style":"SlÃ¥ listestilen romertal med smÃ¥ bogstaver til","Toggle the upper–roman list style":"SlÃ¥ listestilen romertal med store bogstaver til","Toggle the lower–latin list style":"SlÃ¥ listestilen latinsk med smÃ¥ bogstaver til","Toggle the upper–latin list style":"SlÃ¥ listestilen latinsk med store bogstaver til",Disc:"Disk",Circle:"Cirkel",Square:"Firkant",Decimal:"Decimal","Decimal with leading zero":"Decimal med nul i starten","Lower–roman":"Romertal med smÃ¥ bogstaver","Upper-roman":"Romertal med store bogstaver","Lower-latin":"Latinsk med smÃ¥ bogstaver","Upper-latin":"Latinsk med store bogstaver","List properties":"Listeegenskaber","Start at":"Start ved","Start index must be greater than 0.":"Startindeks skal være større end 0.","Reversed order":"Omvendt rækkefølge","Remove Format":"Fjern format","Select all":"Vælg alt","Show blocks":"Vis blokke",Source:"Kilde","Special characters":"Specialtegn",All:"Alle",Arrows:"Pile",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematisk",Text:"Tekst","leftwards simple arrow":"venstrepegende simpel pil","rightwards simple arrow":"højrepegende simpel pil","upwards simple arrow":"opadgÃ¥ende simpel pil","downwards simple arrow":"nedadgÃ¥ende simpel pil","leftwards double arrow":"venstrepegende dobbeltpil","rightwards double arrow":"højrepegende dobbeltpil","upwards double arrow":"Opadpegende dobbeltpil","downwards double arrow":"nedadpegende dobbeltpil","leftwards dashed arrow":"venstrepegende stiplet pil","rightwards dashed arrow":"højrepegende stiplet pil","upwards dashed arrow":"opadpegende stiplet pil","downwards dashed arrow":"nedadpegende stiplet pil","leftwards arrow to bar":"venstrepegende pil mod bjælke","rightwards arrow to bar":"højrepegende pil mod bjælke","upwards arrow to bar":"opadpegende pil mod bjælke","downwards arrow to bar":"nedadpegende pil mod bjælke","up down arrow with base":"Op- og nedadpegende pil med streg under","back with leftwards arrow above":"tilbage med venstrepegende pil over","end with leftwards arrow above":"afslut med venstrepegende pil over","on with exclamation mark with left right arrow above":"til med udrÃ¥bstegn med pil mod venstre og højre over","soon with rightwards arrow above":"snart med højrepegende pil over","top with upwards arrow above":"top med opadpegende pil over","Dollar sign":"Dollartegn","Euro sign":"Eurotegn","Yen sign":"Yen-tegn","Pound sign":"Pund-tegn","Cent sign":"Cent-tegn","Euro-currency sign":"Euro-valutategn","Colon sign":"Kolontegn","Cruzeiro sign":"Cruzeiro-tegn","French franc sign":"Franske franc-tegn","Lira sign":"Lira-tegn","Currency sign":"Valuta-tegn","Bitcoin sign":"Bitcoin-tegn","Mill sign":"Mill-tegn","Naira sign":"Naira-tegn","Peseta sign":"Peseta-tegn","Rupee sign":"Rupee-tegn","Won sign":"Won-tegn","New sheqel sign":"Ny Shekel-tegn","Dong sign":"Dong-tegn","Kip sign":"Kip-tegn","Tugrik sign":"Tugrik-tegn","Drachma sign":"Drakmer-tegn","German penny sign":"Tysk penny-tegn","Peso sign":"Peso-tegn","Guarani sign":"Guarani-tegn","Austral sign":"Austral-tegn","Hryvnia sign":"Hryvnia-tegn","Cedi sign":"Cedi-tegn","Livre tournois sign":"Livre tournois-tegn","Spesmilo sign":"Spesmilo-tegn","Tenge sign":"Tenge-tegn","Indian rupee sign":"Indisk rupee-tegn","Turkish lira sign":"Tyrkisk lira-tegn","Nordic mark sign":"Nordisk mark-tegn","Manat sign":"Manat-tegn","Ruble sign":"Rubel-tegn","Latin capital letter a with macron":"Latinsk stort bogstav a med macron","Latin small letter a with macron":"Latinsk lille bogstav a med macron","Latin capital letter a with breve":"Latinsk stort bogstav a med en breve","Latin small letter a with breve":"Latinsk lille bogstav a med en breve","Latin capital letter a with ogonek":"Latinsk stort bogstav a med ogonek","Latin small letter a with ogonek":"Latinsk lille bogstav a med ogonek","Latin capital letter c with acute":"Latinsk stort bogstav c med accent","Latin small letter c with acute":"Latinsk lille bogstav c med accent","Latin capital letter c with circumflex":"Latinsk stort bogstav c med cirkumfleks","Latin small letter c with circumflex":"Latinsk ille bogstav c med cirkumfleks","Latin capital letter c with dot above":"Latinsk stort bogstav c med prik over","Latin small letter c with dot above":"Latinsk lille bogstav c med prik over","Latin capital letter c with caron":"Latinsk stort bogstav c med caron","Latin small letter c with caron":"Latinsk lille bogstav c med caron","Latin capital letter d with caron":"Latinsk stort bogstav d med caron","Latin small letter d with caron":"Latinsk lille bogstav d med caron","Latin capital letter d with stroke":"Latinsk stort bogstav d med streg","Latin small letter d with stroke":"Latinsk lille bogstav d med streg","Latin capital letter e with macron":"Latinsk stort bogstav e med macron","Latin small letter e with macron":"Latinsk lille bogstav e med macron","Latin capital letter e with breve":"Latinsk stort bogstav e med en breve","Latin small letter e with breve":"Latinsk lille bogstav e med en breve","Latin capital letter e with dot above":"Latinsk stort bogstav e med en prik over","Latin small letter e with dot above":"Latinsk lille bogstav e med en prik over","Latin capital letter e with ogonek":"Latinsk stort bogstav e med ogonek","Latin small letter e with ogonek":"Latinsk lille bogstav e med ogonek","Latin capital letter e with caron":"Latinsk stort bogstav e med caron","Latin small letter e with caron":"Latinsk lille bogstav e med caron","Latin capital letter g with circumflex":"Latinsk stort bogstav g med cirkumfleks","Latin small letter g with circumflex":"Latinsk lille bogstav g med cirkumfleks","Latin capital letter g with breve":"Latinsk stort bogstav g med en breve","Latin small letter g with breve":"Latinsk lille bogstav g med en breve","Latin capital letter g with dot above":"Latinsk stort bogstav g med en prik over","Latin small letter g with dot above":"Latinsk lille bogstav g med en prik over","Latin capital letter g with cedilla":"Latinsk stort bogstav g med cedille","Latin small letter g with cedilla":"Latinsk lille bogstav g med cedille","Latin capital letter h with circumflex":"Latinsk stort bogstav h med cirkumfleks","Latin small letter h with circumflex":"Latinsk lille bogstav h med cirkumfleks","Latin capital letter h with stroke":"Latinsk stort bogstav h med streg","Latin small letter h with stroke":"Latinsk lille bogstav h med streg","Latin capital letter i with tilde":"Latinsk stort bogstav i med tilde","Latin small letter i with tilde":"Latinsk lille bogstav i med tilde","Latin capital letter i with macron":"Latinsk stort bogstav i med macron","Latin small letter i with macron":"Latinsk lille bogstav i med macron","Latin capital letter i with breve":"Latinsk stort bogstav i med en breve","Latin small letter i with breve":"Latinsk lille bogstav i med en breve","Latin capital letter i with ogonek":"Latinsk stort bogstav i med ogonek","Latin small letter i with ogonek":"Latinsk lille bogstav i med ogonek","Latin capital letter i with dot above":"Latinsk stort bogstav i med en prik over","Latin small letter dotless i":"Latinsk lille i uden prik","Latin capital ligature ij":"Latinsk stort sammensat ij","Latin small ligature ij":"Latinsk lille sammensat ij","Latin capital letter j with circumflex":"Latinsk stort bogstav j med cirkumfleks","Latin small letter j with circumflex":"Latinsk lille bogstav j med cirkumfleks","Latin capital letter k with cedilla":"Latinsk stort bogstav k med cedille","Latin small letter k with cedilla":"Latinsk lille bogstav k med cedille","Latin small letter kra":"Latinsk lille bogstav kra","Latin capital letter l with acute":"Latinsk stort bogstav l med akut accent","Latin small letter l with acute":"Latinsk lille bogstav l med akut accent","Latin capital letter l with cedilla":"Latinsk stort bogstav l med cedille","Latin small letter l with cedilla":"Latinsk lille bogstav l med cedille","Latin capital letter l with caron":"Latinsk stort bogstav l med caron","Latin small letter l with caron":"Latinsk lille bogstav l med caron","Latin capital letter l with middle dot":"Latinsk stort bogstav l med prik i midten","Latin small letter l with middle dot":"Latinsk lille bogstav l med prik i midten","Latin capital letter l with stroke":"Latinsk stort bogstav l med streg","Latin small letter l with stroke":"Latinsk lille bogstav l med streg","Latin capital letter n with acute":"Latinsk stort bogstav n med akut accent","Latin small letter n with acute":"Latinsk lille bogstav n med akut accent","Latin capital letter n with cedilla":"Latinsk stort bogstav n med cedille","Latin small letter n with cedilla":"Latinsk lille bogstav n med cedille","Latin capital letter n with caron":"Latinsk stort bogstav n med caron","Latin small letter n with caron":"Latinsk lille bogstav n med caron","Latin small letter n preceded by apostrophe":"Latinsk lille bogstav n med apostrof inden ","Latin capital letter eng":"Latinsk stort bogstav eng","Latin small letter eng":"Latinsk lille bogstav eng","Latin capital letter o with macron":"Latinsk stort bogstav o med macron","Latin small letter o with macron":"Latinsk lille bogstav o med macron","Latin capital letter o with breve":"Latinsk stort bogstav o med en breve","Latin small letter o with breve":"Latinsk lille bogstav o med en breve","Latin capital letter o with double acute":"Latinsk stort bogstav o med dobbelt akut accent","Latin small letter o with double acute":"Latinsk lille bogstav o med dobbelt akut accent","Latin capital ligature oe":"Latinsk stort sammensat oe","Latin small ligature oe":"Latinsk lille sammensat oe","Latin capital letter r with acute":"Latinsk stort bogstav r med akut accent","Latin small letter r with acute":"Latinsk lille bogstav r med akut accent","Latin capital letter r with cedilla":"Latinsk stort bogstav r med cedille","Latin small letter r with cedilla":"Latinsk lille bogstav r med cedille","Latin capital letter r with caron":"Latinsk stort bogstav r med caron","Latin small letter r with caron":"Latinsk lille bogstav r med caron","Latin capital letter s with acute":"Latinsk stort bogstav s med akut accent","Latin small letter s with acute":"Latinsk lille bogstav s med akut accent","Latin capital letter s with circumflex":"Latinsk stort bogstav s med cirkumfleks","Latin small letter s with circumflex":"Latinsk lille bogstav s med cirkumfleks","Latin capital letter s with cedilla":"Latinsk stort bogstav s med cedille","Latin small letter s with cedilla":"Latinsk lille bogstav s med cedille","Latin capital letter s with caron":"Latinsk stort bogstav s med caron","Latin small letter s with caron":"Latinsk lille bogstav s med caron","Latin capital letter t with cedilla":"Latinsk stort bogstav t med cedille","Latin small letter t with cedilla":"Latinsk lille bogstav t med cedille","Latin capital letter t with caron":"Latinsk stort bogstav t med caron","Latin small letter t with caron":"Latinsk lille bogstav t med caron","Latin capital letter t with stroke":"Latinsk stort bogstav t med streg","Latin small letter t with stroke":"Latinsk lille bogstav t med streg","Latin capital letter u with tilde":"Latinsk stort bogstav u med tilde","Latin small letter u with tilde":"Latinsk lille bogstav u med tilde","Latin capital letter u with macron":"Latinsk stort bogstav u med macron","Latin small letter u with macron":"Latinsk lille bogstav u med macron","Latin capital letter u with breve":"Latinsk stort bogstav u med en breve","Latin small letter u with breve":"Latinsk lille bogstav u med en breve","Latin capital letter u with ring above":"Latinsk stort bogstav u med ring over","Latin small letter u with ring above":"Latinsk lille bogstav u med ring over","Latin capital letter u with double acute":"Latinsk lille bogstav u med dobbelt akut accent","Latin small letter u with double acute":"Latinsk stort bogstav u med dobbelt akut accent","Latin capital letter u with ogonek":"Latinsk stort bogstav u med ogonek","Latin small letter u with ogonek":"Latinsk lille bogstav u med ogonek","Latin capital letter w with circumflex":"Latinsk stort bogstav w med cirkumfleks","Latin small letter w with circumflex":"Latinsk lille bogstav w med cirkumfleks","Latin capital letter y with circumflex":"Latinsk stort bogstav y med cirkumfleks","Latin small letter y with circumflex":"Latinsk lille bogstav y med cirkumfleks","Latin capital letter y with diaeresis":"Latinsk stort bogstav y med trema","Latin capital letter z with acute":"Latinsk stort bogstav z med akut accent","Latin small letter z with acute":"Latinsk lille bogstav z med akut accent","Latin capital letter z with dot above":"Latinsk stort bogstav z med en prik over","Latin small letter z with dot above":"Latinsk lille bogstav z med en prik over","Latin capital letter z with caron":"Latinsk stort bogstav z med caron","Latin small letter z with caron":"Latinsk lille bogstav z med caron","Latin small letter long s":"Latinsk lille bogstav langt s","Less-than sign":"Mindre end-tegn","Greater-than sign":"Større end-tegn","Less-than or equal to":"Mindre end eller lig med-tegn","Greater-than or equal to":"Større end eller lig med-tegn","En dash":"En-bindestreg","Em dash":"Em-bindestreg",Macron:"Macron",Overline:"Streg over","Degree sign":"Grad-tegn","Minus sign":"Minus-tegn","Plus-minus sign":"Plus-minus-tegn","Division sign":"Divisionstegn","Fraction slash":"Brøk-tegn","Multiplication sign":"Gangetegn","Latin small letter f with hook":"Latinsk lille bogstav f med krog",Integral:"Integral","N-ary summation":"Sum-tegn",Infinity:"Uendelig","Square root":"Kvadratrod","Tilde operator":"Tilde-operator","Approximately equal to":"Nogenlunde lig med","Almost equal to":"Næsten lig med","Not equal to":"Ikke lig med","Identical to":"Lig med","Element of":"Element af","Not an element of":"Ikke et element af","Contains as member":"Element i","N-ary product":"Sumprodukttegn","Logical and":"Logisk og","Logical or":"Logisk eller","Not sign":"Ikke-tegn",Intersection:"Intersektion",Union:"Union","Partial differential":"Delvis differential","For all":"For alle","There exists":"Der eksisterer","Empty set":"Tomt sæt",Nabla:"Nabla","Asterisk operator":"Asterisk-operator","Proportional to":"Proportionelt med",Angle:"Vinkel","Vulgar fraction one quarter":"En kvart","Vulgar fraction one half":"En halv","Vulgar fraction three quarters":"Trekvart","Single left-pointing angle quotation mark":"Enkelt venstrepegende vinkel citationstegn","Single right-pointing angle quotation mark":"Enkelt højrepegende vinkel citationstegn","Left-pointing double angle quotation mark":"Venstrepegende dobbeltvinklet citationstegn","Right-pointing double angle quotation mark":"Højrepegende dobbeltvinklet citationstegn","Left single quotation mark":"Venstre enkelt citationstegn","Right single quotation mark":"Højre enkelt citationstegn","Left double quotation mark":"Venstre dobbelt citationstegn","Right double quotation mark":"Højre dobbelt citationstegn","Single low-9 quotation mark":"Enkelt lav-9 citationstegn","Double low-9 quotation mark":"Dobbelt lav-9 citationstegn","Inverted exclamation mark":"Omvendt udrÃ¥bstegn","Inverted question mark":"Omvendt spørgsmÃ¥lstegn","Two dot leader":"Dobbelt punktum","Horizontal ellipsis":"Horisontal ellipse","Double dagger":"Dobbeltobelisk","Per mille sign":"Promilletegn","Per ten thousand sign":"Per titusind-tegn","Double exclamation mark":"Dobbelt udrÃ¥bstegn","Question exclamation mark":"SpørgsmÃ¥lstegn-udrÃ¥bstegn","Exclamation question mark":"UdrÃ¥bstegn-spørgsmÃ¥lstegn","Double question mark":"Dobbelt spørgsmÃ¥lstegn","Copyright sign":"Copyright-tegnb","Registered sign":"Registreret-tegn","Trade mark sign":"Varemærke-tegn","Section sign":"Sektionstegn","Paragraph sign":"Paragraftegn","Reversed paragraph sign":"Omvendt paragraftegn","Character categories":"Tegnkategorier",Styles:"Stile","Multiple styles":"Flere stile","Block styles":"Blokstile","Text styles":"Tekststile","Insert table":"Indsæt tabel","Header column":"Headerkolonne","Insert column left":"Indsæt kolonne venstre","Insert column right":"Indsæt kolonne højre","Delete column":"Slet kolonne","Select column":"Vælg kolonne",Column:"Kolonne","Header row":"Headerrække","Insert row below":"Indsæt header under","Insert row above":"Indsæt header over","Delete row":"Slet række","Select row":"Vælg række",Row:"Række","Merge cell up":"Flet celler op","Merge cell right":"Flet celler højre","Merge cell down":"Flet celler ned","Merge cell left":"Flet celler venstre","Split cell vertically":"Del celle vertikalt","Split cell horizontally":"Del celle horisontalt","Merge cells":"Flet celler","Table toolbar":"Tabel værktøjslinje","Table properties":"Tabelegenskaber","Cell properties":"Celleegenskaber",Border:"Ramme",Style:"Stil",Width:"Bredde",Height:"Højde",Color:"Farve",Background:"Baggrund",Padding:"Fyld",Dimensions:"Dimensioner","Table cell text alignment":"Tabelcelle tekstjustering",Alignment:"Justering","Horizontal text alignment toolbar":"Horisontal tekstjustering værktøjslinje","Vertical text alignment toolbar":"Vertikal tekstjustering værktøjslinje","Table alignment toolbar":"Tabeljustering værktøjslinje",None:"Ingen",Solid:"Massiv",Dotted:"Stiplet (prik)",Dashed:"Stiplet (streg)",Double:"Dobbel",Groove:"Not",Ridge:"Kam",Inset:"Forsænket",Outset:"Fra starten","Align cell text to the left":"Justér tekstcelle til venstre","Align cell text to the center":"Justér tekstcelle centreret","Align cell text to the right":"Justér tekstcelle til højre","Justify cell text":"Justér tekstcelle","Align cell text to the top":"Justér tekstcelle til top","Align cell text to the middle":"Justér tekstcelle til midten","Align cell text to the bottom":"Justér tekstcelle til bunden","Align table to the left":"Justér tabel til venstre","Center table":"Centrér tabel","Align table to the right":"Justér tabel til højre","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Farven er ugyldig. Prøv \"#FF0000\" eller \"rgb(255,0,0)\" eller \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Værdien er ugyldig. Prøv \"10px\" eller \"2em\" eller ganske enkelt \"2\".","Color picker":"Farvevælger","Toggle caption off":"SlÃ¥ billedtekst fra","Toggle caption on":"SlÃ¥ billedtekst til","Enter table caption":"Indtast tabeltekst","Rich Text Editor":"Wysiwyg editor","Editor editing area: %0":"RedigeringsomrÃ¥de: %0","Edit block":"Redigér blok","Click to edit block":"Klik for at redigere blok","Drag to move":"Træk for at flytte",Next:"Næste",Previous:"Forrige","Editor toolbar":"Editor værktøjslinje","Dropdown toolbar":"Dropdown værktøjslinje",Black:"Sort","Dim grey":"Dunkel grÃ¥",Grey:"GrÃ¥","Light grey":"Lys grÃ¥",White:"Hvid",Red:"Rød",Orange:"Orange",Yellow:"Gyl","Light green":"Lys grøn",Green:"Grøn",Aquamarine:"MarineblÃ¥",Turquoise:"Turkis","Light blue":"Lys blÃ¥",Blue:"BlÃ¥",Purple:"Lilla","Editor block content toolbar":"Redigeringskasse indholdsværktøjslinje","Editor contextual toolbar":"Kontekstuel værktøjslinje til redigeringsprogram",HEX:"Hex",Accept:"Accepter","No results found":"Ingen resultater blev fundet","No searchable items":"Ingen søgbare artikler","Editor dialog":"Editor-dialog",Close:"Luk",Undo:"Fortryd",Redo:"Gentag","Upload in progress":"Upload i gang","Widget toolbar":"Widget værktøjslinje","Insert paragraph before block":"Indsæt paragraf før blok","Insert paragraph after block":"Indsæt paragraf efter blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tryk pÃ¥ Enter for at skrive efter, eller tryk pÃ¥ Shift + Enter for at skrive før widgetten","Words: %0":"Ord: %0","Characters: %0":"Karakterer: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de-ch.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de-ch.js index e27016ce392d67d9d6634376f3114a086aa40c89..0538c5c7f3df04682cf264cd29a04b47af6ce787 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de-ch.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de-ch.js @@ -1 +1 @@ -(function(d){ const l = d['de-ch'] = d['de-ch'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Linksbündig","Align right":"Rechtsbündig","Align center":"Zentriert",Justify:"Blocksatz","Text alignment":"Textausrichtung","Text alignment toolbar":"Textausrichtung Werkzeugleiste",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",Code:"Code",Strikethrough:"Durchgestrichen",Subscript:"Tiefgestellt",Superscript:"Hochgestellt","Block quote":"Blockzitat","Insert code block":"Code-Block einfügen","Plain text":"Nur Text",Cancel:"Abbrechen",Clear:"","Remove color":"Farbe entfernen","Restore default":"",Save:"Speichern","Show more items":"","%0 of %1":"","Cannot upload file:":"Datei kann nicht hochgeladen werden:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Absatz",Heading:"Ãœberschrift","Choose heading":"Ãœberschrift auswählen","Heading 1":"Ãœberschrift 1","Heading 2":"Ãœberschrift 2","Heading 3":"Ãœberschrift 3","Heading 4":"Ãœberschrift 4","Heading 5":"Ãœberschrift 5","Heading 6":"Ãœberschrift 6","Type your title":"Titel eingeben","Type or paste your content here.":"Hier Inhalt einfügen.","Horizontal line":"Horizontale Linie","Increase indent":"Einzug vergrössern","Decrease indent":"Einzug verkleinern",Unlink:"Link entfernen",Link:"Link","Link URL":"Link Adresse","Link image":"Bild verlinken","Edit link":"Link bearbeiten","Open link in new tab":"Link in neuem Tab öffnen","This link has no URL":"Dieser Link hat keine Adresse","Open in a new tab":"In neuem Tab öffnen",Downloadable:"Herunterladbar","Numbered List":"Nummerierte Liste","Bulleted List":"Aufzählungsliste","To-do List":"Aufgabenliste","Bulleted list styles toolbar":"Darstellung der ungeordneten Liste","Numbered list styles toolbar":"Darstellung der nummerierten Liste","Toggle the disc list style":"Gefüllten Kreis einstellen","Toggle the circle list style":"Leeren Kreis einstellen","Toggle the square list style":"Quadrat einstellen","Toggle the decimal list style":"Dezimalzahlen einstellen","Toggle the decimal with leading zero list style":"Dezimalzahlen mit vorangestellten Nullen einstellen","Toggle the lower–roman list style":"Kleingeschriebene römische Zahlen einstellen","Toggle the upper–roman list style":"Grossgeschriebene römische Zahlen einstellen","Toggle the lower–latin list style":"Kleingeschriebene lateinische Buchstaben einstellen","Toggle the upper–latin list style":"Grossgeschriebene lateinische Buchstaben einstellen",Disc:"Gefüllter Kreis",Circle:"Leerer Kreis",Square:"Quadrat",Decimal:"Dezimalzahlen","Decimal with leading zero":"Dezimalzahlen mit vorangestellten Nullen","Lower–roman":"Kleingeschriebene römische Zahlen","Upper-roman":"Grossgeschriebene römische Zahlen","Lower-latin":"Kleingeschriebene lateinische Buchstaben","Upper-latin":"Grossgeschriebene lateinische Buchstaben","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatierung entfernen","Select all":"Alles auswählen","Insert table":"Tabelle einfügen","Header column":"Kopfspalte","Insert column left":"","Insert column right":"","Delete column":"Spalte löschen","Select column":"",Column:"Spalte","Header row":"Kopfspalte","Insert row below":"Zeile unten einfügen","Insert row above":"Zeile oben einfügen","Delete row":"Zeile löschen","Select row":"",Row:"Zeile","Merge cell up":"Zelle oben verbinden","Merge cell right":"Zele rechts verbinden","Merge cell down":"Zelle unten verbinden","Merge cell left":"Zelle links verbinden","Split cell vertically":"Zelle vertikal teilen","Split cell horizontally":"Zelle horizontal teilen","Merge cells":"Zellen verbinden","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich-Text-Edito","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"","Dim grey":"",Grey:"","Light grey":"",White:"",Red:"",Orange:"",Yellow:"","Light green":"",Green:"",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Rückgängig",Redo:"Wiederherstellen","Upload in progress":"Upload läuft","Widget toolbar":"Widget Werkzeugleiste","Insert paragraph before block":"Absatz vor Block einfügen","Insert paragraph after block":"Absatz nach Block einfügen","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Wörter: %0","Characters: %0":"Zeichen: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['de-ch'] = d['de-ch'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Linksbündig","Align right":"Rechtsbündig","Align center":"Zentriert",Justify:"Blocksatz","Text alignment":"Textausrichtung","Text alignment toolbar":"Textausrichtung Werkzeugleiste",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",Code:"Code",Strikethrough:"Durchgestrichen",Subscript:"Tiefgestellt",Superscript:"Hochgestellt","Block quote":"Blockzitat","Insert code block":"Code-Block einfügen","Plain text":"Nur Text",Cancel:"Abbrechen",Clear:"","Remove color":"Farbe entfernen","Restore default":"",Save:"Speichern","Show more items":"","%0 of %1":"","Cannot upload file:":"Datei kann nicht hochgeladen werden:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Schriftgrösse",Tiny:"Winzig",Small:"Klein",Big:"Gross",Huge:"Riesig","Font Family":"Schriftfamilie",Default:"Standard","Font Color":"Schriftfarbe","Font Background Color":"Hintergrundfarbe der Schrift","Document colors":"Farben des Dokuments",Paragraph:"Absatz",Heading:"Ãœberschrift","Choose heading":"Ãœberschrift auswählen","Heading 1":"Ãœberschrift 1","Heading 2":"Ãœberschrift 2","Heading 3":"Ãœberschrift 3","Heading 4":"Ãœberschrift 4","Heading 5":"Ãœberschrift 5","Heading 6":"Ãœberschrift 6","Type your title":"Titel eingeben","Type or paste your content here.":"Hier Inhalt einfügen.","Horizontal line":"Horizontale Linie","Increase indent":"Einzug vergrössern","Decrease indent":"Einzug verkleinern",Unlink:"Link entfernen",Link:"Link","Link URL":"Link Adresse","Link image":"Bild verlinken","Edit link":"Link bearbeiten","Open link in new tab":"Link in neuem Tab öffnen","This link has no URL":"Dieser Link hat keine Adresse","Open in a new tab":"In neuem Tab öffnen",Downloadable:"Herunterladbar","Numbered List":"Nummerierte Liste","Bulleted List":"Aufzählungsliste","To-do List":"Aufgabenliste","Bulleted list styles toolbar":"Darstellung der ungeordneten Liste","Numbered list styles toolbar":"Darstellung der nummerierten Liste","Toggle the disc list style":"Gefüllten Kreis einstellen","Toggle the circle list style":"Leeren Kreis einstellen","Toggle the square list style":"Quadrat einstellen","Toggle the decimal list style":"Dezimalzahlen einstellen","Toggle the decimal with leading zero list style":"Dezimalzahlen mit vorangestellten Nullen einstellen","Toggle the lower–roman list style":"Kleingeschriebene römische Zahlen einstellen","Toggle the upper–roman list style":"Grossgeschriebene römische Zahlen einstellen","Toggle the lower–latin list style":"Kleingeschriebene lateinische Buchstaben einstellen","Toggle the upper–latin list style":"Grossgeschriebene lateinische Buchstaben einstellen",Disc:"Gefüllter Kreis",Circle:"Leerer Kreis",Square:"Quadrat",Decimal:"Dezimalzahlen","Decimal with leading zero":"Dezimalzahlen mit vorangestellten Nullen","Lower–roman":"Kleingeschriebene römische Zahlen","Upper-roman":"Grossgeschriebene römische Zahlen","Lower-latin":"Kleingeschriebene lateinische Buchstaben","Upper-latin":"Grossgeschriebene lateinische Buchstaben","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatierung entfernen","Select all":"Alles auswählen","Insert table":"Tabelle einfügen","Header column":"Kopfspalte","Insert column left":"","Insert column right":"","Delete column":"Spalte löschen","Select column":"",Column:"Spalte","Header row":"Kopfspalte","Insert row below":"Zeile unten einfügen","Insert row above":"Zeile oben einfügen","Delete row":"Zeile löschen","Select row":"",Row:"Zeile","Merge cell up":"Zelle oben verbinden","Merge cell right":"Zele rechts verbinden","Merge cell down":"Zelle unten verbinden","Merge cell left":"Zelle links verbinden","Split cell vertically":"Zelle vertikal teilen","Split cell horizontally":"Zelle horizontal teilen","Merge cells":"Zellen verbinden","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich-Text-Edito","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"","Dim grey":"",Grey:"","Light grey":"",White:"",Red:"",Orange:"",Yellow:"","Light green":"",Green:"",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Rückgängig",Redo:"Wiederherstellen","Upload in progress":"Upload läuft","Widget toolbar":"Widget Werkzeugleiste","Insert paragraph before block":"Absatz vor Block einfügen","Insert paragraph after block":"Absatz nach Block einfügen","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Wörter: %0","Characters: %0":"Zeichen: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de.js index 8bbb4cc21da13064d0d0f41e37df0396d8112979..7f395c27164ff755040bce0d62c158dd31930fe0 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/de.js @@ -1 +1 @@ -(function(d){ const l = d['de'] = d['de'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Linksbündig","Align right":"Rechtsbündig","Align center":"Zentriert",Justify:"Blocksatz","Text alignment":"Textausrichtung","Text alignment toolbar":"Text-Ausrichtung Toolbar",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",Code:"Code",Strikethrough:"Durchgestrichen",Subscript:"Tiefgestellt",Superscript:"Hochgestellt","Block quote":"Blockzitat","Insert code block":"Code-Block einfügen","Plain text":"Nur Text",Cancel:"Abbrechen",Clear:"Löschen","Remove color":"Farbe entfernen","Restore default":"Standard wiederherstellen",Save:"Speichern","Show more items":"Mehr anzeigen","%0 of %1":"%0 von %1","Cannot upload file:":"Die Datei kann nicht hochgeladen werden:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Bearbeitungsbereich: %0","Insert with file manager":"Mit Dateimanager einfügen","Replace with file manager":"Mittels Dateimanager ersetzen","Insert image with file manager":"Bild mit dem Dateimanager einfügen","Replace image with file manager":"Bild mittels Dateimanager ersetzen","Find and replace":"Suchen und ersetzen","Find in text…":"In Text suchen…",Find:"Suchen","Previous result":"Vorheriges Ergebnis","Next result":"Nächstes Ergebnis",Replace:"Ersetzen","Replace all":"Alle ersetzen","Match case":"Groß-/Kleinschreibung beachten","Whole words only":"Nur ganze Wörter","Replace with…":"Ersetzen durch…","Text to find must not be empty.":"Der Suchtext darf nicht leer sein.","Tip: Find some text first in order to replace it.":"Tipp: Zuerst nach Text suchen um diesen zu ersetzen.","Advanced options":"Erweiterte Optionen",Paragraph:"Absatz",Heading:"Ãœberschrift","Choose heading":"Ãœberschrift auswählen","Heading 1":"Ãœberschrift 1","Heading 2":"Ãœberschrift 2","Heading 3":"Ãœberschrift 3","Heading 4":"Ãœberschrift 4","Heading 5":"Ãœberschrift 5","Heading 6":"Ãœberschrift 6","Type your title":"Titel eingeben","Type or paste your content here.":"Hier Inhalt einfügen.","Horizontal line":"Horizontale Linie","HTML object":"HTML-Objekt","Increase indent":"Einzug vergrößern","Decrease indent":"Einzug verkleinern",Unlink:"Link entfernen",Link:"Link","Link URL":"Linkadresse","Link image":"Bild verlinken","Edit link":"Link bearbeiten","Open link in new tab":"Link im neuen Tab öffnen","This link has no URL":"Dieser Link hat keine Adresse","Open in a new tab":"In neuem Tab öffnen",Downloadable:"Herunterladbar","Numbered List":"Nummerierte Liste","Bulleted List":"Aufzählungsliste","To-do List":"Aufgabenliste","Bulleted list styles toolbar":"Darstellung der ungeordneten Liste","Numbered list styles toolbar":"Darstellung der geordneten Liste","Toggle the disc list style":"Gefüllten Kreis einstellen","Toggle the circle list style":"Leeren Kreis einstellen","Toggle the square list style":"Quadrat einstellen","Toggle the decimal list style":"Dezimalzahlen einstellen","Toggle the decimal with leading zero list style":"Dezimalzahlen mit vorangestellten Nullen einstellen","Toggle the lower–roman list style":"Kleingeschriebene römische Zahlen einstellen","Toggle the upper–roman list style":"Großgeschriebene römische Zahlen einstellen","Toggle the lower–latin list style":"Kleingeschriebene lateinische Buchstaben einstellen","Toggle the upper–latin list style":"Großgeschriebene lateinische Buchstaben einstellen",Disc:"Gefüllter Kreis",Circle:"Leerer Kreis",Square:"Quadrat",Decimal:"Dezimalzahlen","Decimal with leading zero":"Dezimalzahlen mit vorangestellten Nullen","Lower–roman":"Kleingeschriebene römische Zahlen","Upper-roman":"Großgeschriebene römische Zahlen","Lower-latin":"Kleingeschriebene lateinische Buchstaben","Upper-latin":"Großgeschriebene lateinische Buchstaben","List properties":"Listeneigenschaften","Start at":"Beginnen mit","Start index must be greater than 0.":"Der Startwert muss größer als 0 sein.","Reversed order":"Umgekehrte Reihenfolge","Remove Format":"Formatierung entfernen","Select all":"Alles auswählen","Show blocks":"Blöcke anzeigen",Source:"Quellcode","Special characters":"Sonderzeichen",All:"Alle",Arrows:"Pfeile",Currency:"Währung",Latin:"Lateinisch",Mathematical:"Mathematisch",Text:"Text","leftwards simple arrow":"einfacher Linkspfeil","rightwards simple arrow":"einfacher Rechtspfeil","upwards simple arrow":"einfacher Aufwärtspfeil","downwards simple arrow":"einfacher Abwärtspfeil","leftwards double arrow":"Doppelpfeil nach links","rightwards double arrow":"Doppelpfeil nach rechts","upwards double arrow":"Doppelpfeil nach oben","downwards double arrow":"Doppelpfeil nach unten","leftwards dashed arrow":"Gestrichelter Pfeil nach links","rightwards dashed arrow":"Gestrichelter Pfeil nach rechts","upwards dashed arrow":"Gestrichelter Pfeil nach oben","downwards dashed arrow":"Gestrichelter Pfeil nach unten","leftwards arrow to bar":"Pfeil nach links zum Querstrich","rightwards arrow to bar":"Pfeil nach rechts zum Querstrich","upwards arrow to bar":"Pfeil nach oben zum Querstrich","downwards arrow to bar":"Pfeil nach unten zum Querstrich","up down arrow with base":"Unterstrichener Pfeil nach oben und unten","back with leftwards arrow above":"„Back“ darüber Pfeil nach links","end with leftwards arrow above":"„End“ darüber Pfeil nach links","on with exclamation mark with left right arrow above":"„On“ mit Ausrufezeichen darüber Pfeil nach links und rechts","soon with rightwards arrow above":"„Soon“ darüber Pfeil nach rechts","top with upwards arrow above":"„Top“ darüber Pfeil nach oben","Dollar sign":"Dollar-Zeichen","Euro sign":"Euro-Zeichen","Yen sign":"Yen-Zeichen","Pound sign":"Pfund-Zeichen","Cent sign":"Cent-Zeichen","Euro-currency sign":"Euro-Währungszeichen","Colon sign":"Colón-Zeichen","Cruzeiro sign":"Cruzeiro-Zeichen","French franc sign":"Französischer Franc-Zeichen","Lira sign":"Lira-Zeichen","Currency sign":"Währungssymbol","Bitcoin sign":"Bitcoin-Zeichen","Mill sign":"Mill-Zeichen","Naira sign":"Naira-Zeichen","Peseta sign":"Peseta-Zeichen","Rupee sign":"Rupie-Zeichen","Won sign":"Won-Zeichen","New sheqel sign":"Schekel-Zeichen","Dong sign":"Äồng-Zeichen","Kip sign":"Kip-Zeichen","Tugrik sign":"Tugrik-Zeichen","Drachma sign":"Drachme-Zeichen","German penny sign":"Pfennig-Zeichen","Peso sign":"Philippinischer Peso-Zeichen","Guarani sign":"GuaranÃ-Zeichen","Austral sign":"Austral-Zeichen","Hryvnia sign":"Hrywnja-Zeichen","Cedi sign":"Cedi-Zeichen","Livre tournois sign":"Livre tournois-Zeichen","Spesmilo sign":"Spesmilo-Zeichen","Tenge sign":"Tenge-Zeichen","Indian rupee sign":"Indische Rupie-Zeichen","Turkish lira sign":"Türkische Lira-Zeichen","Nordic mark sign":"Nordische Mark-Zeichen","Manat sign":"Manat-Zeichen","Ruble sign":"Rubel-Zeichen","Latin capital letter a with macron":"Lateinischer Großbuchstabe a mit Makron","Latin small letter a with macron":"Lateinischer Kleinbuchstabe a mit Makron","Latin capital letter a with breve":"Lateinischer Großbuchstabe a mit Breve","Latin small letter a with breve":"Lateinischer Kleinbuchstabe a mit Breve","Latin capital letter a with ogonek":"Lateinischer Großbuchstabe a mit Ogonek","Latin small letter a with ogonek":"Lateinischer Kleinbuchstabe a mit Ogonek","Latin capital letter c with acute":"Lateinischer Großbuchstabe c mit Akut","Latin small letter c with acute":"Lateinischer Kleinbuchstabe c mit Akut","Latin capital letter c with circumflex":"Lateinischer Großbuchstabe c mit Zirkumflex","Latin small letter c with circumflex":"Lateinischer Kleinbuchstabe c mit Zirkumflex","Latin capital letter c with dot above":"Lateinischer Großbuchstabe c mit Punkt darüber","Latin small letter c with dot above":"Lateinischer Kleinbuchstabe c mit Punkt darüber","Latin capital letter c with caron":"Lateinischer Großbuchstabe c mit Hatschek","Latin small letter c with caron":"Lateinischer Kleinbuchstabe c mit Hatschek","Latin capital letter d with caron":"Lateinischer Großbuchstabe d mit Hatschek","Latin small letter d with caron":"Lateinischer Kleinbuchstabe d mit Hatschek","Latin capital letter d with stroke":"Lateinischer Großbuchstabe d mit Querstrich","Latin small letter d with stroke":"Lateinischer Kleinbuchstabe d mit Querstrich","Latin capital letter e with macron":"Lateinischer Großbuchstabe e mit Makron","Latin small letter e with macron":"Lateinischer Kleinbuchstabe e mit Makron","Latin capital letter e with breve":"Lateinischer Großbuchstabe e mit Breve","Latin small letter e with breve":"Lateinischer Kleinbuchstabe e mit Breve","Latin capital letter e with dot above":"Lateinischer Großbuchstabe e mit Punkt darüber","Latin small letter e with dot above":"Lateinischer Kleinbuchstabe e mit Punkt darüber","Latin capital letter e with ogonek":"Lateinischer Großbuchstabe e mit Ogonek","Latin small letter e with ogonek":"Lateinischer Kleinbuchstabe e mit Ogonek","Latin capital letter e with caron":"Lateinischer Großbuchstabe e mit Hatschek","Latin small letter e with caron":"Lateinischer Kleinbuchstabe e mit Hatschek","Latin capital letter g with circumflex":"Lateinischer Großbuchstabe g mit Zirkumflex","Latin small letter g with circumflex":"Lateinischer Kleinbuchstabe g mit Zirkumflex","Latin capital letter g with breve":"Lateinischer Großbuchstabe g mit Breve","Latin small letter g with breve":"Lateinischer Kleinbuchstabe g mit Breve","Latin capital letter g with dot above":"Lateinischer Großbuchstabe g mit Punkt darüber","Latin small letter g with dot above":"Lateinischer Kleinbuchstabe g mit Punkt darüber","Latin capital letter g with cedilla":"Lateinischer Großbuchstabe g mit Cedille","Latin small letter g with cedilla":"Lateinischer Kleinbuchstabe g mit Cedille","Latin capital letter h with circumflex":"Lateinischer Großbuchstabe h mit Zirkumflex","Latin small letter h with circumflex":"Lateinischer Kleinbuchstabe h mit Zirkumflex","Latin capital letter h with stroke":"Lateinischer Großbuchstabe h mit Querstrich","Latin small letter h with stroke":"Lateinischer Kleinbuchstabe h mit Querstrich","Latin capital letter i with tilde":"Lateinischer Großbuchstabe i mit Tilde","Latin small letter i with tilde":"Lateinischer Kleinbuchstabe i mit Tilde","Latin capital letter i with macron":"Lateinischer Großbuchstabe i mit Makron","Latin small letter i with macron":"Lateinischer Kleinbuchstabe i mit Makron","Latin capital letter i with breve":"Lateinischer Großbuchstabe i mit Breve","Latin small letter i with breve":"Lateinischer Kleinbuchstabe i mit Breve","Latin capital letter i with ogonek":"Lateinischer Großbuchstabe i mit Ogonek","Latin small letter i with ogonek":"Lateinischer Kleinbuchstabe i mit Ogonek","Latin capital letter i with dot above":"Lateinischer Großbuchstabe i mit Punkt darüber","Latin small letter dotless i":"Lateinischer Kleinbuchstabe i ohne Punkt","Latin capital ligature ij":"Große lateinische Ligatur ij","Latin small ligature ij":"Kleine lateinische Ligatur ij","Latin capital letter j with circumflex":"Lateinischer Großbuchstabe j mit Zirkumflex","Latin small letter j with circumflex":"Lateinischer Kleinbuchstabe j mit Zirkumflex","Latin capital letter k with cedilla":"Lateinischer Großbuchstabe k mit Cedille","Latin small letter k with cedilla":"Lateinischer Kleinbuchstabe k mit Cedille","Latin small letter kra":"Lateinischer Kleinbuchstabe Kra","Latin capital letter l with acute":"Lateinischer Großbuchstabe l mit Akut","Latin small letter l with acute":"Lateinischer Kleinbuchstabe l mit Akut","Latin capital letter l with cedilla":"Lateinischer Großbuchstabe l mit Cedille","Latin small letter l with cedilla":"Lateinischer Kleinbuchstabe l mit Cedille","Latin capital letter l with caron":"Lateinischer Großbuchstabe l mit Hatschek","Latin small letter l with caron":"Lateinischer Kleinbuchstabe l mit Hatschek","Latin capital letter l with middle dot":"Lateinischer Großbuchstabe l mit Mittelpunkt","Latin small letter l with middle dot":"Lateinischer Kleinbuchstabe l mit Mittelpunkt","Latin capital letter l with stroke":"Lateinischer Großbuchstabe l mit Querstrich","Latin small letter l with stroke":"Lateinischer Kleinbuchstabe l mit Querstrich","Latin capital letter n with acute":"Lateinischer Großbuchstabe n mit Akut","Latin small letter n with acute":"Lateinischer Kleinbuchstabe n mit Akut","Latin capital letter n with cedilla":"Lateinischer Großbuchstabe n mit Cedille","Latin small letter n with cedilla":"Lateinischer Kleinbuchstabe n mit Cedille","Latin capital letter n with caron":"Lateinischer Großbuchstabe n mit Hatschek","Latin small letter n with caron":"Lateinischer Kleinbuchstabe n mit Hatschek","Latin small letter n preceded by apostrophe":"Lateinischer Kleinbuchstabe n mit vorangestelltem Apostroph","Latin capital letter eng":"Lateinischer Großbuchstabe Eng","Latin small letter eng":"Lateinischer Kleinbuchstabe Eng","Latin capital letter o with macron":"Lateinischer Großbuchstabe o mit Makron","Latin small letter o with macron":"Lateinischer Kleinbuchstabe o mit Makron","Latin capital letter o with breve":"Lateinischer Großbuchstabe o mit Breve","Latin small letter o with breve":"Lateinischer Kleinbuchstabe o mit Breve","Latin capital letter o with double acute":"Lateinischer Großbuchstabe o mit doppeltem Akut","Latin small letter o with double acute":"Lateinischer Kleinbuchstabe o mit doppeltem Akut","Latin capital ligature oe":"Große lateinische Ligatur oe","Latin small ligature oe":"Kleine lateinische Ligatur oe","Latin capital letter r with acute":"Lateinischer Großbuchstabe r mit Akut","Latin small letter r with acute":"Lateinischer Kleinbuchstabe r mit Akut","Latin capital letter r with cedilla":"Lateinischer Großbuchstabe r mit Cedille","Latin small letter r with cedilla":"Lateinischer Kleinbuchstabe r mit Cedille","Latin capital letter r with caron":"Lateinischer Großbuchstabe r mit Hatschek","Latin small letter r with caron":"Lateinischer Kleinbuchstabe r mit Hatschek","Latin capital letter s with acute":"Lateinischer Großbuchstabe s mit Akut","Latin small letter s with acute":"Lateinischer Kleinbuchstabe s mit Akut","Latin capital letter s with circumflex":"Lateinischer Großbuchstabe s mit Zirkumflex","Latin small letter s with circumflex":"Lateinischer Kleinbuchstabe s mit Zirkumflex","Latin capital letter s with cedilla":"Lateinischer Großbuchstabe s mit Cedille","Latin small letter s with cedilla":"Lateinischer Kleinbuchstabe s mit Cedille","Latin capital letter s with caron":"Lateinischer Großbuchstabe s mit Hatschek","Latin small letter s with caron":"Lateinischer Kleinbuchstabe s mit Hatschek","Latin capital letter t with cedilla":"Lateinischer Großbuchstabe t mit Cedille","Latin small letter t with cedilla":"Lateinischer Kleinbuchstabe t mit Cedille","Latin capital letter t with caron":"Lateinischer Großbuchstabe t mit Hatschek","Latin small letter t with caron":"Lateinischer Kleinbuchstabe t mit Hatschek","Latin capital letter t with stroke":"Lateinischer Großbuchstabe t mit Querstrich","Latin small letter t with stroke":"Lateinischer Kleinbuchstabe t mit Querstrich","Latin capital letter u with tilde":"Lateinischer Großbuchstabe u mit Tilde","Latin small letter u with tilde":"Lateinischer Kleinbuchstabe u mit Tilde","Latin capital letter u with macron":"Lateinischer Großbuchstabe u mit Makron","Latin small letter u with macron":"Lateinischer Kleinbuchstabe u mit Makron","Latin capital letter u with breve":"Lateinischer Großbuchstabe u mit Breve","Latin small letter u with breve":"Lateinischer Kleinbuchstabe u mit Breve","Latin capital letter u with ring above":"Lateinischer Großbuchstabe u mit Kroužek darüber","Latin small letter u with ring above":"Lateinischer Kleinbuchstabe u mit Kroužek darüber","Latin capital letter u with double acute":"Lateinischer Großbuchstabe u mit doppeltem Akut","Latin small letter u with double acute":"Lateinischer Kleinbuchstabe u mit doppeltem Akut","Latin capital letter u with ogonek":"Lateinischer Großbuchstabe u mit Ogonek","Latin small letter u with ogonek":"Lateinischer Kleinbuchstabe u mit Ogonek","Latin capital letter w with circumflex":"Lateinischer Großbuchstabe w mit Zirkumflex","Latin small letter w with circumflex":"Lateinischer Kleinbuchstabe w mit Zirkumflex","Latin capital letter y with circumflex":"Lateinischer Großbuchstabe y mit Zirkumflex","Latin small letter y with circumflex":"Lateinischer Kleinbuchstabe y mit Zirkumflex","Latin capital letter y with diaeresis":"Lateinischer Großbuchstabe y mit Trema","Latin capital letter z with acute":"Lateinischer Großbuchstabe z mit Akut","Latin small letter z with acute":"Lateinischer Kleinbuchstabe z mit Akut","Latin capital letter z with dot above":"Lateinischer Großbuchstabe z mit Punkt darüber","Latin small letter z with dot above":"Lateinischer Kleinbuchstabe z mit Punkt darüber","Latin capital letter z with caron":"Lateinischer Großbuchstabe z mit Hatschek","Latin small letter z with caron":"Lateinischer Kleinbuchstabe z mit Hatschek","Latin small letter long s":"Lateinischer Kleinbuchstabe langes s","Less-than sign":"Kleiner-als-Zeichen","Greater-than sign":"Größer-als-Zeichen","Less-than or equal to":"Kleiner als oder gleich","Greater-than or equal to":"Größer als oder gleich","En dash":"Halbgeviertstrich","Em dash":"Geviertstrich",Macron:"Makron",Overline:"Ãœberstrich","Degree sign":"Grad-Zeichen","Minus sign":"Minus-Zeichen","Plus-minus sign":"Plus-Minus-Zeichen","Division sign":"Geteilt-Zeichen","Fraction slash":"Schrägstrich","Multiplication sign":"Mal-Zeichen","Latin small letter f with hook":"Lateinischer Kleinbuchstabe f mit Haken",Integral:"Integral-Zeichen","N-ary summation":"Summen-Zeichen",Infinity:"Unendlich-Zeichen","Square root":"Wurzel-Zeichen","Tilde operator":"Tilde-Operator","Approximately equal to":"Ungefähr gleich","Almost equal to":"Gerundet","Not equal to":"Ungleich","Identical to":"Identisch mit","Element of":"Element von","Not an element of":"Kein Element von","Contains as member":"Enthält als Element","N-ary product":"Produkt-Zeichen","Logical and":"Logisches und","Logical or":"Logisches oder","Not sign":"Negations-Zeichen",Intersection:"Schnitt",Union:"Vereinigung","Partial differential":"Partielle Ableitung","For all":"Allquantor","There exists":"Existenzquantor","Empty set":"Leere Menge",Nabla:"Nabla","Asterisk operator":"Hodge-Stern-Operator","Proportional to":"Proportional zu",Angle:"Winkel-Zeichen","Vulgar fraction one quarter":"Gemeiner Bruch ein Viertel","Vulgar fraction one half":"Gemeiner Bruch ein Halb","Vulgar fraction three quarters":"Gemeiner Bruch drei Viertel","Single left-pointing angle quotation mark":"Einfache Guillemets nach links","Single right-pointing angle quotation mark":"Einfache Guillemets nach rechts","Left-pointing double angle quotation mark":"Doppelte Guillemets nach links","Right-pointing double angle quotation mark":"Doppelte Guillemets nach rechts","Left single quotation mark":"Einfache Anführungszeichen links","Right single quotation mark":"Einfache Anführungszeichen rechts","Left double quotation mark":"Doppelte Anführungszeichen links","Right double quotation mark":"Doppelte Anführungszeichen rechts","Single low-9 quotation mark":"Einfache Anführungszeichen links unten","Double low-9 quotation mark":"Doppelte Anführungszeichen links unten","Inverted exclamation mark":"Umgekehrtes Ausrufezeichen","Inverted question mark":"Umgekehrtes Fragezeichen","Two dot leader":"Doppel-Punktlinie","Horizontal ellipsis":"Auslassungspunkte","Double dagger":"Zweibalkenkreuz","Per mille sign":"Promille-Zeichen","Per ten thousand sign":"Pro-Zehntausend-Zeichen","Double exclamation mark":"Doppeltes Ausrufezeichen","Question exclamation mark":"Frage-Ruf-Zeichen","Exclamation question mark":"Ruf-Frage-Zeichen","Double question mark":"Doppeltes Fragezeichen","Copyright sign":"Copyright-Zeichen","Registered sign":"Registered-Trade-Mark-Zeichen","Trade mark sign":"Unregistered-Trade-Mark-Zeichen","Section sign":"Paragraphen-Zeichen","Paragraph sign":"Absatz-Zeichen","Reversed paragraph sign":"Umgedrehtes Absatz-Zeichen","Character categories":"Zeichenkategorien",Styles:"Stile","Multiple styles":"Mehrere Stile","Block styles":"Block-Stile","Text styles":"Text-Stile","Insert table":"Tabelle einfügen","Header column":"Kopfspalte","Insert column left":"Spalte links einfügen","Insert column right":"Spalte rechts einfügen","Delete column":"Spalte löschen","Select column":"Spalte auswählen",Column:"Spalte","Header row":"Kopfzeile","Insert row below":"Zeile unten einfügen","Insert row above":"Zeile oben einfügen","Delete row":"Zeile löschen","Select row":"Zeile auswählen",Row:"Zeile","Merge cell up":"Zelle verbinden","Merge cell right":"Zelle rechts verbinden","Merge cell down":"Zelle unten verbinden","Merge cell left":"Zelle links verbinden","Split cell vertically":"Zelle vertikal teilen","Split cell horizontally":"Zelle horizontal teilen","Merge cells":"Zellen verbinden","Table toolbar":"Tabelle Werkzeugleiste","Table properties":"Tabelleneigenschaften","Cell properties":"Zelleneigenschaften",Border:"Rahmen",Style:"Rahmenart",Width:"Breite",Height:"Höhe",Color:"Farbe",Background:"Hintergrund",Padding:"Innenabstand",Dimensions:"Größe","Table cell text alignment":"Ausrichtung des Zellentextes",Alignment:"Ausrichtung","Horizontal text alignment toolbar":"Werkzeugleiste für die horizontale Zellentext-Ausrichtung","Vertical text alignment toolbar":"Werkzeugleiste für die vertikale Zellentext-Ausrichtung","Table alignment toolbar":"Werkzeugleiste für die Tabellen-Ausrichtung",None:"Kein Rahmen",Solid:"Durchgezogen",Dotted:"Gepunktet",Dashed:"Gestrichelt",Double:"Doppelt",Groove:"Eingeritzt",Ridge:"Hervorgehoben",Inset:"Eingelassen",Outset:"Geprägt","Align cell text to the left":"Zellentext linksbündig ausrichten","Align cell text to the center":"Zellentext zentriert ausrichten","Align cell text to the right":"Zellentext rechtsbündig ausrichten","Justify cell text":"Zellentext als Blocksatz ausrichten","Align cell text to the top":"Zellentext oben ausrichten","Align cell text to the middle":"Zellentext mittig ausrichten","Align cell text to the bottom":"Zellentext unten ausrichten","Align table to the left":"Tabelle links ausrichten","Center table":"Tabelle zentrieren","Align table to the right":"Tabelle rechts ausrichten","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Die Farbe ist ungültig. Probieren Sie „#FF0000“ oder „rgb(255,0,0)“ oder „red“.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Der Wert ist ungültig. Probieren Sie „10px“ oder „2em“ oder „2“.","Color picker":"Farbwähler","Toggle caption off":"Tabellenüberschrift deaktivieren","Toggle caption on":"Tabellenüberschrift aktivieren","Enter table caption":"Tabellenüberschrift eingeben","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Bearbeitungsbereich des Editors: %0","Edit block":"Absatz bearbeiten","Click to edit block":"Zum Bearbeiten des Blocks klicken","Drag to move":"Zum Verschieben ziehen",Next:"Nächste",Previous:"vorherige","Editor toolbar":"Editor Werkzeugleiste","Dropdown toolbar":"Dropdown-Liste Werkzeugleiste",Black:"Schwarz","Dim grey":"Dunkelgrau",Grey:"Grau","Light grey":"Hellgrau",White:"Weiß",Red:"Rot",Orange:"Orange",Yellow:"Gelb","Light green":"Hellgrün",Green:"Grün",Aquamarine:"Aquamarinblau",Turquoise:"Türkis","Light blue":"Hellblau",Blue:"Blau",Purple:"Violett","Editor block content toolbar":"Editor Blockinhalt-Toolbar","Editor contextual toolbar":"Editor kontextuelle Toolbar",HEX:"HEX",Accept:"Akzeptieren","No results found":"Keine Ergebnisse gefunden","No searchable items":"Keine durchsuchbaren Elemente","Editor dialog":"Editor-Dialog",Close:"Schließen",Undo:"Rückgängig",Redo:"Wiederherstellen","Upload in progress":"Upload läuft","Widget toolbar":"Widget Werkzeugleiste","Insert paragraph before block":"Absatz vor Block einfügen","Insert paragraph after block":"Absatz nach Block einfügen","Press Enter to type after or press Shift + Enter to type before the widget":"Drücken Sie die Eingabetaste, um nach dem Widget zu tippen oder Shift + Eingabetaste, um vor dem Widget zu tippen.","Words: %0":"Wörter: %0 ","Characters: %0":"Zeichen: %0 "} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['de'] = d['de'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Linksbündig","Align right":"Rechtsbündig","Align center":"Zentriert",Justify:"Blocksatz","Text alignment":"Textausrichtung","Text alignment toolbar":"Text-Ausrichtung Toolbar",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",Code:"Code",Strikethrough:"Durchgestrichen",Subscript:"Tiefgestellt",Superscript:"Hochgestellt","Block quote":"Blockzitat","Insert code block":"Code-Block einfügen","Plain text":"Nur Text",Cancel:"Abbrechen",Clear:"Löschen","Remove color":"Farbe entfernen","Restore default":"Standard wiederherstellen",Save:"Speichern","Show more items":"Mehr anzeigen","%0 of %1":"%0 von %1","Cannot upload file:":"Die Datei kann nicht hochgeladen werden:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Bearbeitungsbereich: %0","Insert with file manager":"Mit Dateimanager einfügen","Replace with file manager":"Mittels Dateimanager ersetzen","Insert image with file manager":"Bild mit dem Dateimanager einfügen","Replace image with file manager":"Bild mittels Dateimanager ersetzen","Find and replace":"Suchen und ersetzen","Find in text…":"In Text suchen…",Find:"Suchen","Previous result":"Vorheriges Ergebnis","Next result":"Nächstes Ergebnis",Replace:"Ersetzen","Replace all":"Alle ersetzen","Match case":"Groß-/Kleinschreibung beachten","Whole words only":"Nur ganze Wörter","Replace with…":"Ersetzen durch…","Text to find must not be empty.":"Der Suchtext darf nicht leer sein.","Tip: Find some text first in order to replace it.":"Tipp: Zuerst nach Text suchen um diesen zu ersetzen.","Advanced options":"Erweiterte Optionen","Font Size":"Schriftgröße",Tiny:"Sehr klein",Small:"Klein",Big:"Groß",Huge:"Sehr groß","Font Family":"Schriftart",Default:"Standard","Font Color":"Schriftfarbe","Font Background Color":"Hintergrundfarbe","Document colors":"Dokumentfarben",Paragraph:"Absatz",Heading:"Ãœberschrift","Choose heading":"Ãœberschrift auswählen","Heading 1":"Ãœberschrift 1","Heading 2":"Ãœberschrift 2","Heading 3":"Ãœberschrift 3","Heading 4":"Ãœberschrift 4","Heading 5":"Ãœberschrift 5","Heading 6":"Ãœberschrift 6","Type your title":"Titel eingeben","Type or paste your content here.":"Hier Inhalt einfügen.","Horizontal line":"Horizontale Linie","HTML object":"HTML-Objekt","Increase indent":"Einzug vergrößern","Decrease indent":"Einzug verkleinern",Unlink:"Link entfernen",Link:"Link","Link URL":"Linkadresse","Link image":"Bild verlinken","Edit link":"Link bearbeiten","Open link in new tab":"Link im neuen Tab öffnen","This link has no URL":"Dieser Link hat keine Adresse","Open in a new tab":"In neuem Tab öffnen",Downloadable:"Herunterladbar","Numbered List":"Nummerierte Liste","Bulleted List":"Aufzählungsliste","To-do List":"Aufgabenliste","Bulleted list styles toolbar":"Darstellung der ungeordneten Liste","Numbered list styles toolbar":"Darstellung der geordneten Liste","Toggle the disc list style":"Gefüllten Kreis einstellen","Toggle the circle list style":"Leeren Kreis einstellen","Toggle the square list style":"Quadrat einstellen","Toggle the decimal list style":"Dezimalzahlen einstellen","Toggle the decimal with leading zero list style":"Dezimalzahlen mit vorangestellten Nullen einstellen","Toggle the lower–roman list style":"Kleingeschriebene römische Zahlen einstellen","Toggle the upper–roman list style":"Großgeschriebene römische Zahlen einstellen","Toggle the lower–latin list style":"Kleingeschriebene lateinische Buchstaben einstellen","Toggle the upper–latin list style":"Großgeschriebene lateinische Buchstaben einstellen",Disc:"Gefüllter Kreis",Circle:"Leerer Kreis",Square:"Quadrat",Decimal:"Dezimalzahlen","Decimal with leading zero":"Dezimalzahlen mit vorangestellten Nullen","Lower–roman":"Kleingeschriebene römische Zahlen","Upper-roman":"Großgeschriebene römische Zahlen","Lower-latin":"Kleingeschriebene lateinische Buchstaben","Upper-latin":"Großgeschriebene lateinische Buchstaben","List properties":"Listeneigenschaften","Start at":"Beginnen mit","Start index must be greater than 0.":"Der Startwert muss größer als 0 sein.","Reversed order":"Umgekehrte Reihenfolge","Remove Format":"Formatierung entfernen","Select all":"Alles auswählen","Show blocks":"Blöcke anzeigen",Source:"Quellcode","Special characters":"Sonderzeichen",All:"Alle",Arrows:"Pfeile",Currency:"Währung",Latin:"Lateinisch",Mathematical:"Mathematisch",Text:"Text","leftwards simple arrow":"einfacher Linkspfeil","rightwards simple arrow":"einfacher Rechtspfeil","upwards simple arrow":"einfacher Aufwärtspfeil","downwards simple arrow":"einfacher Abwärtspfeil","leftwards double arrow":"Doppelpfeil nach links","rightwards double arrow":"Doppelpfeil nach rechts","upwards double arrow":"Doppelpfeil nach oben","downwards double arrow":"Doppelpfeil nach unten","leftwards dashed arrow":"Gestrichelter Pfeil nach links","rightwards dashed arrow":"Gestrichelter Pfeil nach rechts","upwards dashed arrow":"Gestrichelter Pfeil nach oben","downwards dashed arrow":"Gestrichelter Pfeil nach unten","leftwards arrow to bar":"Pfeil nach links zum Querstrich","rightwards arrow to bar":"Pfeil nach rechts zum Querstrich","upwards arrow to bar":"Pfeil nach oben zum Querstrich","downwards arrow to bar":"Pfeil nach unten zum Querstrich","up down arrow with base":"Unterstrichener Pfeil nach oben und unten","back with leftwards arrow above":"„Back“ darüber Pfeil nach links","end with leftwards arrow above":"„End“ darüber Pfeil nach links","on with exclamation mark with left right arrow above":"„On“ mit Ausrufezeichen darüber Pfeil nach links und rechts","soon with rightwards arrow above":"„Soon“ darüber Pfeil nach rechts","top with upwards arrow above":"„Top“ darüber Pfeil nach oben","Dollar sign":"Dollar-Zeichen","Euro sign":"Euro-Zeichen","Yen sign":"Yen-Zeichen","Pound sign":"Pfund-Zeichen","Cent sign":"Cent-Zeichen","Euro-currency sign":"Euro-Währungszeichen","Colon sign":"Colón-Zeichen","Cruzeiro sign":"Cruzeiro-Zeichen","French franc sign":"Französischer Franc-Zeichen","Lira sign":"Lira-Zeichen","Currency sign":"Währungssymbol","Bitcoin sign":"Bitcoin-Zeichen","Mill sign":"Mill-Zeichen","Naira sign":"Naira-Zeichen","Peseta sign":"Peseta-Zeichen","Rupee sign":"Rupie-Zeichen","Won sign":"Won-Zeichen","New sheqel sign":"Schekel-Zeichen","Dong sign":"Äồng-Zeichen","Kip sign":"Kip-Zeichen","Tugrik sign":"Tugrik-Zeichen","Drachma sign":"Drachme-Zeichen","German penny sign":"Pfennig-Zeichen","Peso sign":"Philippinischer Peso-Zeichen","Guarani sign":"GuaranÃ-Zeichen","Austral sign":"Austral-Zeichen","Hryvnia sign":"Hrywnja-Zeichen","Cedi sign":"Cedi-Zeichen","Livre tournois sign":"Livre tournois-Zeichen","Spesmilo sign":"Spesmilo-Zeichen","Tenge sign":"Tenge-Zeichen","Indian rupee sign":"Indische Rupie-Zeichen","Turkish lira sign":"Türkische Lira-Zeichen","Nordic mark sign":"Nordische Mark-Zeichen","Manat sign":"Manat-Zeichen","Ruble sign":"Rubel-Zeichen","Latin capital letter a with macron":"Lateinischer Großbuchstabe a mit Makron","Latin small letter a with macron":"Lateinischer Kleinbuchstabe a mit Makron","Latin capital letter a with breve":"Lateinischer Großbuchstabe a mit Breve","Latin small letter a with breve":"Lateinischer Kleinbuchstabe a mit Breve","Latin capital letter a with ogonek":"Lateinischer Großbuchstabe a mit Ogonek","Latin small letter a with ogonek":"Lateinischer Kleinbuchstabe a mit Ogonek","Latin capital letter c with acute":"Lateinischer Großbuchstabe c mit Akut","Latin small letter c with acute":"Lateinischer Kleinbuchstabe c mit Akut","Latin capital letter c with circumflex":"Lateinischer Großbuchstabe c mit Zirkumflex","Latin small letter c with circumflex":"Lateinischer Kleinbuchstabe c mit Zirkumflex","Latin capital letter c with dot above":"Lateinischer Großbuchstabe c mit Punkt darüber","Latin small letter c with dot above":"Lateinischer Kleinbuchstabe c mit Punkt darüber","Latin capital letter c with caron":"Lateinischer Großbuchstabe c mit Hatschek","Latin small letter c with caron":"Lateinischer Kleinbuchstabe c mit Hatschek","Latin capital letter d with caron":"Lateinischer Großbuchstabe d mit Hatschek","Latin small letter d with caron":"Lateinischer Kleinbuchstabe d mit Hatschek","Latin capital letter d with stroke":"Lateinischer Großbuchstabe d mit Querstrich","Latin small letter d with stroke":"Lateinischer Kleinbuchstabe d mit Querstrich","Latin capital letter e with macron":"Lateinischer Großbuchstabe e mit Makron","Latin small letter e with macron":"Lateinischer Kleinbuchstabe e mit Makron","Latin capital letter e with breve":"Lateinischer Großbuchstabe e mit Breve","Latin small letter e with breve":"Lateinischer Kleinbuchstabe e mit Breve","Latin capital letter e with dot above":"Lateinischer Großbuchstabe e mit Punkt darüber","Latin small letter e with dot above":"Lateinischer Kleinbuchstabe e mit Punkt darüber","Latin capital letter e with ogonek":"Lateinischer Großbuchstabe e mit Ogonek","Latin small letter e with ogonek":"Lateinischer Kleinbuchstabe e mit Ogonek","Latin capital letter e with caron":"Lateinischer Großbuchstabe e mit Hatschek","Latin small letter e with caron":"Lateinischer Kleinbuchstabe e mit Hatschek","Latin capital letter g with circumflex":"Lateinischer Großbuchstabe g mit Zirkumflex","Latin small letter g with circumflex":"Lateinischer Kleinbuchstabe g mit Zirkumflex","Latin capital letter g with breve":"Lateinischer Großbuchstabe g mit Breve","Latin small letter g with breve":"Lateinischer Kleinbuchstabe g mit Breve","Latin capital letter g with dot above":"Lateinischer Großbuchstabe g mit Punkt darüber","Latin small letter g with dot above":"Lateinischer Kleinbuchstabe g mit Punkt darüber","Latin capital letter g with cedilla":"Lateinischer Großbuchstabe g mit Cedille","Latin small letter g with cedilla":"Lateinischer Kleinbuchstabe g mit Cedille","Latin capital letter h with circumflex":"Lateinischer Großbuchstabe h mit Zirkumflex","Latin small letter h with circumflex":"Lateinischer Kleinbuchstabe h mit Zirkumflex","Latin capital letter h with stroke":"Lateinischer Großbuchstabe h mit Querstrich","Latin small letter h with stroke":"Lateinischer Kleinbuchstabe h mit Querstrich","Latin capital letter i with tilde":"Lateinischer Großbuchstabe i mit Tilde","Latin small letter i with tilde":"Lateinischer Kleinbuchstabe i mit Tilde","Latin capital letter i with macron":"Lateinischer Großbuchstabe i mit Makron","Latin small letter i with macron":"Lateinischer Kleinbuchstabe i mit Makron","Latin capital letter i with breve":"Lateinischer Großbuchstabe i mit Breve","Latin small letter i with breve":"Lateinischer Kleinbuchstabe i mit Breve","Latin capital letter i with ogonek":"Lateinischer Großbuchstabe i mit Ogonek","Latin small letter i with ogonek":"Lateinischer Kleinbuchstabe i mit Ogonek","Latin capital letter i with dot above":"Lateinischer Großbuchstabe i mit Punkt darüber","Latin small letter dotless i":"Lateinischer Kleinbuchstabe i ohne Punkt","Latin capital ligature ij":"Große lateinische Ligatur ij","Latin small ligature ij":"Kleine lateinische Ligatur ij","Latin capital letter j with circumflex":"Lateinischer Großbuchstabe j mit Zirkumflex","Latin small letter j with circumflex":"Lateinischer Kleinbuchstabe j mit Zirkumflex","Latin capital letter k with cedilla":"Lateinischer Großbuchstabe k mit Cedille","Latin small letter k with cedilla":"Lateinischer Kleinbuchstabe k mit Cedille","Latin small letter kra":"Lateinischer Kleinbuchstabe Kra","Latin capital letter l with acute":"Lateinischer Großbuchstabe l mit Akut","Latin small letter l with acute":"Lateinischer Kleinbuchstabe l mit Akut","Latin capital letter l with cedilla":"Lateinischer Großbuchstabe l mit Cedille","Latin small letter l with cedilla":"Lateinischer Kleinbuchstabe l mit Cedille","Latin capital letter l with caron":"Lateinischer Großbuchstabe l mit Hatschek","Latin small letter l with caron":"Lateinischer Kleinbuchstabe l mit Hatschek","Latin capital letter l with middle dot":"Lateinischer Großbuchstabe l mit Mittelpunkt","Latin small letter l with middle dot":"Lateinischer Kleinbuchstabe l mit Mittelpunkt","Latin capital letter l with stroke":"Lateinischer Großbuchstabe l mit Querstrich","Latin small letter l with stroke":"Lateinischer Kleinbuchstabe l mit Querstrich","Latin capital letter n with acute":"Lateinischer Großbuchstabe n mit Akut","Latin small letter n with acute":"Lateinischer Kleinbuchstabe n mit Akut","Latin capital letter n with cedilla":"Lateinischer Großbuchstabe n mit Cedille","Latin small letter n with cedilla":"Lateinischer Kleinbuchstabe n mit Cedille","Latin capital letter n with caron":"Lateinischer Großbuchstabe n mit Hatschek","Latin small letter n with caron":"Lateinischer Kleinbuchstabe n mit Hatschek","Latin small letter n preceded by apostrophe":"Lateinischer Kleinbuchstabe n mit vorangestelltem Apostroph","Latin capital letter eng":"Lateinischer Großbuchstabe Eng","Latin small letter eng":"Lateinischer Kleinbuchstabe Eng","Latin capital letter o with macron":"Lateinischer Großbuchstabe o mit Makron","Latin small letter o with macron":"Lateinischer Kleinbuchstabe o mit Makron","Latin capital letter o with breve":"Lateinischer Großbuchstabe o mit Breve","Latin small letter o with breve":"Lateinischer Kleinbuchstabe o mit Breve","Latin capital letter o with double acute":"Lateinischer Großbuchstabe o mit doppeltem Akut","Latin small letter o with double acute":"Lateinischer Kleinbuchstabe o mit doppeltem Akut","Latin capital ligature oe":"Große lateinische Ligatur oe","Latin small ligature oe":"Kleine lateinische Ligatur oe","Latin capital letter r with acute":"Lateinischer Großbuchstabe r mit Akut","Latin small letter r with acute":"Lateinischer Kleinbuchstabe r mit Akut","Latin capital letter r with cedilla":"Lateinischer Großbuchstabe r mit Cedille","Latin small letter r with cedilla":"Lateinischer Kleinbuchstabe r mit Cedille","Latin capital letter r with caron":"Lateinischer Großbuchstabe r mit Hatschek","Latin small letter r with caron":"Lateinischer Kleinbuchstabe r mit Hatschek","Latin capital letter s with acute":"Lateinischer Großbuchstabe s mit Akut","Latin small letter s with acute":"Lateinischer Kleinbuchstabe s mit Akut","Latin capital letter s with circumflex":"Lateinischer Großbuchstabe s mit Zirkumflex","Latin small letter s with circumflex":"Lateinischer Kleinbuchstabe s mit Zirkumflex","Latin capital letter s with cedilla":"Lateinischer Großbuchstabe s mit Cedille","Latin small letter s with cedilla":"Lateinischer Kleinbuchstabe s mit Cedille","Latin capital letter s with caron":"Lateinischer Großbuchstabe s mit Hatschek","Latin small letter s with caron":"Lateinischer Kleinbuchstabe s mit Hatschek","Latin capital letter t with cedilla":"Lateinischer Großbuchstabe t mit Cedille","Latin small letter t with cedilla":"Lateinischer Kleinbuchstabe t mit Cedille","Latin capital letter t with caron":"Lateinischer Großbuchstabe t mit Hatschek","Latin small letter t with caron":"Lateinischer Kleinbuchstabe t mit Hatschek","Latin capital letter t with stroke":"Lateinischer Großbuchstabe t mit Querstrich","Latin small letter t with stroke":"Lateinischer Kleinbuchstabe t mit Querstrich","Latin capital letter u with tilde":"Lateinischer Großbuchstabe u mit Tilde","Latin small letter u with tilde":"Lateinischer Kleinbuchstabe u mit Tilde","Latin capital letter u with macron":"Lateinischer Großbuchstabe u mit Makron","Latin small letter u with macron":"Lateinischer Kleinbuchstabe u mit Makron","Latin capital letter u with breve":"Lateinischer Großbuchstabe u mit Breve","Latin small letter u with breve":"Lateinischer Kleinbuchstabe u mit Breve","Latin capital letter u with ring above":"Lateinischer Großbuchstabe u mit Kroužek darüber","Latin small letter u with ring above":"Lateinischer Kleinbuchstabe u mit Kroužek darüber","Latin capital letter u with double acute":"Lateinischer Großbuchstabe u mit doppeltem Akut","Latin small letter u with double acute":"Lateinischer Kleinbuchstabe u mit doppeltem Akut","Latin capital letter u with ogonek":"Lateinischer Großbuchstabe u mit Ogonek","Latin small letter u with ogonek":"Lateinischer Kleinbuchstabe u mit Ogonek","Latin capital letter w with circumflex":"Lateinischer Großbuchstabe w mit Zirkumflex","Latin small letter w with circumflex":"Lateinischer Kleinbuchstabe w mit Zirkumflex","Latin capital letter y with circumflex":"Lateinischer Großbuchstabe y mit Zirkumflex","Latin small letter y with circumflex":"Lateinischer Kleinbuchstabe y mit Zirkumflex","Latin capital letter y with diaeresis":"Lateinischer Großbuchstabe y mit Trema","Latin capital letter z with acute":"Lateinischer Großbuchstabe z mit Akut","Latin small letter z with acute":"Lateinischer Kleinbuchstabe z mit Akut","Latin capital letter z with dot above":"Lateinischer Großbuchstabe z mit Punkt darüber","Latin small letter z with dot above":"Lateinischer Kleinbuchstabe z mit Punkt darüber","Latin capital letter z with caron":"Lateinischer Großbuchstabe z mit Hatschek","Latin small letter z with caron":"Lateinischer Kleinbuchstabe z mit Hatschek","Latin small letter long s":"Lateinischer Kleinbuchstabe langes s","Less-than sign":"Kleiner-als-Zeichen","Greater-than sign":"Größer-als-Zeichen","Less-than or equal to":"Kleiner als oder gleich","Greater-than or equal to":"Größer als oder gleich","En dash":"Halbgeviertstrich","Em dash":"Geviertstrich",Macron:"Makron",Overline:"Ãœberstrich","Degree sign":"Grad-Zeichen","Minus sign":"Minus-Zeichen","Plus-minus sign":"Plus-Minus-Zeichen","Division sign":"Geteilt-Zeichen","Fraction slash":"Schrägstrich","Multiplication sign":"Mal-Zeichen","Latin small letter f with hook":"Lateinischer Kleinbuchstabe f mit Haken",Integral:"Integral-Zeichen","N-ary summation":"Summen-Zeichen",Infinity:"Unendlich-Zeichen","Square root":"Wurzel-Zeichen","Tilde operator":"Tilde-Operator","Approximately equal to":"Ungefähr gleich","Almost equal to":"Gerundet","Not equal to":"Ungleich","Identical to":"Identisch mit","Element of":"Element von","Not an element of":"Kein Element von","Contains as member":"Enthält als Element","N-ary product":"Produkt-Zeichen","Logical and":"Logisches und","Logical or":"Logisches oder","Not sign":"Negations-Zeichen",Intersection:"Schnitt",Union:"Vereinigung","Partial differential":"Partielle Ableitung","For all":"Allquantor","There exists":"Existenzquantor","Empty set":"Leere Menge",Nabla:"Nabla","Asterisk operator":"Hodge-Stern-Operator","Proportional to":"Proportional zu",Angle:"Winkel-Zeichen","Vulgar fraction one quarter":"Gemeiner Bruch ein Viertel","Vulgar fraction one half":"Gemeiner Bruch ein Halb","Vulgar fraction three quarters":"Gemeiner Bruch drei Viertel","Single left-pointing angle quotation mark":"Einfache Guillemets nach links","Single right-pointing angle quotation mark":"Einfache Guillemets nach rechts","Left-pointing double angle quotation mark":"Doppelte Guillemets nach links","Right-pointing double angle quotation mark":"Doppelte Guillemets nach rechts","Left single quotation mark":"Einfache Anführungszeichen links","Right single quotation mark":"Einfache Anführungszeichen rechts","Left double quotation mark":"Doppelte Anführungszeichen links","Right double quotation mark":"Doppelte Anführungszeichen rechts","Single low-9 quotation mark":"Einfache Anführungszeichen links unten","Double low-9 quotation mark":"Doppelte Anführungszeichen links unten","Inverted exclamation mark":"Umgekehrtes Ausrufezeichen","Inverted question mark":"Umgekehrtes Fragezeichen","Two dot leader":"Doppel-Punktlinie","Horizontal ellipsis":"Auslassungspunkte","Double dagger":"Zweibalkenkreuz","Per mille sign":"Promille-Zeichen","Per ten thousand sign":"Pro-Zehntausend-Zeichen","Double exclamation mark":"Doppeltes Ausrufezeichen","Question exclamation mark":"Frage-Ruf-Zeichen","Exclamation question mark":"Ruf-Frage-Zeichen","Double question mark":"Doppeltes Fragezeichen","Copyright sign":"Copyright-Zeichen","Registered sign":"Registered-Trade-Mark-Zeichen","Trade mark sign":"Unregistered-Trade-Mark-Zeichen","Section sign":"Paragraphen-Zeichen","Paragraph sign":"Absatz-Zeichen","Reversed paragraph sign":"Umgedrehtes Absatz-Zeichen","Character categories":"Zeichenkategorien",Styles:"Stile","Multiple styles":"Mehrere Stile","Block styles":"Block-Stile","Text styles":"Text-Stile","Insert table":"Tabelle einfügen","Header column":"Kopfspalte","Insert column left":"Spalte links einfügen","Insert column right":"Spalte rechts einfügen","Delete column":"Spalte löschen","Select column":"Spalte auswählen",Column:"Spalte","Header row":"Kopfzeile","Insert row below":"Zeile unten einfügen","Insert row above":"Zeile oben einfügen","Delete row":"Zeile löschen","Select row":"Zeile auswählen",Row:"Zeile","Merge cell up":"Zelle verbinden","Merge cell right":"Zelle rechts verbinden","Merge cell down":"Zelle unten verbinden","Merge cell left":"Zelle links verbinden","Split cell vertically":"Zelle vertikal teilen","Split cell horizontally":"Zelle horizontal teilen","Merge cells":"Zellen verbinden","Table toolbar":"Tabelle Werkzeugleiste","Table properties":"Tabelleneigenschaften","Cell properties":"Zelleneigenschaften",Border:"Rahmen",Style:"Rahmenart",Width:"Breite",Height:"Höhe",Color:"Farbe",Background:"Hintergrund",Padding:"Innenabstand",Dimensions:"Größe","Table cell text alignment":"Ausrichtung des Zellentextes",Alignment:"Ausrichtung","Horizontal text alignment toolbar":"Werkzeugleiste für die horizontale Zellentext-Ausrichtung","Vertical text alignment toolbar":"Werkzeugleiste für die vertikale Zellentext-Ausrichtung","Table alignment toolbar":"Werkzeugleiste für die Tabellen-Ausrichtung",None:"Kein Rahmen",Solid:"Durchgezogen",Dotted:"Gepunktet",Dashed:"Gestrichelt",Double:"Doppelt",Groove:"Eingeritzt",Ridge:"Hervorgehoben",Inset:"Eingelassen",Outset:"Geprägt","Align cell text to the left":"Zellentext linksbündig ausrichten","Align cell text to the center":"Zellentext zentriert ausrichten","Align cell text to the right":"Zellentext rechtsbündig ausrichten","Justify cell text":"Zellentext als Blocksatz ausrichten","Align cell text to the top":"Zellentext oben ausrichten","Align cell text to the middle":"Zellentext mittig ausrichten","Align cell text to the bottom":"Zellentext unten ausrichten","Align table to the left":"Tabelle links ausrichten","Center table":"Tabelle zentrieren","Align table to the right":"Tabelle rechts ausrichten","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Die Farbe ist ungültig. Probieren Sie „#FF0000“ oder „rgb(255,0,0)“ oder „red“.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Der Wert ist ungültig. Probieren Sie „10px“ oder „2em“ oder „2“.","Color picker":"Farbwähler","Toggle caption off":"Tabellenüberschrift deaktivieren","Toggle caption on":"Tabellenüberschrift aktivieren","Enter table caption":"Tabellenüberschrift eingeben","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Bearbeitungsbereich des Editors: %0","Edit block":"Absatz bearbeiten","Click to edit block":"Zum Bearbeiten des Blocks klicken","Drag to move":"Zum Verschieben ziehen",Next:"Nächste",Previous:"vorherige","Editor toolbar":"Editor Werkzeugleiste","Dropdown toolbar":"Dropdown-Liste Werkzeugleiste",Black:"Schwarz","Dim grey":"Dunkelgrau",Grey:"Grau","Light grey":"Hellgrau",White:"Weiß",Red:"Rot",Orange:"Orange",Yellow:"Gelb","Light green":"Hellgrün",Green:"Grün",Aquamarine:"Aquamarinblau",Turquoise:"Türkis","Light blue":"Hellblau",Blue:"Blau",Purple:"Violett","Editor block content toolbar":"Editor Blockinhalt-Toolbar","Editor contextual toolbar":"Editor kontextuelle Toolbar",HEX:"HEX",Accept:"Akzeptieren","No results found":"Keine Ergebnisse gefunden","No searchable items":"Keine durchsuchbaren Elemente","Editor dialog":"Editor-Dialog",Close:"Schließen",Undo:"Rückgängig",Redo:"Wiederherstellen","Upload in progress":"Upload läuft","Widget toolbar":"Widget Werkzeugleiste","Insert paragraph before block":"Absatz vor Block einfügen","Insert paragraph after block":"Absatz nach Block einfügen","Press Enter to type after or press Shift + Enter to type before the widget":"Drücken Sie die Eingabetaste, um nach dem Widget zu tippen oder Shift + Eingabetaste, um vor dem Widget zu tippen.","Words: %0":"Wörter: %0 ","Characters: %0":"Zeichen: %0 "} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/el.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/el.js index 8a32a048fd114d6ac686f37d76f0b6d64382678c..019e40ac58dfba0f8994bb44f9443096edd29841 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/el.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/el.js @@ -1 +1 @@ -(function(d){ const l = d['el'] = d['el'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Στοίχιση αÏιστεÏά","Align right":"Στοίχιση δεξιά","Align center":"Στοίχιση στο κÎντÏο",Justify:"ΠλήÏης στοίχηση","Text alignment":"Στοίχιση κειμÎνου","Text alignment toolbar":"ΓÏαμμή εÏγαλείων στοίχισης κειμÎνου",Bold:"Έντονα",Italic:"Πλάγια",Underline:"ΥπογÏάμμιση",Code:"Κώδικας",Strikethrough:"ΔιακÏιτή διαγÏαφή",Subscript:"Δείκτης",Superscript:"ΕκθÎτης","Block quote":"ΠεÏιοχή παÏάθεσης","Insert code block":"Εισαγωγή τμήματος κώδικα","Plain text":"Απλό κÎιμενο",Cancel:"ΑκÏÏωση",Clear:"ΚαθαÏισμός","Remove color":"ΑπομάκÏυνση χÏώματος","Restore default":"ΕπαναφοÏά Ï€Ïοεπιλογής",Save:"Αποθήκευση","Show more items":"Î Ïοβολή πεÏισσότεÏων αντικειμÎνων","%0 of %1":"%0 από %1","Cannot upload file:":"ΑδÏνατη η αποστολή του αÏχείου:","Rich Text Editor. Editing area: %0":"Î ÏόγÏαμμα επεξεÏγασίας εμπλουτισμÎνου κειμÎνου. ΠεÏιοχή επεξεÏγασίας: %0","Insert with file manager":"Εισαγωγή με τη διαχείÏιση αÏχείων","Replace with file manager":"Αντικατάσταση με τη διαχείÏιση αÏχείων","Insert image with file manager":"Εισαγωγή εικόνας με τη διαχείÏιση αÏχείων","Replace image with file manager":"Αντικατάσταση εικόνας με τη διαχείÏιση αÏχείων","Find and replace":"ΕÏÏεση και αντικατάσταση","Find in text…":"ΕÏÏεση στο κείμενο...",Find:"ΕÏÏεση","Previous result":"Î ÏοηγοÏμενο αποτÎλεσμα","Next result":"Επόμενο αποτÎλεσμα",Replace:"Αντικατάσταση","Replace all":"Αντικατάσταση όλων","Match case":"ΤαίÏιασμα πεζών-ΚΕΦΑΛΑΙΩÎ","Whole words only":"Μόνο ολόκληÏες λÎξεις","Replace with…":"Αντικατάσταση με...","Text to find must not be empty.":"Το κείμενο Ï€Ïος εÏÏεση δεν Ï€ÏÎπει να είναι άδειο.","Tip: Find some text first in order to replace it.":"Επισήμανση: Î’Ïείτε κάποιο κείμενο αÏχικά ώστε να το αντικαταστήσετε.","Advanced options":"Î ÏοηγμÎνες επιλογÎÏ‚",Paragraph:"ΠαÏάγÏαφος",Heading:"Κεφαλίδα","Choose heading":"ΕπιλÎξτε κεφαλίδα","Heading 1":"Κεφαλίδα 1","Heading 2":"Κεφαλίδα 2","Heading 3":"Κεφαλίδα 3","Heading 4":"Κεφαλίδα 4","Heading 5":"Κεφαλίδα 5","Heading 6":"Κεφαλίδα 6","Type your title":"ΓÏάψτε τον τίτλο σας εδώ","Type or paste your content here.":"ΓÏάψτε ή επικολλήστε τα πεÏιεχόμενά σας εδώ.","Horizontal line":"ΟÏιζόντια γÏαμμή","HTML object":"Αντικείμενο HTML","Increase indent":"ΑÏξηση εσοχής","Decrease indent":"Μείωση εσοχής",Unlink:"ΑφαίÏεση συνδÎσμου",Link:"ΣÏνδεσμος","Link URL":"ΔιεÏθυνση συνδÎσμου","Link image":"Εικόνα συνδÎσμου","Edit link":"ΕπεξεÏγασία συνδÎσμου","Open link in new tab":"Άνοιγμα συνδÎσμου σε νÎα καÏÏ„Îλα","This link has no URL":"Ο σÏνδεσμος δεν Îχει διεÏθυνση","Open in a new tab":"Άνοιγμα σε νÎα καÏÏ„Îλα",Downloadable:"Με δυνατότητα λήψης","Numbered List":"Λίστα με αÏιθμοÏÏ‚","Bulleted List":"Λίστα με κουκκίδες","To-do List":"Λίστα Ï€ÏογÏαμματισμÎνων ενεÏγειών","Bulleted list styles toolbar":"ΓÏαμμή εÏγαλείων στυλ λιστών με κουκίδες","Numbered list styles toolbar":"ΓÏαμμή εÏγαλείων στυλ λιστών με αÏιθμοÏÏ‚","Toggle the disc list style":"Εναλλαγή του στυλ λίστας με δίσκο","Toggle the circle list style":"Εναλλαγή του στυλ λίστας με κÏκλο","Toggle the square list style":"Εναλαγή του στυλ λίστας με τετÏάγωνο","Toggle the decimal list style":"Εναλλαγή του στυλ λίστας με δεκαδικά","Toggle the decimal with leading zero list style":"Εναλλαγή του στυλ λίστας δεκαδικών με μηδενικά","Toggle the lower–roman list style":"Εναλλαγή του στυλ λίστας με μικÏά Ïωμαϊκά","Toggle the upper–roman list style":"Εναλλαγή του στυλ λίστας με κεφαλαία Ïωμαϊκά","Toggle the lower–latin list style":"Εναλλαγή του στυλ λίστας με μικÏά λατινικά","Toggle the upper–latin list style":"Εναλλαγή του στυλ λίστας με κεφαλαία λατινικά",Disc:"Δίσκος",Circle:"ΚÏκλος",Square:"ΤετÏάγωνο",Decimal:"Δεκαδικό","Decimal with leading zero":"Δεκαδικό με μηδενικά","Lower–roman":"ΜικÏά Ïωμαϊκά","Upper-roman":"Κεφαλαία Ïωμαϊκά","Lower-latin":"ΜικÏά λατινικά","Upper-latin":"Κεφαλαία λατινικά","List properties":"Ιδιότητες λίστας","Start at":"ΕναÏξη από","Start index must be greater than 0.":"Ο αÏιθμός ÎναÏξης Ï€ÏÎπει να είναι μεγαλÏτεÏος από 0.","Reversed order":"ΑντίστÏοφη σειÏά","Remove Format":"ΑπομάκÏυνση μοÏφοποίησης","Select all":"Επιλογή όλων","Show blocks":"Εμφάνιση μπλοκ",Source:"Κώδικας","Special characters":"Ειδικοί χαÏακτήÏες",All:"Όλα",Arrows:"Î’Îλη",Currency:"Îόμισμα",Latin:"Λατινικά",Mathematical:"Μαθηματικά",Text:"Κείμενο","leftwards simple arrow":"απλό βÎλος Ï€Ïος τα αÏιστεÏά","rightwards simple arrow":"απλό βÎλος Ï€Ïος τα δεξιά","upwards simple arrow":"απλό βÎλος Ï€Ïος τα πάνω","downwards simple arrow":"απλό βÎλος Ï€Ïος τα κάτω","leftwards double arrow":"αÏιστεÏÏŒ διπλό βÎλος","rightwards double arrow":"δεξιό διπλό βÎλος","upwards double arrow":"άνω διπλό βÎλος","downwards double arrow":"κάτω διπλό βÎλος","leftwards dashed arrow":"αÏιστεÏÏŒ βÎλος με παÏλες","rightwards dashed arrow":"δεξιό βÎλος με παÏλες","upwards dashed arrow":"άνω βÎλος με παÏλες","downwards dashed arrow":"κάτω βÎλος με παÏλες","leftwards arrow to bar":"αÏιστεÏÏŒ βÎλος σε γÏαμμή","rightwards arrow to bar":"δεξιό βÎλος σε γÏαμμή","upwards arrow to bar":"άνω βÎλος σε γÏαμμή","downwards arrow to bar":"κάτω βÎλος σε γÏαμμή","up down arrow with base":"άνω κάτω βÎλος με βάση","back with leftwards arrow above":"όπισθεν με αÏιστεÏÏŒ βÎλος άνω","end with leftwards arrow above":"Ï„Îλος με αÏιστεÏÏŒ βÎλος άνω","on with exclamation mark with left right arrow above":"ενεÏγό με θαυμαστικό με αÏιστεÏÏŒ δεξί βÎλος άνω","soon with rightwards arrow above":"σÏντομα με δεξί βÎλος άνω","top with upwards arrow above":"κοÏυφή με άνω βÎλος επάνω","Dollar sign":"ΣÏμβολο δολλαÏίου","Euro sign":"ΣÏμβολο ευÏÏŽ","Yen sign":"ΣÏμβολο ΓιÎν","Pound sign":"ΣÏμβολο λίÏας Αγγλίας","Cent sign":"ΣÏμβολο λεπτοÏ","Euro-currency sign":"ΣÏμβολο ευÏωνομίσματος","Colon sign":"ΣÏμβολο άνω κάτω τελείας","Cruzeiro sign":"ΣÏμβολο ΚÏουζÎιÏο","French franc sign":"ΣÏμβολο Î³Î±Î»Î»Î¹ÎºÎ¿Ï Ï†Ïάγκου","Lira sign":"ΣÏμβολο λίÏας ΤουÏκίας","Currency sign":"ΣÏμβολο νομίσματος","Bitcoin sign":"ΣÏμβολο Bitcoin","Mill sign":"ΣÏμβολο Ï‡Î¹Î»Î¹Î¿ÏƒÏ„Î¿Ï Î½Î¿Î¼Î¯ÏƒÎ¼Î±Ï„Î¿Ï‚","Naira sign":"ΣÏμβολο ÎαÎÏα ÎιγηÏίας","Peseta sign":"ΣÏμβολο πεσÎτας Ισπανίας","Rupee sign":"ΣÏμβολο Ïουπίας Ινδίας","Won sign":"ΣÏμβολο Γουάν Κίνας","New sheqel sign":"ΣÏμβολο νÎου σεκÎλ ΙσÏαήλ","Dong sign":"ΣÏμβολο Îτόνγκ Βιετνάμ","Kip sign":"ΣÏμβολο κίπ Λάος","Tugrik sign":"ΣÏμβολο τουγκÏίκ Μογγολίας","Drachma sign":"ΣÏμβολο δÏαχμής Ελλάδας","German penny sign":"ΣÏμβολο γεÏÎ¼Î±Î½Î¹ÎºÎ¿Ï Î»ÎµÏ€Ï„Î¿Ï","Peso sign":"ΣÏμβολο Ï€Îσος ΜεξικοÏ","Guarani sign":"ΣÏμβολο γκουαÏάνι ΠαÏαγουάης","Austral sign":"ΣÏμβολο αουστÏάλ ΑÏγεντινής","Hryvnia sign":"ΣÏμβολο γÏίβνα ΟυκÏανίας","Cedi sign":"ΣÏμβολο σίντι Γκάνας","Livre tournois sign":"ΣÏμβολο λίβÏα Ï„Î¿Ï…Ï Î“Î±Î»Î»Î¯Î±Ï‚","Spesmilo sign":"ΣÏμβολο σπεσμίλο","Tenge sign":"ΣÏμβολο Ï„Îνγκε Καζακστάν","Indian rupee sign":"ΣÏμβολο Ïουπίας Ινδίας","Turkish lira sign":"ΣÏμβολο λίÏας ΤουÏκίας","Nordic mark sign":"ΣÏμβολο μάÏκου ÎοÏβηγίας","Manat sign":"ΣÏμβολο μανάτ ΑζεÏμπαϊτζάν","Ruble sign":"ΣÏμβολο Ïουβλίου Ρωσίας","Latin capital letter a with macron":"Λατινικό κεφαλαίο γÏάμμα a με παÏλα","Latin small letter a with macron":"Λατινικό μικÏÏŒ γÏάμμα a με παÏλα","Latin capital letter a with breve":"Λατινικό κεφαλαίο γÏάμμα a με μισοφÎγγαÏο","Latin small letter a with breve":"Λατινικό μικÏÏŒ γÏάμμα a με μισοφÎγγαÏο","Latin capital letter a with ogonek":"Λατινικό κεφαλαίο γÏάμμα a με μικÏή ουÏά","Latin small letter a with ogonek":"Λατινικό μικÏÏŒ γÏάμμα a με μικÏή ουÏά","Latin capital letter c with acute":"Λατινικό κεφαλαίο γÏάμμα c με δεξί τόνο","Latin small letter c with acute":"Λατινικό μικÏÏŒ γÏάμμα c με δεξί τόνο","Latin capital letter c with circumflex":"Λατινικό κεφαλαίο γÏάμμα c με καπελάκι","Latin small letter c with circumflex":"Λατινικό μικÏÏŒ γÏάμμα c με καπελάκι","Latin capital letter c with dot above":"Λατινικό κεφαλαίο γÏάμμα c με τελεία επάνω","Latin small letter c with dot above":"Λατινικό μικÏÏŒ γÏάμμα c με τελεία επάνω","Latin capital letter c with caron":"Λατινικό κεφαλαίο γÏάμμα c με ανάποδο καπελάκι","Latin small letter c with caron":"Λατινικό μικÏÏŒ γÏάμμα c με ανάποδο καπελάκι","Latin capital letter d with caron":"Λατινικό κεφαλαίο γÏάμμα d με ανάποδο καπελάκι","Latin small letter d with caron":"Λατινικό μικÏÏŒ γÏάμμα d με ανάποδο καπελάκι","Latin capital letter d with stroke":"Λατινικό κεφαλαίο γÏάμμα d με σταυÏωμÎνη παÏλα","Latin small letter d with stroke":"Λατινικό μικÏÏŒ γÏάμμα d με σταυÏωμÎνη παÏλα","Latin capital letter e with macron":"Λατινικό κεφαλαίο γÏάμμα e με παÏλα","Latin small letter e with macron":"Λατινικό μικÏÏŒ γÏάμμα e με παÏλα","Latin capital letter e with breve":"Λατινικό κεφαλαίο γÏάμμα e με μισοφÎγγαÏο","Latin small letter e with breve":"Λατινικό μικÏÏŒ γÏάμμα e με μισοφÎγγαÏο","Latin capital letter e with dot above":"Λατινικό κεφαλαίο γÏάμμα e με τελεία επάνω","Latin small letter e with dot above":"Λατινικό μικÏÏŒ γÏάμμα e με τελεία επάνω","Latin capital letter e with ogonek":"Λατινικό κεφαλαίο γÏάμμα e με μικÏή ουÏά","Latin small letter e with ogonek":"Λατινικό μικÏÏŒ γÏάμμα e με μικÏή ουÏά","Latin capital letter e with caron":"Λατινικό κεφαλαίο γÏάμμα e με ανάποδο καπελάκι","Latin small letter e with caron":"Λατινικό μικÏÏŒ γÏάμμα e με ανάποδο καπελάκι","Latin capital letter g with circumflex":"Λατινικό κεφαλαίο γÏάμμα g με καπελάκι","Latin small letter g with circumflex":"Λατινικό μικÏÏŒ γÏάμμα g με καπελάκι","Latin capital letter g with breve":"Λατινικό κεφαλαίο γÏάμμα g με βÏαχεία","Latin small letter g with breve":"Λατινικό μικÏÏŒ γÏάμμα g με βÏαχεία","Latin capital letter g with dot above":"Λατινικό κεφαλαίο γÏάμμα g με τελεία επάνω","Latin small letter g with dot above":"Λατινικό μικÏÏŒ γÏάμμα g με τελεία επάνω","Latin capital letter g with cedilla":"Λατινικό κεφαλαίο γÏάμμα g με υποστιγμή","Latin small letter g with cedilla":"Λατινικό μικÏÏŒ γÏάμμα g με υποστιγμή","Latin capital letter h with circumflex":"Λατινικό κεφαλαίο γÏάμμα h με αιχμή","Latin small letter h with circumflex":"Λατινικό μικÏÏŒ γÏάμμα h με αιχμή","Latin capital letter h with stroke":"Λατινικό κεφαλαίο γÏάμμα h με κάθετο","Latin small letter h with stroke":"Λατινικό μικÏÏŒ γÏάμμα h με κάθετο","Latin capital letter i with tilde":"Λατινικό κεφαλαίο γÏάμμα i με πεÏισπωμÎνη","Latin small letter i with tilde":"Λατινικό μικÏÏŒ γÏάμμα i με πεÏισπωμÎνη","Latin capital letter i with macron":"Λατινικό κεφαλαίο γÏάμμα i με μακÏιά παÏλα","Latin small letter i with macron":"Λατινικό μικÏÏŒ γÏάμμα i με μακÏιά παÏλα","Latin capital letter i with breve":"Λατινικό κεφαλαίο γÏάμμα i με βÏαχεία","Latin small letter i with breve":"Λατινικό μικÏÏŒ γÏάμμα i με βÏαχεία","Latin capital letter i with ogonek":"Λατινικό κεφαλαίο γÏάμμα i με ανάστÏοφη υποστιγμή","Latin small letter i with ogonek":"Λατινικό μικÏÏŒ γÏάμμα i με ανάστÏοφη υποστιγμή","Latin capital letter i with dot above":"Λατινικό κεφαλαίο γÏάμμα i με τελεία επάνω","Latin small letter dotless i":"Λατινικό μικÏÏŒ γÏάμμα i χωÏίς τελεία","Latin capital ligature ij":"Λατινικό κεφαλαίο σÏμπλεγμα ij","Latin small ligature ij":"Λατινικό μικÏÏŒ σÏμπλεγμα ij","Latin capital letter j with circumflex":"Λατινικό κεφαλαίο γÏάμμα j με αιχμή","Latin small letter j with circumflex":"Λατινικό μικÏÏŒ γÏάμμα j με αιχμή","Latin capital letter k with cedilla":"Λατινικό κεφαλαίο γÏάμμα k με υποστιγμή","Latin small letter k with cedilla":"Λατινικό μικÏÏŒ γÏάμμα k με υποστιγμή","Latin small letter kra":"Λατινικό μικÏÏŒ γÏάμμα kra","Latin capital letter l with acute":"Λατινικό κεφαλαίο γÏάμμα l με οξεία","Latin small letter l with acute":"Λατινικό μικÏÏŒ γÏάμμα l με οξεία","Latin capital letter l with cedilla":"Λατινικό κεφαλαίο γÏάμμα l με υποστιγμή","Latin small letter l with cedilla":"Λατινικό μικÏÏŒ γÏάμμα l με υποστιγμή","Latin capital letter l with caron":"Λατινικό κεφαλαίο γÏάμμα l με αμβλεία","Latin small letter l with caron":"Λατινικό μικÏÏŒ γÏάμμα l με αμβλεία","Latin capital letter l with middle dot":"Λατινικό κεφαλαίο γÏάμμα l με μεσαία τελεία","Latin small letter l with middle dot":"Λατινικό μικÏÏŒ γÏάμμα l με μεσαία τελεία","Latin capital letter l with stroke":"Λατινικό κεφαλαίο γÏάμμα l με κάθετο","Latin small letter l with stroke":"Λατινικό μικÏÏŒ γÏάμμα l με κάθετο","Latin capital letter n with acute":"Λατινικό κεφαλαίο γÏάμμα n με οξεία","Latin small letter n with acute":"Λατινικό μικÏÏŒ γÏάμμα n με οξεία","Latin capital letter n with cedilla":"Λατινικό κεφαλαίο γÏάμμα n με υποστιγμή","Latin small letter n with cedilla":"Λατινικό μικÏÏŒ γÏάμμα n με υποστιγμή","Latin capital letter n with caron":"Λατινικό κεφαλαίο γÏάμμα n με αμβλεία","Latin small letter n with caron":"Λατινικό μικÏÏŒ γÏάμμα n με αμβλεία","Latin small letter n preceded by apostrophe":"Λατινικό μικÏÏŒ γÏάμμα n με απόστÏοφο που Ï€Ïοηγείται","Latin capital letter eng":"Λατινικό κεφαλαίο γÏάμμα eng","Latin small letter eng":"Λατινικό μικÏÏŒ γÏάμμα eng","Latin capital letter o with macron":"Λατινικό κεφαλαίο γÏάμμα o με μακÏιά παÏλα","Latin small letter o with macron":"Λατινικό κεφαλαίο γÏάμμα o με μακÏιά παÏλα","Latin capital letter o with breve":"Λατινικό κεφαλαίο γÏάμμα o με βÏαχεία","Latin small letter o with breve":"Λατινικό μικÏÏŒ γÏάμμα o με βÏαχεία","Latin capital letter o with double acute":"Λατινικό κεφαλαίο γÏάμμα o με διπλή οξεία","Latin small letter o with double acute":"Λατινικό μικÏÏŒ γÏάμμα o με διπλή οξεία","Latin capital ligature oe":"Λατινικό κεφαλαίο σÏμπλεγμα oe","Latin small ligature oe":"Λατινικό μικÏÏŒ σÏμπλεγμα oe","Latin capital letter r with acute":"Λατινικό κεφαλαίο γÏάμμα r με οξεία","Latin small letter r with acute":"Λατινικό μικÏÏŒ γÏάμμα r με οξεία","Latin capital letter r with cedilla":"Λατινικό κεφαλαίο γÏάμμα r με υποστιγμή","Latin small letter r with cedilla":"Λατινικό μικÏÏŒ γÏάμμα r με υποστιγμή","Latin capital letter r with caron":"Λατινικό κεφαλαίο γÏάμμα r με αμβλεία","Latin small letter r with caron":"Λατινικό μικÏÏŒ γÏάμμα r με αμβλεία","Latin capital letter s with acute":"Λατινικό κεφαλαίο γÏάμμα s με οξεία","Latin small letter s with acute":"Λατινικό μικÏÏŒ γÏάμμα s με οξεία","Latin capital letter s with circumflex":"Λατινικό κεφαλαίο γÏάμμα s με αιχμή","Latin small letter s with circumflex":"Λατινικό μικÏÏŒ γÏάμμα s με αιχμή","Latin capital letter s with cedilla":"Λατινικό κεφαλαίο γÏάμμα s με υποστιγμή","Latin small letter s with cedilla":"Λατινικό μικÏÏŒ γÏάμμα s με υποστιγμή","Latin capital letter s with caron":"Λατινικό κεφαλαίο γÏάμμα s με αμβλεία","Latin small letter s with caron":"Λατινικό μικÏÏŒ γÏάμμα s με αμβλεία","Latin capital letter t with cedilla":"Λατινικό κεφαλαίο γÏάμμα t με υποστιγμή","Latin small letter t with cedilla":"Λατινικό μικÏÏŒ γÏάμμα t με υποστιγμή","Latin capital letter t with caron":"Λατινικό κεφαλαίο γÏάμμα t με αμβλεία","Latin small letter t with caron":"Λατινικό μικÏÏŒ γÏάμμα t με αμβλεία","Latin capital letter t with stroke":"Λατινικό κεφαλαίο γÏάμμα t με κάθετο","Latin small letter t with stroke":"Λατινικό μικÏÏŒ γÏάμμα t με κάθετο","Latin capital letter u with tilde":"Λατινικό κεφαλαίο γÏάμμα u με πεÏισπωμÎνη","Latin small letter u with tilde":"Λατινικό μικÏÏŒ γÏάμμα u με πεÏισπωμÎνη","Latin capital letter u with macron":"Λατινικό κεφαλαίο γÏάμμα u με μακÏιά παÏλα","Latin small letter u with macron":"Λατινικό μικÏÏŒ γÏάμμα u με μακÏιά παÏλα","Latin capital letter u with breve":"Λατινικό κεφαλαίο γÏάμμα u με βÏαχεία","Latin small letter u with breve":"Λατινικό μικÏÏŒ γÏάμμα u με βÏαχεία","Latin capital letter u with ring above":"Λατινικό κεφαλαίο γÏάμμα u με δακτÏλιο επάνω","Latin small letter u with ring above":"Λατινικό μικÏÏŒ γÏάμμα u με δακτÏλιο επάνω","Latin capital letter u with double acute":"Λατινικό κεφαλαίο γÏάμμα u με διπλή οξεία","Latin small letter u with double acute":"Λατινικό μικÏÏŒ γÏάμμα u με διπλή οξεία","Latin capital letter u with ogonek":"Λατινικό κεφαλαίο γÏάμμα u με ανάστÏοφη υποστιγμή","Latin small letter u with ogonek":"Λατινικό μικÏÏŒ γÏάμμα u με ανάστÏοφη υποστιγμή","Latin capital letter w with circumflex":"Λατινικό κεφαλαίο γÏάμμα w με αιχμή","Latin small letter w with circumflex":"Λατινικό μικÏÏŒ γÏάμμα w με αιχμή","Latin capital letter y with circumflex":"Λατινικό κεφαλαίο γÏάμμα y με αιχμή","Latin small letter y with circumflex":"Λατινικό μικÏÏŒ γÏάμμα y με αιχμή","Latin capital letter y with diaeresis":"Λατινικό κεφαλαίο γÏάμμα y με διαλυτικά","Latin capital letter z with acute":"Λατινικό κεφαλαίο γÏάμμα z με οξεία","Latin small letter z with acute":"Λατινικό μικÏÏŒ γÏάμμα z με οξεία","Latin capital letter z with dot above":"Λατινικό κεφαλαίο γÏάμμα z με τελεία επάνω","Latin small letter z with dot above":"Λατινικό μικÏÏŒ γÏάμμα z με τελεία επάνω","Latin capital letter z with caron":"Λατινικό κεφαλαίο γÏάμμα z με αμβλεία","Latin small letter z with caron":"Λατινικό μικÏÏŒ γÏάμμα z με αμβλεία","Latin small letter long s":"Λατινικό μικÏÏŒ γÏάμμα μακÏÏŒ s","Less-than sign":"ΣÏμβολο μικÏότεÏο από","Greater-than sign":"ΣÏμβολο μεγαλÏτεÏο από","Less-than or equal to":"ΣÏμβολο μικÏότεÏο ή ίσο από","Greater-than or equal to":"ΣÏμβολο μεγαλÏτεÏο ή ίσο από","En dash":"Μεγάλη παÏλα","Em dash":"ΜικÏή παÏλα",Macron:"ΜακÏιά παÏλα",Overline:"Άνω γÏαμμή","Degree sign":"ΣÏμβολο βαθμών Κελσίου","Minus sign":"ΣÏμβολο αφαίÏεσης","Plus-minus sign":"ΣÏμβολο συν-πλην","Division sign":"ΣÏμβολο διαίÏεσης","Fraction slash":"Κάθετος κλάσματος","Multiplication sign":"ΣÏμβολο πολλαπλασιασμοÏ","Latin small letter f with hook":"Λατινικό μικÏÏŒ γÏάμμα f με άγκιστÏο",Integral:"ΟλοκλήÏωμα","N-ary summation":"Îιοστή άθÏοιση",Infinity:"ΆπειÏο","Square root":"ΤετÏαγωνική Ïίζα","Tilde operator":"Τελεστής πεÏισπωμÎνης","Approximately equal to":"Κατά Ï€ÏοσÎγγιση ίσο με","Almost equal to":"ΠεÏίπου ίσο με","Not equal to":"Όχι ίσο με","Identical to":"Ταυτόσημο με","Element of":"Στοιχείο του","Not an element of":"Όχι στοιχείο του","Contains as member":"ΠεÏιÎχει ως μÎλος","N-ary product":"Îιοστό παÏαγοντικό","Logical and":"Λογικός τελεστής τομής","Logical or":"Λογικός τελεστής Îνωσης","Not sign":"ΣÏμβολο άÏνησης",Intersection:"Τομή",Union:"Ένωση","Partial differential":"ΜεÏικό διαφοÏικό","For all":"ΣÏμβολο για όλα","There exists":"ΥπάÏχει","Empty set":"Κενό σÏνολο",Nabla:"Ανάδελτα","Asterisk operator":"Τελεστής αστεÏίσκος","Proportional to":"Αναλογικό με",Angle:"Γωνία","Vulgar fraction one quarter":"Ανάγωγο Κλάσμα ενός τετάÏτου","Vulgar fraction one half":"Ανάγωγο Κλάσμα ενός δευτÎÏου","Vulgar fraction three quarters":"Ανάγωγο Κλάσμα Ï„Ïιών τετάÏτων","Single left-pointing angle quotation mark":"Μονό εÏωτηματικό αÏιστεÏής γωνίας","Single right-pointing angle quotation mark":"Μονό εÏωτηματικό δεξιάς γωνίας","Left-pointing double angle quotation mark":"Διπλό εÏωτηματικό αÏιστεÏής γωνίας","Right-pointing double angle quotation mark":"Διπλό εÏωτηματικό δεξιάς γωνίας","Left single quotation mark":"Μονό αÏιστεÏÏŒ εÏωτηματικό","Right single quotation mark":"Μονό δεξιό εÏωτηματικό","Left double quotation mark":"Διπλό αÏιστεÏÏŒ εÏωτηματικό","Right double quotation mark":"Δεξί διπλό εÏωτηματικό","Single low-9 quotation mark":"Μονό κάτω-9 εισαγωγικό","Double low-9 quotation mark":"Διπλό κάτω-9 εισαγωγικό","Inverted exclamation mark":"ΑντεστÏαμμÎνο θαυμαστικό","Inverted question mark":"ΑντεστÏαμμÎνο εÏωτηματικό","Two dot leader":"Οδηγός δÏο τελειών","Horizontal ellipsis":"ΟÏιζόντια Îλλειψη","Double dagger":"Διπλός σταυÏός","Per mille sign":"ΣÏμβολο τοις χιλίοις","Per ten thousand sign":"ΣÏμβολο δεκάκις χιλίοις","Double exclamation mark":"Διπλό θαυμαστικό","Question exclamation mark":"ΕÏωτηματικό","Exclamation question mark":"Θαυμαστικό","Double question mark":"Διπλό εÏωτηματικό","Copyright sign":"ΣÏμβολο πνευματικής ιδιοκτησίας","Registered sign":"ΣÏμβολο καταχώÏησης","Trade mark sign":"ΣÏμβολο εμποÏÎ¹ÎºÎ¿Ï ÏƒÎ®Î¼Î±Ï„Î¿Ï‚","Section sign":"ΣÏμβολο τομÎα","Paragraph sign":"ΣÏμβολο παÏαγÏάφου","Reversed paragraph sign":"ΣÏμβολο αντεστÏαμμÎνης παÏαγÏάφου","Character categories":"ΚατηγοÏίες χαÏακτήÏων",Styles:"Στυλ","Multiple styles":"Πολλαπλά στυλ","Block styles":"Στυλ για μπλοκ","Text styles":"Στυλ για κείμενο","Insert table":"Εισαγωγή πίνακα","Header column":"Στήλη κεφαλίδας","Insert column left":"Εισαγωγή στήλης αÏιστεÏά","Insert column right":"Εισαγωγή στήλης δεξιά","Delete column":"ΔιαγÏαφή στήλης","Select column":"Επιλογή στήλης",Column:"Στήλη","Header row":"ΓÏαμμή κεφαλίδας","Insert row below":"Εισαγωγή γÏαμμής κάτω","Insert row above":"Εισαγωγή γÏαμμής πάνω","Delete row":"ΔιαγÏαφή γÏαμμής","Select row":"Επιλογή γÏαμμής",Row:"ΓÏαμμή","Merge cell up":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Ï€Î¬Î½Ï‰","Merge cell right":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Î´ÎµÎ¾Î¹Î¬","Merge cell down":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Ï„Ï‰","Merge cell left":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Î±ÏιστεÏά","Split cell vertically":"ΔιαχωÏισμός ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Î¸ÎµÏ„Î±","Split cell horizontally":"ΔιαχωÏισμός ÎºÎµÎ»Î¹Î¿Ï Î¿Ïιζόντια","Merge cells":"Συγχώνευση κελιών","Table toolbar":"ΓÏαμμή εÏγαλείων πίνακα","Table properties":"Ιδιότητες πίνακα","Cell properties":"Ιδιότητες κελιοÏ",Border:"ΠεÏίγÏαμμα",Style:"Στυλ",Width:"Πλάτος",Height:"Ύψος",Color:"ΧÏώμα",Background:"ΥπόβαθÏο",Padding:"Απόσταση κειμÎνου από το πεÏίγÏαμμα",Dimensions:"Διαστάσεις","Table cell text alignment":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï Ï€Î¯Î½Î±ÎºÎ±",Alignment:"Στοίχιση","Horizontal text alignment toolbar":"ΓÏαμμή εÏγαλείων οÏιζόντιας στοίχισης κειμÎνου","Vertical text alignment toolbar":"ΓÏαμμή εÏγαλείων κάθετης στοίχισης κειμÎνου","Table alignment toolbar":"ΓÏαμμή εÏγαλείων στοίχισης πίνακα",None:"ΧωÏίς πεÏίγÏαμμα",Solid:"ΣυμπαγÎÏ‚",Dotted:"Διάστικτο",Dashed:"Με παÏλες",Double:"Διπλό",Groove:"Βαθουλωτό",Ridge:"Ραχωτό",Inset:"Κείμενο με βάθος",Outset:"Κείμενο με Ïψος","Align cell text to the left":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î± αÏιστεÏά","Align cell text to the center":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î¿ κÎντÏο","Align cell text to the right":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î± δεξιά","Justify cell text":"ΠλήÏης στοίχιση κειμÎνου κελιοÏ","Align cell text to the top":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÎµÏ€Î¬Î½Ï‰","Align cell text to the middle":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î¿ μÎσο","Align cell text to the bottom":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Ï„Ï‰","Align table to the left":"Στοίχιση πίνακα στα αÏιστεÏά","Center table":"Στοίχιση πίνακα στο κÎντÏο","Align table to the right":"Στοίχιση πίνακα στα δεξιά","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Το χÏώμα δεν είναι ÎγκυÏο. Δοκιμάστε «#FF0000» ή «rgb(255,0,0)» ή «red».","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Η τιμή δεν είναι ÎγκυÏη. Δοκιμάστε «10px» ή «2em» ή απλά «2».","Color picker":"ΕπιλογÎας χÏώματος","Toggle caption off":"Εναλλαγή απόκÏυψης λεζάντας","Toggle caption on":"Εναλλαγής εμφάνισης λεζάντας","Enter table caption":"Εισαγωγή λεζάντας πίνακα","Rich Text Editor":"ΕπεξεÏγαστής εμπλουτισμÎνου κειμÎνου","Editor editing area: %0":"ΠεÏιοχή επεξεÏγασίας Ï€ÏογÏάμματος επεξεÏγασίας: %0","Edit block":"ΕπεξεÏγασία τμήματος","Click to edit block":"Κάντε κλικ για να επεξεÏγαστείτε το μπλοκ","Drag to move":"ΣÏÏετε για μετακίνηση",Next:"Επόμενο",Previous:"Î ÏοηγοÏμενο","Editor toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγαστή","Dropdown toolbar":"ΓÏαμμή εÏγαλείων αναδυόμενου μενοÏ",Black:"ΜαÏÏο","Dim grey":"Θολό γκÏι",Grey:"ΓκÏι","Light grey":"Φωτινό γκÏι",White:"Λευκό",Red:"Κόκκινο",Orange:"ΠοÏτοκαλί",Yellow:"ΚίτÏινο","Light green":"Φωτινό Ï€Ïάσινο",Green:"Î Ïάσινο",Aquamarine:"ΑκουαμαÏίνα",Turquoise:"ΤιÏκουάζ","Light blue":"Φωτινό μπλε",Blue:"Μπλε",Purple:"ΠοÏφυÏÏŒ","Editor block content toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγασίας πεÏιεχομÎνου αποκλεισμοÏ","Editor contextual toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγασίας συμφÏαζομÎνων",HEX:"Δεκαεξαδική μοÏφή χÏωμάτων",Accept:"Αποδοχή","No results found":"Δεν βÏÎθηκαν αποτελÎσματα","No searchable items":"Δεν υπάÏχει δυνατότητα αναζήτησης στοιχείων","Editor dialog":"ΠαÏάθυÏο διαλόγου επεξεÏγαστή",Close:"Κλείσιμο",Undo:"ΑναίÏεση",Redo:"Επανάληψη","Upload in progress":"Αποστολή σε εξÎλιξη","Widget toolbar":"ΓÏαμμή εÏγαλείων γÏÎ±Ï†Î¹ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…","Insert paragraph before block":"Εισαγωγή παÏαγÏάφου Ï€Ïιν το τμήμα","Insert paragraph after block":"Εισαγωγή παÏαγÏάφου μετά το τμήμα","Press Enter to type after or press Shift + Enter to type before the widget":"Πατήστε Enter για να πληκτÏολογήσετε μετά ή πατήστε Shift + Enter για να πληκτÏολογήσετε Ï€Ïιν από το γÏαφικό στοιχείο","Words: %0":"ΛÎξεις: %0","Characters: %0":"ΧαÏακτήÏες: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['el'] = d['el'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Στοίχιση αÏιστεÏά","Align right":"Στοίχιση δεξιά","Align center":"Στοίχιση στο κÎντÏο",Justify:"ΠλήÏης στοίχηση","Text alignment":"Στοίχιση κειμÎνου","Text alignment toolbar":"ΓÏαμμή εÏγαλείων στοίχισης κειμÎνου",Bold:"Έντονα",Italic:"Πλάγια",Underline:"ΥπογÏάμμιση",Code:"Κώδικας",Strikethrough:"ΔιακÏιτή διαγÏαφή",Subscript:"Δείκτης",Superscript:"ΕκθÎτης","Block quote":"ΠεÏιοχή παÏάθεσης","Insert code block":"Εισαγωγή τμήματος κώδικα","Plain text":"Απλό κÎιμενο",Cancel:"ΑκÏÏωση",Clear:"ΚαθαÏισμός","Remove color":"ΑπομάκÏυνση χÏώματος","Restore default":"ΕπαναφοÏά Ï€Ïοεπιλογής",Save:"Αποθήκευση","Show more items":"Î Ïοβολή πεÏισσότεÏων αντικειμÎνων","%0 of %1":"%0 από %1","Cannot upload file:":"ΑδÏνατη η αποστολή του αÏχείου:","Rich Text Editor. Editing area: %0":"Î ÏόγÏαμμα επεξεÏγασίας εμπλουτισμÎνου κειμÎνου. ΠεÏιοχή επεξεÏγασίας: %0","Insert with file manager":"Εισαγωγή με τη διαχείÏιση αÏχείων","Replace with file manager":"Αντικατάσταση με τη διαχείÏιση αÏχείων","Insert image with file manager":"Εισαγωγή εικόνας με τη διαχείÏιση αÏχείων","Replace image with file manager":"Αντικατάσταση εικόνας με τη διαχείÏιση αÏχείων","Find and replace":"ΕÏÏεση και αντικατάσταση","Find in text…":"ΕÏÏεση στο κείμενο...",Find:"ΕÏÏεση","Previous result":"Î ÏοηγοÏμενο αποτÎλεσμα","Next result":"Επόμενο αποτÎλεσμα",Replace:"Αντικατάσταση","Replace all":"Αντικατάσταση όλων","Match case":"ΤαίÏιασμα πεζών-ΚΕΦΑΛΑΙΩÎ","Whole words only":"Μόνο ολόκληÏες λÎξεις","Replace with…":"Αντικατάσταση με...","Text to find must not be empty.":"Το κείμενο Ï€Ïος εÏÏεση δεν Ï€ÏÎπει να είναι άδειο.","Tip: Find some text first in order to replace it.":"Επισήμανση: Î’Ïείτε κάποιο κείμενο αÏχικά ώστε να το αντικαταστήσετε.","Advanced options":"Î ÏοηγμÎνες επιλογÎÏ‚","Font Size":"ÎœÎγεθος γÏαμματοσειÏάς",Tiny:"ΜικÏοσκοπικό",Small:"ΜικÏÏŒ",Big:"Μεγάλο",Huge:"ΤεÏάστιο","Font Family":"ΟικογÎνεια γÏαμματοσειÏών",Default:"Î Ïοεπιλογή","Font Color":"ΧÏώμα γÏαμματοσειÏάς","Font Background Color":"ΧÏώμα υποβάθÏου γÏαμματοσειÏάς","Document colors":"ΧÏώματα εγγÏάφου",Paragraph:"ΠαÏάγÏαφος",Heading:"Κεφαλίδα","Choose heading":"ΕπιλÎξτε κεφαλίδα","Heading 1":"Κεφαλίδα 1","Heading 2":"Κεφαλίδα 2","Heading 3":"Κεφαλίδα 3","Heading 4":"Κεφαλίδα 4","Heading 5":"Κεφαλίδα 5","Heading 6":"Κεφαλίδα 6","Type your title":"ΓÏάψτε τον τίτλο σας εδώ","Type or paste your content here.":"ΓÏάψτε ή επικολλήστε τα πεÏιεχόμενά σας εδώ.","Horizontal line":"ΟÏιζόντια γÏαμμή","HTML object":"Αντικείμενο HTML","Increase indent":"ΑÏξηση εσοχής","Decrease indent":"Μείωση εσοχής",Unlink:"ΑφαίÏεση συνδÎσμου",Link:"ΣÏνδεσμος","Link URL":"ΔιεÏθυνση συνδÎσμου","Link image":"Εικόνα συνδÎσμου","Edit link":"ΕπεξεÏγασία συνδÎσμου","Open link in new tab":"Άνοιγμα συνδÎσμου σε νÎα καÏÏ„Îλα","This link has no URL":"Ο σÏνδεσμος δεν Îχει διεÏθυνση","Open in a new tab":"Άνοιγμα σε νÎα καÏÏ„Îλα",Downloadable:"Με δυνατότητα λήψης","Numbered List":"Λίστα με αÏιθμοÏÏ‚","Bulleted List":"Λίστα με κουκκίδες","To-do List":"Λίστα Ï€ÏογÏαμματισμÎνων ενεÏγειών","Bulleted list styles toolbar":"ΓÏαμμή εÏγαλείων στυλ λιστών με κουκίδες","Numbered list styles toolbar":"ΓÏαμμή εÏγαλείων στυλ λιστών με αÏιθμοÏÏ‚","Toggle the disc list style":"Εναλλαγή του στυλ λίστας με δίσκο","Toggle the circle list style":"Εναλλαγή του στυλ λίστας με κÏκλο","Toggle the square list style":"Εναλαγή του στυλ λίστας με τετÏάγωνο","Toggle the decimal list style":"Εναλλαγή του στυλ λίστας με δεκαδικά","Toggle the decimal with leading zero list style":"Εναλλαγή του στυλ λίστας δεκαδικών με μηδενικά","Toggle the lower–roman list style":"Εναλλαγή του στυλ λίστας με μικÏά Ïωμαϊκά","Toggle the upper–roman list style":"Εναλλαγή του στυλ λίστας με κεφαλαία Ïωμαϊκά","Toggle the lower–latin list style":"Εναλλαγή του στυλ λίστας με μικÏά λατινικά","Toggle the upper–latin list style":"Εναλλαγή του στυλ λίστας με κεφαλαία λατινικά",Disc:"Δίσκος",Circle:"ΚÏκλος",Square:"ΤετÏάγωνο",Decimal:"Δεκαδικό","Decimal with leading zero":"Δεκαδικό με μηδενικά","Lower–roman":"ΜικÏά Ïωμαϊκά","Upper-roman":"Κεφαλαία Ïωμαϊκά","Lower-latin":"ΜικÏά λατινικά","Upper-latin":"Κεφαλαία λατινικά","List properties":"Ιδιότητες λίστας","Start at":"ΕναÏξη από","Start index must be greater than 0.":"Ο αÏιθμός ÎναÏξης Ï€ÏÎπει να είναι μεγαλÏτεÏος από 0.","Reversed order":"ΑντίστÏοφη σειÏά","Remove Format":"ΑπομάκÏυνση μοÏφοποίησης","Select all":"Επιλογή όλων","Show blocks":"Εμφάνιση μπλοκ",Source:"Κώδικας","Special characters":"Ειδικοί χαÏακτήÏες",All:"Όλα",Arrows:"Î’Îλη",Currency:"Îόμισμα",Latin:"Λατινικά",Mathematical:"Μαθηματικά",Text:"Κείμενο","leftwards simple arrow":"απλό βÎλος Ï€Ïος τα αÏιστεÏά","rightwards simple arrow":"απλό βÎλος Ï€Ïος τα δεξιά","upwards simple arrow":"απλό βÎλος Ï€Ïος τα πάνω","downwards simple arrow":"απλό βÎλος Ï€Ïος τα κάτω","leftwards double arrow":"αÏιστεÏÏŒ διπλό βÎλος","rightwards double arrow":"δεξιό διπλό βÎλος","upwards double arrow":"άνω διπλό βÎλος","downwards double arrow":"κάτω διπλό βÎλος","leftwards dashed arrow":"αÏιστεÏÏŒ βÎλος με παÏλες","rightwards dashed arrow":"δεξιό βÎλος με παÏλες","upwards dashed arrow":"άνω βÎλος με παÏλες","downwards dashed arrow":"κάτω βÎλος με παÏλες","leftwards arrow to bar":"αÏιστεÏÏŒ βÎλος σε γÏαμμή","rightwards arrow to bar":"δεξιό βÎλος σε γÏαμμή","upwards arrow to bar":"άνω βÎλος σε γÏαμμή","downwards arrow to bar":"κάτω βÎλος σε γÏαμμή","up down arrow with base":"άνω κάτω βÎλος με βάση","back with leftwards arrow above":"όπισθεν με αÏιστεÏÏŒ βÎλος άνω","end with leftwards arrow above":"Ï„Îλος με αÏιστεÏÏŒ βÎλος άνω","on with exclamation mark with left right arrow above":"ενεÏγό με θαυμαστικό με αÏιστεÏÏŒ δεξί βÎλος άνω","soon with rightwards arrow above":"σÏντομα με δεξί βÎλος άνω","top with upwards arrow above":"κοÏυφή με άνω βÎλος επάνω","Dollar sign":"ΣÏμβολο δολλαÏίου","Euro sign":"ΣÏμβολο ευÏÏŽ","Yen sign":"ΣÏμβολο ΓιÎν","Pound sign":"ΣÏμβολο λίÏας Αγγλίας","Cent sign":"ΣÏμβολο λεπτοÏ","Euro-currency sign":"ΣÏμβολο ευÏωνομίσματος","Colon sign":"ΣÏμβολο άνω κάτω τελείας","Cruzeiro sign":"ΣÏμβολο ΚÏουζÎιÏο","French franc sign":"ΣÏμβολο Î³Î±Î»Î»Î¹ÎºÎ¿Ï Ï†Ïάγκου","Lira sign":"ΣÏμβολο λίÏας ΤουÏκίας","Currency sign":"ΣÏμβολο νομίσματος","Bitcoin sign":"ΣÏμβολο Bitcoin","Mill sign":"ΣÏμβολο Ï‡Î¹Î»Î¹Î¿ÏƒÏ„Î¿Ï Î½Î¿Î¼Î¯ÏƒÎ¼Î±Ï„Î¿Ï‚","Naira sign":"ΣÏμβολο ÎαÎÏα ÎιγηÏίας","Peseta sign":"ΣÏμβολο πεσÎτας Ισπανίας","Rupee sign":"ΣÏμβολο Ïουπίας Ινδίας","Won sign":"ΣÏμβολο Γουάν Κίνας","New sheqel sign":"ΣÏμβολο νÎου σεκÎλ ΙσÏαήλ","Dong sign":"ΣÏμβολο Îτόνγκ Βιετνάμ","Kip sign":"ΣÏμβολο κίπ Λάος","Tugrik sign":"ΣÏμβολο τουγκÏίκ Μογγολίας","Drachma sign":"ΣÏμβολο δÏαχμής Ελλάδας","German penny sign":"ΣÏμβολο γεÏÎ¼Î±Î½Î¹ÎºÎ¿Ï Î»ÎµÏ€Ï„Î¿Ï","Peso sign":"ΣÏμβολο Ï€Îσος ΜεξικοÏ","Guarani sign":"ΣÏμβολο γκουαÏάνι ΠαÏαγουάης","Austral sign":"ΣÏμβολο αουστÏάλ ΑÏγεντινής","Hryvnia sign":"ΣÏμβολο γÏίβνα ΟυκÏανίας","Cedi sign":"ΣÏμβολο σίντι Γκάνας","Livre tournois sign":"ΣÏμβολο λίβÏα Ï„Î¿Ï…Ï Î“Î±Î»Î»Î¯Î±Ï‚","Spesmilo sign":"ΣÏμβολο σπεσμίλο","Tenge sign":"ΣÏμβολο Ï„Îνγκε Καζακστάν","Indian rupee sign":"ΣÏμβολο Ïουπίας Ινδίας","Turkish lira sign":"ΣÏμβολο λίÏας ΤουÏκίας","Nordic mark sign":"ΣÏμβολο μάÏκου ÎοÏβηγίας","Manat sign":"ΣÏμβολο μανάτ ΑζεÏμπαϊτζάν","Ruble sign":"ΣÏμβολο Ïουβλίου Ρωσίας","Latin capital letter a with macron":"Λατινικό κεφαλαίο γÏάμμα a με παÏλα","Latin small letter a with macron":"Λατινικό μικÏÏŒ γÏάμμα a με παÏλα","Latin capital letter a with breve":"Λατινικό κεφαλαίο γÏάμμα a με μισοφÎγγαÏο","Latin small letter a with breve":"Λατινικό μικÏÏŒ γÏάμμα a με μισοφÎγγαÏο","Latin capital letter a with ogonek":"Λατινικό κεφαλαίο γÏάμμα a με μικÏή ουÏά","Latin small letter a with ogonek":"Λατινικό μικÏÏŒ γÏάμμα a με μικÏή ουÏά","Latin capital letter c with acute":"Λατινικό κεφαλαίο γÏάμμα c με δεξί τόνο","Latin small letter c with acute":"Λατινικό μικÏÏŒ γÏάμμα c με δεξί τόνο","Latin capital letter c with circumflex":"Λατινικό κεφαλαίο γÏάμμα c με καπελάκι","Latin small letter c with circumflex":"Λατινικό μικÏÏŒ γÏάμμα c με καπελάκι","Latin capital letter c with dot above":"Λατινικό κεφαλαίο γÏάμμα c με τελεία επάνω","Latin small letter c with dot above":"Λατινικό μικÏÏŒ γÏάμμα c με τελεία επάνω","Latin capital letter c with caron":"Λατινικό κεφαλαίο γÏάμμα c με ανάποδο καπελάκι","Latin small letter c with caron":"Λατινικό μικÏÏŒ γÏάμμα c με ανάποδο καπελάκι","Latin capital letter d with caron":"Λατινικό κεφαλαίο γÏάμμα d με ανάποδο καπελάκι","Latin small letter d with caron":"Λατινικό μικÏÏŒ γÏάμμα d με ανάποδο καπελάκι","Latin capital letter d with stroke":"Λατινικό κεφαλαίο γÏάμμα d με σταυÏωμÎνη παÏλα","Latin small letter d with stroke":"Λατινικό μικÏÏŒ γÏάμμα d με σταυÏωμÎνη παÏλα","Latin capital letter e with macron":"Λατινικό κεφαλαίο γÏάμμα e με παÏλα","Latin small letter e with macron":"Λατινικό μικÏÏŒ γÏάμμα e με παÏλα","Latin capital letter e with breve":"Λατινικό κεφαλαίο γÏάμμα e με μισοφÎγγαÏο","Latin small letter e with breve":"Λατινικό μικÏÏŒ γÏάμμα e με μισοφÎγγαÏο","Latin capital letter e with dot above":"Λατινικό κεφαλαίο γÏάμμα e με τελεία επάνω","Latin small letter e with dot above":"Λατινικό μικÏÏŒ γÏάμμα e με τελεία επάνω","Latin capital letter e with ogonek":"Λατινικό κεφαλαίο γÏάμμα e με μικÏή ουÏά","Latin small letter e with ogonek":"Λατινικό μικÏÏŒ γÏάμμα e με μικÏή ουÏά","Latin capital letter e with caron":"Λατινικό κεφαλαίο γÏάμμα e με ανάποδο καπελάκι","Latin small letter e with caron":"Λατινικό μικÏÏŒ γÏάμμα e με ανάποδο καπελάκι","Latin capital letter g with circumflex":"Λατινικό κεφαλαίο γÏάμμα g με καπελάκι","Latin small letter g with circumflex":"Λατινικό μικÏÏŒ γÏάμμα g με καπελάκι","Latin capital letter g with breve":"Λατινικό κεφαλαίο γÏάμμα g με βÏαχεία","Latin small letter g with breve":"Λατινικό μικÏÏŒ γÏάμμα g με βÏαχεία","Latin capital letter g with dot above":"Λατινικό κεφαλαίο γÏάμμα g με τελεία επάνω","Latin small letter g with dot above":"Λατινικό μικÏÏŒ γÏάμμα g με τελεία επάνω","Latin capital letter g with cedilla":"Λατινικό κεφαλαίο γÏάμμα g με υποστιγμή","Latin small letter g with cedilla":"Λατινικό μικÏÏŒ γÏάμμα g με υποστιγμή","Latin capital letter h with circumflex":"Λατινικό κεφαλαίο γÏάμμα h με αιχμή","Latin small letter h with circumflex":"Λατινικό μικÏÏŒ γÏάμμα h με αιχμή","Latin capital letter h with stroke":"Λατινικό κεφαλαίο γÏάμμα h με κάθετο","Latin small letter h with stroke":"Λατινικό μικÏÏŒ γÏάμμα h με κάθετο","Latin capital letter i with tilde":"Λατινικό κεφαλαίο γÏάμμα i με πεÏισπωμÎνη","Latin small letter i with tilde":"Λατινικό μικÏÏŒ γÏάμμα i με πεÏισπωμÎνη","Latin capital letter i with macron":"Λατινικό κεφαλαίο γÏάμμα i με μακÏιά παÏλα","Latin small letter i with macron":"Λατινικό μικÏÏŒ γÏάμμα i με μακÏιά παÏλα","Latin capital letter i with breve":"Λατινικό κεφαλαίο γÏάμμα i με βÏαχεία","Latin small letter i with breve":"Λατινικό μικÏÏŒ γÏάμμα i με βÏαχεία","Latin capital letter i with ogonek":"Λατινικό κεφαλαίο γÏάμμα i με ανάστÏοφη υποστιγμή","Latin small letter i with ogonek":"Λατινικό μικÏÏŒ γÏάμμα i με ανάστÏοφη υποστιγμή","Latin capital letter i with dot above":"Λατινικό κεφαλαίο γÏάμμα i με τελεία επάνω","Latin small letter dotless i":"Λατινικό μικÏÏŒ γÏάμμα i χωÏίς τελεία","Latin capital ligature ij":"Λατινικό κεφαλαίο σÏμπλεγμα ij","Latin small ligature ij":"Λατινικό μικÏÏŒ σÏμπλεγμα ij","Latin capital letter j with circumflex":"Λατινικό κεφαλαίο γÏάμμα j με αιχμή","Latin small letter j with circumflex":"Λατινικό μικÏÏŒ γÏάμμα j με αιχμή","Latin capital letter k with cedilla":"Λατινικό κεφαλαίο γÏάμμα k με υποστιγμή","Latin small letter k with cedilla":"Λατινικό μικÏÏŒ γÏάμμα k με υποστιγμή","Latin small letter kra":"Λατινικό μικÏÏŒ γÏάμμα kra","Latin capital letter l with acute":"Λατινικό κεφαλαίο γÏάμμα l με οξεία","Latin small letter l with acute":"Λατινικό μικÏÏŒ γÏάμμα l με οξεία","Latin capital letter l with cedilla":"Λατινικό κεφαλαίο γÏάμμα l με υποστιγμή","Latin small letter l with cedilla":"Λατινικό μικÏÏŒ γÏάμμα l με υποστιγμή","Latin capital letter l with caron":"Λατινικό κεφαλαίο γÏάμμα l με αμβλεία","Latin small letter l with caron":"Λατινικό μικÏÏŒ γÏάμμα l με αμβλεία","Latin capital letter l with middle dot":"Λατινικό κεφαλαίο γÏάμμα l με μεσαία τελεία","Latin small letter l with middle dot":"Λατινικό μικÏÏŒ γÏάμμα l με μεσαία τελεία","Latin capital letter l with stroke":"Λατινικό κεφαλαίο γÏάμμα l με κάθετο","Latin small letter l with stroke":"Λατινικό μικÏÏŒ γÏάμμα l με κάθετο","Latin capital letter n with acute":"Λατινικό κεφαλαίο γÏάμμα n με οξεία","Latin small letter n with acute":"Λατινικό μικÏÏŒ γÏάμμα n με οξεία","Latin capital letter n with cedilla":"Λατινικό κεφαλαίο γÏάμμα n με υποστιγμή","Latin small letter n with cedilla":"Λατινικό μικÏÏŒ γÏάμμα n με υποστιγμή","Latin capital letter n with caron":"Λατινικό κεφαλαίο γÏάμμα n με αμβλεία","Latin small letter n with caron":"Λατινικό μικÏÏŒ γÏάμμα n με αμβλεία","Latin small letter n preceded by apostrophe":"Λατινικό μικÏÏŒ γÏάμμα n με απόστÏοφο που Ï€Ïοηγείται","Latin capital letter eng":"Λατινικό κεφαλαίο γÏάμμα eng","Latin small letter eng":"Λατινικό μικÏÏŒ γÏάμμα eng","Latin capital letter o with macron":"Λατινικό κεφαλαίο γÏάμμα o με μακÏιά παÏλα","Latin small letter o with macron":"Λατινικό κεφαλαίο γÏάμμα o με μακÏιά παÏλα","Latin capital letter o with breve":"Λατινικό κεφαλαίο γÏάμμα o με βÏαχεία","Latin small letter o with breve":"Λατινικό μικÏÏŒ γÏάμμα o με βÏαχεία","Latin capital letter o with double acute":"Λατινικό κεφαλαίο γÏάμμα o με διπλή οξεία","Latin small letter o with double acute":"Λατινικό μικÏÏŒ γÏάμμα o με διπλή οξεία","Latin capital ligature oe":"Λατινικό κεφαλαίο σÏμπλεγμα oe","Latin small ligature oe":"Λατινικό μικÏÏŒ σÏμπλεγμα oe","Latin capital letter r with acute":"Λατινικό κεφαλαίο γÏάμμα r με οξεία","Latin small letter r with acute":"Λατινικό μικÏÏŒ γÏάμμα r με οξεία","Latin capital letter r with cedilla":"Λατινικό κεφαλαίο γÏάμμα r με υποστιγμή","Latin small letter r with cedilla":"Λατινικό μικÏÏŒ γÏάμμα r με υποστιγμή","Latin capital letter r with caron":"Λατινικό κεφαλαίο γÏάμμα r με αμβλεία","Latin small letter r with caron":"Λατινικό μικÏÏŒ γÏάμμα r με αμβλεία","Latin capital letter s with acute":"Λατινικό κεφαλαίο γÏάμμα s με οξεία","Latin small letter s with acute":"Λατινικό μικÏÏŒ γÏάμμα s με οξεία","Latin capital letter s with circumflex":"Λατινικό κεφαλαίο γÏάμμα s με αιχμή","Latin small letter s with circumflex":"Λατινικό μικÏÏŒ γÏάμμα s με αιχμή","Latin capital letter s with cedilla":"Λατινικό κεφαλαίο γÏάμμα s με υποστιγμή","Latin small letter s with cedilla":"Λατινικό μικÏÏŒ γÏάμμα s με υποστιγμή","Latin capital letter s with caron":"Λατινικό κεφαλαίο γÏάμμα s με αμβλεία","Latin small letter s with caron":"Λατινικό μικÏÏŒ γÏάμμα s με αμβλεία","Latin capital letter t with cedilla":"Λατινικό κεφαλαίο γÏάμμα t με υποστιγμή","Latin small letter t with cedilla":"Λατινικό μικÏÏŒ γÏάμμα t με υποστιγμή","Latin capital letter t with caron":"Λατινικό κεφαλαίο γÏάμμα t με αμβλεία","Latin small letter t with caron":"Λατινικό μικÏÏŒ γÏάμμα t με αμβλεία","Latin capital letter t with stroke":"Λατινικό κεφαλαίο γÏάμμα t με κάθετο","Latin small letter t with stroke":"Λατινικό μικÏÏŒ γÏάμμα t με κάθετο","Latin capital letter u with tilde":"Λατινικό κεφαλαίο γÏάμμα u με πεÏισπωμÎνη","Latin small letter u with tilde":"Λατινικό μικÏÏŒ γÏάμμα u με πεÏισπωμÎνη","Latin capital letter u with macron":"Λατινικό κεφαλαίο γÏάμμα u με μακÏιά παÏλα","Latin small letter u with macron":"Λατινικό μικÏÏŒ γÏάμμα u με μακÏιά παÏλα","Latin capital letter u with breve":"Λατινικό κεφαλαίο γÏάμμα u με βÏαχεία","Latin small letter u with breve":"Λατινικό μικÏÏŒ γÏάμμα u με βÏαχεία","Latin capital letter u with ring above":"Λατινικό κεφαλαίο γÏάμμα u με δακτÏλιο επάνω","Latin small letter u with ring above":"Λατινικό μικÏÏŒ γÏάμμα u με δακτÏλιο επάνω","Latin capital letter u with double acute":"Λατινικό κεφαλαίο γÏάμμα u με διπλή οξεία","Latin small letter u with double acute":"Λατινικό μικÏÏŒ γÏάμμα u με διπλή οξεία","Latin capital letter u with ogonek":"Λατινικό κεφαλαίο γÏάμμα u με ανάστÏοφη υποστιγμή","Latin small letter u with ogonek":"Λατινικό μικÏÏŒ γÏάμμα u με ανάστÏοφη υποστιγμή","Latin capital letter w with circumflex":"Λατινικό κεφαλαίο γÏάμμα w με αιχμή","Latin small letter w with circumflex":"Λατινικό μικÏÏŒ γÏάμμα w με αιχμή","Latin capital letter y with circumflex":"Λατινικό κεφαλαίο γÏάμμα y με αιχμή","Latin small letter y with circumflex":"Λατινικό μικÏÏŒ γÏάμμα y με αιχμή","Latin capital letter y with diaeresis":"Λατινικό κεφαλαίο γÏάμμα y με διαλυτικά","Latin capital letter z with acute":"Λατινικό κεφαλαίο γÏάμμα z με οξεία","Latin small letter z with acute":"Λατινικό μικÏÏŒ γÏάμμα z με οξεία","Latin capital letter z with dot above":"Λατινικό κεφαλαίο γÏάμμα z με τελεία επάνω","Latin small letter z with dot above":"Λατινικό μικÏÏŒ γÏάμμα z με τελεία επάνω","Latin capital letter z with caron":"Λατινικό κεφαλαίο γÏάμμα z με αμβλεία","Latin small letter z with caron":"Λατινικό μικÏÏŒ γÏάμμα z με αμβλεία","Latin small letter long s":"Λατινικό μικÏÏŒ γÏάμμα μακÏÏŒ s","Less-than sign":"ΣÏμβολο μικÏότεÏο από","Greater-than sign":"ΣÏμβολο μεγαλÏτεÏο από","Less-than or equal to":"ΣÏμβολο μικÏότεÏο ή ίσο από","Greater-than or equal to":"ΣÏμβολο μεγαλÏτεÏο ή ίσο από","En dash":"Μεγάλη παÏλα","Em dash":"ΜικÏή παÏλα",Macron:"ΜακÏιά παÏλα",Overline:"Άνω γÏαμμή","Degree sign":"ΣÏμβολο βαθμών Κελσίου","Minus sign":"ΣÏμβολο αφαίÏεσης","Plus-minus sign":"ΣÏμβολο συν-πλην","Division sign":"ΣÏμβολο διαίÏεσης","Fraction slash":"Κάθετος κλάσματος","Multiplication sign":"ΣÏμβολο πολλαπλασιασμοÏ","Latin small letter f with hook":"Λατινικό μικÏÏŒ γÏάμμα f με άγκιστÏο",Integral:"ΟλοκλήÏωμα","N-ary summation":"Îιοστή άθÏοιση",Infinity:"ΆπειÏο","Square root":"ΤετÏαγωνική Ïίζα","Tilde operator":"Τελεστής πεÏισπωμÎνης","Approximately equal to":"Κατά Ï€ÏοσÎγγιση ίσο με","Almost equal to":"ΠεÏίπου ίσο με","Not equal to":"Όχι ίσο με","Identical to":"Ταυτόσημο με","Element of":"Στοιχείο του","Not an element of":"Όχι στοιχείο του","Contains as member":"ΠεÏιÎχει ως μÎλος","N-ary product":"Îιοστό παÏαγοντικό","Logical and":"Λογικός τελεστής τομής","Logical or":"Λογικός τελεστής Îνωσης","Not sign":"ΣÏμβολο άÏνησης",Intersection:"Τομή",Union:"Ένωση","Partial differential":"ΜεÏικό διαφοÏικό","For all":"ΣÏμβολο για όλα","There exists":"ΥπάÏχει","Empty set":"Κενό σÏνολο",Nabla:"Ανάδελτα","Asterisk operator":"Τελεστής αστεÏίσκος","Proportional to":"Αναλογικό με",Angle:"Γωνία","Vulgar fraction one quarter":"Ανάγωγο Κλάσμα ενός τετάÏτου","Vulgar fraction one half":"Ανάγωγο Κλάσμα ενός δευτÎÏου","Vulgar fraction three quarters":"Ανάγωγο Κλάσμα Ï„Ïιών τετάÏτων","Single left-pointing angle quotation mark":"Μονό εÏωτηματικό αÏιστεÏής γωνίας","Single right-pointing angle quotation mark":"Μονό εÏωτηματικό δεξιάς γωνίας","Left-pointing double angle quotation mark":"Διπλό εÏωτηματικό αÏιστεÏής γωνίας","Right-pointing double angle quotation mark":"Διπλό εÏωτηματικό δεξιάς γωνίας","Left single quotation mark":"Μονό αÏιστεÏÏŒ εÏωτηματικό","Right single quotation mark":"Μονό δεξιό εÏωτηματικό","Left double quotation mark":"Διπλό αÏιστεÏÏŒ εÏωτηματικό","Right double quotation mark":"Δεξί διπλό εÏωτηματικό","Single low-9 quotation mark":"Μονό κάτω-9 εισαγωγικό","Double low-9 quotation mark":"Διπλό κάτω-9 εισαγωγικό","Inverted exclamation mark":"ΑντεστÏαμμÎνο θαυμαστικό","Inverted question mark":"ΑντεστÏαμμÎνο εÏωτηματικό","Two dot leader":"Οδηγός δÏο τελειών","Horizontal ellipsis":"ΟÏιζόντια Îλλειψη","Double dagger":"Διπλός σταυÏός","Per mille sign":"ΣÏμβολο τοις χιλίοις","Per ten thousand sign":"ΣÏμβολο δεκάκις χιλίοις","Double exclamation mark":"Διπλό θαυμαστικό","Question exclamation mark":"ΕÏωτηματικό","Exclamation question mark":"Θαυμαστικό","Double question mark":"Διπλό εÏωτηματικό","Copyright sign":"ΣÏμβολο πνευματικής ιδιοκτησίας","Registered sign":"ΣÏμβολο καταχώÏησης","Trade mark sign":"ΣÏμβολο εμποÏÎ¹ÎºÎ¿Ï ÏƒÎ®Î¼Î±Ï„Î¿Ï‚","Section sign":"ΣÏμβολο τομÎα","Paragraph sign":"ΣÏμβολο παÏαγÏάφου","Reversed paragraph sign":"ΣÏμβολο αντεστÏαμμÎνης παÏαγÏάφου","Character categories":"ΚατηγοÏίες χαÏακτήÏων",Styles:"Στυλ","Multiple styles":"Πολλαπλά στυλ","Block styles":"Στυλ για μπλοκ","Text styles":"Στυλ για κείμενο","Insert table":"Εισαγωγή πίνακα","Header column":"Στήλη κεφαλίδας","Insert column left":"Εισαγωγή στήλης αÏιστεÏά","Insert column right":"Εισαγωγή στήλης δεξιά","Delete column":"ΔιαγÏαφή στήλης","Select column":"Επιλογή στήλης",Column:"Στήλη","Header row":"ΓÏαμμή κεφαλίδας","Insert row below":"Εισαγωγή γÏαμμής κάτω","Insert row above":"Εισαγωγή γÏαμμής πάνω","Delete row":"ΔιαγÏαφή γÏαμμής","Select row":"Επιλογή γÏαμμής",Row:"ΓÏαμμή","Merge cell up":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Ï€Î¬Î½Ï‰","Merge cell right":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Î´ÎµÎ¾Î¹Î¬","Merge cell down":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Ï„Ï‰","Merge cell left":"Συγχώνευση ÎºÎµÎ»Î¹Î¿Ï Î±ÏιστεÏά","Split cell vertically":"ΔιαχωÏισμός ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Î¸ÎµÏ„Î±","Split cell horizontally":"ΔιαχωÏισμός ÎºÎµÎ»Î¹Î¿Ï Î¿Ïιζόντια","Merge cells":"Συγχώνευση κελιών","Table toolbar":"ΓÏαμμή εÏγαλείων πίνακα","Table properties":"Ιδιότητες πίνακα","Cell properties":"Ιδιότητες κελιοÏ",Border:"ΠεÏίγÏαμμα",Style:"Στυλ",Width:"Πλάτος",Height:"Ύψος",Color:"ΧÏώμα",Background:"ΥπόβαθÏο",Padding:"Απόσταση κειμÎνου από το πεÏίγÏαμμα",Dimensions:"Διαστάσεις","Table cell text alignment":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï Ï€Î¯Î½Î±ÎºÎ±",Alignment:"Στοίχιση","Horizontal text alignment toolbar":"ΓÏαμμή εÏγαλείων οÏιζόντιας στοίχισης κειμÎνου","Vertical text alignment toolbar":"ΓÏαμμή εÏγαλείων κάθετης στοίχισης κειμÎνου","Table alignment toolbar":"ΓÏαμμή εÏγαλείων στοίχισης πίνακα",None:"ΧωÏίς πεÏίγÏαμμα",Solid:"ΣυμπαγÎÏ‚",Dotted:"Διάστικτο",Dashed:"Με παÏλες",Double:"Διπλό",Groove:"Βαθουλωτό",Ridge:"Ραχωτό",Inset:"Κείμενο με βάθος",Outset:"Κείμενο με Ïψος","Align cell text to the left":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î± αÏιστεÏά","Align cell text to the center":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î¿ κÎντÏο","Align cell text to the right":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î± δεξιά","Justify cell text":"ΠλήÏης στοίχιση κειμÎνου κελιοÏ","Align cell text to the top":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÎµÏ€Î¬Î½Ï‰","Align cell text to the middle":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÏƒÏ„Î¿ μÎσο","Align cell text to the bottom":"Στοίχιση κειμÎνου ÎºÎµÎ»Î¹Î¿Ï ÎºÎ¬Ï„Ï‰","Align table to the left":"Στοίχιση πίνακα στα αÏιστεÏά","Center table":"Στοίχιση πίνακα στο κÎντÏο","Align table to the right":"Στοίχιση πίνακα στα δεξιά","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Το χÏώμα δεν είναι ÎγκυÏο. Δοκιμάστε «#FF0000» ή «rgb(255,0,0)» ή «red».","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Η τιμή δεν είναι ÎγκυÏη. Δοκιμάστε «10px» ή «2em» ή απλά «2».","Color picker":"ΕπιλογÎας χÏώματος","Toggle caption off":"Εναλλαγή απόκÏυψης λεζάντας","Toggle caption on":"Εναλλαγής εμφάνισης λεζάντας","Enter table caption":"Εισαγωγή λεζάντας πίνακα","Rich Text Editor":"ΕπεξεÏγαστής εμπλουτισμÎνου κειμÎνου","Editor editing area: %0":"ΠεÏιοχή επεξεÏγασίας Ï€ÏογÏάμματος επεξεÏγασίας: %0","Edit block":"ΕπεξεÏγασία τμήματος","Click to edit block":"Κάντε κλικ για να επεξεÏγαστείτε το μπλοκ","Drag to move":"ΣÏÏετε για μετακίνηση",Next:"Επόμενο",Previous:"Î ÏοηγοÏμενο","Editor toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγαστή","Dropdown toolbar":"ΓÏαμμή εÏγαλείων αναδυόμενου μενοÏ",Black:"ΜαÏÏο","Dim grey":"Θολό γκÏι",Grey:"ΓκÏι","Light grey":"Φωτινό γκÏι",White:"Λευκό",Red:"Κόκκινο",Orange:"ΠοÏτοκαλί",Yellow:"ΚίτÏινο","Light green":"Φωτινό Ï€Ïάσινο",Green:"Î Ïάσινο",Aquamarine:"ΑκουαμαÏίνα",Turquoise:"ΤιÏκουάζ","Light blue":"Φωτινό μπλε",Blue:"Μπλε",Purple:"ΠοÏφυÏÏŒ","Editor block content toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγασίας πεÏιεχομÎνου αποκλεισμοÏ","Editor contextual toolbar":"ΓÏαμμή εÏγαλείων επεξεÏγασίας συμφÏαζομÎνων",HEX:"Δεκαεξαδική μοÏφή χÏωμάτων",Accept:"Αποδοχή","No results found":"Δεν βÏÎθηκαν αποτελÎσματα","No searchable items":"Δεν υπάÏχει δυνατότητα αναζήτησης στοιχείων","Editor dialog":"ΠαÏάθυÏο διαλόγου επεξεÏγαστή",Close:"Κλείσιμο",Undo:"ΑναίÏεση",Redo:"Επανάληψη","Upload in progress":"Αποστολή σε εξÎλιξη","Widget toolbar":"ΓÏαμμή εÏγαλείων γÏÎ±Ï†Î¹ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…","Insert paragraph before block":"Εισαγωγή παÏαγÏάφου Ï€Ïιν το τμήμα","Insert paragraph after block":"Εισαγωγή παÏαγÏάφου μετά το τμήμα","Press Enter to type after or press Shift + Enter to type before the widget":"Πατήστε Enter για να πληκτÏολογήσετε μετά ή πατήστε Shift + Enter για να πληκτÏολογήσετε Ï€Ïιν από το γÏαφικό στοιχείο","Words: %0":"ΛÎξεις: %0","Characters: %0":"ΧαÏακτήÏες: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-au.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-au.js index 176c39253bb27a625b0cfee236cabe24c261f298..733975fae096ada5da4130e405023b664b25e740 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-au.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-au.js @@ -1 +1 @@ -(function(d){ const l = d['en-au'] = d['en-au'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align centre",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"Clear","Remove color":"Remove colour","Restore default":"Restore default",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Editing area: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Find and replace","Find in text…":"Find in text…",Find:"Find","Previous result":"Previous result","Next result":"Next result",Replace:"Replace","Replace all":"Replace all","Match case":"Match case","Whole words only":"Whole words only","Replace with…":"Replace with…","Text to find must not be empty.":"Text to find must not be empty.","Tip: Find some text first in order to replace it.":"Tip: Find some text first in order to replace it.","Advanced options":"",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"HTML object","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"List properties","Start at":"Start at","Start index must be greater than 0.":"Start index must be greater than 0.","Reversed order":"Reversed order","Remove Format":"Remove Format","Select all":"Select all",Source:"Source","Special characters":"Special characters",All:"All",Arrows:"Arrows",Currency:"Currency",Latin:"Latin",Mathematical:"Mathematical",Text:"Text","leftwards simple arrow":"leftwards simple arrow","rightwards simple arrow":"rightwards simple arrow","upwards simple arrow":"upwards simple arrow","downwards simple arrow":"downwards simple arrow","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"Styles","Multiple styles":"Multiple styles","Block styles":"Block styles","Text styles":"Text styles","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Colour",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Centre table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The colour is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Colour picker","Toggle caption off":"Toggle caption off","Toggle caption on":"Toggle caption on","Enter table caption":"Enter table caption","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Editor editing area: %0","Edit block":"Edit block","Click to edit block":"","Drag to move":"",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"Editor block content toolbar","Editor contextual toolbar":"Editor contextual toolbar",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"Press Enter to type after or press Shift + Enter to type before the widget","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['en-au'] = d['en-au'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align centre",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"Clear","Remove color":"Remove colour","Restore default":"Restore default",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Editing area: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Find and replace","Find in text…":"Find in text…",Find:"Find","Previous result":"Previous result","Next result":"Next result",Replace:"Replace","Replace all":"Replace all","Match case":"Match case","Whole words only":"Whole words only","Replace with…":"Replace with…","Text to find must not be empty.":"Text to find must not be empty.","Tip: Find some text first in order to replace it.":"Tip: Find some text first in order to replace it.","Advanced options":"","Font Size":"Font Size",Tiny:"Tiny",Small:"Small",Big:"Big",Huge:"Huge","Font Family":"Font Family",Default:"Default","Font Color":"Font Colour","Font Background Color":"Font Background Colour","Document colors":"Document colours",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"HTML object","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"List properties","Start at":"Start at","Start index must be greater than 0.":"Start index must be greater than 0.","Reversed order":"Reversed order","Remove Format":"Remove Format","Select all":"Select all",Source:"Source","Special characters":"Special characters",All:"All",Arrows:"Arrows",Currency:"Currency",Latin:"Latin",Mathematical:"Mathematical",Text:"Text","leftwards simple arrow":"leftwards simple arrow","rightwards simple arrow":"rightwards simple arrow","upwards simple arrow":"upwards simple arrow","downwards simple arrow":"downwards simple arrow","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"Styles","Multiple styles":"Multiple styles","Block styles":"Block styles","Text styles":"Text styles","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Colour",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Centre table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The colour is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Colour picker","Toggle caption off":"Toggle caption off","Toggle caption on":"Toggle caption on","Enter table caption":"Enter table caption","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Editor editing area: %0","Edit block":"Edit block","Click to edit block":"","Drag to move":"",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"Editor block content toolbar","Editor contextual toolbar":"Editor contextual toolbar",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"Press Enter to type after or press Shift + Enter to type before the widget","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-gb.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-gb.js index 87a8a6138dafb179de359c3ebd912e1327300dbd..a5a9cf80f3bbfe696491a7566952f890f5faa61e 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-gb.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en-gb.js @@ -1 +1 @@ -(function(d){ const l = d['en-gb'] = d['en-gb'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote",Cancel:"Cancel",Clear:"","Remove color":"Remove colour","Restore default":"",Save:"Save","Show more items":"","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"","Type or paste your content here.":"","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Remove Format","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"","Edit block":"Edit block","Click to edit block":"","Drag to move":"",Next:"Next",Previous:"Previous","Editor toolbar":"","Dropdown toolbar":"",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['en-gb'] = d['en-gb'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote",Cancel:"Cancel",Clear:"","Remove color":"Remove colour","Restore default":"",Save:"Save","Show more items":"","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Font Size",Tiny:"Tiny",Small:"Small",Big:"Big",Huge:"Huge","Font Family":"Font Family",Default:"Default","Font Color":"Font Colour","Font Background Color":"Font Background Colour","Document colors":"Document colours",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"","Type or paste your content here.":"","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Remove Format","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"","Edit block":"Edit block","Click to edit block":"","Drag to move":"",Next:"Next",Previous:"Previous","Editor toolbar":"","Dropdown toolbar":"",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en.js index cd5f3b6f219662688bec2d21b6aef52bf54f36e9..9830dfd5012e90618b3a63e37a0f23159c6a3be4 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/en.js @@ -1 +1 @@ -(function(d){ const l = d['en'] = d['en'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"Clear","Remove color":"Remove color","Restore default":"Restore default",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Editing area: %0","Insert with file manager":"Insert with file manager","Replace with file manager":"Replace with file manager","Insert image with file manager":"Insert image with file manager","Replace image with file manager":"Replace image with file manager","Find and replace":"Find and replace","Find in text…":"Find in text…",Find:"Find","Previous result":"Previous result","Next result":"Next result",Replace:"Replace","Replace all":"Replace all","Match case":"Match case","Whole words only":"Whole words only","Replace with…":"Replace with…","Text to find must not be empty.":"Text to find must not be empty.","Tip: Find some text first in order to replace it.":"Tip: Find some text first in order to replace it.","Advanced options":"Advanced options",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"HTML object","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"List properties","Start at":"Start at","Start index must be greater than 0.":"Start index must be greater than 0.","Reversed order":"Reversed order","Remove Format":"Remove Format","Select all":"Select all","Show blocks":"Show blocks",Source:"Source","Special characters":"Special characters",All:"All",Arrows:"Arrows",Currency:"Currency",Latin:"Latin",Mathematical:"Mathematical",Text:"Text","leftwards simple arrow":"leftwards simple arrow","rightwards simple arrow":"rightwards simple arrow","upwards simple arrow":"upwards simple arrow","downwards simple arrow":"downwards simple arrow","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"Styles","Multiple styles":"Multiple styles","Block styles":"Block styles","Text styles":"Text styles","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Color",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Center table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Color picker","Toggle caption off":"Toggle caption off","Toggle caption on":"Toggle caption on","Enter table caption":"Enter table caption","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Editor editing area: %0","Edit block":"Edit block","Click to edit block":"Click to edit block","Drag to move":"Drag to move",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"Editor block content toolbar","Editor contextual toolbar":"Editor contextual toolbar",HEX:"HEX",Accept:"Accept","No results found":"No results found","No searchable items":"No searchable items","Editor dialog":"Editor dialog",Close:"Close",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"Press Enter to type after or press Shift + Enter to type before the widget","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['en'] = d['en'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"Clear","Remove color":"Remove color","Restore default":"Restore default",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Editing area: %0","Insert with file manager":"Insert with file manager","Replace with file manager":"Replace with file manager","Insert image with file manager":"Insert image with file manager","Replace image with file manager":"Replace image with file manager","Find and replace":"Find and replace","Find in text…":"Find in text…",Find:"Find","Previous result":"Previous result","Next result":"Next result",Replace:"Replace","Replace all":"Replace all","Match case":"Match case","Whole words only":"Whole words only","Replace with…":"Replace with…","Text to find must not be empty.":"Text to find must not be empty.","Tip: Find some text first in order to replace it.":"Tip: Find some text first in order to replace it.","Advanced options":"Advanced options","Font Size":"Font Size",Tiny:"Tiny",Small:"Small",Big:"Big",Huge:"Huge","Font Family":"Font Family",Default:"Default","Font Color":"Font Color","Font Background Color":"Font Background Color","Document colors":"Document colors",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"HTML object","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"List properties","Start at":"Start at","Start index must be greater than 0.":"Start index must be greater than 0.","Reversed order":"Reversed order","Remove Format":"Remove Format","Select all":"Select all","Show blocks":"Show blocks",Source:"Source","Special characters":"Special characters",All:"All",Arrows:"Arrows",Currency:"Currency",Latin:"Latin",Mathematical:"Mathematical",Text:"Text","leftwards simple arrow":"leftwards simple arrow","rightwards simple arrow":"rightwards simple arrow","upwards simple arrow":"upwards simple arrow","downwards simple arrow":"downwards simple arrow","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"Styles","Multiple styles":"Multiple styles","Block styles":"Block styles","Text styles":"Text styles","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Color",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Center table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Color picker","Toggle caption off":"Toggle caption off","Toggle caption on":"Toggle caption on","Enter table caption":"Enter table caption","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"Editor editing area: %0","Edit block":"Edit block","Click to edit block":"Click to edit block","Drag to move":"Drag to move",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"Editor block content toolbar","Editor contextual toolbar":"Editor contextual toolbar",HEX:"HEX",Accept:"Accept","No results found":"No results found","No searchable items":"No searchable items","Editor dialog":"Editor dialog",Close:"Close",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"Press Enter to type after or press Shift + Enter to type before the widget","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/es.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/es.js index 28ab96468f9a28c1ea4bffa57230827aad919239..e8173047947c9f855c28d6df296808aa228d0bf9 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/es.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/es.js @@ -1 +1 @@ -(function(d){ const l = d['es'] = d['es'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinear a la izquierda","Align right":"Alinear a la derecha","Align center":"Centrar",Justify:"Justificar","Text alignment":"Alineación del texto","Text alignment toolbar":"Barra de herramientas de alineación del texto",Bold:"Negrita",Italic:"Cursiva",Underline:"Subrayado",Code:"Código",Strikethrough:"Tachado",Subscript:"SubÃndice",Superscript:"SuperÃndice","Block quote":"Bloque de cita","Insert code block":"Insertar bloque de código","Plain text":"Texto plano",Cancel:"Cancelar",Clear:"Borrar","Remove color":"Quitar color","Restore default":"Restaurar valores predeterminados",Save:"Guardar","Show more items":"Mostrar más elementos","%0 of %1":"%0 de %1","Cannot upload file:":"No se pudo cargar el archivo:","Rich Text Editor. Editing area: %0":"Editor de texto enriquecido. Ãrea de edición: %0","Insert with file manager":"Insertar con administrador de archivos","Replace with file manager":"Reemplazar con administrador de archivos","Insert image with file manager":"Insertar imagen con administrador de archivos","Replace image with file manager":"Reemplazar imagen con administrador de archivos","Find and replace":"Buscar y reemplazar","Find in text…":"Buscar en el texto...",Find:"Buscar","Previous result":"Resultado anterior","Next result":"Siguiente resultado",Replace:"Reemplazar","Replace all":"Reemplazar todo","Match case":"Respetar mayúsculas y minúsculas","Whole words only":"Solo palabras completas","Replace with…":"Reemplazar con...","Text to find must not be empty.":"El texto a buscar no debe estar vacÃo.","Tip: Find some text first in order to replace it.":"Consejo: Primero busque algún texto para reemplazar.","Advanced options":"Opciones avanzadas",Paragraph:"Párrafo",Heading:"Encabezado","Choose heading":"Elegir Encabezado","Heading 1":"Encabezado 1","Heading 2":"Encabezado 2","Heading 3":"Encabezado 3","Heading 4":"Encabezado 4","Heading 5":"Encabezado 5","Heading 6":"Encabezado 6","Type your title":"Introduce tu tÃtulo","Type or paste your content here.":"Introduce o pega tu contenido aquÃ","Horizontal line":"LÃnea horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar sangrÃa","Decrease indent":"Disminuir sangrÃa",Unlink:"Quitar enlace",Link:"Enlace","Link URL":"URL del enlace","Link image":"URL de la imagen","Edit link":"Editar enlace","Open link in new tab":"Abrir enlace en una pestaña nueva","This link has no URL":"Este enlace no tiene URL","Open in a new tab":"Abrir en una pestaña nueva ",Downloadable:"Descargable","Numbered List":"Lista numerada","Bulleted List":"Lista con viñetas","To-do List":"Lista de tareas","Bulleted list styles toolbar":"Estilos de lista con viñetas","Numbered list styles toolbar":"Estilos de lista numerada","Toggle the disc list style":"Cambiar estilo de viñeta a disco","Toggle the circle list style":"Cambiar estilo de viñeta a cÃrculo","Toggle the square list style":"Cambiar estilo de viñeta a cuadrado","Toggle the decimal list style":"Cambiar estilo de lista a decimal","Toggle the decimal with leading zero list style":"Cambiar estilo de lista decimal empezando con cero","Toggle the lower–roman list style":"Cambiar estilo de lista a números romanos en minúsculas","Toggle the upper–roman list style":"Cambiar estilo de lista a números roanos en mayúsculas","Toggle the lower–latin list style":"Cambiar estilo de lista a números latinos en minúsculas","Toggle the upper–latin list style":"Cambiar estilo de lista a números latinos en mayúsculas",Disc:"Disco",Circle:"CÃrculo",Square:"Cuadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal con cero","Lower–roman":"Romanos minúsculas","Upper-roman":"Romanos mayúscula","Lower-latin":"Latinos minúsculas","Upper-latin":"Latinos minúsculas","List properties":"Propiedades de la lista","Start at":"Empezar en","Start index must be greater than 0.":"El número de inicio debe ser mayor que 0.","Reversed order":"Orden inverso","Remove Format":"Quitar Formato","Select all":"Seleccionar todo","Show blocks":"Mostrar bloques",Source:"Origen","Special characters":"Caracteres especiales",All:"Todos",Arrows:"Flechas",Currency:"Monedas",Latin:"LatÃn",Mathematical:"Matemáticas",Text:"Texto","leftwards simple arrow":"flecha simple hacia la izquierda","rightwards simple arrow":"flecha simple hacia la derecha","upwards simple arrow":"flecha simple hacia arriba","downwards simple arrow":"flecha simple hacia abajo","leftwards double arrow":"flecha doble hacia la izquierda","rightwards double arrow":"flecha doble hacia la derecha","upwards double arrow":"flecha doble hacia arriba","downwards double arrow":"flecha doble hacia abajo","leftwards dashed arrow":"flecha punteada hacia la izquierda","rightwards dashed arrow":"flecha punteada hacia la derecha","upwards dashed arrow":"flecha punteada hacia arriba","downwards dashed arrow":"flecha punteada hacia abajo","leftwards arrow to bar":"flecha hacia la izquierda hasta una barra","rightwards arrow to bar":"flecha hacia la derecha hasta una barra","upwards arrow to bar":"flecha hacia arriba hasta una barra","downwards arrow to bar":"flecha hacia abajo hasta una barra","up down arrow with base":"flecha hacia arriba y abajo con una base","back with leftwards arrow above":"«back» con una flecha hacia la izquierda arriba","end with leftwards arrow above":"«end» con una flecha hacia la izquierda arriba","on with exclamation mark with left right arrow above":"«on» seguido de un signo de exclamación y con una flecha hacia la izquierda y derecha arriba","soon with rightwards arrow above":"«soon» con una flecha hacia la derecha arriba","top with upwards arrow above":"«top» con una flecha hacia arriba arriba","Dollar sign":"Signo del dólar","Euro sign":"Signo del euro","Yen sign":"Signo del yen","Pound sign":"Signo de la libra","Cent sign":"Signo del centavo","Euro-currency sign":"Signo de la moneda euro","Colon sign":"Signo del colón","Cruzeiro sign":"Signo del cruceiro","French franc sign":"Signo del franco francés","Lira sign":"Signo de la lira","Currency sign":"Signo monetario","Bitcoin sign":"Signo del bitcóin","Mill sign":"Signo de milésima","Naira sign":"Signo de naira","Peseta sign":"Signo de la peseta","Rupee sign":"Signo de la rupia","Won sign":"Signo del won","New sheqel sign":"Signo del nuevo séquel","Dong sign":"Signo de dong","Kip sign":"Signo de kip","Tugrik sign":"Signo de tugrik","Drachma sign":"Signo de dracma","German penny sign":"Signo de centavo alemán","Peso sign":"Signo del peso","Guarani sign":"Signo del guaranÃ","Austral sign":"Signo de austral","Hryvnia sign":"Signo de grivna","Cedi sign":"Signo de cedi","Livre tournois sign":"Signo de libra tornesa","Spesmilo sign":"Signo de spesmilo","Tenge sign":"Signo de tenge","Indian rupee sign":"Signo de rupia india","Turkish lira sign":"Signo de lira turca","Nordic mark sign":"Signo de marco nórdico","Manat sign":"Signo de manat","Ruble sign":"Signo del rublo","Latin capital letter a with macron":"Letra latina mayúscula «A» con macrón","Latin small letter a with macron":"Letra latina minúscula «a» con macrón","Latin capital letter a with breve":"Letra latina mayúscula «A» con acento breve","Latin small letter a with breve":"Letra latina minúscula «a» con acento breve","Latin capital letter a with ogonek":"Letra latina mayúscula «A» con ogonek","Latin small letter a with ogonek":"Letra latina minúscula «a» con ogonek","Latin capital letter c with acute":"Letra latina mayúscula «C» con acento agudo","Latin small letter c with acute":"Letra latina minúscula «c» con acento agudo","Latin capital letter c with circumflex":"Letra latina mayúscula «C» con acento circunflejo","Latin small letter c with circumflex":"Letra latina minúscula «c» con acento circunflejo","Latin capital letter c with dot above":"Letra latina mayúscula «C» con punto superior","Latin small letter c with dot above":"Letra latina minúscula «c» con punto superior","Latin capital letter c with caron":"Letra latina mayúscula «C» con acento anticircunflejo","Latin small letter c with caron":"Letra latina minúscula «c» con acento anticircunflejo","Latin capital letter d with caron":"Letra latina mayúscula «D» con acento anticircunflejo","Latin small letter d with caron":"Letra latina minúscula «d» con acento anticircunflejo","Latin capital letter d with stroke":"Letra latina mayúscula «D» con barra horizontal","Latin small letter d with stroke":"Letra latina minúscula «d» con barra horizontal","Latin capital letter e with macron":"Letra latina mayúscula «E» con macrón","Latin small letter e with macron":"Letra latina minúscula «e» con macrón","Latin capital letter e with breve":"Letra latina mayúscula «e» con acento breve","Latin small letter e with breve":"Letra latina minúscula «e» con acento breve","Latin capital letter e with dot above":"Letra latina mayúscula «E» con punto superior","Latin small letter e with dot above":"Letra latina minúscula «e» con punto superior","Latin capital letter e with ogonek":"Letra latina mayúscula «E» con ogonek","Latin small letter e with ogonek":"Letra latina minúscula «e» con ogonek","Latin capital letter e with caron":"Letra latina mayúscula «E» con acento anticircunflejo","Latin small letter e with caron":"Letra latina minúscula «e» con acento anticircunflejo","Latin capital letter g with circumflex":"Letra latina mayúscula «G» con acento circunflejo","Latin small letter g with circumflex":"Letra latina minúscula «g» con acento circunflejo","Latin capital letter g with breve":"Letra latina mayúscula «G» con acento breve","Latin small letter g with breve":"Letra latina minúscula «g» con acento breve","Latin capital letter g with dot above":"Letra latina mayúscula «G» con punto superior","Latin small letter g with dot above":"Letra latina minúscula «g» con punto superior","Latin capital letter g with cedilla":"Letra latina mayúscula «G» con cedilla","Latin small letter g with cedilla":"Letra latina minúscula «g» con cedilla","Latin capital letter h with circumflex":"Letra latina mayúscula «H» con acento circunflejo","Latin small letter h with circumflex":"Letra latina minúscula «h» con acento circunflejo","Latin capital letter h with stroke":"Letra latina mayúscula «H» con barra horizontal","Latin small letter h with stroke":"Letra latina minúscula «h» con barra horizontal","Latin capital letter i with tilde":"Letra latina mayúscula «I» con tilde","Latin small letter i with tilde":"Letra latina minúscula «i» con tilde","Latin capital letter i with macron":"Letra latina mayúscula «I» con macrón","Latin small letter i with macron":"Letra latina minúscula «i» con macrón","Latin capital letter i with breve":"Letra latina mayúscula «I» con acento breve","Latin small letter i with breve":"Letra latina minúscula «i» con acento breve","Latin capital letter i with ogonek":"Letra latina mayúscula «I» con ogonek","Latin small letter i with ogonek":"Letra latina minúscula «i» con ogonek","Latin capital letter i with dot above":"Letra latina mayúscula «I» con punto superior","Latin small letter dotless i":"Letra latina minúscula «i» sin punto","Latin capital ligature ij":"Ligadura latina mayúscula «IJ»","Latin small ligature ij":"Ligadura latina minúscula «ij»","Latin capital letter j with circumflex":"Letra latina mayúscula «J» con acento circunflejo","Latin small letter j with circumflex":"Letra latina minúscula «j» con acento circunflejo","Latin capital letter k with cedilla":"Letra latina mayúscula «K» con cedilla","Latin small letter k with cedilla":"Letra latina minúscula «k» con cedilla","Latin small letter kra":"Letra latina minúscula «kra»","Latin capital letter l with acute":"Letra latina mayúscula «L» con acento agudo","Latin small letter l with acute":"Letra latina minúscula «l» con acento agudo","Latin capital letter l with cedilla":"Letra latina mayúscula «I» con cedilla","Latin small letter l with cedilla":"Letra latina minúscula «l» con cedilla","Latin capital letter l with caron":"Letra latina mayúscula «I» con acento anticircunflejo","Latin small letter l with caron":"Letra latina minúscula «i» con acento anticircunflejo","Latin capital letter l with middle dot":"Letra latina mayúscula «L» con punto medio","Latin small letter l with middle dot":"Letra latina minúscula «l» con punto medio","Latin capital letter l with stroke":"Letra latina mayúscula «L» con barra diagonal","Latin small letter l with stroke":"Letra latina minúscula «l» con barra diagonal","Latin capital letter n with acute":"Letra latina mayúscula «N» con acento agudo","Latin small letter n with acute":"Letra latina minúscula «n» con acento agudo","Latin capital letter n with cedilla":"Letra latina mayúscula «N» con cedilla","Latin small letter n with cedilla":"Letra latina minúscula «n» con cedilla","Latin capital letter n with caron":"Letra latina mayúscula «n» con acento anticircunflejo","Latin small letter n with caron":"Letra latina minúscula «n» con acento anticircunflejo","Latin small letter n preceded by apostrophe":"Letra latina minúscula «n» precedida de apóstrofo","Latin capital letter eng":"Letra latina mayúscula «Eng»","Latin small letter eng":"Letra latina minúscula «eng»","Latin capital letter o with macron":"Letra latina mayúscula «O» con macrón","Latin small letter o with macron":"Letra latina minúscula «o» con macrón","Latin capital letter o with breve":"Letra latina mayúscula «O» con acento breve","Latin small letter o with breve":"Letra latina minúscula «o» con acento breve","Latin capital letter o with double acute":"Letra latina mayúscula «O» con doble acento agudo","Latin small letter o with double acute":"Letra latina minúscula «o» con doble acento agudo","Latin capital ligature oe":"Ligadura latina mayúscula «OE»","Latin small ligature oe":"Ligadura latina minúscula «oe»","Latin capital letter r with acute":"Letra latina mayúscula «R» con acento agudo","Latin small letter r with acute":"Letra latina minúscula «r» con acento agudo","Latin capital letter r with cedilla":"Letra latina mayúscula «R» con cedilla","Latin small letter r with cedilla":"Letra latina minúscula «r» con cedilla","Latin capital letter r with caron":"Letra latina mayúscula «R» con acento anticircunflejo","Latin small letter r with caron":"Letra latina minúscula «r» con acento anticircunflejo","Latin capital letter s with acute":"Letra latina mayúscula «S» con acento agudo","Latin small letter s with acute":"Letra latina minúscula «s» con acento agudo","Latin capital letter s with circumflex":"Letra latina mayúscula «S» con acento circunflejo","Latin small letter s with circumflex":"Letra latina minúscula «s» con acento circunflejo","Latin capital letter s with cedilla":"Letra latina mayúscula «S» con cedilla","Latin small letter s with cedilla":"Letra latina minúscula «s» con cedilla","Latin capital letter s with caron":"Letra latina mayúscula «S» con acento anticircunflejo","Latin small letter s with caron":"Letra latina minúscula «s» con acento anticircunflejo","Latin capital letter t with cedilla":"Letra latina mayúscula «T» con cedilla","Latin small letter t with cedilla":"Letra latina minúscula «t» con cedilla","Latin capital letter t with caron":"Letra latina mayúscula «T» con acento anticircunflejo","Latin small letter t with caron":"Letra latina minúscula «t» con acento anticircunflejo","Latin capital letter t with stroke":"Letra latina mayúscula «T» con barra horizontal","Latin small letter t with stroke":"Letra latina minúscula «t» con barra horizontal","Latin capital letter u with tilde":"Letra latina mayúscula «U» con tilde","Latin small letter u with tilde":"Letra latina minúscula «u» con tilde","Latin capital letter u with macron":"Letra latina mayúscula «U» con macrón","Latin small letter u with macron":"Letra latina minúscula «u» con macrón","Latin capital letter u with breve":"Letra latina mayúscula «U» con acento breve","Latin small letter u with breve":"Letra latina minúscula «u» con acento breve","Latin capital letter u with ring above":"Letra latina mayúscula «U» con anillo superior","Latin small letter u with ring above":"Letra latina minúscula «u» con anillo superior","Latin capital letter u with double acute":"Letra latina mayúscula «U» con doble acento agudo","Latin small letter u with double acute":"Letra latina minúscula «u» con doble acento agudo","Latin capital letter u with ogonek":"Letra latina mayúscula «U» con ogonek","Latin small letter u with ogonek":"Letra latina minúscula «u» con ogonek","Latin capital letter w with circumflex":"Letra latina mayúscula «W» con acento circunflejo","Latin small letter w with circumflex":"Letra latina minúscula «w» con acento circunflejo","Latin capital letter y with circumflex":"Letra latina mayúscula «Y» con acento circunflejo","Latin small letter y with circumflex":"Letra latina minúscula «y» con acento circunflejo","Latin capital letter y with diaeresis":"Letra latina mayúscula «Y» con diéresis","Latin capital letter z with acute":"Letra latina mayúscula «Z» con acento agudo","Latin small letter z with acute":"Letra latina minúscula «z» con acento agudo","Latin capital letter z with dot above":"Letra latina mayúscula «Z» con punto superior","Latin small letter z with dot above":"Letra latina minúscula «z» con punto superior","Latin capital letter z with caron":"Letra latina mayúscula «Z» con acento anticircunflejo","Latin small letter z with caron":"Letra latina minúscula «z» con acento anticircunflejo","Latin small letter long s":"Letra latina minúscula «s» larga","Less-than sign":"Signo de menor que","Greater-than sign":"Signo de mayor que","Less-than or equal to":"Menor que o igual a","Greater-than or equal to":"Mayor que o igual a","En dash":"Semirraya","Em dash":"Raya",Macron:"Macrón",Overline:"LÃnea alta","Degree sign":"Signo de grado","Minus sign":"Signo de resta","Plus-minus sign":"Signo más-menos","Division sign":"Signo de división","Fraction slash":"Barra fraccionaria","Multiplication sign":"Signo de multiplicación","Latin small letter f with hook":"Letra latina minúscula «f» con gancho",Integral:"Integral","N-ary summation":"Sumatoria",Infinity:"Infinito","Square root":"RaÃz cuadrada","Tilde operator":"Operador de tilde","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Casi igual a","Not equal to":"No igual a","Identical to":"Idéntico a","Element of":"Elemento de","Not an element of":"No es un elemento de","Contains as member":"Contiene como miembro","N-ary product":"Productorio","Logical and":"Y lógico","Logical or":"O lógico","Not sign":"Signo de negación",Intersection:"Intersección",Union:"Unión","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vacÃo",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ãngulo","Vulgar fraction one quarter":"Fracción ordinaria de un cuarto","Vulgar fraction one half":"Fracción ordinaria de un medio","Vulgar fraction three quarters":"Fracción ordinaria de tres cuartos","Single left-pointing angle quotation mark":"Comilla tipográfica simple angular de apertura","Single right-pointing angle quotation mark":"Comilla tipográfica simple angular de cierre","Left-pointing double angle quotation mark":"Comilla tipográfica doble angular de apertura","Right-pointing double angle quotation mark":"Comilla tipográfica dobe angular de cierre","Left single quotation mark":"Comilla tipográfica de apertura","Right single quotation mark":"Comilla tipográfica de cierre","Left double quotation mark":"Comilla tipográfica doble de apertura","Right double quotation mark":"Comilla tipográfica de cierre","Single low-9 quotation mark":"Comilla tipográfica en forma de 9 simple y baja","Double low-9 quotation mark":"Comilla tipográfica en forma de 9 doble y baja","Inverted exclamation mark":"Signo de exclamación de apertura","Inverted question mark":"Signo de interrogación de apertura","Two dot leader":"Punto de inicio doble","Horizontal ellipsis":"Puntos suspensivos horizontales","Double dagger":"Cruz doble","Per mille sign":"Signo de por mil","Per ten thousand sign":"Signo de por diez mil","Double exclamation mark":"Signo de exclamación doble","Question exclamation mark":"Signo de exclamación interrogativa","Exclamation question mark":"Signo de interrogación exclamativa","Double question mark":"Signo de interrogación doble","Copyright sign":"Signo de derechos de autor","Registered sign":"Signo de marca registrada","Trade mark sign":"Signo de marca comercial","Section sign":"Signo de sección","Paragraph sign":"Signo de párrafo","Reversed paragraph sign":"Signo de antÃgrafo invertido","Character categories":"CategorÃas de caracteres",Styles:"Estilos","Multiple styles":"Múltiples estilos","Block styles":"Estilos de bloque","Text styles":"Estilos de texto","Insert table":"Insertar tabla","Header column":"Columna de encabezado","Insert column left":"Insertar columna izquierda","Insert column right":"Insertar columna derecha","Delete column":"Eliminar columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Fila de encabezado","Insert row below":"Insertar fila debajo","Insert row above":"Insertar fila encima","Delete row":"Eliminar fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar celda superior","Merge cell right":"Combinar celda derecha","Merge cell down":"Combinar celda inferior","Merge cell left":"Combinar celda izquierda","Split cell vertically":"Dividir celdas verticalmente","Split cell horizontally":"Dividir celdas horizontalmente","Merge cells":"Combinar celdas","Table toolbar":"Barra de herramientas de tabla","Table properties":"Propiedades de tabla","Cell properties":"Propiedades de celda",Border:"Borde",Style:"Estilo",Width:"Ancho",Height:"Altura",Color:"Color",Background:"Fondo",Padding:"Márgenes",Dimensions:"Dimensiones","Table cell text alignment":"Alineación texto de celda",Alignment:"Alineación","Horizontal text alignment toolbar":"Alineación horizontal de texto","Vertical text alignment toolbar":"Alineación vertical de texto","Table alignment toolbar":"Alineación de tabla",None:"Ninguno",Solid:"Sólido",Dotted:"LÃnea de puntos",Dashed:"LÃnea discontinua",Double:"Doble lÃnea",Groove:"Bisel",Ridge:"Marco",Inset:"Incrustación",Outset:"Relieve","Align cell text to the left":"Alinear texto de celda a la izquierda","Align cell text to the center":"Centrar texto de celda","Align cell text to the right":"Alinear texto de celda a la derecha","Justify cell text":"Justificar texto de celda","Align cell text to the top":"Alinear texto de celda hacia arriba","Align cell text to the middle":"Alinear texto de celda al medio","Align cell text to the bottom":"Alinear texto de celda hacia abajo","Align table to the left":"Alinear tabla a la izquierda","Center table":"Centrar tabla","Align table to the right":"Alinear tabla a la derecha","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"El color es inválido. Intente con \"#FF0000\", \"rgb(255,0,0)\" o \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"El valor es inválido. Intente con \"10px\", \"2em\" o simplemente \"2\".","Color picker":"Selector de color","Toggle caption off":"Desactivar tÃtulo","Toggle caption on":"Activar tÃtulo","Enter table caption":"Ingresar tÃtulo de tabla","Rich Text Editor":"Editor de Texto Enriquecido","Editor editing area: %0":"Ãrea de edición del editor: %0","Edit block":"Cuadro de edición","Click to edit block":"Haz clic para editar el bloque","Drag to move":"Arrastra para mover",Next:"Siguiente",Previous:"Anterior","Editor toolbar":"Barra de herramientas de edición","Dropdown toolbar":"Barra de herramientas desplegable",Black:"Negro","Dim grey":"Gris oscuro",Grey:"Gris","Light grey":"Gris claro",White:"Blanco",Red:"Rojo",Orange:"Naranja",Yellow:"Amarillo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Aguamarina",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Morado","Editor block content toolbar":"Barra de herramientas de contenido del bloque del editor","Editor contextual toolbar":"Barra de herramientas contextual del editor",HEX:"HEX",Accept:"Aceptar","No results found":"No se han encontrado resultados","No searchable items":"No hay elementos que buscar","Editor dialog":"Diálogo del editor",Close:"Cerrar",Undo:"Deshacer",Redo:"Rehacer","Upload in progress":"Subida en progreso","Widget toolbar":"Barra de herramientas del widget","Insert paragraph before block":"Insertar párrafo antes del bloque","Insert paragraph after block":"Insertar párrafo después del bloque","Press Enter to type after or press Shift + Enter to type before the widget":"Pulse Intro para escribir después o pulse Mayús + Intro para escribir antes del «widget».","Words: %0":"Palabras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['es'] = d['es'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinear a la izquierda","Align right":"Alinear a la derecha","Align center":"Centrar",Justify:"Justificar","Text alignment":"Alineación del texto","Text alignment toolbar":"Barra de herramientas de alineación del texto",Bold:"Negrita",Italic:"Cursiva",Underline:"Subrayado",Code:"Código",Strikethrough:"Tachado",Subscript:"SubÃndice",Superscript:"SuperÃndice","Block quote":"Bloque de cita","Insert code block":"Insertar bloque de código","Plain text":"Texto plano",Cancel:"Cancelar",Clear:"Borrar","Remove color":"Quitar color","Restore default":"Restaurar valores predeterminados",Save:"Guardar","Show more items":"Mostrar más elementos","%0 of %1":"%0 de %1","Cannot upload file:":"No se pudo cargar el archivo:","Rich Text Editor. Editing area: %0":"Editor de texto enriquecido. Ãrea de edición: %0","Insert with file manager":"Insertar con administrador de archivos","Replace with file manager":"Reemplazar con administrador de archivos","Insert image with file manager":"Insertar imagen con administrador de archivos","Replace image with file manager":"Reemplazar imagen con administrador de archivos","Find and replace":"Buscar y reemplazar","Find in text…":"Buscar en el texto...",Find:"Buscar","Previous result":"Resultado anterior","Next result":"Siguiente resultado",Replace:"Reemplazar","Replace all":"Reemplazar todo","Match case":"Respetar mayúsculas y minúsculas","Whole words only":"Solo palabras completas","Replace with…":"Reemplazar con...","Text to find must not be empty.":"El texto a buscar no debe estar vacÃo.","Tip: Find some text first in order to replace it.":"Consejo: Primero busque algún texto para reemplazar.","Advanced options":"Opciones avanzadas","Font Size":"Tamaño de fuente",Tiny:"Minúsculo",Small:"Pequeño",Big:"Grande",Huge:"Enorme","Font Family":"Fuente",Default:"Por defecto","Font Color":"Color de Fuente","Font Background Color":"Color de Fondo","Document colors":"Colores del documento",Paragraph:"Párrafo",Heading:"Encabezado","Choose heading":"Elegir Encabezado","Heading 1":"Encabezado 1","Heading 2":"Encabezado 2","Heading 3":"Encabezado 3","Heading 4":"Encabezado 4","Heading 5":"Encabezado 5","Heading 6":"Encabezado 6","Type your title":"Introduce tu tÃtulo","Type or paste your content here.":"Introduce o pega tu contenido aquÃ","Horizontal line":"LÃnea horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar sangrÃa","Decrease indent":"Disminuir sangrÃa",Unlink:"Quitar enlace",Link:"Enlace","Link URL":"URL del enlace","Link image":"URL de la imagen","Edit link":"Editar enlace","Open link in new tab":"Abrir enlace en una pestaña nueva","This link has no URL":"Este enlace no tiene URL","Open in a new tab":"Abrir en una pestaña nueva ",Downloadable:"Descargable","Numbered List":"Lista numerada","Bulleted List":"Lista con viñetas","To-do List":"Lista de tareas","Bulleted list styles toolbar":"Estilos de lista con viñetas","Numbered list styles toolbar":"Estilos de lista numerada","Toggle the disc list style":"Cambiar estilo de viñeta a disco","Toggle the circle list style":"Cambiar estilo de viñeta a cÃrculo","Toggle the square list style":"Cambiar estilo de viñeta a cuadrado","Toggle the decimal list style":"Cambiar estilo de lista a decimal","Toggle the decimal with leading zero list style":"Cambiar estilo de lista decimal empezando con cero","Toggle the lower–roman list style":"Cambiar estilo de lista a números romanos en minúsculas","Toggle the upper–roman list style":"Cambiar estilo de lista a números roanos en mayúsculas","Toggle the lower–latin list style":"Cambiar estilo de lista a números latinos en minúsculas","Toggle the upper–latin list style":"Cambiar estilo de lista a números latinos en mayúsculas",Disc:"Disco",Circle:"CÃrculo",Square:"Cuadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal con cero","Lower–roman":"Romanos minúsculas","Upper-roman":"Romanos mayúscula","Lower-latin":"Latinos minúsculas","Upper-latin":"Latinos minúsculas","List properties":"Propiedades de la lista","Start at":"Empezar en","Start index must be greater than 0.":"El número de inicio debe ser mayor que 0.","Reversed order":"Orden inverso","Remove Format":"Quitar Formato","Select all":"Seleccionar todo","Show blocks":"Mostrar bloques",Source:"Origen","Special characters":"Caracteres especiales",All:"Todos",Arrows:"Flechas",Currency:"Monedas",Latin:"LatÃn",Mathematical:"Matemáticas",Text:"Texto","leftwards simple arrow":"flecha simple hacia la izquierda","rightwards simple arrow":"flecha simple hacia la derecha","upwards simple arrow":"flecha simple hacia arriba","downwards simple arrow":"flecha simple hacia abajo","leftwards double arrow":"flecha doble hacia la izquierda","rightwards double arrow":"flecha doble hacia la derecha","upwards double arrow":"flecha doble hacia arriba","downwards double arrow":"flecha doble hacia abajo","leftwards dashed arrow":"flecha punteada hacia la izquierda","rightwards dashed arrow":"flecha punteada hacia la derecha","upwards dashed arrow":"flecha punteada hacia arriba","downwards dashed arrow":"flecha punteada hacia abajo","leftwards arrow to bar":"flecha hacia la izquierda hasta una barra","rightwards arrow to bar":"flecha hacia la derecha hasta una barra","upwards arrow to bar":"flecha hacia arriba hasta una barra","downwards arrow to bar":"flecha hacia abajo hasta una barra","up down arrow with base":"flecha hacia arriba y abajo con una base","back with leftwards arrow above":"«back» con una flecha hacia la izquierda arriba","end with leftwards arrow above":"«end» con una flecha hacia la izquierda arriba","on with exclamation mark with left right arrow above":"«on» seguido de un signo de exclamación y con una flecha hacia la izquierda y derecha arriba","soon with rightwards arrow above":"«soon» con una flecha hacia la derecha arriba","top with upwards arrow above":"«top» con una flecha hacia arriba arriba","Dollar sign":"Signo del dólar","Euro sign":"Signo del euro","Yen sign":"Signo del yen","Pound sign":"Signo de la libra","Cent sign":"Signo del centavo","Euro-currency sign":"Signo de la moneda euro","Colon sign":"Signo del colón","Cruzeiro sign":"Signo del cruceiro","French franc sign":"Signo del franco francés","Lira sign":"Signo de la lira","Currency sign":"Signo monetario","Bitcoin sign":"Signo del bitcóin","Mill sign":"Signo de milésima","Naira sign":"Signo de naira","Peseta sign":"Signo de la peseta","Rupee sign":"Signo de la rupia","Won sign":"Signo del won","New sheqel sign":"Signo del nuevo séquel","Dong sign":"Signo de dong","Kip sign":"Signo de kip","Tugrik sign":"Signo de tugrik","Drachma sign":"Signo de dracma","German penny sign":"Signo de centavo alemán","Peso sign":"Signo del peso","Guarani sign":"Signo del guaranÃ","Austral sign":"Signo de austral","Hryvnia sign":"Signo de grivna","Cedi sign":"Signo de cedi","Livre tournois sign":"Signo de libra tornesa","Spesmilo sign":"Signo de spesmilo","Tenge sign":"Signo de tenge","Indian rupee sign":"Signo de rupia india","Turkish lira sign":"Signo de lira turca","Nordic mark sign":"Signo de marco nórdico","Manat sign":"Signo de manat","Ruble sign":"Signo del rublo","Latin capital letter a with macron":"Letra latina mayúscula «A» con macrón","Latin small letter a with macron":"Letra latina minúscula «a» con macrón","Latin capital letter a with breve":"Letra latina mayúscula «A» con acento breve","Latin small letter a with breve":"Letra latina minúscula «a» con acento breve","Latin capital letter a with ogonek":"Letra latina mayúscula «A» con ogonek","Latin small letter a with ogonek":"Letra latina minúscula «a» con ogonek","Latin capital letter c with acute":"Letra latina mayúscula «C» con acento agudo","Latin small letter c with acute":"Letra latina minúscula «c» con acento agudo","Latin capital letter c with circumflex":"Letra latina mayúscula «C» con acento circunflejo","Latin small letter c with circumflex":"Letra latina minúscula «c» con acento circunflejo","Latin capital letter c with dot above":"Letra latina mayúscula «C» con punto superior","Latin small letter c with dot above":"Letra latina minúscula «c» con punto superior","Latin capital letter c with caron":"Letra latina mayúscula «C» con acento anticircunflejo","Latin small letter c with caron":"Letra latina minúscula «c» con acento anticircunflejo","Latin capital letter d with caron":"Letra latina mayúscula «D» con acento anticircunflejo","Latin small letter d with caron":"Letra latina minúscula «d» con acento anticircunflejo","Latin capital letter d with stroke":"Letra latina mayúscula «D» con barra horizontal","Latin small letter d with stroke":"Letra latina minúscula «d» con barra horizontal","Latin capital letter e with macron":"Letra latina mayúscula «E» con macrón","Latin small letter e with macron":"Letra latina minúscula «e» con macrón","Latin capital letter e with breve":"Letra latina mayúscula «e» con acento breve","Latin small letter e with breve":"Letra latina minúscula «e» con acento breve","Latin capital letter e with dot above":"Letra latina mayúscula «E» con punto superior","Latin small letter e with dot above":"Letra latina minúscula «e» con punto superior","Latin capital letter e with ogonek":"Letra latina mayúscula «E» con ogonek","Latin small letter e with ogonek":"Letra latina minúscula «e» con ogonek","Latin capital letter e with caron":"Letra latina mayúscula «E» con acento anticircunflejo","Latin small letter e with caron":"Letra latina minúscula «e» con acento anticircunflejo","Latin capital letter g with circumflex":"Letra latina mayúscula «G» con acento circunflejo","Latin small letter g with circumflex":"Letra latina minúscula «g» con acento circunflejo","Latin capital letter g with breve":"Letra latina mayúscula «G» con acento breve","Latin small letter g with breve":"Letra latina minúscula «g» con acento breve","Latin capital letter g with dot above":"Letra latina mayúscula «G» con punto superior","Latin small letter g with dot above":"Letra latina minúscula «g» con punto superior","Latin capital letter g with cedilla":"Letra latina mayúscula «G» con cedilla","Latin small letter g with cedilla":"Letra latina minúscula «g» con cedilla","Latin capital letter h with circumflex":"Letra latina mayúscula «H» con acento circunflejo","Latin small letter h with circumflex":"Letra latina minúscula «h» con acento circunflejo","Latin capital letter h with stroke":"Letra latina mayúscula «H» con barra horizontal","Latin small letter h with stroke":"Letra latina minúscula «h» con barra horizontal","Latin capital letter i with tilde":"Letra latina mayúscula «I» con tilde","Latin small letter i with tilde":"Letra latina minúscula «i» con tilde","Latin capital letter i with macron":"Letra latina mayúscula «I» con macrón","Latin small letter i with macron":"Letra latina minúscula «i» con macrón","Latin capital letter i with breve":"Letra latina mayúscula «I» con acento breve","Latin small letter i with breve":"Letra latina minúscula «i» con acento breve","Latin capital letter i with ogonek":"Letra latina mayúscula «I» con ogonek","Latin small letter i with ogonek":"Letra latina minúscula «i» con ogonek","Latin capital letter i with dot above":"Letra latina mayúscula «I» con punto superior","Latin small letter dotless i":"Letra latina minúscula «i» sin punto","Latin capital ligature ij":"Ligadura latina mayúscula «IJ»","Latin small ligature ij":"Ligadura latina minúscula «ij»","Latin capital letter j with circumflex":"Letra latina mayúscula «J» con acento circunflejo","Latin small letter j with circumflex":"Letra latina minúscula «j» con acento circunflejo","Latin capital letter k with cedilla":"Letra latina mayúscula «K» con cedilla","Latin small letter k with cedilla":"Letra latina minúscula «k» con cedilla","Latin small letter kra":"Letra latina minúscula «kra»","Latin capital letter l with acute":"Letra latina mayúscula «L» con acento agudo","Latin small letter l with acute":"Letra latina minúscula «l» con acento agudo","Latin capital letter l with cedilla":"Letra latina mayúscula «I» con cedilla","Latin small letter l with cedilla":"Letra latina minúscula «l» con cedilla","Latin capital letter l with caron":"Letra latina mayúscula «I» con acento anticircunflejo","Latin small letter l with caron":"Letra latina minúscula «i» con acento anticircunflejo","Latin capital letter l with middle dot":"Letra latina mayúscula «L» con punto medio","Latin small letter l with middle dot":"Letra latina minúscula «l» con punto medio","Latin capital letter l with stroke":"Letra latina mayúscula «L» con barra diagonal","Latin small letter l with stroke":"Letra latina minúscula «l» con barra diagonal","Latin capital letter n with acute":"Letra latina mayúscula «N» con acento agudo","Latin small letter n with acute":"Letra latina minúscula «n» con acento agudo","Latin capital letter n with cedilla":"Letra latina mayúscula «N» con cedilla","Latin small letter n with cedilla":"Letra latina minúscula «n» con cedilla","Latin capital letter n with caron":"Letra latina mayúscula «n» con acento anticircunflejo","Latin small letter n with caron":"Letra latina minúscula «n» con acento anticircunflejo","Latin small letter n preceded by apostrophe":"Letra latina minúscula «n» precedida de apóstrofo","Latin capital letter eng":"Letra latina mayúscula «Eng»","Latin small letter eng":"Letra latina minúscula «eng»","Latin capital letter o with macron":"Letra latina mayúscula «O» con macrón","Latin small letter o with macron":"Letra latina minúscula «o» con macrón","Latin capital letter o with breve":"Letra latina mayúscula «O» con acento breve","Latin small letter o with breve":"Letra latina minúscula «o» con acento breve","Latin capital letter o with double acute":"Letra latina mayúscula «O» con doble acento agudo","Latin small letter o with double acute":"Letra latina minúscula «o» con doble acento agudo","Latin capital ligature oe":"Ligadura latina mayúscula «OE»","Latin small ligature oe":"Ligadura latina minúscula «oe»","Latin capital letter r with acute":"Letra latina mayúscula «R» con acento agudo","Latin small letter r with acute":"Letra latina minúscula «r» con acento agudo","Latin capital letter r with cedilla":"Letra latina mayúscula «R» con cedilla","Latin small letter r with cedilla":"Letra latina minúscula «r» con cedilla","Latin capital letter r with caron":"Letra latina mayúscula «R» con acento anticircunflejo","Latin small letter r with caron":"Letra latina minúscula «r» con acento anticircunflejo","Latin capital letter s with acute":"Letra latina mayúscula «S» con acento agudo","Latin small letter s with acute":"Letra latina minúscula «s» con acento agudo","Latin capital letter s with circumflex":"Letra latina mayúscula «S» con acento circunflejo","Latin small letter s with circumflex":"Letra latina minúscula «s» con acento circunflejo","Latin capital letter s with cedilla":"Letra latina mayúscula «S» con cedilla","Latin small letter s with cedilla":"Letra latina minúscula «s» con cedilla","Latin capital letter s with caron":"Letra latina mayúscula «S» con acento anticircunflejo","Latin small letter s with caron":"Letra latina minúscula «s» con acento anticircunflejo","Latin capital letter t with cedilla":"Letra latina mayúscula «T» con cedilla","Latin small letter t with cedilla":"Letra latina minúscula «t» con cedilla","Latin capital letter t with caron":"Letra latina mayúscula «T» con acento anticircunflejo","Latin small letter t with caron":"Letra latina minúscula «t» con acento anticircunflejo","Latin capital letter t with stroke":"Letra latina mayúscula «T» con barra horizontal","Latin small letter t with stroke":"Letra latina minúscula «t» con barra horizontal","Latin capital letter u with tilde":"Letra latina mayúscula «U» con tilde","Latin small letter u with tilde":"Letra latina minúscula «u» con tilde","Latin capital letter u with macron":"Letra latina mayúscula «U» con macrón","Latin small letter u with macron":"Letra latina minúscula «u» con macrón","Latin capital letter u with breve":"Letra latina mayúscula «U» con acento breve","Latin small letter u with breve":"Letra latina minúscula «u» con acento breve","Latin capital letter u with ring above":"Letra latina mayúscula «U» con anillo superior","Latin small letter u with ring above":"Letra latina minúscula «u» con anillo superior","Latin capital letter u with double acute":"Letra latina mayúscula «U» con doble acento agudo","Latin small letter u with double acute":"Letra latina minúscula «u» con doble acento agudo","Latin capital letter u with ogonek":"Letra latina mayúscula «U» con ogonek","Latin small letter u with ogonek":"Letra latina minúscula «u» con ogonek","Latin capital letter w with circumflex":"Letra latina mayúscula «W» con acento circunflejo","Latin small letter w with circumflex":"Letra latina minúscula «w» con acento circunflejo","Latin capital letter y with circumflex":"Letra latina mayúscula «Y» con acento circunflejo","Latin small letter y with circumflex":"Letra latina minúscula «y» con acento circunflejo","Latin capital letter y with diaeresis":"Letra latina mayúscula «Y» con diéresis","Latin capital letter z with acute":"Letra latina mayúscula «Z» con acento agudo","Latin small letter z with acute":"Letra latina minúscula «z» con acento agudo","Latin capital letter z with dot above":"Letra latina mayúscula «Z» con punto superior","Latin small letter z with dot above":"Letra latina minúscula «z» con punto superior","Latin capital letter z with caron":"Letra latina mayúscula «Z» con acento anticircunflejo","Latin small letter z with caron":"Letra latina minúscula «z» con acento anticircunflejo","Latin small letter long s":"Letra latina minúscula «s» larga","Less-than sign":"Signo de menor que","Greater-than sign":"Signo de mayor que","Less-than or equal to":"Menor que o igual a","Greater-than or equal to":"Mayor que o igual a","En dash":"Semirraya","Em dash":"Raya",Macron:"Macrón",Overline:"LÃnea alta","Degree sign":"Signo de grado","Minus sign":"Signo de resta","Plus-minus sign":"Signo más-menos","Division sign":"Signo de división","Fraction slash":"Barra fraccionaria","Multiplication sign":"Signo de multiplicación","Latin small letter f with hook":"Letra latina minúscula «f» con gancho",Integral:"Integral","N-ary summation":"Sumatoria",Infinity:"Infinito","Square root":"RaÃz cuadrada","Tilde operator":"Operador de tilde","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Casi igual a","Not equal to":"No igual a","Identical to":"Idéntico a","Element of":"Elemento de","Not an element of":"No es un elemento de","Contains as member":"Contiene como miembro","N-ary product":"Productorio","Logical and":"Y lógico","Logical or":"O lógico","Not sign":"Signo de negación",Intersection:"Intersección",Union:"Unión","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vacÃo",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ãngulo","Vulgar fraction one quarter":"Fracción ordinaria de un cuarto","Vulgar fraction one half":"Fracción ordinaria de un medio","Vulgar fraction three quarters":"Fracción ordinaria de tres cuartos","Single left-pointing angle quotation mark":"Comilla tipográfica simple angular de apertura","Single right-pointing angle quotation mark":"Comilla tipográfica simple angular de cierre","Left-pointing double angle quotation mark":"Comilla tipográfica doble angular de apertura","Right-pointing double angle quotation mark":"Comilla tipográfica dobe angular de cierre","Left single quotation mark":"Comilla tipográfica de apertura","Right single quotation mark":"Comilla tipográfica de cierre","Left double quotation mark":"Comilla tipográfica doble de apertura","Right double quotation mark":"Comilla tipográfica de cierre","Single low-9 quotation mark":"Comilla tipográfica en forma de 9 simple y baja","Double low-9 quotation mark":"Comilla tipográfica en forma de 9 doble y baja","Inverted exclamation mark":"Signo de exclamación de apertura","Inverted question mark":"Signo de interrogación de apertura","Two dot leader":"Punto de inicio doble","Horizontal ellipsis":"Puntos suspensivos horizontales","Double dagger":"Cruz doble","Per mille sign":"Signo de por mil","Per ten thousand sign":"Signo de por diez mil","Double exclamation mark":"Signo de exclamación doble","Question exclamation mark":"Signo de exclamación interrogativa","Exclamation question mark":"Signo de interrogación exclamativa","Double question mark":"Signo de interrogación doble","Copyright sign":"Signo de derechos de autor","Registered sign":"Signo de marca registrada","Trade mark sign":"Signo de marca comercial","Section sign":"Signo de sección","Paragraph sign":"Signo de párrafo","Reversed paragraph sign":"Signo de antÃgrafo invertido","Character categories":"CategorÃas de caracteres",Styles:"Estilos","Multiple styles":"Múltiples estilos","Block styles":"Estilos de bloque","Text styles":"Estilos de texto","Insert table":"Insertar tabla","Header column":"Columna de encabezado","Insert column left":"Insertar columna izquierda","Insert column right":"Insertar columna derecha","Delete column":"Eliminar columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Fila de encabezado","Insert row below":"Insertar fila debajo","Insert row above":"Insertar fila encima","Delete row":"Eliminar fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar celda superior","Merge cell right":"Combinar celda derecha","Merge cell down":"Combinar celda inferior","Merge cell left":"Combinar celda izquierda","Split cell vertically":"Dividir celdas verticalmente","Split cell horizontally":"Dividir celdas horizontalmente","Merge cells":"Combinar celdas","Table toolbar":"Barra de herramientas de tabla","Table properties":"Propiedades de tabla","Cell properties":"Propiedades de celda",Border:"Borde",Style:"Estilo",Width:"Ancho",Height:"Altura",Color:"Color",Background:"Fondo",Padding:"Márgenes",Dimensions:"Dimensiones","Table cell text alignment":"Alineación texto de celda",Alignment:"Alineación","Horizontal text alignment toolbar":"Alineación horizontal de texto","Vertical text alignment toolbar":"Alineación vertical de texto","Table alignment toolbar":"Alineación de tabla",None:"Ninguno",Solid:"Sólido",Dotted:"LÃnea de puntos",Dashed:"LÃnea discontinua",Double:"Doble lÃnea",Groove:"Bisel",Ridge:"Marco",Inset:"Incrustación",Outset:"Relieve","Align cell text to the left":"Alinear texto de celda a la izquierda","Align cell text to the center":"Centrar texto de celda","Align cell text to the right":"Alinear texto de celda a la derecha","Justify cell text":"Justificar texto de celda","Align cell text to the top":"Alinear texto de celda hacia arriba","Align cell text to the middle":"Alinear texto de celda al medio","Align cell text to the bottom":"Alinear texto de celda hacia abajo","Align table to the left":"Alinear tabla a la izquierda","Center table":"Centrar tabla","Align table to the right":"Alinear tabla a la derecha","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"El color es inválido. Intente con \"#FF0000\", \"rgb(255,0,0)\" o \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"El valor es inválido. Intente con \"10px\", \"2em\" o simplemente \"2\".","Color picker":"Selector de color","Toggle caption off":"Desactivar tÃtulo","Toggle caption on":"Activar tÃtulo","Enter table caption":"Ingresar tÃtulo de tabla","Rich Text Editor":"Editor de Texto Enriquecido","Editor editing area: %0":"Ãrea de edición del editor: %0","Edit block":"Cuadro de edición","Click to edit block":"Haz clic para editar el bloque","Drag to move":"Arrastra para mover",Next:"Siguiente",Previous:"Anterior","Editor toolbar":"Barra de herramientas de edición","Dropdown toolbar":"Barra de herramientas desplegable",Black:"Negro","Dim grey":"Gris oscuro",Grey:"Gris","Light grey":"Gris claro",White:"Blanco",Red:"Rojo",Orange:"Naranja",Yellow:"Amarillo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Aguamarina",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Morado","Editor block content toolbar":"Barra de herramientas de contenido del bloque del editor","Editor contextual toolbar":"Barra de herramientas contextual del editor",HEX:"HEX",Accept:"Aceptar","No results found":"No se han encontrado resultados","No searchable items":"No hay elementos que buscar","Editor dialog":"Diálogo del editor",Close:"Cerrar",Undo:"Deshacer",Redo:"Rehacer","Upload in progress":"Subida en progreso","Widget toolbar":"Barra de herramientas del widget","Insert paragraph before block":"Insertar párrafo antes del bloque","Insert paragraph after block":"Insertar párrafo después del bloque","Press Enter to type after or press Shift + Enter to type before the widget":"Pulse Intro para escribir después o pulse Mayús + Intro para escribir antes del «widget».","Words: %0":"Palabras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/et.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/et.js index a53e4aa5266e0d074f5a16247a721da2e05f0b64..38c24cdaf4327755975c14b017b37211b4e975a5 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/et.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/et.js @@ -1 +1 @@ -(function(d){ const l = d['et'] = d['et'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Vasakjoondus","Align right":"Paremjoondus","Align center":"Keskjoondus",Justify:"Rööpjoondus","Text alignment":"Teksti joondamine","Text alignment toolbar":"Teksti joonduse tööriistariba",Bold:"Rasvane",Italic:"Kaldkiri",Underline:"Allajoonitud",Code:"Kood",Strikethrough:"Läbijoonitud",Subscript:"Alaindeks",Superscript:"Ãœlaindeks","Block quote":"Tsitaat","Insert code block":"Sisesta koodiplokk","Plain text":"Lihtsalt tekst",Cancel:"Loobu",Clear:"Selge","Remove color":"Eemalda värv","Restore default":"Taasta algne",Save:"Salvesta","Show more items":"Näita veel","%0 of %1":"%0 / %1","Cannot upload file:":"Faili ei suudeta üles laadida:","Rich Text Editor. Editing area: %0":"Rikastekstiredaktor. Redigeerimisala: %0","Insert with file manager":"Sisesta failihalduriga","Replace with file manager":"Asenda failihalduriga","Insert image with file manager":"Sisesta pilt failihalduriga","Replace image with file manager":"Asenda pilt failihalduriga","Find and replace":"Otsi ja asenda","Find in text…":"Otsi tekstist...",Find:"Otsi","Previous result":"Eelmine tulemus","Next result":"Järgmine tulemus",Replace:"Asenda","Replace all":"Asenda kõik","Match case":"Erista juhtumit","Whole words only":"Ainult terviksõnad","Replace with…":"Asenda...","Text to find must not be empty.":"Otsitav tekst ei tohi tühi olla.","Tip: Find some text first in order to replace it.":"Otsi esmalt tekst, mida asendada.","Advanced options":"Rohkem valikuid",Paragraph:"Lõik",Heading:"Pealkiri","Choose heading":"Vali pealkiri","Heading 1":"Pealkiri 1","Heading 2":"Pealkiri 2","Heading 3":"Pealkiri 3","Heading 4":"Pealkiri 4","Heading 5":"Pealkiri 5","Heading 6":"Pealkiri 6","Type your title":"Sisesta pealkiri","Type or paste your content here.":"Siia tipi või kopeeri tekst.","Horizontal line":"Horisontaalne joon","HTML object":"HTML objekt","Increase indent":"Suurenda taanet","Decrease indent":"Vähenda taanet",Unlink:"Eemalda link",Link:"Link","Link URL":"Lingi URL","Link image":"Lingi pilt","Edit link":"Muuda linki","Open link in new tab":"Ava link uuel vahekaardil","This link has no URL":"Sellel lingil puudub URL","Open in a new tab":"Ava uuel kaardil",Downloadable:"Allalaaditav","Numbered List":"Nummerdatud loetelu","Bulleted List":"Punktidega loetelu","To-do List":"Tööde nimekiri","Bulleted list styles toolbar":"Täpploendi stiili tööriistariba","Numbered list styles toolbar":"Numbriloendi stiilide tööriistariba","Toggle the disc list style":"Lülita ketta loendistiili sisse-välja","Toggle the circle list style":"Lülita ringi loendistiili sisse-välja","Toggle the square list style":"Lülita ruudu loendistiili sisse-välja","Toggle the decimal list style":"Lülita kümnendsüsteemi loendistiili sisse-välja","Toggle the decimal with leading zero list style":"Lülita nulliga kümnendsüsteemi loendistiili sisse-välja","Toggle the lower–roman list style":"Lülita väikse rooma numbri loendistiili sisse-välja","Toggle the upper–roman list style":"Lülita suure rooma numbri loendistiili sisse-välja","Toggle the lower–latin list style":"Lülita ladina väiketähe loendistiili sisse-välja","Toggle the upper–latin list style":"Lülita ladina suurtähe loendistiili sisse-välja",Disc:"Ketas",Circle:"Ring",Square:"Ruut",Decimal:"Kümnend","Decimal with leading zero":"Nulliga kümnendsüsteem","Lower–roman":"Väikse rooma numbri","Upper-roman":"Suure rooma numbri","Lower-latin":"Ladina väiketähe","Upper-latin":"Ladina suurtähe","List properties":"Loendi atribuudid","Start at":"Alusta alates","Start index must be greater than 0.":"Algindeks peab olema suurem kui 0.","Reversed order":"Vastupidine järjekord","Remove Format":"Eemalda vorming","Select all":"Vali kõik","Show blocks":"Kuva plokid",Source:"Allikas","Special characters":"Erimärgid",All:"Kõik",Arrows:"Nooled",Currency:"Valuuta",Latin:"Ladina",Mathematical:"Matemaatiline",Text:"Tekst","leftwards simple arrow":"vasakule suunatud lihtne nool","rightwards simple arrow":"paremale suunatud lihtne nool","upwards simple arrow":"ülespoole suunatud lihtne nool","downwards simple arrow":"allapoole suunatud lihtne nool","leftwards double arrow":"topeltnool vasakule","rightwards double arrow":"topeltnool paremale","upwards double arrow":"topeltnool üles","downwards double arrow":"topeltnool alla","leftwards dashed arrow":"katkendnool vasakule","rightwards dashed arrow":"katkendnool paremale","upwards dashed arrow":"katkendnool üles","downwards dashed arrow":"katkendnool alla","leftwards arrow to bar":"kriipsu suunatud vasaknool","rightwards arrow to bar":"kriipsu suunatud paremnool","upwards arrow to bar":"kriipsu suunatud ülesnool","downwards arrow to bar":"kriipsu suunatud allanool","up down arrow with base":"üles-alla nool aluskriipsuga","back with leftwards arrow above":"BACK ülemise vasaknoolega","end with leftwards arrow above":"LÕPP ülemise vasaknoolega","on with exclamation mark with left right arrow above":"hüüumärgiga ON koos ülemise vasak-parem noolega","soon with rightwards arrow above":"SOON ülemise paremnoolega","top with upwards arrow above":"TOP ülemise ülesnoolega","Dollar sign":"Dollarimärk","Euro sign":"Euro märk","Yen sign":"Jeenimärk","Pound sign":"Naela märk","Cent sign":"Sendi märk","Euro-currency sign":"Euromärk","Colon sign":"Koolon","Cruzeiro sign":"Kruseiromärk","French franc sign":"Prantsuse frangi märk","Lira sign":"Liirimärk","Currency sign":"Valuutamärk","Bitcoin sign":"Bitcoini märk","Mill sign":"Valuutatuhandiku märk","Naira sign":"Nairamärk","Peseta sign":"Peseetamärk","Rupee sign":"Ruupiamärk","Won sign":"Vonnimärk","New sheqel sign":"Uusseekelimärk","Dong sign":"Dongimärk","Kip sign":"Kipimärk","Tugrik sign":"Tugrikumärk","Drachma sign":"Drahmimärk","German penny sign":"Saksa penni märk","Peso sign":"Peesomärk","Guarani sign":"Guaraniimärk","Austral sign":"Australimärk","Hryvnia sign":"Grivnamärk","Cedi sign":"Sedimärk","Livre tournois sign":"Livre tournois' märk","Spesmilo sign":"Spesmilomärk","Tenge sign":"Tengemärk","Indian rupee sign":"India ruupia märk","Turkish lira sign":"Türgi liiri märk","Nordic mark sign":"Põhjamaade marga märk","Manat sign":"Manatimärk","Ruble sign":"Rublamärk","Latin capital letter a with macron":"Ladina suurtäht A ülakriipsuga","Latin small letter a with macron":"Ladina väiketäht A ülakriipsuga","Latin capital letter a with breve":"Ladina suurtäht A kaarega","Latin small letter a with breve":"Ladina väiketäht A kaarega","Latin capital letter a with ogonek":"Ladina suurtäht A pöördsediiga","Latin small letter a with ogonek":"Ladina väiketäht A pöördsediiga","Latin capital letter c with acute":"Ladina suurtäht C akuudiga","Latin small letter c with acute":"Ladina väiketäht C akuudiga","Latin capital letter c with circumflex":"Ladina suurtäht C tsirkumfleksiga","Latin small letter c with circumflex":"Ladina väiketäht C tsirkumfleksiga","Latin capital letter c with dot above":"Ladina suurtäht C ülapunktiga","Latin small letter c with dot above":"Ladina väiketäht C ülapunktiga","Latin capital letter c with caron":"Ladina suurtäht C haagiga","Latin small letter c with caron":"Ladina väiketäht C haagiga","Latin capital letter d with caron":"Ladina suurtäht D haagiga","Latin small letter d with caron":"Ladina väiketäht D haagiga","Latin capital letter d with stroke":"Ladina suurtäht D läbiva kriipsuga","Latin small letter d with stroke":"Ladina väiketäht D läbiva kriipsuga","Latin capital letter e with macron":"Ladina suurtäht E ülakriipsuga","Latin small letter e with macron":"Ladina väiketäht E ülakriipsuga","Latin capital letter e with breve":"Ladina suurtäht E kaarega","Latin small letter e with breve":"Ladina väiketäht E kaarega","Latin capital letter e with dot above":"Ladina suurtäht E ülapunktiga","Latin small letter e with dot above":"Ladina väiketäht E ülapunktiga","Latin capital letter e with ogonek":"Ladina suurtäht E pöördsediiga","Latin small letter e with ogonek":"Ladina väiketäht E pöördsediiga","Latin capital letter e with caron":"Ladina suurtäht E haagiga","Latin small letter e with caron":"Ladina väiketäht E haagiga","Latin capital letter g with circumflex":"Ladina suurtäht G tsirkumfleksiga","Latin small letter g with circumflex":"Ladina väiketäht G tsirkumfleksiga","Latin capital letter g with breve":"Ladina suurtäht G kaarega","Latin small letter g with breve":"Ladina väiketäht G kaarega","Latin capital letter g with dot above":"Ladina suurtäht G ülapunktiga","Latin small letter g with dot above":"Ladina väiketäht G ülapunktiga","Latin capital letter g with cedilla":"Ladina suurtäht G sediiga","Latin small letter g with cedilla":"Ladina väiketäht G sediiga","Latin capital letter h with circumflex":"Ladina suurtäht H tsirkumfleksiga","Latin small letter h with circumflex":"Ladina väiketäht H tsirkumfleksiga","Latin capital letter h with stroke":"Ladina suurtäht H läbiva kriipsuga","Latin small letter h with stroke":"Ladina väiketäht H läbiva kriipsuga","Latin capital letter i with tilde":"Ladina suurtäht I tildega","Latin small letter i with tilde":"Ladina väiketäht I tildega","Latin capital letter i with macron":"Ladina suurtäht I ülakriipsuga","Latin small letter i with macron":"Ladina väiketäht I ülakriipsuga","Latin capital letter i with breve":"Ladina suurtäht I kaarega","Latin small letter i with breve":"Ladina väiketäht I kaarega","Latin capital letter i with ogonek":"Ladina suurtäht I pöördsediiga","Latin small letter i with ogonek":"Ladina väiketäht I pöördsediiga","Latin capital letter i with dot above":"Ladina suurtäht I ülapunktiga","Latin small letter dotless i":"Ladina väiketäht I ilma täpita","Latin capital ligature ij":"Ladina suurligatuur IJ","Latin small ligature ij":"Ladina väikeligatuur IJ","Latin capital letter j with circumflex":"Ladina suurtäht J tsirkumfleksiga","Latin small letter j with circumflex":"Ladina väiketäht J tsirkumfleksiga","Latin capital letter k with cedilla":"Ladina suurtäht K sediiga","Latin small letter k with cedilla":"Ladina väiketäht K sediiga","Latin small letter kra":"Ladina väiketäht KRA","Latin capital letter l with acute":"Ladina suurtäht I akuudiga","Latin small letter l with acute":"Ladina väiketäht I akuudiga","Latin capital letter l with cedilla":"Ladina suurtäht I sediiga","Latin small letter l with cedilla":"Ladina väiketäht I sediiga","Latin capital letter l with caron":"Ladina suurtäht I haagiga","Latin small letter l with caron":"Ladina väiketäht I haagiga","Latin capital letter l with middle dot":"Ladina suurtäht I keskmise punktiga","Latin small letter l with middle dot":"Ladina väiketäht I keskmise punktiga","Latin capital letter l with stroke":"Ladina suurtäht I läbiva kriipsuga","Latin small letter l with stroke":"Ladina väiketäht I läbiva kriipsuga","Latin capital letter n with acute":"Ladina suurtäht N akuudiga","Latin small letter n with acute":"Ladina väiketäht N akuudiga","Latin capital letter n with cedilla":"Ladina suurtäht N sediiga","Latin small letter n with cedilla":"Ladina väiketäht N sediiga","Latin capital letter n with caron":"Ladina suurtäht N haagiga","Latin small letter n with caron":"Ladina väiketäht N haagiga","Latin small letter n preceded by apostrophe":"Ladina väiketäht N koos eelneva ülakomaga","Latin capital letter eng":"Ladina suurtäht ENG","Latin small letter eng":"Ladina väiketäht ENG","Latin capital letter o with macron":"Ladina suurtäht O ülakriipsuga","Latin small letter o with macron":"Ladina väiketäht O ülakriipsuga","Latin capital letter o with breve":"Ladina suurtäht O kaarega","Latin small letter o with breve":"Ladina väiketäht O kaarega","Latin capital letter o with double acute":"Ladina suurtäht O topeltakuudiga","Latin small letter o with double acute":"Ladina väiketäht O topeltakuudiga","Latin capital ligature oe":"Ladina suurligatuur OE","Latin small ligature oe":"Ladina väikeligatuur OE","Latin capital letter r with acute":"Ladina suurtäht R akuudiga","Latin small letter r with acute":"Ladina väiketäht R akuudiga","Latin capital letter r with cedilla":"Ladina suurtäht R sediiga","Latin small letter r with cedilla":"Ladina väiketäht R sediiga","Latin capital letter r with caron":"Ladina suurtäht R haagiga","Latin small letter r with caron":"Ladina väiketäht R haagiga","Latin capital letter s with acute":"Ladina suurtäht S akuudiga","Latin small letter s with acute":"Ladina väiketäht S akuudiga","Latin capital letter s with circumflex":"Ladina suurtäht S tsirkumfleksiga","Latin small letter s with circumflex":"Ladina väiketäht S tsirkumfleksiga","Latin capital letter s with cedilla":"Ladina suurtäht S sediiga","Latin small letter s with cedilla":"Ladina väiketäht S sediiga","Latin capital letter s with caron":"Ladina suurtäht S haagiga","Latin small letter s with caron":"Ladina väiketäht S haagiga","Latin capital letter t with cedilla":"Ladina suurtäht T sediiga","Latin small letter t with cedilla":"Ladina väiketäht T sediiga","Latin capital letter t with caron":"Ladina suurtäht T haagiga","Latin small letter t with caron":"Ladina väiketäht T haagiga","Latin capital letter t with stroke":"Ladina suurtäht T läbiva kriipsuga","Latin small letter t with stroke":"Ladina väiketäht T läbiva kriipsuga","Latin capital letter u with tilde":"Ladina suurtäht U tildega","Latin small letter u with tilde":"Ladina väiketäht U tildega","Latin capital letter u with macron":"Ladina suurtäht U ülakriipsuga","Latin small letter u with macron":"Ladina väiketäht U ülakriipsuga","Latin capital letter u with breve":"Ladina suurtäht U kaarega","Latin small letter u with breve":"Ladina väiketäht U kaarega","Latin capital letter u with ring above":"Ladina suurtäht U ülaringiga","Latin small letter u with ring above":"Ladina väiketäht U ülaringiga","Latin capital letter u with double acute":"Ladina suurtäht U topeltakuudiga","Latin small letter u with double acute":"Ladina väiketäht U topeltakuudiga","Latin capital letter u with ogonek":"Ladina suurtäht U pöördsediiga","Latin small letter u with ogonek":"Ladina väiketäht U pöördsediiga","Latin capital letter w with circumflex":"Ladina suurtäht W tsirkumfleksiga","Latin small letter w with circumflex":"Ladina väiketäht W tsirkumfleksiga","Latin capital letter y with circumflex":"Ladina suurtäht Y tsirkumfleksiga","Latin small letter y with circumflex":"Ladina väiketäht Y tsirkumfleksiga","Latin capital letter y with diaeresis":"Ladina suurtäht Y täppidega","Latin capital letter z with acute":"Ladina suurtäht Z akuudiga","Latin small letter z with acute":"Ladina väiketäht Z akuudiga","Latin capital letter z with dot above":"Ladina suurtäht Z ülapunktiga","Latin small letter z with dot above":"Ladina väiketäht Z ülapunktiga","Latin capital letter z with caron":"Ladina suurtäht Z haagiga","Latin small letter z with caron":"Ladina väiketäht Z haagiga","Latin small letter long s":"Ladina väiketäht pikk S","Less-than sign":"Väiksem-kui märk","Greater-than sign":"Suurem-kui märk","Less-than or equal to":"Väiksem-kui või võrdne","Greater-than or equal to":"Suurem-kui või võrdne","En dash":"Sidekriips","Em dash":"Mõttekriips",Macron:"Ãœlakriips",Overline:"Ãœlajoon","Degree sign":"Kraadimärk","Minus sign":"Miinusmärk","Plus-minus sign":"Pluss-miinus märk","Division sign":"Jagamismärk","Fraction slash":"Kaldus murrupoolitaja","Multiplication sign":"Korrutusmärk","Latin small letter f with hook":"Ladina väiketäht F konksuga",Integral:"Integraal","N-ary summation":"N-aar liitmine",Infinity:"Lõpmatus","Square root":"Ruutjuur","Tilde operator":"Tildesisestaja","Approximately equal to":"Ligikaudu võrdne","Almost equal to":"Peaaegu võrdne","Not equal to":"Ei võrdu","Identical to":"Samane","Element of":"Esineb elemendina","Not an element of":"Ei esine elemendina","Contains as member":"Sisaldab liikmena","N-ary product":"N-aari tulem","Logical and":"Loogiline ja","Logical or":"Loogiline või","Not sign":"Keelumärk",Intersection:"Ãœhisosa",Union:"Ãœhend","Partial differential":"Osaline diferentsiaal","For all":"Kõigile","There exists":"Leidub","Empty set":"Tühihulk",Nabla:"Nabla","Asterisk operator":"Tärnisisestaja","Proportional to":"Esineb proportsionaalsus",Angle:"Nurk","Vulgar fraction one quarter":"Harilik murd üks neljandik","Vulgar fraction one half":"Harilik murd üks kahendik","Vulgar fraction three quarters":"Harilik murd kolm neljandikku","Single left-pointing angle quotation mark":"Ãœhekordne vasakule suunatud nurgaga jutumärk","Single right-pointing angle quotation mark":"Ãœhekordne paremale suunatud nurgaga jutumärk","Left-pointing double angle quotation mark":"Vasakule suunatud kahekordse nurgaga jutumärgid","Right-pointing double angle quotation mark":"Paremale suunatud kahekordse nurgaga jutumärgid","Left single quotation mark":"Vasakpoolne ühekordne jutumärk","Right single quotation mark":"Parempoolne ühekordne jutumärk","Left double quotation mark":"Vasakpoolsed kahekordsed jutumärgid","Right double quotation mark":"Parempoolsed kahekordsed jutumärgid","Single low-9 quotation mark":"Ãœhekordne madal üheksakujuline jutumärk","Double low-9 quotation mark":"Kahekordsed madalad üheksakujulised jutumärgid","Inverted exclamation mark":"Tagurpidine hüüumärk","Inverted question mark":"Tagurpidine küsimärk","Two dot leader":"Kahetäpiline punktiir","Horizontal ellipsis":"Horisontaalne ellips","Double dagger":"Topeltpistoda","Per mille sign":"Promillimärk","Per ten thousand sign":"Kümnetuhandikosa märk","Double exclamation mark":"Topelthüüumärk","Question exclamation mark":"Küsihüüumärk","Exclamation question mark":"Hüüuküsimärk","Double question mark":"Topeltküsimärk","Copyright sign":"Autoriõigusmärk","Registered sign":"Registreerimiskujutis","Trade mark sign":"Kaubamärgikujutis","Section sign":"Paragrahvimärk","Paragraph sign":"Lõigumärk","Reversed paragraph sign":"Ãœmberpööratud lõigumärk","Character categories":"Märkide kategooriad",Styles:"Stiilid","Multiple styles":"Mitu stiili","Block styles":"Ploki stiilid","Text styles":"Teksti stiilid","Insert table":"Sisesta tabel","Header column":"Päise veerg","Insert column left":"Sisesta veerg vasakule","Insert column right":"Sisesta veerg paremale","Delete column":"Kustuta veerg","Select column":"Vali veerg",Column:"Veerg","Header row":"Päise rida","Insert row below":"Sisesta rida allapoole","Insert row above":"Sisesta rida ülespoole","Delete row":"Kustuta rida","Select row":"Vali rida",Row:"Rida","Merge cell up":"Liida ülemise lahtriga","Merge cell right":"Liida paremal oleva lahtriga","Merge cell down":"Liida alumise lahtriga","Merge cell left":"Liida vasakul oleva lahtriga","Split cell vertically":"Jaga lahter vertikaalselt","Split cell horizontally":"Jaga lahter horisontaalselt","Merge cells":"Liida lahtrid","Table toolbar":"Tabelite tööriistariba","Table properties":"Tabeli omadused","Cell properties":"Lahtri omadused",Border:"Ääris",Style:"Stiil",Width:"Laius",Height:"Kõrgus",Color:"Värvus",Background:"Taust",Padding:"Vahe sisuni",Dimensions:"Mõõtmed","Table cell text alignment":"Teksti paigutus lahtris",Alignment:"Joondus","Horizontal text alignment toolbar":"Teksti rõhtpaigutuse tööriistariba","Vertical text alignment toolbar":"Teksti püstpaigutuse tööriistariba","Table alignment toolbar":"Tabeli paigutuse tööriistariba",None:"Puudub",Solid:"Pidev",Dotted:"Punktiir",Dashed:"Kriipsjoon",Double:"Topelt",Groove:"Kraav",Ridge:"Vall",Inset:"Süvik",Outset:"Küngas","Align cell text to the left":"Lahtri tekst vasakul","Align cell text to the center":"Lahtri tekst keskel","Align cell text to the right":"Lahtri tekst paremal","Justify cell text":"Lahtri tekst rööpjoondatud","Align cell text to the top":"Lahtri tekst üleval","Align cell text to the middle":"Lahtri tekst kõrguse järgi keskel","Align cell text to the bottom":"Lahtri tekst all","Align table to the left":"Tabel joondatud vasakule","Center table":"Tabel joondatud keskele","Align table to the right":"Tabel joondatud paremale","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Värvus ei sobi. Proovi \"#FF0000\" või \"rgb(255,0,0)\" või \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Väärtus ei sobi. Proovi \"10px\", \"2em\" või lihtsalt \"2\".","Color picker":"Värvi valija","Toggle caption off":"Lülita pealdis välja","Toggle caption on":"Lülita pealdis sisse","Enter table caption":"Sisesta tabeli pealdis","Rich Text Editor":"Tekstiredaktor","Editor editing area: %0":"Redaktori redigeerimisala: %0","Edit block":"Muuda plokki","Click to edit block":"Ploki muutmiseks klõpsa","Drag to move":"Liigutamiseks lohista",Next:"Järgmine",Previous:"Eelmine","Editor toolbar":"Redaktori tööriistariba","Dropdown toolbar":"Avatav tööriistariba",Black:"Must","Dim grey":"Tumehall",Grey:"Hall","Light grey":"Helehall",White:"Valge",Red:"Punane",Orange:"Oranž",Yellow:"Kollane","Light green":"Heleroheline",Green:"Roheline",Aquamarine:"Akvamariin",Turquoise:"Türkiis","Light blue":"Helesinine",Blue:"Sinine",Purple:"Lilla","Editor block content toolbar":"Redigeerija ploki sisu tööriistariba","Editor contextual toolbar":"Redigeerija kontekstuaalne tööriistariba",HEX:"HEX",Accept:"Nõustu","No results found":"Tulemusi ei leitud","No searchable items":"Tulemusi pole","Editor dialog":"Muutja dialoog",Close:"Sulge",Undo:"Võta tagasi",Redo:"Tee uuesti","Upload in progress":"Ãœleslaadimine pooleli","Widget toolbar":"Vidinate tööriistariba","Insert paragraph before block":"Sisesta lõik enne plokki","Insert paragraph after block":"Sisesta lõik pärast plokki","Press Enter to type after or press Shift + Enter to type before the widget":"Vajutage Enter, et tippida pärast, või Shift + Enter, et tippida enne vidinat","Words: %0":"Sõnu: %0","Characters: %0":"Märke: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['et'] = d['et'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Vasakjoondus","Align right":"Paremjoondus","Align center":"Keskjoondus",Justify:"Rööpjoondus","Text alignment":"Teksti joondamine","Text alignment toolbar":"Teksti joonduse tööriistariba",Bold:"Rasvane",Italic:"Kaldkiri",Underline:"Allajoonitud",Code:"Kood",Strikethrough:"Läbijoonitud",Subscript:"Alaindeks",Superscript:"Ãœlaindeks","Block quote":"Tsitaat","Insert code block":"Sisesta koodiplokk","Plain text":"Lihtsalt tekst",Cancel:"Loobu",Clear:"Selge","Remove color":"Eemalda värv","Restore default":"Taasta algne",Save:"Salvesta","Show more items":"Näita veel","%0 of %1":"%0 / %1","Cannot upload file:":"Faili ei suudeta üles laadida:","Rich Text Editor. Editing area: %0":"Rikastekstiredaktor. Redigeerimisala: %0","Insert with file manager":"Sisesta failihalduriga","Replace with file manager":"Asenda failihalduriga","Insert image with file manager":"Sisesta pilt failihalduriga","Replace image with file manager":"Asenda pilt failihalduriga","Find and replace":"Otsi ja asenda","Find in text…":"Otsi tekstist...",Find:"Otsi","Previous result":"Eelmine tulemus","Next result":"Järgmine tulemus",Replace:"Asenda","Replace all":"Asenda kõik","Match case":"Erista juhtumit","Whole words only":"Ainult terviksõnad","Replace with…":"Asenda...","Text to find must not be empty.":"Otsitav tekst ei tohi tühi olla.","Tip: Find some text first in order to replace it.":"Otsi esmalt tekst, mida asendada.","Advanced options":"Rohkem valikuid","Font Size":"Teksti suurus",Tiny:"Imepisike",Small:"Väike",Big:"Suur",Huge:"Ãœlisuur","Font Family":"Kirjastiil",Default:"Vaikimisi","Font Color":"Fondi värvus","Font Background Color":"Kirja tausta värvus","Document colors":"Dokumendi värvid",Paragraph:"Lõik",Heading:"Pealkiri","Choose heading":"Vali pealkiri","Heading 1":"Pealkiri 1","Heading 2":"Pealkiri 2","Heading 3":"Pealkiri 3","Heading 4":"Pealkiri 4","Heading 5":"Pealkiri 5","Heading 6":"Pealkiri 6","Type your title":"Sisesta pealkiri","Type or paste your content here.":"Siia tipi või kopeeri tekst.","Horizontal line":"Horisontaalne joon","HTML object":"HTML objekt","Increase indent":"Suurenda taanet","Decrease indent":"Vähenda taanet",Unlink:"Eemalda link",Link:"Link","Link URL":"Lingi URL","Link image":"Lingi pilt","Edit link":"Muuda linki","Open link in new tab":"Ava link uuel vahekaardil","This link has no URL":"Sellel lingil puudub URL","Open in a new tab":"Ava uuel kaardil",Downloadable:"Allalaaditav","Numbered List":"Nummerdatud loetelu","Bulleted List":"Punktidega loetelu","To-do List":"Tööde nimekiri","Bulleted list styles toolbar":"Täpploendi stiili tööriistariba","Numbered list styles toolbar":"Numbriloendi stiilide tööriistariba","Toggle the disc list style":"Lülita ketta loendistiili sisse-välja","Toggle the circle list style":"Lülita ringi loendistiili sisse-välja","Toggle the square list style":"Lülita ruudu loendistiili sisse-välja","Toggle the decimal list style":"Lülita kümnendsüsteemi loendistiili sisse-välja","Toggle the decimal with leading zero list style":"Lülita nulliga kümnendsüsteemi loendistiili sisse-välja","Toggle the lower–roman list style":"Lülita väikse rooma numbri loendistiili sisse-välja","Toggle the upper–roman list style":"Lülita suure rooma numbri loendistiili sisse-välja","Toggle the lower–latin list style":"Lülita ladina väiketähe loendistiili sisse-välja","Toggle the upper–latin list style":"Lülita ladina suurtähe loendistiili sisse-välja",Disc:"Ketas",Circle:"Ring",Square:"Ruut",Decimal:"Kümnend","Decimal with leading zero":"Nulliga kümnendsüsteem","Lower–roman":"Väikse rooma numbri","Upper-roman":"Suure rooma numbri","Lower-latin":"Ladina väiketähe","Upper-latin":"Ladina suurtähe","List properties":"Loendi atribuudid","Start at":"Alusta alates","Start index must be greater than 0.":"Algindeks peab olema suurem kui 0.","Reversed order":"Vastupidine järjekord","Remove Format":"Eemalda vorming","Select all":"Vali kõik","Show blocks":"Kuva plokid",Source:"Allikas","Special characters":"Erimärgid",All:"Kõik",Arrows:"Nooled",Currency:"Valuuta",Latin:"Ladina",Mathematical:"Matemaatiline",Text:"Tekst","leftwards simple arrow":"vasakule suunatud lihtne nool","rightwards simple arrow":"paremale suunatud lihtne nool","upwards simple arrow":"ülespoole suunatud lihtne nool","downwards simple arrow":"allapoole suunatud lihtne nool","leftwards double arrow":"topeltnool vasakule","rightwards double arrow":"topeltnool paremale","upwards double arrow":"topeltnool üles","downwards double arrow":"topeltnool alla","leftwards dashed arrow":"katkendnool vasakule","rightwards dashed arrow":"katkendnool paremale","upwards dashed arrow":"katkendnool üles","downwards dashed arrow":"katkendnool alla","leftwards arrow to bar":"kriipsu suunatud vasaknool","rightwards arrow to bar":"kriipsu suunatud paremnool","upwards arrow to bar":"kriipsu suunatud ülesnool","downwards arrow to bar":"kriipsu suunatud allanool","up down arrow with base":"üles-alla nool aluskriipsuga","back with leftwards arrow above":"BACK ülemise vasaknoolega","end with leftwards arrow above":"LÕPP ülemise vasaknoolega","on with exclamation mark with left right arrow above":"hüüumärgiga ON koos ülemise vasak-parem noolega","soon with rightwards arrow above":"SOON ülemise paremnoolega","top with upwards arrow above":"TOP ülemise ülesnoolega","Dollar sign":"Dollarimärk","Euro sign":"Euro märk","Yen sign":"Jeenimärk","Pound sign":"Naela märk","Cent sign":"Sendi märk","Euro-currency sign":"Euromärk","Colon sign":"Koolon","Cruzeiro sign":"Kruseiromärk","French franc sign":"Prantsuse frangi märk","Lira sign":"Liirimärk","Currency sign":"Valuutamärk","Bitcoin sign":"Bitcoini märk","Mill sign":"Valuutatuhandiku märk","Naira sign":"Nairamärk","Peseta sign":"Peseetamärk","Rupee sign":"Ruupiamärk","Won sign":"Vonnimärk","New sheqel sign":"Uusseekelimärk","Dong sign":"Dongimärk","Kip sign":"Kipimärk","Tugrik sign":"Tugrikumärk","Drachma sign":"Drahmimärk","German penny sign":"Saksa penni märk","Peso sign":"Peesomärk","Guarani sign":"Guaraniimärk","Austral sign":"Australimärk","Hryvnia sign":"Grivnamärk","Cedi sign":"Sedimärk","Livre tournois sign":"Livre tournois' märk","Spesmilo sign":"Spesmilomärk","Tenge sign":"Tengemärk","Indian rupee sign":"India ruupia märk","Turkish lira sign":"Türgi liiri märk","Nordic mark sign":"Põhjamaade marga märk","Manat sign":"Manatimärk","Ruble sign":"Rublamärk","Latin capital letter a with macron":"Ladina suurtäht A ülakriipsuga","Latin small letter a with macron":"Ladina väiketäht A ülakriipsuga","Latin capital letter a with breve":"Ladina suurtäht A kaarega","Latin small letter a with breve":"Ladina väiketäht A kaarega","Latin capital letter a with ogonek":"Ladina suurtäht A pöördsediiga","Latin small letter a with ogonek":"Ladina väiketäht A pöördsediiga","Latin capital letter c with acute":"Ladina suurtäht C akuudiga","Latin small letter c with acute":"Ladina väiketäht C akuudiga","Latin capital letter c with circumflex":"Ladina suurtäht C tsirkumfleksiga","Latin small letter c with circumflex":"Ladina väiketäht C tsirkumfleksiga","Latin capital letter c with dot above":"Ladina suurtäht C ülapunktiga","Latin small letter c with dot above":"Ladina väiketäht C ülapunktiga","Latin capital letter c with caron":"Ladina suurtäht C haagiga","Latin small letter c with caron":"Ladina väiketäht C haagiga","Latin capital letter d with caron":"Ladina suurtäht D haagiga","Latin small letter d with caron":"Ladina väiketäht D haagiga","Latin capital letter d with stroke":"Ladina suurtäht D läbiva kriipsuga","Latin small letter d with stroke":"Ladina väiketäht D läbiva kriipsuga","Latin capital letter e with macron":"Ladina suurtäht E ülakriipsuga","Latin small letter e with macron":"Ladina väiketäht E ülakriipsuga","Latin capital letter e with breve":"Ladina suurtäht E kaarega","Latin small letter e with breve":"Ladina väiketäht E kaarega","Latin capital letter e with dot above":"Ladina suurtäht E ülapunktiga","Latin small letter e with dot above":"Ladina väiketäht E ülapunktiga","Latin capital letter e with ogonek":"Ladina suurtäht E pöördsediiga","Latin small letter e with ogonek":"Ladina väiketäht E pöördsediiga","Latin capital letter e with caron":"Ladina suurtäht E haagiga","Latin small letter e with caron":"Ladina väiketäht E haagiga","Latin capital letter g with circumflex":"Ladina suurtäht G tsirkumfleksiga","Latin small letter g with circumflex":"Ladina väiketäht G tsirkumfleksiga","Latin capital letter g with breve":"Ladina suurtäht G kaarega","Latin small letter g with breve":"Ladina väiketäht G kaarega","Latin capital letter g with dot above":"Ladina suurtäht G ülapunktiga","Latin small letter g with dot above":"Ladina väiketäht G ülapunktiga","Latin capital letter g with cedilla":"Ladina suurtäht G sediiga","Latin small letter g with cedilla":"Ladina väiketäht G sediiga","Latin capital letter h with circumflex":"Ladina suurtäht H tsirkumfleksiga","Latin small letter h with circumflex":"Ladina väiketäht H tsirkumfleksiga","Latin capital letter h with stroke":"Ladina suurtäht H läbiva kriipsuga","Latin small letter h with stroke":"Ladina väiketäht H läbiva kriipsuga","Latin capital letter i with tilde":"Ladina suurtäht I tildega","Latin small letter i with tilde":"Ladina väiketäht I tildega","Latin capital letter i with macron":"Ladina suurtäht I ülakriipsuga","Latin small letter i with macron":"Ladina väiketäht I ülakriipsuga","Latin capital letter i with breve":"Ladina suurtäht I kaarega","Latin small letter i with breve":"Ladina väiketäht I kaarega","Latin capital letter i with ogonek":"Ladina suurtäht I pöördsediiga","Latin small letter i with ogonek":"Ladina väiketäht I pöördsediiga","Latin capital letter i with dot above":"Ladina suurtäht I ülapunktiga","Latin small letter dotless i":"Ladina väiketäht I ilma täpita","Latin capital ligature ij":"Ladina suurligatuur IJ","Latin small ligature ij":"Ladina väikeligatuur IJ","Latin capital letter j with circumflex":"Ladina suurtäht J tsirkumfleksiga","Latin small letter j with circumflex":"Ladina väiketäht J tsirkumfleksiga","Latin capital letter k with cedilla":"Ladina suurtäht K sediiga","Latin small letter k with cedilla":"Ladina väiketäht K sediiga","Latin small letter kra":"Ladina väiketäht KRA","Latin capital letter l with acute":"Ladina suurtäht I akuudiga","Latin small letter l with acute":"Ladina väiketäht I akuudiga","Latin capital letter l with cedilla":"Ladina suurtäht I sediiga","Latin small letter l with cedilla":"Ladina väiketäht I sediiga","Latin capital letter l with caron":"Ladina suurtäht I haagiga","Latin small letter l with caron":"Ladina väiketäht I haagiga","Latin capital letter l with middle dot":"Ladina suurtäht I keskmise punktiga","Latin small letter l with middle dot":"Ladina väiketäht I keskmise punktiga","Latin capital letter l with stroke":"Ladina suurtäht I läbiva kriipsuga","Latin small letter l with stroke":"Ladina väiketäht I läbiva kriipsuga","Latin capital letter n with acute":"Ladina suurtäht N akuudiga","Latin small letter n with acute":"Ladina väiketäht N akuudiga","Latin capital letter n with cedilla":"Ladina suurtäht N sediiga","Latin small letter n with cedilla":"Ladina väiketäht N sediiga","Latin capital letter n with caron":"Ladina suurtäht N haagiga","Latin small letter n with caron":"Ladina väiketäht N haagiga","Latin small letter n preceded by apostrophe":"Ladina väiketäht N koos eelneva ülakomaga","Latin capital letter eng":"Ladina suurtäht ENG","Latin small letter eng":"Ladina väiketäht ENG","Latin capital letter o with macron":"Ladina suurtäht O ülakriipsuga","Latin small letter o with macron":"Ladina väiketäht O ülakriipsuga","Latin capital letter o with breve":"Ladina suurtäht O kaarega","Latin small letter o with breve":"Ladina väiketäht O kaarega","Latin capital letter o with double acute":"Ladina suurtäht O topeltakuudiga","Latin small letter o with double acute":"Ladina väiketäht O topeltakuudiga","Latin capital ligature oe":"Ladina suurligatuur OE","Latin small ligature oe":"Ladina väikeligatuur OE","Latin capital letter r with acute":"Ladina suurtäht R akuudiga","Latin small letter r with acute":"Ladina väiketäht R akuudiga","Latin capital letter r with cedilla":"Ladina suurtäht R sediiga","Latin small letter r with cedilla":"Ladina väiketäht R sediiga","Latin capital letter r with caron":"Ladina suurtäht R haagiga","Latin small letter r with caron":"Ladina väiketäht R haagiga","Latin capital letter s with acute":"Ladina suurtäht S akuudiga","Latin small letter s with acute":"Ladina väiketäht S akuudiga","Latin capital letter s with circumflex":"Ladina suurtäht S tsirkumfleksiga","Latin small letter s with circumflex":"Ladina väiketäht S tsirkumfleksiga","Latin capital letter s with cedilla":"Ladina suurtäht S sediiga","Latin small letter s with cedilla":"Ladina väiketäht S sediiga","Latin capital letter s with caron":"Ladina suurtäht S haagiga","Latin small letter s with caron":"Ladina väiketäht S haagiga","Latin capital letter t with cedilla":"Ladina suurtäht T sediiga","Latin small letter t with cedilla":"Ladina väiketäht T sediiga","Latin capital letter t with caron":"Ladina suurtäht T haagiga","Latin small letter t with caron":"Ladina väiketäht T haagiga","Latin capital letter t with stroke":"Ladina suurtäht T läbiva kriipsuga","Latin small letter t with stroke":"Ladina väiketäht T läbiva kriipsuga","Latin capital letter u with tilde":"Ladina suurtäht U tildega","Latin small letter u with tilde":"Ladina väiketäht U tildega","Latin capital letter u with macron":"Ladina suurtäht U ülakriipsuga","Latin small letter u with macron":"Ladina väiketäht U ülakriipsuga","Latin capital letter u with breve":"Ladina suurtäht U kaarega","Latin small letter u with breve":"Ladina väiketäht U kaarega","Latin capital letter u with ring above":"Ladina suurtäht U ülaringiga","Latin small letter u with ring above":"Ladina väiketäht U ülaringiga","Latin capital letter u with double acute":"Ladina suurtäht U topeltakuudiga","Latin small letter u with double acute":"Ladina väiketäht U topeltakuudiga","Latin capital letter u with ogonek":"Ladina suurtäht U pöördsediiga","Latin small letter u with ogonek":"Ladina väiketäht U pöördsediiga","Latin capital letter w with circumflex":"Ladina suurtäht W tsirkumfleksiga","Latin small letter w with circumflex":"Ladina väiketäht W tsirkumfleksiga","Latin capital letter y with circumflex":"Ladina suurtäht Y tsirkumfleksiga","Latin small letter y with circumflex":"Ladina väiketäht Y tsirkumfleksiga","Latin capital letter y with diaeresis":"Ladina suurtäht Y täppidega","Latin capital letter z with acute":"Ladina suurtäht Z akuudiga","Latin small letter z with acute":"Ladina väiketäht Z akuudiga","Latin capital letter z with dot above":"Ladina suurtäht Z ülapunktiga","Latin small letter z with dot above":"Ladina väiketäht Z ülapunktiga","Latin capital letter z with caron":"Ladina suurtäht Z haagiga","Latin small letter z with caron":"Ladina väiketäht Z haagiga","Latin small letter long s":"Ladina väiketäht pikk S","Less-than sign":"Väiksem-kui märk","Greater-than sign":"Suurem-kui märk","Less-than or equal to":"Väiksem-kui või võrdne","Greater-than or equal to":"Suurem-kui või võrdne","En dash":"Sidekriips","Em dash":"Mõttekriips",Macron:"Ãœlakriips",Overline:"Ãœlajoon","Degree sign":"Kraadimärk","Minus sign":"Miinusmärk","Plus-minus sign":"Pluss-miinus märk","Division sign":"Jagamismärk","Fraction slash":"Kaldus murrupoolitaja","Multiplication sign":"Korrutusmärk","Latin small letter f with hook":"Ladina väiketäht F konksuga",Integral:"Integraal","N-ary summation":"N-aar liitmine",Infinity:"Lõpmatus","Square root":"Ruutjuur","Tilde operator":"Tildesisestaja","Approximately equal to":"Ligikaudu võrdne","Almost equal to":"Peaaegu võrdne","Not equal to":"Ei võrdu","Identical to":"Samane","Element of":"Esineb elemendina","Not an element of":"Ei esine elemendina","Contains as member":"Sisaldab liikmena","N-ary product":"N-aari tulem","Logical and":"Loogiline ja","Logical or":"Loogiline või","Not sign":"Keelumärk",Intersection:"Ãœhisosa",Union:"Ãœhend","Partial differential":"Osaline diferentsiaal","For all":"Kõigile","There exists":"Leidub","Empty set":"Tühihulk",Nabla:"Nabla","Asterisk operator":"Tärnisisestaja","Proportional to":"Esineb proportsionaalsus",Angle:"Nurk","Vulgar fraction one quarter":"Harilik murd üks neljandik","Vulgar fraction one half":"Harilik murd üks kahendik","Vulgar fraction three quarters":"Harilik murd kolm neljandikku","Single left-pointing angle quotation mark":"Ãœhekordne vasakule suunatud nurgaga jutumärk","Single right-pointing angle quotation mark":"Ãœhekordne paremale suunatud nurgaga jutumärk","Left-pointing double angle quotation mark":"Vasakule suunatud kahekordse nurgaga jutumärgid","Right-pointing double angle quotation mark":"Paremale suunatud kahekordse nurgaga jutumärgid","Left single quotation mark":"Vasakpoolne ühekordne jutumärk","Right single quotation mark":"Parempoolne ühekordne jutumärk","Left double quotation mark":"Vasakpoolsed kahekordsed jutumärgid","Right double quotation mark":"Parempoolsed kahekordsed jutumärgid","Single low-9 quotation mark":"Ãœhekordne madal üheksakujuline jutumärk","Double low-9 quotation mark":"Kahekordsed madalad üheksakujulised jutumärgid","Inverted exclamation mark":"Tagurpidine hüüumärk","Inverted question mark":"Tagurpidine küsimärk","Two dot leader":"Kahetäpiline punktiir","Horizontal ellipsis":"Horisontaalne ellips","Double dagger":"Topeltpistoda","Per mille sign":"Promillimärk","Per ten thousand sign":"Kümnetuhandikosa märk","Double exclamation mark":"Topelthüüumärk","Question exclamation mark":"Küsihüüumärk","Exclamation question mark":"Hüüuküsimärk","Double question mark":"Topeltküsimärk","Copyright sign":"Autoriõigusmärk","Registered sign":"Registreerimiskujutis","Trade mark sign":"Kaubamärgikujutis","Section sign":"Paragrahvimärk","Paragraph sign":"Lõigumärk","Reversed paragraph sign":"Ãœmberpööratud lõigumärk","Character categories":"Märkide kategooriad",Styles:"Stiilid","Multiple styles":"Mitu stiili","Block styles":"Ploki stiilid","Text styles":"Teksti stiilid","Insert table":"Sisesta tabel","Header column":"Päise veerg","Insert column left":"Sisesta veerg vasakule","Insert column right":"Sisesta veerg paremale","Delete column":"Kustuta veerg","Select column":"Vali veerg",Column:"Veerg","Header row":"Päise rida","Insert row below":"Sisesta rida allapoole","Insert row above":"Sisesta rida ülespoole","Delete row":"Kustuta rida","Select row":"Vali rida",Row:"Rida","Merge cell up":"Liida ülemise lahtriga","Merge cell right":"Liida paremal oleva lahtriga","Merge cell down":"Liida alumise lahtriga","Merge cell left":"Liida vasakul oleva lahtriga","Split cell vertically":"Jaga lahter vertikaalselt","Split cell horizontally":"Jaga lahter horisontaalselt","Merge cells":"Liida lahtrid","Table toolbar":"Tabelite tööriistariba","Table properties":"Tabeli omadused","Cell properties":"Lahtri omadused",Border:"Ääris",Style:"Stiil",Width:"Laius",Height:"Kõrgus",Color:"Värvus",Background:"Taust",Padding:"Vahe sisuni",Dimensions:"Mõõtmed","Table cell text alignment":"Teksti paigutus lahtris",Alignment:"Joondus","Horizontal text alignment toolbar":"Teksti rõhtpaigutuse tööriistariba","Vertical text alignment toolbar":"Teksti püstpaigutuse tööriistariba","Table alignment toolbar":"Tabeli paigutuse tööriistariba",None:"Puudub",Solid:"Pidev",Dotted:"Punktiir",Dashed:"Kriipsjoon",Double:"Topelt",Groove:"Kraav",Ridge:"Vall",Inset:"Süvik",Outset:"Küngas","Align cell text to the left":"Lahtri tekst vasakul","Align cell text to the center":"Lahtri tekst keskel","Align cell text to the right":"Lahtri tekst paremal","Justify cell text":"Lahtri tekst rööpjoondatud","Align cell text to the top":"Lahtri tekst üleval","Align cell text to the middle":"Lahtri tekst kõrguse järgi keskel","Align cell text to the bottom":"Lahtri tekst all","Align table to the left":"Tabel joondatud vasakule","Center table":"Tabel joondatud keskele","Align table to the right":"Tabel joondatud paremale","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Värvus ei sobi. Proovi \"#FF0000\" või \"rgb(255,0,0)\" või \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Väärtus ei sobi. Proovi \"10px\", \"2em\" või lihtsalt \"2\".","Color picker":"Värvi valija","Toggle caption off":"Lülita pealdis välja","Toggle caption on":"Lülita pealdis sisse","Enter table caption":"Sisesta tabeli pealdis","Rich Text Editor":"Tekstiredaktor","Editor editing area: %0":"Redaktori redigeerimisala: %0","Edit block":"Muuda plokki","Click to edit block":"Ploki muutmiseks klõpsa","Drag to move":"Liigutamiseks lohista",Next:"Järgmine",Previous:"Eelmine","Editor toolbar":"Redaktori tööriistariba","Dropdown toolbar":"Avatav tööriistariba",Black:"Must","Dim grey":"Tumehall",Grey:"Hall","Light grey":"Helehall",White:"Valge",Red:"Punane",Orange:"Oranž",Yellow:"Kollane","Light green":"Heleroheline",Green:"Roheline",Aquamarine:"Akvamariin",Turquoise:"Türkiis","Light blue":"Helesinine",Blue:"Sinine",Purple:"Lilla","Editor block content toolbar":"Redigeerija ploki sisu tööriistariba","Editor contextual toolbar":"Redigeerija kontekstuaalne tööriistariba",HEX:"HEX",Accept:"Nõustu","No results found":"Tulemusi ei leitud","No searchable items":"Tulemusi pole","Editor dialog":"Muutja dialoog",Close:"Sulge",Undo:"Võta tagasi",Redo:"Tee uuesti","Upload in progress":"Ãœleslaadimine pooleli","Widget toolbar":"Vidinate tööriistariba","Insert paragraph before block":"Sisesta lõik enne plokki","Insert paragraph after block":"Sisesta lõik pärast plokki","Press Enter to type after or press Shift + Enter to type before the widget":"Vajutage Enter, et tippida pärast, või Shift + Enter, et tippida enne vidinat","Words: %0":"Sõnu: %0","Characters: %0":"Märke: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fa.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fa.js index 1f180e189953b41b0b3ce6167a05097a8ceb7507..7c6e2a5fdb3d59a5e8055dd713565053f12fc020 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fa.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fa.js @@ -1 +1 @@ -(function(d){ const l = d['fa'] = d['fa'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"تراز Ú†Ù¾","Align right":"تراز راست","Align center":"تراز وسط",Justify:"هم تراز کردن","Text alignment":"تراز متن","Text alignment toolbar":"نوار ابزار ترازبندی متن",Bold:"درشت",Italic:"کج",Underline:"خط زیر",Code:"کد",Strikethrough:"خط خورده",Subscript:"پایین نویس",Superscript:"بالانویس","Block quote":" بلوک نقل قول","Insert code block":"درج بلوک کد","Plain text":"متن ساده",Cancel:"لغو",Clear:"","Remove color":"Øذ٠رنگ","Restore default":"بازیابی پیش Ùرض",Save:"ذخیره","Show more items":"نمایش گزینه‌های بیشتر","%0 of %1":"%0 از %1","Cannot upload file:":"Ùایل آپلود نمی‌شود:","Rich Text Editor. Editing area: %0":"ویرایشگر متن قوی. ویرایش بخش : 0%","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"جست Ùˆ جو Ùˆ جایگزینی","Find in text…":"جست Ùˆ جو در متن...",Find:"جست Ùˆ جو","Previous result":"نتیجه قبلی","Next result":"نتیجه بعدی",Replace:"جایگزینی","Replace all":"جایگزینی همه","Match case":"","Whole words only":"","Replace with…":"جایگزینی با...","Text to find must not be empty.":"واژه جست Ùˆ جو شده نباید خالی باشد.","Tip: Find some text first in order to replace it.":"نکته: برای جایگزینی نخست واژه را پیدا کنید.","Advanced options":"",Paragraph:"پاراگراÙ",Heading:"عنوان","Choose heading":"انتخاب عنوان","Heading 1":"عنوان 1","Heading 2":"عنوان 2","Heading 3":"عنوان 3","Heading 4":"عنوان 4","Heading 5":"عنوان 5","Heading 6":"عنوان 6","Type your title":"عنوان خود را تایپ کنید","Type or paste your content here.":"Ù…Øتوای خود را در اینجا تایپ یا پیست کنید.","Horizontal line":"خط اÙÙ‚ÛŒ","Increase indent":"اÙزایش تورÙتگی","Decrease indent":"کاهش تورÙتگی",Unlink:"لغو پیوند",Link:"پیوند","Link URL":"نشانی اینترنتی پیوند","Link image":"اتصال پیوند به تصویر","Edit link":"ویرایش پیوند","Open link in new tab":"باز کردن پیوند در برگه جدید","This link has no URL":"این پیوند نشانی اینترنتی ندارد","Open in a new tab":"بازکردن در برگه جدید",Downloadable:"قابل بارگیری","Numbered List":"لیست عددی","Bulleted List":"لیست نشانه‌دار","To-do List":"لیست انجام کار","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Øذ٠کردن قالب","Select all":"انتخاب همه","Show blocks":"نمایش بلاک ها","Special characters":"کاراکترهای ویژه",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"پیکان دوتایی Ú†Ù¾","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"درج جدول","Header column":"ستون سربرگ","Insert column left":"درج ستون در سمت Ú†Ù¾","Insert column right":"درج ستون در سمت راست","Delete column":"Øذ٠ستون","Select column":"",Column:"ستون","Header row":"سطر سربرگ","Insert row below":"درج سطر در پایین","Insert row above":"درج سطر در بالا","Delete row":"Øذ٠سطر","Select row":"",Row:"سطر","Merge cell up":"ادغام سلول بالا","Merge cell right":"ادغام سلول راست","Merge cell down":"ادغام سلول پایین","Merge cell left":"ادغام سلول Ú†Ù¾","Split cell vertically":"تقسیم عمودی سلول","Split cell horizontally":"تقسیم اÙÙ‚ÛŒ سلول","Merge cells":"ادغام سلول ها","Table toolbar":"نوارابزار جدول","Table properties":"خصوصیات جدول","Cell properties":"خصوصیات سلول",Border:"Øاشیه",Style:"",Width:"عرض",Height:"ارتÙاع",Color:"رنگ",Background:"زمینه",Padding:"Øاشیه داخلی",Dimensions:"ابعاد","Table cell text alignment":"",Alignment:"ترازبندی","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"هیچ کدام",Solid:"توپر",Dotted:"خط چین",Dashed:"نقطه چین",Double:"دوبل",Groove:"خط دار کردن",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"متن سلول را در سمت راست تراز کنید","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"جدول وسط","Align table to the right":"جدول را در سمت راست تراز کنید","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"ویرایشگر متن غنی","Editor editing area: %0":"","Edit block":"ویرایش قطعه","Click to edit block":"","Drag to move":"",Next:"بعدی",Previous:"قبلی","Editor toolbar":"نوارابزار ویرایشگر","Dropdown toolbar":"نوارابزار کشویی",Black:"سیاه","Dim grey":"خاکستری تیره",Grey:"خاکستری","Light grey":"خاکستری روشن",White:"سÙید",Red:"قرمز",Orange:"نارنجی",Yellow:"زرد","Light green":"سبز روشن",Green:"سبز",Aquamarine:"زمرد کبود",Turquoise:"Ùیروزه ای","Light blue":"آبی روشن",Blue:"آبی",Purple:"بنÙØ´","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"بازگردانی",Redo:"باز انجام","Upload in progress":"آپلود در Øال انجام","Widget toolbar":"نوار ابزار ویجت","Insert paragraph before block":"درج پاراگرا٠قبل از بلوک","Insert paragraph after block":"درج پاراگرا٠بعد از بلوک","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"تعداد لغات : %0","Characters: %0":"تعداد Øرو٠: %0"} );l.getPluralForm=function(n){return (n > 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['fa'] = d['fa'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"تراز Ú†Ù¾","Align right":"تراز راست","Align center":"تراز وسط",Justify:"هم تراز کردن","Text alignment":"تراز متن","Text alignment toolbar":"نوار ابزار ترازبندی متن",Bold:"درشت",Italic:"کج",Underline:"خط زیر",Code:"کد",Strikethrough:"خط خورده",Subscript:"پایین نویس",Superscript:"بالانویس","Block quote":" بلوک نقل قول","Insert code block":"درج بلوک کد","Plain text":"متن ساده",Cancel:"لغو",Clear:"","Remove color":"Øذ٠رنگ","Restore default":"بازیابی پیش Ùرض",Save:"ذخیره","Show more items":"نمایش گزینه‌های بیشتر","%0 of %1":"%0 از %1","Cannot upload file:":"Ùایل آپلود نمی‌شود:","Rich Text Editor. Editing area: %0":"ویرایشگر متن قوی. ویرایش بخش : 0%","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"جست Ùˆ جو Ùˆ جایگزینی","Find in text…":"جست Ùˆ جو در متن...",Find:"جست Ùˆ جو","Previous result":"نتیجه قبلی","Next result":"نتیجه بعدی",Replace:"جایگزینی","Replace all":"جایگزینی همه","Match case":"","Whole words only":"","Replace with…":"جایگزینی با...","Text to find must not be empty.":"واژه جست Ùˆ جو شده نباید خالی باشد.","Tip: Find some text first in order to replace it.":"نکته: برای جایگزینی نخست واژه را پیدا کنید.","Advanced options":"","Font Size":"اندازه Ùونت",Tiny:"بسیار Ú©ÙˆÚ†Ú©",Small:"Ú©ÙˆÚ†Ú©",Big:"بزرگ",Huge:"بسیار بزرگ","Font Family":"خانواده Ùونت",Default:"پیش Ùرض","Font Color":"رنگ Ùونت","Font Background Color":"رنگ پس زمینه Ùونت","Document colors":"رنگ اسناد",Paragraph:"پاراگراÙ",Heading:"عنوان","Choose heading":"انتخاب عنوان","Heading 1":"عنوان 1","Heading 2":"عنوان 2","Heading 3":"عنوان 3","Heading 4":"عنوان 4","Heading 5":"عنوان 5","Heading 6":"عنوان 6","Type your title":"عنوان خود را تایپ کنید","Type or paste your content here.":"Ù…Øتوای خود را در اینجا تایپ یا پیست کنید.","Horizontal line":"خط اÙÙ‚ÛŒ","Increase indent":"اÙزایش تورÙتگی","Decrease indent":"کاهش تورÙتگی",Unlink:"لغو پیوند",Link:"پیوند","Link URL":"نشانی اینترنتی پیوند","Link image":"اتصال پیوند به تصویر","Edit link":"ویرایش پیوند","Open link in new tab":"باز کردن پیوند در برگه جدید","This link has no URL":"این پیوند نشانی اینترنتی ندارد","Open in a new tab":"بازکردن در برگه جدید",Downloadable:"قابل بارگیری","Numbered List":"لیست عددی","Bulleted List":"لیست نشانه‌دار","To-do List":"لیست انجام کار","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Øذ٠کردن قالب","Select all":"انتخاب همه","Show blocks":"نمایش بلاک ها","Special characters":"کاراکترهای ویژه",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"پیکان دوتایی Ú†Ù¾","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"درج جدول","Header column":"ستون سربرگ","Insert column left":"درج ستون در سمت Ú†Ù¾","Insert column right":"درج ستون در سمت راست","Delete column":"Øذ٠ستون","Select column":"",Column:"ستون","Header row":"سطر سربرگ","Insert row below":"درج سطر در پایین","Insert row above":"درج سطر در بالا","Delete row":"Øذ٠سطر","Select row":"",Row:"سطر","Merge cell up":"ادغام سلول بالا","Merge cell right":"ادغام سلول راست","Merge cell down":"ادغام سلول پایین","Merge cell left":"ادغام سلول Ú†Ù¾","Split cell vertically":"تقسیم عمودی سلول","Split cell horizontally":"تقسیم اÙÙ‚ÛŒ سلول","Merge cells":"ادغام سلول ها","Table toolbar":"نوارابزار جدول","Table properties":"خصوصیات جدول","Cell properties":"خصوصیات سلول",Border:"Øاشیه",Style:"",Width:"عرض",Height:"ارتÙاع",Color:"رنگ",Background:"زمینه",Padding:"Øاشیه داخلی",Dimensions:"ابعاد","Table cell text alignment":"",Alignment:"ترازبندی","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"هیچ کدام",Solid:"توپر",Dotted:"خط چین",Dashed:"نقطه چین",Double:"دوبل",Groove:"خط دار کردن",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"متن سلول را در سمت راست تراز کنید","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"جدول وسط","Align table to the right":"جدول را در سمت راست تراز کنید","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"ویرایشگر متن غنی","Editor editing area: %0":"","Edit block":"ویرایش قطعه","Click to edit block":"","Drag to move":"",Next:"بعدی",Previous:"قبلی","Editor toolbar":"نوارابزار ویرایشگر","Dropdown toolbar":"نوارابزار کشویی",Black:"سیاه","Dim grey":"خاکستری تیره",Grey:"خاکستری","Light grey":"خاکستری روشن",White:"سÙید",Red:"قرمز",Orange:"نارنجی",Yellow:"زرد","Light green":"سبز روشن",Green:"سبز",Aquamarine:"زمرد کبود",Turquoise:"Ùیروزه ای","Light blue":"آبی روشن",Blue:"آبی",Purple:"بنÙØ´","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"بازگردانی",Redo:"باز انجام","Upload in progress":"آپلود در Øال انجام","Widget toolbar":"نوار ابزار ویجت","Insert paragraph before block":"درج پاراگرا٠قبل از بلوک","Insert paragraph after block":"درج پاراگرا٠بعد از بلوک","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"تعداد لغات : %0","Characters: %0":"تعداد Øرو٠: %0"} );l.getPluralForm=function(n){return (n > 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fi.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fi.js index 1cf97567444dec5f1351213883aa41b00bdf7cc0..1ed119ba73d89f6e061cac51e973b7ff898d66f2 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fi.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fi.js @@ -1 +1 @@ -(function(d){ const l = d['fi'] = d['fi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Tasaa vasemmalle","Align right":"Tasaa oikealle","Align center":"Tasaa keskelle",Justify:"Tasaa molemmat reunat","Text alignment":"Tekstin tasaus","Text alignment toolbar":"Tekstin suuntauksen työkalupalkki",Bold:"Lihavointi",Italic:"Kursivointi",Underline:"Alleviivaus",Code:"Koodi",Strikethrough:"Yliviivaus",Subscript:"Alaindeksi",Superscript:"Yläindeksi","Block quote":"Lainaus","Insert code block":"Liitä koodilohko","Plain text":"Pelkkä teksti",Cancel:"Peruuta",Clear:"Tyhjennä","Remove color":"Poista väri","Restore default":"Palauta oletus",Save:"Tallenna","Show more items":"Näytä lisää toimintoja","%0 of %1":"%0 / %1","Cannot upload file:":"Tiedostoa ei voitu ladata:","Rich Text Editor. Editing area: %0":"Tekstimuotoilueditori. Muokkausalue: %0","Insert with file manager":"Tuo tiedostonhallinnalla","Replace with file manager":"Korvaa tiedostonhallinnalla","Insert image with file manager":"Tuo kuva tiedostonhallinnalla","Replace image with file manager":"Korvaa kuva tiedostonhallinnalla","Find and replace":"Etsi ja korvaa","Find in text…":"Etsi tekstissä…",Find:"Etsi","Previous result":"Edellinen tulos","Next result":"Seuraava tulos",Replace:"Korvaa","Replace all":"Korvaa kaikki","Match case":"Hae tapaukselle vastapari","Whole words only":"Vain kokonaisia sanoja","Replace with…":"Korvaa tällä…","Text to find must not be empty.":"Haettava teksti ei saa olla tyhjä.","Tip: Find some text first in order to replace it.":"Vinkki: hae ensin teksti korvataksesi sen.","Advanced options":"Lisäasetukset",Paragraph:"Kappale",Heading:"Otsikkotyyli","Choose heading":"Valitse otsikko","Heading 1":"Otsikko 1","Heading 2":"Otsikko 2","Heading 3":"Otsikko 3","Heading 4":"Otsikko 4","Heading 5":"Otsikko 5","Heading 6":"Otsikko 6","Type your title":"Kirjoita otsikkosi","Type or paste your content here.":"Kirjoita tai liitä sisältösi tänne.","Horizontal line":"Vaakasuora viiva","HTML object":"HMTL-kohde","Increase indent":"Lisää sisennystä","Decrease indent":"Vähennä sisennystä",Unlink:"Poista linkki",Link:"Linkki","Link URL":"Linkin osoite","Link image":"Linkkikuva","Edit link":"Muokkaa linkkiä","Open link in new tab":"Avaa linkki uudessa välilehdessä","This link has no URL":"Linkillä ei ole URL-osoitetta","Open in a new tab":"Avaa uudelle välilehdelle",Downloadable:"Ladattava","Numbered List":"Numeroitu lista","Bulleted List":"Lista","To-do List":"Tehtävälista","Bulleted list styles toolbar":"Luetelmalistan työkalupalkki","Numbered list styles toolbar":"Numerolistan työkalupalkki","Toggle the disc list style":"Levylistatyylin vaihdin","Toggle the circle list style":"Ympyrälistatyylin vaihdin","Toggle the square list style":"Neliölistatyylin vaihdin","Toggle the decimal list style":"Desimaalilistatyylin vaihdin","Toggle the decimal with leading zero list style":"Nolla alussa -desimaalilistatyylin vaihdin","Toggle the lower–roman list style":"Pienet roomalaiset numerot -listatyylin vaihdin","Toggle the upper–roman list style":"Isot roomalaiset numerot -listatyylin vaihdin","Toggle the lower–latin list style":"Pienet latinalaiset aakkoset -listatyylin vaihdin","Toggle the upper–latin list style":"Isot latinalaiset aakkoset -listatyylin vaihdin",Disc:"Levy",Circle:"Ympyrä",Square:"Neliö",Decimal:"Desimaali","Decimal with leading zero":"Nolla alussa -desimaali","Lower–roman":"Pienet roomalaiset numerot","Upper-roman":"Isot roomalaiset numerot","Lower-latin":"Pienet latinalaiset aakkoset","Upper-latin":"Isot latinalaiset aakkoset","List properties":"Listaominaisuudet","Start at":"Alkaa","Start index must be greater than 0.":"Aloitusindeksin pitää olla suurempi kuin 0.","Reversed order":"Päinvastainen järjestys","Remove Format":"Poista muotoilu","Select all":"Valitse kaikki","Show blocks":"Näytä rakenneosat",Source:"Lähde","Special characters":"Erikoismerkit",All:"Kaikki",Arrows:"Nuolet",Currency:"Valuutta",Latin:"Latinalaiset",Mathematical:"Matemaattiset",Text:"Teksti","leftwards simple arrow":"yksinkertainen nuoli vasempaan","rightwards simple arrow":"yksinkertainen nuoli oikeaan","upwards simple arrow":"yksinkertainen nuoli ylös","downwards simple arrow":"yksinkertainen nuoli alas","leftwards double arrow":"kaksoisnuoli vasemmalle","rightwards double arrow":"kaksoisnuoli oikealle","upwards double arrow":"kaksoisnuoli ylös","downwards double arrow":"kaksoisnuoli alas","leftwards dashed arrow":"pisteviivanuoli vasemmalle","rightwards dashed arrow":"pisteviivanuoli oikealle","upwards dashed arrow":"pisteviivanuoli ylös","downwards dashed arrow":"pisteviivanuoli alas","leftwards arrow to bar":"nuoli vasemmalle perusviivalla","rightwards arrow to bar":"nuoli oikealle perusviivalla","upwards arrow to bar":"nuoli ylös perusviivalla","downwards arrow to bar":"nuoli alas perusviivalla","up down arrow with base":"nuoli ylös ja alas perusviivalla","back with leftwards arrow above":"BACK-nuoli","end with leftwards arrow above":"END-nuoli","on with exclamation mark with left right arrow above":"ON!-nuoli","soon with rightwards arrow above":"SOON-nuoli","top with upwards arrow above":"TOP-nuoli","Dollar sign":"Dollarin merkki","Euro sign":"Euron merkki","Yen sign":"Jenin merkki","Pound sign":"Punnan merkki","Cent sign":"Sentin merkki","Euro-currency sign":"Eurovaluutan merkki","Colon sign":"Colónin merkki","Cruzeiro sign":"Cruzeiron merkki","French franc sign":"Ranskan frangin merkki","Lira sign":"Liiran merkki","Currency sign":"Valuuttamerkki","Bitcoin sign":"Bitcoinin merkki","Mill sign":"Valuutan tuhannesosan merkki","Naira sign":"Nairan merkki","Peseta sign":"Pesetan merkki","Rupee sign":"Rupian merkki","Won sign":"Wonin merkki","New sheqel sign":"Uuden sekelin merkki","Dong sign":"Dongin merkki","Kip sign":"Kipin merkki","Tugrik sign":"Tugrikin merkki","Drachma sign":"Drakman merkki","German penny sign":"Saksan pfennigin merkki","Peso sign":"Peson merkki","Guarani sign":"Guaranin merkki","Austral sign":"Australin merkki","Hryvnia sign":"Hryvnian merkki","Cedi sign":"Cedin merkki","Livre tournois sign":"Livre tournois’n merkki","Spesmilo sign":"Spesmilon merkki","Tenge sign":"Tengen merkki","Indian rupee sign":"Intian rupian merkki","Turkish lira sign":"Turkin liiran merkki","Nordic mark sign":"Riikintaalerin merkki","Manat sign":"Manatin merkki","Ruble sign":"Ruplan merkki","Latin capital letter a with macron":"Latinalainen suuraakkonen a ja pituusmerkki","Latin small letter a with macron":"Latinalainen pienaakkonen a ja pituusmerkki","Latin capital letter a with breve":"Latinalainen suuraakkonen a ja lyhyysmerkki","Latin small letter a with breve":"Latinalainen pienaakkonen a ja lyhyysmerkki","Latin capital letter a with ogonek":"Latinalainen suuraakkonen a ja ogonek","Latin small letter a with ogonek":"Latinalainen pienaakkonen a ja ogonek","Latin capital letter c with acute":"Latinalainen suuraakkonen c ja akuutti","Latin small letter c with acute":"Latinalainen pienaakkonen c ja akuutti","Latin capital letter c with circumflex":"Latinalainen suuraakkonen c ja sirkumfleksi","Latin small letter c with circumflex":"Latinalainen pienaakkonen c ja sirkumfleksi","Latin capital letter c with dot above":"Latinalainen suuraakkonen c ja yläpuolinen piste","Latin small letter c with dot above":"Latinalainen pienaakkonen c ja yläpuolinen piste","Latin capital letter c with caron":"Latinalainen suuraakkonen c ja hattu","Latin small letter c with caron":"Latinalainen pienaakkonen c ja hattu","Latin capital letter d with caron":"Latinalainen suuraakkonen d ja hattu","Latin small letter d with caron":"Latinalainen pienaakkonen d ja hattu","Latin capital letter d with stroke":"Latinalainen suuraakkonen d ja poikkiviiva","Latin small letter d with stroke":"Latinalainen pienaakkonen d ja poikkiviiva","Latin capital letter e with macron":"Latinalainen suuraakkonen e ja pituusmerkki","Latin small letter e with macron":"Latinalainen pienaakkonen e ja pituusmerkki","Latin capital letter e with breve":"Latinalainen suuraakkonen e ja lyhyysmerkki","Latin small letter e with breve":"Latinalainen pienaakkonen e ja lyhyysmerkki","Latin capital letter e with dot above":"Latinalainen suuraakkonen e ja yläpuolinen piste","Latin small letter e with dot above":"Latinalainen pienaakkonen e ja yläpuolinen piste","Latin capital letter e with ogonek":"Latinalainen suuraakkonen e ja ogonek","Latin small letter e with ogonek":"Latinalainen pienaakkonen e ja ogonek","Latin capital letter e with caron":"Latinalainen suuraakkonen e ja hattu","Latin small letter e with caron":"Latinalainen pienaakkonen e ja hattu","Latin capital letter g with circumflex":"Latinalainen suuraakkonen g ja sirkumfleksi","Latin small letter g with circumflex":"Latinalainen pienaakkonen g ja sirkumfleksi","Latin capital letter g with breve":"Latinalainen suuraakkonen g ja lyhyysmerkki","Latin small letter g with breve":"Latinalainen pienaakkonen g ja lyhyysmerkki","Latin capital letter g with dot above":"Latinalainen suuraakkonen g ja yläpuolinen piste","Latin small letter g with dot above":"Latinalainen pienaakkonen g ja yläpuolinen piste","Latin capital letter g with cedilla":"Latinalainen suuraakkonen g ja sedilji","Latin small letter g with cedilla":"Latinalainen pienaakkonen g ja sedilji","Latin capital letter h with circumflex":"Latinalainen suuraakkonen h ja sirkumfleksi","Latin small letter h with circumflex":"Latinalainen pienaakkonen h ja sirkumfleksi","Latin capital letter h with stroke":"Latinalainen suuraakkonen h ja poikkiviiva","Latin small letter h with stroke":"Latinalainen pienaakkonen h ja poikkiviiva","Latin capital letter i with tilde":"Latinalainen suuraakkonen i ja tilde","Latin small letter i with tilde":"Latinalainen pienaakkonen i ja tilde","Latin capital letter i with macron":"Latinalainen suuraakkonen i ja pituusmerkki","Latin small letter i with macron":"Latinalainen pienaakkonen i ja pituusmerkki","Latin capital letter i with breve":"Latinalainen suuraakkonen i ja lyhyysmerkki","Latin small letter i with breve":"Latinalainen pienaakkonen i ja lyhyysmerkki","Latin capital letter i with ogonek":"Latinalainen suuraakkonen i ja ogonek","Latin small letter i with ogonek":"Latinalainen pienaakkonen i ja ogonek","Latin capital letter i with dot above":"Latinalainen suuraakkonen i ja yläpuolinen piste","Latin small letter dotless i":"Latinalainen pienaakkonen pisteetön i","Latin capital ligature ij":"Latinalainen suuraakkosligatuuri ij","Latin small ligature ij":"Latinalainen pienaakkosligatuuri ij","Latin capital letter j with circumflex":"Latinalainen suuraakkonen j ja sirkumfleksi","Latin small letter j with circumflex":"Latinalainen pienaakkonen j ja sirkumfleksi","Latin capital letter k with cedilla":"Latinalainen suuraakkonen k ja sedilji","Latin small letter k with cedilla":"Latinalainen pienaakkonen k ja sedilji","Latin small letter kra":"Latinalainen pienaakkonen kra","Latin capital letter l with acute":"Latinalainen suuraakkonen l ja akuutti","Latin small letter l with acute":"Latinalainen pienaakkonen l ja akuutti","Latin capital letter l with cedilla":"Latinalainen suuraakkonen l ja sedilji","Latin small letter l with cedilla":"Latinalainen pienaakkonen l ja sedilji","Latin capital letter l with caron":"Latinalainen suuraakkonen l ja hattu","Latin small letter l with caron":"Latinalainen pienaakkonen l ja hattu","Latin capital letter l with middle dot":"Latinalainen suuraakkonen l ja piste keskellä","Latin small letter l with middle dot":"Latinalainen pienaakkonen l ja piste keskellä","Latin capital letter l with stroke":"Latinalainen suuraakkonen l ja poikkiviiva","Latin small letter l with stroke":"Latinalainen pienaakkonen l ja poikkiviiva","Latin capital letter n with acute":"Latinalainen suuraakkonen n ja akuutti","Latin small letter n with acute":"Latinalainen pienaakkonen n ja akuutti","Latin capital letter n with cedilla":"Latinalainen suuraakkonen n ja sedilji","Latin small letter n with cedilla":"Latinalainen pienaakkonen n ja sedilji","Latin capital letter n with caron":"Latinalainen suuraakkonen n ja hattu","Latin small letter n with caron":"Latinalainen pienaakkonen n ja hattu","Latin small letter n preceded by apostrophe":"Latinalainen pienaakkonen n jota edeltää heittomerkki","Latin capital letter eng":"Latinalainen suuraakkonen äng","Latin small letter eng":"Latinalainen pienaakkonen äng","Latin capital letter o with macron":"Latinalainen suuraakkonen o ja pituusmerkki","Latin small letter o with macron":"Latinalainen pienaakkonen o ja pituusmerkki","Latin capital letter o with breve":"Latinalainen suuraakkonen o ja lyhyysmerkki","Latin small letter o with breve":"Latinalainen pienaakkonen o ja lyhyysmerkki","Latin capital letter o with double acute":"Latinalainen suuraakkonen o ja kaksoisakuutti","Latin small letter o with double acute":"Latinalainen pienaakkonen o ja kaksoisakuutti","Latin capital ligature oe":"Latinalainen suuraakkosligatuuri oe","Latin small ligature oe":"Latinalainen pienaakkosligatuuri oe","Latin capital letter r with acute":"Latinalainen suuraakkonen r ja akuutti","Latin small letter r with acute":"Latinalainen pienaakkonen r ja akuutti","Latin capital letter r with cedilla":"Latinalainen suuraakkonen r ja sedilji","Latin small letter r with cedilla":"Latinalainen pienaakkonen r ja sedilji","Latin capital letter r with caron":"Latinalainen suuraakkonen r ja hattu","Latin small letter r with caron":"Latinalainen pienaakkonen r ja hattu","Latin capital letter s with acute":"Latinalainen suuraakkonen s ja akuutti","Latin small letter s with acute":"Latinalainen pienaakkonen s ja akuutti","Latin capital letter s with circumflex":"Latinalainen suuraakkonen s ja sirkumfleksi","Latin small letter s with circumflex":"Latinalainen pienaakkonen s ja sirkumfleksi","Latin capital letter s with cedilla":"Latinalainen suuraakkonen s ja sedilji","Latin small letter s with cedilla":"Latinalainen pienaakkonen s ja sedilji","Latin capital letter s with caron":"Latinalainen suuraakkonen s ja hattu","Latin small letter s with caron":"Latinalainen pienaakkonen s ja hattu","Latin capital letter t with cedilla":"Latinalainen suuraakkonen t ja sedilji","Latin small letter t with cedilla":"Latinalainen pienaakkonen t ja sedilji","Latin capital letter t with caron":"Latinalainen suuraakkonen t ja hattu","Latin small letter t with caron":"Latinalainen pienaakkonen t ja hattu","Latin capital letter t with stroke":"Latinalainen suuraakkonen t ja poikkiviiva","Latin small letter t with stroke":"Latinalainen pienaakkonen t ja poikkiviiva","Latin capital letter u with tilde":"Latinalainen suuraakkonen u ja tilde","Latin small letter u with tilde":"Latinalainen pienaakkonen u ja tilde","Latin capital letter u with macron":"Latinalainen suuraakkonen u ja pituusmerkki","Latin small letter u with macron":"Latinalainen pienaakkonen u ja pituusmerkki","Latin capital letter u with breve":"Latinalainen suuraakkonen u ja lyhyysmerkki","Latin small letter u with breve":"Latinalainen pienaakkonen u ja lyhyysmerkki","Latin capital letter u with ring above":"Latinalainen suuraakkonen u ja yläpuolinen ympyrä","Latin small letter u with ring above":"Latinalainen pienaakkonen u ja yläpuolinen ympyrä","Latin capital letter u with double acute":"Latinalainen suuraakkonen u ja kaksoisakuutti","Latin small letter u with double acute":"Latinalainen pienaakkonen u ja kaksoisakuutti","Latin capital letter u with ogonek":"Latinalainen suuraakkonen u ja ogonek","Latin small letter u with ogonek":"Latinalainen pienaakkonen u ja ogonek","Latin capital letter w with circumflex":"Latinalainen suuraakkonen w ja sirkumfleksi","Latin small letter w with circumflex":"Latinalainen pienaakkonen w ja sirkumfleksi","Latin capital letter y with circumflex":"Latinalainen suuraakkonen y ja sirkumfleksi","Latin small letter y with circumflex":"Latinalainen pienaakkonen y ja sirkumfleksi","Latin capital letter y with diaeresis":"Latinalainen suuraakkonen y ja treema","Latin capital letter z with acute":"Latinalainen suuraakkonen z ja akuutti","Latin small letter z with acute":"Latinalainen pienaakkonen z ja akuutti","Latin capital letter z with dot above":"Latinalainen suuraakkonen z ja yläpuolinen piste","Latin small letter z with dot above":"Latinalainen pienaakkonen z ja yläpuolinen piste","Latin capital letter z with caron":"Latinalainen suuraakkonen z ja hattu","Latin small letter z with caron":"Latinalainen pienaakkonen z ja hattu","Latin small letter long s":"Latinalainen pienaakkonen pitkä s","Less-than sign":"Pienempi kuin -merkki","Greater-than sign":"Suurempi kuin -merkki","Less-than or equal to":"Pienempi tai yhtä suuri kuin -merkki","Greater-than or equal to":"Suurempi tai yhtä suuri kuin -merkki","En dash":"N-viiva","Em dash":"M-viiva",Macron:"Pituusmerkki",Overline:"Yläviiva","Degree sign":"Asteen merkki","Minus sign":"Miinusmerkki","Plus-minus sign":"Plus-miinus-merkki","Division sign":"Jakomerkki","Fraction slash":"Murtoluvun vinoviiva","Multiplication sign":"Kertomerkki","Latin small letter f with hook":"Latinalainen pienaakkonen f jossa koukku",Integral:"Integraalimerkki","N-ary summation":"Summa",Infinity:"Äärettömän merkki","Square root":"Neliöjuuri","Tilde operator":"Tildeoperaattori","Approximately equal to":"Suunnilleen yhtä suuri kuin -merkki","Almost equal to":"Likimain yhtä suuri kuin -merkki","Not equal to":"Eri suuri kuin -merkki","Identical to":"Identtisesti yhtä suuri merkki -kuin","Element of":"Joukkoon kuulumisen merkki","Not an element of":"Joukkoon kuulumattomuuden merkki","Contains as member":"Käänteisen joukkoon kuulumisen merkki","N-ary product":"Tulo","Logical and":"Looginen ja-merkki","Logical or":"Looginen tai-merkki","Not sign":"Negaation merkki",Intersection:"Leikkauksen merkki",Union:"Yhdisteen merkki","Partial differential":"Osittaisderivaatta","For all":"Kaikkikvanttori","There exists":"Olemassaolokvanttori","Empty set":"Tyhjän joukon merkki",Nabla:"Nablan merkki","Asterisk operator":"Asteriskioperaattori","Proportional to":"Suhteellisuuden merkki",Angle:"Kulma","Vulgar fraction one quarter":"Neljäsosan merkki","Vulgar fraction one half":"Puolikkaan merkki","Vulgar fraction three quarters":"Kolmen neljäsosan merkki","Single left-pointing angle quotation mark":"Vasemmalle osoittava kulmapuolilainausmerkki","Single right-pointing angle quotation mark":"Oikealle osoittava kulmapuolilainausmerkki","Left-pointing double angle quotation mark":"Vasemmalle osoittava kaksinkertainen kulmalainausmerkki","Right-pointing double angle quotation mark":"Oikealle osoittava kaksinkertainen kulmalainausmerkki","Left single quotation mark":"Ylösalainen puolilainausmerkki","Right single quotation mark":"Puolilainausmerkki","Left double quotation mark":"Ylösalainen kokolainausmerkki","Right double quotation mark":"Kokolainausmerkki","Single low-9 quotation mark":"Rivinalinen puolilainausmerkki","Double low-9 quotation mark":"Rivinalinen kokolainausmerkki","Inverted exclamation mark":"Ylösalainen huutomerkki","Inverted question mark":"Ylösalainen kysymysmerkki","Two dot leader":"Kaksi täytemerkkiä","Horizontal ellipsis":"Kolme pistettä vaakasuunnassa","Double dagger":"Kaksoisristi","Per mille sign":"Promillemerkki","Per ten thousand sign":"Peruspisteen merkki","Double exclamation mark":"Kaksoishuutomerkki","Question exclamation mark":"Kysymysmerkki ja huutomerkki","Exclamation question mark":"Huutomerkki ja kysymysmerkki","Double question mark":"Kaksoiskysymysmerkki","Copyright sign":"Tekijänoikeusmerkki","Registered sign":"Rekisteröidyn tavaramerkin merkki","Trade mark sign":"Tavaramerkin merkki","Section sign":"Pykälämerkki","Paragraph sign":"Kappaleen merkki","Reversed paragraph sign":"Käännetty kappaleen merkki","Character categories":"Merkkiluokat",Styles:"Tyylit","Multiple styles":"Useita tyylejä","Block styles":"Lohkotyylit","Text styles":"Tekstityylit","Insert table":"Lisää taulukko","Header column":"Otsikkosarake","Insert column left":"Lisää sarake vasemmalle","Insert column right":"Lisää sarake oikealle","Delete column":"Poista sarake","Select column":"Valitse sarake",Column:"Sarake","Header row":"Otsikkorivi","Insert row below":"Lisää rivi alle","Insert row above":"Lisää rivi ylle","Delete row":"Poista rivi","Select row":"Valitse rivi",Row:"Rivi","Merge cell up":"Yhdistä solu ylös","Merge cell right":"Yhdistä solu oikealle","Merge cell down":"Yhdistä solu alas","Merge cell left":"Yhdistä solu vasemmalle","Split cell vertically":"Jaa solu pystysuunnassa","Split cell horizontally":"Jaa solu vaakasuunnassa","Merge cells":"Yhdistä tai jaa soluja","Table toolbar":"Taulukon työkalupalkki","Table properties":"Taulukon ominaisuudet","Cell properties":"Solun ominaisuudet",Border:"Reunus",Style:"Tyyli",Width:"Leveys",Height:"Korkeus",Color:"Väri",Background:"Tausta",Padding:"Täyte",Dimensions:"Mittasuhteet","Table cell text alignment":"Taulukkosolun tekstin suunta",Alignment:"Suunta","Horizontal text alignment toolbar":"Vaakasuoran tekstin suunnan työkalupalkki","Vertical text alignment toolbar":"Pystysuoran tekstin suunnan työkalupalkki","Table alignment toolbar":"Taulukon suunnan työkalupalkki",None:"Ei mitään",Solid:"Kiinteä",Dotted:"Pisteviiva",Dashed:"Katkoviiva",Double:"Kaksinkertainen",Groove:"Uurrettu",Ridge:"Harjanne",Inset:"Upote",Outset:"Ulkonema","Align cell text to the left":"Siirrä solun teksti vasemmalle","Align cell text to the center":"Siirrä solun teksti keskelle","Align cell text to the right":"Siirrä solun teksti oikealle","Justify cell text":"Tasaa solun teksti","Align cell text to the top":"Siirrä solun teksti yläosaan","Align cell text to the middle":"Siirrä solun teksti keskiosaan","Align cell text to the bottom":"Siirrä solun teksti alaosaan","Align table to the left":"Siirrä taulukko vasemmalle","Center table":"Keskitä taulukko","Align table to the right":"Siirrä taulukko oikealle","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Väri ei kelpaa. Ota sen sijaan käyttöön \"#FF0000\", \"rgb(255,0,0)\" tai \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Arvo ei kelpaa. Ota käyttöön \"10px\", \"2em\" tai pelkästään \"2\".","Color picker":"Värin valitsin","Toggle caption off":"Poista taulukon kuvaus","Toggle caption on":"Lisää taulukon kuvaus","Enter table caption":"Syötä taulukon kuvaus","Rich Text Editor":"Rikas tekstieditori","Editor editing area: %0":"Editorin muokkausalue: %0","Edit block":"Muokkaa lohkoa","Click to edit block":"Muokkaa lohkoa klikkaamalla","Drag to move":"Siirrä raahamalla",Next:"Seuraava",Previous:"Edellinen","Editor toolbar":"Editorin työkalupalkki","Dropdown toolbar":"Pudotusvalikon työkalupalkki",Black:"Musta","Dim grey":"Vaaleanharmaa",Grey:"Harmaa","Light grey":"Vaaleanharmaa",White:"Valkoinen",Red:"Punainen",Orange:"Oranssi",Yellow:"Keltainen","Light green":"Vaaleanvihreä",Green:"Vihreä",Aquamarine:"Akvamariini",Turquoise:"Turkoosi","Light blue":"Vaaleansininen",Blue:"Sininen",Purple:"Purppura","Editor block content toolbar":"Editorin lohkon sisällön työkalupalkki","Editor contextual toolbar":"Editorin kontekstuaalinen työkalupalkki",HEX:"HEX",Accept:"Hyväksy","No results found":"Tuloksia ei löytynyt","No searchable items":"Ei haettavia nimikkeitä","Editor dialog":"Editorin dialogi",Close:"Sulje",Undo:"Peru",Redo:"Tee uudelleen","Upload in progress":"Lähetys käynnissä","Widget toolbar":"Widget-työkalupalkki","Insert paragraph before block":"Liitä kappale ennen lohkoa","Insert paragraph after block":"Liitä kappale lohkon jälkeen","Press Enter to type after or press Shift + Enter to type before the widget":"Paina enter-näppäintä kirjoittaaksesi tai paina shift + enter kirjoittaaksesi ennen widget-sovellusta","Words: %0":"Sanoja: %0","Characters: %0":"Merkkejä: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['fi'] = d['fi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Tasaa vasemmalle","Align right":"Tasaa oikealle","Align center":"Tasaa keskelle",Justify:"Tasaa molemmat reunat","Text alignment":"Tekstin tasaus","Text alignment toolbar":"Tekstin suuntauksen työkalupalkki",Bold:"Lihavointi",Italic:"Kursivointi",Underline:"Alleviivaus",Code:"Koodi",Strikethrough:"Yliviivaus",Subscript:"Alaindeksi",Superscript:"Yläindeksi","Block quote":"Lainaus","Insert code block":"Liitä koodilohko","Plain text":"Pelkkä teksti",Cancel:"Peruuta",Clear:"Tyhjennä","Remove color":"Poista väri","Restore default":"Palauta oletus",Save:"Tallenna","Show more items":"Näytä lisää toimintoja","%0 of %1":"%0 / %1","Cannot upload file:":"Tiedostoa ei voitu ladata:","Rich Text Editor. Editing area: %0":"Tekstimuotoilueditori. Muokkausalue: %0","Insert with file manager":"Tuo tiedostonhallinnalla","Replace with file manager":"Korvaa tiedostonhallinnalla","Insert image with file manager":"Tuo kuva tiedostonhallinnalla","Replace image with file manager":"Korvaa kuva tiedostonhallinnalla","Find and replace":"Etsi ja korvaa","Find in text…":"Etsi tekstissä…",Find:"Etsi","Previous result":"Edellinen tulos","Next result":"Seuraava tulos",Replace:"Korvaa","Replace all":"Korvaa kaikki","Match case":"Hae tapaukselle vastapari","Whole words only":"Vain kokonaisia sanoja","Replace with…":"Korvaa tällä…","Text to find must not be empty.":"Haettava teksti ei saa olla tyhjä.","Tip: Find some text first in order to replace it.":"Vinkki: hae ensin teksti korvataksesi sen.","Advanced options":"Lisäasetukset","Font Size":"Fontin koko",Tiny:"Hyvin pieni",Small:"Pieni",Big:"Suuri",Huge:"Hyvin suuri","Font Family":"Fonttiperhe",Default:"Oletus","Font Color":"Fontin väri","Font Background Color":"Fontin taustaväri","Document colors":"Asiakirjan värit",Paragraph:"Kappale",Heading:"Otsikkotyyli","Choose heading":"Valitse otsikko","Heading 1":"Otsikko 1","Heading 2":"Otsikko 2","Heading 3":"Otsikko 3","Heading 4":"Otsikko 4","Heading 5":"Otsikko 5","Heading 6":"Otsikko 6","Type your title":"Kirjoita otsikkosi","Type or paste your content here.":"Kirjoita tai liitä sisältösi tänne.","Horizontal line":"Vaakasuora viiva","HTML object":"HMTL-kohde","Increase indent":"Lisää sisennystä","Decrease indent":"Vähennä sisennystä",Unlink:"Poista linkki",Link:"Linkki","Link URL":"Linkin osoite","Link image":"Linkkikuva","Edit link":"Muokkaa linkkiä","Open link in new tab":"Avaa linkki uudessa välilehdessä","This link has no URL":"Linkillä ei ole URL-osoitetta","Open in a new tab":"Avaa uudelle välilehdelle",Downloadable:"Ladattava","Numbered List":"Numeroitu lista","Bulleted List":"Lista","To-do List":"Tehtävälista","Bulleted list styles toolbar":"Luetelmalistan työkalupalkki","Numbered list styles toolbar":"Numerolistan työkalupalkki","Toggle the disc list style":"Levylistatyylin vaihdin","Toggle the circle list style":"Ympyrälistatyylin vaihdin","Toggle the square list style":"Neliölistatyylin vaihdin","Toggle the decimal list style":"Desimaalilistatyylin vaihdin","Toggle the decimal with leading zero list style":"Nolla alussa -desimaalilistatyylin vaihdin","Toggle the lower–roman list style":"Pienet roomalaiset numerot -listatyylin vaihdin","Toggle the upper–roman list style":"Isot roomalaiset numerot -listatyylin vaihdin","Toggle the lower–latin list style":"Pienet latinalaiset aakkoset -listatyylin vaihdin","Toggle the upper–latin list style":"Isot latinalaiset aakkoset -listatyylin vaihdin",Disc:"Levy",Circle:"Ympyrä",Square:"Neliö",Decimal:"Desimaali","Decimal with leading zero":"Nolla alussa -desimaali","Lower–roman":"Pienet roomalaiset numerot","Upper-roman":"Isot roomalaiset numerot","Lower-latin":"Pienet latinalaiset aakkoset","Upper-latin":"Isot latinalaiset aakkoset","List properties":"Listaominaisuudet","Start at":"Alkaa","Start index must be greater than 0.":"Aloitusindeksin pitää olla suurempi kuin 0.","Reversed order":"Päinvastainen järjestys","Remove Format":"Poista muotoilu","Select all":"Valitse kaikki","Show blocks":"Näytä rakenneosat",Source:"Lähde","Special characters":"Erikoismerkit",All:"Kaikki",Arrows:"Nuolet",Currency:"Valuutta",Latin:"Latinalaiset",Mathematical:"Matemaattiset",Text:"Teksti","leftwards simple arrow":"yksinkertainen nuoli vasempaan","rightwards simple arrow":"yksinkertainen nuoli oikeaan","upwards simple arrow":"yksinkertainen nuoli ylös","downwards simple arrow":"yksinkertainen nuoli alas","leftwards double arrow":"kaksoisnuoli vasemmalle","rightwards double arrow":"kaksoisnuoli oikealle","upwards double arrow":"kaksoisnuoli ylös","downwards double arrow":"kaksoisnuoli alas","leftwards dashed arrow":"pisteviivanuoli vasemmalle","rightwards dashed arrow":"pisteviivanuoli oikealle","upwards dashed arrow":"pisteviivanuoli ylös","downwards dashed arrow":"pisteviivanuoli alas","leftwards arrow to bar":"nuoli vasemmalle perusviivalla","rightwards arrow to bar":"nuoli oikealle perusviivalla","upwards arrow to bar":"nuoli ylös perusviivalla","downwards arrow to bar":"nuoli alas perusviivalla","up down arrow with base":"nuoli ylös ja alas perusviivalla","back with leftwards arrow above":"BACK-nuoli","end with leftwards arrow above":"END-nuoli","on with exclamation mark with left right arrow above":"ON!-nuoli","soon with rightwards arrow above":"SOON-nuoli","top with upwards arrow above":"TOP-nuoli","Dollar sign":"Dollarin merkki","Euro sign":"Euron merkki","Yen sign":"Jenin merkki","Pound sign":"Punnan merkki","Cent sign":"Sentin merkki","Euro-currency sign":"Eurovaluutan merkki","Colon sign":"Colónin merkki","Cruzeiro sign":"Cruzeiron merkki","French franc sign":"Ranskan frangin merkki","Lira sign":"Liiran merkki","Currency sign":"Valuuttamerkki","Bitcoin sign":"Bitcoinin merkki","Mill sign":"Valuutan tuhannesosan merkki","Naira sign":"Nairan merkki","Peseta sign":"Pesetan merkki","Rupee sign":"Rupian merkki","Won sign":"Wonin merkki","New sheqel sign":"Uuden sekelin merkki","Dong sign":"Dongin merkki","Kip sign":"Kipin merkki","Tugrik sign":"Tugrikin merkki","Drachma sign":"Drakman merkki","German penny sign":"Saksan pfennigin merkki","Peso sign":"Peson merkki","Guarani sign":"Guaranin merkki","Austral sign":"Australin merkki","Hryvnia sign":"Hryvnian merkki","Cedi sign":"Cedin merkki","Livre tournois sign":"Livre tournois’n merkki","Spesmilo sign":"Spesmilon merkki","Tenge sign":"Tengen merkki","Indian rupee sign":"Intian rupian merkki","Turkish lira sign":"Turkin liiran merkki","Nordic mark sign":"Riikintaalerin merkki","Manat sign":"Manatin merkki","Ruble sign":"Ruplan merkki","Latin capital letter a with macron":"Latinalainen suuraakkonen a ja pituusmerkki","Latin small letter a with macron":"Latinalainen pienaakkonen a ja pituusmerkki","Latin capital letter a with breve":"Latinalainen suuraakkonen a ja lyhyysmerkki","Latin small letter a with breve":"Latinalainen pienaakkonen a ja lyhyysmerkki","Latin capital letter a with ogonek":"Latinalainen suuraakkonen a ja ogonek","Latin small letter a with ogonek":"Latinalainen pienaakkonen a ja ogonek","Latin capital letter c with acute":"Latinalainen suuraakkonen c ja akuutti","Latin small letter c with acute":"Latinalainen pienaakkonen c ja akuutti","Latin capital letter c with circumflex":"Latinalainen suuraakkonen c ja sirkumfleksi","Latin small letter c with circumflex":"Latinalainen pienaakkonen c ja sirkumfleksi","Latin capital letter c with dot above":"Latinalainen suuraakkonen c ja yläpuolinen piste","Latin small letter c with dot above":"Latinalainen pienaakkonen c ja yläpuolinen piste","Latin capital letter c with caron":"Latinalainen suuraakkonen c ja hattu","Latin small letter c with caron":"Latinalainen pienaakkonen c ja hattu","Latin capital letter d with caron":"Latinalainen suuraakkonen d ja hattu","Latin small letter d with caron":"Latinalainen pienaakkonen d ja hattu","Latin capital letter d with stroke":"Latinalainen suuraakkonen d ja poikkiviiva","Latin small letter d with stroke":"Latinalainen pienaakkonen d ja poikkiviiva","Latin capital letter e with macron":"Latinalainen suuraakkonen e ja pituusmerkki","Latin small letter e with macron":"Latinalainen pienaakkonen e ja pituusmerkki","Latin capital letter e with breve":"Latinalainen suuraakkonen e ja lyhyysmerkki","Latin small letter e with breve":"Latinalainen pienaakkonen e ja lyhyysmerkki","Latin capital letter e with dot above":"Latinalainen suuraakkonen e ja yläpuolinen piste","Latin small letter e with dot above":"Latinalainen pienaakkonen e ja yläpuolinen piste","Latin capital letter e with ogonek":"Latinalainen suuraakkonen e ja ogonek","Latin small letter e with ogonek":"Latinalainen pienaakkonen e ja ogonek","Latin capital letter e with caron":"Latinalainen suuraakkonen e ja hattu","Latin small letter e with caron":"Latinalainen pienaakkonen e ja hattu","Latin capital letter g with circumflex":"Latinalainen suuraakkonen g ja sirkumfleksi","Latin small letter g with circumflex":"Latinalainen pienaakkonen g ja sirkumfleksi","Latin capital letter g with breve":"Latinalainen suuraakkonen g ja lyhyysmerkki","Latin small letter g with breve":"Latinalainen pienaakkonen g ja lyhyysmerkki","Latin capital letter g with dot above":"Latinalainen suuraakkonen g ja yläpuolinen piste","Latin small letter g with dot above":"Latinalainen pienaakkonen g ja yläpuolinen piste","Latin capital letter g with cedilla":"Latinalainen suuraakkonen g ja sedilji","Latin small letter g with cedilla":"Latinalainen pienaakkonen g ja sedilji","Latin capital letter h with circumflex":"Latinalainen suuraakkonen h ja sirkumfleksi","Latin small letter h with circumflex":"Latinalainen pienaakkonen h ja sirkumfleksi","Latin capital letter h with stroke":"Latinalainen suuraakkonen h ja poikkiviiva","Latin small letter h with stroke":"Latinalainen pienaakkonen h ja poikkiviiva","Latin capital letter i with tilde":"Latinalainen suuraakkonen i ja tilde","Latin small letter i with tilde":"Latinalainen pienaakkonen i ja tilde","Latin capital letter i with macron":"Latinalainen suuraakkonen i ja pituusmerkki","Latin small letter i with macron":"Latinalainen pienaakkonen i ja pituusmerkki","Latin capital letter i with breve":"Latinalainen suuraakkonen i ja lyhyysmerkki","Latin small letter i with breve":"Latinalainen pienaakkonen i ja lyhyysmerkki","Latin capital letter i with ogonek":"Latinalainen suuraakkonen i ja ogonek","Latin small letter i with ogonek":"Latinalainen pienaakkonen i ja ogonek","Latin capital letter i with dot above":"Latinalainen suuraakkonen i ja yläpuolinen piste","Latin small letter dotless i":"Latinalainen pienaakkonen pisteetön i","Latin capital ligature ij":"Latinalainen suuraakkosligatuuri ij","Latin small ligature ij":"Latinalainen pienaakkosligatuuri ij","Latin capital letter j with circumflex":"Latinalainen suuraakkonen j ja sirkumfleksi","Latin small letter j with circumflex":"Latinalainen pienaakkonen j ja sirkumfleksi","Latin capital letter k with cedilla":"Latinalainen suuraakkonen k ja sedilji","Latin small letter k with cedilla":"Latinalainen pienaakkonen k ja sedilji","Latin small letter kra":"Latinalainen pienaakkonen kra","Latin capital letter l with acute":"Latinalainen suuraakkonen l ja akuutti","Latin small letter l with acute":"Latinalainen pienaakkonen l ja akuutti","Latin capital letter l with cedilla":"Latinalainen suuraakkonen l ja sedilji","Latin small letter l with cedilla":"Latinalainen pienaakkonen l ja sedilji","Latin capital letter l with caron":"Latinalainen suuraakkonen l ja hattu","Latin small letter l with caron":"Latinalainen pienaakkonen l ja hattu","Latin capital letter l with middle dot":"Latinalainen suuraakkonen l ja piste keskellä","Latin small letter l with middle dot":"Latinalainen pienaakkonen l ja piste keskellä","Latin capital letter l with stroke":"Latinalainen suuraakkonen l ja poikkiviiva","Latin small letter l with stroke":"Latinalainen pienaakkonen l ja poikkiviiva","Latin capital letter n with acute":"Latinalainen suuraakkonen n ja akuutti","Latin small letter n with acute":"Latinalainen pienaakkonen n ja akuutti","Latin capital letter n with cedilla":"Latinalainen suuraakkonen n ja sedilji","Latin small letter n with cedilla":"Latinalainen pienaakkonen n ja sedilji","Latin capital letter n with caron":"Latinalainen suuraakkonen n ja hattu","Latin small letter n with caron":"Latinalainen pienaakkonen n ja hattu","Latin small letter n preceded by apostrophe":"Latinalainen pienaakkonen n jota edeltää heittomerkki","Latin capital letter eng":"Latinalainen suuraakkonen äng","Latin small letter eng":"Latinalainen pienaakkonen äng","Latin capital letter o with macron":"Latinalainen suuraakkonen o ja pituusmerkki","Latin small letter o with macron":"Latinalainen pienaakkonen o ja pituusmerkki","Latin capital letter o with breve":"Latinalainen suuraakkonen o ja lyhyysmerkki","Latin small letter o with breve":"Latinalainen pienaakkonen o ja lyhyysmerkki","Latin capital letter o with double acute":"Latinalainen suuraakkonen o ja kaksoisakuutti","Latin small letter o with double acute":"Latinalainen pienaakkonen o ja kaksoisakuutti","Latin capital ligature oe":"Latinalainen suuraakkosligatuuri oe","Latin small ligature oe":"Latinalainen pienaakkosligatuuri oe","Latin capital letter r with acute":"Latinalainen suuraakkonen r ja akuutti","Latin small letter r with acute":"Latinalainen pienaakkonen r ja akuutti","Latin capital letter r with cedilla":"Latinalainen suuraakkonen r ja sedilji","Latin small letter r with cedilla":"Latinalainen pienaakkonen r ja sedilji","Latin capital letter r with caron":"Latinalainen suuraakkonen r ja hattu","Latin small letter r with caron":"Latinalainen pienaakkonen r ja hattu","Latin capital letter s with acute":"Latinalainen suuraakkonen s ja akuutti","Latin small letter s with acute":"Latinalainen pienaakkonen s ja akuutti","Latin capital letter s with circumflex":"Latinalainen suuraakkonen s ja sirkumfleksi","Latin small letter s with circumflex":"Latinalainen pienaakkonen s ja sirkumfleksi","Latin capital letter s with cedilla":"Latinalainen suuraakkonen s ja sedilji","Latin small letter s with cedilla":"Latinalainen pienaakkonen s ja sedilji","Latin capital letter s with caron":"Latinalainen suuraakkonen s ja hattu","Latin small letter s with caron":"Latinalainen pienaakkonen s ja hattu","Latin capital letter t with cedilla":"Latinalainen suuraakkonen t ja sedilji","Latin small letter t with cedilla":"Latinalainen pienaakkonen t ja sedilji","Latin capital letter t with caron":"Latinalainen suuraakkonen t ja hattu","Latin small letter t with caron":"Latinalainen pienaakkonen t ja hattu","Latin capital letter t with stroke":"Latinalainen suuraakkonen t ja poikkiviiva","Latin small letter t with stroke":"Latinalainen pienaakkonen t ja poikkiviiva","Latin capital letter u with tilde":"Latinalainen suuraakkonen u ja tilde","Latin small letter u with tilde":"Latinalainen pienaakkonen u ja tilde","Latin capital letter u with macron":"Latinalainen suuraakkonen u ja pituusmerkki","Latin small letter u with macron":"Latinalainen pienaakkonen u ja pituusmerkki","Latin capital letter u with breve":"Latinalainen suuraakkonen u ja lyhyysmerkki","Latin small letter u with breve":"Latinalainen pienaakkonen u ja lyhyysmerkki","Latin capital letter u with ring above":"Latinalainen suuraakkonen u ja yläpuolinen ympyrä","Latin small letter u with ring above":"Latinalainen pienaakkonen u ja yläpuolinen ympyrä","Latin capital letter u with double acute":"Latinalainen suuraakkonen u ja kaksoisakuutti","Latin small letter u with double acute":"Latinalainen pienaakkonen u ja kaksoisakuutti","Latin capital letter u with ogonek":"Latinalainen suuraakkonen u ja ogonek","Latin small letter u with ogonek":"Latinalainen pienaakkonen u ja ogonek","Latin capital letter w with circumflex":"Latinalainen suuraakkonen w ja sirkumfleksi","Latin small letter w with circumflex":"Latinalainen pienaakkonen w ja sirkumfleksi","Latin capital letter y with circumflex":"Latinalainen suuraakkonen y ja sirkumfleksi","Latin small letter y with circumflex":"Latinalainen pienaakkonen y ja sirkumfleksi","Latin capital letter y with diaeresis":"Latinalainen suuraakkonen y ja treema","Latin capital letter z with acute":"Latinalainen suuraakkonen z ja akuutti","Latin small letter z with acute":"Latinalainen pienaakkonen z ja akuutti","Latin capital letter z with dot above":"Latinalainen suuraakkonen z ja yläpuolinen piste","Latin small letter z with dot above":"Latinalainen pienaakkonen z ja yläpuolinen piste","Latin capital letter z with caron":"Latinalainen suuraakkonen z ja hattu","Latin small letter z with caron":"Latinalainen pienaakkonen z ja hattu","Latin small letter long s":"Latinalainen pienaakkonen pitkä s","Less-than sign":"Pienempi kuin -merkki","Greater-than sign":"Suurempi kuin -merkki","Less-than or equal to":"Pienempi tai yhtä suuri kuin -merkki","Greater-than or equal to":"Suurempi tai yhtä suuri kuin -merkki","En dash":"N-viiva","Em dash":"M-viiva",Macron:"Pituusmerkki",Overline:"Yläviiva","Degree sign":"Asteen merkki","Minus sign":"Miinusmerkki","Plus-minus sign":"Plus-miinus-merkki","Division sign":"Jakomerkki","Fraction slash":"Murtoluvun vinoviiva","Multiplication sign":"Kertomerkki","Latin small letter f with hook":"Latinalainen pienaakkonen f jossa koukku",Integral:"Integraalimerkki","N-ary summation":"Summa",Infinity:"Äärettömän merkki","Square root":"Neliöjuuri","Tilde operator":"Tildeoperaattori","Approximately equal to":"Suunnilleen yhtä suuri kuin -merkki","Almost equal to":"Likimain yhtä suuri kuin -merkki","Not equal to":"Eri suuri kuin -merkki","Identical to":"Identtisesti yhtä suuri merkki -kuin","Element of":"Joukkoon kuulumisen merkki","Not an element of":"Joukkoon kuulumattomuuden merkki","Contains as member":"Käänteisen joukkoon kuulumisen merkki","N-ary product":"Tulo","Logical and":"Looginen ja-merkki","Logical or":"Looginen tai-merkki","Not sign":"Negaation merkki",Intersection:"Leikkauksen merkki",Union:"Yhdisteen merkki","Partial differential":"Osittaisderivaatta","For all":"Kaikkikvanttori","There exists":"Olemassaolokvanttori","Empty set":"Tyhjän joukon merkki",Nabla:"Nablan merkki","Asterisk operator":"Asteriskioperaattori","Proportional to":"Suhteellisuuden merkki",Angle:"Kulma","Vulgar fraction one quarter":"Neljäsosan merkki","Vulgar fraction one half":"Puolikkaan merkki","Vulgar fraction three quarters":"Kolmen neljäsosan merkki","Single left-pointing angle quotation mark":"Vasemmalle osoittava kulmapuolilainausmerkki","Single right-pointing angle quotation mark":"Oikealle osoittava kulmapuolilainausmerkki","Left-pointing double angle quotation mark":"Vasemmalle osoittava kaksinkertainen kulmalainausmerkki","Right-pointing double angle quotation mark":"Oikealle osoittava kaksinkertainen kulmalainausmerkki","Left single quotation mark":"Ylösalainen puolilainausmerkki","Right single quotation mark":"Puolilainausmerkki","Left double quotation mark":"Ylösalainen kokolainausmerkki","Right double quotation mark":"Kokolainausmerkki","Single low-9 quotation mark":"Rivinalinen puolilainausmerkki","Double low-9 quotation mark":"Rivinalinen kokolainausmerkki","Inverted exclamation mark":"Ylösalainen huutomerkki","Inverted question mark":"Ylösalainen kysymysmerkki","Two dot leader":"Kaksi täytemerkkiä","Horizontal ellipsis":"Kolme pistettä vaakasuunnassa","Double dagger":"Kaksoisristi","Per mille sign":"Promillemerkki","Per ten thousand sign":"Peruspisteen merkki","Double exclamation mark":"Kaksoishuutomerkki","Question exclamation mark":"Kysymysmerkki ja huutomerkki","Exclamation question mark":"Huutomerkki ja kysymysmerkki","Double question mark":"Kaksoiskysymysmerkki","Copyright sign":"Tekijänoikeusmerkki","Registered sign":"Rekisteröidyn tavaramerkin merkki","Trade mark sign":"Tavaramerkin merkki","Section sign":"Pykälämerkki","Paragraph sign":"Kappaleen merkki","Reversed paragraph sign":"Käännetty kappaleen merkki","Character categories":"Merkkiluokat",Styles:"Tyylit","Multiple styles":"Useita tyylejä","Block styles":"Lohkotyylit","Text styles":"Tekstityylit","Insert table":"Lisää taulukko","Header column":"Otsikkosarake","Insert column left":"Lisää sarake vasemmalle","Insert column right":"Lisää sarake oikealle","Delete column":"Poista sarake","Select column":"Valitse sarake",Column:"Sarake","Header row":"Otsikkorivi","Insert row below":"Lisää rivi alle","Insert row above":"Lisää rivi ylle","Delete row":"Poista rivi","Select row":"Valitse rivi",Row:"Rivi","Merge cell up":"Yhdistä solu ylös","Merge cell right":"Yhdistä solu oikealle","Merge cell down":"Yhdistä solu alas","Merge cell left":"Yhdistä solu vasemmalle","Split cell vertically":"Jaa solu pystysuunnassa","Split cell horizontally":"Jaa solu vaakasuunnassa","Merge cells":"Yhdistä tai jaa soluja","Table toolbar":"Taulukon työkalupalkki","Table properties":"Taulukon ominaisuudet","Cell properties":"Solun ominaisuudet",Border:"Reunus",Style:"Tyyli",Width:"Leveys",Height:"Korkeus",Color:"Väri",Background:"Tausta",Padding:"Täyte",Dimensions:"Mittasuhteet","Table cell text alignment":"Taulukkosolun tekstin suunta",Alignment:"Suunta","Horizontal text alignment toolbar":"Vaakasuoran tekstin suunnan työkalupalkki","Vertical text alignment toolbar":"Pystysuoran tekstin suunnan työkalupalkki","Table alignment toolbar":"Taulukon suunnan työkalupalkki",None:"Ei mitään",Solid:"Kiinteä",Dotted:"Pisteviiva",Dashed:"Katkoviiva",Double:"Kaksinkertainen",Groove:"Uurrettu",Ridge:"Harjanne",Inset:"Upote",Outset:"Ulkonema","Align cell text to the left":"Siirrä solun teksti vasemmalle","Align cell text to the center":"Siirrä solun teksti keskelle","Align cell text to the right":"Siirrä solun teksti oikealle","Justify cell text":"Tasaa solun teksti","Align cell text to the top":"Siirrä solun teksti yläosaan","Align cell text to the middle":"Siirrä solun teksti keskiosaan","Align cell text to the bottom":"Siirrä solun teksti alaosaan","Align table to the left":"Siirrä taulukko vasemmalle","Center table":"Keskitä taulukko","Align table to the right":"Siirrä taulukko oikealle","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Väri ei kelpaa. Ota sen sijaan käyttöön \"#FF0000\", \"rgb(255,0,0)\" tai \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Arvo ei kelpaa. Ota käyttöön \"10px\", \"2em\" tai pelkästään \"2\".","Color picker":"Värin valitsin","Toggle caption off":"Poista taulukon kuvaus","Toggle caption on":"Lisää taulukon kuvaus","Enter table caption":"Syötä taulukon kuvaus","Rich Text Editor":"Rikas tekstieditori","Editor editing area: %0":"Editorin muokkausalue: %0","Edit block":"Muokkaa lohkoa","Click to edit block":"Muokkaa lohkoa klikkaamalla","Drag to move":"Siirrä raahamalla",Next:"Seuraava",Previous:"Edellinen","Editor toolbar":"Editorin työkalupalkki","Dropdown toolbar":"Pudotusvalikon työkalupalkki",Black:"Musta","Dim grey":"Vaaleanharmaa",Grey:"Harmaa","Light grey":"Vaaleanharmaa",White:"Valkoinen",Red:"Punainen",Orange:"Oranssi",Yellow:"Keltainen","Light green":"Vaaleanvihreä",Green:"Vihreä",Aquamarine:"Akvamariini",Turquoise:"Turkoosi","Light blue":"Vaaleansininen",Blue:"Sininen",Purple:"Purppura","Editor block content toolbar":"Editorin lohkon sisällön työkalupalkki","Editor contextual toolbar":"Editorin kontekstuaalinen työkalupalkki",HEX:"HEX",Accept:"Hyväksy","No results found":"Tuloksia ei löytynyt","No searchable items":"Ei haettavia nimikkeitä","Editor dialog":"Editorin dialogi",Close:"Sulje",Undo:"Peru",Redo:"Tee uudelleen","Upload in progress":"Lähetys käynnissä","Widget toolbar":"Widget-työkalupalkki","Insert paragraph before block":"Liitä kappale ennen lohkoa","Insert paragraph after block":"Liitä kappale lohkon jälkeen","Press Enter to type after or press Shift + Enter to type before the widget":"Paina enter-näppäintä kirjoittaaksesi tai paina shift + enter kirjoittaaksesi ennen widget-sovellusta","Words: %0":"Sanoja: %0","Characters: %0":"Merkkejä: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fr.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fr.js index 469164c2418f44ff847a2cccdd01d4436581dfef..b8a02b4a78d05401b4037527d8ed87e67cccd4a9 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fr.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/fr.js @@ -1 +1 @@ -(function(d){ const l = d['fr'] = d['fr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aligner à gauche","Align right":"Aligner à droite","Align center":"Centrer",Justify:"Justifier","Text alignment":"Alignement du texte","Text alignment toolbar":"Barre d'outils d'alignement du texte",Bold:"Gras",Italic:"Italique",Underline:"Souligné",Code:"Code",Strikethrough:"Barré",Subscript:"Indice",Superscript:"Exposant","Block quote":"Citation","Insert code block":"Insérer un bloc de code","Plain text":"Texte brut",Cancel:"Annuler",Clear:"Effacer","Remove color":"Enlever la couleur","Restore default":"Restaurer par défaut",Save:"Enregistrer","Show more items":"Montrer plus d'éléments","%0 of %1":"%0 sur %1","Cannot upload file:":"Envoi du fichier échoué :","Rich Text Editor. Editing area: %0":"Éditeur de texte enrichi. Zone d'édition : %0","Insert with file manager":"Insérer avec le gestionnaire de fichiers","Replace with file manager":"Remplacer avec le gestionnaire de fichiers","Insert image with file manager":"Insérer une image avec le gestionnaire de fichiers","Replace image with file manager":"Remplacer l'image avec le gestionnaire de fichiers","Find and replace":"Rechercher et remplacer","Find in text…":"Rechercher dans le texte...",Find:"Rechercher","Previous result":"Résultat précédent","Next result":"Résultat suivant",Replace:"Remplacer","Replace all":"Remplacer tout","Match case":"Sensible à la casse","Whole words only":"Mots entiers uniquement","Replace with…":"Remplacer par ...","Text to find must not be empty.":"L'expression à rechercher ne doit pas être vide","Tip: Find some text first in order to replace it.":"Astuce : rechercher une expression afin de la remplacer","Advanced options":"Options avancées",Paragraph:"Paragraphe",Heading:"En-tête","Choose heading":"Choisir l'en-tête","Heading 1":"Titre 1","Heading 2":"Titre 2","Heading 3":"Titre 3","Heading 4":"Titre 4","Heading 5":"Titre 5","Heading 6":"Titre 6","Type your title":"Rentrer votre titre","Type or paste your content here.":"Noter ou coller votre contenu ici","Horizontal line":"Ligne horizontale","HTML object":"Objet HTML","Increase indent":"Augmenter le retrait","Decrease indent":"Diminuer le retrait",Unlink:"Supprimer le lien",Link:"Lien","Link URL":"URL du lien","Link image":"Lien d'image","Edit link":"Modifier le lien","Open link in new tab":"Ouvrir le lien dans un nouvel onglet","This link has no URL":"Ce lien n'a pas d'URL","Open in a new tab":"Ouvrir dans un nouvel onglet",Downloadable:"Fichier téléchargeable","Numbered List":"Liste numérotée","Bulleted List":"Liste à puces","To-do List":"Liste de tâches","Bulleted list styles toolbar":"Barre d'outils des styles de liste à puce","Numbered list styles toolbar":"Barre d'outils des styles de liste numérotée","Toggle the disc list style":"Activer / désactiver le style de liste \"disque\"","Toggle the circle list style":"Activer / désactiver le style de liste \"cercle\"","Toggle the square list style":"Activer / désactiver le style de liste \"carré\"","Toggle the decimal list style":"Activer / désactiver le style de liste \"chiffres\"","Toggle the decimal with leading zero list style":"Activer / désactiver le style de liste \"chiffres de mêmes longueurs\"","Toggle the lower–roman list style":"Activer / désactiver le style de liste \"chiffres romains en minuscules\"","Toggle the upper–roman list style":"Activer / désactiver le style de liste \"chiffres romains en majuscules\"","Toggle the lower–latin list style":"Activer / désactiver le style de liste \"lettres minuscules\"","Toggle the upper–latin list style":"Activer / désactiver le style de liste \"lettres majuscules\"",Disc:"Disque",Circle:"Cercle",Square:"Carré",Decimal:"Chiffres","Decimal with leading zero":"Chiffres avec des zéros supplémentaire","Lower–roman":"Chiffres romains en minuscules","Upper-roman":"Chiffres romains en majuscules","Lower-latin":"Lettres minuscules","Upper-latin":"Lettres majuscules","List properties":"Liste des propriétés","Start at":"Commencer à ","Start index must be greater than 0.":"L'indice de départ doit être supérieur à 0.","Reversed order":"Ordre inversé","Remove Format":"Enlever le format","Select all":"Sélectionner tout","Show blocks":"Afficher les blocs",Source:"Source","Special characters":"Caractères spéciaux",All:"Tous",Arrows:"Flèches",Currency:"Devise",Latin:"Latin",Mathematical:"Mathématique",Text:"Texte","leftwards simple arrow":"flèche simple vers la gauche","rightwards simple arrow":"flèche simple vers la droite","upwards simple arrow":"flèche simple vers le haut","downwards simple arrow":"flèche simple vers le bas","leftwards double arrow":"Double flèche vers la gauche","rightwards double arrow":"Double flèche vers la droite","upwards double arrow":"Double flèche vers le haut","downwards double arrow":"Double flèche vers le bas","leftwards dashed arrow":"Flèche en pointillés vers la gauche","rightwards dashed arrow":"Flèche en pointillés vers la droite","upwards dashed arrow":"Flèche en pointillés vers le haut","downwards dashed arrow":"Flèche en pointillés vers le bas","leftwards arrow to bar":"Flèche vers la gauche avec barre de fin","rightwards arrow to bar":"Flèche vers la droite avec barre de fin","upwards arrow to bar":"Flèche vers le haut avec barre de fin","downwards arrow to bar":"Flèche vers le bas avec barre de fin","up down arrow with base":"Flèche haut et bas avec barre de fin","back with leftwards arrow above":"Précédent avec flèche vers la gauche","end with leftwards arrow above":"Fin avec flèche vers la gauche","on with exclamation mark with left right arrow above":"Allumé avec flèches vers la gauche et la droite","soon with rightwards arrow above":"Bientôt avec flèche vers la droite","top with upwards arrow above":"Haut avec flèche vers le haut","Dollar sign":"Dollar","Euro sign":"Euro","Yen sign":"Yen","Pound sign":"Livre sterling","Cent sign":"Centime","Euro-currency sign":"Symbole monétaire de l'euro","Colon sign":"Deux points","Cruzeiro sign":"Cruzeiro","French franc sign":"Franc français","Lira sign":"Lire","Currency sign":"Symbole monétaire","Bitcoin sign":"Bitcoin","Mill sign":"Moulin","Naira sign":"Naira","Peseta sign":"Peseta","Rupee sign":"Roupie","Won sign":"Won","New sheqel sign":"Shekel","Dong sign":"Dong","Kip sign":"Kip","Tugrik sign":"Tugrik","Drachma sign":"Drachme","German penny sign":"Pfennig","Peso sign":"Peso","Guarani sign":"Guarani","Austral sign":"Austral","Hryvnia sign":"Hryvnia","Cedi sign":"Cédi","Livre tournois sign":"Livre tournois","Spesmilo sign":"Spesmilo","Tenge sign":"Tenge","Indian rupee sign":"Roupie indienne","Turkish lira sign":"Lire turque","Nordic mark sign":"Mark nordique","Manat sign":"Manat","Ruble sign":"Rouble","Latin capital letter a with macron":"A barre majuscule","Latin small letter a with macron":"A barre minuscule","Latin capital letter a with breve":"A bref majuscule","Latin small letter a with breve":"A bref minuscule","Latin capital letter a with ogonek":"A ogonek majuscule","Latin small letter a with ogonek":"A ogonek minuscule","Latin capital letter c with acute":"C accent aigu majuscule","Latin small letter c with acute":"C accent aigu minuscule","Latin capital letter c with circumflex":"C circonflexe majuscule","Latin small letter c with circumflex":"C circonflexe minuscule","Latin capital letter c with dot above":"C point suscrit majuscule","Latin small letter c with dot above":"C point suscrit minuscule","Latin capital letter c with caron":"C caron majuscule","Latin small letter c with caron":"C caron minuscule","Latin capital letter d with caron":"D caron majuscule","Latin small letter d with caron":"C caron minuscule","Latin capital letter d with stroke":"D barré majuscule","Latin small letter d with stroke":"D barré minuscule","Latin capital letter e with macron":"E macron majuscule","Latin small letter e with macron":"E macron minuscule","Latin capital letter e with breve":"E bref majuscule","Latin small letter e with breve":"E bref minuscule","Latin capital letter e with dot above":"E point suscrit majuscule","Latin small letter e with dot above":"E point suscrit minuscule","Latin capital letter e with ogonek":"E ogonek majuscule","Latin small letter e with ogonek":"E ogonek minuscule","Latin capital letter e with caron":"E caron majuscule","Latin small letter e with caron":"E caron minuscule","Latin capital letter g with circumflex":"G accent circonflexe majuscule","Latin small letter g with circumflex":"G accent circonflexe minuscule","Latin capital letter g with breve":"G bref majuscule","Latin small letter g with breve":"G bref minuscule","Latin capital letter g with dot above":"G point suscrit majuscule","Latin small letter g with dot above":"G point suscrit minuscule","Latin capital letter g with cedilla":"G cédille majuscule","Latin small letter g with cedilla":"G cédille minuscule","Latin capital letter h with circumflex":"H accent circonflexe majuscule","Latin small letter h with circumflex":"H accent circonflexe minuscule","Latin capital letter h with stroke":"H barré majuscule","Latin small letter h with stroke":"H barré minuscule","Latin capital letter i with tilde":"I tilde majuscule","Latin small letter i with tilde":"I tilde minuscule","Latin capital letter i with macron":"I macron majuscule","Latin small letter i with macron":"I macron minuscule","Latin capital letter i with breve":"I bref majuscule","Latin small letter i with breve":"I bref minuscule","Latin capital letter i with ogonek":"I ogonek majuscule","Latin small letter i with ogonek":"I ogonek minuscule","Latin capital letter i with dot above":"I point suscrit majuscule","Latin small letter dotless i":"I sans point minuscule","Latin capital ligature ij":"Digramme soudé IJ majuscule","Latin small ligature ij":"Digramme soudé IJ minuscule","Latin capital letter j with circumflex":"J accent circonflexe majuscule","Latin small letter j with circumflex":"J accent circonflexe minuscule","Latin capital letter k with cedilla":"K cédille majuscule","Latin small letter k with cedilla":"K cédille minuscule","Latin small letter kra":"Kra minuscule","Latin capital letter l with acute":"L accent aigu majuscule","Latin small letter l with acute":"L accent aigu minuscule","Latin capital letter l with cedilla":"L cédille majuscule","Latin small letter l with cedilla":"L cédille minuscule","Latin capital letter l with caron":"L caron majuscule","Latin small letter l with caron":"L caron minuscule","Latin capital letter l with middle dot":"L point médian majuscule","Latin small letter l with middle dot":"L point médian minuscule","Latin capital letter l with stroke":"L barré majuscule","Latin small letter l with stroke":"L barré minuscule","Latin capital letter n with acute":"N accent aigu majuscule","Latin small letter n with acute":"N accent aigu minuscule","Latin capital letter n with cedilla":"N cédille majuscule","Latin small letter n with cedilla":"N cédille minuscule","Latin capital letter n with caron":"N caron majuscule","Latin small letter n with caron":"N caron minuscule","Latin small letter n preceded by apostrophe":"Apostrophe N minuscule","Latin capital letter eng":"Eng majuscule","Latin small letter eng":"Eng minuscule","Latin capital letter o with macron":"O macron majuscule","Latin small letter o with macron":"O macron minuscule","Latin capital letter o with breve":"O bref majuscule","Latin small letter o with breve":"O bref minuscule","Latin capital letter o with double acute":"O double accent aigu majuscule","Latin small letter o with double acute":"O double accent aigu minuscule","Latin capital ligature oe":"O-E entrelacé majuscule","Latin small ligature oe":"O-E entrelacé minuscule","Latin capital letter r with acute":"R accent aigu majuscule","Latin small letter r with acute":"R accent aigu minuscule","Latin capital letter r with cedilla":"R cédille majuscule","Latin small letter r with cedilla":"R cédille minuscule","Latin capital letter r with caron":"R caron majuscule","Latin small letter r with caron":"R caron minuscule","Latin capital letter s with acute":"S accent aigu majuscule","Latin small letter s with acute":"S accent aigu minuscule","Latin capital letter s with circumflex":"S circonflexe majuscule","Latin small letter s with circumflex":"S circonflexe minuscule","Latin capital letter s with cedilla":"S cédille majuscule","Latin small letter s with cedilla":"S cédille minuscule","Latin capital letter s with caron":"S caron majuscule","Latin small letter s with caron":"S caron minuscule","Latin capital letter t with cedilla":"T cédille majuscule","Latin small letter t with cedilla":"T cédille minuscule","Latin capital letter t with caron":"T caron majuscule","Latin small letter t with caron":"T caron minuscule","Latin capital letter t with stroke":"T barré majuscule","Latin small letter t with stroke":"T barré minuscule","Latin capital letter u with tilde":"U tilde majuscule","Latin small letter u with tilde":"U tilde minuscule","Latin capital letter u with macron":"U macron majuscule","Latin small letter u with macron":"U macron minuscule","Latin capital letter u with breve":"U bref majuscule","Latin small letter u with breve":"U bref minuscule","Latin capital letter u with ring above":"U rond en chef majuscule","Latin small letter u with ring above":"U rond en chef minuscule","Latin capital letter u with double acute":"U double accent aigu majuscule","Latin small letter u with double acute":"U double accent aigu minuscule","Latin capital letter u with ogonek":"U ogonek majuscule","Latin small letter u with ogonek":"U ogonek minuscule","Latin capital letter w with circumflex":"W circonflexe majuscule","Latin small letter w with circumflex":"W circonflexe minuscule","Latin capital letter y with circumflex":"Y circonflexe majuscule","Latin small letter y with circumflex":"Y circonflexe minuscule","Latin capital letter y with diaeresis":"Y tréma majuscule","Latin capital letter z with acute":"Z accent circonflexe majuscule","Latin small letter z with acute":"Z accent circonflexe minuscule","Latin capital letter z with dot above":"Z point suscrit majuscule","Latin small letter z with dot above":"Z point suscrit minuscule","Latin capital letter z with caron":"Z caron majuscule","Latin small letter z with caron":"Z caron minuscule","Latin small letter long s":"S long minuscule","Less-than sign":"Signe inférieur","Greater-than sign":"Signe supérieur","Less-than or equal to":"Signe inférieur ou égal","Greater-than or equal to":"Signe supérieur ou égal","En dash":"Tiret","Em dash":"Tiret long",Macron:"Macron",Overline:"Macron long","Degree sign":"Degré","Minus sign":"Moins","Plus-minus sign":"Plus ou moins","Division sign":"Division","Fraction slash":"Fraction","Multiplication sign":"Multiplication","Latin small letter f with hook":"Fonction",Integral:"Intégrale","N-ary summation":"Somme",Infinity:"Infini","Square root":"Racine carrée","Tilde operator":"Tilde","Approximately equal to":"Environ égal à ","Almost equal to":"Presque égal à ","Not equal to":"Différent de","Identical to":"Identique à ","Element of":"Appartient à ","Not an element of":"N'appartient pas à ","Contains as member":"Contient","N-ary product":"Produit","Logical and":"Et logique","Logical or":"Ou logique","Not sign":"Négation logique",Intersection:"Intersection",Union:"Union","Partial differential":"Partiellement différent","For all":"Pour tout","There exists":"Existe","Empty set":"Élément vide",Nabla:"Nabla","Asterisk operator":"Astérisque","Proportional to":"Proportionnel à ",Angle:"Angle","Vulgar fraction one quarter":"Un quart","Vulgar fraction one half":"Un demi","Vulgar fraction three quarters":"Trois quarts","Single left-pointing angle quotation mark":"Guillemet simple vers la gauche","Single right-pointing angle quotation mark":"Guillemet simple vers la droite","Left-pointing double angle quotation mark":"Guillemet double vers la gauche","Right-pointing double angle quotation mark":"Guillemet double vers la droite","Left single quotation mark":"Guillemet-apostrophe culbuté","Right single quotation mark":"Guillemet-apostrophe","Left double quotation mark":"Guillemet-apostrophe double culbuté","Right double quotation mark":"Guillemet-apostrophe double","Single low-9 quotation mark":"Guillemet-virgule inférieur","Double low-9 quotation mark":"Guillemet-virgule double inférieur","Inverted exclamation mark":"Point d'exclamation inversé","Inverted question mark":"Point d'interrogation inversé","Two dot leader":"Deux points","Horizontal ellipsis":"Trois points","Double dagger":"Croix de Lorraine","Per mille sign":"Pour mille","Per ten thousand sign":"Pour dix milles","Double exclamation mark":"Double point d'exclamation","Question exclamation mark":"Point d'interrogation et exclamation","Exclamation question mark":"Point exclamation et question","Double question mark":"Double point d'interrogation","Copyright sign":"Copyright","Registered sign":"Registered","Trade mark sign":"Marque déposée","Section sign":"Paragraphe","Paragraph sign":"Fin de paragraphe","Reversed paragraph sign":"Fin de paragraphe inversé","Character categories":"Catégories de caractères",Styles:"Styles","Multiple styles":"Styles multiples","Block styles":"Styles de bloc","Text styles":"Styles de texte","Insert table":"Insérer un tableau","Header column":"Colonne d'entête","Insert column left":"Insérer une colonne à gauche","Insert column right":"Insérer une colonne à droite","Delete column":"Supprimer la colonne","Select column":"Sélectionner la colonne",Column:"Colonne","Header row":"Ligne d'entête","Insert row below":"Insérer une ligne en-dessous","Insert row above":"Insérer une ligne au-dessus","Delete row":"Supprimer la ligne","Select row":"Sélectionner la ligne",Row:"Ligne","Merge cell up":"Fusionner la cellule au-dessus","Merge cell right":"Fusionner la cellule à droite","Merge cell down":"Fusionner la cellule en-dessous","Merge cell left":"Fusionner la cellule à gauche","Split cell vertically":"Scinder la cellule verticalement","Split cell horizontally":"Scinder la cellule horizontalement","Merge cells":"Fusionner les cellules","Table toolbar":"Barre d'outils des tableaux","Table properties":"Propriétés du tableau","Cell properties":"Propriétés de la cellule",Border:"Bordure",Style:"Style",Width:"Largeur",Height:"Hauteur",Color:"Couleur",Background:"Fond",Padding:"Remplissage pour aérer le texte",Dimensions:"Dimensions","Table cell text alignment":"Alignement du texte de la cellule",Alignment:"Alignement","Horizontal text alignment toolbar":"Barre d'outils pour modifier l'alignement horizontal du texte","Vertical text alignment toolbar":"Barre d'outils pour modifier l'alignement vertical du texte","Table alignment toolbar":"Barre d'outils pour modifier l'alignement du tableau",None:"Aucun",Solid:"Continu",Dotted:"Pointillés",Dashed:"Tirets",Double:"Double",Groove:"Rainuré",Ridge:"Relief",Inset:"Relief intérieur",Outset:"Relief extérieur","Align cell text to the left":"Aligner la cellule à gauche","Align cell text to the center":"Aligner la cellule au centre","Align cell text to the right":"Aligner la cellule à droite","Justify cell text":"Justifier le contenu de la cellule","Align cell text to the top":"Aligner le texte en haut","Align cell text to the middle":"Aligner le texte au milieu","Align cell text to the bottom":"Aligner le texte en bas","Align table to the left":"Aligner le tableau à gauche","Center table":"Centrer le tableau ","Align table to the right":"Aligner le tableau à droite","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"La couleur est invalide. Essayez \"#FF0000\" ou \"rgb(255,0,0)\" ou \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"La valeur est invalide. Essayez \"10px\" ou \"2em\" ou simplement \"2\".","Color picker":"Pipette à couleurs","Toggle caption off":"Désactiver la légende","Toggle caption on":"Activer la légende","Enter table caption":"Saisir la légende du tableau","Rich Text Editor":"Éditeur de texte enrichi","Editor editing area: %0":"Zone d'édition de l'éditeur : %0","Edit block":"Modifier le bloc","Click to edit block":"Cliquer pour modifier le bloc","Drag to move":"Faire glisser pour déplacer",Next:"Suivant",Previous:"Précedent","Editor toolbar":"Barre d'outils de l'éditeur","Dropdown toolbar":"Barre d'outils dans un menu déroulant",Black:"Noir","Dim grey":"Gris pâle",Grey:"Gris","Light grey":"Gris clair",White:"Blanc",Red:"Rouge",Orange:"Orange",Yellow:"Jaune","Light green":"Vert clair",Green:"Vert",Aquamarine:"Bleu vert",Turquoise:"Turquoise","Light blue":"Bleu clair",Blue:"Bleu",Purple:"Violet","Editor block content toolbar":"Barre d'outils du contenu du bloc éditeur","Editor contextual toolbar":"Barre d'outils contextuelle de l'éditeur",HEX:"HEX",Accept:"Accepter","No results found":"Aucun résultat trouvé","No searchable items":"Aucun élément consultable","Editor dialog":"Boîte de dialogue de l'éditeur",Close:"Fermer",Undo:"Annuler",Redo:"Restaurer","Upload in progress":"Téléchargement en cours","Widget toolbar":"Barre d'outils du widget","Insert paragraph before block":"Insérer du texte avant ce bloc","Insert paragraph after block":"Insérer du texte après ce bloc","Press Enter to type after or press Shift + Enter to type before the widget":"Appuyez sur la touche Entrée pour taper après ou sur Maj + Entrée pour taper avant le widget.","Words: %0":"Mots : %0","Characters: %0":"Caractères : %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['fr'] = d['fr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aligner à gauche","Align right":"Aligner à droite","Align center":"Centrer",Justify:"Justifier","Text alignment":"Alignement du texte","Text alignment toolbar":"Barre d'outils d'alignement du texte",Bold:"Gras",Italic:"Italique",Underline:"Souligné",Code:"Code",Strikethrough:"Barré",Subscript:"Indice",Superscript:"Exposant","Block quote":"Citation","Insert code block":"Insérer un bloc de code","Plain text":"Texte brut",Cancel:"Annuler",Clear:"Effacer","Remove color":"Enlever la couleur","Restore default":"Restaurer par défaut",Save:"Enregistrer","Show more items":"Montrer plus d'éléments","%0 of %1":"%0 sur %1","Cannot upload file:":"Envoi du fichier échoué :","Rich Text Editor. Editing area: %0":"Éditeur de texte enrichi. Zone d'édition : %0","Insert with file manager":"Insérer avec le gestionnaire de fichiers","Replace with file manager":"Remplacer avec le gestionnaire de fichiers","Insert image with file manager":"Insérer une image avec le gestionnaire de fichiers","Replace image with file manager":"Remplacer l'image avec le gestionnaire de fichiers","Find and replace":"Rechercher et remplacer","Find in text…":"Rechercher dans le texte...",Find:"Rechercher","Previous result":"Résultat précédent","Next result":"Résultat suivant",Replace:"Remplacer","Replace all":"Remplacer tout","Match case":"Sensible à la casse","Whole words only":"Mots entiers uniquement","Replace with…":"Remplacer par ...","Text to find must not be empty.":"L'expression à rechercher ne doit pas être vide","Tip: Find some text first in order to replace it.":"Astuce : rechercher une expression afin de la remplacer","Advanced options":"Options avancées","Font Size":"Taille de police",Tiny:"Minuscule",Small:"Petit",Big:"Grand",Huge:"Enorme","Font Family":"Police",Default:"Par défaut","Font Color":"Couleur de police","Font Background Color":"Couleur d'arrière-plan","Document colors":"Couleurs du document",Paragraph:"Paragraphe",Heading:"En-tête","Choose heading":"Choisir l'en-tête","Heading 1":"Titre 1","Heading 2":"Titre 2","Heading 3":"Titre 3","Heading 4":"Titre 4","Heading 5":"Titre 5","Heading 6":"Titre 6","Type your title":"Rentrer votre titre","Type or paste your content here.":"Noter ou coller votre contenu ici","Horizontal line":"Ligne horizontale","HTML object":"Objet HTML","Increase indent":"Augmenter le retrait","Decrease indent":"Diminuer le retrait",Unlink:"Supprimer le lien",Link:"Lien","Link URL":"URL du lien","Link image":"Lien d'image","Edit link":"Modifier le lien","Open link in new tab":"Ouvrir le lien dans un nouvel onglet","This link has no URL":"Ce lien n'a pas d'URL","Open in a new tab":"Ouvrir dans un nouvel onglet",Downloadable:"Fichier téléchargeable","Numbered List":"Liste numérotée","Bulleted List":"Liste à puces","To-do List":"Liste de tâches","Bulleted list styles toolbar":"Barre d'outils des styles de liste à puce","Numbered list styles toolbar":"Barre d'outils des styles de liste numérotée","Toggle the disc list style":"Activer / désactiver le style de liste \"disque\"","Toggle the circle list style":"Activer / désactiver le style de liste \"cercle\"","Toggle the square list style":"Activer / désactiver le style de liste \"carré\"","Toggle the decimal list style":"Activer / désactiver le style de liste \"chiffres\"","Toggle the decimal with leading zero list style":"Activer / désactiver le style de liste \"chiffres de mêmes longueurs\"","Toggle the lower–roman list style":"Activer / désactiver le style de liste \"chiffres romains en minuscules\"","Toggle the upper–roman list style":"Activer / désactiver le style de liste \"chiffres romains en majuscules\"","Toggle the lower–latin list style":"Activer / désactiver le style de liste \"lettres minuscules\"","Toggle the upper–latin list style":"Activer / désactiver le style de liste \"lettres majuscules\"",Disc:"Disque",Circle:"Cercle",Square:"Carré",Decimal:"Chiffres","Decimal with leading zero":"Chiffres avec des zéros supplémentaire","Lower–roman":"Chiffres romains en minuscules","Upper-roman":"Chiffres romains en majuscules","Lower-latin":"Lettres minuscules","Upper-latin":"Lettres majuscules","List properties":"Liste des propriétés","Start at":"Commencer à ","Start index must be greater than 0.":"L'indice de départ doit être supérieur à 0.","Reversed order":"Ordre inversé","Remove Format":"Enlever le format","Select all":"Sélectionner tout","Show blocks":"Afficher les blocs",Source:"Source","Special characters":"Caractères spéciaux",All:"Tous",Arrows:"Flèches",Currency:"Devise",Latin:"Latin",Mathematical:"Mathématique",Text:"Texte","leftwards simple arrow":"flèche simple vers la gauche","rightwards simple arrow":"flèche simple vers la droite","upwards simple arrow":"flèche simple vers le haut","downwards simple arrow":"flèche simple vers le bas","leftwards double arrow":"Double flèche vers la gauche","rightwards double arrow":"Double flèche vers la droite","upwards double arrow":"Double flèche vers le haut","downwards double arrow":"Double flèche vers le bas","leftwards dashed arrow":"Flèche en pointillés vers la gauche","rightwards dashed arrow":"Flèche en pointillés vers la droite","upwards dashed arrow":"Flèche en pointillés vers le haut","downwards dashed arrow":"Flèche en pointillés vers le bas","leftwards arrow to bar":"Flèche vers la gauche avec barre de fin","rightwards arrow to bar":"Flèche vers la droite avec barre de fin","upwards arrow to bar":"Flèche vers le haut avec barre de fin","downwards arrow to bar":"Flèche vers le bas avec barre de fin","up down arrow with base":"Flèche haut et bas avec barre de fin","back with leftwards arrow above":"Précédent avec flèche vers la gauche","end with leftwards arrow above":"Fin avec flèche vers la gauche","on with exclamation mark with left right arrow above":"Allumé avec flèches vers la gauche et la droite","soon with rightwards arrow above":"Bientôt avec flèche vers la droite","top with upwards arrow above":"Haut avec flèche vers le haut","Dollar sign":"Dollar","Euro sign":"Euro","Yen sign":"Yen","Pound sign":"Livre sterling","Cent sign":"Centime","Euro-currency sign":"Symbole monétaire de l'euro","Colon sign":"Deux points","Cruzeiro sign":"Cruzeiro","French franc sign":"Franc français","Lira sign":"Lire","Currency sign":"Symbole monétaire","Bitcoin sign":"Bitcoin","Mill sign":"Moulin","Naira sign":"Naira","Peseta sign":"Peseta","Rupee sign":"Roupie","Won sign":"Won","New sheqel sign":"Shekel","Dong sign":"Dong","Kip sign":"Kip","Tugrik sign":"Tugrik","Drachma sign":"Drachme","German penny sign":"Pfennig","Peso sign":"Peso","Guarani sign":"Guarani","Austral sign":"Austral","Hryvnia sign":"Hryvnia","Cedi sign":"Cédi","Livre tournois sign":"Livre tournois","Spesmilo sign":"Spesmilo","Tenge sign":"Tenge","Indian rupee sign":"Roupie indienne","Turkish lira sign":"Lire turque","Nordic mark sign":"Mark nordique","Manat sign":"Manat","Ruble sign":"Rouble","Latin capital letter a with macron":"A barre majuscule","Latin small letter a with macron":"A barre minuscule","Latin capital letter a with breve":"A bref majuscule","Latin small letter a with breve":"A bref minuscule","Latin capital letter a with ogonek":"A ogonek majuscule","Latin small letter a with ogonek":"A ogonek minuscule","Latin capital letter c with acute":"C accent aigu majuscule","Latin small letter c with acute":"C accent aigu minuscule","Latin capital letter c with circumflex":"C circonflexe majuscule","Latin small letter c with circumflex":"C circonflexe minuscule","Latin capital letter c with dot above":"C point suscrit majuscule","Latin small letter c with dot above":"C point suscrit minuscule","Latin capital letter c with caron":"C caron majuscule","Latin small letter c with caron":"C caron minuscule","Latin capital letter d with caron":"D caron majuscule","Latin small letter d with caron":"C caron minuscule","Latin capital letter d with stroke":"D barré majuscule","Latin small letter d with stroke":"D barré minuscule","Latin capital letter e with macron":"E macron majuscule","Latin small letter e with macron":"E macron minuscule","Latin capital letter e with breve":"E bref majuscule","Latin small letter e with breve":"E bref minuscule","Latin capital letter e with dot above":"E point suscrit majuscule","Latin small letter e with dot above":"E point suscrit minuscule","Latin capital letter e with ogonek":"E ogonek majuscule","Latin small letter e with ogonek":"E ogonek minuscule","Latin capital letter e with caron":"E caron majuscule","Latin small letter e with caron":"E caron minuscule","Latin capital letter g with circumflex":"G accent circonflexe majuscule","Latin small letter g with circumflex":"G accent circonflexe minuscule","Latin capital letter g with breve":"G bref majuscule","Latin small letter g with breve":"G bref minuscule","Latin capital letter g with dot above":"G point suscrit majuscule","Latin small letter g with dot above":"G point suscrit minuscule","Latin capital letter g with cedilla":"G cédille majuscule","Latin small letter g with cedilla":"G cédille minuscule","Latin capital letter h with circumflex":"H accent circonflexe majuscule","Latin small letter h with circumflex":"H accent circonflexe minuscule","Latin capital letter h with stroke":"H barré majuscule","Latin small letter h with stroke":"H barré minuscule","Latin capital letter i with tilde":"I tilde majuscule","Latin small letter i with tilde":"I tilde minuscule","Latin capital letter i with macron":"I macron majuscule","Latin small letter i with macron":"I macron minuscule","Latin capital letter i with breve":"I bref majuscule","Latin small letter i with breve":"I bref minuscule","Latin capital letter i with ogonek":"I ogonek majuscule","Latin small letter i with ogonek":"I ogonek minuscule","Latin capital letter i with dot above":"I point suscrit majuscule","Latin small letter dotless i":"I sans point minuscule","Latin capital ligature ij":"Digramme soudé IJ majuscule","Latin small ligature ij":"Digramme soudé IJ minuscule","Latin capital letter j with circumflex":"J accent circonflexe majuscule","Latin small letter j with circumflex":"J accent circonflexe minuscule","Latin capital letter k with cedilla":"K cédille majuscule","Latin small letter k with cedilla":"K cédille minuscule","Latin small letter kra":"Kra minuscule","Latin capital letter l with acute":"L accent aigu majuscule","Latin small letter l with acute":"L accent aigu minuscule","Latin capital letter l with cedilla":"L cédille majuscule","Latin small letter l with cedilla":"L cédille minuscule","Latin capital letter l with caron":"L caron majuscule","Latin small letter l with caron":"L caron minuscule","Latin capital letter l with middle dot":"L point médian majuscule","Latin small letter l with middle dot":"L point médian minuscule","Latin capital letter l with stroke":"L barré majuscule","Latin small letter l with stroke":"L barré minuscule","Latin capital letter n with acute":"N accent aigu majuscule","Latin small letter n with acute":"N accent aigu minuscule","Latin capital letter n with cedilla":"N cédille majuscule","Latin small letter n with cedilla":"N cédille minuscule","Latin capital letter n with caron":"N caron majuscule","Latin small letter n with caron":"N caron minuscule","Latin small letter n preceded by apostrophe":"Apostrophe N minuscule","Latin capital letter eng":"Eng majuscule","Latin small letter eng":"Eng minuscule","Latin capital letter o with macron":"O macron majuscule","Latin small letter o with macron":"O macron minuscule","Latin capital letter o with breve":"O bref majuscule","Latin small letter o with breve":"O bref minuscule","Latin capital letter o with double acute":"O double accent aigu majuscule","Latin small letter o with double acute":"O double accent aigu minuscule","Latin capital ligature oe":"O-E entrelacé majuscule","Latin small ligature oe":"O-E entrelacé minuscule","Latin capital letter r with acute":"R accent aigu majuscule","Latin small letter r with acute":"R accent aigu minuscule","Latin capital letter r with cedilla":"R cédille majuscule","Latin small letter r with cedilla":"R cédille minuscule","Latin capital letter r with caron":"R caron majuscule","Latin small letter r with caron":"R caron minuscule","Latin capital letter s with acute":"S accent aigu majuscule","Latin small letter s with acute":"S accent aigu minuscule","Latin capital letter s with circumflex":"S circonflexe majuscule","Latin small letter s with circumflex":"S circonflexe minuscule","Latin capital letter s with cedilla":"S cédille majuscule","Latin small letter s with cedilla":"S cédille minuscule","Latin capital letter s with caron":"S caron majuscule","Latin small letter s with caron":"S caron minuscule","Latin capital letter t with cedilla":"T cédille majuscule","Latin small letter t with cedilla":"T cédille minuscule","Latin capital letter t with caron":"T caron majuscule","Latin small letter t with caron":"T caron minuscule","Latin capital letter t with stroke":"T barré majuscule","Latin small letter t with stroke":"T barré minuscule","Latin capital letter u with tilde":"U tilde majuscule","Latin small letter u with tilde":"U tilde minuscule","Latin capital letter u with macron":"U macron majuscule","Latin small letter u with macron":"U macron minuscule","Latin capital letter u with breve":"U bref majuscule","Latin small letter u with breve":"U bref minuscule","Latin capital letter u with ring above":"U rond en chef majuscule","Latin small letter u with ring above":"U rond en chef minuscule","Latin capital letter u with double acute":"U double accent aigu majuscule","Latin small letter u with double acute":"U double accent aigu minuscule","Latin capital letter u with ogonek":"U ogonek majuscule","Latin small letter u with ogonek":"U ogonek minuscule","Latin capital letter w with circumflex":"W circonflexe majuscule","Latin small letter w with circumflex":"W circonflexe minuscule","Latin capital letter y with circumflex":"Y circonflexe majuscule","Latin small letter y with circumflex":"Y circonflexe minuscule","Latin capital letter y with diaeresis":"Y tréma majuscule","Latin capital letter z with acute":"Z accent circonflexe majuscule","Latin small letter z with acute":"Z accent circonflexe minuscule","Latin capital letter z with dot above":"Z point suscrit majuscule","Latin small letter z with dot above":"Z point suscrit minuscule","Latin capital letter z with caron":"Z caron majuscule","Latin small letter z with caron":"Z caron minuscule","Latin small letter long s":"S long minuscule","Less-than sign":"Signe inférieur","Greater-than sign":"Signe supérieur","Less-than or equal to":"Signe inférieur ou égal","Greater-than or equal to":"Signe supérieur ou égal","En dash":"Tiret","Em dash":"Tiret long",Macron:"Macron",Overline:"Macron long","Degree sign":"Degré","Minus sign":"Moins","Plus-minus sign":"Plus ou moins","Division sign":"Division","Fraction slash":"Fraction","Multiplication sign":"Multiplication","Latin small letter f with hook":"Fonction",Integral:"Intégrale","N-ary summation":"Somme",Infinity:"Infini","Square root":"Racine carrée","Tilde operator":"Tilde","Approximately equal to":"Environ égal à ","Almost equal to":"Presque égal à ","Not equal to":"Différent de","Identical to":"Identique à ","Element of":"Appartient à ","Not an element of":"N'appartient pas à ","Contains as member":"Contient","N-ary product":"Produit","Logical and":"Et logique","Logical or":"Ou logique","Not sign":"Négation logique",Intersection:"Intersection",Union:"Union","Partial differential":"Partiellement différent","For all":"Pour tout","There exists":"Existe","Empty set":"Élément vide",Nabla:"Nabla","Asterisk operator":"Astérisque","Proportional to":"Proportionnel à ",Angle:"Angle","Vulgar fraction one quarter":"Un quart","Vulgar fraction one half":"Un demi","Vulgar fraction three quarters":"Trois quarts","Single left-pointing angle quotation mark":"Guillemet simple vers la gauche","Single right-pointing angle quotation mark":"Guillemet simple vers la droite","Left-pointing double angle quotation mark":"Guillemet double vers la gauche","Right-pointing double angle quotation mark":"Guillemet double vers la droite","Left single quotation mark":"Guillemet-apostrophe culbuté","Right single quotation mark":"Guillemet-apostrophe","Left double quotation mark":"Guillemet-apostrophe double culbuté","Right double quotation mark":"Guillemet-apostrophe double","Single low-9 quotation mark":"Guillemet-virgule inférieur","Double low-9 quotation mark":"Guillemet-virgule double inférieur","Inverted exclamation mark":"Point d'exclamation inversé","Inverted question mark":"Point d'interrogation inversé","Two dot leader":"Deux points","Horizontal ellipsis":"Trois points","Double dagger":"Croix de Lorraine","Per mille sign":"Pour mille","Per ten thousand sign":"Pour dix milles","Double exclamation mark":"Double point d'exclamation","Question exclamation mark":"Point d'interrogation et exclamation","Exclamation question mark":"Point exclamation et question","Double question mark":"Double point d'interrogation","Copyright sign":"Copyright","Registered sign":"Registered","Trade mark sign":"Marque déposée","Section sign":"Paragraphe","Paragraph sign":"Fin de paragraphe","Reversed paragraph sign":"Fin de paragraphe inversé","Character categories":"Catégories de caractères",Styles:"Styles","Multiple styles":"Styles multiples","Block styles":"Styles de bloc","Text styles":"Styles de texte","Insert table":"Insérer un tableau","Header column":"Colonne d'entête","Insert column left":"Insérer une colonne à gauche","Insert column right":"Insérer une colonne à droite","Delete column":"Supprimer la colonne","Select column":"Sélectionner la colonne",Column:"Colonne","Header row":"Ligne d'entête","Insert row below":"Insérer une ligne en-dessous","Insert row above":"Insérer une ligne au-dessus","Delete row":"Supprimer la ligne","Select row":"Sélectionner la ligne",Row:"Ligne","Merge cell up":"Fusionner la cellule au-dessus","Merge cell right":"Fusionner la cellule à droite","Merge cell down":"Fusionner la cellule en-dessous","Merge cell left":"Fusionner la cellule à gauche","Split cell vertically":"Scinder la cellule verticalement","Split cell horizontally":"Scinder la cellule horizontalement","Merge cells":"Fusionner les cellules","Table toolbar":"Barre d'outils des tableaux","Table properties":"Propriétés du tableau","Cell properties":"Propriétés de la cellule",Border:"Bordure",Style:"Style",Width:"Largeur",Height:"Hauteur",Color:"Couleur",Background:"Fond",Padding:"Remplissage pour aérer le texte",Dimensions:"Dimensions","Table cell text alignment":"Alignement du texte de la cellule",Alignment:"Alignement","Horizontal text alignment toolbar":"Barre d'outils pour modifier l'alignement horizontal du texte","Vertical text alignment toolbar":"Barre d'outils pour modifier l'alignement vertical du texte","Table alignment toolbar":"Barre d'outils pour modifier l'alignement du tableau",None:"Aucun",Solid:"Continu",Dotted:"Pointillés",Dashed:"Tirets",Double:"Double",Groove:"Rainuré",Ridge:"Relief",Inset:"Relief intérieur",Outset:"Relief extérieur","Align cell text to the left":"Aligner la cellule à gauche","Align cell text to the center":"Aligner la cellule au centre","Align cell text to the right":"Aligner la cellule à droite","Justify cell text":"Justifier le contenu de la cellule","Align cell text to the top":"Aligner le texte en haut","Align cell text to the middle":"Aligner le texte au milieu","Align cell text to the bottom":"Aligner le texte en bas","Align table to the left":"Aligner le tableau à gauche","Center table":"Centrer le tableau ","Align table to the right":"Aligner le tableau à droite","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"La couleur est invalide. Essayez \"#FF0000\" ou \"rgb(255,0,0)\" ou \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"La valeur est invalide. Essayez \"10px\" ou \"2em\" ou simplement \"2\".","Color picker":"Pipette à couleurs","Toggle caption off":"Désactiver la légende","Toggle caption on":"Activer la légende","Enter table caption":"Saisir la légende du tableau","Rich Text Editor":"Éditeur de texte enrichi","Editor editing area: %0":"Zone d'édition de l'éditeur : %0","Edit block":"Modifier le bloc","Click to edit block":"Cliquer pour modifier le bloc","Drag to move":"Faire glisser pour déplacer",Next:"Suivant",Previous:"Précedent","Editor toolbar":"Barre d'outils de l'éditeur","Dropdown toolbar":"Barre d'outils dans un menu déroulant",Black:"Noir","Dim grey":"Gris pâle",Grey:"Gris","Light grey":"Gris clair",White:"Blanc",Red:"Rouge",Orange:"Orange",Yellow:"Jaune","Light green":"Vert clair",Green:"Vert",Aquamarine:"Bleu vert",Turquoise:"Turquoise","Light blue":"Bleu clair",Blue:"Bleu",Purple:"Violet","Editor block content toolbar":"Barre d'outils du contenu du bloc éditeur","Editor contextual toolbar":"Barre d'outils contextuelle de l'éditeur",HEX:"HEX",Accept:"Accepter","No results found":"Aucun résultat trouvé","No searchable items":"Aucun élément consultable","Editor dialog":"Boîte de dialogue de l'éditeur",Close:"Fermer",Undo:"Annuler",Redo:"Restaurer","Upload in progress":"Téléchargement en cours","Widget toolbar":"Barre d'outils du widget","Insert paragraph before block":"Insérer du texte avant ce bloc","Insert paragraph after block":"Insérer du texte après ce bloc","Press Enter to type after or press Shift + Enter to type before the widget":"Appuyez sur la touche Entrée pour taper après ou sur Maj + Entrée pour taper avant le widget.","Words: %0":"Mots : %0","Characters: %0":"Caractères : %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/gl.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/gl.js index f54c67858bcc41d0c402d491bded7fa92d018444..ce4361a6f63291ebe4719456277b20172b17b298 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/gl.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/gl.js @@ -1 +1 @@ -(function(d){ const l = d['gl'] = d['gl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aliñar á esquerda","Align right":"Aliñar á dereita","Align center":"Centrar horizontalmente",Justify:"Xustificado","Text alignment":"Aliñamento do texto","Text alignment toolbar":"Barra de ferramentas de aliñamento de textos",Bold:"Negra",Italic:"Itálica",Underline:"Subliñado",Code:"Código",Strikethrough:"Riscado",Subscript:"SubÃndice",Superscript:"SuperÃndice","Block quote":"Cita de bloque","Insert code block":"Inserir bloque de código","Plain text":"Texto simple",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Retirar a cor","Restore default":"Restaurar valores predeterminados",Save:"Gardar","Show more items":"Amosar máis elementos","%0 of %1":"%0 de %1","Cannot upload file:":"Non é posÃbel enviar o ficheiro:","Rich Text Editor. Editing area: %0":"Editor de texto mellorado. Ãrea de edición: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Buscar e substituÃr","Find in text…":"Buscar no texto…",Find:"Buscar","Previous result":"Resultado anterior","Next result":"Seguinte resultado",Replace:"SubstituÃr","Replace all":"SubstituÃr todo","Match case":"Coincidencia de maiúsculas","Whole words only":"Só palabras enteiras","Replace with…":"SubstituÃr por…","Text to find must not be empty.":"O texto a buscar non debe estar baleiro.","Tip: Find some text first in order to replace it.":"Consello: primeiro busca algo de texto para substituÃlo.","Advanced options":"",Paragraph:"Parágrafo",Heading:"TÃtulo","Choose heading":"Escolla o tÃtulo","Heading 1":"TÃtulo 1","Heading 2":"TÃtulo 2","Heading 3":"TÃtulo 3","Heading 4":"TÃtulo 4","Heading 5":"TÃtulo 5","Heading 6":"TÃtulo 6","Type your title":"Escriba o seu tÃtulo","Type or paste your content here.":"Escriba ou pegue o seu contido aquÃ.","Horizontal line":"Liña horizontal","HTML object":"Obxecto HTML","Increase indent":"Aumentar a sangrÃa","Decrease indent":"Reducir a sangrÃa",Unlink:"Desligar",Link:"Ligar","Link URL":"URL de ligazón","Link image":"Ligazón da imaxe","Edit link":"Editar a ligazón","Open link in new tab":"Abrir a ligazón nunha nova lapela","This link has no URL":"Esta ligazón non ten URL","Open in a new tab":"Abrir nunha nova lapela",Downloadable:"Descargábel","Numbered List":"Lista numerada","Bulleted List":"Lista con viñetas","To-do List":"Lista de cousas por facer","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista con viñetas","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Alternar o estilo da lista «discos»","Toggle the circle list style":"Alternar o estilo da lista «cÃrculos»","Toggle the square list style":"Alternar o estilo da lista «cadrados»","Toggle the decimal list style":"Alternar o estilo da lista «decimais»","Toggle the decimal with leading zero list style":"Activar/desactivar o estilo «decimais con cero á esquerda»","Toggle the lower–roman list style":"Activar/desactivar o estilo da lista «núm. romanos en minúscula»","Toggle the upper–roman list style":"Activar/desactivar o estilo da lista «núm. romanos en maiúscula»","Toggle the lower–latin list style":"Activar/desactivar o estilo da lista «letras minúsculas»","Toggle the upper–latin list style":"Activar/desactivar o estilo da lista «letras maiúsculas»",Disc:"Discos",Circle:"CÃrculos",Square:"Cadrados",Decimal:"Decimais","Decimal with leading zero":"Decimais con cero á esquerda","Lower–roman":"Núm, romanos en minúscula","Upper-roman":"Núm, romanos en maiúscula","Lower-latin":"Letras minúsculas","Upper-latin":"Letras maiúsculas","List properties":"Lista de propiedades","Start at":"Comezar en","Start index must be greater than 0.":"O Ãndice de inicio debe ser maior que 0.","Reversed order":"Orde inversa","Remove Format":"Retirar o formato","Select all":"Seleccionar todo","Show blocks":"Amosar os bloques",Source:"Orixe","Special characters":"Caracteres especiais",All:"Todos",Arrows:"Frechas",Currency:"Moedas",Latin:"Latinos",Mathematical:"Matemáticos",Text:"Texto","leftwards simple arrow":"frecha simple cara a esquerda","rightwards simple arrow":"frecha simple cara a dereita","upwards simple arrow":"frecha simple cara arriba","downwards simple arrow":"frecha simple cara abaixo","leftwards double arrow":"frecha dobre cara a esquerda","rightwards double arrow":"frecha dobre cara a dereita","upwards double arrow":"frecha dobre cara arriba","downwards double arrow":"frecha dobre cara abaixo","leftwards dashed arrow":"frecha de guións cara a esquerda","rightwards dashed arrow":"frecha de guións cara a dereita","upwards dashed arrow":"frecha de guións cara arriba","downwards dashed arrow":"frecha de guións cara abaixo","leftwards arrow to bar":"frecha cara a esquerda con tope","rightwards arrow to bar":"frecha cara a dereita con tope","upwards arrow to bar":"frecha cara arriba con tope","downwards arrow to bar":"frecha cara abaixo con tope","up down arrow with base":"frecha arriba-abaixo con base","back with leftwards arrow above":"cara atrás, coa frecha cara a esquerda enriba","end with leftwards arrow above":"final, coa frecha cara a esquerda enriba","on with exclamation mark with left right arrow above":"activado, con signo de exclamación coa frecha esquerda-dereita enrriba","soon with rightwards arrow above":"logo, coa frecha cara a dereita enriba","top with upwards arrow above":"superior, coa frecha cara arriba enriba","Dollar sign":"SÃmbolo do dolar","Euro sign":"SÃmbolo do euro","Yen sign":"SÃmbolo do yen","Pound sign":"SÃmbolo da libra","Cent sign":"SÃmbolo do centavo","Euro-currency sign":"SÃmbolo da moeda do euro","Colon sign":"SÃmbolo do colón","Cruzeiro sign":"SÃmbolo do cruceiro","French franc sign":"SÃmbolo do franco francés","Lira sign":"SÃmbolo da lira","Currency sign":"SÃmbolo de moeda","Bitcoin sign":"SÃmbolo do Bitcoin","Mill sign":"SÃmbolo do mill","Naira sign":"SÃmbolo da naira","Peseta sign":"SÃmbolo da peseta","Rupee sign":"SÃmbolo da rupia","Won sign":"SÃmbolo do won","New sheqel sign":"SÃmbolo do novo xequel","Dong sign":"SÃmbolo do dong","Kip sign":"SÃmbolo do kip","Tugrik sign":"SÃmbolo do tugrik","Drachma sign":"SÃmbolo do dracma","German penny sign":"SÃmbolo do penique alemán","Peso sign":"SÃmbolo do peso","Guarani sign":"SÃmbolo do guaranÃ","Austral sign":"SÃmbolo do austral","Hryvnia sign":"SÃmbolo do hryvnia","Cedi sign":"SÃmbolo do cedi","Livre tournois sign":"SÃmbolo da libra tournois","Spesmilo sign":"SÃmbolo do spesmilo","Tenge sign":"SÃmbolo do tenge","Indian rupee sign":"SÃmbolo da rupia india","Turkish lira sign":"SÃmbolo da lira turca","Nordic mark sign":"SÃmbolo do marco nordico","Manat sign":"SÃmbolo do manat","Ruble sign":"SÃmbolo do rublo","Latin capital letter a with macron":"A maiúsculo latino con macron","Latin small letter a with macron":"a minúsculo latino con macron","Latin capital letter a with breve":"A maiúsculo latino con acento breve","Latin small letter a with breve":"a minúsculo latino con acento breve","Latin capital letter a with ogonek":"A maiúsculo latino con ogonek","Latin small letter a with ogonek":"a minúsculo latino con ogonek","Latin capital letter c with acute":"C maiúsculo latino con acento agudo","Latin small letter c with acute":"c minúsculo latino con acento agudo","Latin capital letter c with circumflex":"C maiúsculo latino con acento circunflexo","Latin small letter c with circumflex":"c minúsculo latino con acento circunflexo","Latin capital letter c with dot above":"C maiúsculo latino con punto enriba","Latin small letter c with dot above":"c minúsculo latino con punto enriba","Latin capital letter c with caron":"C maiúsculo latino con caron","Latin small letter c with caron":"cminúsculo latino con caron","Latin capital letter d with caron":"D maiúsculo latino con caron","Latin small letter d with caron":"d minúsculo latino con caron","Latin capital letter d with stroke":"D maiúsculo latino barrado","Latin small letter d with stroke":"d minúsculo latino barrado","Latin capital letter e with macron":"E maiúsculo latino con macron","Latin small letter e with macron":"e minúsculo latino con macron","Latin capital letter e with breve":"E maiúsculo latino con acento breve","Latin small letter e with breve":"e minúsculo latino con acento breve","Latin capital letter e with dot above":"E maiúsculo latino con punto enriba","Latin small letter e with dot above":"e minúsculo latino con punto enriba","Latin capital letter e with ogonek":"E maiúsculo latino con ogonek","Latin small letter e with ogonek":"e minúsculo latino con ogonek","Latin capital letter e with caron":"E maiúsculo latino con caron","Latin small letter e with caron":"e minúsculo latino con caron","Latin capital letter g with circumflex":"G maiúsculo latino con acento circunflexo","Latin small letter g with circumflex":"g minúsculo latino con acento circunflexo","Latin capital letter g with breve":"G maiúsculo latino con acento breve","Latin small letter g with breve":"g minúsculo latino con acento breve","Latin capital letter g with dot above":"G maiúsculo latino con punto enriba","Latin small letter g with dot above":"g minúsculo latino con punto enriba","Latin capital letter g with cedilla":"G maiúsculo latino con cedilla","Latin small letter g with cedilla":"g minúsculo latino con cedilla","Latin capital letter h with circumflex":"H maiúsculo latino con acento circunflexo","Latin small letter h with circumflex":"h minúsculo latino con acento circunflexo","Latin capital letter h with stroke":"H maiúsculo latino barrado","Latin small letter h with stroke":"h minúsculo latino barrado","Latin capital letter i with tilde":"I maiúsculo latino con til","Latin small letter i with tilde":"i minúsculo latino con til","Latin capital letter i with macron":"I maiúsculo latino con macron","Latin small letter i with macron":"i minúsculo latino con macron","Latin capital letter i with breve":"I maiúsculo latino con acento breve","Latin small letter i with breve":"i minúsculo latino con acento breve","Latin capital letter i with ogonek":"I maiúsculo latino con ogonek","Latin small letter i with ogonek":"i minúsculo latino con ogonek","Latin capital letter i with dot above":"I maiúsculo latino con punto enriba","Latin small letter dotless i":"i minúsculo latino sen punto","Latin capital ligature ij":"Ligadura IJ maiúsculo latino","Latin small ligature ij":"Ligadura ij minúsculo latino","Latin capital letter j with circumflex":"J maiúsculo latino con acento circunflexo","Latin small letter j with circumflex":"j minúsculo latino con acento circunflexo","Latin capital letter k with cedilla":"K maiúsculo latino con cedilla","Latin small letter k with cedilla":"k minúsculo latino con cedilla","Latin small letter kra":"Letra kra minúscula","Latin capital letter l with acute":"L maiúsculo latino con acento agudo","Latin small letter l with acute":"l minúsculo latino con acento agudo","Latin capital letter l with cedilla":"L maiúsculo latino con cedilla","Latin small letter l with cedilla":"l minúsculo latino con cedilla","Latin capital letter l with caron":"L maiúsculo latino con caron","Latin small letter l with caron":"l minúsculo latino con caron","Latin capital letter l with middle dot":"L maiúsculo latino con punto medio","Latin small letter l with middle dot":"l minúsculo latino con punto medio","Latin capital letter l with stroke":"L maiúsculo latino barrado","Latin small letter l with stroke":"l minúsculo latino barrado","Latin capital letter n with acute":"N maiúsculo latino con acento agudo","Latin small letter n with acute":"n minúsculo latino con acento agudo","Latin capital letter n with cedilla":"N maiúsculo latino con cedilla","Latin small letter n with cedilla":"n minúsculo latino con cedilla","Latin capital letter n with caron":"N maiúsculo latino con caron","Latin small letter n with caron":"n minúsculo latino con caron","Latin small letter n preceded by apostrophe":"n minúsculo latino precedido de apostrofe","Latin capital letter eng":"Eng (engma) mziúsculo latino","Latin small letter eng":"Eng (engma) minúsculo latino","Latin capital letter o with macron":"O maiúsculo latino con macron","Latin small letter o with macron":"o minúsculo latino con macron","Latin capital letter o with breve":"O maiúsculo latino con acento breve","Latin small letter o with breve":"o minúsculo latino con acento breve","Latin capital letter o with double acute":"O maiúsculo latino con acento agudo dobre","Latin small letter o with double acute":"o minúsculo latino con acento agudo dobre","Latin capital ligature oe":"Ligadura OE maiúsculo latino","Latin small ligature oe":"Ligadura oe minúsculo latino","Latin capital letter r with acute":"R maiúsculo latino con acento agudo","Latin small letter r with acute":"r minúsculo latino con acento agudo","Latin capital letter r with cedilla":"R maiúsculo latino con cedilla","Latin small letter r with cedilla":"r minúsculo latino con cedilla","Latin capital letter r with caron":"R maiúsculo latino con caron","Latin small letter r with caron":"r minúsculo latino con caron","Latin capital letter s with acute":"S maiúsculo latino con acento agudo","Latin small letter s with acute":"s minúsculo latino con acento agudo","Latin capital letter s with circumflex":"S maiúsculo latino con acento circunflexo","Latin small letter s with circumflex":"s minúsculo latino con acento circunflexo","Latin capital letter s with cedilla":"S maiúsculo latino con cedilla","Latin small letter s with cedilla":"s minúsculo latino con cedilla","Latin capital letter s with caron":"S maiúsculo latino con caron","Latin small letter s with caron":"s minúsculo latino con caron","Latin capital letter t with cedilla":"T maiúsculo latino con cedilla","Latin small letter t with cedilla":"t minúsculo latino con cedilla","Latin capital letter t with caron":"T maiúsculo latino con caron","Latin small letter t with caron":"t minúsculo latino con caron","Latin capital letter t with stroke":"T maiúsculo latino barrado","Latin small letter t with stroke":"t minúsculo latino barrado","Latin capital letter u with tilde":"U maiúsculo latino con til","Latin small letter u with tilde":"u minúsculo latino con til","Latin capital letter u with macron":"U maiúsculo latino con macron","Latin small letter u with macron":"u minúsculo latino con macron","Latin capital letter u with breve":"U maiúsculo latino con acento breve","Latin small letter u with breve":"u minúsculo latino con acento breve","Latin capital letter u with ring above":"U maiúsculo latino con anel enriba","Latin small letter u with ring above":"u minúsculo latino con anel enriba","Latin capital letter u with double acute":"U maiúsculo latino con acento agudo dobre","Latin small letter u with double acute":"u minúsculo latino con acento agudo dobre","Latin capital letter u with ogonek":"U maiúsculo latino con ogonek","Latin small letter u with ogonek":"u minúsculo latino con ogonek","Latin capital letter w with circumflex":"W maiúsculo latino con acento circunflexo","Latin small letter w with circumflex":"w minúsculo latino con acento circunflexo","Latin capital letter y with circumflex":"Y maiúsculo latino con acento circunflexo","Latin small letter y with circumflex":"y minúsculo latino con acento circunflexo","Latin capital letter y with diaeresis":"Y maiúsculo latino con diérese","Latin capital letter z with acute":"Z maiúsculo latino con acento agudo","Latin small letter z with acute":"z minúsculo latino con acento agudo","Latin capital letter z with dot above":"Z maiúsculo latino con punto enriba","Latin small letter z with dot above":"z minúsculo latino con punto enriba","Latin capital letter z with caron":"Z maiúsculo latino con caron","Latin small letter z with caron":"z minúsculo latino con caron","Latin small letter long s":"s minúsculo latino larga","Less-than sign":"Menor que","Greater-than sign":"Maior que","Less-than or equal to":"Menor ou igual que","Greater-than or equal to":"Maior ou igual que","En dash":"Guión curto","Em dash":"Guión longo (raia)",Macron:"Macron",Overline:"Liña superior","Degree sign":"Signo de grao","Minus sign":"Signo menos","Plus-minus sign":"Signo más/menos","Division sign":"Signo de división","Fraction slash":"Barra de fracción","Multiplication sign":"Signo de multiplicación","Latin small letter f with hook":"f minúsculo latino con gancho",Integral:"Integral","N-ary summation":"Suma de n elementos, sumatorio",Infinity:"Infinito","Square root":"RaÃz cadrada","Tilde operator":"Operador til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Case igual a","Not equal to":"Distinto de","Identical to":"Idéntico a","Element of":"Pertenza","Not an element of":"Non pertenza","Contains as member":"Conten a","N-ary product":"Produto de n elementos, produtorio","Logical and":"E lóxico (conxunción)","Logical or":"Ou lóxico (disxunción)","Not sign":"Signo non",Intersection:"Intersección",Union:"Unión","Partial differential":"Derivada parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conxunto baleiro",Nabla:"Nabla (Gradiente)","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ãngulo","Vulgar fraction one quarter":"Fracción común dun cuarto","Vulgar fraction one half":"Fracción común dun medio","Vulgar fraction three quarters":"Fracción común de tres cuartos","Single left-pointing angle quotation mark":"Marca de acoutamento ángulo esquerdo sinxelo","Single right-pointing angle quotation mark":"Marca de acoutamento ángulo dereito sinxelo","Left-pointing double angle quotation mark":"Marca de acoutamento ángulo esquerdo dobre","Right-pointing double angle quotation mark":"Marca de acoutamento ángulo dereito dobre","Left single quotation mark":"Marca de acoutamento comiña sinxela esquerda","Right single quotation mark":"Marca de acoutamento comiña sinxela dereita","Left double quotation mark":"Marca de acoutamento comiña dobre esquerda","Right double quotation mark":"Marca de acoutamento comiña dobre dereita","Single low-9 quotation mark":"Marca de acoutamento comiña sinxela baixo-9","Double low-9 quotation mark":"Marca de acoutamento comiña dobre baixo-9","Inverted exclamation mark":"Marca invertida de exclamación","Inverted question mark":"Marca invertida de interrogación","Two dot leader":"LÃder de dous puntos","Horizontal ellipsis":"Elipse horizontal","Double dagger":"Daga dobre","Per mille sign":"Signo de por milleiro","Per ten thousand sign":"Signo de por dez mil","Double exclamation mark":"Marca de dobre exclamación","Question exclamation mark":"Marca de interrogación exclamación","Exclamation question mark":"Marca de exclamación interrogación","Double question mark":"Marca de dobre interrogación","Copyright sign":"SÃmbolo de copyright","Registered sign":"SÃmbolo de rexistrado","Trade mark sign":"SÃmbolo de marca de fábrica","Section sign":"Signo de sección","Paragraph sign":"Signo de parágrafo","Reversed paragraph sign":"Signo invertido do parágrafo","Character categories":"CategorÃas de caracteres",Styles:"Estilos","Multiple styles":"Múltiples estilos","Block styles":"Estilos de bloque","Text styles":"Estilos de texto","Insert table":"Inserir táboa","Header column":"Cabeceira de columna","Insert column left":"Inserir columna á esquerda","Insert column right":"Inserir columna á dereita","Delete column":"Eliminar columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Cabeceira de fila","Insert row below":"Inserir fila embaixo","Insert row above":"Inserir fila enriba","Delete row":"Eliminar fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar cela cara arriba","Merge cell right":"Combinar cela cara a dereita","Merge cell down":"Combinar cela cara abaixo","Merge cell left":"Combinar cela cara a esquerda","Split cell vertically":"Dividir cela en vertical","Split cell horizontally":"Dividir cela en horizontal","Merge cells":"Combinar celas","Table toolbar":"Barra de ferramentas de táboas","Table properties":"Propiedades da táboa","Cell properties":"Propiedades da cela",Border:"Bordo",Style:"Estilo",Width:"Largo",Height:"Alto",Color:"Cor",Background:"Fondo",Padding:"Recheo",Dimensions:"Dimensións","Table cell text alignment":"Aliñamento do texto das celas da táboa",Alignment:"Aliñamento","Horizontal text alignment toolbar":"Barra de ferramentas de aliñamento de texto horizontal","Vertical text alignment toolbar":"Barra de ferramentas de aliñamento de texto vertical","Table alignment toolbar":"Barra de ferramentas de aliñamento da táboa",None:"Ningún",Solid:"Sólido",Dotted:"Punteado",Dashed:"Raiado",Double:"Dobre",Groove:"Rañura",Ridge:"Crista",Inset:"Inserción",Outset:"Inicio","Align cell text to the left":"Aliñar o texto da cela á esquerda","Align cell text to the center":"Aliñar o texto da cela ao centro","Align cell text to the right":"Aliña o texto da cela á dereita","Justify cell text":"Xustificar o texto da cela","Align cell text to the top":"Aliñar o texto da cela á parte superior","Align cell text to the middle":"Aliñar o texto da cela ao medio","Align cell text to the bottom":"Aliñar o texto da cela á base","Align table to the left":"Aliñar a táboa á esquerda","Center table":"Centrar a táboa","Align table to the right":"Aliñar a táboa á dereita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A cor non é válida. Probe «#FF0000» ou «rgb(255,0,0)» ou «vermello».","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"O valor non é válido. Probe «10px» ou «2em» ou simplemente «2».","Color picker":"Selector de cores","Toggle caption off":"Desactivar os subtÃtulos","Toggle caption on":"Activar os subtÃtulos","Enter table caption":"Introduza o tÃtulo da táboa","Rich Text Editor":"Editor de texto mellorado","Editor editing area: %0":"Ãrea de edición do editor: %0","Edit block":"Editar bloque","Click to edit block":"Prema para editar o bloque","Drag to move":"Arrastre para mover",Next:"Seguinte",Previous:"Anterior","Editor toolbar":"Barra de ferramentas do editor","Dropdown toolbar":"Barra de ferramentas despregábel",Black:"Negro","Dim grey":"Gris fume",Grey:"Gris","Light grey":"Gris claro",White:"Branco",Red:"Vermello",Orange:"Laranxa",Yellow:"Amarelo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Augamariña",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Púrpura","Editor block content toolbar":"Barra de ferramentas de contido do bloque do editor","Editor contextual toolbar":"Barra de ferramentas contextual do editor",HEX:"HEX",Accept:"Aceptar","No results found":"Non se atoparon resultados","No searchable items":"Non hai elementos que se poidan buscar","Editor dialog":"",Close:"",Undo:"Desfacer",Redo:"Refacer","Upload in progress":"EnvÃo en proceso","Widget toolbar":"Barra de ferramentas de trebellos","Insert paragraph before block":"Inserir parágrafo antes do bloque","Insert paragraph after block":"Inserir parágrafo após o bloque","Press Enter to type after or press Shift + Enter to type before the widget":"Prema Intro para escribir após ou prema Maiús + Intro para escribir antes do trebello","Words: %0":"Palabras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['gl'] = d['gl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aliñar á esquerda","Align right":"Aliñar á dereita","Align center":"Centrar horizontalmente",Justify:"Xustificado","Text alignment":"Aliñamento do texto","Text alignment toolbar":"Barra de ferramentas de aliñamento de textos",Bold:"Negra",Italic:"Itálica",Underline:"Subliñado",Code:"Código",Strikethrough:"Riscado",Subscript:"SubÃndice",Superscript:"SuperÃndice","Block quote":"Cita de bloque","Insert code block":"Inserir bloque de código","Plain text":"Texto simple",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Retirar a cor","Restore default":"Restaurar valores predeterminados",Save:"Gardar","Show more items":"Amosar máis elementos","%0 of %1":"%0 de %1","Cannot upload file:":"Non é posÃbel enviar o ficheiro:","Rich Text Editor. Editing area: %0":"Editor de texto mellorado. Ãrea de edición: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Buscar e substituÃr","Find in text…":"Buscar no texto…",Find:"Buscar","Previous result":"Resultado anterior","Next result":"Seguinte resultado",Replace:"SubstituÃr","Replace all":"SubstituÃr todo","Match case":"Coincidencia de maiúsculas","Whole words only":"Só palabras enteiras","Replace with…":"SubstituÃr por…","Text to find must not be empty.":"O texto a buscar non debe estar baleiro.","Tip: Find some text first in order to replace it.":"Consello: primeiro busca algo de texto para substituÃlo.","Advanced options":"","Font Size":"Tamaño da letra",Tiny:"Diminuta",Small:"Pequena",Big:"Grande",Huge:"Enorme","Font Family":"Familia tipográfica",Default:"Predeterminada","Font Color":"Cor da letra","Font Background Color":"Cor do fondo da letra","Document colors":"Cores do documento",Paragraph:"Parágrafo",Heading:"TÃtulo","Choose heading":"Escolla o tÃtulo","Heading 1":"TÃtulo 1","Heading 2":"TÃtulo 2","Heading 3":"TÃtulo 3","Heading 4":"TÃtulo 4","Heading 5":"TÃtulo 5","Heading 6":"TÃtulo 6","Type your title":"Escriba o seu tÃtulo","Type or paste your content here.":"Escriba ou pegue o seu contido aquÃ.","Horizontal line":"Liña horizontal","HTML object":"Obxecto HTML","Increase indent":"Aumentar a sangrÃa","Decrease indent":"Reducir a sangrÃa",Unlink:"Desligar",Link:"Ligar","Link URL":"URL de ligazón","Link image":"Ligazón da imaxe","Edit link":"Editar a ligazón","Open link in new tab":"Abrir a ligazón nunha nova lapela","This link has no URL":"Esta ligazón non ten URL","Open in a new tab":"Abrir nunha nova lapela",Downloadable:"Descargábel","Numbered List":"Lista numerada","Bulleted List":"Lista con viñetas","To-do List":"Lista de cousas por facer","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista con viñetas","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Alternar o estilo da lista «discos»","Toggle the circle list style":"Alternar o estilo da lista «cÃrculos»","Toggle the square list style":"Alternar o estilo da lista «cadrados»","Toggle the decimal list style":"Alternar o estilo da lista «decimais»","Toggle the decimal with leading zero list style":"Activar/desactivar o estilo «decimais con cero á esquerda»","Toggle the lower–roman list style":"Activar/desactivar o estilo da lista «núm. romanos en minúscula»","Toggle the upper–roman list style":"Activar/desactivar o estilo da lista «núm. romanos en maiúscula»","Toggle the lower–latin list style":"Activar/desactivar o estilo da lista «letras minúsculas»","Toggle the upper–latin list style":"Activar/desactivar o estilo da lista «letras maiúsculas»",Disc:"Discos",Circle:"CÃrculos",Square:"Cadrados",Decimal:"Decimais","Decimal with leading zero":"Decimais con cero á esquerda","Lower–roman":"Núm, romanos en minúscula","Upper-roman":"Núm, romanos en maiúscula","Lower-latin":"Letras minúsculas","Upper-latin":"Letras maiúsculas","List properties":"Lista de propiedades","Start at":"Comezar en","Start index must be greater than 0.":"O Ãndice de inicio debe ser maior que 0.","Reversed order":"Orde inversa","Remove Format":"Retirar o formato","Select all":"Seleccionar todo","Show blocks":"Amosar os bloques",Source:"Orixe","Special characters":"Caracteres especiais",All:"Todos",Arrows:"Frechas",Currency:"Moedas",Latin:"Latinos",Mathematical:"Matemáticos",Text:"Texto","leftwards simple arrow":"frecha simple cara a esquerda","rightwards simple arrow":"frecha simple cara a dereita","upwards simple arrow":"frecha simple cara arriba","downwards simple arrow":"frecha simple cara abaixo","leftwards double arrow":"frecha dobre cara a esquerda","rightwards double arrow":"frecha dobre cara a dereita","upwards double arrow":"frecha dobre cara arriba","downwards double arrow":"frecha dobre cara abaixo","leftwards dashed arrow":"frecha de guións cara a esquerda","rightwards dashed arrow":"frecha de guións cara a dereita","upwards dashed arrow":"frecha de guións cara arriba","downwards dashed arrow":"frecha de guións cara abaixo","leftwards arrow to bar":"frecha cara a esquerda con tope","rightwards arrow to bar":"frecha cara a dereita con tope","upwards arrow to bar":"frecha cara arriba con tope","downwards arrow to bar":"frecha cara abaixo con tope","up down arrow with base":"frecha arriba-abaixo con base","back with leftwards arrow above":"cara atrás, coa frecha cara a esquerda enriba","end with leftwards arrow above":"final, coa frecha cara a esquerda enriba","on with exclamation mark with left right arrow above":"activado, con signo de exclamación coa frecha esquerda-dereita enrriba","soon with rightwards arrow above":"logo, coa frecha cara a dereita enriba","top with upwards arrow above":"superior, coa frecha cara arriba enriba","Dollar sign":"SÃmbolo do dolar","Euro sign":"SÃmbolo do euro","Yen sign":"SÃmbolo do yen","Pound sign":"SÃmbolo da libra","Cent sign":"SÃmbolo do centavo","Euro-currency sign":"SÃmbolo da moeda do euro","Colon sign":"SÃmbolo do colón","Cruzeiro sign":"SÃmbolo do cruceiro","French franc sign":"SÃmbolo do franco francés","Lira sign":"SÃmbolo da lira","Currency sign":"SÃmbolo de moeda","Bitcoin sign":"SÃmbolo do Bitcoin","Mill sign":"SÃmbolo do mill","Naira sign":"SÃmbolo da naira","Peseta sign":"SÃmbolo da peseta","Rupee sign":"SÃmbolo da rupia","Won sign":"SÃmbolo do won","New sheqel sign":"SÃmbolo do novo xequel","Dong sign":"SÃmbolo do dong","Kip sign":"SÃmbolo do kip","Tugrik sign":"SÃmbolo do tugrik","Drachma sign":"SÃmbolo do dracma","German penny sign":"SÃmbolo do penique alemán","Peso sign":"SÃmbolo do peso","Guarani sign":"SÃmbolo do guaranÃ","Austral sign":"SÃmbolo do austral","Hryvnia sign":"SÃmbolo do hryvnia","Cedi sign":"SÃmbolo do cedi","Livre tournois sign":"SÃmbolo da libra tournois","Spesmilo sign":"SÃmbolo do spesmilo","Tenge sign":"SÃmbolo do tenge","Indian rupee sign":"SÃmbolo da rupia india","Turkish lira sign":"SÃmbolo da lira turca","Nordic mark sign":"SÃmbolo do marco nordico","Manat sign":"SÃmbolo do manat","Ruble sign":"SÃmbolo do rublo","Latin capital letter a with macron":"A maiúsculo latino con macron","Latin small letter a with macron":"a minúsculo latino con macron","Latin capital letter a with breve":"A maiúsculo latino con acento breve","Latin small letter a with breve":"a minúsculo latino con acento breve","Latin capital letter a with ogonek":"A maiúsculo latino con ogonek","Latin small letter a with ogonek":"a minúsculo latino con ogonek","Latin capital letter c with acute":"C maiúsculo latino con acento agudo","Latin small letter c with acute":"c minúsculo latino con acento agudo","Latin capital letter c with circumflex":"C maiúsculo latino con acento circunflexo","Latin small letter c with circumflex":"c minúsculo latino con acento circunflexo","Latin capital letter c with dot above":"C maiúsculo latino con punto enriba","Latin small letter c with dot above":"c minúsculo latino con punto enriba","Latin capital letter c with caron":"C maiúsculo latino con caron","Latin small letter c with caron":"cminúsculo latino con caron","Latin capital letter d with caron":"D maiúsculo latino con caron","Latin small letter d with caron":"d minúsculo latino con caron","Latin capital letter d with stroke":"D maiúsculo latino barrado","Latin small letter d with stroke":"d minúsculo latino barrado","Latin capital letter e with macron":"E maiúsculo latino con macron","Latin small letter e with macron":"e minúsculo latino con macron","Latin capital letter e with breve":"E maiúsculo latino con acento breve","Latin small letter e with breve":"e minúsculo latino con acento breve","Latin capital letter e with dot above":"E maiúsculo latino con punto enriba","Latin small letter e with dot above":"e minúsculo latino con punto enriba","Latin capital letter e with ogonek":"E maiúsculo latino con ogonek","Latin small letter e with ogonek":"e minúsculo latino con ogonek","Latin capital letter e with caron":"E maiúsculo latino con caron","Latin small letter e with caron":"e minúsculo latino con caron","Latin capital letter g with circumflex":"G maiúsculo latino con acento circunflexo","Latin small letter g with circumflex":"g minúsculo latino con acento circunflexo","Latin capital letter g with breve":"G maiúsculo latino con acento breve","Latin small letter g with breve":"g minúsculo latino con acento breve","Latin capital letter g with dot above":"G maiúsculo latino con punto enriba","Latin small letter g with dot above":"g minúsculo latino con punto enriba","Latin capital letter g with cedilla":"G maiúsculo latino con cedilla","Latin small letter g with cedilla":"g minúsculo latino con cedilla","Latin capital letter h with circumflex":"H maiúsculo latino con acento circunflexo","Latin small letter h with circumflex":"h minúsculo latino con acento circunflexo","Latin capital letter h with stroke":"H maiúsculo latino barrado","Latin small letter h with stroke":"h minúsculo latino barrado","Latin capital letter i with tilde":"I maiúsculo latino con til","Latin small letter i with tilde":"i minúsculo latino con til","Latin capital letter i with macron":"I maiúsculo latino con macron","Latin small letter i with macron":"i minúsculo latino con macron","Latin capital letter i with breve":"I maiúsculo latino con acento breve","Latin small letter i with breve":"i minúsculo latino con acento breve","Latin capital letter i with ogonek":"I maiúsculo latino con ogonek","Latin small letter i with ogonek":"i minúsculo latino con ogonek","Latin capital letter i with dot above":"I maiúsculo latino con punto enriba","Latin small letter dotless i":"i minúsculo latino sen punto","Latin capital ligature ij":"Ligadura IJ maiúsculo latino","Latin small ligature ij":"Ligadura ij minúsculo latino","Latin capital letter j with circumflex":"J maiúsculo latino con acento circunflexo","Latin small letter j with circumflex":"j minúsculo latino con acento circunflexo","Latin capital letter k with cedilla":"K maiúsculo latino con cedilla","Latin small letter k with cedilla":"k minúsculo latino con cedilla","Latin small letter kra":"Letra kra minúscula","Latin capital letter l with acute":"L maiúsculo latino con acento agudo","Latin small letter l with acute":"l minúsculo latino con acento agudo","Latin capital letter l with cedilla":"L maiúsculo latino con cedilla","Latin small letter l with cedilla":"l minúsculo latino con cedilla","Latin capital letter l with caron":"L maiúsculo latino con caron","Latin small letter l with caron":"l minúsculo latino con caron","Latin capital letter l with middle dot":"L maiúsculo latino con punto medio","Latin small letter l with middle dot":"l minúsculo latino con punto medio","Latin capital letter l with stroke":"L maiúsculo latino barrado","Latin small letter l with stroke":"l minúsculo latino barrado","Latin capital letter n with acute":"N maiúsculo latino con acento agudo","Latin small letter n with acute":"n minúsculo latino con acento agudo","Latin capital letter n with cedilla":"N maiúsculo latino con cedilla","Latin small letter n with cedilla":"n minúsculo latino con cedilla","Latin capital letter n with caron":"N maiúsculo latino con caron","Latin small letter n with caron":"n minúsculo latino con caron","Latin small letter n preceded by apostrophe":"n minúsculo latino precedido de apostrofe","Latin capital letter eng":"Eng (engma) mziúsculo latino","Latin small letter eng":"Eng (engma) minúsculo latino","Latin capital letter o with macron":"O maiúsculo latino con macron","Latin small letter o with macron":"o minúsculo latino con macron","Latin capital letter o with breve":"O maiúsculo latino con acento breve","Latin small letter o with breve":"o minúsculo latino con acento breve","Latin capital letter o with double acute":"O maiúsculo latino con acento agudo dobre","Latin small letter o with double acute":"o minúsculo latino con acento agudo dobre","Latin capital ligature oe":"Ligadura OE maiúsculo latino","Latin small ligature oe":"Ligadura oe minúsculo latino","Latin capital letter r with acute":"R maiúsculo latino con acento agudo","Latin small letter r with acute":"r minúsculo latino con acento agudo","Latin capital letter r with cedilla":"R maiúsculo latino con cedilla","Latin small letter r with cedilla":"r minúsculo latino con cedilla","Latin capital letter r with caron":"R maiúsculo latino con caron","Latin small letter r with caron":"r minúsculo latino con caron","Latin capital letter s with acute":"S maiúsculo latino con acento agudo","Latin small letter s with acute":"s minúsculo latino con acento agudo","Latin capital letter s with circumflex":"S maiúsculo latino con acento circunflexo","Latin small letter s with circumflex":"s minúsculo latino con acento circunflexo","Latin capital letter s with cedilla":"S maiúsculo latino con cedilla","Latin small letter s with cedilla":"s minúsculo latino con cedilla","Latin capital letter s with caron":"S maiúsculo latino con caron","Latin small letter s with caron":"s minúsculo latino con caron","Latin capital letter t with cedilla":"T maiúsculo latino con cedilla","Latin small letter t with cedilla":"t minúsculo latino con cedilla","Latin capital letter t with caron":"T maiúsculo latino con caron","Latin small letter t with caron":"t minúsculo latino con caron","Latin capital letter t with stroke":"T maiúsculo latino barrado","Latin small letter t with stroke":"t minúsculo latino barrado","Latin capital letter u with tilde":"U maiúsculo latino con til","Latin small letter u with tilde":"u minúsculo latino con til","Latin capital letter u with macron":"U maiúsculo latino con macron","Latin small letter u with macron":"u minúsculo latino con macron","Latin capital letter u with breve":"U maiúsculo latino con acento breve","Latin small letter u with breve":"u minúsculo latino con acento breve","Latin capital letter u with ring above":"U maiúsculo latino con anel enriba","Latin small letter u with ring above":"u minúsculo latino con anel enriba","Latin capital letter u with double acute":"U maiúsculo latino con acento agudo dobre","Latin small letter u with double acute":"u minúsculo latino con acento agudo dobre","Latin capital letter u with ogonek":"U maiúsculo latino con ogonek","Latin small letter u with ogonek":"u minúsculo latino con ogonek","Latin capital letter w with circumflex":"W maiúsculo latino con acento circunflexo","Latin small letter w with circumflex":"w minúsculo latino con acento circunflexo","Latin capital letter y with circumflex":"Y maiúsculo latino con acento circunflexo","Latin small letter y with circumflex":"y minúsculo latino con acento circunflexo","Latin capital letter y with diaeresis":"Y maiúsculo latino con diérese","Latin capital letter z with acute":"Z maiúsculo latino con acento agudo","Latin small letter z with acute":"z minúsculo latino con acento agudo","Latin capital letter z with dot above":"Z maiúsculo latino con punto enriba","Latin small letter z with dot above":"z minúsculo latino con punto enriba","Latin capital letter z with caron":"Z maiúsculo latino con caron","Latin small letter z with caron":"z minúsculo latino con caron","Latin small letter long s":"s minúsculo latino larga","Less-than sign":"Menor que","Greater-than sign":"Maior que","Less-than or equal to":"Menor ou igual que","Greater-than or equal to":"Maior ou igual que","En dash":"Guión curto","Em dash":"Guión longo (raia)",Macron:"Macron",Overline:"Liña superior","Degree sign":"Signo de grao","Minus sign":"Signo menos","Plus-minus sign":"Signo más/menos","Division sign":"Signo de división","Fraction slash":"Barra de fracción","Multiplication sign":"Signo de multiplicación","Latin small letter f with hook":"f minúsculo latino con gancho",Integral:"Integral","N-ary summation":"Suma de n elementos, sumatorio",Infinity:"Infinito","Square root":"RaÃz cadrada","Tilde operator":"Operador til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Case igual a","Not equal to":"Distinto de","Identical to":"Idéntico a","Element of":"Pertenza","Not an element of":"Non pertenza","Contains as member":"Conten a","N-ary product":"Produto de n elementos, produtorio","Logical and":"E lóxico (conxunción)","Logical or":"Ou lóxico (disxunción)","Not sign":"Signo non",Intersection:"Intersección",Union:"Unión","Partial differential":"Derivada parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conxunto baleiro",Nabla:"Nabla (Gradiente)","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ãngulo","Vulgar fraction one quarter":"Fracción común dun cuarto","Vulgar fraction one half":"Fracción común dun medio","Vulgar fraction three quarters":"Fracción común de tres cuartos","Single left-pointing angle quotation mark":"Marca de acoutamento ángulo esquerdo sinxelo","Single right-pointing angle quotation mark":"Marca de acoutamento ángulo dereito sinxelo","Left-pointing double angle quotation mark":"Marca de acoutamento ángulo esquerdo dobre","Right-pointing double angle quotation mark":"Marca de acoutamento ángulo dereito dobre","Left single quotation mark":"Marca de acoutamento comiña sinxela esquerda","Right single quotation mark":"Marca de acoutamento comiña sinxela dereita","Left double quotation mark":"Marca de acoutamento comiña dobre esquerda","Right double quotation mark":"Marca de acoutamento comiña dobre dereita","Single low-9 quotation mark":"Marca de acoutamento comiña sinxela baixo-9","Double low-9 quotation mark":"Marca de acoutamento comiña dobre baixo-9","Inverted exclamation mark":"Marca invertida de exclamación","Inverted question mark":"Marca invertida de interrogación","Two dot leader":"LÃder de dous puntos","Horizontal ellipsis":"Elipse horizontal","Double dagger":"Daga dobre","Per mille sign":"Signo de por milleiro","Per ten thousand sign":"Signo de por dez mil","Double exclamation mark":"Marca de dobre exclamación","Question exclamation mark":"Marca de interrogación exclamación","Exclamation question mark":"Marca de exclamación interrogación","Double question mark":"Marca de dobre interrogación","Copyright sign":"SÃmbolo de copyright","Registered sign":"SÃmbolo de rexistrado","Trade mark sign":"SÃmbolo de marca de fábrica","Section sign":"Signo de sección","Paragraph sign":"Signo de parágrafo","Reversed paragraph sign":"Signo invertido do parágrafo","Character categories":"CategorÃas de caracteres",Styles:"Estilos","Multiple styles":"Múltiples estilos","Block styles":"Estilos de bloque","Text styles":"Estilos de texto","Insert table":"Inserir táboa","Header column":"Cabeceira de columna","Insert column left":"Inserir columna á esquerda","Insert column right":"Inserir columna á dereita","Delete column":"Eliminar columna","Select column":"Seleccionar columna",Column:"Columna","Header row":"Cabeceira de fila","Insert row below":"Inserir fila embaixo","Insert row above":"Inserir fila enriba","Delete row":"Eliminar fila","Select row":"Seleccionar fila",Row:"Fila","Merge cell up":"Combinar cela cara arriba","Merge cell right":"Combinar cela cara a dereita","Merge cell down":"Combinar cela cara abaixo","Merge cell left":"Combinar cela cara a esquerda","Split cell vertically":"Dividir cela en vertical","Split cell horizontally":"Dividir cela en horizontal","Merge cells":"Combinar celas","Table toolbar":"Barra de ferramentas de táboas","Table properties":"Propiedades da táboa","Cell properties":"Propiedades da cela",Border:"Bordo",Style:"Estilo",Width:"Largo",Height:"Alto",Color:"Cor",Background:"Fondo",Padding:"Recheo",Dimensions:"Dimensións","Table cell text alignment":"Aliñamento do texto das celas da táboa",Alignment:"Aliñamento","Horizontal text alignment toolbar":"Barra de ferramentas de aliñamento de texto horizontal","Vertical text alignment toolbar":"Barra de ferramentas de aliñamento de texto vertical","Table alignment toolbar":"Barra de ferramentas de aliñamento da táboa",None:"Ningún",Solid:"Sólido",Dotted:"Punteado",Dashed:"Raiado",Double:"Dobre",Groove:"Rañura",Ridge:"Crista",Inset:"Inserción",Outset:"Inicio","Align cell text to the left":"Aliñar o texto da cela á esquerda","Align cell text to the center":"Aliñar o texto da cela ao centro","Align cell text to the right":"Aliña o texto da cela á dereita","Justify cell text":"Xustificar o texto da cela","Align cell text to the top":"Aliñar o texto da cela á parte superior","Align cell text to the middle":"Aliñar o texto da cela ao medio","Align cell text to the bottom":"Aliñar o texto da cela á base","Align table to the left":"Aliñar a táboa á esquerda","Center table":"Centrar a táboa","Align table to the right":"Aliñar a táboa á dereita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A cor non é válida. Probe «#FF0000» ou «rgb(255,0,0)» ou «vermello».","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"O valor non é válido. Probe «10px» ou «2em» ou simplemente «2».","Color picker":"Selector de cores","Toggle caption off":"Desactivar os subtÃtulos","Toggle caption on":"Activar os subtÃtulos","Enter table caption":"Introduza o tÃtulo da táboa","Rich Text Editor":"Editor de texto mellorado","Editor editing area: %0":"Ãrea de edición do editor: %0","Edit block":"Editar bloque","Click to edit block":"Prema para editar o bloque","Drag to move":"Arrastre para mover",Next:"Seguinte",Previous:"Anterior","Editor toolbar":"Barra de ferramentas do editor","Dropdown toolbar":"Barra de ferramentas despregábel",Black:"Negro","Dim grey":"Gris fume",Grey:"Gris","Light grey":"Gris claro",White:"Branco",Red:"Vermello",Orange:"Laranxa",Yellow:"Amarelo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Augamariña",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Púrpura","Editor block content toolbar":"Barra de ferramentas de contido do bloque do editor","Editor contextual toolbar":"Barra de ferramentas contextual do editor",HEX:"HEX",Accept:"Aceptar","No results found":"Non se atoparon resultados","No searchable items":"Non hai elementos que se poidan buscar","Editor dialog":"",Close:"",Undo:"Desfacer",Redo:"Refacer","Upload in progress":"EnvÃo en proceso","Widget toolbar":"Barra de ferramentas de trebellos","Insert paragraph before block":"Inserir parágrafo antes do bloque","Insert paragraph after block":"Inserir parágrafo após o bloque","Press Enter to type after or press Shift + Enter to type before the widget":"Prema Intro para escribir após ou prema Maiús + Intro para escribir antes do trebello","Words: %0":"Palabras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/he.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/he.js index 9ff00eb3a87a41ebfa85e7b45e5ce1920bf60275..26eac4f0bb159429124dd62a4067bdf39a93a0c6 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/he.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/he.js @@ -1 +1 @@ -(function(d){ const l = d['he'] = d['he'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"יישור לשמ×ל","Align right":"יישור לימין","Align center":"יישור ב×מצע",Justify:"מרכוז גבולות","Text alignment":"יישור טקסט","Text alignment toolbar":"סרגל ×›×œ×™× ×™×™×©×•×¨ טקסט",Bold:"מודגש",Italic:"× ×˜×•×™",Underline:"קו תחתון",Code:"קוד",Strikethrough:"קו חוצה",Subscript:"כתב תחתי",Superscript:"כתב עילי","Block quote":"בלוק ציטוט","Insert code block":"הוספת קטע קוד","Plain text":"טקסט פשוט",Cancel:"ביטול",Clear:"×œ× ×§×•×ª","Remove color":"מחיקת צבע","Restore default":"שחזור ברירת מחדל",Save:"שמירה","Show more items":"הצג ×¤×¨×™×˜×™× × ×•×¡×¤×™×","%0 of %1":"%0 מתוך %1","Cannot upload file:":"×œ× × ×™×ª×Ÿ להעלות ×ת הקובץ הב×:","Rich Text Editor. Editing area: %0":"עורך פורמט טקסט עשיר. ×זור עריכה: %0","Insert with file manager":"הוספה ×¢× ×ž× ×”×œ הקבצי×","Replace with file manager":"החלפה ×¢× ×ž× ×”×œ הקבצי×","Insert image with file manager":"הוספת ×ª×ž×•× ×” ×¢× ×ž× ×”×œ הקבצי×","Replace image with file manager":"החלפת ×ª×ž×•× ×” ×¢× ×ž× ×”×œ הקבצי×","Find and replace":"חיפוש והחלפה","Find in text…":"חיפוש בטקסט",Find:"חיפוש","Previous result":"התוצ××” הקודמת","Next result":"התוצ××” הב××”",Replace:"החלף","Replace all":"החלף הכל","Match case":"הת×× ×¨×™×©×™×•×ª","Whole words only":"×ž×™×œ×™× ×©×œ×ž×•×ª בלבד","Replace with…":"החלף ב…","Text to find must not be empty.":"הטקסט לחיפוש ×œ× ×™×›×•×œ להיות ריק.","Tip: Find some text first in order to replace it.":"טיפ: מצ×ו תחילה טקסט כדי להחליף ×ותו.","Advanced options":"×פשרויות מתקדמות",Paragraph:"פיסקה",Heading:"כותרת","Choose heading":"בחר סוג כותרת","Heading 1":"כותרת 1","Heading 2":"כותרת 2","Heading 3":"כותרת 3","Heading 4":"כותרת 4","Heading 5":"כותרת 5","Heading 6":"כותרת 6","Type your title":"הזן כותרת","Type or paste your content here.":"הזן ×ו הדבק ×ת התוכן ×›×ן","Horizontal line":"קו ×ופקי","HTML object":"×ובייקט HTML","Increase indent":"הגדלת ×”×–×—×”","Decrease indent":"×”×§×˜× ×ª ×”×–×—×”",Unlink:"ביטול קישור",Link:"קישור","Link URL":"קישור כתובת ×תר","Link image":"קישור ×ª×ž×•× ×”","Edit link":"עריכת קישור","Open link in new tab":"פתח קישור בכרטיסייה חדשה","This link has no URL":"לקישור ×–×” ×ין כתובת ×תר","Open in a new tab":"פתח בכרטיסייה חדשה",Downloadable:"× ×™×ª×Ÿ להורדה","Numbered List":"רשימה ממוספרת","Bulleted List":"רשימה ×ž× ×•×§×“×ª","To-do List":"רשימת מטלות","Bulleted list styles toolbar":"סרגל ×›×œ×™× ×©×œ ×¡×’× ×•× ×•×ª רשימה ×¢× ×ª×‘×œ×™×˜×™×","Numbered list styles toolbar":"סרגל ×›×œ×™× ×©×œ ×¡×’× ×•× ×•×ª רשימה ממוספרת","Toggle the disc list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת דיסקות","Toggle the circle list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת מעגלי×","Toggle the square list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת ריבועי×","Toggle the decimal list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢×©×¨×•× ×™×ª","Toggle the decimal with leading zero list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢×©×¨×•× ×™×ª ×¢× ×פס מוביל","Toggle the lower–roman list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×¡×¤×¨×•×ª רומיות ×§×˜× ×•×ª","Toggle the upper–roman list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×¡×¤×¨×•×ª רומיות גדולות","Toggle the lower–latin list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×ותיות ×œ×˜×™× ×™×•×ª ×§×˜× ×•×ª","Toggle the upper–latin list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×ותיות ×œ×˜×™× ×™×•×ª גדולות",Disc:"עיגול מל×",Circle:"עיגול",Square:"ריבוע",Decimal:"×¢×©×¨×•× ×™×ª","Decimal with leading zero":"×¢×©×¨×•× ×™×ª ×¢× ×פס מוביל","Lower–roman":"×ותיות רומיות ×§×˜× ×•×ª","Upper-roman":"×ותיות רומיות גדולות","Lower-latin":"×ותיות ×œ×˜×™× ×™×•×ª ×§×˜× ×•×ª","Upper-latin":"×ותיות ×œ×˜×™× ×™×•×ª גדולות","List properties":"×פשרויות רשימה","Start at":"התחל ב-","Start index must be greater than 0.":"××™× ×“×§×¡ ההתחלה חייב להיות גדול מ-0.","Reversed order":"סדר הפוך","Remove Format":"הסרת עיצוב","Select all":"בחר הכל","Show blocks":"הצג גושי×",Source:"מקור","Special characters":"×ª×•×•×™× ×ž×™×•×—×“×™×",All:"כל",Arrows:"חיצי×",Currency:"מטבע",Latin:"×œ×˜×™× ×™×ª",Mathematical:"מתמטי",Text:"טקסט","leftwards simple arrow":"×—×¥ פשוט שמ×לה","rightwards simple arrow":"×—×¥ פשוט ×™×ž×™× ×”","upwards simple arrow":"×—×¥ פשוט כלפי מעלה","downwards simple arrow":"×—×¥ פשוט כלפי מטה","leftwards double arrow":"×—×¥ כפול שמ×לה","rightwards double arrow":"×—×¥ כפול ×™×ž×™× ×”","upwards double arrow":"×—×¥ כפול למעלה","downwards double arrow":"×—×¥ כפול למטה","leftwards dashed arrow":"×—×¥ מקווקו שמ×לה","rightwards dashed arrow":"×—×¥ מקווקו ×™×ž×™× ×”","upwards dashed arrow":"×—×¥ מקווקו למעלה","downwards dashed arrow":"×—×¥ מקווקו למטה","leftwards arrow to bar":"×—×¥ שמ×לה לפס","rightwards arrow to bar":"×—×¥ ×™×ž×™× ×” לפס","upwards arrow to bar":"×—×¥ למעלה לפס","downwards arrow to bar":"×—×¥ למטה לפס","up down arrow with base":"×—×¥ למעלה ולמטה ×¢× ×‘×¡×™×¡","back with leftwards arrow above":"\"back\" ומעליו ×—×¥ שמ×לה","end with leftwards arrow above":"\"end\" ומעליו ×—×¥ שמ×לה","on with exclamation mark with left right arrow above":"\"on\" ×¢× ×¡×™×ž×Ÿ קרי××” ומעליו ×—×¥ שמ×לה ×•×™×ž×™× ×”","soon with rightwards arrow above":"\"soon\" ומעליו ×—×¥ ×™×ž×™× ×”","top with upwards arrow above":"\"top\" ומעליו ×—×¥ למעלה","Dollar sign":"סמל דולר","Euro sign":"סמל ×ירו","Yen sign":"סמל ין","Pound sign":"סמל ליש\"ט","Cent sign":"סמל ×¡× ×˜","Euro-currency sign":"סמל יחידת מטבע ×ירופ×ית","Colon sign":"סמל קולון","Cruzeiro sign":"סמל קרוזיירו","French franc sign":"סמל ×¤×¨× ×§ צרפתי","Lira sign":"סמל לירה","Currency sign":"סמל מטבע","Bitcoin sign":"סמל ביטקוין","Mill sign":"סמל מיל","Naira sign":"סמל × ×ירה","Peseta sign":"סמל פסטה","Rupee sign":"סמל רופי","Won sign":"סמל וון","New sheqel sign":"סמל שקל חדש","Dong sign":"סמל ×“×•× ×’","Kip sign":"סמל קיפ","Tugrik sign":"סמל טוגרוג","Drachma sign":"סמל דרכמה","German penny sign":"סמל ×¤× ×™ ×’×¨×ž× ×™","Peso sign":"סמל פסו","Guarani sign":"סמל גו××¨× ×™","Austral sign":"סמל ××וסטרל","Hryvnia sign":"סמל ×”×¨×™×‘× ×™×”","Cedi sign":"סמל סדי","Livre tournois sign":"סמל ליבר ×˜×•×¨× ×•××”","Spesmilo sign":"סמל ספסמילו","Tenge sign":"סמל ×˜× ×’×”","Indian rupee sign":"סמל רופי הודי","Turkish lira sign":"סמל לירה טורקית","Nordic mark sign":"סמל מ×רק × ×•×¨×“×™","Manat sign":"סמל מ×× ×ט","Ruble sign":"סמל רובל","Latin capital letter a with macron":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter a with macron":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter a with breve":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter a with breve":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter a with ogonek":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter a with ogonek":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter c with acute":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter c with acute":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter c with circumflex":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter c with circumflex":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter c with dot above":"c גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter c with dot above":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter c with caron":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter c with caron":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter d with caron":"d גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter d with caron":"d ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter d with stroke":"d גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter d with stroke":"d ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter e with macron":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter e with macron":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter e with breve":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter e with breve":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter e with dot above":"e גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter e with dot above":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter e with ogonek":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter e with ogonek":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter e with caron":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter e with caron":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter g with circumflex":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter g with circumflex":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter g with breve":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter g with breve":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter g with dot above":"g גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter g with dot above":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter g with cedilla":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter g with cedilla":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter h with circumflex":"h גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter h with circumflex":"h ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter h with stroke":"h גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter h with stroke":"h ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter i with tilde":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin small letter i with tilde":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin capital letter i with macron":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter i with macron":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter i with breve":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter i with breve":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter i with ogonek":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter i with ogonek":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter i with dot above":"i גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter dotless i":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital ligature ij":"ליגטורה גדולה ×œ×˜×™× ×™×ª ij","Latin small ligature ij":"ליגטורה ×§×˜× ×” ×œ×˜×™× ×™×ª ij","Latin capital letter j with circumflex":"j גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter j with circumflex":"j ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter k with cedilla":"k גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter k with cedilla":"k ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter kra":"קרה ×§×˜× ×” ×œ×˜×™× ×™×ª","Latin capital letter l with acute":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter l with acute":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter l with cedilla":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter l with cedilla":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter l with caron":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter l with caron":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter l with middle dot":"l גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” ×מצעית","Latin small letter l with middle dot":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” ×מצעית","Latin capital letter l with stroke":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter l with stroke":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter n with acute":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter n with acute":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter n with cedilla":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter n with cedilla":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter n with caron":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter n with caron":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter n preceded by apostrophe":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×•×œ×¤× ×™×” ×פוסטרוף","Latin capital letter eng":"×× ×’ גדולה ×œ×˜×™× ×™×ª","Latin small letter eng":"×× ×’ ×§×˜× ×” ×œ×˜×™× ×™×ª","Latin capital letter o with macron":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter o with macron":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter o with breve":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter o with breve":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter o with double acute":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin small letter o with double acute":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin capital ligature oe":"ליגטורה גדולה ×œ×˜×™× ×™×ª oe","Latin small ligature oe":"ליגטורה ×§×˜× ×” ×œ×˜×™× ×™×ª oe","Latin capital letter r with acute":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter r with acute":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter r with cedilla":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter r with cedilla":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter r with caron":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter r with caron":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter s with acute":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter s with acute":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter s with circumflex":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter s with circumflex":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter s with cedilla":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter s with cedilla":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter s with caron":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter s with caron":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter t with cedilla":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter t with cedilla":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter t with caron":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter t with caron":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter t with stroke":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter t with stroke":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter u with tilde":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin small letter u with tilde":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin capital letter u with macron":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter u with macron":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter u with breve":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter u with breve":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter u with ring above":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×‘×¢×ª עילית","Latin small letter u with ring above":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×‘×¢×ª עילית","Latin capital letter u with double acute":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin small letter u with double acute":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin capital letter u with ogonek":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter u with ogonek":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter w with circumflex":"w גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter w with circumflex":"w ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter y with circumflex":"y גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter y with circumflex":"y ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter y with diaeresis":"y גדולה ×œ×˜×™× ×™×ª ×¢× ×ומל×וט","Latin capital letter z with acute":"z גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter z with acute":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter z with dot above":"z גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter z with dot above":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter z with caron":"z גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter z with caron":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter long s":"s ×רוכה ×§×˜× ×” ×œ×˜×™× ×™×ª","Less-than sign":"סימן \"קטן מ-\"","Greater-than sign":"סימן \"גדול מ-\"","Less-than or equal to":"סימן \"קטן/שווה\"","Greater-than or equal to":"סימן \"גדול/שווה\"","En dash":"קו מפריד רגיל","Em dash":"קו מפריד ×רוך",Macron:"קו עילי",Overline:"קו עליון","Degree sign":"סימן מעלה","Minus sign":"סימן ×ž×™× ×•×¡","Plus-minus sign":"סימן פלוס-×ž×™× ×•×¡","Division sign":"סימן חילוק","Fraction slash":"לוכסן שבר","Multiplication sign":"סימן כפל","Latin small letter f with hook":"f ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×•",Integral:"××™× ×˜×’×¨×œ","N-ary summation":"×¡×›×•× N",Infinity:"××™× ×¡×•×£","Square root":"שורש ריבועי","Tilde operator":"×ופרטור טילדה","Approximately equal to":"שווה בקירוב ל-","Almost equal to":"כמעט שווה ל-","Not equal to":"×œ× ×©×•×•×” ל-","Identical to":"×–×”×” ל-","Element of":"שייך ל-","Not an element of":"×œ× ×©×™×™×š ל-","Contains as member":"מכיל כחבר","N-ary product":"תוצר N","Logical and":"\"וג×\" לוגי","Logical or":"\"×ו\" לוגי","Not sign":"סימן שלילה",Intersection:"חיתוך",Union:"×יחוד","Partial differential":"× ×’×–×¨×ª חלקית","For all":"לכל","There exists":"קיי×","Empty set":"הקבוצה הריקה",Nabla:"× ×‘×œ×”","Asterisk operator":"×ופרטור כוכבית","Proportional to":"יחס ישר",Angle:"זווית","Vulgar fraction one quarter":"שבר פשוט רבע","Vulgar fraction one half":"שבר פשוט חצי","Vulgar fraction three quarters":"שבר פשוט שלושה רבעי×","Single left-pointing angle quotation mark":"מירכ×ות מחודדות יחידות ×¤×•× ×•×ª שמ×לה","Single right-pointing angle quotation mark":"מירכ×ות מחודדות יחידות ×¤×•× ×•×ª ×™×ž×™× ×”","Left-pointing double angle quotation mark":"מירכ×ות מחודדות כפולות ×¤×•× ×•×ª שמ×לה","Right-pointing double angle quotation mark":"מירכ×ות מחודדות כפולות ×¤×•× ×•×ª ×™×ž×™× ×”","Left single quotation mark":"מירכ×ות שמ×ליות יחידות","Right single quotation mark":"מירכ×ות ×™×ž× ×™×•×ª יחידות","Left double quotation mark":"מירכ×ות שמ×ליות כפולות","Right double quotation mark":"מירכ×ות ×™×ž× ×™×•×ª כפולות","Single low-9 quotation mark":"מירכ×ות × ×ž×•×›×•×ª יחידות בצורת 9","Double low-9 quotation mark":"מירכ×ות × ×ž×•×›×•×ª כפולות בצורת 9","Inverted exclamation mark":"סימן קרי××” הפוך","Inverted question mark":"סימן ש×לה הפוך","Two dot leader":"מחבר שתי × ×§×•×“×•×ª","Horizontal ellipsis":"שלוש × ×§×•×“×•×ª ×ופקיות","Double dagger":"דקר כפול","Per mille sign":"סימן ×לפית","Per ten thousand sign":"סימן רבבית","Double exclamation mark":"סימן קרי××” כפול","Question exclamation mark":"סימן ש×לה/קרי××”","Exclamation question mark":"סימן קרי××”/ש×לה","Double question mark":"סימן ש×לה כפול","Copyright sign":"סימן זכויות יוצרי×","Registered sign":"סימן רשו×","Trade mark sign":"סימן סמל מסחרי","Section sign":"סימן סעיף","Paragraph sign":"סימן פסקה","Reversed paragraph sign":"סימן פסקה הפוך","Character categories":"קטגוריות תווי×",Styles:"×¡×’× ×•× ×•×ª","Multiple styles":"×¡×’× ×•× ×•×ª מרובי×","Block styles":"×¡×’× ×•× ×•×ª בלוקי×","Text styles":"עיצוב טקסט","Insert table":"×”×›× ×¡ טבלה","Header column":"עמודת כותרת","Insert column left":"×”×›× ×¡×ª עמודה משמ×ל","Insert column right":"×”×›× ×¡×ª עמודה מימן","Delete column":"מחיקת עמודה","Select column":"בחירת עמודה",Column:"עמודה","Header row":"שורת כותרת","Insert row below":"×”×›× ×” שורה מתחת","Insert row above":"×”×›× ×¡×ª שורה מעל","Delete row":"מחיקת שורה","Select row":"בחירת שורה",Row:"שורה","Merge cell up":"מיזוג ×ª× ×œ×ž×¢×œ×”","Merge cell right":"מיזוג ×ª× ×™×ž×™× ×”","Merge cell down":"מיזוג ×ª× ×œ×ž×˜×”","Merge cell left":"מיזוג ×ª× ×©×ž×לה","Split cell vertically":"פיצול ×ª× ×× ×›×™×ª","Split cell horizontally":"פיצול ×ª× ×ופקית","Merge cells":"מיזוג ת××™×","Table toolbar":"סרגל ×›×œ×™× ×©×œ טבלה","Table properties":"×פשרויות טבלה","Cell properties":"×פשרויות ת×",Border:"גבול",Style:"עיצוב",Width:"רוחב",Height:"גובה",Color:"צבע",Background:"רקע",Padding:"מרווח",Dimensions:"ממדי×","Table cell text alignment":"יישור טקסט של ×ª× ×˜×‘×œ×”",Alignment:"יישור","Horizontal text alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טקסט ×ופקי","Vertical text alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טקסט ×× ×›×™","Table alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טבלה",None:"לל×",Solid:"×חיד",Dotted:"×ž× ×•×§×“",Dashed:"מקווקו",Double:"כפול",Groove:"Groove",Ridge:"Ridge",Inset:"×¤× ×™×ž×™",Outset:"×—×™×¦×•× ×™","Align cell text to the left":"יישר ×ת טקסט ×”×ª× ×œ×©×ž×ל","Align cell text to the center":"יישר ×ת טקסט ×”×ª× ×œ×ž×¨×›×–","Align cell text to the right":"יישר ×ת טקסט ×”×ª× ×œ×™×ž×™×Ÿ","Justify cell text":"יישר ×ת טקסט ×”×ª× ×œ×©× ×™ הצדדי×","Align cell text to the top":"יישר ×ת טקסט ×”×ª× ×œ×—×œ×§ העליון","Align cell text to the middle":"יישר ×ת טקסט ×”×ª× ×œ×מצע","Align cell text to the bottom":"יישר ×ת טקסט ×”×ª× ×œ×—×œ×§ התחתון","Align table to the left":"יישור טבלה לשמ×ל","Center table":"מירכוז טבלה","Align table to the right":"יישור טבלה לימין","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"הצבע ×œ× ×—×•×§×™. × ×¡×• \"#FF0000\" ×ו \"rgb(255,0,0)\" ×ו \"×דו×\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"הערך ×œ× ×—×•×§×™. × ×¡×• \"10px\" ×ו \"2em\" ×ו פשוט \"2\".","Color picker":"בורר הצבעי×","Toggle caption off":"כבה ×ת הכיתוב","Toggle caption on":"הפעל ×ת הכיתוב","Enter table caption":"×”×–×™× ×• כיתוב טבלה","Rich Text Editor":"עורך טקסט עשיר","Editor editing area: %0":"×זור עריכה של העורך: %0","Edit block":"הגדרות בלוק","Click to edit block":"להקיש לעריכת בלוק","Drag to move":"לגרור כדי להזיז",Next:"הב×",Previous:"הקוד×","Editor toolbar":"סרגל הכלי×","Dropdown toolbar":"סרגל ×›×œ×™× × ×¤×ª×—",Black:"שחור","Dim grey":"×פור עמו×",Grey:"×פור","Light grey":"×פור בהיר",White:"לבן",Red:"×דו×",Orange:"כתו×",Yellow:"צהוב","Light green":"ירוק בהיר",Green:"ירוק",Aquamarine:"ירוק-כחלחל",Turquoise:"טורקיז","Light blue":"כחול בהיר",Blue:"כחול",Purple:"סגול","Editor block content toolbar":"סרגל ×›×œ×™× ×©×œ תוכן בלוק של העורך","Editor contextual toolbar":"סרגל ×›×œ×™× ×”×§×©×¨×™ של העורך",HEX:"HEX",Accept:"קבל","No results found":"×œ× × ×ž×¦×ו תוצ×ות","No searchable items":"×ין ×¤×¨×™×˜×™× × ×™×ª× ×™× ×œ×—×™×¤×•×©","Editor dialog":"חלון דו-שיח של העורך",Close:"סגור",Undo:"ביטול",Redo:"ביצוע מחדש","Upload in progress":"העל××” מתבצעת","Widget toolbar":"סרגל יישומון","Insert paragraph before block":"הוספת פסקה מעל","Insert paragraph after block":"הוספת פסקה מתחת","Press Enter to type after or press Shift + Enter to type before the widget":"לחץ Enter כדי להקליד ×œ×¤× ×™ היישומון ×ו Shift + Enter כדי להקליד ×חריו","Words: %0":"מס' מילי×: %0","Characters: %0":"מס' תווי×: %0"} );l.getPluralForm=function(n){return (n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['he'] = d['he'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"יישור לשמ×ל","Align right":"יישור לימין","Align center":"יישור ב×מצע",Justify:"מרכוז גבולות","Text alignment":"יישור טקסט","Text alignment toolbar":"סרגל ×›×œ×™× ×™×™×©×•×¨ טקסט",Bold:"מודגש",Italic:"× ×˜×•×™",Underline:"קו תחתון",Code:"קוד",Strikethrough:"קו חוצה",Subscript:"כתב תחתי",Superscript:"כתב עילי","Block quote":"בלוק ציטוט","Insert code block":"הוספת קטע קוד","Plain text":"טקסט פשוט",Cancel:"ביטול",Clear:"×œ× ×§×•×ª","Remove color":"מחיקת צבע","Restore default":"שחזור ברירת מחדל",Save:"שמירה","Show more items":"הצג ×¤×¨×™×˜×™× × ×•×¡×¤×™×","%0 of %1":"%0 מתוך %1","Cannot upload file:":"×œ× × ×™×ª×Ÿ להעלות ×ת הקובץ הב×:","Rich Text Editor. Editing area: %0":"עורך פורמט טקסט עשיר. ×זור עריכה: %0","Insert with file manager":"הוספה ×¢× ×ž× ×”×œ הקבצי×","Replace with file manager":"החלפה ×¢× ×ž× ×”×œ הקבצי×","Insert image with file manager":"הוספת ×ª×ž×•× ×” ×¢× ×ž× ×”×œ הקבצי×","Replace image with file manager":"החלפת ×ª×ž×•× ×” ×¢× ×ž× ×”×œ הקבצי×","Find and replace":"חיפוש והחלפה","Find in text…":"חיפוש בטקסט",Find:"חיפוש","Previous result":"התוצ××” הקודמת","Next result":"התוצ××” הב××”",Replace:"החלף","Replace all":"החלף הכל","Match case":"הת×× ×¨×™×©×™×•×ª","Whole words only":"×ž×™×œ×™× ×©×œ×ž×•×ª בלבד","Replace with…":"החלף ב…","Text to find must not be empty.":"הטקסט לחיפוש ×œ× ×™×›×•×œ להיות ריק.","Tip: Find some text first in order to replace it.":"טיפ: מצ×ו תחילה טקסט כדי להחליף ×ותו.","Advanced options":"×פשרויות מתקדמות","Font Size":"גודל טקסט",Tiny:"זעיר",Small:"קטן",Big:"גדול",Huge:"×¢× ×§","Font Family":"משפחת ×’×•×¤× ×™×",Default:"ברירת מחדל","Font Color":"צבע גופן","Font Background Color":"צבע הרקע של הגופן","Document colors":"צבעי המסמך",Paragraph:"פיסקה",Heading:"כותרת","Choose heading":"בחר סוג כותרת","Heading 1":"כותרת 1","Heading 2":"כותרת 2","Heading 3":"כותרת 3","Heading 4":"כותרת 4","Heading 5":"כותרת 5","Heading 6":"כותרת 6","Type your title":"הזן כותרת","Type or paste your content here.":"הזן ×ו הדבק ×ת התוכן ×›×ן","Horizontal line":"קו ×ופקי","HTML object":"×ובייקט HTML","Increase indent":"הגדלת ×”×–×—×”","Decrease indent":"×”×§×˜× ×ª ×”×–×—×”",Unlink:"ביטול קישור",Link:"קישור","Link URL":"קישור כתובת ×תר","Link image":"קישור ×ª×ž×•× ×”","Edit link":"עריכת קישור","Open link in new tab":"פתח קישור בכרטיסייה חדשה","This link has no URL":"לקישור ×–×” ×ין כתובת ×תר","Open in a new tab":"פתח בכרטיסייה חדשה",Downloadable:"× ×™×ª×Ÿ להורדה","Numbered List":"רשימה ממוספרת","Bulleted List":"רשימה ×ž× ×•×§×“×ª","To-do List":"רשימת מטלות","Bulleted list styles toolbar":"סרגל ×›×œ×™× ×©×œ ×¡×’× ×•× ×•×ª רשימה ×¢× ×ª×‘×œ×™×˜×™×","Numbered list styles toolbar":"סרגל ×›×œ×™× ×©×œ ×¡×’× ×•× ×•×ª רשימה ממוספרת","Toggle the disc list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת דיסקות","Toggle the circle list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת מעגלי×","Toggle the square list style":"החלף מצב ×¡×’× ×•×Ÿ רשימת ריבועי×","Toggle the decimal list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢×©×¨×•× ×™×ª","Toggle the decimal with leading zero list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢×©×¨×•× ×™×ª ×¢× ×פס מוביל","Toggle the lower–roman list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×¡×¤×¨×•×ª רומיות ×§×˜× ×•×ª","Toggle the upper–roman list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×¡×¤×¨×•×ª רומיות גדולות","Toggle the lower–latin list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×ותיות ×œ×˜×™× ×™×•×ª ×§×˜× ×•×ª","Toggle the upper–latin list style":"החלף מצב ×¡×’× ×•×Ÿ רשימה ×¢× ×ותיות ×œ×˜×™× ×™×•×ª גדולות",Disc:"עיגול מל×",Circle:"עיגול",Square:"ריבוע",Decimal:"×¢×©×¨×•× ×™×ª","Decimal with leading zero":"×¢×©×¨×•× ×™×ª ×¢× ×פס מוביל","Lower–roman":"×ותיות רומיות ×§×˜× ×•×ª","Upper-roman":"×ותיות רומיות גדולות","Lower-latin":"×ותיות ×œ×˜×™× ×™×•×ª ×§×˜× ×•×ª","Upper-latin":"×ותיות ×œ×˜×™× ×™×•×ª גדולות","List properties":"×פשרויות רשימה","Start at":"התחל ב-","Start index must be greater than 0.":"××™× ×“×§×¡ ההתחלה חייב להיות גדול מ-0.","Reversed order":"סדר הפוך","Remove Format":"הסרת עיצוב","Select all":"בחר הכל","Show blocks":"הצג גושי×",Source:"מקור","Special characters":"×ª×•×•×™× ×ž×™×•×—×“×™×",All:"כל",Arrows:"חיצי×",Currency:"מטבע",Latin:"×œ×˜×™× ×™×ª",Mathematical:"מתמטי",Text:"טקסט","leftwards simple arrow":"×—×¥ פשוט שמ×לה","rightwards simple arrow":"×—×¥ פשוט ×™×ž×™× ×”","upwards simple arrow":"×—×¥ פשוט כלפי מעלה","downwards simple arrow":"×—×¥ פשוט כלפי מטה","leftwards double arrow":"×—×¥ כפול שמ×לה","rightwards double arrow":"×—×¥ כפול ×™×ž×™× ×”","upwards double arrow":"×—×¥ כפול למעלה","downwards double arrow":"×—×¥ כפול למטה","leftwards dashed arrow":"×—×¥ מקווקו שמ×לה","rightwards dashed arrow":"×—×¥ מקווקו ×™×ž×™× ×”","upwards dashed arrow":"×—×¥ מקווקו למעלה","downwards dashed arrow":"×—×¥ מקווקו למטה","leftwards arrow to bar":"×—×¥ שמ×לה לפס","rightwards arrow to bar":"×—×¥ ×™×ž×™× ×” לפס","upwards arrow to bar":"×—×¥ למעלה לפס","downwards arrow to bar":"×—×¥ למטה לפס","up down arrow with base":"×—×¥ למעלה ולמטה ×¢× ×‘×¡×™×¡","back with leftwards arrow above":"\"back\" ומעליו ×—×¥ שמ×לה","end with leftwards arrow above":"\"end\" ומעליו ×—×¥ שמ×לה","on with exclamation mark with left right arrow above":"\"on\" ×¢× ×¡×™×ž×Ÿ קרי××” ומעליו ×—×¥ שמ×לה ×•×™×ž×™× ×”","soon with rightwards arrow above":"\"soon\" ומעליו ×—×¥ ×™×ž×™× ×”","top with upwards arrow above":"\"top\" ומעליו ×—×¥ למעלה","Dollar sign":"סמל דולר","Euro sign":"סמל ×ירו","Yen sign":"סמל ין","Pound sign":"סמל ליש\"ט","Cent sign":"סמל ×¡× ×˜","Euro-currency sign":"סמל יחידת מטבע ×ירופ×ית","Colon sign":"סמל קולון","Cruzeiro sign":"סמל קרוזיירו","French franc sign":"סמל ×¤×¨× ×§ צרפתי","Lira sign":"סמל לירה","Currency sign":"סמל מטבע","Bitcoin sign":"סמל ביטקוין","Mill sign":"סמל מיל","Naira sign":"סמל × ×ירה","Peseta sign":"סמל פסטה","Rupee sign":"סמל רופי","Won sign":"סמל וון","New sheqel sign":"סמל שקל חדש","Dong sign":"סמל ×“×•× ×’","Kip sign":"סמל קיפ","Tugrik sign":"סמל טוגרוג","Drachma sign":"סמל דרכמה","German penny sign":"סמל ×¤× ×™ ×’×¨×ž× ×™","Peso sign":"סמל פסו","Guarani sign":"סמל גו××¨× ×™","Austral sign":"סמל ××וסטרל","Hryvnia sign":"סמל ×”×¨×™×‘× ×™×”","Cedi sign":"סמל סדי","Livre tournois sign":"סמל ליבר ×˜×•×¨× ×•××”","Spesmilo sign":"סמל ספסמילו","Tenge sign":"סמל ×˜× ×’×”","Indian rupee sign":"סמל רופי הודי","Turkish lira sign":"סמל לירה טורקית","Nordic mark sign":"סמל מ×רק × ×•×¨×“×™","Manat sign":"סמל מ×× ×ט","Ruble sign":"סמל רובל","Latin capital letter a with macron":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter a with macron":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter a with breve":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter a with breve":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter a with ogonek":"a גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter a with ogonek":"a ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter c with acute":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter c with acute":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter c with circumflex":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter c with circumflex":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter c with dot above":"c גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter c with dot above":"c ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter c with caron":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter c with caron":"c גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter d with caron":"d גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter d with caron":"d ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter d with stroke":"d גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter d with stroke":"d ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter e with macron":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter e with macron":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter e with breve":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter e with breve":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter e with dot above":"e גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter e with dot above":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter e with ogonek":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter e with ogonek":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter e with caron":"e גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter e with caron":"e ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter g with circumflex":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter g with circumflex":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter g with breve":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter g with breve":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter g with dot above":"g גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter g with dot above":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter g with cedilla":"g גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter g with cedilla":"g ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter h with circumflex":"h גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter h with circumflex":"h ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter h with stroke":"h גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter h with stroke":"h ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter i with tilde":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin small letter i with tilde":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin capital letter i with macron":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter i with macron":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter i with breve":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter i with breve":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter i with ogonek":"i גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter i with ogonek":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter i with dot above":"i גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter dotless i":"i ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital ligature ij":"ליגטורה גדולה ×œ×˜×™× ×™×ª ij","Latin small ligature ij":"ליגטורה ×§×˜× ×” ×œ×˜×™× ×™×ª ij","Latin capital letter j with circumflex":"j גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter j with circumflex":"j ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter k with cedilla":"k גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter k with cedilla":"k ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter kra":"קרה ×§×˜× ×” ×œ×˜×™× ×™×ª","Latin capital letter l with acute":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter l with acute":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter l with cedilla":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter l with cedilla":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter l with caron":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter l with caron":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter l with middle dot":"l גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” ×מצעית","Latin small letter l with middle dot":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” ×מצעית","Latin capital letter l with stroke":"l גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter l with stroke":"l ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter n with acute":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter n with acute":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter n with cedilla":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter n with cedilla":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter n with caron":"n גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter n with caron":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter n preceded by apostrophe":"n ×§×˜× ×” ×œ×˜×™× ×™×ª ×•×œ×¤× ×™×” ×פוסטרוף","Latin capital letter eng":"×× ×’ גדולה ×œ×˜×™× ×™×ª","Latin small letter eng":"×× ×’ ×§×˜× ×” ×œ×˜×™× ×™×ª","Latin capital letter o with macron":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter o with macron":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter o with breve":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter o with breve":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter o with double acute":"o גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin small letter o with double acute":"o ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin capital ligature oe":"ליגטורה גדולה ×œ×˜×™× ×™×ª oe","Latin small ligature oe":"ליגטורה ×§×˜× ×” ×œ×˜×™× ×™×ª oe","Latin capital letter r with acute":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter r with acute":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter r with cedilla":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter r with cedilla":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter r with caron":"r גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter r with caron":"r ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter s with acute":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter s with acute":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter s with circumflex":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter s with circumflex":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter s with cedilla":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter s with cedilla":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter s with caron":"s גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter s with caron":"s ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter t with cedilla":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin small letter t with cedilla":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×“×™×œ×™×”","Latin capital letter t with caron":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter t with caron":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin capital letter t with stroke":"t גדולה ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin small letter t with stroke":"t ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×•","Latin capital letter u with tilde":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin small letter u with tilde":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×™×œ×“×”","Latin capital letter u with macron":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin small letter u with macron":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×§×• עילי","Latin capital letter u with breve":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin small letter u with breve":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×‘×¨×•×•×”","Latin capital letter u with ring above":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×˜×‘×¢×ª עילית","Latin small letter u with ring above":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×˜×‘×¢×ª עילית","Latin capital letter u with double acute":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin small letter u with double acute":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי כפול","Latin capital letter u with ogonek":"u גדולה ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin small letter u with ogonek":"u ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×–× ×‘×•×Ÿ","Latin capital letter w with circumflex":"w גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter w with circumflex":"w ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter y with circumflex":"y גדולה ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin small letter y with circumflex":"y ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×’×’","Latin capital letter y with diaeresis":"y גדולה ×œ×˜×™× ×™×ª ×¢× ×ומל×וט","Latin capital letter z with acute":"z גדולה ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin small letter z with acute":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×¡×™×ž×Ÿ הטעמה עילי","Latin capital letter z with dot above":"z גדולה ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin small letter z with dot above":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× × ×§×•×“×” עילית","Latin capital letter z with caron":"z גדולה ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter z with caron":"z ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×™ קטן","Latin small letter long s":"s ×רוכה ×§×˜× ×” ×œ×˜×™× ×™×ª","Less-than sign":"סימן \"קטן מ-\"","Greater-than sign":"סימן \"גדול מ-\"","Less-than or equal to":"סימן \"קטן/שווה\"","Greater-than or equal to":"סימן \"גדול/שווה\"","En dash":"קו מפריד רגיל","Em dash":"קו מפריד ×רוך",Macron:"קו עילי",Overline:"קו עליון","Degree sign":"סימן מעלה","Minus sign":"סימן ×ž×™× ×•×¡","Plus-minus sign":"סימן פלוס-×ž×™× ×•×¡","Division sign":"סימן חילוק","Fraction slash":"לוכסן שבר","Multiplication sign":"סימן כפל","Latin small letter f with hook":"f ×§×˜× ×” ×œ×˜×™× ×™×ª ×¢× ×•×•",Integral:"××™× ×˜×’×¨×œ","N-ary summation":"×¡×›×•× N",Infinity:"××™× ×¡×•×£","Square root":"שורש ריבועי","Tilde operator":"×ופרטור טילדה","Approximately equal to":"שווה בקירוב ל-","Almost equal to":"כמעט שווה ל-","Not equal to":"×œ× ×©×•×•×” ל-","Identical to":"×–×”×” ל-","Element of":"שייך ל-","Not an element of":"×œ× ×©×™×™×š ל-","Contains as member":"מכיל כחבר","N-ary product":"תוצר N","Logical and":"\"וג×\" לוגי","Logical or":"\"×ו\" לוגי","Not sign":"סימן שלילה",Intersection:"חיתוך",Union:"×יחוד","Partial differential":"× ×’×–×¨×ª חלקית","For all":"לכל","There exists":"קיי×","Empty set":"הקבוצה הריקה",Nabla:"× ×‘×œ×”","Asterisk operator":"×ופרטור כוכבית","Proportional to":"יחס ישר",Angle:"זווית","Vulgar fraction one quarter":"שבר פשוט רבע","Vulgar fraction one half":"שבר פשוט חצי","Vulgar fraction three quarters":"שבר פשוט שלושה רבעי×","Single left-pointing angle quotation mark":"מירכ×ות מחודדות יחידות ×¤×•× ×•×ª שמ×לה","Single right-pointing angle quotation mark":"מירכ×ות מחודדות יחידות ×¤×•× ×•×ª ×™×ž×™× ×”","Left-pointing double angle quotation mark":"מירכ×ות מחודדות כפולות ×¤×•× ×•×ª שמ×לה","Right-pointing double angle quotation mark":"מירכ×ות מחודדות כפולות ×¤×•× ×•×ª ×™×ž×™× ×”","Left single quotation mark":"מירכ×ות שמ×ליות יחידות","Right single quotation mark":"מירכ×ות ×™×ž× ×™×•×ª יחידות","Left double quotation mark":"מירכ×ות שמ×ליות כפולות","Right double quotation mark":"מירכ×ות ×™×ž× ×™×•×ª כפולות","Single low-9 quotation mark":"מירכ×ות × ×ž×•×›×•×ª יחידות בצורת 9","Double low-9 quotation mark":"מירכ×ות × ×ž×•×›×•×ª כפולות בצורת 9","Inverted exclamation mark":"סימן קרי××” הפוך","Inverted question mark":"סימן ש×לה הפוך","Two dot leader":"מחבר שתי × ×§×•×“×•×ª","Horizontal ellipsis":"שלוש × ×§×•×“×•×ª ×ופקיות","Double dagger":"דקר כפול","Per mille sign":"סימן ×לפית","Per ten thousand sign":"סימן רבבית","Double exclamation mark":"סימן קרי××” כפול","Question exclamation mark":"סימן ש×לה/קרי××”","Exclamation question mark":"סימן קרי××”/ש×לה","Double question mark":"סימן ש×לה כפול","Copyright sign":"סימן זכויות יוצרי×","Registered sign":"סימן רשו×","Trade mark sign":"סימן סמל מסחרי","Section sign":"סימן סעיף","Paragraph sign":"סימן פסקה","Reversed paragraph sign":"סימן פסקה הפוך","Character categories":"קטגוריות תווי×",Styles:"×¡×’× ×•× ×•×ª","Multiple styles":"×¡×’× ×•× ×•×ª מרובי×","Block styles":"×¡×’× ×•× ×•×ª בלוקי×","Text styles":"עיצוב טקסט","Insert table":"×”×›× ×¡ טבלה","Header column":"עמודת כותרת","Insert column left":"×”×›× ×¡×ª עמודה משמ×ל","Insert column right":"×”×›× ×¡×ª עמודה מימן","Delete column":"מחיקת עמודה","Select column":"בחירת עמודה",Column:"עמודה","Header row":"שורת כותרת","Insert row below":"×”×›× ×” שורה מתחת","Insert row above":"×”×›× ×¡×ª שורה מעל","Delete row":"מחיקת שורה","Select row":"בחירת שורה",Row:"שורה","Merge cell up":"מיזוג ×ª× ×œ×ž×¢×œ×”","Merge cell right":"מיזוג ×ª× ×™×ž×™× ×”","Merge cell down":"מיזוג ×ª× ×œ×ž×˜×”","Merge cell left":"מיזוג ×ª× ×©×ž×לה","Split cell vertically":"פיצול ×ª× ×× ×›×™×ª","Split cell horizontally":"פיצול ×ª× ×ופקית","Merge cells":"מיזוג ת××™×","Table toolbar":"סרגל ×›×œ×™× ×©×œ טבלה","Table properties":"×פשרויות טבלה","Cell properties":"×פשרויות ת×",Border:"גבול",Style:"עיצוב",Width:"רוחב",Height:"גובה",Color:"צבע",Background:"רקע",Padding:"מרווח",Dimensions:"ממדי×","Table cell text alignment":"יישור טקסט של ×ª× ×˜×‘×œ×”",Alignment:"יישור","Horizontal text alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טקסט ×ופקי","Vertical text alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טקסט ×× ×›×™","Table alignment toolbar":"סרגל ×›×œ×™× ×©×œ יישור טבלה",None:"לל×",Solid:"×חיד",Dotted:"×ž× ×•×§×“",Dashed:"מקווקו",Double:"כפול",Groove:"Groove",Ridge:"Ridge",Inset:"×¤× ×™×ž×™",Outset:"×—×™×¦×•× ×™","Align cell text to the left":"יישר ×ת טקסט ×”×ª× ×œ×©×ž×ל","Align cell text to the center":"יישר ×ת טקסט ×”×ª× ×œ×ž×¨×›×–","Align cell text to the right":"יישר ×ת טקסט ×”×ª× ×œ×™×ž×™×Ÿ","Justify cell text":"יישר ×ת טקסט ×”×ª× ×œ×©× ×™ הצדדי×","Align cell text to the top":"יישר ×ת טקסט ×”×ª× ×œ×—×œ×§ העליון","Align cell text to the middle":"יישר ×ת טקסט ×”×ª× ×œ×מצע","Align cell text to the bottom":"יישר ×ת טקסט ×”×ª× ×œ×—×œ×§ התחתון","Align table to the left":"יישור טבלה לשמ×ל","Center table":"מירכוז טבלה","Align table to the right":"יישור טבלה לימין","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"הצבע ×œ× ×—×•×§×™. × ×¡×• \"#FF0000\" ×ו \"rgb(255,0,0)\" ×ו \"×דו×\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"הערך ×œ× ×—×•×§×™. × ×¡×• \"10px\" ×ו \"2em\" ×ו פשוט \"2\".","Color picker":"בורר הצבעי×","Toggle caption off":"כבה ×ת הכיתוב","Toggle caption on":"הפעל ×ת הכיתוב","Enter table caption":"×”×–×™× ×• כיתוב טבלה","Rich Text Editor":"עורך טקסט עשיר","Editor editing area: %0":"×זור עריכה של העורך: %0","Edit block":"הגדרות בלוק","Click to edit block":"להקיש לעריכת בלוק","Drag to move":"לגרור כדי להזיז",Next:"הב×",Previous:"הקוד×","Editor toolbar":"סרגל הכלי×","Dropdown toolbar":"סרגל ×›×œ×™× × ×¤×ª×—",Black:"שחור","Dim grey":"×פור עמו×",Grey:"×פור","Light grey":"×פור בהיר",White:"לבן",Red:"×דו×",Orange:"כתו×",Yellow:"צהוב","Light green":"ירוק בהיר",Green:"ירוק",Aquamarine:"ירוק-כחלחל",Turquoise:"טורקיז","Light blue":"כחול בהיר",Blue:"כחול",Purple:"סגול","Editor block content toolbar":"סרגל ×›×œ×™× ×©×œ תוכן בלוק של העורך","Editor contextual toolbar":"סרגל ×›×œ×™× ×”×§×©×¨×™ של העורך",HEX:"HEX",Accept:"קבל","No results found":"×œ× × ×ž×¦×ו תוצ×ות","No searchable items":"×ין ×¤×¨×™×˜×™× × ×™×ª× ×™× ×œ×—×™×¤×•×©","Editor dialog":"חלון דו-שיח של העורך",Close:"סגור",Undo:"ביטול",Redo:"ביצוע מחדש","Upload in progress":"העל××” מתבצעת","Widget toolbar":"סרגל יישומון","Insert paragraph before block":"הוספת פסקה מעל","Insert paragraph after block":"הוספת פסקה מתחת","Press Enter to type after or press Shift + Enter to type before the widget":"לחץ Enter כדי להקליד ×œ×¤× ×™ היישומון ×ו Shift + Enter כדי להקליד ×חריו","Words: %0":"מס' מילי×: %0","Characters: %0":"מס' תווי×: %0"} );l.getPluralForm=function(n){return (n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hi.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hi.js index 26d288e5ceef45a6c7e93581eeb7af49a0d6f31c..e4ff1a84909e8e9608421c3edef960e04b1bc8b4 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hi.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hi.js @@ -1 +1 @@ -(function(d){ const l = d['hi'] = d['hi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"साफ़ करें","Remove color":"Remove color","Restore default":"डिफ़ॉलà¥à¤Ÿ रिसà¥à¤Ÿà¥‹à¤° कर दें",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"रिच टेकà¥à¤¸à¥à¤Ÿ à¤à¤¡à¤¿à¤Ÿà¤°à¥¤ संपादन कà¥à¤·à¥‡à¤¤à¥à¤°: %0","Insert with file manager":"फ़ाइल मैनेजर से इनà¥à¤¸à¤°à¥à¤Ÿ करें","Replace with file manager":"फ़ाइल मैनेजर से बदलें","Insert image with file manager":"फ़ाइल मैनेजर से इमेज इनà¥à¤¸à¤°à¥à¤Ÿ करें","Replace image with file manager":"इमेज को फ़ाइल मैनेजर से बदलें","Find and replace":"ढूà¤à¤¢à¥‡à¤‚ और बदलें","Find in text…":"टेकà¥à¤¸à¥à¤Ÿ में ढूंढें…",Find:"ढूà¤à¤¢à¥‡à¤‚","Previous result":"पिछला रेज़लà¥à¤Ÿ","Next result":"अगला रेज़लà¥à¤Ÿ",Replace:"बदलें","Replace all":"सब बदल दें","Match case":"केस मैच करें","Whole words only":"केवल पूरे शबà¥à¤¦","Replace with…":"...के साथ बदलें","Text to find must not be empty.":"खोजने के लिठटेकà¥à¤¸à¥à¤Ÿ खाली नहीं होना चाहिà¤.","Tip: Find some text first in order to replace it.":"टिप:उसे बदलने के लिठपहले कà¥à¤› वह टेकà¥à¤¸à¥à¤Ÿ खोजें.","Advanced options":"à¤à¤¡à¤µà¤¾à¤‚सà¥à¤¡ विकलà¥à¤ª",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤² वसà¥à¤¤à¥","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"पà¥à¤°à¥‰à¤ªà¤°à¥à¤Ÿà¥€à¥› को लिसà¥à¤Ÿ करें","Start at":"शà¥à¤°à¥‚ करे इस पर","Start index must be greater than 0.":"सà¥à¤Ÿà¤¾à¤°à¥à¤Ÿ इंडेकà¥à¤¸ 0 से अधिक होना चाहिà¤.","Reversed order":"रिवरà¥à¤¸ किया गया कà¥à¤°à¤®","Remove Format":"Remove Format","Select all":"Select all","Show blocks":"बà¥à¤²à¥‰à¤• दिखाà¤à¤‚",Source:"सोरà¥à¤¸","Special characters":"Special characters",All:"सà¤à¥€",Arrows:"à¤à¤°à¥‹à¤œ",Currency:"करेंसी",Latin:"लैटिन",Mathematical:"मैथमैटिकल",Text:"टेकà¥à¤¸à¥à¤Ÿ","leftwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ बाà¤à¤‚ तरफ","rightwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ दाà¤à¤‚ तरफ","upwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ ऊपर की तरफ","downwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ नीचे की तरफ","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Multiple styles":"कई सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Block styles":"बà¥à¤²à¥‰à¤• सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Text styles":"टेकà¥à¤¸à¥à¤Ÿ सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Color",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Center table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Color picker","Toggle caption off":"कैपà¥à¤¶à¤¨ को टॉगल बंद करें","Toggle caption on":"कैपà¥à¤¶à¤¨ का टॉगल ऑन करें","Enter table caption":"टेबल कैपà¥à¤¶à¤¨ à¤à¤‚टर करें","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"संपादक संपादन कà¥à¤·à¥‡à¤¤à¥à¤°: %0","Edit block":"Edit block","Click to edit block":"बà¥à¤²à¥‰à¤• à¤à¤¡à¤¿à¤Ÿ करने के लिठकà¥à¤²à¤¿à¤• करें","Drag to move":"मूव करने के लिठडà¥à¤°à¥ˆà¤— करें",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"à¤à¤¡à¥€à¤Ÿà¤° बà¥à¤²à¥‰à¤• कंटेंट टूलबार","Editor contextual toolbar":"à¤à¤¡à¥€à¤Ÿà¤° कॉनà¥à¤Ÿà¥‡à¤•à¥à¤¸à¥à¤Ÿà¥‚अल टूलबार",HEX:"HEX",Accept:"सà¥à¤µà¥€à¤•à¤¾à¤° करें","No results found":"कोई रिजलà¥à¤Ÿ नहीं","No searchable items":"कोई खोजने लायक आइटम नहीं","Editor dialog":"à¤à¤¡à¤¿à¤Ÿà¤° डायलॉग",Close:"बंद करें",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"विजेट के बाद टाइप करने के लिठà¤à¤‚टर दबाà¤à¤‚ या पहले टाइप करने के लिठशिफà¥à¤Ÿ+à¤à¤‚टर दबाà¤à¤‚","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['hi'] = d['hi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Align left","Align right":"Align right","Align center":"Align center",Justify:"Justify","Text alignment":"Text alignment","Text alignment toolbar":"Text alignment toolbar",Bold:"Bold",Italic:"Italic",Underline:"Underline",Code:"Code",Strikethrough:"Strikethrough",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Block quote","Insert code block":"Insert code block","Plain text":"Plain text",Cancel:"Cancel",Clear:"साफ़ करें","Remove color":"Remove color","Restore default":"डिफ़ॉलà¥à¤Ÿ रिसà¥à¤Ÿà¥‹à¤° कर दें",Save:"Save","Show more items":"Show more items","%0 of %1":"%0 of %1","Cannot upload file:":"Cannot upload file:","Rich Text Editor. Editing area: %0":"रिच टेकà¥à¤¸à¥à¤Ÿ à¤à¤¡à¤¿à¤Ÿà¤°à¥¤ संपादन कà¥à¤·à¥‡à¤¤à¥à¤°: %0","Insert with file manager":"फ़ाइल मैनेजर से इनà¥à¤¸à¤°à¥à¤Ÿ करें","Replace with file manager":"फ़ाइल मैनेजर से बदलें","Insert image with file manager":"फ़ाइल मैनेजर से इमेज इनà¥à¤¸à¤°à¥à¤Ÿ करें","Replace image with file manager":"इमेज को फ़ाइल मैनेजर से बदलें","Find and replace":"ढूà¤à¤¢à¥‡à¤‚ और बदलें","Find in text…":"टेकà¥à¤¸à¥à¤Ÿ में ढूंढें…",Find:"ढूà¤à¤¢à¥‡à¤‚","Previous result":"पिछला रेज़लà¥à¤Ÿ","Next result":"अगला रेज़लà¥à¤Ÿ",Replace:"बदलें","Replace all":"सब बदल दें","Match case":"केस मैच करें","Whole words only":"केवल पूरे शबà¥à¤¦","Replace with…":"...के साथ बदलें","Text to find must not be empty.":"खोजने के लिठटेकà¥à¤¸à¥à¤Ÿ खाली नहीं होना चाहिà¤.","Tip: Find some text first in order to replace it.":"टिप:उसे बदलने के लिठपहले कà¥à¤› वह टेकà¥à¤¸à¥à¤Ÿ खोजें.","Advanced options":"à¤à¤¡à¤µà¤¾à¤‚सà¥à¤¡ विकलà¥à¤ª","Font Size":"Font Size",Tiny:"Tiny",Small:"Small",Big:"Big",Huge:"Huge","Font Family":"Font Family",Default:"Default","Font Color":"Font Color","Font Background Color":"Font Background Color","Document colors":"Document colors",Paragraph:"Paragraph",Heading:"Heading","Choose heading":"Choose heading","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4","Heading 5":"Heading 5","Heading 6":"Heading 6","Type your title":"Type your title","Type or paste your content here.":"Type or paste your content here.","Horizontal line":"Horizontal line","HTML object":"à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤² वसà¥à¤¤à¥","Increase indent":"Increase indent","Decrease indent":"Decrease indent",Unlink:"Unlink",Link:"Link","Link URL":"Link URL","Link image":"Link image","Edit link":"Edit link","Open link in new tab":"Open link in new tab","This link has no URL":"This link has no URL","Open in a new tab":"Open in a new tab",Downloadable:"Downloadable","Numbered List":"Numbered List","Bulleted List":"Bulleted List","To-do List":"To-do List","Bulleted list styles toolbar":"Bulleted list styles toolbar","Numbered list styles toolbar":"Numbered list styles toolbar","Toggle the disc list style":"Toggle the disc list style","Toggle the circle list style":"Toggle the circle list style","Toggle the square list style":"Toggle the square list style","Toggle the decimal list style":"Toggle the decimal list style","Toggle the decimal with leading zero list style":"Toggle the decimal with leading zero list style","Toggle the lower–roman list style":"Toggle the lower–roman list style","Toggle the upper–roman list style":"Toggle the upper–roman list style","Toggle the lower–latin list style":"Toggle the lower–latin list style","Toggle the upper–latin list style":"Toggle the upper–latin list style",Disc:"Disc",Circle:"Circle",Square:"Square",Decimal:"Decimal","Decimal with leading zero":"Decimal with leading zero","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"पà¥à¤°à¥‰à¤ªà¤°à¥à¤Ÿà¥€à¥› को लिसà¥à¤Ÿ करें","Start at":"शà¥à¤°à¥‚ करे इस पर","Start index must be greater than 0.":"सà¥à¤Ÿà¤¾à¤°à¥à¤Ÿ इंडेकà¥à¤¸ 0 से अधिक होना चाहिà¤.","Reversed order":"रिवरà¥à¤¸ किया गया कà¥à¤°à¤®","Remove Format":"Remove Format","Select all":"Select all","Show blocks":"बà¥à¤²à¥‰à¤• दिखाà¤à¤‚",Source:"सोरà¥à¤¸","Special characters":"Special characters",All:"सà¤à¥€",Arrows:"à¤à¤°à¥‹à¤œ",Currency:"करेंसी",Latin:"लैटिन",Mathematical:"मैथमैटिकल",Text:"टेकà¥à¤¸à¥à¤Ÿ","leftwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ बाà¤à¤‚ तरफ","rightwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ दाà¤à¤‚ तरफ","upwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ ऊपर की तरफ","downwards simple arrow":"सिमà¥à¤ªà¤² à¤à¤°à¥‹ नीचे की तरफ","leftwards double arrow":"leftwards double arrow","rightwards double arrow":"rightwards double arrow","upwards double arrow":"upwards double arrow","downwards double arrow":"downwards double arrow","leftwards dashed arrow":"leftwards dashed arrow","rightwards dashed arrow":"rightwards dashed arrow","upwards dashed arrow":"upwards dashed arrow","downwards dashed arrow":"downwards dashed arrow","leftwards arrow to bar":"leftwards arrow to bar","rightwards arrow to bar":"rightwards arrow to bar","upwards arrow to bar":"upwards arrow to bar","downwards arrow to bar":"downwards arrow to bar","up down arrow with base":"up down arrow with base","back with leftwards arrow above":"back with leftwards arrow above","end with leftwards arrow above":"end with leftwards arrow above","on with exclamation mark with left right arrow above":"on with exclamation mark with left right arrow above","soon with rightwards arrow above":"soon with rightwards arrow above","top with upwards arrow above":"top with upwards arrow above","Dollar sign":"Dollar sign","Euro sign":"Euro sign","Yen sign":"Yen sign","Pound sign":"Pound sign","Cent sign":"Cent sign","Euro-currency sign":"Euro-currency sign","Colon sign":"Colon sign","Cruzeiro sign":"Cruzeiro sign","French franc sign":"French franc sign","Lira sign":"Lira sign","Currency sign":"Currency sign","Bitcoin sign":"Bitcoin 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 sign":"German penny sign","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":"Ruble sign","Latin capital letter a with macron":"Latin capital letter a with macron","Latin small letter a with macron":"Latin small letter a with macron","Latin capital letter a with breve":"Latin capital letter a with breve","Latin small letter a with breve":"Latin small letter a with breve","Latin capital letter a with ogonek":"Latin capital letter a with ogonek","Latin small letter a with ogonek":"Latin small letter a with ogonek","Latin capital letter c with acute":"Latin capital letter c with acute","Latin small letter c with acute":"Latin small letter c with acute","Latin capital letter c with circumflex":"Latin capital letter c with circumflex","Latin small letter c with circumflex":"Latin small letter c with circumflex","Latin capital letter c with dot above":"Latin capital letter c with dot above","Latin small letter c with dot above":"Latin small letter c with dot above","Latin capital letter c with caron":"Latin capital letter c with caron","Latin small letter c with caron":"Latin small letter c with caron","Latin capital letter d with caron":"Latin capital letter d with caron","Latin small letter d with caron":"Latin small letter d with caron","Latin capital letter d with stroke":"Latin capital letter d with stroke","Latin small letter d with stroke":"Latin small letter d with stroke","Latin capital letter e with macron":"Latin capital letter e with macron","Latin small letter e with macron":"Latin small letter e with macron","Latin capital letter e with breve":"Latin capital letter e with breve","Latin small letter e with breve":"Latin small letter e with breve","Latin capital letter e with dot above":"Latin capital letter e with dot above","Latin small letter e with dot above":"Latin small letter e with dot above","Latin capital letter e with ogonek":"Latin capital letter e with ogonek","Latin small letter e with ogonek":"Latin small letter e with ogonek","Latin capital letter e with caron":"Latin capital letter e with caron","Latin small letter e with caron":"Latin small letter e with caron","Latin capital letter g with circumflex":"Latin capital letter g with circumflex","Latin small letter g with circumflex":"Latin small letter g with circumflex","Latin capital letter g with breve":"Latin capital letter g with breve","Latin small letter g with breve":"Latin small letter g with breve","Latin capital letter g with dot above":"Latin capital letter g with dot above","Latin small letter g with dot above":"Latin small letter g with dot above","Latin capital letter g with cedilla":"Latin capital letter g with cedilla","Latin small letter g with cedilla":"Latin small letter g with cedilla","Latin capital letter h with circumflex":"Latin capital letter h with circumflex","Latin small letter h with circumflex":"Latin small letter h with circumflex","Latin capital letter h with stroke":"Latin capital letter h with stroke","Latin small letter h with stroke":"Latin small letter h with stroke","Latin capital letter i with tilde":"Latin capital letter i with tilde","Latin small letter i with tilde":"Latin small letter i with tilde","Latin capital letter i with macron":"Latin capital letter i with macron","Latin small letter i with macron":"Latin small letter i with macron","Latin capital letter i with breve":"Latin capital letter i with breve","Latin small letter i with breve":"Latin small letter i with breve","Latin capital letter i with ogonek":"Latin capital letter i with ogonek","Latin small letter i with ogonek":"Latin small letter i with ogonek","Latin capital letter i with dot above":"Latin capital letter i with dot above","Latin small letter dotless i":"Latin small letter dotless i","Latin capital ligature ij":"Latin capital ligature ij","Latin small ligature ij":"Latin small ligature ij","Latin capital letter j with circumflex":"Latin capital letter j with circumflex","Latin small letter j with circumflex":"Latin small letter j with circumflex","Latin capital letter k with cedilla":"Latin capital letter k with cedilla","Latin small letter k with cedilla":"Latin small letter k with cedilla","Latin small letter kra":"Latin small letter kra","Latin capital letter l with acute":"Latin capital letter l with acute","Latin small letter l with acute":"Latin small letter l with acute","Latin capital letter l with cedilla":"Latin capital letter l with cedilla","Latin small letter l with cedilla":"Latin small letter l with cedilla","Latin capital letter l with caron":"Latin capital letter l with caron","Latin small letter l with caron":"Latin small letter l with caron","Latin capital letter l with middle dot":"Latin capital letter l with middle dot","Latin small letter l with middle dot":"Latin small letter l with middle dot","Latin capital letter l with stroke":"Latin capital letter l with stroke","Latin small letter l with stroke":"Latin small letter l with stroke","Latin capital letter n with acute":"Latin capital letter n with acute","Latin small letter n with acute":"Latin small letter n with acute","Latin capital letter n with cedilla":"Latin capital letter n with cedilla","Latin small letter n with cedilla":"Latin small letter n with cedilla","Latin capital letter n with caron":"Latin capital letter n with caron","Latin small letter n with caron":"Latin small letter n with caron","Latin small letter n preceded by apostrophe":"Latin small letter n preceded by apostrophe","Latin capital letter eng":"Latin capital letter eng","Latin small letter eng":"Latin small letter eng","Latin capital letter o with macron":"Latin capital letter o with macron","Latin small letter o with macron":"Latin small letter o with macron","Latin capital letter o with breve":"Latin capital letter o with breve","Latin small letter o with breve":"Latin small letter o with breve","Latin capital letter o with double acute":"Latin capital letter o with double acute","Latin small letter o with double acute":"Latin small letter o with double acute","Latin capital ligature oe":"Latin capital ligature oe","Latin small ligature oe":"Latin small ligature oe","Latin capital letter r with acute":"Latin capital letter r with acute","Latin small letter r with acute":"Latin small letter r with acute","Latin capital letter r with cedilla":"Latin capital letter r with cedilla","Latin small letter r with cedilla":"Latin small letter r with cedilla","Latin capital letter r with caron":"Latin capital letter r with caron","Latin small letter r with caron":"Latin small letter r with caron","Latin capital letter s with acute":"Latin capital letter s with acute","Latin small letter s with acute":"Latin small letter s with acute","Latin capital letter s with circumflex":"Latin capital letter s with circumflex","Latin small letter s with circumflex":"Latin small letter s with circumflex","Latin capital letter s with cedilla":"Latin capital letter s with cedilla","Latin small letter s with cedilla":"Latin small letter s with cedilla","Latin capital letter s with caron":"Latin capital letter s with caron","Latin small letter s with caron":"Latin small letter s with caron","Latin capital letter t with cedilla":"Latin capital letter t with cedilla","Latin small letter t with cedilla":"Latin small letter t with cedilla","Latin capital letter t with caron":"Latin capital letter t with caron","Latin small letter t with caron":"Latin small letter t with caron","Latin capital letter t with stroke":"Latin capital letter t with stroke","Latin small letter t with stroke":"Latin small letter t with stroke","Latin capital letter u with tilde":"Latin capital letter u with tilde","Latin small letter u with tilde":"Latin small letter u with tilde","Latin capital letter u with macron":"Latin capital letter u with macron","Latin small letter u with macron":"Latin small letter u with macron","Latin capital letter u with breve":"Latin capital letter u with breve","Latin small letter u with breve":"Latin small letter u with breve","Latin capital letter u with ring above":"Latin capital letter u with ring above","Latin small letter u with ring above":"Latin small letter u with ring above","Latin capital letter u with double acute":"Latin capital letter u with double acute","Latin small letter u with double acute":"Latin small letter u with double acute","Latin capital letter u with ogonek":"Latin capital letter u with ogonek","Latin small letter u with ogonek":"Latin small letter u with ogonek","Latin capital letter w with circumflex":"Latin capital letter w with circumflex","Latin small letter w with circumflex":"Latin small letter w with circumflex","Latin capital letter y with circumflex":"Latin capital letter y with circumflex","Latin small letter y with circumflex":"Latin small letter y with circumflex","Latin capital letter y with diaeresis":"Latin capital letter y with diaeresis","Latin capital letter z with acute":"Latin capital letter z with acute","Latin small letter z with acute":"Latin small letter z with acute","Latin capital letter z with dot above":"Latin capital letter z with dot above","Latin small letter z with dot above":"Latin small letter z with dot above","Latin capital letter z with caron":"Latin capital letter z with caron","Latin small letter z with caron":"Latin small letter z with caron","Latin small letter long s":"Latin small letter long s","Less-than sign":"Less-than sign","Greater-than sign":"Greater-than sign","Less-than or equal to":"Less-than or equal to","Greater-than or equal to":"Greater-than or equal to","En dash":"En dash","Em dash":"Em dash",Macron:"Macron",Overline:"Overline","Degree sign":"Degree sign","Minus sign":"Minus sign","Plus-minus sign":"Plus-minus sign","Division sign":"Division sign","Fraction slash":"Fraction slash","Multiplication sign":"Multiplication sign","Latin small letter f with hook":"Latin small letter f with hook",Integral:"Integral","N-ary summation":"N-ary summation",Infinity:"Infinity","Square root":"Square root","Tilde operator":"Tilde operator","Approximately equal to":"Approximately equal to","Almost equal to":"Almost equal to","Not equal to":"Not equal to","Identical to":"Identical to","Element of":"Element of","Not an element of":"Not an element of","Contains as member":"Contains as member","N-ary product":"N-ary product","Logical and":"Logical and","Logical or":"Logical or","Not sign":"Not sign",Intersection:"Intersection",Union:"Union","Partial differential":"Partial differential","For all":"For all","There exists":"There exists","Empty set":"Empty set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Proportional to",Angle:"Angle","Vulgar fraction one quarter":"Vulgar fraction one quarter","Vulgar fraction one half":"Vulgar fraction one half","Vulgar fraction three quarters":"Vulgar fraction three quarters","Single left-pointing angle quotation mark":"Single left-pointing angle quotation mark","Single right-pointing angle quotation mark":"Single right-pointing angle quotation mark","Left-pointing double angle quotation mark":"Left-pointing double angle quotation mark","Right-pointing double angle quotation mark":"Right-pointing double angle quotation mark","Left single quotation mark":"Left single quotation mark","Right single quotation mark":"Right single quotation mark","Left double quotation mark":"Left double quotation mark","Right double quotation mark":"Right double quotation mark","Single low-9 quotation mark":"Single low-9 quotation mark","Double low-9 quotation mark":"Double low-9 quotation mark","Inverted exclamation mark":"Inverted exclamation mark","Inverted question mark":"Inverted question mark","Two dot leader":"Two dot leader","Horizontal ellipsis":"Horizontal ellipsis","Double dagger":"Double dagger","Per mille sign":"Per mille sign","Per ten thousand sign":"Per ten thousand sign","Double exclamation mark":"Double exclamation mark","Question exclamation mark":"Question exclamation mark","Exclamation question mark":"Exclamation question mark","Double question mark":"Double question mark","Copyright sign":"Copyright sign","Registered sign":"Registered sign","Trade mark sign":"Trade mark sign","Section sign":"Section sign","Paragraph sign":"Paragraph sign","Reversed paragraph sign":"Reversed paragraph sign","Character categories":"Character categories",Styles:"सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Multiple styles":"कई सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Block styles":"बà¥à¤²à¥‰à¤• सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Text styles":"टेकà¥à¤¸à¥à¤Ÿ सà¥à¤Ÿà¤¾à¤‡à¤²à¥à¤¸","Insert table":"Insert table","Header column":"Header column","Insert column left":"Insert column left","Insert column right":"Insert column right","Delete column":"Delete column","Select column":"Select column",Column:"Column","Header row":"Header row","Insert row below":"Insert row below","Insert row above":"Insert row above","Delete row":"Delete row","Select row":"Select row",Row:"Row","Merge cell up":"Merge cell up","Merge cell right":"Merge cell right","Merge cell down":"Merge cell down","Merge cell left":"Merge cell left","Split cell vertically":"Split cell vertically","Split cell horizontally":"Split cell horizontally","Merge cells":"Merge cells","Table toolbar":"Table toolbar","Table properties":"Table properties","Cell properties":"Cell properties",Border:"Border",Style:"Style",Width:"Width",Height:"Height",Color:"Color",Background:"Background",Padding:"Padding",Dimensions:"Dimensions","Table cell text alignment":"Table cell text alignment",Alignment:"Alignment","Horizontal text alignment toolbar":"Horizontal text alignment toolbar","Vertical text alignment toolbar":"Vertical text alignment toolbar","Table alignment toolbar":"Table alignment toolbar",None:"None",Solid:"Solid",Dotted:"Dotted",Dashed:"Dashed",Double:"Double",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Align cell text to the left","Align cell text to the center":"Align cell text to the center","Align cell text to the right":"Align cell text to the right","Justify cell text":"Justify cell text","Align cell text to the top":"Align cell text to the top","Align cell text to the middle":"Align cell text to the middle","Align cell text to the bottom":"Align cell text to the bottom","Align table to the left":"Align table to the left","Center table":"Center table","Align table to the right":"Align table to the right","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".","Color picker":"Color picker","Toggle caption off":"कैपà¥à¤¶à¤¨ को टॉगल बंद करें","Toggle caption on":"कैपà¥à¤¶à¤¨ का टॉगल ऑन करें","Enter table caption":"टेबल कैपà¥à¤¶à¤¨ à¤à¤‚टर करें","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"संपादक संपादन कà¥à¤·à¥‡à¤¤à¥à¤°: %0","Edit block":"Edit block","Click to edit block":"बà¥à¤²à¥‰à¤• à¤à¤¡à¤¿à¤Ÿ करने के लिठकà¥à¤²à¤¿à¤• करें","Drag to move":"मूव करने के लिठडà¥à¤°à¥ˆà¤— करें",Next:"Next",Previous:"Previous","Editor toolbar":"Editor toolbar","Dropdown toolbar":"Dropdown toolbar",Black:"Black","Dim grey":"Dim grey",Grey:"Grey","Light grey":"Light grey",White:"White",Red:"Red",Orange:"Orange",Yellow:"Yellow","Light green":"Light green",Green:"Green",Aquamarine:"Aquamarine",Turquoise:"Turquoise","Light blue":"Light blue",Blue:"Blue",Purple:"Purple","Editor block content toolbar":"à¤à¤¡à¥€à¤Ÿà¤° बà¥à¤²à¥‰à¤• कंटेंट टूलबार","Editor contextual toolbar":"à¤à¤¡à¥€à¤Ÿà¤° कॉनà¥à¤Ÿà¥‡à¤•à¥à¤¸à¥à¤Ÿà¥‚अल टूलबार",HEX:"HEX",Accept:"सà¥à¤µà¥€à¤•à¤¾à¤° करें","No results found":"कोई रिजलà¥à¤Ÿ नहीं","No searchable items":"कोई खोजने लायक आइटम नहीं","Editor dialog":"à¤à¤¡à¤¿à¤Ÿà¤° डायलॉग",Close:"बंद करें",Undo:"Undo",Redo:"Redo","Upload in progress":"Upload in progress","Widget toolbar":"Widget toolbar","Insert paragraph before block":"Insert paragraph before block","Insert paragraph after block":"Insert paragraph after block","Press Enter to type after or press Shift + Enter to type before the widget":"विजेट के बाद टाइप करने के लिठà¤à¤‚टर दबाà¤à¤‚ या पहले टाइप करने के लिठशिफà¥à¤Ÿ+à¤à¤‚टर दबाà¤à¤‚","Words: %0":"Words: %0","Characters: %0":"Characters: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hr.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hr.js index 88fb8098d3a56d00ef47094cfb223aa93d2f5f1e..746cc394cb7ffc8c302a57227c86f92013761a52 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hr.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hr.js @@ -1 +1 @@ -(function(d){ const l = d['hr'] = d['hr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Poravnaj ulijevo","Align right":"Poravnaj udesno","Align center":"Poravnaj po sredini",Justify:"Razvuci","Text alignment":"Poravnanje teksta","Text alignment toolbar":"Traka za poravnanje",Bold:"Podebljano",Italic:"UkoÅ¡eno",Underline:"Podcrtavanje",Code:"Kod",Strikethrough:"Precrtano",Subscript:"Indeks",Superscript:"Eksponent","Block quote":"Blok citat","Insert code block":"Umetni blok koda","Plain text":"ObiÄan tekst",Cancel:"PoniÅ¡ti",Clear:"ObriÅ¡i","Remove color":"Ukloni boju","Restore default":"Vrati tvorniÄke postavke",Save:"Snimi","Show more items":"Prikaži viÅ¡e stavaka","%0 of %1":"%0 od %1","Cannot upload file:":"Datoteku nije moguće poslati:","Rich Text Editor. Editing area: %0":"UreÄ‘ivaÄ obogaćenog teksta. PodruÄje za ureÄ‘ivanje: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"PronaÄ‘i i zamijeni","Find in text…":"PronaÄ‘i u tekstu...",Find:"PronaÄ‘i","Previous result":"Prethodni rezultat","Next result":"Sljedeći rezultat",Replace:"Zamijeni","Replace all":"Zamijeni sve","Match case":"ToÄna velika/mala slova","Whole words only":"Samo cijele rijeÄi","Replace with…":"Zamijeni sa....","Text to find must not be empty.":"Morate upisati tekst za traženje.","Tip: Find some text first in order to replace it.":"Savjet: PronaÄ‘ite neki tekst kako bi ga zamijenili.","Advanced options":"",Paragraph:"Paragraf",Heading:"Naslov","Choose heading":"Odaberite naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Utipkajte naslov","Type or paste your content here.":"Utipkajte ili zalijepite VaÅ¡ sadržaj ovdje.","Horizontal line":"Vodoravna linija","HTML object":"HTML objekt","Increase indent":"Povećaj uvlaÄenje","Decrease indent":"Umanji uvlaÄenje",Unlink:"Ukloni vezu",Link:"Veza","Link URL":"URL veze","Link image":"URL slike","Edit link":"Uredi vezu","Open link in new tab":"Otvori vezu u novoj kartici","This link has no URL":"Ova veza nema URL","Open in a new tab":"Otvori u novoj kartici",Downloadable:"Moguće preuzeti","Numbered List":"BrojÄana lista","Bulleted List":"ObiÄna lista","To-do List":"Lista zadataka","Bulleted list styles toolbar":"Alatna traka za stilove obiÄne liste","Numbered list styles toolbar":"Alatna traka za stilove brojÄane liste","Toggle the disc list style":"Primjeni disk stil","Toggle the circle list style":"Primjeni krug stil","Toggle the square list style":"Primjeni kvadrat stil","Toggle the decimal list style":"Primjeni decimalni stil","Toggle the decimal with leading zero list style":"Primjeni decimalni stil s vodećom nulom","Toggle the lower–roman list style":"Primjeni rimske brojeve mala slova stil","Toggle the upper–roman list style":"Primjeni rimske brojeve velika slova stil","Toggle the lower–latin list style":"Primjeni mala slova stil","Toggle the upper–latin list style":"Primjeni velika slova stil",Disc:"Disk",Circle:"Krug",Square:"Kvadrat",Decimal:"Decimalni","Decimal with leading zero":"Decimalni s vodećom nulom","Lower–roman":"Mali rimski brojevi","Upper-roman":"Veliki rimski brojevi","Lower-latin":"Mala slova","Upper-latin":"Velika slova","List properties":"Svojstva liste","Start at":"PoÄni sa","Start index must be greater than 0.":"PoÄetni indeks mora biti veći od 0.","Reversed order":"Obrnuti redoslijed","Remove Format":"Ukloni format","Select all":"Odaberi sve","Show blocks":"Prikaži blokove",Source:"Izvorni kod","Special characters":"",All:"Svi",Arrows:"Strelice",Currency:"Valuta",Latin:"",Mathematical:"MatematiÄki",Text:"Tekst","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"Približno jednako","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"",Styles:"Stilovi","Multiple styles":"ViÅ¡e stilova","Block styles":"Blok stilovi","Text styles":"Tekstualni stilovi","Insert table":"Ubaci tablicu","Header column":"Kolona zaglavlja","Insert column left":"Umetni stupac lijevo","Insert column right":"Umetni stupac desno","Delete column":"ObriÅ¡i kolonu","Select column":"Odaberi stupac",Column:"Kolona","Header row":"Red zaglavlja","Insert row below":"Ubaci red ispod","Insert row above":"Ubaci red iznad","Delete row":"ObriÅ¡i red","Select row":"Odaberi redak",Row:"Red","Merge cell up":"Spoji ćelije prema gore","Merge cell right":"Spoji ćelije prema desno","Merge cell down":"Spoji ćelije prema dolje","Merge cell left":"Spoji ćelije prema lijevo","Split cell vertically":"Razdvoji ćeliju okomito","Split cell horizontally":"Razdvoji ćeliju vodoravno","Merge cells":"Spoji ćelije","Table toolbar":"Traka za tablice","Table properties":"Svojstva tablice","Cell properties":"Svojstva ćelije",Border:"Granica",Style:"Stil",Width:"Å irina",Height:"Visina",Color:"Boja",Background:"Pozadina",Padding:"Podstava",Dimensions:"Dimenzije","Table cell text alignment":"Poravnanje teksta ćelije tablice",Alignment:"Poravnanje","Horizontal text alignment toolbar":"Alatna traka za horizontalno poravnanje teksta","Vertical text alignment toolbar":"Alatna traka za vertikalno poravnanje teksta","Table alignment toolbar":"Alatna traka za poravnanje tablice",None:"Nikakva",Solid:"Neprekidna",Dotted:"ToÄkasta",Dashed:"CrtiÄasta",Double:"Dvostruka",Groove:"",Ridge:"Greben",Inset:"",Outset:"","Align cell text to the left":"Tekst ćelije poravnaj lijevo","Align cell text to the center":"Tekst ćelije poravnaj u sredinu","Align cell text to the right":"Tekst ćelije poravnaj udesno","Justify cell text":"Razvuci tekst ćelije","Align cell text to the top":"Tekst ćelije poravnaj prema gore","Align cell text to the middle":"Tekst ćelije poravnaj u sredinu","Align cell text to the bottom":"Tekst ćelije poravnaj prema dolje","Align table to the left":"Poravnaj tablicu ulijevo","Center table":"Centriraj tablicu","Align table to the right":"Poravnaj tablicu udesno","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Neispravna boja. PokuÅ¡ajte \"#FF0000\" ili \"rgb(255,0,0)\" ili \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Neispravna vrijednost. PokuÅ¡ajte \"10px\" ili \"2em\" ili jednostavno \"2\".","Color picker":"BiraÄ boje","Toggle caption off":"IskljuÄite natpis","Toggle caption on":"UkljuÄite natpis","Enter table caption":"Unesite natpis","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"PodruÄje Editora: %0","Edit block":"Uredi blok","Click to edit block":"","Drag to move":"",Next:"Sljedeći",Previous:"Prethodni","Editor toolbar":"Traka ureÄ‘ivaÄa","Dropdown toolbar":"Traka padajućeg izbornika",Black:"Crna","Dim grey":"Tamnosiva",Grey:"Siva","Light grey":"Svijetlosiva",White:"Bijela",Red:"Crvena",Orange:"NaranÄasta",Yellow:"Žuta","Light green":"Svijetlozelena",Green:"Zelena",Aquamarine:"Akvamarin",Turquoise:"Tirkizna","Light blue":"Svijetloplava",Blue:"Plava",Purple:"LjubiÄasta","Editor block content toolbar":"Alatna traka sadržaja ureÄ‘ivaÄa blokova","Editor contextual toolbar":"Kontekstualna alatna traka ureÄ‘ivaÄa",HEX:"",Accept:"Prihvati","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"PoniÅ¡ti",Redo:"Ponovi","Upload in progress":"Slanje u tijeku","Widget toolbar":"Traka sa spravicama","Insert paragraph before block":"Umetni odlomak prije bloka","Insert paragraph after block":"Umetni odlomak poslije bloka","Press Enter to type after or press Shift + Enter to type before the widget":"Pritisnite Enter za upisivanje nakon ili pritisnite Shift + Enter za upisivanje prije widgeta","Words: %0":"RijeÄi: %0","Characters: %0":"Znakova: %0"} );l.getPluralForm=function(n){return n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['hr'] = d['hr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Poravnaj ulijevo","Align right":"Poravnaj udesno","Align center":"Poravnaj po sredini",Justify:"Razvuci","Text alignment":"Poravnanje teksta","Text alignment toolbar":"Traka za poravnanje",Bold:"Podebljano",Italic:"UkoÅ¡eno",Underline:"Podcrtavanje",Code:"Kod",Strikethrough:"Precrtano",Subscript:"Indeks",Superscript:"Eksponent","Block quote":"Blok citat","Insert code block":"Umetni blok koda","Plain text":"ObiÄan tekst",Cancel:"PoniÅ¡ti",Clear:"ObriÅ¡i","Remove color":"Ukloni boju","Restore default":"Vrati tvorniÄke postavke",Save:"Snimi","Show more items":"Prikaži viÅ¡e stavaka","%0 of %1":"%0 od %1","Cannot upload file:":"Datoteku nije moguće poslati:","Rich Text Editor. Editing area: %0":"UreÄ‘ivaÄ obogaćenog teksta. PodruÄje za ureÄ‘ivanje: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"PronaÄ‘i i zamijeni","Find in text…":"PronaÄ‘i u tekstu...",Find:"PronaÄ‘i","Previous result":"Prethodni rezultat","Next result":"Sljedeći rezultat",Replace:"Zamijeni","Replace all":"Zamijeni sve","Match case":"ToÄna velika/mala slova","Whole words only":"Samo cijele rijeÄi","Replace with…":"Zamijeni sa....","Text to find must not be empty.":"Morate upisati tekst za traženje.","Tip: Find some text first in order to replace it.":"Savjet: PronaÄ‘ite neki tekst kako bi ga zamijenili.","Advanced options":"","Font Size":"VeliÄina fonta",Tiny:"SićuÅ¡an",Small:"Mali",Big:"Veliki",Huge:"Ogroman","Font Family":"Obitelj fonta",Default:"Podrazumijevano","Font Color":"Boja Fonta","Font Background Color":"Pozadinska Boja Fonta","Document colors":"Boje dokumenta",Paragraph:"Paragraf",Heading:"Naslov","Choose heading":"Odaberite naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Utipkajte naslov","Type or paste your content here.":"Utipkajte ili zalijepite VaÅ¡ sadržaj ovdje.","Horizontal line":"Vodoravna linija","HTML object":"HTML objekt","Increase indent":"Povećaj uvlaÄenje","Decrease indent":"Umanji uvlaÄenje",Unlink:"Ukloni vezu",Link:"Veza","Link URL":"URL veze","Link image":"URL slike","Edit link":"Uredi vezu","Open link in new tab":"Otvori vezu u novoj kartici","This link has no URL":"Ova veza nema URL","Open in a new tab":"Otvori u novoj kartici",Downloadable:"Moguće preuzeti","Numbered List":"BrojÄana lista","Bulleted List":"ObiÄna lista","To-do List":"Lista zadataka","Bulleted list styles toolbar":"Alatna traka za stilove obiÄne liste","Numbered list styles toolbar":"Alatna traka za stilove brojÄane liste","Toggle the disc list style":"Primjeni disk stil","Toggle the circle list style":"Primjeni krug stil","Toggle the square list style":"Primjeni kvadrat stil","Toggle the decimal list style":"Primjeni decimalni stil","Toggle the decimal with leading zero list style":"Primjeni decimalni stil s vodećom nulom","Toggle the lower–roman list style":"Primjeni rimske brojeve mala slova stil","Toggle the upper–roman list style":"Primjeni rimske brojeve velika slova stil","Toggle the lower–latin list style":"Primjeni mala slova stil","Toggle the upper–latin list style":"Primjeni velika slova stil",Disc:"Disk",Circle:"Krug",Square:"Kvadrat",Decimal:"Decimalni","Decimal with leading zero":"Decimalni s vodećom nulom","Lower–roman":"Mali rimski brojevi","Upper-roman":"Veliki rimski brojevi","Lower-latin":"Mala slova","Upper-latin":"Velika slova","List properties":"Svojstva liste","Start at":"PoÄni sa","Start index must be greater than 0.":"PoÄetni indeks mora biti veći od 0.","Reversed order":"Obrnuti redoslijed","Remove Format":"Ukloni format","Select all":"Odaberi sve","Show blocks":"Prikaži blokove",Source:"Izvorni kod","Special characters":"",All:"Svi",Arrows:"Strelice",Currency:"Valuta",Latin:"",Mathematical:"MatematiÄki",Text:"Tekst","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"Približno jednako","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"",Styles:"Stilovi","Multiple styles":"ViÅ¡e stilova","Block styles":"Blok stilovi","Text styles":"Tekstualni stilovi","Insert table":"Ubaci tablicu","Header column":"Kolona zaglavlja","Insert column left":"Umetni stupac lijevo","Insert column right":"Umetni stupac desno","Delete column":"ObriÅ¡i kolonu","Select column":"Odaberi stupac",Column:"Kolona","Header row":"Red zaglavlja","Insert row below":"Ubaci red ispod","Insert row above":"Ubaci red iznad","Delete row":"ObriÅ¡i red","Select row":"Odaberi redak",Row:"Red","Merge cell up":"Spoji ćelije prema gore","Merge cell right":"Spoji ćelije prema desno","Merge cell down":"Spoji ćelije prema dolje","Merge cell left":"Spoji ćelije prema lijevo","Split cell vertically":"Razdvoji ćeliju okomito","Split cell horizontally":"Razdvoji ćeliju vodoravno","Merge cells":"Spoji ćelije","Table toolbar":"Traka za tablice","Table properties":"Svojstva tablice","Cell properties":"Svojstva ćelije",Border:"Granica",Style:"Stil",Width:"Å irina",Height:"Visina",Color:"Boja",Background:"Pozadina",Padding:"Podstava",Dimensions:"Dimenzije","Table cell text alignment":"Poravnanje teksta ćelije tablice",Alignment:"Poravnanje","Horizontal text alignment toolbar":"Alatna traka za horizontalno poravnanje teksta","Vertical text alignment toolbar":"Alatna traka za vertikalno poravnanje teksta","Table alignment toolbar":"Alatna traka za poravnanje tablice",None:"Nikakva",Solid:"Neprekidna",Dotted:"ToÄkasta",Dashed:"CrtiÄasta",Double:"Dvostruka",Groove:"",Ridge:"Greben",Inset:"",Outset:"","Align cell text to the left":"Tekst ćelije poravnaj lijevo","Align cell text to the center":"Tekst ćelije poravnaj u sredinu","Align cell text to the right":"Tekst ćelije poravnaj udesno","Justify cell text":"Razvuci tekst ćelije","Align cell text to the top":"Tekst ćelije poravnaj prema gore","Align cell text to the middle":"Tekst ćelije poravnaj u sredinu","Align cell text to the bottom":"Tekst ćelije poravnaj prema dolje","Align table to the left":"Poravnaj tablicu ulijevo","Center table":"Centriraj tablicu","Align table to the right":"Poravnaj tablicu udesno","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Neispravna boja. PokuÅ¡ajte \"#FF0000\" ili \"rgb(255,0,0)\" ili \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Neispravna vrijednost. PokuÅ¡ajte \"10px\" ili \"2em\" ili jednostavno \"2\".","Color picker":"BiraÄ boje","Toggle caption off":"IskljuÄite natpis","Toggle caption on":"UkljuÄite natpis","Enter table caption":"Unesite natpis","Rich Text Editor":"Rich Text Editor","Editor editing area: %0":"PodruÄje Editora: %0","Edit block":"Uredi blok","Click to edit block":"","Drag to move":"",Next:"Sljedeći",Previous:"Prethodni","Editor toolbar":"Traka ureÄ‘ivaÄa","Dropdown toolbar":"Traka padajućeg izbornika",Black:"Crna","Dim grey":"Tamnosiva",Grey:"Siva","Light grey":"Svijetlosiva",White:"Bijela",Red:"Crvena",Orange:"NaranÄasta",Yellow:"Žuta","Light green":"Svijetlozelena",Green:"Zelena",Aquamarine:"Akvamarin",Turquoise:"Tirkizna","Light blue":"Svijetloplava",Blue:"Plava",Purple:"LjubiÄasta","Editor block content toolbar":"Alatna traka sadržaja ureÄ‘ivaÄa blokova","Editor contextual toolbar":"Kontekstualna alatna traka ureÄ‘ivaÄa",HEX:"",Accept:"Prihvati","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"PoniÅ¡ti",Redo:"Ponovi","Upload in progress":"Slanje u tijeku","Widget toolbar":"Traka sa spravicama","Insert paragraph before block":"Umetni odlomak prije bloka","Insert paragraph after block":"Umetni odlomak poslije bloka","Press Enter to type after or press Shift + Enter to type before the widget":"Pritisnite Enter za upisivanje nakon ili pritisnite Shift + Enter za upisivanje prije widgeta","Words: %0":"RijeÄi: %0","Characters: %0":"Znakova: %0"} );l.getPluralForm=function(n){return n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hu.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hu.js index fb5185a0e873e4f2ea50c0cb121b1f555b776dd2..2334c173c24ab65a3b49e543a3a21a670d31664d 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hu.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/hu.js @@ -1 +1 @@ -(function(d){ const l = d['hu'] = d['hu'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Balra igazÃtás","Align right":"Jobbra igazÃtás","Align center":"Középre igazÃtás",Justify:"Sorkizárt","Text alignment":"Szöveg igazÃtása","Text alignment toolbar":"Szöveg igazÃtás eszköztár",Bold:"Félkövér",Italic:"DÅ‘lt",Underline:"Aláhúzott",Code:"Forráskód",Strikethrough:"Ãthúzott",Subscript:"Alsó index",Superscript:"FelsÅ‘ index","Block quote":"Idézet","Insert code block":"Kód blokk beszúrása","Plain text":"Egyszerű szöveg",Cancel:"Mégsem",Clear:"Törlés","Remove color":"SzÃn eltávolÃtása","Restore default":"Alapértelmezés visszaállÃtása",Save:"Mentés","Show more items":"További elemek","%0 of %1":"%0 / %1","Cannot upload file:":"Nem sikerült a fájl feltöltése:","Rich Text Editor. Editing area: %0":"Rich text szerkesztÅ‘. Szerkesztési terület: %0","Insert with file manager":"Beillesztés fájlkezelÅ‘vel","Replace with file manager":"Kicserélés fájlkezelÅ‘vel","Insert image with file manager":"Illessze be a képet a fájlkezelÅ‘vel","Replace image with file manager":"Cserélje ki a képet a fájlkezelÅ‘vel","Find and replace":"Keresés és csere","Find in text…":"Keresés szövegben...",Find:"Keresés","Previous result":"ElÅ‘zÅ‘ találat","Next result":"KövetkezÅ‘ találat",Replace:"Csere","Replace all":"Mind cserél","Match case":"Nagybetű érzékeny","Whole words only":"Csak teljes szavak","Replace with…":"Csere erre...","Text to find must not be empty.":"A keresendÅ‘ szöveg nem lehet üres.","Tip: Find some text first in order to replace it.":"Tipp: ElÅ‘ször keressen egy szöveget, hogy lecserélhesse.","Advanced options":"Speciális beállÃtások",Paragraph:"Bekezdés",Heading:"StÃlusok","Choose heading":"StÃlus megadása","Heading 1":"CÃmsor 1","Heading 2":"CÃmsor 2","Heading 3":"CÃmsor 3","Heading 4":"CÃmsor 4","Heading 5":"CÃmsor 5","Heading 6":"CÃmsor 6","Type your title":"Adja meg a cÃmet","Type or paste your content here.":"Ãrja be, vagy illessze be a tartalmat.","Horizontal line":"VÃzszintes elválasztóvonal","HTML object":"HTML objektum","Increase indent":"Behúzás növelése","Decrease indent":"Behúzás csökkentése",Unlink:"Link eltávolÃtása",Link:"Link","Link URL":"URL link","Link image":"Hivatkozás","Edit link":"Link szerkesztése","Open link in new tab":"Link megnyitása új ablakban","This link has no URL":"A link nem tartalmaz URL-t","Open in a new tab":"Megnyitás új lapon",Downloadable:"LetölthetÅ‘","Numbered List":"Számozott lista","Bulleted List":"Pontozott lista","To-do List":"Tennivaló lista","Bulleted list styles toolbar":"Felsorolásos lista stÃlusú eszköztár","Numbered list styles toolbar":"Számozott lista stÃlusú eszköztár","Toggle the disc list style":"Korong stÃlusú lista bekapcsolása","Toggle the circle list style":"Kör stÃlusú lista bekapcsolása","Toggle the square list style":"Négyzet stÃlusú lista bekapcsolása","Toggle the decimal list style":"Tizedesjegy stÃlusú lista bekapcsolása","Toggle the decimal with leading zero list style":"Zéróval kezdÅ‘dÅ‘ tizedesjegy stÃlusú lista bekapcsolása","Toggle the lower–roman list style":"Kis római számok stÃlusú lista bekapcsolása","Toggle the upper–roman list style":"Nagy római számok stÃlusú lista bekapcsolása","Toggle the lower–latin list style":"Kis latin betűs stÃlusú lista bekapcsolása","Toggle the upper–latin list style":"Nagy latin betűs stÃlusú lista bekapcsolása",Disc:"Korong",Circle:"Kör",Square:"Négyzet",Decimal:"Szám","Decimal with leading zero":"Nullával kezdÅ‘dÅ‘ szám","Lower–roman":"Kisbetűs római szám","Upper-roman":"Nagybetűs római szám","Lower-latin":"Kisbetűs latin szám","Upper-latin":"Nagybetűs latin szám","List properties":"Lista tulajdonságai","Start at":"KezdÅ‘pont","Start index must be greater than 0.":"A kezdÅ‘ index nagyobb kell legyen mint 0.","Reversed order":"FordÃtott sorrend","Remove Format":"Formázás eltávolÃtása","Select all":"Mindet kijelöl","Show blocks":"Blokkok megjelenÃtése",Source:"Forrás","Special characters":"Speciális karakterek",All:"Összes",Arrows:"Nyilak",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematikai",Text:"Szöveg","leftwards simple arrow":"balra mutató egyszerű nyÃl","rightwards simple arrow":"jobbra mutató egyszerű nyÃl","upwards simple arrow":"felfelé mutató egyszerű nyÃl","downwards simple arrow":"lefelé mutató egyszerű nyÃl","leftwards double arrow":"dupla nyÃl balra","rightwards double arrow":"dupla nyÃl jobbra","upwards double arrow":"dupla nyÃl felfelé","downwards double arrow":"dupla nyÃl lefelé","leftwards dashed arrow":"szaggatott nyÃl balra","rightwards dashed arrow":"szaggatott nyÃl jobbra","upwards dashed arrow":"szaggatott nyÃl felfelé","downwards dashed arrow":"szaggatott nyÃl lefelé","leftwards arrow to bar":"vonalig érÅ‘ balra nyÃl","rightwards arrow to bar":"vonalig érÅ‘ jobbra nyÃl","upwards arrow to bar":"vonalig érÅ‘ felfele nyÃl","downwards arrow to bar":"vonalig érÅ‘ lefele nyÃl","up down arrow with base":"fel-le nyÃl alapvonallal","back with leftwards arrow above":"back felirat felette balra nyÃllal","end with leftwards arrow above":"end felirat felette balra nyÃllal","on with exclamation mark with left right arrow above":"on felirat felkiáltójellel és felette jobbra-balra nyÃllal","soon with rightwards arrow above":"soon felirat felette jobbra nyÃllal","top with upwards arrow above":"top felirat felette felfele nyÃllal","Dollar sign":"Dollár jel","Euro sign":"Euró jel","Yen sign":"Yen jel","Pound sign":"Font jel","Cent sign":"Cent jel","Euro-currency sign":"Euró pénznem jel","Colon sign":"KettÅ‘spont","Cruzeiro sign":"Cruizero szimbólum","French franc sign":"Francia frank jel","Lira sign":"LÃra jel","Currency sign":"Pénznem jel","Bitcoin sign":"Bitcoin jel","Mill sign":"Mill szimbólum","Naira sign":"Naira szimbólum","Peseta sign":"Peseta szimbólum","Rupee sign":"Rúpia szimbólum","Won sign":"Won szimbólum","New sheqel sign":"Új sékel szimbólum","Dong sign":"Dong szimbólum","Kip sign":"Kip szimbólum","Tugrik sign":"Tugrik szimbólum","Drachma sign":"Drachma szimbólum","German penny sign":"Német pfennig szimbólum","Peso sign":"Peso szimbólum","Guarani sign":"Guarani szimbólum","Austral sign":"Ausztrál szimbólum","Hryvnia sign":"Hrivnya szimbólum","Cedi sign":"Cedi szimbólum","Livre tournois sign":"Livre tournois szimbólum","Spesmilo sign":"Spesmilo szimbólum","Tenge sign":"Tenge szimbólum","Indian rupee sign":"Indiai rúpia szimbólum","Turkish lira sign":"Török lÃra szimbólum","Nordic mark sign":"Északi márka szimbólum","Manat sign":"Manat szimbólum","Ruble sign":"Rubel szimbólum","Latin capital letter a with macron":"Latin nagy a betű macronnal","Latin small letter a with macron":"Latin kis a betű macronnal","Latin capital letter a with breve":"Latin nagy a betű brevével","Latin small letter a with breve":"Latin kis a betű brevével","Latin capital letter a with ogonek":"Latin nagy a betű ogonekkel","Latin small letter a with ogonek":"Latin kis a betű ogonekkel","Latin capital letter c with acute":"Latin nagy c betű éles ékezettel","Latin small letter c with acute":"Latin kis c betű betű éles ékezettel","Latin capital letter c with circumflex":"Latin nagy c betű háztetÅ‘ ékezettel","Latin small letter c with circumflex":"Latin kis c betű betű háztetÅ‘ ékezettel","Latin capital letter c with dot above":"Latin nagy c betű egy pontos ékezettel","Latin small letter c with dot above":"Latin kis c betű egy pontos ékezettel","Latin capital letter c with caron":"Latin nagy c betű hacsekkel","Latin small letter c with caron":"Latin kis c betű hacsekkel","Latin capital letter d with caron":"Latin nagy d betű hacsekkel","Latin small letter d with caron":"Latin kis d betű hacsekkel","Latin capital letter d with stroke":"Latin nagy d betű áthúzva","Latin small letter d with stroke":"Latin kis d betű áthúzva","Latin capital letter e with macron":"Latin nagy e betű macronnal","Latin small letter e with macron":"Latin kis e betű macronnal","Latin capital letter e with breve":"Latin nagy e betű brevével","Latin small letter e with breve":"Latin kis e betű brevével","Latin capital letter e with dot above":"Latin nagy e betű egy pontos ékezettel","Latin small letter e with dot above":"Latin kis e betű egy pontos ékezettel","Latin capital letter e with ogonek":"Latin nagy e betű ogonekkel","Latin small letter e with ogonek":"Latin kis e betű ogonekkel","Latin capital letter e with caron":"Latin nagy e betű hacsekkel","Latin small letter e with caron":"Latin kis e betű hacsekkel","Latin capital letter g with circumflex":"Latin nagy g betű háztetÅ‘ ékezettel","Latin small letter g with circumflex":"Latin kis g betű háztetÅ‘ ékezettel","Latin capital letter g with breve":"Latin nagy g betű brevével","Latin small letter g with breve":"Latin kis g betű brevével","Latin capital letter g with dot above":"Latin nagy g betű egy pontos ékezettel","Latin small letter g with dot above":"Latin kis g betű egy pontos ékezettel","Latin capital letter g with cedilla":"Latin nagy g betű cedillával","Latin small letter g with cedilla":"Latin kis g betű cedillával","Latin capital letter h with circumflex":"Latin nagy h betű háztetÅ‘ ékezettel","Latin small letter h with circumflex":"Latin kis h betű háztetÅ‘ ékezettel","Latin capital letter h with stroke":"Latin nagy h betű áthúzva","Latin small letter h with stroke":"Latin kis h betű áthúzva","Latin capital letter i with tilde":"Latin nagy i betű tildével","Latin small letter i with tilde":"Latin kis i betű tildével","Latin capital letter i with macron":"Latin nagy i betű macronnal","Latin small letter i with macron":"Latin kis i betű macronnal","Latin capital letter i with breve":"Latin nagy i betű brevével","Latin small letter i with breve":"Latin kis i betű brevével","Latin capital letter i with ogonek":"Latin nagy i betű ogonekkel","Latin small letter i with ogonek":"Latin kis i betű ogonekkel","Latin capital letter i with dot above":"Latin nagy i betű egy pontos ékezettel","Latin small letter dotless i":"Latin pont nélküli kis i betű","Latin capital ligature ij":"Latin nagy ij ligatúra","Latin small ligature ij":"Latin kis ij ligatúra","Latin capital letter j with circumflex":"Latin nagy j betű háztetÅ‘ ékezettel","Latin small letter j with circumflex":"Latin kis j betű háztetÅ‘ ékezettel","Latin capital letter k with cedilla":"Latin nagy k betű cedillával","Latin small letter k with cedilla":"Latin kis k betű cedillával","Latin small letter kra":"latin kisbetűs kra","Latin capital letter l with acute":"Latin nagy l betű éles ékezettel","Latin small letter l with acute":"Latin kis l betű éles ékezettel","Latin capital letter l with cedilla":"Latin nagy l betű cedillával","Latin small letter l with cedilla":"Latin kis l betű cedillával","Latin capital letter l with caron":"Latin nagy l betű hacsekkel","Latin small letter l with caron":"Latin kis l betű hacsekkel","Latin capital letter l with middle dot":"Latin nagy l betű középen ponttal","Latin small letter l with middle dot":"Latin kis l betű középen ponttal","Latin capital letter l with stroke":"Latin nagy l betű áthúzva","Latin small letter l with stroke":"Latin kis l betű áthúzva","Latin capital letter n with acute":"Latin nagy n betű éles ékezettel","Latin small letter n with acute":"Latin kis n betű éles ékezettel","Latin capital letter n with cedilla":"Latin nagy n betű cedillával","Latin small letter n with cedilla":"Latin kis n betű cedillával","Latin capital letter n with caron":"Latin nagy n betű hacsekkel","Latin small letter n with caron":"Latin kis n betű hacsekkel","Latin small letter n preceded by apostrophe":"Latin kis n betű elÅ‘tte aposztróffal","Latin capital letter eng":"Latin nagybetűs eng","Latin small letter eng":"Latin kisbetűs eng","Latin capital letter o with macron":"Latin nagy o betű macronnal","Latin small letter o with macron":"Latin kis o betű macronnal","Latin capital letter o with breve":"Latin nagy o betű brevével","Latin small letter o with breve":"Latin kis o betű brevével","Latin capital letter o with double acute":"Latin nagy o betű kettÅ‘s éles ékezettel","Latin small letter o with double acute":"Latin kis o betű kettÅ‘s éles ékezettel","Latin capital ligature oe":"Latin nagy oe ligatúra","Latin small ligature oe":"Latin kis oe ligatúra","Latin capital letter r with acute":"Latin nagy r betű éles ékezettel","Latin small letter r with acute":"Latin kis r betű éles ékezettel","Latin capital letter r with cedilla":"Latin nagy r betű cedillával","Latin small letter r with cedilla":"Latin kis r betű cedillával","Latin capital letter r with caron":"Latin nagy r betű hacsekkel","Latin small letter r with caron":"Latin kis r betű hacsekkel","Latin capital letter s with acute":"Latin nagy s betű éles ékezettel","Latin small letter s with acute":"Latin kis s betű éles ékezettel","Latin capital letter s with circumflex":"Latin nagy s betű háztetÅ‘ ékezettel","Latin small letter s with circumflex":"Latin kis s betű háztetÅ‘ ékezettel","Latin capital letter s with cedilla":"Latin nagy s betű cedillával","Latin small letter s with cedilla":"Latin kis s betű cedillával","Latin capital letter s with caron":"Latin nagy s betű hacsekkel","Latin small letter s with caron":"Latin kis s betű hacsekkel","Latin capital letter t with cedilla":"Latin nagy t betű cedillával","Latin small letter t with cedilla":"Latin kis t betű cedillával","Latin capital letter t with caron":"Latin nagy t betű hacsekkel","Latin small letter t with caron":"Latin kis t betű hacsekkel","Latin capital letter t with stroke":"Latin nagy t betű áthúzva","Latin small letter t with stroke":"Latin kis t betű áthúzva","Latin capital letter u with tilde":"Latin nagy u betű tildével","Latin small letter u with tilde":"Latin kis u betű tildével","Latin capital letter u with macron":"Latin nagy u betű macronnal","Latin small letter u with macron":"Latin kis u betű macronnal","Latin capital letter u with breve":"Latin nagy u betű brevével","Latin small letter u with breve":"Latin kis u betű brevével","Latin capital letter u with ring above":"Latin nagy u betű karika ékezettel","Latin small letter u with ring above":"Latin kis u betű karika ékezettel","Latin capital letter u with double acute":"Latin nagy u betű kettÅ‘s éles ékezettel","Latin small letter u with double acute":"Latin kis u betű kettÅ‘s éles ékezettel","Latin capital letter u with ogonek":"Latin nagy u betű ogonekkel","Latin small letter u with ogonek":"Latin kis u betű ogonekkel","Latin capital letter w with circumflex":"Latin nagy w betű háztetÅ‘ ékezettel","Latin small letter w with circumflex":"Latin kis w betű háztetÅ‘ ékezettel","Latin capital letter y with circumflex":"Latin nagy y betű háztetÅ‘ ékezettel","Latin small letter y with circumflex":"Latin kis y betű háztetÅ‘ ékezettel","Latin capital letter y with diaeresis":"Latin nagy y betű diarézissel","Latin capital letter z with acute":"Latin nagy z betű éles ékezettel","Latin small letter z with acute":"Latin kis z betű éles ékezettel","Latin capital letter z with dot above":"Latin nagy z betű egy pontos ékezettel","Latin small letter z with dot above":"Latin kis z betű egy pontos ékezettel","Latin capital letter z with caron":"Latin nagy z betű hacsekkel","Latin small letter z with caron":"Latin kis z betű hacsekkel","Latin small letter long s":"Latin kisbetűs hosszú s","Less-than sign":"Kisebb jel","Greater-than sign":"Nagyobb jel","Less-than or equal to":"Kisebb vagy egyenlÅ‘ jel","Greater-than or equal to":"Nagyobb vagy egyenlÅ‘ jel","En dash":"FélkvirtmÃnusz","Em dash":"KvirtmÃnusz",Macron:"Macron",Overline:"Föléhúzás","Degree sign":"Fokjel","Minus sign":"MÃnuszjel","Plus-minus sign":"PluszmÃnusz-jel","Division sign":"Osztásjel","Fraction slash":"Törtvonás","Multiplication sign":"Szorzójel","Latin small letter f with hook":"Latin kisbetűs f-horog",Integral:"Integrál","N-ary summation":"N-áris szumma",Infinity:"Végtelen","Square root":"Négyzetgyök","Tilde operator":"Hullámvonal","Approximately equal to":"KözelÃtÅ‘leg egyenlÅ‘","Almost equal to":"Majdnem egyenlÅ‘","Not equal to":"Nem egyenlÅ‘","Identical to":"Azonos","Element of":"Része","Not an element of":"Nem része","Contains as member":"Tagként tartalmaz","N-ary product":"N-áris produktum","Logical and":"Logikai és ","Logical or":"Logikai vagy","Not sign":"Nem szimbólum",Intersection:"Metszet",Union:"EgyesÃtés","Partial differential":"Parciális derivált","For all":"Mindenre","There exists":"Létezik","Empty set":"Ãœres halmaz",Nabla:"Nabla","Asterisk operator":"Csillag műveleti jel","Proportional to":"Aránylik",Angle:"Szög","Vulgar fraction one quarter":"Vulgáris tört egynegyed","Vulgar fraction one half":"Vulgáris tört egyketted","Vulgar fraction three quarters":"Vulgáris tört háromnegyed","Single left-pointing angle quotation mark":"Szimpla bal oldali szögletes idézÅ‘jel","Single right-pointing angle quotation mark":"Jobb oldali szimpla szögletes idézÅ‘jel","Left-pointing double angle quotation mark":"Bal oldali dupla szögletes idézÅ‘jel","Right-pointing double angle quotation mark":"Jobb oldali dupla szögletes idézÅ‘jel","Left single quotation mark":"Bal oldali szimpla idézÅ‘jel","Right single quotation mark":"Jobb oldali szimpla idézÅ‘jel","Left double quotation mark":"Bal oldali dupla idézÅ‘jel","Right double quotation mark":"Jobb oldali dupla idézÅ‘jel","Single low-9 quotation mark":"Szimpla 9-es alakú alsó idézÅ‘jel","Double low-9 quotation mark":"Dupla 9-es alakú alsó idézÅ‘jel","Inverted exclamation mark":"FordÃtott felkiáltójel","Inverted question mark":"FordÃtott kérdÅ‘jel","Two dot leader":"Két bevezetÅ‘ pont","Horizontal ellipsis":"VÃzszintes három pont","Double dagger":"KettÅ‘s kereszt","Per mille sign":"Ezrelékjel","Per ten thousand sign":"TÃzezrelékjel","Double exclamation mark":"KettÅ‘s felkiáltójel","Question exclamation mark":"KérdÅ‘- és felkiáltójel","Exclamation question mark":"Felkiáltó- és kérdÅ‘jel","Double question mark":"Dupla kérdÅ‘jel","Copyright sign":"Copyright jele","Registered sign":"Bejegyzett védjegy szimbólum","Trade mark sign":"Kereskedelmi védjegy szimbólum","Section sign":"Szakaszjel","Paragraph sign":"Bekezdésjel","Reversed paragraph sign":"FordÃtott bekezdésjel","Character categories":"Karakterek kategóriái",Styles:"StÃlusok","Multiple styles":"Többféle stÃlus","Block styles":"BlokkstÃlusok","Text styles":"SzövegstÃlusok","Insert table":"Táblázat beszúrása","Header column":"Oszlop fejléc","Insert column left":"Oszlop beszúrása balra","Insert column right":"Oszlop beszúrása jobbra","Delete column":"Oszlop törlése","Select column":"Oszlop kijelölése",Column:"Oszlop","Header row":"Sor fejléc","Insert row below":"Sor beszúrása alá","Insert row above":"Sor beszúrása fölé","Delete row":"Sor törlése","Select row":"Sor kijelölése",Row:"Sor","Merge cell up":"Cellák egyesÃtése felfelé","Merge cell right":"Cellák egyesÃtése jobbra","Merge cell down":"Cellák egyesÃtése lefelé","Merge cell left":"Cellák egyesÃtése balra","Split cell vertically":"Cella felosztása függÅ‘legesen","Split cell horizontally":"Cella felosztása vÃzszintesen","Merge cells":"CellaegyesÃtés","Table toolbar":"Táblázat eszköztár","Table properties":"Táblázat tulajdonságai","Cell properties":"Cella tulajdonságok",Border:"Keret",Style:"StÃlus",Width:"Szélesség",Height:"Magasság",Color:"SzÃn",Background:"Háttér",Padding:"Térköz",Dimensions:"Méretek","Table cell text alignment":"Szöveg igazÃtása a cellában",Alignment:"IgazÃtás","Horizontal text alignment toolbar":"VÃzszintes szövegigazÃtási eszköztár","Vertical text alignment toolbar":"FüggÅ‘leges szövegigazÃtási eszköztár","Table alignment toolbar":"TáblázatigazÃtási eszköztár",None:"Nincs",Solid:"Tömör",Dotted:"Pontozott",Dashed:"Szaggatott",Double:"Dupla",Groove:"Ãrok",Ridge:"Gerinc",Inset:"MélyÃtett",Outset:"KiemelkedÅ‘","Align cell text to the left":"Szöveg igazÃtása a cellában balra","Align cell text to the center":"Szöveg igazÃtása a cellában középre","Align cell text to the right":"Szöveg igazÃtása a cellában jobbra","Justify cell text":"Szöveg igazÃtása a cellában sorkizártra","Align cell text to the top":"Szöveg igazÃtása a cellában felülre","Align cell text to the middle":"Szöveg igazÃtása a cellában középre","Align cell text to the bottom":"Szöveg igazÃtása a cellában alulra","Align table to the left":"Tábla igazÃtása balra","Center table":"Tábla igazÃtása középre","Align table to the right":"Tábla igazÃtása jobbra","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A szÃn érványtelen. Próbáld Ãgy \"#FF0000\" vagy \"rgb(255,0,0)\" vagy \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Az érték érvénytelen. Próbáld Ãgy \"10px\" vagy \"2em\" vagy csak egyszerűen \"2\".","Color picker":"SzÃn választása","Toggle caption off":"Felirat kikapcsolása","Toggle caption on":"Felirat bekapcsolása","Enter table caption":"Táblázat feliratának megadása","Rich Text Editor":"BÅ‘vÃtett szövegszerkesztÅ‘","Editor editing area: %0":"SzerkesztÅ‘ szerkesztési területe: %0","Edit block":"Blokk szerkesztése","Click to edit block":"Kattintson a blokk szerkesztéséhez","Drag to move":"Húzza a mozgatáshoz",Next:"KövetkezÅ‘",Previous:"ElÅ‘zÅ‘","Editor toolbar":"SzerkesztÅ‘ eszköztár","Dropdown toolbar":"LenyÃló eszköztár",Black:"Fekete","Dim grey":"Halvány szürke",Grey:"Szürke","Light grey":"Világosszürke",White:"Fehér",Red:"Piros",Orange:"Narancs",Yellow:"Sárga","Light green":"Világoszöld",Green:"Zöld",Aquamarine:"Kékeszöld",Turquoise:"Türkiz","Light blue":"Világoskék",Blue:"Kék",Purple:"Lila","Editor block content toolbar":"SzerkesztÅ‘ - tartalomblokk eszköztár","Editor contextual toolbar":"SzerkesztÅ‘ - szövegre vonatkozó eszköztár",HEX:"HEX szÃnkód",Accept:"Elfogad","No results found":"Nincs találat","No searchable items":"Nincsenek kereshetÅ‘ elemek","Editor dialog":"SzerkesztÅ‘i párbeszédpanel",Close:"Bezárás",Undo:"Visszavonás",Redo:"Újra","Upload in progress":"A feltöltés folyamatban","Widget toolbar":"Widget eszköztár","Insert paragraph before block":"Bekezdés beszúrása elé","Insert paragraph after block":"Bekezdés beszúrása utána","Press Enter to type after or press Shift + Enter to type before the widget":"Az Enter billentyű megnyomásával a widget után, a Shift + Enter kombinációval pedig a widget elÅ‘tt Ãrhatja be a szöveget","Words: %0":"Szavak: %0","Characters: %0":"Karakterek: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['hu'] = d['hu'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Balra igazÃtás","Align right":"Jobbra igazÃtás","Align center":"Középre igazÃtás",Justify:"Sorkizárt","Text alignment":"Szöveg igazÃtása","Text alignment toolbar":"Szöveg igazÃtás eszköztár",Bold:"Félkövér",Italic:"DÅ‘lt",Underline:"Aláhúzott",Code:"Forráskód",Strikethrough:"Ãthúzott",Subscript:"Alsó index",Superscript:"FelsÅ‘ index","Block quote":"Idézet","Insert code block":"Kód blokk beszúrása","Plain text":"Egyszerű szöveg",Cancel:"Mégsem",Clear:"Törlés","Remove color":"SzÃn eltávolÃtása","Restore default":"Alapértelmezés visszaállÃtása",Save:"Mentés","Show more items":"További elemek","%0 of %1":"%0 / %1","Cannot upload file:":"Nem sikerült a fájl feltöltése:","Rich Text Editor. Editing area: %0":"Rich text szerkesztÅ‘. Szerkesztési terület: %0","Insert with file manager":"Beillesztés fájlkezelÅ‘vel","Replace with file manager":"Kicserélés fájlkezelÅ‘vel","Insert image with file manager":"Illessze be a képet a fájlkezelÅ‘vel","Replace image with file manager":"Cserélje ki a képet a fájlkezelÅ‘vel","Find and replace":"Keresés és csere","Find in text…":"Keresés szövegben...",Find:"Keresés","Previous result":"ElÅ‘zÅ‘ találat","Next result":"KövetkezÅ‘ találat",Replace:"Csere","Replace all":"Mind cserél","Match case":"Nagybetű érzékeny","Whole words only":"Csak teljes szavak","Replace with…":"Csere erre...","Text to find must not be empty.":"A keresendÅ‘ szöveg nem lehet üres.","Tip: Find some text first in order to replace it.":"Tipp: ElÅ‘ször keressen egy szöveget, hogy lecserélhesse.","Advanced options":"Speciális beállÃtások","Font Size":"Betűméret",Tiny:"Apró",Small:"Kicsi",Big:"Nagy",Huge:"Hatalmas","Font Family":"BetűtÃpus",Default:"Alapértelmezett","Font Color":"BetűszÃn","Font Background Color":"Betű háttérszÃn","Document colors":"Dokumentum szÃnek",Paragraph:"Bekezdés",Heading:"StÃlusok","Choose heading":"StÃlus megadása","Heading 1":"CÃmsor 1","Heading 2":"CÃmsor 2","Heading 3":"CÃmsor 3","Heading 4":"CÃmsor 4","Heading 5":"CÃmsor 5","Heading 6":"CÃmsor 6","Type your title":"Adja meg a cÃmet","Type or paste your content here.":"Ãrja be, vagy illessze be a tartalmat.","Horizontal line":"VÃzszintes elválasztóvonal","HTML object":"HTML objektum","Increase indent":"Behúzás növelése","Decrease indent":"Behúzás csökkentése",Unlink:"Link eltávolÃtása",Link:"Link","Link URL":"URL link","Link image":"Hivatkozás","Edit link":"Link szerkesztése","Open link in new tab":"Link megnyitása új ablakban","This link has no URL":"A link nem tartalmaz URL-t","Open in a new tab":"Megnyitás új lapon",Downloadable:"LetölthetÅ‘","Numbered List":"Számozott lista","Bulleted List":"Pontozott lista","To-do List":"Tennivaló lista","Bulleted list styles toolbar":"Felsorolásos lista stÃlusú eszköztár","Numbered list styles toolbar":"Számozott lista stÃlusú eszköztár","Toggle the disc list style":"Korong stÃlusú lista bekapcsolása","Toggle the circle list style":"Kör stÃlusú lista bekapcsolása","Toggle the square list style":"Négyzet stÃlusú lista bekapcsolása","Toggle the decimal list style":"Tizedesjegy stÃlusú lista bekapcsolása","Toggle the decimal with leading zero list style":"Zéróval kezdÅ‘dÅ‘ tizedesjegy stÃlusú lista bekapcsolása","Toggle the lower–roman list style":"Kis római számok stÃlusú lista bekapcsolása","Toggle the upper–roman list style":"Nagy római számok stÃlusú lista bekapcsolása","Toggle the lower–latin list style":"Kis latin betűs stÃlusú lista bekapcsolása","Toggle the upper–latin list style":"Nagy latin betűs stÃlusú lista bekapcsolása",Disc:"Korong",Circle:"Kör",Square:"Négyzet",Decimal:"Szám","Decimal with leading zero":"Nullával kezdÅ‘dÅ‘ szám","Lower–roman":"Kisbetűs római szám","Upper-roman":"Nagybetűs római szám","Lower-latin":"Kisbetűs latin szám","Upper-latin":"Nagybetűs latin szám","List properties":"Lista tulajdonságai","Start at":"KezdÅ‘pont","Start index must be greater than 0.":"A kezdÅ‘ index nagyobb kell legyen mint 0.","Reversed order":"FordÃtott sorrend","Remove Format":"Formázás eltávolÃtása","Select all":"Mindet kijelöl","Show blocks":"Blokkok megjelenÃtése",Source:"Forrás","Special characters":"Speciális karakterek",All:"Összes",Arrows:"Nyilak",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematikai",Text:"Szöveg","leftwards simple arrow":"balra mutató egyszerű nyÃl","rightwards simple arrow":"jobbra mutató egyszerű nyÃl","upwards simple arrow":"felfelé mutató egyszerű nyÃl","downwards simple arrow":"lefelé mutató egyszerű nyÃl","leftwards double arrow":"dupla nyÃl balra","rightwards double arrow":"dupla nyÃl jobbra","upwards double arrow":"dupla nyÃl felfelé","downwards double arrow":"dupla nyÃl lefelé","leftwards dashed arrow":"szaggatott nyÃl balra","rightwards dashed arrow":"szaggatott nyÃl jobbra","upwards dashed arrow":"szaggatott nyÃl felfelé","downwards dashed arrow":"szaggatott nyÃl lefelé","leftwards arrow to bar":"vonalig érÅ‘ balra nyÃl","rightwards arrow to bar":"vonalig érÅ‘ jobbra nyÃl","upwards arrow to bar":"vonalig érÅ‘ felfele nyÃl","downwards arrow to bar":"vonalig érÅ‘ lefele nyÃl","up down arrow with base":"fel-le nyÃl alapvonallal","back with leftwards arrow above":"back felirat felette balra nyÃllal","end with leftwards arrow above":"end felirat felette balra nyÃllal","on with exclamation mark with left right arrow above":"on felirat felkiáltójellel és felette jobbra-balra nyÃllal","soon with rightwards arrow above":"soon felirat felette jobbra nyÃllal","top with upwards arrow above":"top felirat felette felfele nyÃllal","Dollar sign":"Dollár jel","Euro sign":"Euró jel","Yen sign":"Yen jel","Pound sign":"Font jel","Cent sign":"Cent jel","Euro-currency sign":"Euró pénznem jel","Colon sign":"KettÅ‘spont","Cruzeiro sign":"Cruizero szimbólum","French franc sign":"Francia frank jel","Lira sign":"LÃra jel","Currency sign":"Pénznem jel","Bitcoin sign":"Bitcoin jel","Mill sign":"Mill szimbólum","Naira sign":"Naira szimbólum","Peseta sign":"Peseta szimbólum","Rupee sign":"Rúpia szimbólum","Won sign":"Won szimbólum","New sheqel sign":"Új sékel szimbólum","Dong sign":"Dong szimbólum","Kip sign":"Kip szimbólum","Tugrik sign":"Tugrik szimbólum","Drachma sign":"Drachma szimbólum","German penny sign":"Német pfennig szimbólum","Peso sign":"Peso szimbólum","Guarani sign":"Guarani szimbólum","Austral sign":"Ausztrál szimbólum","Hryvnia sign":"Hrivnya szimbólum","Cedi sign":"Cedi szimbólum","Livre tournois sign":"Livre tournois szimbólum","Spesmilo sign":"Spesmilo szimbólum","Tenge sign":"Tenge szimbólum","Indian rupee sign":"Indiai rúpia szimbólum","Turkish lira sign":"Török lÃra szimbólum","Nordic mark sign":"Északi márka szimbólum","Manat sign":"Manat szimbólum","Ruble sign":"Rubel szimbólum","Latin capital letter a with macron":"Latin nagy a betű macronnal","Latin small letter a with macron":"Latin kis a betű macronnal","Latin capital letter a with breve":"Latin nagy a betű brevével","Latin small letter a with breve":"Latin kis a betű brevével","Latin capital letter a with ogonek":"Latin nagy a betű ogonekkel","Latin small letter a with ogonek":"Latin kis a betű ogonekkel","Latin capital letter c with acute":"Latin nagy c betű éles ékezettel","Latin small letter c with acute":"Latin kis c betű betű éles ékezettel","Latin capital letter c with circumflex":"Latin nagy c betű háztetÅ‘ ékezettel","Latin small letter c with circumflex":"Latin kis c betű betű háztetÅ‘ ékezettel","Latin capital letter c with dot above":"Latin nagy c betű egy pontos ékezettel","Latin small letter c with dot above":"Latin kis c betű egy pontos ékezettel","Latin capital letter c with caron":"Latin nagy c betű hacsekkel","Latin small letter c with caron":"Latin kis c betű hacsekkel","Latin capital letter d with caron":"Latin nagy d betű hacsekkel","Latin small letter d with caron":"Latin kis d betű hacsekkel","Latin capital letter d with stroke":"Latin nagy d betű áthúzva","Latin small letter d with stroke":"Latin kis d betű áthúzva","Latin capital letter e with macron":"Latin nagy e betű macronnal","Latin small letter e with macron":"Latin kis e betű macronnal","Latin capital letter e with breve":"Latin nagy e betű brevével","Latin small letter e with breve":"Latin kis e betű brevével","Latin capital letter e with dot above":"Latin nagy e betű egy pontos ékezettel","Latin small letter e with dot above":"Latin kis e betű egy pontos ékezettel","Latin capital letter e with ogonek":"Latin nagy e betű ogonekkel","Latin small letter e with ogonek":"Latin kis e betű ogonekkel","Latin capital letter e with caron":"Latin nagy e betű hacsekkel","Latin small letter e with caron":"Latin kis e betű hacsekkel","Latin capital letter g with circumflex":"Latin nagy g betű háztetÅ‘ ékezettel","Latin small letter g with circumflex":"Latin kis g betű háztetÅ‘ ékezettel","Latin capital letter g with breve":"Latin nagy g betű brevével","Latin small letter g with breve":"Latin kis g betű brevével","Latin capital letter g with dot above":"Latin nagy g betű egy pontos ékezettel","Latin small letter g with dot above":"Latin kis g betű egy pontos ékezettel","Latin capital letter g with cedilla":"Latin nagy g betű cedillával","Latin small letter g with cedilla":"Latin kis g betű cedillával","Latin capital letter h with circumflex":"Latin nagy h betű háztetÅ‘ ékezettel","Latin small letter h with circumflex":"Latin kis h betű háztetÅ‘ ékezettel","Latin capital letter h with stroke":"Latin nagy h betű áthúzva","Latin small letter h with stroke":"Latin kis h betű áthúzva","Latin capital letter i with tilde":"Latin nagy i betű tildével","Latin small letter i with tilde":"Latin kis i betű tildével","Latin capital letter i with macron":"Latin nagy i betű macronnal","Latin small letter i with macron":"Latin kis i betű macronnal","Latin capital letter i with breve":"Latin nagy i betű brevével","Latin small letter i with breve":"Latin kis i betű brevével","Latin capital letter i with ogonek":"Latin nagy i betű ogonekkel","Latin small letter i with ogonek":"Latin kis i betű ogonekkel","Latin capital letter i with dot above":"Latin nagy i betű egy pontos ékezettel","Latin small letter dotless i":"Latin pont nélküli kis i betű","Latin capital ligature ij":"Latin nagy ij ligatúra","Latin small ligature ij":"Latin kis ij ligatúra","Latin capital letter j with circumflex":"Latin nagy j betű háztetÅ‘ ékezettel","Latin small letter j with circumflex":"Latin kis j betű háztetÅ‘ ékezettel","Latin capital letter k with cedilla":"Latin nagy k betű cedillával","Latin small letter k with cedilla":"Latin kis k betű cedillával","Latin small letter kra":"latin kisbetűs kra","Latin capital letter l with acute":"Latin nagy l betű éles ékezettel","Latin small letter l with acute":"Latin kis l betű éles ékezettel","Latin capital letter l with cedilla":"Latin nagy l betű cedillával","Latin small letter l with cedilla":"Latin kis l betű cedillával","Latin capital letter l with caron":"Latin nagy l betű hacsekkel","Latin small letter l with caron":"Latin kis l betű hacsekkel","Latin capital letter l with middle dot":"Latin nagy l betű középen ponttal","Latin small letter l with middle dot":"Latin kis l betű középen ponttal","Latin capital letter l with stroke":"Latin nagy l betű áthúzva","Latin small letter l with stroke":"Latin kis l betű áthúzva","Latin capital letter n with acute":"Latin nagy n betű éles ékezettel","Latin small letter n with acute":"Latin kis n betű éles ékezettel","Latin capital letter n with cedilla":"Latin nagy n betű cedillával","Latin small letter n with cedilla":"Latin kis n betű cedillával","Latin capital letter n with caron":"Latin nagy n betű hacsekkel","Latin small letter n with caron":"Latin kis n betű hacsekkel","Latin small letter n preceded by apostrophe":"Latin kis n betű elÅ‘tte aposztróffal","Latin capital letter eng":"Latin nagybetűs eng","Latin small letter eng":"Latin kisbetűs eng","Latin capital letter o with macron":"Latin nagy o betű macronnal","Latin small letter o with macron":"Latin kis o betű macronnal","Latin capital letter o with breve":"Latin nagy o betű brevével","Latin small letter o with breve":"Latin kis o betű brevével","Latin capital letter o with double acute":"Latin nagy o betű kettÅ‘s éles ékezettel","Latin small letter o with double acute":"Latin kis o betű kettÅ‘s éles ékezettel","Latin capital ligature oe":"Latin nagy oe ligatúra","Latin small ligature oe":"Latin kis oe ligatúra","Latin capital letter r with acute":"Latin nagy r betű éles ékezettel","Latin small letter r with acute":"Latin kis r betű éles ékezettel","Latin capital letter r with cedilla":"Latin nagy r betű cedillával","Latin small letter r with cedilla":"Latin kis r betű cedillával","Latin capital letter r with caron":"Latin nagy r betű hacsekkel","Latin small letter r with caron":"Latin kis r betű hacsekkel","Latin capital letter s with acute":"Latin nagy s betű éles ékezettel","Latin small letter s with acute":"Latin kis s betű éles ékezettel","Latin capital letter s with circumflex":"Latin nagy s betű háztetÅ‘ ékezettel","Latin small letter s with circumflex":"Latin kis s betű háztetÅ‘ ékezettel","Latin capital letter s with cedilla":"Latin nagy s betű cedillával","Latin small letter s with cedilla":"Latin kis s betű cedillával","Latin capital letter s with caron":"Latin nagy s betű hacsekkel","Latin small letter s with caron":"Latin kis s betű hacsekkel","Latin capital letter t with cedilla":"Latin nagy t betű cedillával","Latin small letter t with cedilla":"Latin kis t betű cedillával","Latin capital letter t with caron":"Latin nagy t betű hacsekkel","Latin small letter t with caron":"Latin kis t betű hacsekkel","Latin capital letter t with stroke":"Latin nagy t betű áthúzva","Latin small letter t with stroke":"Latin kis t betű áthúzva","Latin capital letter u with tilde":"Latin nagy u betű tildével","Latin small letter u with tilde":"Latin kis u betű tildével","Latin capital letter u with macron":"Latin nagy u betű macronnal","Latin small letter u with macron":"Latin kis u betű macronnal","Latin capital letter u with breve":"Latin nagy u betű brevével","Latin small letter u with breve":"Latin kis u betű brevével","Latin capital letter u with ring above":"Latin nagy u betű karika ékezettel","Latin small letter u with ring above":"Latin kis u betű karika ékezettel","Latin capital letter u with double acute":"Latin nagy u betű kettÅ‘s éles ékezettel","Latin small letter u with double acute":"Latin kis u betű kettÅ‘s éles ékezettel","Latin capital letter u with ogonek":"Latin nagy u betű ogonekkel","Latin small letter u with ogonek":"Latin kis u betű ogonekkel","Latin capital letter w with circumflex":"Latin nagy w betű háztetÅ‘ ékezettel","Latin small letter w with circumflex":"Latin kis w betű háztetÅ‘ ékezettel","Latin capital letter y with circumflex":"Latin nagy y betű háztetÅ‘ ékezettel","Latin small letter y with circumflex":"Latin kis y betű háztetÅ‘ ékezettel","Latin capital letter y with diaeresis":"Latin nagy y betű diarézissel","Latin capital letter z with acute":"Latin nagy z betű éles ékezettel","Latin small letter z with acute":"Latin kis z betű éles ékezettel","Latin capital letter z with dot above":"Latin nagy z betű egy pontos ékezettel","Latin small letter z with dot above":"Latin kis z betű egy pontos ékezettel","Latin capital letter z with caron":"Latin nagy z betű hacsekkel","Latin small letter z with caron":"Latin kis z betű hacsekkel","Latin small letter long s":"Latin kisbetűs hosszú s","Less-than sign":"Kisebb jel","Greater-than sign":"Nagyobb jel","Less-than or equal to":"Kisebb vagy egyenlÅ‘ jel","Greater-than or equal to":"Nagyobb vagy egyenlÅ‘ jel","En dash":"FélkvirtmÃnusz","Em dash":"KvirtmÃnusz",Macron:"Macron",Overline:"Föléhúzás","Degree sign":"Fokjel","Minus sign":"MÃnuszjel","Plus-minus sign":"PluszmÃnusz-jel","Division sign":"Osztásjel","Fraction slash":"Törtvonás","Multiplication sign":"Szorzójel","Latin small letter f with hook":"Latin kisbetűs f-horog",Integral:"Integrál","N-ary summation":"N-áris szumma",Infinity:"Végtelen","Square root":"Négyzetgyök","Tilde operator":"Hullámvonal","Approximately equal to":"KözelÃtÅ‘leg egyenlÅ‘","Almost equal to":"Majdnem egyenlÅ‘","Not equal to":"Nem egyenlÅ‘","Identical to":"Azonos","Element of":"Része","Not an element of":"Nem része","Contains as member":"Tagként tartalmaz","N-ary product":"N-áris produktum","Logical and":"Logikai és ","Logical or":"Logikai vagy","Not sign":"Nem szimbólum",Intersection:"Metszet",Union:"EgyesÃtés","Partial differential":"Parciális derivált","For all":"Mindenre","There exists":"Létezik","Empty set":"Ãœres halmaz",Nabla:"Nabla","Asterisk operator":"Csillag műveleti jel","Proportional to":"Aránylik",Angle:"Szög","Vulgar fraction one quarter":"Vulgáris tört egynegyed","Vulgar fraction one half":"Vulgáris tört egyketted","Vulgar fraction three quarters":"Vulgáris tört háromnegyed","Single left-pointing angle quotation mark":"Szimpla bal oldali szögletes idézÅ‘jel","Single right-pointing angle quotation mark":"Jobb oldali szimpla szögletes idézÅ‘jel","Left-pointing double angle quotation mark":"Bal oldali dupla szögletes idézÅ‘jel","Right-pointing double angle quotation mark":"Jobb oldali dupla szögletes idézÅ‘jel","Left single quotation mark":"Bal oldali szimpla idézÅ‘jel","Right single quotation mark":"Jobb oldali szimpla idézÅ‘jel","Left double quotation mark":"Bal oldali dupla idézÅ‘jel","Right double quotation mark":"Jobb oldali dupla idézÅ‘jel","Single low-9 quotation mark":"Szimpla 9-es alakú alsó idézÅ‘jel","Double low-9 quotation mark":"Dupla 9-es alakú alsó idézÅ‘jel","Inverted exclamation mark":"FordÃtott felkiáltójel","Inverted question mark":"FordÃtott kérdÅ‘jel","Two dot leader":"Két bevezetÅ‘ pont","Horizontal ellipsis":"VÃzszintes három pont","Double dagger":"KettÅ‘s kereszt","Per mille sign":"Ezrelékjel","Per ten thousand sign":"TÃzezrelékjel","Double exclamation mark":"KettÅ‘s felkiáltójel","Question exclamation mark":"KérdÅ‘- és felkiáltójel","Exclamation question mark":"Felkiáltó- és kérdÅ‘jel","Double question mark":"Dupla kérdÅ‘jel","Copyright sign":"Copyright jele","Registered sign":"Bejegyzett védjegy szimbólum","Trade mark sign":"Kereskedelmi védjegy szimbólum","Section sign":"Szakaszjel","Paragraph sign":"Bekezdésjel","Reversed paragraph sign":"FordÃtott bekezdésjel","Character categories":"Karakterek kategóriái",Styles:"StÃlusok","Multiple styles":"Többféle stÃlus","Block styles":"BlokkstÃlusok","Text styles":"SzövegstÃlusok","Insert table":"Táblázat beszúrása","Header column":"Oszlop fejléc","Insert column left":"Oszlop beszúrása balra","Insert column right":"Oszlop beszúrása jobbra","Delete column":"Oszlop törlése","Select column":"Oszlop kijelölése",Column:"Oszlop","Header row":"Sor fejléc","Insert row below":"Sor beszúrása alá","Insert row above":"Sor beszúrása fölé","Delete row":"Sor törlése","Select row":"Sor kijelölése",Row:"Sor","Merge cell up":"Cellák egyesÃtése felfelé","Merge cell right":"Cellák egyesÃtése jobbra","Merge cell down":"Cellák egyesÃtése lefelé","Merge cell left":"Cellák egyesÃtése balra","Split cell vertically":"Cella felosztása függÅ‘legesen","Split cell horizontally":"Cella felosztása vÃzszintesen","Merge cells":"CellaegyesÃtés","Table toolbar":"Táblázat eszköztár","Table properties":"Táblázat tulajdonságai","Cell properties":"Cella tulajdonságok",Border:"Keret",Style:"StÃlus",Width:"Szélesség",Height:"Magasság",Color:"SzÃn",Background:"Háttér",Padding:"Térköz",Dimensions:"Méretek","Table cell text alignment":"Szöveg igazÃtása a cellában",Alignment:"IgazÃtás","Horizontal text alignment toolbar":"VÃzszintes szövegigazÃtási eszköztár","Vertical text alignment toolbar":"FüggÅ‘leges szövegigazÃtási eszköztár","Table alignment toolbar":"TáblázatigazÃtási eszköztár",None:"Nincs",Solid:"Tömör",Dotted:"Pontozott",Dashed:"Szaggatott",Double:"Dupla",Groove:"Ãrok",Ridge:"Gerinc",Inset:"MélyÃtett",Outset:"KiemelkedÅ‘","Align cell text to the left":"Szöveg igazÃtása a cellában balra","Align cell text to the center":"Szöveg igazÃtása a cellában középre","Align cell text to the right":"Szöveg igazÃtása a cellában jobbra","Justify cell text":"Szöveg igazÃtása a cellában sorkizártra","Align cell text to the top":"Szöveg igazÃtása a cellában felülre","Align cell text to the middle":"Szöveg igazÃtása a cellában középre","Align cell text to the bottom":"Szöveg igazÃtása a cellában alulra","Align table to the left":"Tábla igazÃtása balra","Center table":"Tábla igazÃtása középre","Align table to the right":"Tábla igazÃtása jobbra","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A szÃn érványtelen. Próbáld Ãgy \"#FF0000\" vagy \"rgb(255,0,0)\" vagy \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Az érték érvénytelen. Próbáld Ãgy \"10px\" vagy \"2em\" vagy csak egyszerűen \"2\".","Color picker":"SzÃn választása","Toggle caption off":"Felirat kikapcsolása","Toggle caption on":"Felirat bekapcsolása","Enter table caption":"Táblázat feliratának megadása","Rich Text Editor":"BÅ‘vÃtett szövegszerkesztÅ‘","Editor editing area: %0":"SzerkesztÅ‘ szerkesztési területe: %0","Edit block":"Blokk szerkesztése","Click to edit block":"Kattintson a blokk szerkesztéséhez","Drag to move":"Húzza a mozgatáshoz",Next:"KövetkezÅ‘",Previous:"ElÅ‘zÅ‘","Editor toolbar":"SzerkesztÅ‘ eszköztár","Dropdown toolbar":"LenyÃló eszköztár",Black:"Fekete","Dim grey":"Halvány szürke",Grey:"Szürke","Light grey":"Világosszürke",White:"Fehér",Red:"Piros",Orange:"Narancs",Yellow:"Sárga","Light green":"Világoszöld",Green:"Zöld",Aquamarine:"Kékeszöld",Turquoise:"Türkiz","Light blue":"Világoskék",Blue:"Kék",Purple:"Lila","Editor block content toolbar":"SzerkesztÅ‘ - tartalomblokk eszköztár","Editor contextual toolbar":"SzerkesztÅ‘ - szövegre vonatkozó eszköztár",HEX:"HEX szÃnkód",Accept:"Elfogad","No results found":"Nincs találat","No searchable items":"Nincsenek kereshetÅ‘ elemek","Editor dialog":"SzerkesztÅ‘i párbeszédpanel",Close:"Bezárás",Undo:"Visszavonás",Redo:"Újra","Upload in progress":"A feltöltés folyamatban","Widget toolbar":"Widget eszköztár","Insert paragraph before block":"Bekezdés beszúrása elé","Insert paragraph after block":"Bekezdés beszúrása utána","Press Enter to type after or press Shift + Enter to type before the widget":"Az Enter billentyű megnyomásával a widget után, a Shift + Enter kombinációval pedig a widget elÅ‘tt Ãrhatja be a szöveget","Words: %0":"Szavak: %0","Characters: %0":"Karakterek: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/id.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/id.js index 04a6cda679da1d44f2cbd494bc71c50c36cb225f..507d72cfcacaa16220d09fd10439849e071f7297 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/id.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/id.js @@ -1 +1 @@ -(function(d){ const l = d['id'] = d['id'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Rata kiri","Align right":"Rata kanan","Align center":"Rata tengah",Justify:"Rata kanan-kiri","Text alignment":"Perataan teks","Text alignment toolbar":"Alat perataan teks",Bold:"Tebal",Italic:"Miring",Underline:"Garis bawah",Code:"Kode",Strikethrough:"Coret",Subscript:"Subskrip",Superscript:"Superskrip","Block quote":"Kutipan","Insert code block":"Sisipkan blok kode","Plain text":"Teks mentah",Cancel:"Batal",Clear:"Kosongkan","Remove color":"Hapus warna","Restore default":"Pulihkan nilai baku",Save:"Simpan","Show more items":"Tampilkan lebih banyak item","%0 of %1":"%0 dari %1","Cannot upload file:":"Tidak dapat mengunggah berkas:","Rich Text Editor. Editing area: %0":"Editor Teks Kaya. Area edit: %0","Insert with file manager":"Sisipkan dengan pengelola file","Replace with file manager":"Ganti dengan pengelola file","Insert image with file manager":"Sisipkan gambar dengan pengelola file","Replace image with file manager":"Ganti gambar dengan pengelola file","Find and replace":"Cari dan ubah","Find in text…":"Cari di dalam teks...",Find:"Cari","Previous result":"Hasil sebelumnya","Next result":"Hasil berikutnya",Replace:"Ubah","Replace all":"Ubah semua","Match case":"Sesuaikan huruf","Whole words only":"Kata utuh saja","Replace with…":"Ubah dengan...","Text to find must not be empty.":"Teks yang dicari tidak boleh kosong.","Tip: Find some text first in order to replace it.":"Tip: Cari suatu teks terlebih dahulu untuk menggantinya.","Advanced options":"Opsi lanjutan",Paragraph:"Paragraf",Heading:"Tajuk","Choose heading":"Pilih tajuk","Heading 1":"Tajuk 1","Heading 2":"Tajuk 2","Heading 3":"Tajuk 3","Heading 4":"Tajuk 4","Heading 5":"Tajuk 5","Heading 6":"Tajuk 6","Type your title":"Ketik judul Anda","Type or paste your content here.":"Ketik atau tempel konten Anda di sini.","Horizontal line":"Garis horizontal","HTML object":"Objek HTML","Increase indent":"Tambah indentasi","Decrease indent":"Kurangi indentasi",Unlink:"Hapus tautan",Link:"Tautan","Link URL":"URL tautan","Link image":"Tautkan gambar","Edit link":"Sunting tautan","Open link in new tab":"Buka tautan di tab baru","This link has no URL":"Tautan ini tidak memiliki URL","Open in a new tab":"Buka di tab baru",Downloadable:"Dapat diunduh","Numbered List":"Daftar Berangka","Bulleted List":"Daftar Tak Berangka","To-do List":"Daftar untuk-dikerjakan","Bulleted list styles toolbar":"Bilah alat gaya daftar bullet","Numbered list styles toolbar":"Bilah alat gaya daftar angka","Toggle the disc list style":"Alihkan gaya daftar disc","Toggle the circle list style":"Alihkan gaya daftar circle","Toggle the square list style":"Alihkan gaya daftar square","Toggle the decimal list style":"Alihkan gaya daftar decimal","Toggle the decimal with leading zero list style":"Alihkan gaya daftar decimal with leading zero","Toggle the lower–roman list style":"Alihkan gaya daftar lower–roman","Toggle the upper–roman list style":"Alihkan gaya daftar upper–roman","Toggle the lower–latin list style":"Alihkan gaya daftar lower–latin","Toggle the upper–latin list style":"Alihkan gaya daftar upper–latin",Disc:"Disk",Circle:"Lingkaran",Square:"Kotak",Decimal:"Desimal","Decimal with leading zero":"Desimal dengan awalan nol","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"Properti daftar","Start at":"Mulai dari","Start index must be greater than 0.":"Indeks awal harus lebih besar dari 0.","Reversed order":"Urutan terbalik","Remove Format":"Hapus Format","Select all":"Pilih semua","Show blocks":"Tampilkan blok",Source:"Sumber","Special characters":"Karakter spesial",All:"Semua",Arrows:"Panah",Currency:"Mata Uang",Latin:"Latin",Mathematical:"Matematika",Text:"Teks","leftwards simple arrow":"panah kiri sederhana","rightwards simple arrow":"panah kanan sederhana","upwards simple arrow":"panah atas sederhana","downwards simple arrow":"panah bawah sederhana","leftwards double arrow":"Panah ganda ke kiri","rightwards double arrow":"Panah ganda ke kanan","upwards double arrow":"Panah ganda ke atas","downwards double arrow":"Panah ganda ke bawah","leftwards dashed arrow":"Panah putus-putus ke kiri","rightwards dashed arrow":"Panah putus-putus ke kanan","upwards dashed arrow":"Panah putus-putus ke atas","downwards dashed arrow":"Panah putus-putus ke ke bawah","leftwards arrow to bar":"panah kiri ke bar","rightwards arrow to bar":"panah kanan ke bar","upwards arrow to bar":"panah atas ke bar","downwards arrow to bar":"panah bawah ke bar","up down arrow with base":"panah atas bawah dari dasar","back with leftwards arrow above":"belakang dengan panah kiri di atas","end with leftwards arrow above":"akhir dengan panah kiri di atas","on with exclamation mark with left right arrow above":"nyala tanda seru dengan panah kiri kanan di atas","soon with rightwards arrow above":"segera (soon) dengan panah arah kanan di atas","top with upwards arrow above":"puncak (top) dengan panah arah atas di atas","Dollar sign":"Tanda dollar","Euro sign":"Tanda euro","Yen sign":"Tanda yen","Pound sign":"Tanda pound","Cent sign":"Tanda sen","Euro-currency sign":"Tanda mata uang euro","Colon sign":"Tanda titik dua","Cruzeiro sign":"Simbol cruzeiro ","French franc sign":"Simbol franc Prancis","Lira sign":"Simbol lira","Currency sign":"Tanda mata uang","Bitcoin sign":"Tanda bitcoin","Mill sign":"Simbol mill","Naira sign":"Simbol naira","Peseta sign":"Simbol peseta","Rupee sign":"Tanda rupee","Won sign":"Tanda won","New sheqel sign":"Simbol shekel baru","Dong sign":"Simbol dong","Kip sign":"Simbol kip","Tugrik sign":"Simbol tugrik","Drachma sign":"Simbol drakhma","German penny sign":"Simbol penny Jerman","Peso sign":"Tanda peso","Guarani sign":"Simbol guarani","Austral sign":"Simbol austral","Hryvnia sign":"Simbol hryvnia","Cedi sign":"Simbol cedi","Livre tournois sign":"Simbol livre tournois","Spesmilo sign":"Simbol spesmilo","Tenge sign":"Simbol tenge","Indian rupee sign":"Tanda rupee India","Turkish lira sign":"Simbol lira Turki","Nordic mark sign":"Simbol mark Nordik","Manat sign":"Simbol manat","Ruble sign":"Simbol rubel","Latin capital letter a with macron":"Huruf Latin besar a dengan macron","Latin small letter a with macron":"Huruf Latin kecil a dengan macron","Latin capital letter a with breve":"Huruf Latin besar a dengan breve","Latin small letter a with breve":"Huruf Latin kecil a dengan breve","Latin capital letter a with ogonek":"Huruf Latin besar a dengan ogonek","Latin small letter a with ogonek":"Huruf Latin kecil a dengan ogonek","Latin capital letter c with acute":"Huruf Latin besar c dengan akut","Latin small letter c with acute":"Huruf Latin kecil c dengan akut","Latin capital letter c with circumflex":"Huruf Latin besar c dengan sirkumfleks","Latin small letter c with circumflex":"Huruf Latin kecil c dengan sirkumfleks","Latin capital letter c with dot above":"Huruf Latin besar c dengan titik di atas","Latin small letter c with dot above":"Huruf Latin kecil c dengan titik di atas","Latin capital letter c with caron":"Huruf Latin besar c dengan caron","Latin small letter c with caron":"Huruf Latin kecil c dengan caron","Latin capital letter d with caron":"Huruf Latin besar d dengan caron","Latin small letter d with caron":"Huruf Latin kecil d dengan caron","Latin capital letter d with stroke":"Huruf Latin besar d dengan garis","Latin small letter d with stroke":"Huruf Latin kecil d dengan garis","Latin capital letter e with macron":"Huruf Latin besar e dengan macron","Latin small letter e with macron":"Huruf Latin kecil e dengan macron","Latin capital letter e with breve":"Huruf Latin besar e dengan breve","Latin small letter e with breve":"Huruf Latin kecil e dengan breve","Latin capital letter e with dot above":"Huruf Latin besar e dengan titik di atas","Latin small letter e with dot above":"Huruf Latin kecil e dengan titik di atas","Latin capital letter e with ogonek":"Huruf Latin besar e dengan ogonek","Latin small letter e with ogonek":"Huruf Latin kecil e dengan ogonek","Latin capital letter e with caron":"Huruf Latin besar e dengan caron","Latin small letter e with caron":"Huruf Latin kecil e dengan caron","Latin capital letter g with circumflex":"Huruf Latin besar g dengan sirkumfleks","Latin small letter g with circumflex":"Huruf Latin kecil g dengan sirkumfleks","Latin capital letter g with breve":"Huruf Latin besar g dengan breve","Latin small letter g with breve":"Huruf Latin kecil g dengan breve","Latin capital letter g with dot above":"Huruf Latin besar g dengan titik di atas","Latin small letter g with dot above":"Huruf Latin kecil g dengan titik di atas","Latin capital letter g with cedilla":"Huruf Latin besar g dengan cedilla","Latin small letter g with cedilla":"Huruf Latin kecil g dengan cedilla","Latin capital letter h with circumflex":"Huruf Latin besar h dengan sirkumfleks","Latin small letter h with circumflex":"Huruf Latin kecil h dengan sirkumfleks","Latin capital letter h with stroke":"Huruf Latin besar h dengan garis","Latin small letter h with stroke":"Huruf Latin kecil h dengan garis","Latin capital letter i with tilde":"Huruf Latin besar i dengan tilde","Latin small letter i with tilde":"Huruf Latin kecil i dengan tilde","Latin capital letter i with macron":"Huruf Latin besar i dengan macron","Latin small letter i with macron":"Huruf Latin kecil i dengan macron","Latin capital letter i with breve":"Huruf Latin besar i dengan breve","Latin small letter i with breve":"Huruf Latin kecil i dengan breve","Latin capital letter i with ogonek":"Huruf Latin besar i dengan ogonek","Latin small letter i with ogonek":"Huruf Latin kecil i dengan ogonek","Latin capital letter i with dot above":"Huruf Latin besar i dengan titik di atas","Latin small letter dotless i":"Huruf Latin kecil tanpa titik i","Latin capital ligature ij":"Ligatur Latin kapital ij","Latin small ligature ij":"Ligatur Latin kecil ij","Latin capital letter j with circumflex":"Huruf Latin besar j dengan sirkumfleks","Latin small letter j with circumflex":"Huruf Latin kecil j dengan sirkumfleks","Latin capital letter k with cedilla":"Huruf Latin besar k dengan cedilla","Latin small letter k with cedilla":"Huruf Latin kecil k dengan cedilla","Latin small letter kra":"Huruf Latin kecil kra","Latin capital letter l with acute":"Huruf Latin besar l dengan akut","Latin small letter l with acute":"Huruf Latin kecil l dengan akut","Latin capital letter l with cedilla":"Huruf Latin besar l dengan cedilla","Latin small letter l with cedilla":"Huruf Latin kecil l dengan cedilla","Latin capital letter l with caron":"Huruf Latin besar l dengan caron","Latin small letter l with caron":"Huruf Latin kecil l dengan caron","Latin capital letter l with middle dot":"Huruf Latin besar l dengan titik di tengah","Latin small letter l with middle dot":"Huruf Latin kecil l dengan titik di tengah","Latin capital letter l with stroke":"Huruf Latin besar l dengan garis","Latin small letter l with stroke":"Huruf Latin kecil l dengan garis","Latin capital letter n with acute":"Huruf Latin besar n dengan akut","Latin small letter n with acute":"Huruf Latin kecil n dengan akut","Latin capital letter n with cedilla":"Huruf Latin besar n dengan cedilla","Latin small letter n with cedilla":"Huruf Latin kecil n dengan cedilla","Latin capital letter n with caron":"Huruf Latin besar n dengan caron","Latin small letter n with caron":"Huruf Latin kecil n dengan caron","Latin small letter n preceded by apostrophe":"Huruf Latin kecil n yang didahului apostrof ","Latin capital letter eng":"Huruf Latin besar eng","Latin small letter eng":"Huruf Latin kecil eng","Latin capital letter o with macron":"Huruf Latin besar o dengan macron","Latin small letter o with macron":"Huruf Latin kecil o dengan macron","Latin capital letter o with breve":"Huruf Latin besar o dengan breve","Latin small letter o with breve":"Huruf Latin kecil o dengan breve","Latin capital letter o with double acute":"Huruf Latin besar o dengan akut ganda","Latin small letter o with double acute":"Huruf Latin kecil o dengan akut ganda","Latin capital ligature oe":"Ligatur Latin kapital oe","Latin small ligature oe":"Ligatur Latin kecil oe","Latin capital letter r with acute":"Huruf Latin besar r dengan akut","Latin small letter r with acute":"Huruf Latin kecil r dengan akut","Latin capital letter r with cedilla":"Huruf Latin besar r dengan cedilla","Latin small letter r with cedilla":"Huruf Latin kecil r dengan cedilla","Latin capital letter r with caron":"Huruf Latin besar r dengan caron","Latin small letter r with caron":"Huruf Latin kecil r dengan caron","Latin capital letter s with acute":"Huruf Latin besar s dengan akut","Latin small letter s with acute":"Huruf Latin kecil s dengan akut","Latin capital letter s with circumflex":"Huruf Latin besar s dengan sirkumfleks","Latin small letter s with circumflex":"Huruf Latin kecil s dengan sirkumfleks","Latin capital letter s with cedilla":"Huruf Latin besar s dengan cedilla","Latin small letter s with cedilla":"Huruf Latin kecil s dengan cedilla","Latin capital letter s with caron":"Huruf Latin besar s dengan caron","Latin small letter s with caron":"Huruf Latin kecil s dengan caron","Latin capital letter t with cedilla":"Huruf Latin besar t dengan cedilla","Latin small letter t with cedilla":"Huruf Latin kecil t dengan cedilla","Latin capital letter t with caron":"Huruf Latin besar t dengan caron","Latin small letter t with caron":"Huruf Latin kecil t dengan caron","Latin capital letter t with stroke":"Huruf Latin besar t dengan garis","Latin small letter t with stroke":"Huruf Latin kecil t dengan garis","Latin capital letter u with tilde":"Huruf Latin besar u dengan tilde","Latin small letter u with tilde":"Huruf Latin kecil u dengan tilde","Latin capital letter u with macron":"Huruf Latin besar u dengan macron","Latin small letter u with macron":"Huruf Latin kecil u dengan macron","Latin capital letter u with breve":"Huruf Latin besar u dengan breve","Latin small letter u with breve":"Huruf Latin kecil u dengan breve","Latin capital letter u with ring above":"Huruf Latin besar u dengan cincin di atas","Latin small letter u with ring above":"Huruf Latin kecil u dengan cincin di atas","Latin capital letter u with double acute":"Huruf Latin besar u dengan akut ganda","Latin small letter u with double acute":"Huruf Latin kecil u dengan akut ganda","Latin capital letter u with ogonek":"Huruf Latin besar u dengan ogonek","Latin small letter u with ogonek":"Huruf Latin kecil u dengan ogonek","Latin capital letter w with circumflex":"Huruf Latin besar w dengan sirkumfleks","Latin small letter w with circumflex":"Huruf Latin kecil w dengan sirkumfleks","Latin capital letter y with circumflex":"Huruf Latin besar y dengan sirkumfleks","Latin small letter y with circumflex":"Huruf Latin kecil y dengan sirkumfleks","Latin capital letter y with diaeresis":"Huruf Latin besar y dengan diaresis","Latin capital letter z with acute":"Huruf Latin besar z dengan akut","Latin small letter z with acute":"Huruf Latin kecil z dengan akut","Latin capital letter z with dot above":"Huruf Latin besar z dengan titik di atas","Latin small letter z with dot above":"Huruf Latin kecil z dengan titik di atas","Latin capital letter z with caron":"Huruf Latin besar z dengan caron","Latin small letter z with caron":"Huruf Latin kecil z dengan caron","Latin small letter long s":"Huruf Latin kecil s panjang","Less-than sign":"Tanda kurang dari","Greater-than sign":"Tanda lebih besar dari","Less-than or equal to":"Kurang dari atau sama dengan","Greater-than or equal to":"Lebih dari atau sama dengan","En dash":"Tanda pisah en","Em dash":"Tanda pisah em",Macron:"Macron",Overline:"Garis atas","Degree sign":"Tanda derajat","Minus sign":"Tanda negatif","Plus-minus sign":"Tanda lebih kurang","Division sign":"Tanda pembagian","Fraction slash":"Garis bagi pecahan","Multiplication sign":"Tanda perkalian","Latin small letter f with hook":"Huruf Latin kecil f dengan kait",Integral:"Integral","N-ary summation":"Penjumlahan N-Ary",Infinity:"Tak hingga","Square root":"Akar kuadrat","Tilde operator":"Operator tilde","Approximately equal to":"Kira-kira sama dengan","Almost equal to":"Hampir sama dengan","Not equal to":"Tidak sama dengan","Identical to":"Identik dengan","Element of":"Elemen dari","Not an element of":"Bukan sebuah elemen dari","Contains as member":"Berisi sebagai anggota","N-ary product":"Produk N-ary","Logical and":"\"Dan\" logis","Logical or":"\"Atau\" logis","Not sign":"Tanda \"bukan\"",Intersection:"Irisan",Union:"Himpunan","Partial differential":"Turunan parsial","For all":"Untuk semua","There exists":"Ada","Empty set":"Himpunan kosong",Nabla:"Nabla","Asterisk operator":"Operator asteris","Proportional to":"Proporsional dengan",Angle:"Sudut","Vulgar fraction one quarter":"Pecahan vulgar satu perempat","Vulgar fraction one half":"Pecahan vulgar satu perdua","Vulgar fraction three quarters":"Pecahan vulgar tiga perempat","Single left-pointing angle quotation mark":"Tanda kutip bersudut mengarah ke kiri tunggal","Single right-pointing angle quotation mark":"Tanda kutip bersudut mengarah ke kanan tunggal","Left-pointing double angle quotation mark":"Tanda kutip bersudut ganda mengarah ke kiri","Right-pointing double angle quotation mark":"Tanda kutip bersudut ganda mengarah ke kanan","Left single quotation mark":"Tanda kutip tunggal kiri","Right single quotation mark":"Tanda kutip tunggal kanan","Left double quotation mark":"Tanda kutip ganda kiri","Right double quotation mark":"Tanda kutip ganda kanan","Single low-9 quotation mark":"Tanda kutip 9 bawah tunggal","Double low-9 quotation mark":"Tanda kutip 9 bawah ganda","Inverted exclamation mark":"Tanda seru terbalik","Inverted question mark":"Tanda tanya terbalik","Two dot leader":"Dua titik utama","Horizontal ellipsis":"Elipsis horizontal","Double dagger":"Diesis","Per mille sign":"Tanda permil","Per ten thousand sign":"Tanda persepuluh ribu","Double exclamation mark":"Tanda seru ganda","Question exclamation mark":"Tanda tanya dan seru","Exclamation question mark":"Tanda seru dan tanya","Double question mark":"Tanda tanya ganda","Copyright sign":"Simbol hak cipta","Registered sign":"Simbol merek dagang terdaftar","Trade mark sign":"Simbol merek dagang","Section sign":"Simbol bagian","Paragraph sign":"Simbol paragraf","Reversed paragraph sign":"Simbol paragraf terbalik","Character categories":"Kategori karakter",Styles:"Gaya","Multiple styles":"Banyak gaya","Block styles":"Gaya blok","Text styles":"Gaya teks","Insert table":"Sisipkan tabel","Header column":"Kolom tajuk","Insert column left":"Sisipkan kolom ke kiri","Insert column right":"Sisipkan kolom ke kanan","Delete column":"Hapus kolom","Select column":"Seleksi kolom",Column:"Kolom","Header row":"Baris tajuk","Insert row below":"Sisipkan baris ke bawah","Insert row above":"Sisipkan baris ke atas","Delete row":"Hapus baris","Select row":"Seleksi baris",Row:"Baris","Merge cell up":"Gabungkan sel ke atas","Merge cell right":"Gabungkan sel ke kanan","Merge cell down":"Gabungkan sel ke bawah","Merge cell left":"Gabungkan sel ke kiri","Split cell vertically":"Bagikan sel secara vertikal","Split cell horizontally":"Bagikan sel secara horizontal","Merge cells":"Gabungkan sel","Table toolbar":"Alat tabel","Table properties":"Properti tabel","Cell properties":"Properti sel",Border:"Garis batas",Style:"Gaya",Width:"Lebar",Height:"Tinggi",Color:"Warna",Background:"Latar belakang",Padding:"Padding",Dimensions:"Dimensi","Table cell text alignment":"Penjajaran teks sel tabel",Alignment:"Penjajaran","Horizontal text alignment toolbar":"Bilah alat penjajaran teks horizontal","Vertical text alignment toolbar":"Bilah alat penjajaran teks vertikal","Table alignment toolbar":"Bilah alat penjajaran tabel",None:"Tidak ada",Solid:"Garis utuh",Dotted:"Titik titik",Dashed:"Garis putus-putus",Double:"Ganda",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Sejajarkan teks sel ke kiri","Align cell text to the center":"Sejajarkan teks sel ke tengah","Align cell text to the right":"Sejajarkan teks sel ke kanan","Justify cell text":"Ratakan teks sel","Align cell text to the top":"Sejajarkan teks sel ke atas","Align cell text to the middle":"Sejajarkan teks sel ke tengah","Align cell text to the bottom":"Sejajarkan teks sel ke bawah","Align table to the left":"Sejajarkan teks sel ke kiri","Center table":"Tengahkan tabel","Align table to the right":"Sejajarkan teks sel ke kanan","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Warna tidak valid. Coba \"#FF0000\" atau \"rgb(255,0,0)\" atau \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Nilai tidak valid. Coba \"10px\" atau \"2em\" atau hanya \"2\".","Color picker":"Pengambil warna","Toggle caption off":"Sembunyikan keterangan","Toggle caption on":"Tampilkan keterangan","Enter table caption":"Masukkan keterangan tabel","Rich Text Editor":"Editor Teks Kaya","Editor editing area: %0":"Area edit editor: %0","Edit block":"Sunting blok","Click to edit block":"Klik untuk mengedit blok","Drag to move":"Seret untuk memindahkan",Next:"Berikutnya",Previous:"Sebelumnya","Editor toolbar":"Alat editor","Dropdown toolbar":"Alat dropdown",Black:"Hitam","Dim grey":"Kelabu gelap",Grey:"Kelabu","Light grey":"Kelabu terang",White:"Putih",Red:"Merah",Orange:"Jingga",Yellow:"Kuning","Light green":"Hijau terang",Green:"Hijau",Aquamarine:"Biru laut",Turquoise:"Turkish","Light blue":"Biru terang",Blue:"Biru",Purple:"Ungu","Editor block content toolbar":"Bilah alat konten blok editor","Editor contextual toolbar":"Bilah alat kontekstual editor",HEX:"HEX",Accept:"Setuju","No results found":"Hasil tidak ditemukan","No searchable items":"Tidak ada item yang dapat dicari","Editor dialog":"Dialog editor",Close:"Tutup",Undo:"Batal",Redo:"Lakukan lagi","Upload in progress":"Sedang mengunggah","Widget toolbar":"Alat widget","Insert paragraph before block":"Tambahkan paragraf sebelum blok","Insert paragraph after block":"Tambahkan paragraf setelah blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tekan Enter untuk mengetik setelah atau tekan Shift + Enter untuk mengetik sebelum widget","Words: %0":"Kata: %0","Characters: %0":"Karakter: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['id'] = d['id'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Rata kiri","Align right":"Rata kanan","Align center":"Rata tengah",Justify:"Rata kanan-kiri","Text alignment":"Perataan teks","Text alignment toolbar":"Alat perataan teks",Bold:"Tebal",Italic:"Miring",Underline:"Garis bawah",Code:"Kode",Strikethrough:"Coret",Subscript:"Subskrip",Superscript:"Superskrip","Block quote":"Kutipan","Insert code block":"Sisipkan blok kode","Plain text":"Teks mentah",Cancel:"Batal",Clear:"Kosongkan","Remove color":"Hapus warna","Restore default":"Pulihkan nilai baku",Save:"Simpan","Show more items":"Tampilkan lebih banyak item","%0 of %1":"%0 dari %1","Cannot upload file:":"Tidak dapat mengunggah berkas:","Rich Text Editor. Editing area: %0":"Editor Teks Kaya. Area edit: %0","Insert with file manager":"Sisipkan dengan pengelola file","Replace with file manager":"Ganti dengan pengelola file","Insert image with file manager":"Sisipkan gambar dengan pengelola file","Replace image with file manager":"Ganti gambar dengan pengelola file","Find and replace":"Cari dan ubah","Find in text…":"Cari di dalam teks...",Find:"Cari","Previous result":"Hasil sebelumnya","Next result":"Hasil berikutnya",Replace:"Ubah","Replace all":"Ubah semua","Match case":"Sesuaikan huruf","Whole words only":"Kata utuh saja","Replace with…":"Ubah dengan...","Text to find must not be empty.":"Teks yang dicari tidak boleh kosong.","Tip: Find some text first in order to replace it.":"Tip: Cari suatu teks terlebih dahulu untuk menggantinya.","Advanced options":"Opsi lanjutan","Font Size":"Ukuran Huruf",Tiny:"Sangat Kecil",Small:"Kecil",Big:"Besar",Huge:"Sangat Besar","Font Family":"Jenis Huruf",Default:"Bawaan","Font Color":"Warna Huruf","Font Background Color":"Warna Latar Huruf","Document colors":"Warna dokumen",Paragraph:"Paragraf",Heading:"Tajuk","Choose heading":"Pilih tajuk","Heading 1":"Tajuk 1","Heading 2":"Tajuk 2","Heading 3":"Tajuk 3","Heading 4":"Tajuk 4","Heading 5":"Tajuk 5","Heading 6":"Tajuk 6","Type your title":"Ketik judul Anda","Type or paste your content here.":"Ketik atau tempel konten Anda di sini.","Horizontal line":"Garis horizontal","HTML object":"Objek HTML","Increase indent":"Tambah indentasi","Decrease indent":"Kurangi indentasi",Unlink:"Hapus tautan",Link:"Tautan","Link URL":"URL tautan","Link image":"Tautkan gambar","Edit link":"Sunting tautan","Open link in new tab":"Buka tautan di tab baru","This link has no URL":"Tautan ini tidak memiliki URL","Open in a new tab":"Buka di tab baru",Downloadable:"Dapat diunduh","Numbered List":"Daftar Berangka","Bulleted List":"Daftar Tak Berangka","To-do List":"Daftar untuk-dikerjakan","Bulleted list styles toolbar":"Bilah alat gaya daftar bullet","Numbered list styles toolbar":"Bilah alat gaya daftar angka","Toggle the disc list style":"Alihkan gaya daftar disc","Toggle the circle list style":"Alihkan gaya daftar circle","Toggle the square list style":"Alihkan gaya daftar square","Toggle the decimal list style":"Alihkan gaya daftar decimal","Toggle the decimal with leading zero list style":"Alihkan gaya daftar decimal with leading zero","Toggle the lower–roman list style":"Alihkan gaya daftar lower–roman","Toggle the upper–roman list style":"Alihkan gaya daftar upper–roman","Toggle the lower–latin list style":"Alihkan gaya daftar lower–latin","Toggle the upper–latin list style":"Alihkan gaya daftar upper–latin",Disc:"Disk",Circle:"Lingkaran",Square:"Kotak",Decimal:"Desimal","Decimal with leading zero":"Desimal dengan awalan nol","Lower–roman":"Lower–roman","Upper-roman":"Upper-roman","Lower-latin":"Lower-latin","Upper-latin":"Upper-latin","List properties":"Properti daftar","Start at":"Mulai dari","Start index must be greater than 0.":"Indeks awal harus lebih besar dari 0.","Reversed order":"Urutan terbalik","Remove Format":"Hapus Format","Select all":"Pilih semua","Show blocks":"Tampilkan blok",Source:"Sumber","Special characters":"Karakter spesial",All:"Semua",Arrows:"Panah",Currency:"Mata Uang",Latin:"Latin",Mathematical:"Matematika",Text:"Teks","leftwards simple arrow":"panah kiri sederhana","rightwards simple arrow":"panah kanan sederhana","upwards simple arrow":"panah atas sederhana","downwards simple arrow":"panah bawah sederhana","leftwards double arrow":"Panah ganda ke kiri","rightwards double arrow":"Panah ganda ke kanan","upwards double arrow":"Panah ganda ke atas","downwards double arrow":"Panah ganda ke bawah","leftwards dashed arrow":"Panah putus-putus ke kiri","rightwards dashed arrow":"Panah putus-putus ke kanan","upwards dashed arrow":"Panah putus-putus ke atas","downwards dashed arrow":"Panah putus-putus ke ke bawah","leftwards arrow to bar":"panah kiri ke bar","rightwards arrow to bar":"panah kanan ke bar","upwards arrow to bar":"panah atas ke bar","downwards arrow to bar":"panah bawah ke bar","up down arrow with base":"panah atas bawah dari dasar","back with leftwards arrow above":"belakang dengan panah kiri di atas","end with leftwards arrow above":"akhir dengan panah kiri di atas","on with exclamation mark with left right arrow above":"nyala tanda seru dengan panah kiri kanan di atas","soon with rightwards arrow above":"segera (soon) dengan panah arah kanan di atas","top with upwards arrow above":"puncak (top) dengan panah arah atas di atas","Dollar sign":"Tanda dollar","Euro sign":"Tanda euro","Yen sign":"Tanda yen","Pound sign":"Tanda pound","Cent sign":"Tanda sen","Euro-currency sign":"Tanda mata uang euro","Colon sign":"Tanda titik dua","Cruzeiro sign":"Simbol cruzeiro ","French franc sign":"Simbol franc Prancis","Lira sign":"Simbol lira","Currency sign":"Tanda mata uang","Bitcoin sign":"Tanda bitcoin","Mill sign":"Simbol mill","Naira sign":"Simbol naira","Peseta sign":"Simbol peseta","Rupee sign":"Tanda rupee","Won sign":"Tanda won","New sheqel sign":"Simbol shekel baru","Dong sign":"Simbol dong","Kip sign":"Simbol kip","Tugrik sign":"Simbol tugrik","Drachma sign":"Simbol drakhma","German penny sign":"Simbol penny Jerman","Peso sign":"Tanda peso","Guarani sign":"Simbol guarani","Austral sign":"Simbol austral","Hryvnia sign":"Simbol hryvnia","Cedi sign":"Simbol cedi","Livre tournois sign":"Simbol livre tournois","Spesmilo sign":"Simbol spesmilo","Tenge sign":"Simbol tenge","Indian rupee sign":"Tanda rupee India","Turkish lira sign":"Simbol lira Turki","Nordic mark sign":"Simbol mark Nordik","Manat sign":"Simbol manat","Ruble sign":"Simbol rubel","Latin capital letter a with macron":"Huruf Latin besar a dengan macron","Latin small letter a with macron":"Huruf Latin kecil a dengan macron","Latin capital letter a with breve":"Huruf Latin besar a dengan breve","Latin small letter a with breve":"Huruf Latin kecil a dengan breve","Latin capital letter a with ogonek":"Huruf Latin besar a dengan ogonek","Latin small letter a with ogonek":"Huruf Latin kecil a dengan ogonek","Latin capital letter c with acute":"Huruf Latin besar c dengan akut","Latin small letter c with acute":"Huruf Latin kecil c dengan akut","Latin capital letter c with circumflex":"Huruf Latin besar c dengan sirkumfleks","Latin small letter c with circumflex":"Huruf Latin kecil c dengan sirkumfleks","Latin capital letter c with dot above":"Huruf Latin besar c dengan titik di atas","Latin small letter c with dot above":"Huruf Latin kecil c dengan titik di atas","Latin capital letter c with caron":"Huruf Latin besar c dengan caron","Latin small letter c with caron":"Huruf Latin kecil c dengan caron","Latin capital letter d with caron":"Huruf Latin besar d dengan caron","Latin small letter d with caron":"Huruf Latin kecil d dengan caron","Latin capital letter d with stroke":"Huruf Latin besar d dengan garis","Latin small letter d with stroke":"Huruf Latin kecil d dengan garis","Latin capital letter e with macron":"Huruf Latin besar e dengan macron","Latin small letter e with macron":"Huruf Latin kecil e dengan macron","Latin capital letter e with breve":"Huruf Latin besar e dengan breve","Latin small letter e with breve":"Huruf Latin kecil e dengan breve","Latin capital letter e with dot above":"Huruf Latin besar e dengan titik di atas","Latin small letter e with dot above":"Huruf Latin kecil e dengan titik di atas","Latin capital letter e with ogonek":"Huruf Latin besar e dengan ogonek","Latin small letter e with ogonek":"Huruf Latin kecil e dengan ogonek","Latin capital letter e with caron":"Huruf Latin besar e dengan caron","Latin small letter e with caron":"Huruf Latin kecil e dengan caron","Latin capital letter g with circumflex":"Huruf Latin besar g dengan sirkumfleks","Latin small letter g with circumflex":"Huruf Latin kecil g dengan sirkumfleks","Latin capital letter g with breve":"Huruf Latin besar g dengan breve","Latin small letter g with breve":"Huruf Latin kecil g dengan breve","Latin capital letter g with dot above":"Huruf Latin besar g dengan titik di atas","Latin small letter g with dot above":"Huruf Latin kecil g dengan titik di atas","Latin capital letter g with cedilla":"Huruf Latin besar g dengan cedilla","Latin small letter g with cedilla":"Huruf Latin kecil g dengan cedilla","Latin capital letter h with circumflex":"Huruf Latin besar h dengan sirkumfleks","Latin small letter h with circumflex":"Huruf Latin kecil h dengan sirkumfleks","Latin capital letter h with stroke":"Huruf Latin besar h dengan garis","Latin small letter h with stroke":"Huruf Latin kecil h dengan garis","Latin capital letter i with tilde":"Huruf Latin besar i dengan tilde","Latin small letter i with tilde":"Huruf Latin kecil i dengan tilde","Latin capital letter i with macron":"Huruf Latin besar i dengan macron","Latin small letter i with macron":"Huruf Latin kecil i dengan macron","Latin capital letter i with breve":"Huruf Latin besar i dengan breve","Latin small letter i with breve":"Huruf Latin kecil i dengan breve","Latin capital letter i with ogonek":"Huruf Latin besar i dengan ogonek","Latin small letter i with ogonek":"Huruf Latin kecil i dengan ogonek","Latin capital letter i with dot above":"Huruf Latin besar i dengan titik di atas","Latin small letter dotless i":"Huruf Latin kecil tanpa titik i","Latin capital ligature ij":"Ligatur Latin kapital ij","Latin small ligature ij":"Ligatur Latin kecil ij","Latin capital letter j with circumflex":"Huruf Latin besar j dengan sirkumfleks","Latin small letter j with circumflex":"Huruf Latin kecil j dengan sirkumfleks","Latin capital letter k with cedilla":"Huruf Latin besar k dengan cedilla","Latin small letter k with cedilla":"Huruf Latin kecil k dengan cedilla","Latin small letter kra":"Huruf Latin kecil kra","Latin capital letter l with acute":"Huruf Latin besar l dengan akut","Latin small letter l with acute":"Huruf Latin kecil l dengan akut","Latin capital letter l with cedilla":"Huruf Latin besar l dengan cedilla","Latin small letter l with cedilla":"Huruf Latin kecil l dengan cedilla","Latin capital letter l with caron":"Huruf Latin besar l dengan caron","Latin small letter l with caron":"Huruf Latin kecil l dengan caron","Latin capital letter l with middle dot":"Huruf Latin besar l dengan titik di tengah","Latin small letter l with middle dot":"Huruf Latin kecil l dengan titik di tengah","Latin capital letter l with stroke":"Huruf Latin besar l dengan garis","Latin small letter l with stroke":"Huruf Latin kecil l dengan garis","Latin capital letter n with acute":"Huruf Latin besar n dengan akut","Latin small letter n with acute":"Huruf Latin kecil n dengan akut","Latin capital letter n with cedilla":"Huruf Latin besar n dengan cedilla","Latin small letter n with cedilla":"Huruf Latin kecil n dengan cedilla","Latin capital letter n with caron":"Huruf Latin besar n dengan caron","Latin small letter n with caron":"Huruf Latin kecil n dengan caron","Latin small letter n preceded by apostrophe":"Huruf Latin kecil n yang didahului apostrof ","Latin capital letter eng":"Huruf Latin besar eng","Latin small letter eng":"Huruf Latin kecil eng","Latin capital letter o with macron":"Huruf Latin besar o dengan macron","Latin small letter o with macron":"Huruf Latin kecil o dengan macron","Latin capital letter o with breve":"Huruf Latin besar o dengan breve","Latin small letter o with breve":"Huruf Latin kecil o dengan breve","Latin capital letter o with double acute":"Huruf Latin besar o dengan akut ganda","Latin small letter o with double acute":"Huruf Latin kecil o dengan akut ganda","Latin capital ligature oe":"Ligatur Latin kapital oe","Latin small ligature oe":"Ligatur Latin kecil oe","Latin capital letter r with acute":"Huruf Latin besar r dengan akut","Latin small letter r with acute":"Huruf Latin kecil r dengan akut","Latin capital letter r with cedilla":"Huruf Latin besar r dengan cedilla","Latin small letter r with cedilla":"Huruf Latin kecil r dengan cedilla","Latin capital letter r with caron":"Huruf Latin besar r dengan caron","Latin small letter r with caron":"Huruf Latin kecil r dengan caron","Latin capital letter s with acute":"Huruf Latin besar s dengan akut","Latin small letter s with acute":"Huruf Latin kecil s dengan akut","Latin capital letter s with circumflex":"Huruf Latin besar s dengan sirkumfleks","Latin small letter s with circumflex":"Huruf Latin kecil s dengan sirkumfleks","Latin capital letter s with cedilla":"Huruf Latin besar s dengan cedilla","Latin small letter s with cedilla":"Huruf Latin kecil s dengan cedilla","Latin capital letter s with caron":"Huruf Latin besar s dengan caron","Latin small letter s with caron":"Huruf Latin kecil s dengan caron","Latin capital letter t with cedilla":"Huruf Latin besar t dengan cedilla","Latin small letter t with cedilla":"Huruf Latin kecil t dengan cedilla","Latin capital letter t with caron":"Huruf Latin besar t dengan caron","Latin small letter t with caron":"Huruf Latin kecil t dengan caron","Latin capital letter t with stroke":"Huruf Latin besar t dengan garis","Latin small letter t with stroke":"Huruf Latin kecil t dengan garis","Latin capital letter u with tilde":"Huruf Latin besar u dengan tilde","Latin small letter u with tilde":"Huruf Latin kecil u dengan tilde","Latin capital letter u with macron":"Huruf Latin besar u dengan macron","Latin small letter u with macron":"Huruf Latin kecil u dengan macron","Latin capital letter u with breve":"Huruf Latin besar u dengan breve","Latin small letter u with breve":"Huruf Latin kecil u dengan breve","Latin capital letter u with ring above":"Huruf Latin besar u dengan cincin di atas","Latin small letter u with ring above":"Huruf Latin kecil u dengan cincin di atas","Latin capital letter u with double acute":"Huruf Latin besar u dengan akut ganda","Latin small letter u with double acute":"Huruf Latin kecil u dengan akut ganda","Latin capital letter u with ogonek":"Huruf Latin besar u dengan ogonek","Latin small letter u with ogonek":"Huruf Latin kecil u dengan ogonek","Latin capital letter w with circumflex":"Huruf Latin besar w dengan sirkumfleks","Latin small letter w with circumflex":"Huruf Latin kecil w dengan sirkumfleks","Latin capital letter y with circumflex":"Huruf Latin besar y dengan sirkumfleks","Latin small letter y with circumflex":"Huruf Latin kecil y dengan sirkumfleks","Latin capital letter y with diaeresis":"Huruf Latin besar y dengan diaresis","Latin capital letter z with acute":"Huruf Latin besar z dengan akut","Latin small letter z with acute":"Huruf Latin kecil z dengan akut","Latin capital letter z with dot above":"Huruf Latin besar z dengan titik di atas","Latin small letter z with dot above":"Huruf Latin kecil z dengan titik di atas","Latin capital letter z with caron":"Huruf Latin besar z dengan caron","Latin small letter z with caron":"Huruf Latin kecil z dengan caron","Latin small letter long s":"Huruf Latin kecil s panjang","Less-than sign":"Tanda kurang dari","Greater-than sign":"Tanda lebih besar dari","Less-than or equal to":"Kurang dari atau sama dengan","Greater-than or equal to":"Lebih dari atau sama dengan","En dash":"Tanda pisah en","Em dash":"Tanda pisah em",Macron:"Macron",Overline:"Garis atas","Degree sign":"Tanda derajat","Minus sign":"Tanda negatif","Plus-minus sign":"Tanda lebih kurang","Division sign":"Tanda pembagian","Fraction slash":"Garis bagi pecahan","Multiplication sign":"Tanda perkalian","Latin small letter f with hook":"Huruf Latin kecil f dengan kait",Integral:"Integral","N-ary summation":"Penjumlahan N-Ary",Infinity:"Tak hingga","Square root":"Akar kuadrat","Tilde operator":"Operator tilde","Approximately equal to":"Kira-kira sama dengan","Almost equal to":"Hampir sama dengan","Not equal to":"Tidak sama dengan","Identical to":"Identik dengan","Element of":"Elemen dari","Not an element of":"Bukan sebuah elemen dari","Contains as member":"Berisi sebagai anggota","N-ary product":"Produk N-ary","Logical and":"\"Dan\" logis","Logical or":"\"Atau\" logis","Not sign":"Tanda \"bukan\"",Intersection:"Irisan",Union:"Himpunan","Partial differential":"Turunan parsial","For all":"Untuk semua","There exists":"Ada","Empty set":"Himpunan kosong",Nabla:"Nabla","Asterisk operator":"Operator asteris","Proportional to":"Proporsional dengan",Angle:"Sudut","Vulgar fraction one quarter":"Pecahan vulgar satu perempat","Vulgar fraction one half":"Pecahan vulgar satu perdua","Vulgar fraction three quarters":"Pecahan vulgar tiga perempat","Single left-pointing angle quotation mark":"Tanda kutip bersudut mengarah ke kiri tunggal","Single right-pointing angle quotation mark":"Tanda kutip bersudut mengarah ke kanan tunggal","Left-pointing double angle quotation mark":"Tanda kutip bersudut ganda mengarah ke kiri","Right-pointing double angle quotation mark":"Tanda kutip bersudut ganda mengarah ke kanan","Left single quotation mark":"Tanda kutip tunggal kiri","Right single quotation mark":"Tanda kutip tunggal kanan","Left double quotation mark":"Tanda kutip ganda kiri","Right double quotation mark":"Tanda kutip ganda kanan","Single low-9 quotation mark":"Tanda kutip 9 bawah tunggal","Double low-9 quotation mark":"Tanda kutip 9 bawah ganda","Inverted exclamation mark":"Tanda seru terbalik","Inverted question mark":"Tanda tanya terbalik","Two dot leader":"Dua titik utama","Horizontal ellipsis":"Elipsis horizontal","Double dagger":"Diesis","Per mille sign":"Tanda permil","Per ten thousand sign":"Tanda persepuluh ribu","Double exclamation mark":"Tanda seru ganda","Question exclamation mark":"Tanda tanya dan seru","Exclamation question mark":"Tanda seru dan tanya","Double question mark":"Tanda tanya ganda","Copyright sign":"Simbol hak cipta","Registered sign":"Simbol merek dagang terdaftar","Trade mark sign":"Simbol merek dagang","Section sign":"Simbol bagian","Paragraph sign":"Simbol paragraf","Reversed paragraph sign":"Simbol paragraf terbalik","Character categories":"Kategori karakter",Styles:"Gaya","Multiple styles":"Banyak gaya","Block styles":"Gaya blok","Text styles":"Gaya teks","Insert table":"Sisipkan tabel","Header column":"Kolom tajuk","Insert column left":"Sisipkan kolom ke kiri","Insert column right":"Sisipkan kolom ke kanan","Delete column":"Hapus kolom","Select column":"Seleksi kolom",Column:"Kolom","Header row":"Baris tajuk","Insert row below":"Sisipkan baris ke bawah","Insert row above":"Sisipkan baris ke atas","Delete row":"Hapus baris","Select row":"Seleksi baris",Row:"Baris","Merge cell up":"Gabungkan sel ke atas","Merge cell right":"Gabungkan sel ke kanan","Merge cell down":"Gabungkan sel ke bawah","Merge cell left":"Gabungkan sel ke kiri","Split cell vertically":"Bagikan sel secara vertikal","Split cell horizontally":"Bagikan sel secara horizontal","Merge cells":"Gabungkan sel","Table toolbar":"Alat tabel","Table properties":"Properti tabel","Cell properties":"Properti sel",Border:"Garis batas",Style:"Gaya",Width:"Lebar",Height:"Tinggi",Color:"Warna",Background:"Latar belakang",Padding:"Padding",Dimensions:"Dimensi","Table cell text alignment":"Penjajaran teks sel tabel",Alignment:"Penjajaran","Horizontal text alignment toolbar":"Bilah alat penjajaran teks horizontal","Vertical text alignment toolbar":"Bilah alat penjajaran teks vertikal","Table alignment toolbar":"Bilah alat penjajaran tabel",None:"Tidak ada",Solid:"Garis utuh",Dotted:"Titik titik",Dashed:"Garis putus-putus",Double:"Ganda",Groove:"Groove",Ridge:"Ridge",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Sejajarkan teks sel ke kiri","Align cell text to the center":"Sejajarkan teks sel ke tengah","Align cell text to the right":"Sejajarkan teks sel ke kanan","Justify cell text":"Ratakan teks sel","Align cell text to the top":"Sejajarkan teks sel ke atas","Align cell text to the middle":"Sejajarkan teks sel ke tengah","Align cell text to the bottom":"Sejajarkan teks sel ke bawah","Align table to the left":"Sejajarkan teks sel ke kiri","Center table":"Tengahkan tabel","Align table to the right":"Sejajarkan teks sel ke kanan","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Warna tidak valid. Coba \"#FF0000\" atau \"rgb(255,0,0)\" atau \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Nilai tidak valid. Coba \"10px\" atau \"2em\" atau hanya \"2\".","Color picker":"Pengambil warna","Toggle caption off":"Sembunyikan keterangan","Toggle caption on":"Tampilkan keterangan","Enter table caption":"Masukkan keterangan tabel","Rich Text Editor":"Editor Teks Kaya","Editor editing area: %0":"Area edit editor: %0","Edit block":"Sunting blok","Click to edit block":"Klik untuk mengedit blok","Drag to move":"Seret untuk memindahkan",Next:"Berikutnya",Previous:"Sebelumnya","Editor toolbar":"Alat editor","Dropdown toolbar":"Alat dropdown",Black:"Hitam","Dim grey":"Kelabu gelap",Grey:"Kelabu","Light grey":"Kelabu terang",White:"Putih",Red:"Merah",Orange:"Jingga",Yellow:"Kuning","Light green":"Hijau terang",Green:"Hijau",Aquamarine:"Biru laut",Turquoise:"Turkish","Light blue":"Biru terang",Blue:"Biru",Purple:"Ungu","Editor block content toolbar":"Bilah alat konten blok editor","Editor contextual toolbar":"Bilah alat kontekstual editor",HEX:"HEX",Accept:"Setuju","No results found":"Hasil tidak ditemukan","No searchable items":"Tidak ada item yang dapat dicari","Editor dialog":"Dialog editor",Close:"Tutup",Undo:"Batal",Redo:"Lakukan lagi","Upload in progress":"Sedang mengunggah","Widget toolbar":"Alat widget","Insert paragraph before block":"Tambahkan paragraf sebelum blok","Insert paragraph after block":"Tambahkan paragraf setelah blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tekan Enter untuk mengetik setelah atau tekan Shift + Enter untuk mengetik sebelum widget","Words: %0":"Kata: %0","Characters: %0":"Karakter: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/it.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/it.js index 78d7515310084567df643dade7310d7438d1a852..61016117a5cbb3fcf7649c52f397dad0d42938fb 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/it.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/it.js @@ -1 +1 @@ -(function(d){ const l = d['it'] = d['it'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Allinea a sinistra","Align right":"Allinea a destra","Align center":"Allinea al centro",Justify:"Giustifica","Text alignment":"Allineamento del testo","Text alignment toolbar":"Barra degli strumenti dell'allineamento",Bold:"Grassetto",Italic:"Corsivo",Underline:"Sottolineato",Code:"Codice",Strikethrough:"Barrato",Subscript:"Pedice",Superscript:"Apice","Block quote":"Blocco citazione","Insert code block":"Inserisci blocco di codice","Plain text":"Testo semplice",Cancel:"Annulla",Clear:"Cancella","Remove color":"Rimuovi colore","Restore default":"Ripristina predefinito",Save:"Salva","Show more items":"Mostra più elementi","%0 of %1":"%0 di %1","Cannot upload file:":"Impossibile caricare il file:","Rich Text Editor. Editing area: %0":"Editor Rich Text. Area di modifica: %0","Insert with file manager":"Inserisci con file manager","Replace with file manager":"Sostituisci con file manager","Insert image with file manager":"Inserisci l'immagine con il file manager","Replace image with file manager":"Sostituisci l'immagine con il file manager","Find and replace":"Trova e sostituisci","Find in text…":"Trova nel testo…",Find:"Trova","Previous result":"Risultato precedente","Next result":"Risultato successivo",Replace:"Sostituisci","Replace all":"Sostituisci tutto","Match case":"Distingui maiuscole e minuscole","Whole words only":"Solo parole intere","Replace with…":"Sostituisci con…","Text to find must not be empty.":"Il testo da cercare non può essere vuoto.","Tip: Find some text first in order to replace it.":"Consiglio: trova il testo prima di sostituirlo.","Advanced options":"Opzioni avanzate",Paragraph:"Paragrafo",Heading:"Intestazione","Choose heading":"Seleziona intestazione","Heading 1":"Intestazione 1","Heading 2":"Intestazione 2","Heading 3":"Intestazione 3","Heading 4":"Intestazione 4","Heading 5":"Intestazione 5","Heading 6":"Intestazione 6","Type your title":"Inserire il proprio titolo","Type or paste your content here.":"Inserire o incollare qui il proprio contenuto.","Horizontal line":"Linea orizzontale","HTML object":"Oggetto HTML","Increase indent":"Aumenta rientro","Decrease indent":"Riduci rientro",Unlink:"Elimina collegamento",Link:"Collegamento","Link URL":"URL del collegamento","Link image":"Collega immagine","Edit link":"Modifica collegamento","Open link in new tab":"Apri collegamento in nuova scheda","This link has no URL":"Questo collegamento non ha un URL","Open in a new tab":"Apri in una nuova scheda",Downloadable:"Scaricabile","Numbered List":"Elenco numerato","Bulleted List":"Elenco puntato","To-do List":"Elenco cose da fare","Bulleted list styles toolbar":"Barra degli strumenti con gli stili degli elenchi puntati","Numbered list styles toolbar":"Barra degli strumenti con gli stili degli elenchi numerati","Toggle the disc list style":"Attiva/disattiva lo stile degli elenchi con dischi","Toggle the circle list style":"Attiva/disattiva lo stile degli elenchi con cerchi","Toggle the square list style":"Attiva/disattiva lo stile degli elenchi con quadrati","Toggle the decimal list style":"Attiva/disattiva lo stile degli elenchi con numeri","Toggle the decimal with leading zero list style":"Attiva/disattiva lo stile degli elenchi con numeri con zero anteposto","Toggle the lower–roman list style":"Attiva/disattiva lo stile degli elenchi con numeri romani minuscoli","Toggle the upper–roman list style":"Attiva/disattiva lo stile degli elenchi con numeri romani maiuscoli","Toggle the lower–latin list style":"Attiva/disattiva lo stile degli elenchi con lettere minuscole","Toggle the upper–latin list style":"Attiva/disattiva lo stile degli elenchi con lettere maiuscole",Disc:"Disco",Circle:"Cerchio",Square:"Quadrato",Decimal:"Numero","Decimal with leading zero":"Numero con zero anteposto","Lower–roman":"Numero romano minuscolo","Upper-roman":"Numero romano maiuscolo","Lower-latin":"Lettera minuscola","Upper-latin":"Lettera maiuscola","List properties":"Proprietà elenco","Start at":"Inizia da","Start index must be greater than 0.":"L'indice iniziale deve essere maggiore di 0.","Reversed order":"Ordine inverso","Remove Format":"Rimuovi formato","Select all":"Seleziona tutto","Show blocks":"Mostra blocchi",Source:"Sorgente","Special characters":"Caratteri speciali",All:"Tutti",Arrows:"Frecce",Currency:"Valuta",Latin:"Latini",Mathematical:"Matematici",Text:"Testo","leftwards simple arrow":"freccia semplice verso sinistra","rightwards simple arrow":"freccia semplice verso destra","upwards simple arrow":"freccia semplice verso l'alto","downwards simple arrow":"freccia semplice verso il basso","leftwards double arrow":"Freccia doppia verso sinistra","rightwards double arrow":"Freccia doppia verso destra","upwards double arrow":"Freccia doppia verso l'alto","downwards double arrow":"Freccia doppia verso il basso","leftwards dashed arrow":"Freccia tratteggiata verso sinistra","rightwards dashed arrow":"Freccia tratteggiata verso destra","upwards dashed arrow":"Freccia tratteggiata verso l'alto","downwards dashed arrow":"Freccia tratteggiata verso il basso","leftwards arrow to bar":"Freccia verso barra a sinistra","rightwards arrow to bar":"Freccia verso barra a destra","upwards arrow to bar":"Freccia verso barra in alto","downwards arrow to bar":"Freccia verso barra in basso","up down arrow with base":"Doppia freccia verticale con base","back with leftwards arrow above":"back con sopra freccia verso sinistra","end with leftwards arrow above":"end con sopra freccia verso sinistra","on with exclamation mark with left right arrow above":"on! con sopra freccia verso sinistra","soon with rightwards arrow above":"soon con sopra freccia verso destra","top with upwards arrow above":"top con sopra freccia verso l'alto","Dollar sign":"Simbolo dollaro","Euro sign":"Simbolo euro","Yen sign":"Simbolo yen","Pound sign":"Simbolo sterlina","Cent sign":"Simbolo centesimo","Euro-currency sign":"Simbolo valuta euro","Colon sign":"Simbolo colon","Cruzeiro sign":"Simbolo cruzeiro","French franc sign":"Simbolo franco francese","Lira sign":"Simbolo lira","Currency sign":"Simbolo valuta","Bitcoin sign":"Simbolo bitcoin","Mill sign":"Simbolo millesimo","Naira sign":"Simbolo naira","Peseta sign":"Simbolo peseta","Rupee sign":"Simbolo rupia","Won sign":"Simbolo won","New sheqel sign":"Simbolo nuovo shekel","Dong sign":"Simbolo dong","Kip sign":"Simbolo kip","Tugrik sign":"Simbolo tugrik","Drachma sign":"Simbolo dracma","German penny sign":"Simbolo pfennig tedesco","Peso sign":"Simbolo peso","Guarani sign":"Simbolo guaranÃ","Austral sign":"Simbolo austral","Hryvnia sign":"Simbolo grivnia","Cedi sign":"Simbolo cedi","Livre tournois sign":"Simbolo livre tournois","Spesmilo sign":"Simbolo spesmilo","Tenge sign":"Simbolo tenge","Indian rupee sign":"Simbolo rupia indiana","Turkish lira sign":"Simbolo lira turca","Nordic mark sign":"Simbolo marco nordico","Manat sign":"Simbolo manat","Ruble sign":"Simbolo rublo","Latin capital letter a with macron":"Lettera A latina maiuscola con macron","Latin small letter a with macron":"Lettera A latina minuscola con macron","Latin capital letter a with breve":"Lettera A latina maiuscola con breve","Latin small letter a with breve":"Lettera A latina minuscola con breve","Latin capital letter a with ogonek":"Lettera A latina maiuscola con codetta","Latin small letter a with ogonek":"Lettera A latina minuscola con codetta","Latin capital letter c with acute":"Lettera C latina maiuscola con accento acuto","Latin small letter c with acute":"Lettera C latina minuscola con accento acuto","Latin capital letter c with circumflex":"Lettera C latina maiuscola con accento circonflesso","Latin small letter c with circumflex":"Lettera C latina minuscola con accento circonflesso","Latin capital letter c with dot above":"Lettera C latina maiuscola con punto sovrascritto","Latin small letter c with dot above":"Lettera C latina minuscola con punto sovrascritto","Latin capital letter c with caron":"Lettera C latina maiuscola con pipa","Latin small letter c with caron":"Lettera C latina minuscola con pipa","Latin capital letter d with caron":"Lettera D latina maiuscola con pipa","Latin small letter d with caron":"Lettera D latina minuscola con pipa","Latin capital letter d with stroke":"Lettera D latina maiuscola con barra","Latin small letter d with stroke":"Lettera D latina minuscola con barra","Latin capital letter e with macron":"Lettera E latina maiuscola con macron","Latin small letter e with macron":"Lettera E latina minuscola con macron","Latin capital letter e with breve":"Lettera E latina maiuscola con accento breve","Latin small letter e with breve":"Lettera E latina minuscola con accento breve","Latin capital letter e with dot above":"Lettera E latina maiuscola con punto sovrascritto","Latin small letter e with dot above":"Lettera E latina minuscola con punto sovrascritto","Latin capital letter e with ogonek":"Lettera E latina maiuscola con codetta","Latin small letter e with ogonek":"Lettera E latina minuscola con codetta","Latin capital letter e with caron":"Lettera E latina maiuscola con pipa","Latin small letter e with caron":"Lettera E latina minuscola con pipa","Latin capital letter g with circumflex":"Lettera G latina maiuscola con accento circonflesso","Latin small letter g with circumflex":"Lettera G latina minuscola con accento circonflesso","Latin capital letter g with breve":"Lettera G latina maiuscola con breve","Latin small letter g with breve":"Lettera G latina minuscola con breve","Latin capital letter g with dot above":"Lettera G latina maiuscola con punto sovrascritto","Latin small letter g with dot above":"Lettera G latina minuscola con punto sovrascritto","Latin capital letter g with cedilla":"Lettera G latina maiuscola con cediglia","Latin small letter g with cedilla":"Lettera G latina minuscola con cediglia","Latin capital letter h with circumflex":"Lettera H latina maiuscola con accento circonflesso","Latin small letter h with circumflex":"Lettera H latina minuscola con accento circonflesso","Latin capital letter h with stroke":"Lettera H latina maiuscola con barra","Latin small letter h with stroke":"Lettera H latina minuscola con barra","Latin capital letter i with tilde":"Lettera I latina maiuscola con tilde","Latin small letter i with tilde":"Lettera I latina minuscola con tilde","Latin capital letter i with macron":"Lettera I latina maiuscola con macron","Latin small letter i with macron":"Lettera I latina minuscola con macron","Latin capital letter i with breve":"Lettera I latina maiuscola con breve","Latin small letter i with breve":"Lettera I latina minuscola con breve","Latin capital letter i with ogonek":"Lettera I latina maiuscola con codetta","Latin small letter i with ogonek":"Lettera I latina minuscola con codetta","Latin capital letter i with dot above":"Lettera I latina maiuscola con punto sovrascritto","Latin small letter dotless i":"Lettera I latina minuscola senza punto","Latin capital ligature ij":"Legatura IJ latina maiuscola","Latin small ligature ij":"Legatura IJ latina minuscola","Latin capital letter j with circumflex":"Lettera J latina maiuscola con accento circonflesso","Latin small letter j with circumflex":"Lettera J latina minuscola con accento circonflesso","Latin capital letter k with cedilla":"Lettera K latina maiuscola con cediglia","Latin small letter k with cedilla":"Lettera K latina minuscola con cediglia","Latin small letter kra":"Lettera Kra latina minuscola","Latin capital letter l with acute":"Lettera L latina maiuscola con accento acuto","Latin small letter l with acute":"Lettera L latina minuscola con accento acuto","Latin capital letter l with cedilla":"Lettera L latina maiuscola con cediglia","Latin small letter l with cedilla":"Lettera L latina minuscola con cediglia","Latin capital letter l with caron":"Lettera L latina maiuscola con pipa","Latin small letter l with caron":"Lettera L latina minuscola con pipa","Latin capital letter l with middle dot":"Lettera L latina maiuscola con punto in mezzo","Latin small letter l with middle dot":"Lettera L latina minuscola con punto in mezzo","Latin capital letter l with stroke":"Lettera L latina maiuscola con barra","Latin small letter l with stroke":"Lettera L latina minuscola con barra","Latin capital letter n with acute":"Lettera N latina maiuscola con accento acuto","Latin small letter n with acute":"Lettera N latina minuscola con accento acuto","Latin capital letter n with cedilla":"Lettera N latina maiuscola con cediglia","Latin small letter n with cedilla":"Lettera N latina minuscola con cediglia","Latin capital letter n with caron":"Lettera N latina maiuscola con pipa","Latin small letter n with caron":"Lettera N latina minuscola con pipa","Latin small letter n preceded by apostrophe":"Lettera N latina minuscola preceduta da apostrofo","Latin capital letter eng":"Nasale velare maiuscola","Latin small letter eng":"Nasale velare minuscola","Latin capital letter o with macron":"Lettera O latina maiuscola con macron","Latin small letter o with macron":"Lettera O latina minuscola con macron","Latin capital letter o with breve":"Lettera O latina maiuscola con breve","Latin small letter o with breve":"Lettera O latina minuscola con breve","Latin capital letter o with double acute":"Lettera O latina maiuscola con doppio accento acuto","Latin small letter o with double acute":"Lettera O latina minuscola con doppio accento acuto","Latin capital ligature oe":"Legatura OE latina maiuscola","Latin small ligature oe":"Legatura OE latina minuscola","Latin capital letter r with acute":"Lettera R latina maiuscola con accento acuto","Latin small letter r with acute":"Lettera R latina minuscola con accento acuto","Latin capital letter r with cedilla":"Lettera R latina maiuscola con cediglia","Latin small letter r with cedilla":"Lettera R latina minuscola con cediglia","Latin capital letter r with caron":"Lettera R latina maiuscola con pipa","Latin small letter r with caron":"Lettera R latina minuscola con pipa","Latin capital letter s with acute":"Lettera S latina maiuscola con accento acuto","Latin small letter s with acute":"Lettera S latina minuscola con accento acuto","Latin capital letter s with circumflex":"Lettera S latina maiuscola con accento circonflesso","Latin small letter s with circumflex":"Lettera S latina minuscola con accento circonflesso","Latin capital letter s with cedilla":"Lettera S latina maiuscola con cediglia","Latin small letter s with cedilla":"Lettera S latina minuscola con cediglia","Latin capital letter s with caron":"Lettera S latina maiuscola con pipa","Latin small letter s with caron":"Lettera S latina minuscola con pipa","Latin capital letter t with cedilla":"Lettera T latina maiuscola con cediglia","Latin small letter t with cedilla":"Lettera T latina minuscola con cediglia","Latin capital letter t with caron":"Lettera T latina maiuscola con pipa","Latin small letter t with caron":"Lettera T latina minuscola con pipa","Latin capital letter t with stroke":"Lettera T latina maiuscola con barra","Latin small letter t with stroke":"Lettera T latina minuscola con barra","Latin capital letter u with tilde":"Lettera U latina maiuscola con tilde","Latin small letter u with tilde":"Lettera U latina minuscola con tilde","Latin capital letter u with macron":"Lettera U latina maiuscola con macron","Latin small letter u with macron":"Lettera U latina minuscola con macron","Latin capital letter u with breve":"Lettera U latina maiuscola con breve","Latin small letter u with breve":"Lettera U latina minuscola con breve","Latin capital letter u with ring above":"Lettera U latina maiuscola con anello in alto","Latin small letter u with ring above":"Lettera U latina minuscola con cerchio in alto","Latin capital letter u with double acute":"Lettera U latina maiuscola con doppio accento acuto","Latin small letter u with double acute":"Lettera U latina minuscola con doppio accento acuto","Latin capital letter u with ogonek":"Lettera U latina maiuscola con codetta","Latin small letter u with ogonek":"Lettera U latina minuscola con codetta","Latin capital letter w with circumflex":"Lettera W latina maiuscola con accento circonflesso","Latin small letter w with circumflex":"Lettera W latina minuscola con accento circonflesso","Latin capital letter y with circumflex":"Lettera Y latina maiuscola con accento circonflesso","Latin small letter y with circumflex":"Lettera Y latina minuscola con accento circonflesso","Latin capital letter y with diaeresis":"Lettera Y latina maiuscola con dieresi","Latin capital letter z with acute":"Lettera Z latina maiuscola con accento acuto","Latin small letter z with acute":"Lettera Z latina minuscola con accento acuto","Latin capital letter z with dot above":"Lettera Z latina maiuscola con punto sovrascritto","Latin small letter z with dot above":"Lettera Z latina minuscola con punto sovrascritto","Latin capital letter z with caron":"Lettera Z latina maiuscola con pipa","Latin small letter z with caron":"Lettera Z latina minuscola con pipa","Latin small letter long s":"Lettera S latina lunga minuscola","Less-than sign":"Simbolo minore di","Greater-than sign":"Simbolo maggiore di","Less-than or equal to":"Minore o uguale a","Greater-than or equal to":"Maggiore o uguale a","En dash":"Trattino medio (en)","Em dash":"Trattino lungo (em)",Macron:"Macron",Overline:"Linea alta","Degree sign":"Simbolo gradi","Minus sign":"Segno di sottrazione","Plus-minus sign":"Segno più o meno","Division sign":"Segno di divisione","Fraction slash":"Barra di frazione","Multiplication sign":"Segno di moltiplicazione","Latin small letter f with hook":"Lettera f latina minuscola con gancio",Integral:"Integrale","N-ary summation":"Sommatoria",Infinity:"Infinito","Square root":"Radice quadrata","Tilde operator":"Operatore tilde","Approximately equal to":"Approssimativamente uguale a","Almost equal to":"Quasi uguale a","Not equal to":"Non uguale a","Identical to":"Identico a","Element of":"Elemento di","Not an element of":"Non parte di","Contains as member":"Contiene","N-ary product":"Prodotto ennesimo","Logical and":"E logico","Logical or":"O logico","Not sign":"Simbolo Not",Intersection:"Intersezione",Union:"Unione","Partial differential":"Derivata parziale","For all":"Per ogni","There exists":"Esiste","Empty set":"Insieme vuoto",Nabla:"Nabla","Asterisk operator":"Operatore asterisco","Proportional to":"Proporzionale a",Angle:"Angolo","Vulgar fraction one quarter":"Frazione semplice un quarto","Vulgar fraction one half":"Frazione semplice un mezzo","Vulgar fraction three quarters":"Frazione semplice tre quarti","Single left-pointing angle quotation mark":"Virgoletta angolare a sinistra","Single right-pointing angle quotation mark":"Virgoletta angolare a destra","Left-pointing double angle quotation mark":"Virgolette doppie angolari a sinistra","Right-pointing double angle quotation mark":"Virgolette doppie angolari a destra","Left single quotation mark":"Virgoletta a sinistra","Right single quotation mark":"Virgoletta a destra","Left double quotation mark":"Doppie virgolette a sinistra","Right double quotation mark":"Doppie virgolette a destra","Single low-9 quotation mark":"Virgoletta bassa","Double low-9 quotation mark":"Doppie virgolette basse","Inverted exclamation mark":"Punto esclamativo invertito","Inverted question mark":"Punto interrogativo invertito","Two dot leader":"Due punti iniziali","Horizontal ellipsis":"Puntini di sospensione orizzontali","Double dagger":"Doppio obelisco","Per mille sign":"Simbolo per mille","Per ten thousand sign":"Simbolo per diecimila","Double exclamation mark":"Doppio punto esclamativo","Question exclamation mark":"Punti interrogativo ed esclamativo","Exclamation question mark":"Punti esclamativo e interrogativo","Double question mark":"Doppio punto interrogativo","Copyright sign":"Simbolo copyright","Registered sign":"Simbolo marchio registrato","Trade mark sign":"Simbolo trademark","Section sign":"Simbolo sezione","Paragraph sign":"Simbolo paragrafo","Reversed paragraph sign":"Simbolo paragrafo invertito","Character categories":"Categorie di caratteri",Styles:"Stili","Multiple styles":"Stili multipli","Block styles":"Stili per blocchi","Text styles":"Stili per testi","Insert table":"Inserisci tabella","Header column":"Intestazione colonna","Insert column left":"Inserisci colonna a sinistra","Insert column right":"Inserisci colonna a destra","Delete column":"Elimina colonna","Select column":"Seleziona colonna",Column:"Colonna","Header row":"Riga d'intestazione","Insert row below":"Inserisci riga sotto","Insert row above":"Inserisci riga sopra","Delete row":"Elimina riga","Select row":"Seleziona riga",Row:"Riga","Merge cell up":"Unisci cella sopra","Merge cell right":"Unisci cella a destra","Merge cell down":"Unisci cella sotto","Merge cell left":"Unisci cella a sinistra","Split cell vertically":"Dividi cella verticalmente","Split cell horizontally":"Dividi cella orizzontalmente","Merge cells":"Unisci celle","Table toolbar":"Barra degli strumenti della tabella","Table properties":"Proprietà tabella","Cell properties":"Proprietà cella",Border:"Bordo",Style:"Stile",Width:"Larghezza",Height:"Altezza",Color:"Colore",Background:"Sfondo",Padding:"Spaziatura interna",Dimensions:"Dimensioni","Table cell text alignment":"Allineamento del testo nella cella della tabella",Alignment:"Allineamento","Horizontal text alignment toolbar":"Barra degli strumenti dell'allineamento orizzontale del testo","Vertical text alignment toolbar":"Barra degli strumenti dell'allineamento verticale del testo","Table alignment toolbar":"Barra degli strumenti dell'allineamento della tabella",None:"Nessuno",Solid:"Solido",Dotted:"Punteggiato",Dashed:"Tratteggiato",Double:"Doppio",Groove:"Scanalatura",Ridge:"Rilievo",Inset:"Incassato",Outset:"Rialzato","Align cell text to the left":"Allinea il testo della cella a sinistra","Align cell text to the center":"Allinea il testo della cella al centro","Align cell text to the right":"Allinea il testo della cella a destra","Justify cell text":"Testo della cella giustificato","Align cell text to the top":"Allinea il testo della cella in alto","Align cell text to the middle":"Allinea il testo della cella in mezzo","Align cell text to the bottom":"Allinea il testo della cella in basso","Align table to the left":"Allinea tabella a sinistra","Center table":"Allinea tabella al centro","Align table to the right":"Allinea tabella a destra","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Il colore non è valido. Provare \"#FF0000\" o \"rgb(255,0,0)\" o \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Il valore non è valido. Provare \"10px\" o \"2em\" o semplicemente \"2\".","Color picker":"Selezione colore","Toggle caption off":"Attiva didascalia","Toggle caption on":"Disattiva didascalia","Enter table caption":"Inserire la didascalia della tabella","Rich Text Editor":"Editor di testo formattato","Editor editing area: %0":"Area di modifica dell'editor: %0","Edit block":"Modifica blocco","Click to edit block":"Clicca per modificare il blocco","Drag to move":"Trascina per spostare",Next:"Avanti",Previous:"Indietro","Editor toolbar":"Barra degli strumenti dell'editor","Dropdown toolbar":"Barra degli strumenti del menu a discesa",Black:"Nero","Dim grey":"Grigio tenue",Grey:"Grigio","Light grey":"Grigio chiaro",White:"Bianco",Red:"Rosso",Orange:"Arancio",Yellow:"Giallo","Light green":"Verde chiaro",Green:"Verde",Aquamarine:"Aquamarina",Turquoise:"Turchese","Light blue":"Azzurro",Blue:"Blu",Purple:"Porpora","Editor block content toolbar":"Barra degli strumenti contestuale dell'editor del blocco","Editor contextual toolbar":"Barra degli strumenti contestuale dell'editor",HEX:"HEX",Accept:"Accetta","No results found":"Nessun risultato trovato","No searchable items":"Nessun elemento ricercabile","Editor dialog":"Finestra di dialogo dell'editor",Close:"Chiudi",Undo:"Annulla",Redo:"Ripristina","Upload in progress":"Caricamento in corso","Widget toolbar":"Barra degli strumenti del widget","Insert paragraph before block":"Inserisci paragrafo prima di blocco","Insert paragraph after block":"Inserisci paragrafo dopo blocco","Press Enter to type after or press Shift + Enter to type before the widget":"Premere Invio per inserire dopo il widget o premere Maiusc + Invio per inserire prima del widget","Words: %0":"Parole: %0","Characters: %0":"Caratteri: %0"} );l.getPluralForm=function(n){return n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['it'] = d['it'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Allinea a sinistra","Align right":"Allinea a destra","Align center":"Allinea al centro",Justify:"Giustifica","Text alignment":"Allineamento del testo","Text alignment toolbar":"Barra degli strumenti dell'allineamento",Bold:"Grassetto",Italic:"Corsivo",Underline:"Sottolineato",Code:"Codice",Strikethrough:"Barrato",Subscript:"Pedice",Superscript:"Apice","Block quote":"Blocco citazione","Insert code block":"Inserisci blocco di codice","Plain text":"Testo semplice",Cancel:"Annulla",Clear:"Cancella","Remove color":"Rimuovi colore","Restore default":"Ripristina predefinito",Save:"Salva","Show more items":"Mostra più elementi","%0 of %1":"%0 di %1","Cannot upload file:":"Impossibile caricare il file:","Rich Text Editor. Editing area: %0":"Editor Rich Text. Area di modifica: %0","Insert with file manager":"Inserisci con file manager","Replace with file manager":"Sostituisci con file manager","Insert image with file manager":"Inserisci l'immagine con il file manager","Replace image with file manager":"Sostituisci l'immagine con il file manager","Find and replace":"Trova e sostituisci","Find in text…":"Trova nel testo…",Find:"Trova","Previous result":"Risultato precedente","Next result":"Risultato successivo",Replace:"Sostituisci","Replace all":"Sostituisci tutto","Match case":"Distingui maiuscole e minuscole","Whole words only":"Solo parole intere","Replace with…":"Sostituisci con…","Text to find must not be empty.":"Il testo da cercare non può essere vuoto.","Tip: Find some text first in order to replace it.":"Consiglio: trova il testo prima di sostituirlo.","Advanced options":"Opzioni avanzate","Font Size":"Dimensione caratteri",Tiny:"Piccolissimi",Small:"Piccoli",Big:"Grandi",Huge:"Grandissimi","Font Family":"Tipo di caratteri",Default:"Predefinito","Font Color":"Colore caratteri","Font Background Color":"Colore di sfondo caratteri","Document colors":"Colori del docmento",Paragraph:"Paragrafo",Heading:"Intestazione","Choose heading":"Seleziona intestazione","Heading 1":"Intestazione 1","Heading 2":"Intestazione 2","Heading 3":"Intestazione 3","Heading 4":"Intestazione 4","Heading 5":"Intestazione 5","Heading 6":"Intestazione 6","Type your title":"Inserire il proprio titolo","Type or paste your content here.":"Inserire o incollare qui il proprio contenuto.","Horizontal line":"Linea orizzontale","HTML object":"Oggetto HTML","Increase indent":"Aumenta rientro","Decrease indent":"Riduci rientro",Unlink:"Elimina collegamento",Link:"Collegamento","Link URL":"URL del collegamento","Link image":"Collega immagine","Edit link":"Modifica collegamento","Open link in new tab":"Apri collegamento in nuova scheda","This link has no URL":"Questo collegamento non ha un URL","Open in a new tab":"Apri in una nuova scheda",Downloadable:"Scaricabile","Numbered List":"Elenco numerato","Bulleted List":"Elenco puntato","To-do List":"Elenco cose da fare","Bulleted list styles toolbar":"Barra degli strumenti con gli stili degli elenchi puntati","Numbered list styles toolbar":"Barra degli strumenti con gli stili degli elenchi numerati","Toggle the disc list style":"Attiva/disattiva lo stile degli elenchi con dischi","Toggle the circle list style":"Attiva/disattiva lo stile degli elenchi con cerchi","Toggle the square list style":"Attiva/disattiva lo stile degli elenchi con quadrati","Toggle the decimal list style":"Attiva/disattiva lo stile degli elenchi con numeri","Toggle the decimal with leading zero list style":"Attiva/disattiva lo stile degli elenchi con numeri con zero anteposto","Toggle the lower–roman list style":"Attiva/disattiva lo stile degli elenchi con numeri romani minuscoli","Toggle the upper–roman list style":"Attiva/disattiva lo stile degli elenchi con numeri romani maiuscoli","Toggle the lower–latin list style":"Attiva/disattiva lo stile degli elenchi con lettere minuscole","Toggle the upper–latin list style":"Attiva/disattiva lo stile degli elenchi con lettere maiuscole",Disc:"Disco",Circle:"Cerchio",Square:"Quadrato",Decimal:"Numero","Decimal with leading zero":"Numero con zero anteposto","Lower–roman":"Numero romano minuscolo","Upper-roman":"Numero romano maiuscolo","Lower-latin":"Lettera minuscola","Upper-latin":"Lettera maiuscola","List properties":"Proprietà elenco","Start at":"Inizia da","Start index must be greater than 0.":"L'indice iniziale deve essere maggiore di 0.","Reversed order":"Ordine inverso","Remove Format":"Rimuovi formato","Select all":"Seleziona tutto","Show blocks":"Mostra blocchi",Source:"Sorgente","Special characters":"Caratteri speciali",All:"Tutti",Arrows:"Frecce",Currency:"Valuta",Latin:"Latini",Mathematical:"Matematici",Text:"Testo","leftwards simple arrow":"freccia semplice verso sinistra","rightwards simple arrow":"freccia semplice verso destra","upwards simple arrow":"freccia semplice verso l'alto","downwards simple arrow":"freccia semplice verso il basso","leftwards double arrow":"Freccia doppia verso sinistra","rightwards double arrow":"Freccia doppia verso destra","upwards double arrow":"Freccia doppia verso l'alto","downwards double arrow":"Freccia doppia verso il basso","leftwards dashed arrow":"Freccia tratteggiata verso sinistra","rightwards dashed arrow":"Freccia tratteggiata verso destra","upwards dashed arrow":"Freccia tratteggiata verso l'alto","downwards dashed arrow":"Freccia tratteggiata verso il basso","leftwards arrow to bar":"Freccia verso barra a sinistra","rightwards arrow to bar":"Freccia verso barra a destra","upwards arrow to bar":"Freccia verso barra in alto","downwards arrow to bar":"Freccia verso barra in basso","up down arrow with base":"Doppia freccia verticale con base","back with leftwards arrow above":"back con sopra freccia verso sinistra","end with leftwards arrow above":"end con sopra freccia verso sinistra","on with exclamation mark with left right arrow above":"on! con sopra freccia verso sinistra","soon with rightwards arrow above":"soon con sopra freccia verso destra","top with upwards arrow above":"top con sopra freccia verso l'alto","Dollar sign":"Simbolo dollaro","Euro sign":"Simbolo euro","Yen sign":"Simbolo yen","Pound sign":"Simbolo sterlina","Cent sign":"Simbolo centesimo","Euro-currency sign":"Simbolo valuta euro","Colon sign":"Simbolo colon","Cruzeiro sign":"Simbolo cruzeiro","French franc sign":"Simbolo franco francese","Lira sign":"Simbolo lira","Currency sign":"Simbolo valuta","Bitcoin sign":"Simbolo bitcoin","Mill sign":"Simbolo millesimo","Naira sign":"Simbolo naira","Peseta sign":"Simbolo peseta","Rupee sign":"Simbolo rupia","Won sign":"Simbolo won","New sheqel sign":"Simbolo nuovo shekel","Dong sign":"Simbolo dong","Kip sign":"Simbolo kip","Tugrik sign":"Simbolo tugrik","Drachma sign":"Simbolo dracma","German penny sign":"Simbolo pfennig tedesco","Peso sign":"Simbolo peso","Guarani sign":"Simbolo guaranÃ","Austral sign":"Simbolo austral","Hryvnia sign":"Simbolo grivnia","Cedi sign":"Simbolo cedi","Livre tournois sign":"Simbolo livre tournois","Spesmilo sign":"Simbolo spesmilo","Tenge sign":"Simbolo tenge","Indian rupee sign":"Simbolo rupia indiana","Turkish lira sign":"Simbolo lira turca","Nordic mark sign":"Simbolo marco nordico","Manat sign":"Simbolo manat","Ruble sign":"Simbolo rublo","Latin capital letter a with macron":"Lettera A latina maiuscola con macron","Latin small letter a with macron":"Lettera A latina minuscola con macron","Latin capital letter a with breve":"Lettera A latina maiuscola con breve","Latin small letter a with breve":"Lettera A latina minuscola con breve","Latin capital letter a with ogonek":"Lettera A latina maiuscola con codetta","Latin small letter a with ogonek":"Lettera A latina minuscola con codetta","Latin capital letter c with acute":"Lettera C latina maiuscola con accento acuto","Latin small letter c with acute":"Lettera C latina minuscola con accento acuto","Latin capital letter c with circumflex":"Lettera C latina maiuscola con accento circonflesso","Latin small letter c with circumflex":"Lettera C latina minuscola con accento circonflesso","Latin capital letter c with dot above":"Lettera C latina maiuscola con punto sovrascritto","Latin small letter c with dot above":"Lettera C latina minuscola con punto sovrascritto","Latin capital letter c with caron":"Lettera C latina maiuscola con pipa","Latin small letter c with caron":"Lettera C latina minuscola con pipa","Latin capital letter d with caron":"Lettera D latina maiuscola con pipa","Latin small letter d with caron":"Lettera D latina minuscola con pipa","Latin capital letter d with stroke":"Lettera D latina maiuscola con barra","Latin small letter d with stroke":"Lettera D latina minuscola con barra","Latin capital letter e with macron":"Lettera E latina maiuscola con macron","Latin small letter e with macron":"Lettera E latina minuscola con macron","Latin capital letter e with breve":"Lettera E latina maiuscola con accento breve","Latin small letter e with breve":"Lettera E latina minuscola con accento breve","Latin capital letter e with dot above":"Lettera E latina maiuscola con punto sovrascritto","Latin small letter e with dot above":"Lettera E latina minuscola con punto sovrascritto","Latin capital letter e with ogonek":"Lettera E latina maiuscola con codetta","Latin small letter e with ogonek":"Lettera E latina minuscola con codetta","Latin capital letter e with caron":"Lettera E latina maiuscola con pipa","Latin small letter e with caron":"Lettera E latina minuscola con pipa","Latin capital letter g with circumflex":"Lettera G latina maiuscola con accento circonflesso","Latin small letter g with circumflex":"Lettera G latina minuscola con accento circonflesso","Latin capital letter g with breve":"Lettera G latina maiuscola con breve","Latin small letter g with breve":"Lettera G latina minuscola con breve","Latin capital letter g with dot above":"Lettera G latina maiuscola con punto sovrascritto","Latin small letter g with dot above":"Lettera G latina minuscola con punto sovrascritto","Latin capital letter g with cedilla":"Lettera G latina maiuscola con cediglia","Latin small letter g with cedilla":"Lettera G latina minuscola con cediglia","Latin capital letter h with circumflex":"Lettera H latina maiuscola con accento circonflesso","Latin small letter h with circumflex":"Lettera H latina minuscola con accento circonflesso","Latin capital letter h with stroke":"Lettera H latina maiuscola con barra","Latin small letter h with stroke":"Lettera H latina minuscola con barra","Latin capital letter i with tilde":"Lettera I latina maiuscola con tilde","Latin small letter i with tilde":"Lettera I latina minuscola con tilde","Latin capital letter i with macron":"Lettera I latina maiuscola con macron","Latin small letter i with macron":"Lettera I latina minuscola con macron","Latin capital letter i with breve":"Lettera I latina maiuscola con breve","Latin small letter i with breve":"Lettera I latina minuscola con breve","Latin capital letter i with ogonek":"Lettera I latina maiuscola con codetta","Latin small letter i with ogonek":"Lettera I latina minuscola con codetta","Latin capital letter i with dot above":"Lettera I latina maiuscola con punto sovrascritto","Latin small letter dotless i":"Lettera I latina minuscola senza punto","Latin capital ligature ij":"Legatura IJ latina maiuscola","Latin small ligature ij":"Legatura IJ latina minuscola","Latin capital letter j with circumflex":"Lettera J latina maiuscola con accento circonflesso","Latin small letter j with circumflex":"Lettera J latina minuscola con accento circonflesso","Latin capital letter k with cedilla":"Lettera K latina maiuscola con cediglia","Latin small letter k with cedilla":"Lettera K latina minuscola con cediglia","Latin small letter kra":"Lettera Kra latina minuscola","Latin capital letter l with acute":"Lettera L latina maiuscola con accento acuto","Latin small letter l with acute":"Lettera L latina minuscola con accento acuto","Latin capital letter l with cedilla":"Lettera L latina maiuscola con cediglia","Latin small letter l with cedilla":"Lettera L latina minuscola con cediglia","Latin capital letter l with caron":"Lettera L latina maiuscola con pipa","Latin small letter l with caron":"Lettera L latina minuscola con pipa","Latin capital letter l with middle dot":"Lettera L latina maiuscola con punto in mezzo","Latin small letter l with middle dot":"Lettera L latina minuscola con punto in mezzo","Latin capital letter l with stroke":"Lettera L latina maiuscola con barra","Latin small letter l with stroke":"Lettera L latina minuscola con barra","Latin capital letter n with acute":"Lettera N latina maiuscola con accento acuto","Latin small letter n with acute":"Lettera N latina minuscola con accento acuto","Latin capital letter n with cedilla":"Lettera N latina maiuscola con cediglia","Latin small letter n with cedilla":"Lettera N latina minuscola con cediglia","Latin capital letter n with caron":"Lettera N latina maiuscola con pipa","Latin small letter n with caron":"Lettera N latina minuscola con pipa","Latin small letter n preceded by apostrophe":"Lettera N latina minuscola preceduta da apostrofo","Latin capital letter eng":"Nasale velare maiuscola","Latin small letter eng":"Nasale velare minuscola","Latin capital letter o with macron":"Lettera O latina maiuscola con macron","Latin small letter o with macron":"Lettera O latina minuscola con macron","Latin capital letter o with breve":"Lettera O latina maiuscola con breve","Latin small letter o with breve":"Lettera O latina minuscola con breve","Latin capital letter o with double acute":"Lettera O latina maiuscola con doppio accento acuto","Latin small letter o with double acute":"Lettera O latina minuscola con doppio accento acuto","Latin capital ligature oe":"Legatura OE latina maiuscola","Latin small ligature oe":"Legatura OE latina minuscola","Latin capital letter r with acute":"Lettera R latina maiuscola con accento acuto","Latin small letter r with acute":"Lettera R latina minuscola con accento acuto","Latin capital letter r with cedilla":"Lettera R latina maiuscola con cediglia","Latin small letter r with cedilla":"Lettera R latina minuscola con cediglia","Latin capital letter r with caron":"Lettera R latina maiuscola con pipa","Latin small letter r with caron":"Lettera R latina minuscola con pipa","Latin capital letter s with acute":"Lettera S latina maiuscola con accento acuto","Latin small letter s with acute":"Lettera S latina minuscola con accento acuto","Latin capital letter s with circumflex":"Lettera S latina maiuscola con accento circonflesso","Latin small letter s with circumflex":"Lettera S latina minuscola con accento circonflesso","Latin capital letter s with cedilla":"Lettera S latina maiuscola con cediglia","Latin small letter s with cedilla":"Lettera S latina minuscola con cediglia","Latin capital letter s with caron":"Lettera S latina maiuscola con pipa","Latin small letter s with caron":"Lettera S latina minuscola con pipa","Latin capital letter t with cedilla":"Lettera T latina maiuscola con cediglia","Latin small letter t with cedilla":"Lettera T latina minuscola con cediglia","Latin capital letter t with caron":"Lettera T latina maiuscola con pipa","Latin small letter t with caron":"Lettera T latina minuscola con pipa","Latin capital letter t with stroke":"Lettera T latina maiuscola con barra","Latin small letter t with stroke":"Lettera T latina minuscola con barra","Latin capital letter u with tilde":"Lettera U latina maiuscola con tilde","Latin small letter u with tilde":"Lettera U latina minuscola con tilde","Latin capital letter u with macron":"Lettera U latina maiuscola con macron","Latin small letter u with macron":"Lettera U latina minuscola con macron","Latin capital letter u with breve":"Lettera U latina maiuscola con breve","Latin small letter u with breve":"Lettera U latina minuscola con breve","Latin capital letter u with ring above":"Lettera U latina maiuscola con anello in alto","Latin small letter u with ring above":"Lettera U latina minuscola con cerchio in alto","Latin capital letter u with double acute":"Lettera U latina maiuscola con doppio accento acuto","Latin small letter u with double acute":"Lettera U latina minuscola con doppio accento acuto","Latin capital letter u with ogonek":"Lettera U latina maiuscola con codetta","Latin small letter u with ogonek":"Lettera U latina minuscola con codetta","Latin capital letter w with circumflex":"Lettera W latina maiuscola con accento circonflesso","Latin small letter w with circumflex":"Lettera W latina minuscola con accento circonflesso","Latin capital letter y with circumflex":"Lettera Y latina maiuscola con accento circonflesso","Latin small letter y with circumflex":"Lettera Y latina minuscola con accento circonflesso","Latin capital letter y with diaeresis":"Lettera Y latina maiuscola con dieresi","Latin capital letter z with acute":"Lettera Z latina maiuscola con accento acuto","Latin small letter z with acute":"Lettera Z latina minuscola con accento acuto","Latin capital letter z with dot above":"Lettera Z latina maiuscola con punto sovrascritto","Latin small letter z with dot above":"Lettera Z latina minuscola con punto sovrascritto","Latin capital letter z with caron":"Lettera Z latina maiuscola con pipa","Latin small letter z with caron":"Lettera Z latina minuscola con pipa","Latin small letter long s":"Lettera S latina lunga minuscola","Less-than sign":"Simbolo minore di","Greater-than sign":"Simbolo maggiore di","Less-than or equal to":"Minore o uguale a","Greater-than or equal to":"Maggiore o uguale a","En dash":"Trattino medio (en)","Em dash":"Trattino lungo (em)",Macron:"Macron",Overline:"Linea alta","Degree sign":"Simbolo gradi","Minus sign":"Segno di sottrazione","Plus-minus sign":"Segno più o meno","Division sign":"Segno di divisione","Fraction slash":"Barra di frazione","Multiplication sign":"Segno di moltiplicazione","Latin small letter f with hook":"Lettera f latina minuscola con gancio",Integral:"Integrale","N-ary summation":"Sommatoria",Infinity:"Infinito","Square root":"Radice quadrata","Tilde operator":"Operatore tilde","Approximately equal to":"Approssimativamente uguale a","Almost equal to":"Quasi uguale a","Not equal to":"Non uguale a","Identical to":"Identico a","Element of":"Elemento di","Not an element of":"Non parte di","Contains as member":"Contiene","N-ary product":"Prodotto ennesimo","Logical and":"E logico","Logical or":"O logico","Not sign":"Simbolo Not",Intersection:"Intersezione",Union:"Unione","Partial differential":"Derivata parziale","For all":"Per ogni","There exists":"Esiste","Empty set":"Insieme vuoto",Nabla:"Nabla","Asterisk operator":"Operatore asterisco","Proportional to":"Proporzionale a",Angle:"Angolo","Vulgar fraction one quarter":"Frazione semplice un quarto","Vulgar fraction one half":"Frazione semplice un mezzo","Vulgar fraction three quarters":"Frazione semplice tre quarti","Single left-pointing angle quotation mark":"Virgoletta angolare a sinistra","Single right-pointing angle quotation mark":"Virgoletta angolare a destra","Left-pointing double angle quotation mark":"Virgolette doppie angolari a sinistra","Right-pointing double angle quotation mark":"Virgolette doppie angolari a destra","Left single quotation mark":"Virgoletta a sinistra","Right single quotation mark":"Virgoletta a destra","Left double quotation mark":"Doppie virgolette a sinistra","Right double quotation mark":"Doppie virgolette a destra","Single low-9 quotation mark":"Virgoletta bassa","Double low-9 quotation mark":"Doppie virgolette basse","Inverted exclamation mark":"Punto esclamativo invertito","Inverted question mark":"Punto interrogativo invertito","Two dot leader":"Due punti iniziali","Horizontal ellipsis":"Puntini di sospensione orizzontali","Double dagger":"Doppio obelisco","Per mille sign":"Simbolo per mille","Per ten thousand sign":"Simbolo per diecimila","Double exclamation mark":"Doppio punto esclamativo","Question exclamation mark":"Punti interrogativo ed esclamativo","Exclamation question mark":"Punti esclamativo e interrogativo","Double question mark":"Doppio punto interrogativo","Copyright sign":"Simbolo copyright","Registered sign":"Simbolo marchio registrato","Trade mark sign":"Simbolo trademark","Section sign":"Simbolo sezione","Paragraph sign":"Simbolo paragrafo","Reversed paragraph sign":"Simbolo paragrafo invertito","Character categories":"Categorie di caratteri",Styles:"Stili","Multiple styles":"Stili multipli","Block styles":"Stili per blocchi","Text styles":"Stili per testi","Insert table":"Inserisci tabella","Header column":"Intestazione colonna","Insert column left":"Inserisci colonna a sinistra","Insert column right":"Inserisci colonna a destra","Delete column":"Elimina colonna","Select column":"Seleziona colonna",Column:"Colonna","Header row":"Riga d'intestazione","Insert row below":"Inserisci riga sotto","Insert row above":"Inserisci riga sopra","Delete row":"Elimina riga","Select row":"Seleziona riga",Row:"Riga","Merge cell up":"Unisci cella sopra","Merge cell right":"Unisci cella a destra","Merge cell down":"Unisci cella sotto","Merge cell left":"Unisci cella a sinistra","Split cell vertically":"Dividi cella verticalmente","Split cell horizontally":"Dividi cella orizzontalmente","Merge cells":"Unisci celle","Table toolbar":"Barra degli strumenti della tabella","Table properties":"Proprietà tabella","Cell properties":"Proprietà cella",Border:"Bordo",Style:"Stile",Width:"Larghezza",Height:"Altezza",Color:"Colore",Background:"Sfondo",Padding:"Spaziatura interna",Dimensions:"Dimensioni","Table cell text alignment":"Allineamento del testo nella cella della tabella",Alignment:"Allineamento","Horizontal text alignment toolbar":"Barra degli strumenti dell'allineamento orizzontale del testo","Vertical text alignment toolbar":"Barra degli strumenti dell'allineamento verticale del testo","Table alignment toolbar":"Barra degli strumenti dell'allineamento della tabella",None:"Nessuno",Solid:"Solido",Dotted:"Punteggiato",Dashed:"Tratteggiato",Double:"Doppio",Groove:"Scanalatura",Ridge:"Rilievo",Inset:"Incassato",Outset:"Rialzato","Align cell text to the left":"Allinea il testo della cella a sinistra","Align cell text to the center":"Allinea il testo della cella al centro","Align cell text to the right":"Allinea il testo della cella a destra","Justify cell text":"Testo della cella giustificato","Align cell text to the top":"Allinea il testo della cella in alto","Align cell text to the middle":"Allinea il testo della cella in mezzo","Align cell text to the bottom":"Allinea il testo della cella in basso","Align table to the left":"Allinea tabella a sinistra","Center table":"Allinea tabella al centro","Align table to the right":"Allinea tabella a destra","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Il colore non è valido. Provare \"#FF0000\" o \"rgb(255,0,0)\" o \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Il valore non è valido. Provare \"10px\" o \"2em\" o semplicemente \"2\".","Color picker":"Selezione colore","Toggle caption off":"Attiva didascalia","Toggle caption on":"Disattiva didascalia","Enter table caption":"Inserire la didascalia della tabella","Rich Text Editor":"Editor di testo formattato","Editor editing area: %0":"Area di modifica dell'editor: %0","Edit block":"Modifica blocco","Click to edit block":"Clicca per modificare il blocco","Drag to move":"Trascina per spostare",Next:"Avanti",Previous:"Indietro","Editor toolbar":"Barra degli strumenti dell'editor","Dropdown toolbar":"Barra degli strumenti del menu a discesa",Black:"Nero","Dim grey":"Grigio tenue",Grey:"Grigio","Light grey":"Grigio chiaro",White:"Bianco",Red:"Rosso",Orange:"Arancio",Yellow:"Giallo","Light green":"Verde chiaro",Green:"Verde",Aquamarine:"Aquamarina",Turquoise:"Turchese","Light blue":"Azzurro",Blue:"Blu",Purple:"Porpora","Editor block content toolbar":"Barra degli strumenti contestuale dell'editor del blocco","Editor contextual toolbar":"Barra degli strumenti contestuale dell'editor",HEX:"HEX",Accept:"Accetta","No results found":"Nessun risultato trovato","No searchable items":"Nessun elemento ricercabile","Editor dialog":"Finestra di dialogo dell'editor",Close:"Chiudi",Undo:"Annulla",Redo:"Ripristina","Upload in progress":"Caricamento in corso","Widget toolbar":"Barra degli strumenti del widget","Insert paragraph before block":"Inserisci paragrafo prima di blocco","Insert paragraph after block":"Inserisci paragrafo dopo blocco","Press Enter to type after or press Shift + Enter to type before the widget":"Premere Invio per inserire dopo il widget o premere Maiusc + Invio per inserire prima del widget","Words: %0":"Parole: %0","Characters: %0":"Caratteri: %0"} );l.getPluralForm=function(n){return n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ja.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ja.js index e7f6279e29263beefb45e6f6b7414ec68cf27b9c..cebd2d72e16363bce888e0a1073750a0ce23ebc6 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ja.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ja.js @@ -1 +1 @@ -(function(d){ const l = d['ja'] = d['ja'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"å·¦æƒãˆ","Align right":"å³æƒãˆ","Align center":"ä¸å¤®æƒãˆ",Justify:"両端æƒãˆ","Text alignment":"æ–‡å—æƒãˆ","Text alignment toolbar":"テã‚ストã®æ•´åˆ—",Bold:"ボールド",Italic:"イタリック",Underline:"アンダーライン",Code:"コード",Strikethrough:"å–り消ã—ç·š",Subscript:"下付ãæ–‡å—",Superscript:"上付ãæ–‡å—","Block quote":"ブãƒãƒƒã‚¯ã‚¯ã‚ªãƒ¼ãƒˆ(引用)","Insert code block":"コードブãƒãƒƒã‚¯ã®æŒ¿å…¥","Plain text":"プレインテã‚スト",Cancel:"ã‚ャンセル",Clear:"消去","Remove color":"カラーを削除","Restore default":"åˆæœŸå€¤ã«æˆ»ã™",Save:"ä¿å˜","Show more items":"ä»–ã®é …目を表示","%0 of %1":"%0/%1","Cannot upload file:":"ファイルをアップãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“:","Rich Text Editor. Editing area: %0":"リッãƒãƒ†ã‚ストエディタ。編集エリア:%0","Insert with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§æŒ¿å…¥","Replace with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç½®æ›","Insert image with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç”»åƒã‚’挿入","Replace image with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç”»åƒã‚’ç½®æ›","Find and replace":"検索ã—ã¦ç½®æ›","Find in text…":"テã‚スト内を検索...",Find:"見ã¤ã‘ã‚‹","Previous result":"å‰ã®çµæžœ","Next result":"次ã®çµæžœ",Replace:"ç½®æ›","Replace all":"å…¨ã¦ã‚’ç½®æ›","Match case":"マッãƒã‚±ãƒ¼ã‚¹","Whole words only":"å˜èªžå…¨ä½“ã®ã¿","Replace with…":"ã“ã¡ã‚‰ã¨ç½®æ›...","Text to find must not be empty.":"検索対象テã‚スト欄ã¯ç©ºç™½ã«ã§ãã¾ã›ã‚“。","Tip: Find some text first in order to replace it.":"ヒント:置æ›ã™ã‚‹ã«ã¯ã€å¯¾è±¡ãƒ†ã‚ストを先ã«æ¤œç´¢ã—ã¦ãã ã•ã„。","Advanced options":"高度ãªã‚ªãƒ—ション",Paragraph:"段è½",Heading:"見出ã—","Choose heading":"見出ã—ã‚’é¸æŠž","Heading 1":"見出ã—1","Heading 2":"見出ã—2","Heading 3":"見出ã—3 ","Heading 4":"見出ã—4","Heading 5":"見出ã—5","Heading 6":"見出ã—6","Type your title":"タイトルを入力","Type or paste your content here.":"コンテンツをã“ã“ã«å…¥åŠ›ã¾ãŸã¯è²¼ã‚Šä»˜ã‘ã—ã¦ãã ã•ã„。","Horizontal line":"区切り","HTML object":"HTMLオブジェクト","Increase indent":"インデントã®è¿½åŠ ","Decrease indent":"インデントã®å‰Šé™¤",Unlink:"リンク解除",Link:"リンク","Link URL":"リンクURL","Link image":"リンク画åƒ","Edit link":"リンクを編集","Open link in new tab":"æ–°ã—ã„タブã§ãƒªãƒ³ã‚¯ã‚’é–‹ã","This link has no URL":"リンクã«URLãŒè¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“","Open in a new tab":"æ–°ã—ã„タブã§é–‹ã",Downloadable:"ダウンãƒãƒ¼ãƒ‰å¯èƒ½","Numbered List":"番å·ä»˜ãリスト","Bulleted List":"箇æ¡æ›¸ãリスト","To-do List":"ã‚„ã‚‹ã“ã¨ãƒªã‚¹ãƒˆ","Bulleted list styles toolbar":"箇æ¡æ›¸ãリストスタイルã®ãƒ„ールãƒãƒ¼","Numbered list styles toolbar":"番å·ä»˜ãリストスタイルã®ãƒ„ールãƒãƒ¼","Toggle the disc list style":"é»’ã„丸リストスタイルを切り替ãˆã‚‹","Toggle the circle list style":"白ã„丸リストスタイルを切り替ãˆã‚‹","Toggle the square list style":"é»’ã„四角リストスタイルを切り替ãˆã‚‹","Toggle the decimal list style":"10進数リストスタイルを切り替ãˆã‚‹","Toggle the decimal with leading zero list style":"10進数ã®æ•°å€¤ã®å‰ã«0ãŒã¤ãリストスタイルを切り替ãˆã‚‹","Toggle the lower–roman list style":"å°æ–‡å—ãƒãƒ¼ãƒžæ•°å—リストスタイルを切り替ãˆã‚‹","Toggle the upper–roman list style":"大文å—ãƒãƒ¼ãƒžæ•°å—リストスタイルを切り替ãˆã‚‹","Toggle the lower–latin list style":"å°æ–‡å—アルファベットリストスタイルを切り替ãˆã‚‹","Toggle the upper–latin list style":"大文å—アルファベットリストスタイルを切り替ãˆã‚‹",Disc:"é»’ã„丸",Circle:"白ã„丸",Square:"é»’ã„四角",Decimal:"10進数ã®æ•°å€¤","Decimal with leading zero":"10進数ã®æ•°å€¤ã®å‰ã«0ãŒã¤ã","Lower–roman":"å°æ–‡å—ãƒãƒ¼ãƒžæ•°å—","Upper-roman":"大文å—ãƒãƒ¼ãƒžæ•°å—","Lower-latin":"å°æ–‡å—アルファベット","Upper-latin":"大文å—アルファベット","List properties":"リストã®ãƒ—ãƒãƒ‘ティ","Start at":"開始数å—","Start index must be greater than 0.":"開始インデックスã¯0より大ãããªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“。","Reversed order":"é€†é †","Remove Format":"フォーマットã®å‰Šé™¤","Select all":"ã™ã¹ã¦é¸æŠž","Show blocks":"ブãƒãƒƒã‚¯ã‚’表示ã—ã¾ã™",Source:"ソース","Special characters":"特殊文å—",All:"å…¨ã¦",Arrows:"矢å°",Currency:"通貨",Latin:"ラテン",Mathematical:"æ•°å¦çš„",Text:"テã‚スト","leftwards simple arrow":"シンプルãªå·¦å‘ã矢å°","rightwards simple arrow":"シンプルãªå³å‘ã矢å°","upwards simple arrow":"シンプルãªä¸Šå‘ã矢å°","downwards simple arrow":"シンプルãªä¸‹å‘ã矢å°","leftwards double arrow":"å·¦å‘ã二é‡çŸ¢å°","rightwards double arrow":"å³å‘ã二é‡çŸ¢å°","upwards double arrow":"上å‘ã二é‡çŸ¢å°","downwards double arrow":"下å‘ã二é‡çŸ¢å°","leftwards dashed arrow":"å·¦å‘ãç ´ç·šçŸ¢å°","rightwards dashed arrow":"å³å‘ãç ´ç·šçŸ¢å°","upwards dashed arrow":"上å‘ãç ´ç·šçŸ¢å°","downwards dashed arrow":"下å‘ãç ´ç·šçŸ¢å°","leftwards arrow to bar":"縦線ã«å‘ã‹ã†å·¦å‘ã矢å°","rightwards arrow to bar":"縦線ã«å‘ã‹ã†å³å‘ã矢å°","upwards arrow to bar":"横線ã«å‘ã‹ã†ä¸Šå‘ã矢å°","downwards arrow to bar":"横線ã«å‘ã‹ã†ä¸‹å‘ã矢å°","up down arrow with base":"ベース付ã上下両方をå‘ã„ãŸçŸ¢å°","back with leftwards arrow above":"å·¦å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Back","end with leftwards arrow above":"å·¦å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹End","on with exclamation mark with left right arrow above":"å·¦å³ä¸¡æ–¹ã‚’å‘ã„ãŸçŸ¢å°ãŒä¸Šã«ã‚る感嘆符付ãOn","soon with rightwards arrow above":"å³å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Soon","top with upwards arrow above":"上å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Top","Dollar sign":"ドル記å·","Euro sign":"ユーãƒè¨˜å·","Yen sign":"円記å·","Pound sign":"ãƒãƒ³ãƒ‰è¨˜å·","Cent sign":"セント記å·","Euro-currency sign":"ユーãƒé€šè²¨è¨˜å·","Colon sign":"コãƒãƒ³è¨˜å·","Cruzeiro sign":"クルゼイãƒè¨˜å·","French franc sign":"フランスフラン記å·","Lira sign":"リラ記å·","Currency sign":"通貨記å·","Bitcoin sign":"ビットコイン記å·","Mill sign":"ミル記å·","Naira sign":"ナイラ記å·","Peseta sign":"ペセタ記å·","Rupee sign":"ルピー記å·","Won sign":"ウォン記å·","New sheqel sign":"新シェケル記å·","Dong sign":"ドン記å·","Kip sign":"ã‚ップ記å·","Tugrik sign":"トゥグルグ記å·","Drachma sign":"ドラクマ記å·","German penny sign":"ドイツペニー記å·","Peso sign":"ペソ記å·","Guarani sign":"グアラニ記å·","Austral sign":"アウストラル記å·","Hryvnia sign":"フリヴニャ記å·","Cedi sign":"セディ記å·","Livre tournois sign":"リーヴルトゥルノワ記å·","Spesmilo sign":"スãºã‚¹ãƒŸãƒè¨˜å·","Tenge sign":"テンゲ記å·","Indian rupee sign":"インドルピー記å·","Turkish lira sign":"トルコリラ記å·","Nordic mark sign":"ノルディックマーク記å·","Manat sign":"マナト記å·","Ruble sign":"ルーブル記å·","Latin capital letter a with macron":"マクãƒãƒ³ä»˜ãラテン大文å—A","Latin small letter a with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—a","Latin capital letter a with breve":"ブリーブ付ãラテン大文å—A","Latin small letter a with breve":"ブリーブ付ãラテンå°æ–‡å—a","Latin capital letter a with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—A","Latin small letter a with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—a","Latin capital letter c with acute":"ã‚¢ã‚ュート付ãラテン大文å—C","Latin small letter c with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—c","Latin capital letter c with circumflex":"サーカムフレックス付ãラテン大文å—C","Latin small letter c with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—c","Latin capital letter c with dot above":"上点付ãラテン大文å—C","Latin small letter c with dot above":"上点付ãラテンå°æ–‡å—c","Latin capital letter c with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—C","Latin small letter c with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—c","Latin capital letter d with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—D","Latin small letter d with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—d","Latin capital letter d with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—D","Latin small letter d with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—d","Latin capital letter e with macron":"マクãƒãƒ³ä»˜ãラテン大文å—E","Latin small letter e with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—e","Latin capital letter e with breve":"ブリーブ付ãラテン大文å—E","Latin small letter e with breve":"ブリーブ付ãラテンå°æ–‡å—e","Latin capital letter e with dot above":"上点付ãラテン大文å—E","Latin small letter e with dot above":"上点付ãラテンå°æ–‡å—e","Latin capital letter e with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—E","Latin small letter e with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—e","Latin capital letter e with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—E","Latin small letter e with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—e","Latin capital letter g with circumflex":"サーカムフレックス付ãラテン大文å—G","Latin small letter g with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—g","Latin capital letter g with breve":"ブリーブ付ãラテン大文å—G","Latin small letter g with breve":"ブリーブ付ãラテンå°æ–‡å—g","Latin capital letter g with dot above":"上点付ãラテン大文å—G","Latin small letter g with dot above":"上点付ãラテンå°æ–‡å—g","Latin capital letter g with cedilla":"セディラ付ãラテン大文å—G","Latin small letter g with cedilla":"セディラ付ãラテンå°æ–‡å—g","Latin capital letter h with circumflex":"サーカムフレックス付ãラテン大文å—H","Latin small letter h with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—h","Latin capital letter h with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—H","Latin small letter h with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—h","Latin capital letter i with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテン大文å—I","Latin small letter i with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with macron":"マクãƒãƒ³ä»˜ãラテン大文å—I","Latin small letter i with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with breve":"ブリーブ付ãラテン大文å—I","Latin small letter i with breve":"ブリーブ付ãラテンå°æ–‡å—i","Latin capital letter i with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—I","Latin small letter i with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with dot above":"上点付ãラテン大文å—I","Latin small letter dotless i":"ラテンå°æ–‡å—点ã®ãªã„i","Latin capital ligature ij":"ラテン大文å—連å—IJ","Latin small ligature ij":"ラテンå°æ–‡å—連å—ij","Latin capital letter j with circumflex":"サーカムフレックス付ãラテン大文å—J","Latin small letter j with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—j","Latin capital letter k with cedilla":"セディラ付ãラテン大文å—K","Latin small letter k with cedilla":"セディラ付ãラテンå°æ–‡å—k","Latin small letter kra":"ラテンå°æ–‡å—kra","Latin capital letter l with acute":"ã‚¢ã‚ュート付ãラテン大文å—L","Latin small letter l with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—l","Latin capital letter l with cedilla":"セディラ付ãラテン大文å—L","Latin small letter l with cedilla":"セディラ付ãラテンå°æ–‡å—l","Latin capital letter l with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—L","Latin small letter l with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—l","Latin capital letter l with middle dot":"ä¸ç‚¹ä»˜ãラテン大文å—L","Latin small letter l with middle dot":"ä¸ç‚¹ä»˜ãラテンå°æ–‡å—l","Latin capital letter l with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—L","Latin small letter l with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—l","Latin capital letter n with acute":"ã‚¢ã‚ュート付ãラテン大文å—N","Latin small letter n with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—n","Latin capital letter n with cedilla":"セディラ付ãラテン大文å—N","Latin small letter n with cedilla":"セディラ付ãラテンå°æ–‡å—n","Latin capital letter n with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—N","Latin small letter n with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—n","Latin small letter n preceded by apostrophe":"ã‚¢ãƒã‚¹ãƒˆãƒãƒ•ã‚£ãŒå‰ã«ä»˜ãラテンå°æ–‡å—n","Latin capital letter eng":"ラテン大文å—ENG","Latin small letter eng":"ラテンå°æ–‡å—eng","Latin capital letter o with macron":"マクãƒãƒ³ä»˜ãラテン大文å—O","Latin small letter o with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—o","Latin capital letter o with breve":"ブリーブ付ãラテン大文å—O","Latin small letter o with breve":"ブリーブ付ãラテンå°æ–‡å—o","Latin capital letter o with double acute":"ダブルアã‚ュート付ãラテン大文å—O","Latin small letter o with double acute":"ダブルアã‚ュート付ãラテンå°æ–‡å—o","Latin capital ligature oe":"ラテン大文å—連å—OE","Latin small ligature oe":"ラテンå°æ–‡å—連å—oe","Latin capital letter r with acute":"ã‚¢ã‚ュート付ãラテン大文å—R","Latin small letter r with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—r","Latin capital letter r with cedilla":"セディラ付ãラテン大文å—R","Latin small letter r with cedilla":"セディラ付ãラテンå°æ–‡å—r","Latin capital letter r with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—R","Latin small letter r with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—r","Latin capital letter s with acute":"ã‚¢ã‚ュート付ãラテン大文å—S","Latin small letter s with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—s","Latin capital letter s with circumflex":"サーカムフレックス付ãラテン大文å—S","Latin small letter s with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—s","Latin capital letter s with cedilla":"セディラ付ãラテン大文å—S","Latin small letter s with cedilla":"セディラ付ãラテンå°æ–‡å—s","Latin capital letter s with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—S","Latin small letter s with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—s","Latin capital letter t with cedilla":"セディラ付ãラテン大文å—T","Latin small letter t with cedilla":"セディラ付ãラテンå°æ–‡å—t","Latin capital letter t with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—T","Latin small letter t with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—t","Latin capital letter t with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—T","Latin small letter t with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—t","Latin capital letter u with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテン大文å—U","Latin small letter u with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテンå°æ–‡å—u","Latin capital letter u with macron":"マクãƒãƒ³ä»˜ãラテン大文å—U","Latin small letter u with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—u","Latin capital letter u with breve":"ブリーブ付ãラテン大文å—U","Latin small letter u with breve":"ブリーブ付ãラテンå°æ–‡å—u","Latin capital letter u with ring above":"上丸付ãラテン大文å—U","Latin small letter u with ring above":"上丸付ãラテンå°æ–‡å—u","Latin capital letter u with double acute":"ダブルアã‚ュート付ãラテン大文å—U","Latin small letter u with double acute":"ダブルアã‚ュート付ãラテンå°æ–‡å—u","Latin capital letter u with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—U","Latin small letter u with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—u","Latin capital letter w with circumflex":"サーカムフレックス付ãラテン大文å—W","Latin small letter w with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—w","Latin capital letter y with circumflex":"サーカムフレックス付ãラテン大文å—Y","Latin small letter y with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—y","Latin capital letter y with diaeresis":"ダイエレシス付ãラテン大文å—Y","Latin capital letter z with acute":"ã‚¢ã‚ュート付ãラテン大文å—Z","Latin small letter z with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—z","Latin capital letter z with dot above":"上点付ãラテン大文å—Z","Latin small letter z with dot above":"上点付ãラテンå°æ–‡å—z","Latin capital letter z with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—Z","Latin small letter z with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—z","Latin small letter long s":"ラテンå°æ–‡å—é•·ã„s","Less-than sign":"å°ãªã‚Šè¨˜å·","Greater-than sign":"大ãªã‚Šè¨˜å·","Less-than or equal to":"å°ãªã‚Šã¾ãŸã¯ç‰ã—ã„","Greater-than or equal to":"大ãªã‚Šã¾ãŸã¯ç‰ã—ã„","En dash":"åŠè§’ダッシュ","Em dash":"全角ダッシュ",Macron:"マクãƒãƒ³",Overline:"上線","Degree sign":"度記å·","Minus sign":"マイナス記å·","Plus-minus sign":"プラスマイナス記å·","Division sign":"除算記å·","Fraction slash":"分数ã®æ–œç·š","Multiplication sign":"乗算記å·","Latin small letter f with hook":"フック付ãラテンå°æ–‡å—f",Integral:"ç©åˆ†","N-ary summation":"é…列用ã®å’Œ",Infinity:"ç„¡é™","Square root":"å¹³æ–¹æ ¹","Tilde operator":"ãƒãƒ«ãƒ€æ¼”ç®—å","Approximately equal to":"ãŠã‚ˆãç‰ã—ã„","Almost equal to":"ã»ã¼ç‰ã—ã„","Not equal to":"ç‰ã—ããªã„","Identical to":"åŒä¸€ã§ã‚ã‚‹","Element of":"è¦ç´ ã§ã‚ã‚‹","Not an element of":"è¦ç´ ã§ãªã„","Contains as member":"è¦ç´ ã¨ã—ã¦å«ã‚€","N-ary product":"é…列用ã®ç©","Logical and":"è«–ç†ç©","Logical or":"è«–ç†å’Œ","Not sign":"å¦å®šè¨˜å·",Intersection:"集åˆç©",Union:"集åˆå’Œ","Partial differential":"å微分","For all":"ä»»æ„ã®","There exists":"å˜åœ¨ã™ã‚‹","Empty set":"空集åˆ",Nabla:"ナブラ","Asterisk operator":"アスタリスク演算å","Proportional to":"比例",Angle:"角","Vulgar fraction one quarter":"常分数4分ã®1","Vulgar fraction one half":"常分数2分ã®1","Vulgar fraction three quarters":"常分数4分ã®3","Single left-pointing angle quotation mark":"左を指ã™è§’å¼µã£ãŸä¸€é‡å¼•ç”¨ç¬¦","Single right-pointing angle quotation mark":"å³ã‚’指ã™è§’å¼µã£ãŸä¸€é‡å¼•ç”¨ç¬¦","Left-pointing double angle quotation mark":"左を指ã™è§’å¼µã£ãŸäºŒé‡å¼•ç”¨ç¬¦","Right-pointing double angle quotation mark":"å³ã‚’指ã™è§’å¼µã£ãŸäºŒé‡å¼•ç”¨ç¬¦","Left single quotation mark":"å·¦ã®ä¸€é‡å¼•ç”¨ç¬¦","Right single quotation mark":"å³ã®ä¸€é‡å¼•ç”¨ç¬¦","Left double quotation mark":"å·¦ã®äºŒé‡å¼•ç”¨ç¬¦","Right double quotation mark":"å³ã®äºŒé‡å¼•ç”¨ç¬¦","Single low-9 quotation mark":"下å´ã®ä¸€é‡å¼•ç”¨ç¬¦","Double low-9 quotation mark":"下å´ã®äºŒé‡å¼•ç”¨ç¬¦","Inverted exclamation mark":"ã²ã£ãã‚Šè¿”ã£ãŸæ„Ÿå˜†ç¬¦","Inverted question mark":"ã²ã£ãã‚Šè¿”ã£ãŸç–‘å•ç¬¦","Two dot leader":"二点ã®ãƒªãƒ¼ãƒ€ãƒ¼(点線)","Horizontal ellipsis":"æ°´å¹³ã®çœç•¥è¨˜å·","Double dagger":"ダブルダガー","Per mille sign":"パーミル記å·","Per ten thousand sign":"一万分率記å·","Double exclamation mark":"二é‡æ„Ÿå˜†ç¬¦","Question exclamation mark":"ç–‘å•ç¬¦æ„Ÿå˜†ç¬¦","Exclamation question mark":"感嘆符疑å•ç¬¦","Double question mark":"二é‡ç–‘å•ç¬¦","Copyright sign":"著作権表示記å·","Registered sign":"登録商標記å·","Trade mark sign":"商標記å·","Section sign":"節記å·","Paragraph sign":"段è½è¨˜å·","Reversed paragraph sign":"å転ã—ãŸæ®µè½è¨˜å·","Character categories":"æ–‡å—カテゴリ",Styles:"スタイル","Multiple styles":"複数ã®ã‚¹ã‚¿ã‚¤ãƒ«","Block styles":"ブãƒãƒƒã‚¯ã‚¹ã‚¿ã‚¤ãƒ«","Text styles":"テã‚ストスタイル","Insert table":"表ã®æŒ¿å…¥","Header column":"見出ã—列","Insert column left":"å·¦ã«åˆ—を挿入","Insert column right":"å³ã«åˆ—を挿入","Delete column":"列を削除","Select column":"列をé¸æŠž",Column:"列","Header row":"見出ã—è¡Œ","Insert row below":"下ã«è¡Œã‚’挿入","Insert row above":"上ã«è¡Œã‚’挿入","Delete row":"行を削除","Select row":"行をé¸æŠž",Row:"è¡Œ","Merge cell up":"上ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell right":"å³ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell down":"下ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell left":"å·¦ã®ã‚»ãƒ«ã¨çµåˆ","Split cell vertically":"横ã«ã‚»ãƒ«ã‚’分離","Split cell horizontally":"縦ã«ã‚»ãƒ«ã‚’分離","Merge cells":"セルをçµåˆ","Table toolbar":"テーブルã®ãƒ„ールãƒãƒ¼","Table properties":"テーブルã®ãƒ—ãƒãƒ‘ティ","Cell properties":"セルã®ãƒ—ãƒãƒ‘ティ",Border:"罫線",Style:"スタイル",Width:"å¹…",Height:"高ã•",Color:"色",Background:"背景",Padding:"パディング",Dimensions:"寸法","Table cell text alignment":"テーブルセルã®ãƒ†ã‚ストé…ç½®",Alignment:"é…ç½®","Horizontal text alignment toolbar":"水平方å‘ã®ãƒ†ã‚ストé…置ツールãƒãƒ¼","Vertical text alignment toolbar":"åž‚ç›´æ–¹å‘ã®ãƒ†ã‚ストé…置ツールãƒãƒ¼","Table alignment toolbar":"テーブルé…置ツールãƒãƒ¼",None:"ãªã—",Solid:"1本線",Dotted:"点線",Dashed:"ç ´ç·š",Double:"2本線",Groove:"立体的ã«ãã¼ã‚“ã ç·š",Ridge:"立体的ã«éš†èµ·ã—ãŸç·š",Inset:"内å´å…¨ä½“ãŒãã¼ã‚“ã ç·š",Outset:"内å´å…¨ä½“ãŒéš†èµ·ã—ãŸç·š","Align cell text to the left":"セルã®ãƒ†ã‚ストを左ã¸å¯„ã›ã‚‹","Align cell text to the center":"セルã®ãƒ†ã‚ストをä¸å¤®ã¸æƒãˆã‚‹","Align cell text to the right":"セルã®ãƒ†ã‚ストをå³ã¸å¯„ã›ã‚‹","Justify cell text":"セルã®ãƒ†ã‚ストを両端ã¸æƒãˆã‚‹","Align cell text to the top":"セルã®ãƒ†ã‚ストを上ã«å¯„ã›ã‚‹","Align cell text to the middle":"セルã®ãƒ†ã‚ストをä¸å¤®ã¸æƒãˆã‚‹","Align cell text to the bottom":"セルã®ãƒ†ã‚ストを下ã«å¯„ã›ã‚‹","Align table to the left":"テーブルを左ã¸å¯„ã›ã‚‹","Center table":"テーブルをä¸å¤®ã¸å¯„ã›ã‚‹","Align table to the right":"テーブルをå³ã¸å¯„ã›ã‚‹","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"ã“ã®è‰²ã¯ç„¡åŠ¹ã§ã™ã€‚「#FF0000ã€ã€ã€Œrgb(255,0,0ã€ã¾ãŸã¯ã€Œèµ¤ã€ã‚’ãŠè©¦ã—ãã ã•ã„。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ã“ã®å€¤ã¯ç„¡åŠ¹ã§ã™ã€‚「10pxã€ã€ã€Œ2emã€ã¾ãŸã¯å˜ç´”ã«ã€Œ2ã€ã‚’ãŠè©¦ã—ãã ã•ã„。","Color picker":"カラーピッカー","Toggle caption off":"ã‚ャプションをオフã«ã™ã‚‹","Toggle caption on":"ã‚ャプションをオンã«ã™ã‚‹","Enter table caption":"テーブルã‚ャプションを入力","Rich Text Editor":"リッãƒãƒ†ã‚ストエディター","Editor editing area: %0":"エディタ編集エリア:%0","Edit block":"ブãƒãƒƒã‚¯ã‚’編集","Click to edit block":"クリックã—ã¦ãƒ–ãƒãƒƒã‚¯ã‚’編集ã™ã‚‹","Drag to move":"ドラッグã—ã¦å‹•ã‹ã™",Next:"次ã¸",Previous:"å‰ã¸","Editor toolbar":"エディタツールãƒãƒ¼","Dropdown toolbar":"ドãƒãƒƒãƒ—ダウンツールãƒãƒ¼",Black:"é»’","Dim grey":"æš—ã„ç°è‰²",Grey:"ç°è‰²","Light grey":"明るã„ç°è‰²",White:"白",Red:"赤",Orange:"オレンジ",Yellow:"黄","Light green":"明るã„ç·‘",Green:"ç·‘",Aquamarine:"è–„ã„é’ç·‘",Turquoise:"水色","Light blue":"明るã„é’",Blue:"é’",Purple:"ç´«","Editor block content toolbar":"エディター ブãƒãƒƒã‚¯ コンテンツ ツールãƒãƒ¼","Editor contextual toolbar":"エディター コンテクスト ツールãƒãƒ¼",HEX:"HEX",Accept:"åŒæ„ã—ã¾ã™","No results found":"çµæžœã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ","No searchable items":"検索å¯èƒ½ãªã‚¢ã‚¤ãƒ†ãƒ ãŒã‚ã‚Šã¾ã›ã‚“","Editor dialog":"エディタダイアãƒã‚°",Close:"é–‰ã˜ã‚‹",Undo:"å…ƒã«æˆ»ã™",Redo:"ã‚„ã‚Šç›´ã—","Upload in progress":"アップãƒãƒ¼ãƒ‰ä¸","Widget toolbar":"ウィジェットツールãƒãƒ¼","Insert paragraph before block":"ブãƒãƒƒã‚¯ã®å‰ã«ãƒ‘ラグラフを挿入","Insert paragraph after block":"ブãƒãƒƒã‚¯ã®å¾Œã«ãƒ‘ラグラフを挿入","Press Enter to type after or press Shift + Enter to type before the widget":"Enterを押ã—ã¦ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆã®å¾Œã«å…¥åŠ›ã™ã‚‹ã‹ã€Shift + Enterを押ã—ã¦ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆã®å‰ã«å…¥åŠ›ã—ã¦ãã ã•ã„","Words: %0":"å˜èªžæ•°: %0","Characters: %0":"æ–‡å—æ•°: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ja'] = d['ja'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"å·¦æƒãˆ","Align right":"å³æƒãˆ","Align center":"ä¸å¤®æƒãˆ",Justify:"両端æƒãˆ","Text alignment":"æ–‡å—æƒãˆ","Text alignment toolbar":"テã‚ストã®æ•´åˆ—",Bold:"ボールド",Italic:"イタリック",Underline:"アンダーライン",Code:"コード",Strikethrough:"å–り消ã—ç·š",Subscript:"下付ãæ–‡å—",Superscript:"上付ãæ–‡å—","Block quote":"ブãƒãƒƒã‚¯ã‚¯ã‚ªãƒ¼ãƒˆ(引用)","Insert code block":"コードブãƒãƒƒã‚¯ã®æŒ¿å…¥","Plain text":"プレインテã‚スト",Cancel:"ã‚ャンセル",Clear:"消去","Remove color":"カラーを削除","Restore default":"åˆæœŸå€¤ã«æˆ»ã™",Save:"ä¿å˜","Show more items":"ä»–ã®é …目を表示","%0 of %1":"%0/%1","Cannot upload file:":"ファイルをアップãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“:","Rich Text Editor. Editing area: %0":"リッãƒãƒ†ã‚ストエディタ。編集エリア:%0","Insert with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§æŒ¿å…¥","Replace with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç½®æ›","Insert image with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç”»åƒã‚’挿入","Replace image with file manager":"ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ç”»åƒã‚’ç½®æ›","Find and replace":"検索ã—ã¦ç½®æ›","Find in text…":"テã‚スト内を検索...",Find:"見ã¤ã‘ã‚‹","Previous result":"å‰ã®çµæžœ","Next result":"次ã®çµæžœ",Replace:"ç½®æ›","Replace all":"å…¨ã¦ã‚’ç½®æ›","Match case":"マッãƒã‚±ãƒ¼ã‚¹","Whole words only":"å˜èªžå…¨ä½“ã®ã¿","Replace with…":"ã“ã¡ã‚‰ã¨ç½®æ›...","Text to find must not be empty.":"検索対象テã‚スト欄ã¯ç©ºç™½ã«ã§ãã¾ã›ã‚“。","Tip: Find some text first in order to replace it.":"ヒント:置æ›ã™ã‚‹ã«ã¯ã€å¯¾è±¡ãƒ†ã‚ストを先ã«æ¤œç´¢ã—ã¦ãã ã•ã„。","Advanced options":"高度ãªã‚ªãƒ—ション","Font Size":"フォントサイズ",Tiny:"極å°",Small:"å°",Big:"大",Huge:"極大","Font Family":"フォントファミリー",Default:"デフォルト","Font Color":"æ–‡å—色","Font Background Color":"背景色","Document colors":"ドã‚ュメント背景色",Paragraph:"段è½",Heading:"見出ã—","Choose heading":"見出ã—ã‚’é¸æŠž","Heading 1":"見出ã—1","Heading 2":"見出ã—2","Heading 3":"見出ã—3 ","Heading 4":"見出ã—4","Heading 5":"見出ã—5","Heading 6":"見出ã—6","Type your title":"タイトルを入力","Type or paste your content here.":"コンテンツをã“ã“ã«å…¥åŠ›ã¾ãŸã¯è²¼ã‚Šä»˜ã‘ã—ã¦ãã ã•ã„。","Horizontal line":"区切り","HTML object":"HTMLオブジェクト","Increase indent":"インデントã®è¿½åŠ ","Decrease indent":"インデントã®å‰Šé™¤",Unlink:"リンク解除",Link:"リンク","Link URL":"リンクURL","Link image":"リンク画åƒ","Edit link":"リンクを編集","Open link in new tab":"æ–°ã—ã„タブã§ãƒªãƒ³ã‚¯ã‚’é–‹ã","This link has no URL":"リンクã«URLãŒè¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“","Open in a new tab":"æ–°ã—ã„タブã§é–‹ã",Downloadable:"ダウンãƒãƒ¼ãƒ‰å¯èƒ½","Numbered List":"番å·ä»˜ãリスト","Bulleted List":"箇æ¡æ›¸ãリスト","To-do List":"ã‚„ã‚‹ã“ã¨ãƒªã‚¹ãƒˆ","Bulleted list styles toolbar":"箇æ¡æ›¸ãリストスタイルã®ãƒ„ールãƒãƒ¼","Numbered list styles toolbar":"番å·ä»˜ãリストスタイルã®ãƒ„ールãƒãƒ¼","Toggle the disc list style":"é»’ã„丸リストスタイルを切り替ãˆã‚‹","Toggle the circle list style":"白ã„丸リストスタイルを切り替ãˆã‚‹","Toggle the square list style":"é»’ã„四角リストスタイルを切り替ãˆã‚‹","Toggle the decimal list style":"10進数リストスタイルを切り替ãˆã‚‹","Toggle the decimal with leading zero list style":"10進数ã®æ•°å€¤ã®å‰ã«0ãŒã¤ãリストスタイルを切り替ãˆã‚‹","Toggle the lower–roman list style":"å°æ–‡å—ãƒãƒ¼ãƒžæ•°å—リストスタイルを切り替ãˆã‚‹","Toggle the upper–roman list style":"大文å—ãƒãƒ¼ãƒžæ•°å—リストスタイルを切り替ãˆã‚‹","Toggle the lower–latin list style":"å°æ–‡å—アルファベットリストスタイルを切り替ãˆã‚‹","Toggle the upper–latin list style":"大文å—アルファベットリストスタイルを切り替ãˆã‚‹",Disc:"é»’ã„丸",Circle:"白ã„丸",Square:"é»’ã„四角",Decimal:"10進数ã®æ•°å€¤","Decimal with leading zero":"10進数ã®æ•°å€¤ã®å‰ã«0ãŒã¤ã","Lower–roman":"å°æ–‡å—ãƒãƒ¼ãƒžæ•°å—","Upper-roman":"大文å—ãƒãƒ¼ãƒžæ•°å—","Lower-latin":"å°æ–‡å—アルファベット","Upper-latin":"大文å—アルファベット","List properties":"リストã®ãƒ—ãƒãƒ‘ティ","Start at":"開始数å—","Start index must be greater than 0.":"開始インデックスã¯0より大ãããªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“。","Reversed order":"é€†é †","Remove Format":"フォーマットã®å‰Šé™¤","Select all":"ã™ã¹ã¦é¸æŠž","Show blocks":"ブãƒãƒƒã‚¯ã‚’表示ã—ã¾ã™",Source:"ソース","Special characters":"特殊文å—",All:"å…¨ã¦",Arrows:"矢å°",Currency:"通貨",Latin:"ラテン",Mathematical:"æ•°å¦çš„",Text:"テã‚スト","leftwards simple arrow":"シンプルãªå·¦å‘ã矢å°","rightwards simple arrow":"シンプルãªå³å‘ã矢å°","upwards simple arrow":"シンプルãªä¸Šå‘ã矢å°","downwards simple arrow":"シンプルãªä¸‹å‘ã矢å°","leftwards double arrow":"å·¦å‘ã二é‡çŸ¢å°","rightwards double arrow":"å³å‘ã二é‡çŸ¢å°","upwards double arrow":"上å‘ã二é‡çŸ¢å°","downwards double arrow":"下å‘ã二é‡çŸ¢å°","leftwards dashed arrow":"å·¦å‘ãç ´ç·šçŸ¢å°","rightwards dashed arrow":"å³å‘ãç ´ç·šçŸ¢å°","upwards dashed arrow":"上å‘ãç ´ç·šçŸ¢å°","downwards dashed arrow":"下å‘ãç ´ç·šçŸ¢å°","leftwards arrow to bar":"縦線ã«å‘ã‹ã†å·¦å‘ã矢å°","rightwards arrow to bar":"縦線ã«å‘ã‹ã†å³å‘ã矢å°","upwards arrow to bar":"横線ã«å‘ã‹ã†ä¸Šå‘ã矢å°","downwards arrow to bar":"横線ã«å‘ã‹ã†ä¸‹å‘ã矢å°","up down arrow with base":"ベース付ã上下両方をå‘ã„ãŸçŸ¢å°","back with leftwards arrow above":"å·¦å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Back","end with leftwards arrow above":"å·¦å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹End","on with exclamation mark with left right arrow above":"å·¦å³ä¸¡æ–¹ã‚’å‘ã„ãŸçŸ¢å°ãŒä¸Šã«ã‚る感嘆符付ãOn","soon with rightwards arrow above":"å³å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Soon","top with upwards arrow above":"上å‘ã矢å°ãŒä¸Šã«ã‚ã‚‹Top","Dollar sign":"ドル記å·","Euro sign":"ユーãƒè¨˜å·","Yen sign":"円記å·","Pound sign":"ãƒãƒ³ãƒ‰è¨˜å·","Cent sign":"セント記å·","Euro-currency sign":"ユーãƒé€šè²¨è¨˜å·","Colon sign":"コãƒãƒ³è¨˜å·","Cruzeiro sign":"クルゼイãƒè¨˜å·","French franc sign":"フランスフラン記å·","Lira sign":"リラ記å·","Currency sign":"通貨記å·","Bitcoin sign":"ビットコイン記å·","Mill sign":"ミル記å·","Naira sign":"ナイラ記å·","Peseta sign":"ペセタ記å·","Rupee sign":"ルピー記å·","Won sign":"ウォン記å·","New sheqel sign":"新シェケル記å·","Dong sign":"ドン記å·","Kip sign":"ã‚ップ記å·","Tugrik sign":"トゥグルグ記å·","Drachma sign":"ドラクマ記å·","German penny sign":"ドイツペニー記å·","Peso sign":"ペソ記å·","Guarani sign":"グアラニ記å·","Austral sign":"アウストラル記å·","Hryvnia sign":"フリヴニャ記å·","Cedi sign":"セディ記å·","Livre tournois sign":"リーヴルトゥルノワ記å·","Spesmilo sign":"スãºã‚¹ãƒŸãƒè¨˜å·","Tenge sign":"テンゲ記å·","Indian rupee sign":"インドルピー記å·","Turkish lira sign":"トルコリラ記å·","Nordic mark sign":"ノルディックマーク記å·","Manat sign":"マナト記å·","Ruble sign":"ルーブル記å·","Latin capital letter a with macron":"マクãƒãƒ³ä»˜ãラテン大文å—A","Latin small letter a with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—a","Latin capital letter a with breve":"ブリーブ付ãラテン大文å—A","Latin small letter a with breve":"ブリーブ付ãラテンå°æ–‡å—a","Latin capital letter a with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—A","Latin small letter a with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—a","Latin capital letter c with acute":"ã‚¢ã‚ュート付ãラテン大文å—C","Latin small letter c with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—c","Latin capital letter c with circumflex":"サーカムフレックス付ãラテン大文å—C","Latin small letter c with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—c","Latin capital letter c with dot above":"上点付ãラテン大文å—C","Latin small letter c with dot above":"上点付ãラテンå°æ–‡å—c","Latin capital letter c with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—C","Latin small letter c with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—c","Latin capital letter d with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—D","Latin small letter d with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—d","Latin capital letter d with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—D","Latin small letter d with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—d","Latin capital letter e with macron":"マクãƒãƒ³ä»˜ãラテン大文å—E","Latin small letter e with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—e","Latin capital letter e with breve":"ブリーブ付ãラテン大文å—E","Latin small letter e with breve":"ブリーブ付ãラテンå°æ–‡å—e","Latin capital letter e with dot above":"上点付ãラテン大文å—E","Latin small letter e with dot above":"上点付ãラテンå°æ–‡å—e","Latin capital letter e with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—E","Latin small letter e with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—e","Latin capital letter e with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—E","Latin small letter e with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—e","Latin capital letter g with circumflex":"サーカムフレックス付ãラテン大文å—G","Latin small letter g with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—g","Latin capital letter g with breve":"ブリーブ付ãラテン大文å—G","Latin small letter g with breve":"ブリーブ付ãラテンå°æ–‡å—g","Latin capital letter g with dot above":"上点付ãラテン大文å—G","Latin small letter g with dot above":"上点付ãラテンå°æ–‡å—g","Latin capital letter g with cedilla":"セディラ付ãラテン大文å—G","Latin small letter g with cedilla":"セディラ付ãラテンå°æ–‡å—g","Latin capital letter h with circumflex":"サーカムフレックス付ãラテン大文å—H","Latin small letter h with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—h","Latin capital letter h with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—H","Latin small letter h with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—h","Latin capital letter i with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテン大文å—I","Latin small letter i with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with macron":"マクãƒãƒ³ä»˜ãラテン大文å—I","Latin small letter i with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with breve":"ブリーブ付ãラテン大文å—I","Latin small letter i with breve":"ブリーブ付ãラテンå°æ–‡å—i","Latin capital letter i with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—I","Latin small letter i with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—i","Latin capital letter i with dot above":"上点付ãラテン大文å—I","Latin small letter dotless i":"ラテンå°æ–‡å—点ã®ãªã„i","Latin capital ligature ij":"ラテン大文å—連å—IJ","Latin small ligature ij":"ラテンå°æ–‡å—連å—ij","Latin capital letter j with circumflex":"サーカムフレックス付ãラテン大文å—J","Latin small letter j with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—j","Latin capital letter k with cedilla":"セディラ付ãラテン大文å—K","Latin small letter k with cedilla":"セディラ付ãラテンå°æ–‡å—k","Latin small letter kra":"ラテンå°æ–‡å—kra","Latin capital letter l with acute":"ã‚¢ã‚ュート付ãラテン大文å—L","Latin small letter l with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—l","Latin capital letter l with cedilla":"セディラ付ãラテン大文å—L","Latin small letter l with cedilla":"セディラ付ãラテンå°æ–‡å—l","Latin capital letter l with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—L","Latin small letter l with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—l","Latin capital letter l with middle dot":"ä¸ç‚¹ä»˜ãラテン大文å—L","Latin small letter l with middle dot":"ä¸ç‚¹ä»˜ãラテンå°æ–‡å—l","Latin capital letter l with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—L","Latin small letter l with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—l","Latin capital letter n with acute":"ã‚¢ã‚ュート付ãラテン大文å—N","Latin small letter n with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—n","Latin capital letter n with cedilla":"セディラ付ãラテン大文å—N","Latin small letter n with cedilla":"セディラ付ãラテンå°æ–‡å—n","Latin capital letter n with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—N","Latin small letter n with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—n","Latin small letter n preceded by apostrophe":"ã‚¢ãƒã‚¹ãƒˆãƒãƒ•ã‚£ãŒå‰ã«ä»˜ãラテンå°æ–‡å—n","Latin capital letter eng":"ラテン大文å—ENG","Latin small letter eng":"ラテンå°æ–‡å—eng","Latin capital letter o with macron":"マクãƒãƒ³ä»˜ãラテン大文å—O","Latin small letter o with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—o","Latin capital letter o with breve":"ブリーブ付ãラテン大文å—O","Latin small letter o with breve":"ブリーブ付ãラテンå°æ–‡å—o","Latin capital letter o with double acute":"ダブルアã‚ュート付ãラテン大文å—O","Latin small letter o with double acute":"ダブルアã‚ュート付ãラテンå°æ–‡å—o","Latin capital ligature oe":"ラテン大文å—連å—OE","Latin small ligature oe":"ラテンå°æ–‡å—連å—oe","Latin capital letter r with acute":"ã‚¢ã‚ュート付ãラテン大文å—R","Latin small letter r with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—r","Latin capital letter r with cedilla":"セディラ付ãラテン大文å—R","Latin small letter r with cedilla":"セディラ付ãラテンå°æ–‡å—r","Latin capital letter r with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—R","Latin small letter r with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—r","Latin capital letter s with acute":"ã‚¢ã‚ュート付ãラテン大文å—S","Latin small letter s with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—s","Latin capital letter s with circumflex":"サーカムフレックス付ãラテン大文å—S","Latin small letter s with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—s","Latin capital letter s with cedilla":"セディラ付ãラテン大文å—S","Latin small letter s with cedilla":"セディラ付ãラテンå°æ–‡å—s","Latin capital letter s with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—S","Latin small letter s with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—s","Latin capital letter t with cedilla":"セディラ付ãラテン大文å—T","Latin small letter t with cedilla":"セディラ付ãラテンå°æ–‡å—t","Latin capital letter t with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—T","Latin small letter t with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—t","Latin capital letter t with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテン大文å—T","Latin small letter t with stroke":"ストãƒãƒ¼ã‚¯ä»˜ãラテンå°æ–‡å—t","Latin capital letter u with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテン大文å—U","Latin small letter u with tilde":"ãƒãƒ«ãƒ€ä»˜ãラテンå°æ–‡å—u","Latin capital letter u with macron":"マクãƒãƒ³ä»˜ãラテン大文å—U","Latin small letter u with macron":"マクãƒãƒ³ä»˜ãラテンå°æ–‡å—u","Latin capital letter u with breve":"ブリーブ付ãラテン大文å—U","Latin small letter u with breve":"ブリーブ付ãラテンå°æ–‡å—u","Latin capital letter u with ring above":"上丸付ãラテン大文å—U","Latin small letter u with ring above":"上丸付ãラテンå°æ–‡å—u","Latin capital letter u with double acute":"ダブルアã‚ュート付ãラテン大文å—U","Latin small letter u with double acute":"ダブルアã‚ュート付ãラテンå°æ–‡å—u","Latin capital letter u with ogonek":"オゴãƒã‚¯ä»˜ãラテン大文å—U","Latin small letter u with ogonek":"オゴãƒã‚¯ä»˜ãラテンå°æ–‡å—u","Latin capital letter w with circumflex":"サーカムフレックス付ãラテン大文å—W","Latin small letter w with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—w","Latin capital letter y with circumflex":"サーカムフレックス付ãラテン大文å—Y","Latin small letter y with circumflex":"サーカムフレックス付ãラテンå°æ–‡å—y","Latin capital letter y with diaeresis":"ダイエレシス付ãラテン大文å—Y","Latin capital letter z with acute":"ã‚¢ã‚ュート付ãラテン大文å—Z","Latin small letter z with acute":"ã‚¢ã‚ュート付ãラテンå°æ–‡å—z","Latin capital letter z with dot above":"上点付ãラテン大文å—Z","Latin small letter z with dot above":"上点付ãラテンå°æ–‡å—z","Latin capital letter z with caron":"ã‚ャãƒãƒ³ä»˜ãラテン大文å—Z","Latin small letter z with caron":"ã‚ャãƒãƒ³ä»˜ãラテンå°æ–‡å—z","Latin small letter long s":"ラテンå°æ–‡å—é•·ã„s","Less-than sign":"å°ãªã‚Šè¨˜å·","Greater-than sign":"大ãªã‚Šè¨˜å·","Less-than or equal to":"å°ãªã‚Šã¾ãŸã¯ç‰ã—ã„","Greater-than or equal to":"大ãªã‚Šã¾ãŸã¯ç‰ã—ã„","En dash":"åŠè§’ダッシュ","Em dash":"全角ダッシュ",Macron:"マクãƒãƒ³",Overline:"上線","Degree sign":"度記å·","Minus sign":"マイナス記å·","Plus-minus sign":"プラスマイナス記å·","Division sign":"除算記å·","Fraction slash":"分数ã®æ–œç·š","Multiplication sign":"乗算記å·","Latin small letter f with hook":"フック付ãラテンå°æ–‡å—f",Integral:"ç©åˆ†","N-ary summation":"é…列用ã®å’Œ",Infinity:"ç„¡é™","Square root":"å¹³æ–¹æ ¹","Tilde operator":"ãƒãƒ«ãƒ€æ¼”ç®—å","Approximately equal to":"ãŠã‚ˆãç‰ã—ã„","Almost equal to":"ã»ã¼ç‰ã—ã„","Not equal to":"ç‰ã—ããªã„","Identical to":"åŒä¸€ã§ã‚ã‚‹","Element of":"è¦ç´ ã§ã‚ã‚‹","Not an element of":"è¦ç´ ã§ãªã„","Contains as member":"è¦ç´ ã¨ã—ã¦å«ã‚€","N-ary product":"é…列用ã®ç©","Logical and":"è«–ç†ç©","Logical or":"è«–ç†å’Œ","Not sign":"å¦å®šè¨˜å·",Intersection:"集åˆç©",Union:"集åˆå’Œ","Partial differential":"å微分","For all":"ä»»æ„ã®","There exists":"å˜åœ¨ã™ã‚‹","Empty set":"空集åˆ",Nabla:"ナブラ","Asterisk operator":"アスタリスク演算å","Proportional to":"比例",Angle:"角","Vulgar fraction one quarter":"常分数4分ã®1","Vulgar fraction one half":"常分数2分ã®1","Vulgar fraction three quarters":"常分数4分ã®3","Single left-pointing angle quotation mark":"左を指ã™è§’å¼µã£ãŸä¸€é‡å¼•ç”¨ç¬¦","Single right-pointing angle quotation mark":"å³ã‚’指ã™è§’å¼µã£ãŸä¸€é‡å¼•ç”¨ç¬¦","Left-pointing double angle quotation mark":"左を指ã™è§’å¼µã£ãŸäºŒé‡å¼•ç”¨ç¬¦","Right-pointing double angle quotation mark":"å³ã‚’指ã™è§’å¼µã£ãŸäºŒé‡å¼•ç”¨ç¬¦","Left single quotation mark":"å·¦ã®ä¸€é‡å¼•ç”¨ç¬¦","Right single quotation mark":"å³ã®ä¸€é‡å¼•ç”¨ç¬¦","Left double quotation mark":"å·¦ã®äºŒé‡å¼•ç”¨ç¬¦","Right double quotation mark":"å³ã®äºŒé‡å¼•ç”¨ç¬¦","Single low-9 quotation mark":"下å´ã®ä¸€é‡å¼•ç”¨ç¬¦","Double low-9 quotation mark":"下å´ã®äºŒé‡å¼•ç”¨ç¬¦","Inverted exclamation mark":"ã²ã£ãã‚Šè¿”ã£ãŸæ„Ÿå˜†ç¬¦","Inverted question mark":"ã²ã£ãã‚Šè¿”ã£ãŸç–‘å•ç¬¦","Two dot leader":"二点ã®ãƒªãƒ¼ãƒ€ãƒ¼(点線)","Horizontal ellipsis":"æ°´å¹³ã®çœç•¥è¨˜å·","Double dagger":"ダブルダガー","Per mille sign":"パーミル記å·","Per ten thousand sign":"一万分率記å·","Double exclamation mark":"二é‡æ„Ÿå˜†ç¬¦","Question exclamation mark":"ç–‘å•ç¬¦æ„Ÿå˜†ç¬¦","Exclamation question mark":"感嘆符疑å•ç¬¦","Double question mark":"二é‡ç–‘å•ç¬¦","Copyright sign":"著作権表示記å·","Registered sign":"登録商標記å·","Trade mark sign":"商標記å·","Section sign":"節記å·","Paragraph sign":"段è½è¨˜å·","Reversed paragraph sign":"å転ã—ãŸæ®µè½è¨˜å·","Character categories":"æ–‡å—カテゴリ",Styles:"スタイル","Multiple styles":"複数ã®ã‚¹ã‚¿ã‚¤ãƒ«","Block styles":"ブãƒãƒƒã‚¯ã‚¹ã‚¿ã‚¤ãƒ«","Text styles":"テã‚ストスタイル","Insert table":"表ã®æŒ¿å…¥","Header column":"見出ã—列","Insert column left":"å·¦ã«åˆ—を挿入","Insert column right":"å³ã«åˆ—を挿入","Delete column":"列を削除","Select column":"列をé¸æŠž",Column:"列","Header row":"見出ã—è¡Œ","Insert row below":"下ã«è¡Œã‚’挿入","Insert row above":"上ã«è¡Œã‚’挿入","Delete row":"行を削除","Select row":"行をé¸æŠž",Row:"è¡Œ","Merge cell up":"上ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell right":"å³ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell down":"下ã®ã‚»ãƒ«ã¨çµåˆ","Merge cell left":"å·¦ã®ã‚»ãƒ«ã¨çµåˆ","Split cell vertically":"横ã«ã‚»ãƒ«ã‚’分離","Split cell horizontally":"縦ã«ã‚»ãƒ«ã‚’分離","Merge cells":"セルをçµåˆ","Table toolbar":"テーブルã®ãƒ„ールãƒãƒ¼","Table properties":"テーブルã®ãƒ—ãƒãƒ‘ティ","Cell properties":"セルã®ãƒ—ãƒãƒ‘ティ",Border:"罫線",Style:"スタイル",Width:"å¹…",Height:"高ã•",Color:"色",Background:"背景",Padding:"パディング",Dimensions:"寸法","Table cell text alignment":"テーブルセルã®ãƒ†ã‚ストé…ç½®",Alignment:"é…ç½®","Horizontal text alignment toolbar":"水平方å‘ã®ãƒ†ã‚ストé…置ツールãƒãƒ¼","Vertical text alignment toolbar":"åž‚ç›´æ–¹å‘ã®ãƒ†ã‚ストé…置ツールãƒãƒ¼","Table alignment toolbar":"テーブルé…置ツールãƒãƒ¼",None:"ãªã—",Solid:"1本線",Dotted:"点線",Dashed:"ç ´ç·š",Double:"2本線",Groove:"立体的ã«ãã¼ã‚“ã ç·š",Ridge:"立体的ã«éš†èµ·ã—ãŸç·š",Inset:"内å´å…¨ä½“ãŒãã¼ã‚“ã ç·š",Outset:"内å´å…¨ä½“ãŒéš†èµ·ã—ãŸç·š","Align cell text to the left":"セルã®ãƒ†ã‚ストを左ã¸å¯„ã›ã‚‹","Align cell text to the center":"セルã®ãƒ†ã‚ストをä¸å¤®ã¸æƒãˆã‚‹","Align cell text to the right":"セルã®ãƒ†ã‚ストをå³ã¸å¯„ã›ã‚‹","Justify cell text":"セルã®ãƒ†ã‚ストを両端ã¸æƒãˆã‚‹","Align cell text to the top":"セルã®ãƒ†ã‚ストを上ã«å¯„ã›ã‚‹","Align cell text to the middle":"セルã®ãƒ†ã‚ストをä¸å¤®ã¸æƒãˆã‚‹","Align cell text to the bottom":"セルã®ãƒ†ã‚ストを下ã«å¯„ã›ã‚‹","Align table to the left":"テーブルを左ã¸å¯„ã›ã‚‹","Center table":"テーブルをä¸å¤®ã¸å¯„ã›ã‚‹","Align table to the right":"テーブルをå³ã¸å¯„ã›ã‚‹","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"ã“ã®è‰²ã¯ç„¡åŠ¹ã§ã™ã€‚「#FF0000ã€ã€ã€Œrgb(255,0,0ã€ã¾ãŸã¯ã€Œèµ¤ã€ã‚’ãŠè©¦ã—ãã ã•ã„。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ã“ã®å€¤ã¯ç„¡åŠ¹ã§ã™ã€‚「10pxã€ã€ã€Œ2emã€ã¾ãŸã¯å˜ç´”ã«ã€Œ2ã€ã‚’ãŠè©¦ã—ãã ã•ã„。","Color picker":"カラーピッカー","Toggle caption off":"ã‚ャプションをオフã«ã™ã‚‹","Toggle caption on":"ã‚ャプションをオンã«ã™ã‚‹","Enter table caption":"テーブルã‚ャプションを入力","Rich Text Editor":"リッãƒãƒ†ã‚ストエディター","Editor editing area: %0":"エディタ編集エリア:%0","Edit block":"ブãƒãƒƒã‚¯ã‚’編集","Click to edit block":"クリックã—ã¦ãƒ–ãƒãƒƒã‚¯ã‚’編集ã™ã‚‹","Drag to move":"ドラッグã—ã¦å‹•ã‹ã™",Next:"次ã¸",Previous:"å‰ã¸","Editor toolbar":"エディタツールãƒãƒ¼","Dropdown toolbar":"ドãƒãƒƒãƒ—ダウンツールãƒãƒ¼",Black:"é»’","Dim grey":"æš—ã„ç°è‰²",Grey:"ç°è‰²","Light grey":"明るã„ç°è‰²",White:"白",Red:"赤",Orange:"オレンジ",Yellow:"黄","Light green":"明るã„ç·‘",Green:"ç·‘",Aquamarine:"è–„ã„é’ç·‘",Turquoise:"水色","Light blue":"明るã„é’",Blue:"é’",Purple:"ç´«","Editor block content toolbar":"エディター ブãƒãƒƒã‚¯ コンテンツ ツールãƒãƒ¼","Editor contextual toolbar":"エディター コンテクスト ツールãƒãƒ¼",HEX:"HEX",Accept:"åŒæ„ã—ã¾ã™","No results found":"çµæžœã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ","No searchable items":"検索å¯èƒ½ãªã‚¢ã‚¤ãƒ†ãƒ ãŒã‚ã‚Šã¾ã›ã‚“","Editor dialog":"エディタダイアãƒã‚°",Close:"é–‰ã˜ã‚‹",Undo:"å…ƒã«æˆ»ã™",Redo:"ã‚„ã‚Šç›´ã—","Upload in progress":"アップãƒãƒ¼ãƒ‰ä¸","Widget toolbar":"ウィジェットツールãƒãƒ¼","Insert paragraph before block":"ブãƒãƒƒã‚¯ã®å‰ã«ãƒ‘ラグラフを挿入","Insert paragraph after block":"ブãƒãƒƒã‚¯ã®å¾Œã«ãƒ‘ラグラフを挿入","Press Enter to type after or press Shift + Enter to type before the widget":"Enterを押ã—ã¦ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆã®å¾Œã«å…¥åŠ›ã™ã‚‹ã‹ã€Shift + Enterを押ã—ã¦ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆã®å‰ã«å…¥åŠ›ã—ã¦ãã ã•ã„","Words: %0":"å˜èªžæ•°: %0","Characters: %0":"æ–‡å—æ•°: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/jv.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/jv.js index a0a9fe2681b0e4720813e502864a086c5b567a5b..9be91de7cb3ba075032813ced724ac4934f905fd 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/jv.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/jv.js @@ -1 +1 @@ -(function(d){ const l = d['jv'] = d['jv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Rata kiwa","Align right":"Rata tengen","Align center":"Rata tengah",Justify:"Rata kiwa tengen","Text alignment":"Perataan seratan","Text alignment toolbar":"",Bold:"Kandhel",Italic:"Miring",Underline:"Garis ngandhap",Code:"Kode",Strikethrough:"Seratan dicoret",Subscript:"",Superscript:"","Insert code block":"","Plain text":"Seratan biasa",Cancel:"Batal",Clear:"","Remove color":"Busek warni","Restore default":"Mangsulaken default",Save:"Rimat","Show more items":"Tampilaken langkung kathah","%0 of %1":"%0 saking %1","Cannot upload file:":"Mboden saged ngirim berkas:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Pados lan gantos","Find in text…":"Pados ing seratan",Find:"Pados","Previous result":"Kasil saderengipun","Next result":"Kasil salajengipun",Replace:"Gantos","Replace all":"Gantos sedaya","Match case":"Samikaken aksara","Whole words only":"Sedayaning ukanten","Replace with…":"Gantos kaliyan...","Text to find must not be empty.":"Seratan ingkang dipunpadosi mboten angsal kosong.","Tip: Find some text first in order to replace it.":"","Advanced options":"",Paragraph:"",Heading:"","Choose heading":"","Heading 1":"","Heading 2":"","Heading 3":"","Heading 4":"","Heading 5":"","Heading 6":"","Type your title":"Serataken irah-irahan","Type or paste your content here.":"Serataken utawi nyukani babagan ing ngriki","Horizontal line":"Garis horisontal","HTML object":"Obyek HTML","Numbered List":"","Bulleted List":"","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"Kaset",Circle:"Bunder",Square:"Kotak",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"Wiwit saking","Start index must be greater than 0.":"","Reversed order":"Dipunwangsul"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['jv'] = d['jv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Rata kiwa","Align right":"Rata tengen","Align center":"Rata tengah",Justify:"Rata kiwa tengen","Text alignment":"Perataan seratan","Text alignment toolbar":"",Bold:"Kandhel",Italic:"Miring",Underline:"Garis ngandhap",Code:"Kode",Strikethrough:"Seratan dicoret",Subscript:"",Superscript:"","Insert code block":"","Plain text":"Seratan biasa",Cancel:"Batal",Clear:"","Remove color":"Busek warni","Restore default":"Mangsulaken default",Save:"Rimat","Show more items":"Tampilaken langkung kathah","%0 of %1":"%0 saking %1","Cannot upload file:":"Mboden saged ngirim berkas:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"Pados lan gantos","Find in text…":"Pados ing seratan",Find:"Pados","Previous result":"Kasil saderengipun","Next result":"Kasil salajengipun",Replace:"Gantos","Replace all":"Gantos sedaya","Match case":"Samikaken aksara","Whole words only":"Sedayaning ukanten","Replace with…":"Gantos kaliyan...","Text to find must not be empty.":"Seratan ingkang dipunpadosi mboten angsal kosong.","Tip: Find some text first in order to replace it.":"","Advanced options":"","Font Size":"Ukuran aksara",Tiny:"Langkung alit",Small:"Alit",Big:"Ageng",Huge:"Langkung ageng","Font Family":"Jinising Aksara",Default:"Default","Font Color":"Warni aksara","Font Background Color":"Warni Latar Aksara","Document colors":"Warni dokumen",Paragraph:"",Heading:"","Choose heading":"","Heading 1":"","Heading 2":"","Heading 3":"","Heading 4":"","Heading 5":"","Heading 6":"","Type your title":"Serataken irah-irahan","Type or paste your content here.":"Serataken utawi nyukani babagan ing ngriki","Horizontal line":"Garis horisontal","HTML object":"Obyek HTML","Numbered List":"","Bulleted List":"","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"Kaset",Circle:"Bunder",Square:"Kotak",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"Wiwit saking","Start index must be greater than 0.":"","Reversed order":"Dipunwangsul"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ko.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ko.js index 937fc845d29fa1224e251f0d6c1b706469a3c280..30758146a638ff48300d13cbc30255ceddc55794 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ko.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ko.js @@ -1 +1 @@ -(function(d){ const l = d['ko'] = d['ko'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"왼쪽 ì •ë ¬","Align right":"오른쪽 ì •ë ¬","Align center":"ê°€ìš´ë° ì •ë ¬",Justify:"양쪽 ì •ë ¬","Text alignment":"í…스트 ì •ë ¬","Text alignment toolbar":"í…스트 ì •ë ¬ 툴바",Bold:"굵게",Italic:"기울임꼴",Underline:"밑줄",Code:"코드",Strikethrough:"ì·¨ì†Œì„ ",Subscript:"아래 첨ìž",Superscript:"위 첨ìž","Block quote":"ì¸ìš© 단ë½","Insert code block":"코드 ë¸”ëŸ ì‚½ìž…","Plain text":"í‰ë¬¸",Cancel:"취소",Clear:"지우기","Remove color":"색깔 ì œê±°","Restore default":"기본값 ë³µì›",Save:"ì €ìž¥","Show more items":"ë”보기","%0 of %1":"%0 / %1","Cannot upload file:":"íŒŒì¼ ì—…ë¡œë“œí• ìˆ˜ ì—†ìŒ: ","Rich Text Editor. Editing area: %0":"리치 í…스트 편집기. 편집 ì˜ì—: %0","Insert with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 삽입","Replace with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 êµì²´","Insert image with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 ì´ë¯¸ì§€ 삽입","Replace image with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 ì´ë¯¸ì§€ êµì²´","Find and replace":"찾기 ë° ë°”ê¾¸ê¸°","Find in text…":"í…스트ì—ì„œ 찾기...",Find:"찾기","Previous result":"ì´ì „ ê²°ê³¼","Next result":"ë‹¤ìŒ ê²°ê³¼",Replace:"바꾸기","Replace all":"ëª¨ë‘ ë°”ê¾¸ê¸°","Match case":"대/ì†Œë¬¸ìž êµ¬ë¶„","Whole words only":"ì „ì²´ 단어만","Replace with…":"바꿀 ë‚´ìš©...","Text to find must not be empty.":"ì°¾ì„ í…스트를 ìž…ë ¥í•´ì•¼ 합니다.","Tip: Find some text first in order to replace it.":"íŒ: ë°”ê¾¸ë ¤ëŠ” í…스트를 ë¨¼ì € 찾으세요.","Advanced options":"ê³ ê¸‰ 옵션",Paragraph:"문단",Heading:"ì œëª©","Choose heading":"ì œëª© ì„ íƒ","Heading 1":"ì œëª© 1","Heading 2":"ì œëª© 2","Heading 3":"ì œëª© 3","Heading 4":"ì œëª© 4","Heading 5":"ì œëª© 5","Heading 6":"ì œëª© 6","Type your title":"ì œëª©ì„ ìž…ë ¥í•´ì£¼ì„¸ìš”","Type or paste your content here.":"ì—¬ê¸°ì— ë‚´ìš©ì„ ìž…ë ¥í•˜ê±°ë‚˜ 붙여넣으세요.","Horizontal line":"수í‰ì„ ","HTML object":"HTML 오브ì 트","Increase indent":"들여쓰기 늘리기","Decrease indent":"들여쓰기 줄ì´ê¸°",Unlink:"ë§í¬ ì‚ì œ",Link:"ë§í¬","Link URL":"ë§í¬ 주소","Link image":"사진 ë§í¬","Edit link":"ë§í¬ 편집","Open link in new tab":"새 íƒì—ì„œ ë§í¬ 열기","This link has no URL":"ì´ ì£¼ì†Œì—는 URLì´ ì—†ìŠµë‹ˆë‹¤.","Open in a new tab":"새 íƒì—ì„œ 열기",Downloadable:"다운로드 가능","Numbered List":"번호 목ë¡","Bulleted List":"불릿 목ë¡","To-do List":"í™•ì¸ ëª©ë¡","Bulleted list styles toolbar":"글머리 기호 ëª©ë¡ ìŠ¤íƒ€ì¼ ë„구 모ìŒ","Numbered list styles toolbar":"번호 ëª©ë¡ ìŠ¤íƒ€ì¼ ë„구 모ìŒ","Toggle the disc list style":"í° ì›í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the circle list style":"ê²€ì€ ì›í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the square list style":"ê²€ì€ ì‚¬ê°í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the decimal list style":"ì‹ì§„수 ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the decimal with leading zero list style":"ì•žì— 0ì´ ë¶™ëŠ” ì‹ì§„수 ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the lower–roman list style":"ì†Œë¬¸ìž ë¡œë§ˆìž ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the upper–roman list style":"ëŒ€ë¬¸ìž ë¡œë§ˆìž ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the lower–latin list style":"ì†Œë¬¸ìž ì•ŒíŒŒë²³ ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the upper–latin list style":"ëŒ€ë¬¸ìž ì•ŒíŒŒë²³ ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜",Disc:"ê²€ì€ ì›í˜•",Circle:"í° ì›í˜•",Square:"ê²€ì€ ì‚¬ê°í˜•",Decimal:"ì‹ì§„수","Decimal with leading zero":"ì•žì— 0ì´ ë¶™ëŠ” ì‹ì§„수","Lower–roman":"ì†Œë¬¸ìž ë¡œë§ˆìž","Upper-roman":"ëŒ€ë¬¸ìž ë¡œë§ˆìž","Lower-latin":"ì†Œë¬¸ìž ì•ŒíŒŒë²³","Upper-latin":"ëŒ€ë¬¸ìž ì•ŒíŒŒë²³","List properties":"ëª©ë¡ ì†ì„±","Start at":"시작 번호","Start index must be greater than 0.":"시작 번호는 0보다 커야 합니다.","Reversed order":"ì—순","Remove Format":"ì„œì‹ ì§€ìš°ê¸°","Select all":"ì „ì²´ ì„ íƒ","Show blocks":"ë¸”ë¡ í‘œì‹œ",Source:"소스","Special characters":"특수 문ìž",All:"ì „ì²´",Arrows:"화살표",Currency:"통화",Latin:"ë¼í‹´",Mathematical:"수ì‹",Text:"í…스트","leftwards simple arrow":"왼쪽 단순 화살표","rightwards simple arrow":"오른쪽 단순 화살표","upwards simple arrow":"위쪽 단순 화살표","downwards simple arrow":"아래쪽 단순 화살표","leftwards double arrow":"왼쪽 겹화살표","rightwards double arrow":"오른쪽 겹화살표","upwards double arrow":"위쪽 겹화살표","downwards double arrow":"아래쪽 겹화살표","leftwards dashed arrow":"왼쪽 대시 화살표","rightwards dashed arrow":"오른쪽 대시 화살표","upwards dashed arrow":"위쪽 대시 화살표","downwards dashed arrow":"아래쪽 대시 화살표","leftwards arrow to bar":"왼쪽 바를 향한 화살표","rightwards arrow to bar":"오른쪽 바를 향한 화살표","upwards arrow to bar":"위쪽 바를 향한 화살표","downwards arrow to bar":"아래쪽 바를 향한 화살표","up down arrow with base":"ë°›ì¹¨ì´ ìžˆëŠ” 위아래 화살표","back with leftwards arrow above":"BACK 위 왼쪽 화살표","end with leftwards arrow above":"END 위 왼쪽 화살표","on with exclamation mark with left right arrow above":"ON! 위 왼쪽 오른쪽 화살표","soon with rightwards arrow above":"SOON 위 오른쪽 화살표","top with upwards arrow above":"TOP 위 위쪽 화살표","Dollar sign":"달러 기호","Euro sign":"ìœ ë¡œ 기호","Yen sign":"ì—” 기호","Pound sign":"파운드 기호","Cent sign":"센트 기호","Euro-currency sign":"ìœ ë¡œí™” 기호","Colon sign":"ì½œë¡ ê¸°í˜¸","Cruzeiro sign":"í¬ë£¨ì œì´ë£¨ 기호","French franc sign":"프랑스 프랑 기호","Lira sign":"ë¦¬ë¼ ê¸°í˜¸","Currency sign":"통화 기호","Bitcoin sign":"ë¹„íŠ¸ì½”ì¸ ê¸°í˜¸","Mill sign":"ë°€ 기호","Naira sign":"나ì´ë¼ 기호","Peseta sign":"페세타 기호","Rupee sign":"루피 기호","Won sign":"ì› ê¸°í˜¸","New sheqel sign":"뉴 세켈 기호","Dong sign":"ë™ ê¸°í˜¸","Kip sign":"킵 기호","Tugrik sign":"íˆ¬ê·¸ë¦¬í¬ ê¸°í˜¸","Drachma sign":"ë“œë¼í¬ë§ˆ 기호","German penny sign":"ë…ì¼ íŽ˜ë‹ˆ 기호","Peso sign":"페소 기호","Guarani sign":"ê³¼ë¼ë‹ˆ 기호","Austral sign":"오스트랄 기호","Hryvnia sign":"íë¦¬ë¸Œëƒ ê¸°í˜¸","Cedi sign":"세디 기호","Livre tournois sign":"리브르 트르누아 기호","Spesmilo sign":"스페스밀로 기호","Tenge sign":"텡게 기호","Indian rupee sign":"ì¸ë„ 루피 기호","Turkish lira sign":"터키 ë¦¬ë¼ ê¸°í˜¸","Nordic mark sign":"노르딕 ë§ˆí¬ ê¸°í˜¸","Manat sign":"마나트 기호","Ruble sign":"루블 기호","Latin capital letter a with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter a with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter a with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter c with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter d with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž D","Latin small letter d with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž d","Latin capital letter d with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž D","Latin small letter d with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž d","Latin capital letter e with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter g with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter h with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž H","Latin small letter h with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž h","Latin capital letter h with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž H","Latin small letter h with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž h","Latin capital letter i with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter dotless i":"ë¼í‹´ì–´ ì†Œë¬¸ìž ì 없는 i","Latin capital ligature ij":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž í•©ìž IJ","Latin small ligature ij":"ë¼í‹´ì–´ ì†Œë¬¸ìž í•©ìž ij","Latin capital letter j with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž J","Latin small letter j with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž j","Latin capital letter k with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž K","Latin small letter k with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž k","Latin small letter kra":"ë¼í‹´ì–´ ì†Œë¬¸ìž í¬ë¼","Latin capital letter l with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with middle dot":"ì¤‘ê°„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with middle dot":"ì¤‘ê°„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter n with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter n with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter n with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin small letter n preceded by apostrophe":"ì•„í¬ìŠ¤íŠ¸ë¡œí”¼ 다ìŒì— 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter eng":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž ì—¥","Latin small letter eng":"ë¼í‹´ì–´ ì†Œë¬¸ìž ì—¥","Latin capital letter o with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital letter o with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital letter o with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital ligature oe":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž í•©ìž OE","Latin small ligature oe":"ë¼í‹´ì–´ ì†Œë¬¸ìž í•©ìž oe","Latin capital letter r with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter r with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter r with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter s with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter t with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter t with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter t with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter u with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with ring above":"ìœ„ì— ê³ ë¦¬ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with ring above":"ìœ„ì— ê³ ë¦¬ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter w with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž W","Latin small letter w with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž w","Latin capital letter y with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Y","Latin small letter y with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž y","Latin capital letter y with diaeresis":"ë¶„ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Y","Latin capital letter z with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin capital letter z with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin capital letter z with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin small letter long s":"ë¼í‹´ì–´ ì†Œë¬¸ìž ê¸´ s","Less-than sign":"ë” ìž‘ìŒ ê¸°í˜¸","Greater-than sign":"ë” í¼ ê¸°í˜¸","Less-than or equal to":"ë” ìž‘ê±°ë‚˜ ê°™ìŒ","Greater-than or equal to":"ë” í¬ê±°ë‚˜ ê°™ìŒ","En dash":"ì—” 대시","Em dash":"ì— ëŒ€ì‹œ",Macron:"ìž¥ìŒ ë¶€í˜¸",Overline:"윗줄","Degree sign":"ë„ ê¸°í˜¸","Minus sign":"빼기 기호","Plus-minus sign":"ë”하기 빼기 기호","Division sign":"나누기 기호","Fraction slash":"분수 슬래시","Multiplication sign":"곱하기 기호","Latin small letter f with hook":"ë°‘ì´ êµ¬ë¶€ëŸ¬ì§„ ë¼í‹´ì–´ ì†Œë¬¸ìž f",Integral:"ì 분","N-ary summation":"누계합",Infinity:"무한대","Square root":"ì œê³±ê·¼","Tilde operator":"물결표 ì—°ì‚°ìž","Approximately equal to":"대략 ê°™ìŒ","Almost equal to":"ê±°ì˜ ê°™ìŒ","Not equal to":"같지 ì•ŠìŒ","Identical to":"í•©ë™","Element of":"ì›ì†Œ","Not an element of":"ì›ì†Œê°€ 아님","Contains as member":"ì›ì†Œë¡œ í¬í•¨","N-ary product":"중복순열","Logical and":"논리곱","Logical or":"논리합","Not sign":"ë¶€ì • 기호",Intersection:"êµì§‘í•©",Union:"합집합","Partial differential":"편미분","For all":"ì „ì¹","There exists":"존재","Empty set":"공집합",Nabla:"나블ë¼","Asterisk operator":"별표 ì—°ì‚°ìž","Proportional to":"비례",Angle:"ê°","Vulgar fraction one quarter":"4ë¶„ì˜ 1","Vulgar fraction one half":"2ë¶„ì˜ 1","Vulgar fraction three quarters":"4ë¶„ì˜ 3","Single left-pointing angle quotation mark":"왼쪽 홑화살괄호","Single right-pointing angle quotation mark":"오른쪽 홑화살괄호","Left-pointing double angle quotation mark":"왼쪽 겹화살괄호","Right-pointing double angle quotation mark":"오른쪽 겹화살괄호","Left single quotation mark":"왼쪽 ìž‘ì€ë”°ì˜´í‘œ","Right single quotation mark":"오른쪽 ìž‘ì€ë”°ì˜´í‘œ","Left double quotation mark":"왼쪽 í°ë”°ì˜´í‘œ","Right double quotation mark":"오른쪽 í°ë”°ì˜´í‘œ","Single low-9 quotation mark":"ë‚®ì€ í™‘ë”°ì˜´í‘œ","Double low-9 quotation mark":"ë‚®ì€ ê²¹ë”°ì˜´í‘œ","Inverted exclamation mark":"ì—ëŠë‚Œí‘œ","Inverted question mark":"ì—물ìŒí‘œ","Two dot leader":"ë‘ ì 줄임표","Horizontal ellipsis":"세 ì 줄임표","Double dagger":"겹칼표","Per mille sign":"í¼ ë§ˆì¼ ê¸°í˜¸","Per ten thousand sign":"만분율 기호","Double exclamation mark":"ê²¹ëŠë‚Œí‘œ","Question exclamation mark":"물ìŒí‘œ ëŠë‚Œí‘œ","Exclamation question mark":"ëŠë‚Œí‘œ 물ìŒí‘œ","Double question mark":"겹물ìŒí‘œ","Copyright sign":"ì €ìž‘ê¶Œ 기호","Registered sign":"ë“±ë¡ ìƒí‘œ 기호","Trade mark sign":"ìƒí‘œ 기호","Section sign":"êµ¬ì— ê¸°í˜¸","Paragraph sign":"ë‹¨ë½ ê¸°í˜¸","Reversed paragraph sign":"ë°˜ì „ëœ ë‹¨ë½ ê¸°í˜¸","Character categories":"ë¬¸ìž ì¹´í…Œê³ ë¦¬",Styles:"스타ì¼","Multiple styles":"다중 스타ì¼","Block styles":"ë¸”ë¡ ìŠ¤íƒ€ì¼","Text styles":"í…스트 스타ì¼","Insert table":"í…Œì´ë¸” 삽입","Header column":"í—¤ë” ì—´","Insert column left":"ì™¼ìª½ì— ì—´ 삽입","Insert column right":"ì˜¤ë¥¸ìª½ì— ì—´ 삽입","Delete column":"ì—´ ì‚ì œ","Select column":"ì—´ ì„ íƒ",Column:"ì—´","Header row":"í—¤ë” í–‰","Insert row below":"ì•„ëž˜ì— í–‰ 삽입","Insert row above":"ìœ„ì— í–‰ 삽입","Delete row":"í–‰ ì‚ì œ","Select row":"í–‰ ì„ íƒ",Row:"í–‰","Merge cell up":"위 셀과 병합","Merge cell right":"오른쪽 셀과 병합","Merge cell down":"아래 셀과 병합","Merge cell left":"왼쪽 셀과 병합","Split cell vertically":"세로로 ì…€ ë¶„í• ","Split cell horizontally":"가로로 ì…€ ë¶„í• ","Merge cells":"ì…€ 병합","Table toolbar":"í‘œ ë„구 모ìŒ","Table properties":"í‘œ ì†ì„±","Cell properties":"ì…€ ì†ì„±",Border:"í…Œë‘리",Style:"스타ì¼",Width:"가로",Height:"세로",Color:"색",Background:"배경색",Padding:"여백",Dimensions:"í¬ê¸°","Table cell text alignment":"í‘œ ì…€ í…스트 ì •ë ¬",Alignment:"ì •ë ¬","Horizontal text alignment toolbar":"가로 í…스트 ì •ë ¬ ë„구 모ìŒ","Vertical text alignment toolbar":"세로 í…스트 ì •ë ¬ ë„구 모ìŒ","Table alignment toolbar":"í‘œ ì •ë ¬ ë„구 모ìŒ",None:"ì„ ì—†ìŒ",Solid:"ì‹¤ì„ ",Dotted:"ì ì„ ",Dashed:"íŒŒì„ ",Double:"ì´ì¤‘ì„ ",Groove:"ìŒê°ì„ ",Ridge:"ì–‘ê°ì„ ",Inset:"측면 ìŒê°ì„ ",Outset:"측면 ì–‘ê°ì„ ","Align cell text to the left":"ì…€ í…스트를 왼쪽으로 ì •ë ¬","Align cell text to the center":"ì…€ í…스트를 가로 가운ë°ë¡œ ì •ë ¬","Align cell text to the right":"ì…€ í…스트를 오른쪽으로 ì •ë ¬","Justify cell text":"ì…€ í…스트를 양쪽으로 ì •ë ¬","Align cell text to the top":"ì…€ í…스트를 위로 ì •ë ¬","Align cell text to the middle":"ì…€ í…스트를 세로 가운ë°ë¡œ ì •ë ¬","Align cell text to the bottom":"ì…€ í…스트를 아래로 ì •ë ¬","Align table to the left":"í…Œì´ë¸”ì„ ì™¼ìª½ìœ¼ë¡œ ì •ë ¬","Center table":"í…Œì´ë¸”ì„ ê°€ìš´ë°ë¡œ ì •ë ¬","Align table to the right":"í…Œì´ë¸”ì„ ì˜¤ë¥¸ìª½ìœ¼ë¡œ ì •ë ¬","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"ìœ íš¨í•˜ì§€ ì•Šì€ ìƒ‰ìž…ë‹ˆë‹¤. \"#FF0000\"ì´ë‚˜ \"rgb(255,0,0)\", ë˜ëŠ” \"red\"를 ìž…ë ¥í•´ 보세요.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ìœ íš¨í•˜ì§€ ì•Šì€ ê°’ìž…ë‹ˆë‹¤. \"10px\"나 \"2em\" ë˜ëŠ” 그냥 \"2\"를 ìž…ë ¥í•´ 보세요.","Color picker":"ìƒ‰ìƒ ì„ íƒê¸°","Toggle caption off":"캡션 지우기","Toggle caption on":"캡션 넣기","Enter table caption":"í…Œì´ë¸” 캡션 ìž…ë ¥","Rich Text Editor":"ì„œì‹ ìžˆëŠ” í…스트 편집기","Editor editing area: %0":"편집기 편집 ì˜ì—: %0","Edit block":"편집 ì˜ì—","Click to edit block":"í´ë¦í•˜ì—¬ ë¸”ë¡ íŽ¸ì§‘","Drag to move":"드래그하여 ì´ë™",Next:"다ìŒ",Previous:"ì´ì „","Editor toolbar":"편집기 툴바","Dropdown toolbar":"ë“œë¡ë‹¤ìš´ 툴바",Black:"ê²€ì€ìƒ‰","Dim grey":"진한 회색",Grey:"회색","Light grey":"ë°ì€ 회색",White:"í°ìƒ‰",Red:"빨간색",Orange:"주황색",Yellow:"노랑색","Light green":"ì—°í•œ ì´ˆë¡ìƒ‰",Green:"ì´ˆë¡ìƒ‰",Aquamarine:"ì—°í•œ ì²ë¡ìƒ‰",Turquoise:"ì²ë¡ìƒ‰","Light blue":"ì—°í•œ 파랑색",Blue:"파랑색",Purple:"ë³´ë¼ìƒ‰","Editor block content toolbar":"편집기 ì˜ì— ë‚´ìš© 툴바","Editor contextual toolbar":"편집기 문맥 툴바",HEX:"HEX",Accept:"수ë½","No results found":"ê²°ê³¼ ì°¾ì„ ìˆ˜ ì—†ìŒ","No searchable items":"검색 가능한 í•ëª© ì—†ìŒ","Editor dialog":"편집기 대화ìƒìž",Close:"닫기",Undo:"실행 취소",Redo:"다시 실행","Upload in progress":"업로드 진행 중","Widget toolbar":"ìœ„ì ¯ 툴바","Insert paragraph before block":"ë¸”ë¡ ì•žì— ë‹¨ë½ ì‚½ìž…","Insert paragraph after block":"ë¸”ë¡ ë’¤ì— ë‹¨ë½ ì‚½ìž…","Press Enter to type after or press Shift + Enter to type before the widget":"엔터를 눌러서 ìœ„ì ¯ ë’¤ì— ìž…ë ¥í•˜ê±°ë‚˜ 시프트 + 엔터를 눌러서 ìœ„ì ¯ ì•žì— ìž…ë ¥í•˜ì„¸ìš”","Words: %0":"단어 수: %0","Characters: %0":"ë¬¸ìž ìˆ˜: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ko'] = d['ko'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"왼쪽 ì •ë ¬","Align right":"오른쪽 ì •ë ¬","Align center":"ê°€ìš´ë° ì •ë ¬",Justify:"양쪽 ì •ë ¬","Text alignment":"í…스트 ì •ë ¬","Text alignment toolbar":"í…스트 ì •ë ¬ 툴바",Bold:"굵게",Italic:"기울임꼴",Underline:"밑줄",Code:"코드",Strikethrough:"ì·¨ì†Œì„ ",Subscript:"아래 첨ìž",Superscript:"위 첨ìž","Block quote":"ì¸ìš© 단ë½","Insert code block":"코드 ë¸”ëŸ ì‚½ìž…","Plain text":"í‰ë¬¸",Cancel:"취소",Clear:"지우기","Remove color":"색깔 ì œê±°","Restore default":"기본값 ë³µì›",Save:"ì €ìž¥","Show more items":"ë”보기","%0 of %1":"%0 / %1","Cannot upload file:":"íŒŒì¼ ì—…ë¡œë“œí• ìˆ˜ ì—†ìŒ: ","Rich Text Editor. Editing area: %0":"리치 í…스트 편집기. 편집 ì˜ì—: %0","Insert with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 삽입","Replace with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 êµì²´","Insert image with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 ì´ë¯¸ì§€ 삽입","Replace image with file manager":"íŒŒì¼ ê´€ë¦¬ìžë¥¼ 사용하여 ì´ë¯¸ì§€ êµì²´","Find and replace":"찾기 ë° ë°”ê¾¸ê¸°","Find in text…":"í…스트ì—ì„œ 찾기...",Find:"찾기","Previous result":"ì´ì „ ê²°ê³¼","Next result":"ë‹¤ìŒ ê²°ê³¼",Replace:"바꾸기","Replace all":"ëª¨ë‘ ë°”ê¾¸ê¸°","Match case":"대/ì†Œë¬¸ìž êµ¬ë¶„","Whole words only":"ì „ì²´ 단어만","Replace with…":"바꿀 ë‚´ìš©...","Text to find must not be empty.":"ì°¾ì„ í…스트를 ìž…ë ¥í•´ì•¼ 합니다.","Tip: Find some text first in order to replace it.":"íŒ: ë°”ê¾¸ë ¤ëŠ” í…스트를 ë¨¼ì € 찾으세요.","Advanced options":"ê³ ê¸‰ 옵션","Font Size":"ê¸€ìž í¬ê¸°",Tiny:"매우 ìž‘ì€",Small:"ìž‘ì€",Big:"í°",Huge:"매우 í°","Font Family":"글꼴 집합",Default:"기본","Font Color":"ê¸€ìž ìƒ‰ê¹”","Font Background Color":"ê¸€ìž ë°°ê²½ 색깔","Document colors":"문서 색깔들",Paragraph:"문단",Heading:"ì œëª©","Choose heading":"ì œëª© ì„ íƒ","Heading 1":"ì œëª© 1","Heading 2":"ì œëª© 2","Heading 3":"ì œëª© 3","Heading 4":"ì œëª© 4","Heading 5":"ì œëª© 5","Heading 6":"ì œëª© 6","Type your title":"ì œëª©ì„ ìž…ë ¥í•´ì£¼ì„¸ìš”","Type or paste your content here.":"ì—¬ê¸°ì— ë‚´ìš©ì„ ìž…ë ¥í•˜ê±°ë‚˜ 붙여넣으세요.","Horizontal line":"수í‰ì„ ","HTML object":"HTML 오브ì 트","Increase indent":"들여쓰기 늘리기","Decrease indent":"들여쓰기 줄ì´ê¸°",Unlink:"ë§í¬ ì‚ì œ",Link:"ë§í¬","Link URL":"ë§í¬ 주소","Link image":"사진 ë§í¬","Edit link":"ë§í¬ 편집","Open link in new tab":"새 íƒì—ì„œ ë§í¬ 열기","This link has no URL":"ì´ ì£¼ì†Œì—는 URLì´ ì—†ìŠµë‹ˆë‹¤.","Open in a new tab":"새 íƒì—ì„œ 열기",Downloadable:"다운로드 가능","Numbered List":"번호 목ë¡","Bulleted List":"불릿 목ë¡","To-do List":"í™•ì¸ ëª©ë¡","Bulleted list styles toolbar":"글머리 기호 ëª©ë¡ ìŠ¤íƒ€ì¼ ë„구 모ìŒ","Numbered list styles toolbar":"번호 ëª©ë¡ ìŠ¤íƒ€ì¼ ë„구 모ìŒ","Toggle the disc list style":"í° ì›í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the circle list style":"ê²€ì€ ì›í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the square list style":"ê²€ì€ ì‚¬ê°í˜• ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the decimal list style":"ì‹ì§„수 ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the decimal with leading zero list style":"ì•žì— 0ì´ ë¶™ëŠ” ì‹ì§„수 ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the lower–roman list style":"ì†Œë¬¸ìž ë¡œë§ˆìž ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the upper–roman list style":"ëŒ€ë¬¸ìž ë¡œë§ˆìž ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the lower–latin list style":"ì†Œë¬¸ìž ì•ŒíŒŒë²³ ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜","Toggle the upper–latin list style":"ëŒ€ë¬¸ìž ì•ŒíŒŒë²³ ëª©ë¡ ìŠ¤íƒ€ì¼ ì „í™˜",Disc:"ê²€ì€ ì›í˜•",Circle:"í° ì›í˜•",Square:"ê²€ì€ ì‚¬ê°í˜•",Decimal:"ì‹ì§„수","Decimal with leading zero":"ì•žì— 0ì´ ë¶™ëŠ” ì‹ì§„수","Lower–roman":"ì†Œë¬¸ìž ë¡œë§ˆìž","Upper-roman":"ëŒ€ë¬¸ìž ë¡œë§ˆìž","Lower-latin":"ì†Œë¬¸ìž ì•ŒíŒŒë²³","Upper-latin":"ëŒ€ë¬¸ìž ì•ŒíŒŒë²³","List properties":"ëª©ë¡ ì†ì„±","Start at":"시작 번호","Start index must be greater than 0.":"시작 번호는 0보다 커야 합니다.","Reversed order":"ì—순","Remove Format":"ì„œì‹ ì§€ìš°ê¸°","Select all":"ì „ì²´ ì„ íƒ","Show blocks":"ë¸”ë¡ í‘œì‹œ",Source:"소스","Special characters":"특수 문ìž",All:"ì „ì²´",Arrows:"화살표",Currency:"통화",Latin:"ë¼í‹´",Mathematical:"수ì‹",Text:"í…스트","leftwards simple arrow":"왼쪽 단순 화살표","rightwards simple arrow":"오른쪽 단순 화살표","upwards simple arrow":"위쪽 단순 화살표","downwards simple arrow":"아래쪽 단순 화살표","leftwards double arrow":"왼쪽 겹화살표","rightwards double arrow":"오른쪽 겹화살표","upwards double arrow":"위쪽 겹화살표","downwards double arrow":"아래쪽 겹화살표","leftwards dashed arrow":"왼쪽 대시 화살표","rightwards dashed arrow":"오른쪽 대시 화살표","upwards dashed arrow":"위쪽 대시 화살표","downwards dashed arrow":"아래쪽 대시 화살표","leftwards arrow to bar":"왼쪽 바를 향한 화살표","rightwards arrow to bar":"오른쪽 바를 향한 화살표","upwards arrow to bar":"위쪽 바를 향한 화살표","downwards arrow to bar":"아래쪽 바를 향한 화살표","up down arrow with base":"ë°›ì¹¨ì´ ìžˆëŠ” 위아래 화살표","back with leftwards arrow above":"BACK 위 왼쪽 화살표","end with leftwards arrow above":"END 위 왼쪽 화살표","on with exclamation mark with left right arrow above":"ON! 위 왼쪽 오른쪽 화살표","soon with rightwards arrow above":"SOON 위 오른쪽 화살표","top with upwards arrow above":"TOP 위 위쪽 화살표","Dollar sign":"달러 기호","Euro sign":"ìœ ë¡œ 기호","Yen sign":"ì—” 기호","Pound sign":"파운드 기호","Cent sign":"센트 기호","Euro-currency sign":"ìœ ë¡œí™” 기호","Colon sign":"ì½œë¡ ê¸°í˜¸","Cruzeiro sign":"í¬ë£¨ì œì´ë£¨ 기호","French franc sign":"프랑스 프랑 기호","Lira sign":"ë¦¬ë¼ ê¸°í˜¸","Currency sign":"통화 기호","Bitcoin sign":"ë¹„íŠ¸ì½”ì¸ ê¸°í˜¸","Mill sign":"ë°€ 기호","Naira sign":"나ì´ë¼ 기호","Peseta sign":"페세타 기호","Rupee sign":"루피 기호","Won sign":"ì› ê¸°í˜¸","New sheqel sign":"뉴 세켈 기호","Dong sign":"ë™ ê¸°í˜¸","Kip sign":"킵 기호","Tugrik sign":"íˆ¬ê·¸ë¦¬í¬ ê¸°í˜¸","Drachma sign":"ë“œë¼í¬ë§ˆ 기호","German penny sign":"ë…ì¼ íŽ˜ë‹ˆ 기호","Peso sign":"페소 기호","Guarani sign":"ê³¼ë¼ë‹ˆ 기호","Austral sign":"오스트랄 기호","Hryvnia sign":"íë¦¬ë¸Œëƒ ê¸°í˜¸","Cedi sign":"세디 기호","Livre tournois sign":"리브르 트르누아 기호","Spesmilo sign":"스페스밀로 기호","Tenge sign":"텡게 기호","Indian rupee sign":"ì¸ë„ 루피 기호","Turkish lira sign":"터키 ë¦¬ë¼ ê¸°í˜¸","Nordic mark sign":"노르딕 ë§ˆí¬ ê¸°í˜¸","Manat sign":"마나트 기호","Ruble sign":"루블 기호","Latin capital letter a with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter a with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter a with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž A","Latin small letter a with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž a","Latin capital letter c with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter c with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž C","Latin small letter c with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž c","Latin capital letter d with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž D","Latin small letter d with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž d","Latin capital letter d with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž D","Latin small letter d with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž d","Latin capital letter e with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter e with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž E","Latin small letter e with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž e","Latin capital letter g with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter g with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž G","Latin small letter g with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž g","Latin capital letter h with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž H","Latin small letter h with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž h","Latin capital letter h with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž H","Latin small letter h with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž h","Latin capital letter i with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter i with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter i with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter dotless i":"ë¼í‹´ì–´ ì†Œë¬¸ìž ì 없는 i","Latin capital ligature ij":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž í•©ìž IJ","Latin small ligature ij":"ë¼í‹´ì–´ ì†Œë¬¸ìž í•©ìž ij","Latin capital letter j with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž J","Latin small letter j with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž j","Latin capital letter k with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž K","Latin small letter k with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž k","Latin small letter kra":"ë¼í‹´ì–´ ì†Œë¬¸ìž í¬ë¼","Latin capital letter l with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with middle dot":"ì¤‘ê°„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with middle dot":"ì¤‘ê°„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter l with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž I","Latin small letter l with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž i","Latin capital letter n with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter n with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter n with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž N","Latin small letter n with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin small letter n preceded by apostrophe":"ì•„í¬ìŠ¤íŠ¸ë¡œí”¼ 다ìŒì— 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž n","Latin capital letter eng":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž ì—¥","Latin small letter eng":"ë¼í‹´ì–´ ì†Œë¬¸ìž ì—¥","Latin capital letter o with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital letter o with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital letter o with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž O","Latin small letter o with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž o","Latin capital ligature oe":"ë¼í‹´ì–´ ëŒ€ë¬¸ìž í•©ìž OE","Latin small ligature oe":"ë¼í‹´ì–´ ì†Œë¬¸ìž í•©ìž oe","Latin capital letter r with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter r with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter r with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž R","Latin small letter r with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž r","Latin capital letter s with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter s with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž S","Latin small letter s with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž s","Latin capital letter t with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with cedilla":"ê°ˆê³ ë¦¬ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter t with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter t with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž T","Latin small letter t with stroke":"íš ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž t","Latin capital letter u with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with tilde":"물결 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with macron":"ìž¥ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with breve":"반달ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with ring above":"ìœ„ì— ê³ ë¦¬ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with ring above":"ìœ„ì— ê³ ë¦¬ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with double acute":"ì´ì¤‘ ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter u with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž U","Latin small letter u with ogonek":"꼬리 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž u","Latin capital letter w with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž W","Latin small letter w with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž w","Latin capital letter y with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Y","Latin small letter y with circumflex":"ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž y","Latin capital letter y with diaeresis":"ë¶„ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Y","Latin capital letter z with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with acute":"ì–‘ìŒ ë¶€í˜¸ê°€ 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin capital letter z with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with dot above":"ìœ„ì— ì 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin capital letter z with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ëŒ€ë¬¸ìž Z","Latin small letter z with caron":"반대 ê³¡ì ˆ 부호가 있는 ë¼í‹´ì–´ ì†Œë¬¸ìž z","Latin small letter long s":"ë¼í‹´ì–´ ì†Œë¬¸ìž ê¸´ s","Less-than sign":"ë” ìž‘ìŒ ê¸°í˜¸","Greater-than sign":"ë” í¼ ê¸°í˜¸","Less-than or equal to":"ë” ìž‘ê±°ë‚˜ ê°™ìŒ","Greater-than or equal to":"ë” í¬ê±°ë‚˜ ê°™ìŒ","En dash":"ì—” 대시","Em dash":"ì— ëŒ€ì‹œ",Macron:"ìž¥ìŒ ë¶€í˜¸",Overline:"윗줄","Degree sign":"ë„ ê¸°í˜¸","Minus sign":"빼기 기호","Plus-minus sign":"ë”하기 빼기 기호","Division sign":"나누기 기호","Fraction slash":"분수 슬래시","Multiplication sign":"곱하기 기호","Latin small letter f with hook":"ë°‘ì´ êµ¬ë¶€ëŸ¬ì§„ ë¼í‹´ì–´ ì†Œë¬¸ìž f",Integral:"ì 분","N-ary summation":"누계합",Infinity:"무한대","Square root":"ì œê³±ê·¼","Tilde operator":"물결표 ì—°ì‚°ìž","Approximately equal to":"대략 ê°™ìŒ","Almost equal to":"ê±°ì˜ ê°™ìŒ","Not equal to":"같지 ì•ŠìŒ","Identical to":"í•©ë™","Element of":"ì›ì†Œ","Not an element of":"ì›ì†Œê°€ 아님","Contains as member":"ì›ì†Œë¡œ í¬í•¨","N-ary product":"중복순열","Logical and":"논리곱","Logical or":"논리합","Not sign":"ë¶€ì • 기호",Intersection:"êµì§‘í•©",Union:"합집합","Partial differential":"편미분","For all":"ì „ì¹","There exists":"존재","Empty set":"공집합",Nabla:"나블ë¼","Asterisk operator":"별표 ì—°ì‚°ìž","Proportional to":"비례",Angle:"ê°","Vulgar fraction one quarter":"4ë¶„ì˜ 1","Vulgar fraction one half":"2ë¶„ì˜ 1","Vulgar fraction three quarters":"4ë¶„ì˜ 3","Single left-pointing angle quotation mark":"왼쪽 홑화살괄호","Single right-pointing angle quotation mark":"오른쪽 홑화살괄호","Left-pointing double angle quotation mark":"왼쪽 겹화살괄호","Right-pointing double angle quotation mark":"오른쪽 겹화살괄호","Left single quotation mark":"왼쪽 ìž‘ì€ë”°ì˜´í‘œ","Right single quotation mark":"오른쪽 ìž‘ì€ë”°ì˜´í‘œ","Left double quotation mark":"왼쪽 í°ë”°ì˜´í‘œ","Right double quotation mark":"오른쪽 í°ë”°ì˜´í‘œ","Single low-9 quotation mark":"ë‚®ì€ í™‘ë”°ì˜´í‘œ","Double low-9 quotation mark":"ë‚®ì€ ê²¹ë”°ì˜´í‘œ","Inverted exclamation mark":"ì—ëŠë‚Œí‘œ","Inverted question mark":"ì—물ìŒí‘œ","Two dot leader":"ë‘ ì 줄임표","Horizontal ellipsis":"세 ì 줄임표","Double dagger":"겹칼표","Per mille sign":"í¼ ë§ˆì¼ ê¸°í˜¸","Per ten thousand sign":"만분율 기호","Double exclamation mark":"ê²¹ëŠë‚Œí‘œ","Question exclamation mark":"물ìŒí‘œ ëŠë‚Œí‘œ","Exclamation question mark":"ëŠë‚Œí‘œ 물ìŒí‘œ","Double question mark":"겹물ìŒí‘œ","Copyright sign":"ì €ìž‘ê¶Œ 기호","Registered sign":"ë“±ë¡ ìƒí‘œ 기호","Trade mark sign":"ìƒí‘œ 기호","Section sign":"êµ¬ì— ê¸°í˜¸","Paragraph sign":"ë‹¨ë½ ê¸°í˜¸","Reversed paragraph sign":"ë°˜ì „ëœ ë‹¨ë½ ê¸°í˜¸","Character categories":"ë¬¸ìž ì¹´í…Œê³ ë¦¬",Styles:"스타ì¼","Multiple styles":"다중 스타ì¼","Block styles":"ë¸”ë¡ ìŠ¤íƒ€ì¼","Text styles":"í…스트 스타ì¼","Insert table":"í…Œì´ë¸” 삽입","Header column":"í—¤ë” ì—´","Insert column left":"ì™¼ìª½ì— ì—´ 삽입","Insert column right":"ì˜¤ë¥¸ìª½ì— ì—´ 삽입","Delete column":"ì—´ ì‚ì œ","Select column":"ì—´ ì„ íƒ",Column:"ì—´","Header row":"í—¤ë” í–‰","Insert row below":"ì•„ëž˜ì— í–‰ 삽입","Insert row above":"ìœ„ì— í–‰ 삽입","Delete row":"í–‰ ì‚ì œ","Select row":"í–‰ ì„ íƒ",Row:"í–‰","Merge cell up":"위 셀과 병합","Merge cell right":"오른쪽 셀과 병합","Merge cell down":"아래 셀과 병합","Merge cell left":"왼쪽 셀과 병합","Split cell vertically":"세로로 ì…€ ë¶„í• ","Split cell horizontally":"가로로 ì…€ ë¶„í• ","Merge cells":"ì…€ 병합","Table toolbar":"í‘œ ë„구 모ìŒ","Table properties":"í‘œ ì†ì„±","Cell properties":"ì…€ ì†ì„±",Border:"í…Œë‘리",Style:"스타ì¼",Width:"가로",Height:"세로",Color:"색",Background:"배경색",Padding:"여백",Dimensions:"í¬ê¸°","Table cell text alignment":"í‘œ ì…€ í…스트 ì •ë ¬",Alignment:"ì •ë ¬","Horizontal text alignment toolbar":"가로 í…스트 ì •ë ¬ ë„구 모ìŒ","Vertical text alignment toolbar":"세로 í…스트 ì •ë ¬ ë„구 모ìŒ","Table alignment toolbar":"í‘œ ì •ë ¬ ë„구 모ìŒ",None:"ì„ ì—†ìŒ",Solid:"ì‹¤ì„ ",Dotted:"ì ì„ ",Dashed:"íŒŒì„ ",Double:"ì´ì¤‘ì„ ",Groove:"ìŒê°ì„ ",Ridge:"ì–‘ê°ì„ ",Inset:"측면 ìŒê°ì„ ",Outset:"측면 ì–‘ê°ì„ ","Align cell text to the left":"ì…€ í…스트를 왼쪽으로 ì •ë ¬","Align cell text to the center":"ì…€ í…스트를 가로 가운ë°ë¡œ ì •ë ¬","Align cell text to the right":"ì…€ í…스트를 오른쪽으로 ì •ë ¬","Justify cell text":"ì…€ í…스트를 양쪽으로 ì •ë ¬","Align cell text to the top":"ì…€ í…스트를 위로 ì •ë ¬","Align cell text to the middle":"ì…€ í…스트를 세로 가운ë°ë¡œ ì •ë ¬","Align cell text to the bottom":"ì…€ í…스트를 아래로 ì •ë ¬","Align table to the left":"í…Œì´ë¸”ì„ ì™¼ìª½ìœ¼ë¡œ ì •ë ¬","Center table":"í…Œì´ë¸”ì„ ê°€ìš´ë°ë¡œ ì •ë ¬","Align table to the right":"í…Œì´ë¸”ì„ ì˜¤ë¥¸ìª½ìœ¼ë¡œ ì •ë ¬","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"ìœ íš¨í•˜ì§€ ì•Šì€ ìƒ‰ìž…ë‹ˆë‹¤. \"#FF0000\"ì´ë‚˜ \"rgb(255,0,0)\", ë˜ëŠ” \"red\"를 ìž…ë ¥í•´ 보세요.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ìœ íš¨í•˜ì§€ ì•Šì€ ê°’ìž…ë‹ˆë‹¤. \"10px\"나 \"2em\" ë˜ëŠ” 그냥 \"2\"를 ìž…ë ¥í•´ 보세요.","Color picker":"ìƒ‰ìƒ ì„ íƒê¸°","Toggle caption off":"캡션 지우기","Toggle caption on":"캡션 넣기","Enter table caption":"í…Œì´ë¸” 캡션 ìž…ë ¥","Rich Text Editor":"ì„œì‹ ìžˆëŠ” í…스트 편집기","Editor editing area: %0":"편집기 편집 ì˜ì—: %0","Edit block":"편집 ì˜ì—","Click to edit block":"í´ë¦í•˜ì—¬ ë¸”ë¡ íŽ¸ì§‘","Drag to move":"드래그하여 ì´ë™",Next:"다ìŒ",Previous:"ì´ì „","Editor toolbar":"편집기 툴바","Dropdown toolbar":"ë“œë¡ë‹¤ìš´ 툴바",Black:"ê²€ì€ìƒ‰","Dim grey":"진한 회색",Grey:"회색","Light grey":"ë°ì€ 회색",White:"í°ìƒ‰",Red:"빨간색",Orange:"주황색",Yellow:"노랑색","Light green":"ì—°í•œ ì´ˆë¡ìƒ‰",Green:"ì´ˆë¡ìƒ‰",Aquamarine:"ì—°í•œ ì²ë¡ìƒ‰",Turquoise:"ì²ë¡ìƒ‰","Light blue":"ì—°í•œ 파랑색",Blue:"파랑색",Purple:"ë³´ë¼ìƒ‰","Editor block content toolbar":"편집기 ì˜ì— ë‚´ìš© 툴바","Editor contextual toolbar":"편집기 문맥 툴바",HEX:"HEX",Accept:"수ë½","No results found":"ê²°ê³¼ ì°¾ì„ ìˆ˜ ì—†ìŒ","No searchable items":"검색 가능한 í•ëª© ì—†ìŒ","Editor dialog":"편집기 대화ìƒìž",Close:"닫기",Undo:"실행 취소",Redo:"다시 실행","Upload in progress":"업로드 진행 중","Widget toolbar":"ìœ„ì ¯ 툴바","Insert paragraph before block":"ë¸”ë¡ ì•žì— ë‹¨ë½ ì‚½ìž…","Insert paragraph after block":"ë¸”ë¡ ë’¤ì— ë‹¨ë½ ì‚½ìž…","Press Enter to type after or press Shift + Enter to type before the widget":"엔터를 눌러서 ìœ„ì ¯ ë’¤ì— ìž…ë ¥í•˜ê±°ë‚˜ 시프트 + 엔터를 눌러서 ìœ„ì ¯ ì•žì— ìž…ë ¥í•˜ì„¸ìš”","Words: %0":"단어 수: %0","Characters: %0":"ë¬¸ìž ìˆ˜: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ku.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ku.js index e3dff799a068d41fbf7b41dfe86b65455ca5a615..eb4e355e2bc4afb189d294c1616e31aa05dff67c 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ku.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ku.js @@ -1 +1 @@ -(function(d){ const l = d['ku'] = d['ku'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"بەهێڵکردنی Ú†Û•Ù¾","Align right":"بەهێڵکردنی ڕاست","Align center":"بەهێڵکردنی ناورەڕاست",Justify:"هاوستوونی","Text alignment":"ڕیززکردنی تێکست","Text alignment toolbar":"تووڵامرازی ڕیززکردنی تێکست",Bold:"Ù‚Û•ÚµÛ•Ùˆ",Italic:"لار",Underline:"ژێرهێڵ",Code:"کۆد",Strikethrough:"Ù‡ÛŽÚµ بەسەرداهاتوو",Subscript:"ژێرنووس",Superscript:"سەرنووس","Block quote":"وتەی وەرگیراو","Insert code block":"دانانی خشتەی کۆد","Plain text":"تێکستی سادە",Cancel:"هەڵوەشاندنەوە",Clear:"","Remove color":"لابردنی Ú•Û•Ù†Ú¯","Restore default":"",Save:"پاشکەوتکردن","Show more items":"بڕگەی زیاتر نیشانبدە","%0 of %1":"%0 Ù„Û• %1","Cannot upload file:":"Ù¾Û•Ú•Ú¯Û•Ú©Û• ناتوانرێت باربکرێت:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"پەراگراÙ",Heading:"سەرنووسە","Choose heading":"سەرنووسە هەڵبژێرە","Heading 1":"سەرنووسەی 1","Heading 2":"سەرنووسەی 2","Heading 3":"سەرنووسەی 3","Heading 4":"سەرنووسەی 4","Heading 5":"سەرنووسەی 5","Heading 6":"سەرنووسەی 6","Type your title":"نوسینی ناونیشان","Type or paste your content here.":"بنووسە یاخوود ناوەڕۆکی کۆپیکراو لیڕە بلکێنە","Horizontal line":"Ù‡ÛŽÚµÛŒ ئاسۆیی","Increase indent":"زیادکردنی بۆشایی","Decrease indent":"کەمکردنەوەی بۆشایی",Unlink:"لابردنی بەستەر",Link:"بەستەر","Link URL":"ناونیشانی بەستەر","Link image":"","Edit link":"دەستکاری بەستەر","Open link in new tab":"کردنەوەی بەستەرەکە Ù„Û• پەڕەیەکی نوێ","This link has no URL":"ئەم بەستەرە ناونیشانی نیە","Open in a new tab":"کردنەوەی Ù„Û• پەنجەرەیەکی نوێ",Downloadable:"Downloadable","Numbered List":"لیستەی ژمارەیی","Bulleted List":"لیستەی خاڵەیی","To-do List":"لیستەی کردن","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"لابردنی شێواز","Insert table":"خشتە دابنێ","Header column":"ستوونی دەسپێک","Insert column left":"دانانی ستوون Ù„Û• Ú†Û•Ù¾","Insert column right":"دانانی ستوون Ù„Û• ڕاست","Delete column":"سڕینەوەی ستوون","Select column":"",Column:"ستوون","Header row":"ڕیزی دەسپێک","Insert row below":"دانانی ڕیز Ù„Û• ژێرەوە","Insert row above":"دانانی ڕیز Ù„Û• سەرەوە","Delete row":"سڕینەوەی ڕیز","Select row":"",Row:"ڕیز","Merge cell up":"تێکەڵکردنی خانەکان بەرەو سەر","Merge cell right":"تێکەڵکردنی خانەکان بەرەو ڕاست","Merge cell down":"تێکەڵکردنی خانەکان بەرەو ژێرەوە","Merge cell left":"تێکەڵکردنی خانەکان بەرەو Ú†Û•Ù¾","Split cell vertically":"بەشکردنی خانەکان بە ئەستوونی","Split cell horizontally":"بەشکردنی خانەکان بە ئاسۆیی","Merge cells":"تێکەڵکردنی خانەکان","Table toolbar":"تووڵامرازی خشتە","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"سەرنوسەری دەقی بەپیت","Editor editing area: %0":"","Edit block":"دەستکاری بلۆک","Click to edit block":"","Drag to move":"",Next:"دواتر",Previous:"پێشتر","Editor toolbar":"تووڵامرازی دەسکاریکەر","Dropdown toolbar":"تووڵامرازی لیستەیی",Black:"Ú•Û•Ø´","Dim grey":"ڕەساسی تاریک",Grey:"ڕەساسی","Light grey":"ڕەساسی ڕووناک",White:"سپی",Red:"سور",Orange:"پرتەقاڵی",Yellow:"زەرد","Light green":"سەوزی ڕووناک",Green:"سەوز",Aquamarine:"شینی دەریایی",Turquoise:"شینی ئاسمانی","Light blue":"شینی ڕووناک",Blue:"شین",Purple:"مۆر","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"ÙˆÛ•Ú© خۆی Ù„ÛŽ بکەوە",Redo:"هەلگەڕاندنەوە","Upload in progress":"بارکردنەکە Ù„Û• جێبەجێکردن دایە","Widget toolbar":"تووڵامرازی ویدجێت","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"وشەکان: %0","Characters: %0":"نووسەکان: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ku'] = d['ku'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"بەهێڵکردنی Ú†Û•Ù¾","Align right":"بەهێڵکردنی ڕاست","Align center":"بەهێڵکردنی ناورەڕاست",Justify:"هاوستوونی","Text alignment":"ڕیززکردنی تێکست","Text alignment toolbar":"تووڵامرازی ڕیززکردنی تێکست",Bold:"Ù‚Û•ÚµÛ•Ùˆ",Italic:"لار",Underline:"ژێرهێڵ",Code:"کۆد",Strikethrough:"Ù‡ÛŽÚµ بەسەرداهاتوو",Subscript:"ژێرنووس",Superscript:"سەرنووس","Block quote":"وتەی وەرگیراو","Insert code block":"دانانی خشتەی کۆد","Plain text":"تێکستی سادە",Cancel:"هەڵوەشاندنەوە",Clear:"","Remove color":"لابردنی Ú•Û•Ù†Ú¯","Restore default":"",Save:"پاشکەوتکردن","Show more items":"بڕگەی زیاتر نیشانبدە","%0 of %1":"%0 Ù„Û• %1","Cannot upload file:":"Ù¾Û•Ú•Ú¯Û•Ú©Û• ناتوانرێت باربکرێت:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"قەبارەی Ùۆنت",Tiny:"Ú¯Ú†Ú©Û•",Small:"بچوک",Big:"گەورە",Huge:"زۆر گەورە","Font Family":"Ùۆنتی خێزانی",Default:"بنچینە","Font Color":"Ú•Û•Ù†Ú¯ÛŒ Ùۆنت","Font Background Color":"Ú•Û•Ù†Ú¯ÛŒ پاشبنەمای Ùۆنت","Document colors":"ڕەنگەکانی دۆکومێنت",Paragraph:"پەراگراÙ",Heading:"سەرنووسە","Choose heading":"سەرنووسە هەڵبژێرە","Heading 1":"سەرنووسەی 1","Heading 2":"سەرنووسەی 2","Heading 3":"سەرنووسەی 3","Heading 4":"سەرنووسەی 4","Heading 5":"سەرنووسەی 5","Heading 6":"سەرنووسەی 6","Type your title":"نوسینی ناونیشان","Type or paste your content here.":"بنووسە یاخوود ناوەڕۆکی کۆپیکراو لیڕە بلکێنە","Horizontal line":"Ù‡ÛŽÚµÛŒ ئاسۆیی","Increase indent":"زیادکردنی بۆشایی","Decrease indent":"کەمکردنەوەی بۆشایی",Unlink:"لابردنی بەستەر",Link:"بەستەر","Link URL":"ناونیشانی بەستەر","Link image":"","Edit link":"دەستکاری بەستەر","Open link in new tab":"کردنەوەی بەستەرەکە Ù„Û• پەڕەیەکی نوێ","This link has no URL":"ئەم بەستەرە ناونیشانی نیە","Open in a new tab":"کردنەوەی Ù„Û• پەنجەرەیەکی نوێ",Downloadable:"Downloadable","Numbered List":"لیستەی ژمارەیی","Bulleted List":"لیستەی خاڵەیی","To-do List":"لیستەی کردن","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"لابردنی شێواز","Insert table":"خشتە دابنێ","Header column":"ستوونی دەسپێک","Insert column left":"دانانی ستوون Ù„Û• Ú†Û•Ù¾","Insert column right":"دانانی ستوون Ù„Û• ڕاست","Delete column":"سڕینەوەی ستوون","Select column":"",Column:"ستوون","Header row":"ڕیزی دەسپێک","Insert row below":"دانانی ڕیز Ù„Û• ژێرەوە","Insert row above":"دانانی ڕیز Ù„Û• سەرەوە","Delete row":"سڕینەوەی ڕیز","Select row":"",Row:"ڕیز","Merge cell up":"تێکەڵکردنی خانەکان بەرەو سەر","Merge cell right":"تێکەڵکردنی خانەکان بەرەو ڕاست","Merge cell down":"تێکەڵکردنی خانەکان بەرەو ژێرەوە","Merge cell left":"تێکەڵکردنی خانەکان بەرەو Ú†Û•Ù¾","Split cell vertically":"بەشکردنی خانەکان بە ئەستوونی","Split cell horizontally":"بەشکردنی خانەکان بە ئاسۆیی","Merge cells":"تێکەڵکردنی خانەکان","Table toolbar":"تووڵامرازی خشتە","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"سەرنوسەری دەقی بەپیت","Editor editing area: %0":"","Edit block":"دەستکاری بلۆک","Click to edit block":"","Drag to move":"",Next:"دواتر",Previous:"پێشتر","Editor toolbar":"تووڵامرازی دەسکاریکەر","Dropdown toolbar":"تووڵامرازی لیستەیی",Black:"Ú•Û•Ø´","Dim grey":"ڕەساسی تاریک",Grey:"ڕەساسی","Light grey":"ڕەساسی ڕووناک",White:"سپی",Red:"سور",Orange:"پرتەقاڵی",Yellow:"زەرد","Light green":"سەوزی ڕووناک",Green:"سەوز",Aquamarine:"شینی دەریایی",Turquoise:"شینی ئاسمانی","Light blue":"شینی ڕووناک",Blue:"شین",Purple:"مۆر","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"ÙˆÛ•Ú© خۆی Ù„ÛŽ بکەوە",Redo:"هەلگەڕاندنەوە","Upload in progress":"بارکردنەکە Ù„Û• جێبەجێکردن دایە","Widget toolbar":"تووڵامرازی ویدجێت","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"وشەکان: %0","Characters: %0":"نووسەکان: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lt.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lt.js index 232b6145350e3d7c8abcd3f1f637aee837303704..ea350ca0e4c6f708d2d6569bde219319989b605d 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lt.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lt.js @@ -1 +1 @@ -(function(d){ const l = d['lt'] = d['lt'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Lygiuoti į kairÄ™","Align right":"Lygiuoti į deÅ¡inÄ™","Align center":"Centruoti",Justify:"Lygiuoti per visÄ… plotį","Text alignment":"Teksto lygiavimas","Text alignment toolbar":"Teksto lygiavimo įrankių juosta",Bold:"ParyÅ¡kintas",Italic:"Kursyvas",Underline:"Pabrauktas",Code:"Kodas",Strikethrough:"Perbrauktas",Subscript:"Žemiau",Superscript:"AukÅ¡Äiau","Block quote":"Citata","Insert code block":"Ä®terpti codų blokÄ…","Plain text":"Paprastasis tekstas",Cancel:"AtÅ¡aukti",Clear:"IÅ¡valyti","Remove color":"PaÅ¡alinti spalvÄ…","Restore default":"Atkurti numatytuosius",Save:"IÅ¡saugoti","Show more items":"Rodyti daugiau elementų","%0 of %1":"%0 iÅ¡ %1","Cannot upload file:":"Negalima įkelti failo:","Rich Text Editor. Editing area: %0":"RaiÅ¡kiojo teksto redaktorius. Redagavimo sritis: %0","Insert with file manager":"Ä®terpti naudojant failų tvarkyklÄ™","Replace with file manager":"Pakeisti failų tvarkykle","Insert image with file manager":"Ä®terpti paveikslÄ—lį naudojant failų tvarkyklÄ™","Replace image with file manager":"Pakeisti paveikslÄ—lį failų tvarkytuve","Find and replace":"Rasti ir pakeisti","Find in text…":"Surasti tekste...",Find:"Surasti","Previous result":"BuvÄ™s rezultatas","Next result":"Kitas rezultatas",Replace:"Pakeisti","Replace all":"Pakeisti visus","Match case":"Sutapties atvejis","Whole words only":"Tik vientisus žodžius","Replace with…":"Sukeisti su...","Text to find must not be empty.":"IeÅ¡komas tekstas negali bÅ«ti tuÅ¡Äias.","Tip: Find some text first in order to replace it.":"Patarimas: Pirmiausiai suraskite teksto, jog jį sukeistumÄ—te.","Advanced options":"IÅ¡plÄ—stinÄ—s pasirinktys",Paragraph:"Paragrafas",Heading:"AntraÅ¡tÄ—","Choose heading":"Pasirinkite antraÅ¡tÄ™","Heading 1":"AntraÅ¡tÄ— 1","Heading 2":"AntraÅ¡tÄ— 2","Heading 3":"AntraÅ¡tÄ— 3","Heading 4":"AntraÅ¡tÄ— 4","Heading 5":"AntraÅ¡tÄ— 5","Heading 6":"AntraÅ¡tÄ— 6","Type your title":"Ä®veskite savo pavadinimÄ…","Type or paste your content here.":"RaÅ¡ykite ar įkopijuokite turinį Äia.","Horizontal line":"Horizontali linija","HTML object":"HTML object","Increase indent":"Padidinti atitraukimÄ…","Decrease indent":"Sumažinti atitraukimÄ…",Unlink:"PaÅ¡alinti nuorodÄ…",Link:"PridÄ—ti nuorodÄ…","Link URL":"Nuorodos URL","Link image":"Susieti paveikslÄ—lį","Edit link":"Keisti nuorodÄ…","Open link in new tab":"Atidaryti nuorodÄ… naujame skirtuke","This link has no URL":"Å i nuorda neturi URL","Open in a new tab":"Atverti naujoje kortelÄ—je",Downloadable:"ParsisiunÄiamas","Numbered List":"Numeruotas rÄ…raÅ¡as","Bulleted List":"SÄ…raÅ¡as","To-do List":"UžduoÄių sÄ…raÅ¡as","Bulleted list styles toolbar":"Ženklinto sÄ…raÅ¡o stilių įrankių juosta","Numbered list styles toolbar":"Numeruoto sÄ…raÅ¡o stilių įrankių juosta","Toggle the disc list style":"Perjungti diskinį sÄ…raÅ¡o stilių","Toggle the circle list style":"Perjungti ovalų sÄ…raÅ¡o stilių","Toggle the square list style":"Perjungti kvadratinį sÄ…raÅ¡o stilių","Toggle the decimal list style":"Perjungti deÅ¡imtainį sÄ…raÅ¡o stilių","Toggle the decimal with leading zero list style":"Perjungti deÅ¡imtainį sÄ…raÅ¡o su nuliu priekyje stilių","Toggle the lower–roman list style":"Perjungti žemesnįjį romÄ—niÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the upper–roman list style":"Perjungti aukÅ¡tesnįjį romÄ—niÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the lower–latin list style":"Perjungti žemesnįjį lotyniÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the upper–latin list style":"Perjungti aukÅ¡tesnįjį lotyniÅ¡ko stiliaus sÄ…raÅ¡Ä…",Disc:"Diskas",Circle:"Apskritimas",Square:"Kvadratas",Decimal:"DeÅ¡imtainis","Decimal with leading zero":"DeÅ¡imtainis su nuliu priekyje","Lower–roman":"žemesnysis-romÄ—niÅ¡kas","Upper-roman":"VirÅ¡utinis romÄ—niÅ¡kas","Lower-latin":"žemesnysis-lotyniÅ¡kas","Upper-latin":"VirÅ¡utinis romÄ—niÅ¡kas","List properties":"Vardyti ypatybes","Start at":"PradÄ—ti nuo","Start index must be greater than 0.":"Pradžios indeksas turi bÅ«ti didesnis nei 0.","Reversed order":"AtvirkÅ¡tinÄ— tvarka","Remove Format":"Naikinti formatavimÄ…","Select all":"Pasirinkti viskÄ…","Show blocks":"Rodyti blokus",Source:"Å altinis","Special characters":"IÅ¡skirtiniai simboliai",All:"Visi",Arrows:"RodyklÄ—s",Currency:"Valiuta",Latin:"LotyniÅ¡ki raÅ¡menys",Mathematical:"Matematiniai raÅ¡menys",Text:"Tekstas","leftwards simple arrow":"Ä® kairÄ™ paprasta rodyklÄ—","rightwards simple arrow":"Ä® deÅ¡inÄ™ paprasta rodyklÄ—","upwards simple arrow":"Ä® viršų paprasta rodyklÄ—","downwards simple arrow":"Ä® apaÄiÄ… paprasta rodyklÄ—","leftwards double arrow":"dviguba rodyklÄ— kairÄ—n","rightwards double arrow":"dviguba rodyklÄ— deÅ¡inÄ—n","upwards double arrow":"dviguba rodyklÄ— aukÅ¡tyn","downwards double arrow":"dviguba rodyklÄ— žemyn","leftwards dashed arrow":"punktyrinÄ— rodyklÄ— kairÄ—n","rightwards dashed arrow":"punktyrinÄ— rodyklÄ— deÅ¡inÄ—n","upwards dashed arrow":"punktyrinÄ— rodyklÄ— aukÅ¡tyn","downwards dashed arrow":"punktyrinÄ— rodyklÄ— žemyn","leftwards arrow to bar":"rodyklÄ— į kairÄ™ juostÄ…","rightwards arrow to bar":"rodyklÄ— į deÅ¡inÄ™ juostÄ…","upwards arrow to bar":"rodyklÄ— į juostÄ… aukÅ¡tyn","downwards arrow to bar":"rodyklÄ— į juostÄ… žemyn","up down arrow with base":"rodyklÄ— aukÅ¡tyn žemyn su pagrindu","back with leftwards arrow above":"atgal su rodykle kairÄ—n virÅ¡uje","end with leftwards arrow above":"pabaiga su rodykle kairÄ—n virÅ¡uje","on with exclamation mark with left right arrow above":"įjungta su Å¡auktuku su rodykle kairÄ—n deÅ¡inÄ—n virÅ¡uje","soon with rightwards arrow above":"netrukus su rodykle deÅ¡inÄ—n virÅ¡uje","top with upwards arrow above":"virÅ¡us su rodykle aukÅ¡tyn virÅ¡uje","Dollar sign":"Dolerio ženklas","Euro sign":"Euro ženklas","Yen sign":"Jenos ženklas","Pound sign":"Svaro ženklas","Cent sign":"Cento ženklas","Euro-currency sign":"Euro valiutos ženklas","Colon sign":"DvitaÅ¡kio ženklas","Cruzeiro sign":"Cruzeiro ženklas","French franc sign":"PrancÅ«zų franko ženklas","Lira sign":"Liros ženklas","Currency sign":"Valiutos ženklas","Bitcoin sign":"Bitkoino ženklas","Mill sign":"MalÅ«no ženklas","Naira sign":"Nairos ženklas","Peseta sign":"Pesetos ženklas","Rupee sign":"Rupijos ženklas","Won sign":"Vonos ženklas","New sheqel sign":"Naujojo Å¡ekelio ženklas","Dong sign":"Dongo ženklas","Kip sign":"Kipo ženklas","Tugrik sign":"Tugriko ženklas","Drachma sign":"Drachmos ženklas","German penny sign":"Vokietijos cento ženklas","Peso sign":"Peso ženklas","Guarani sign":"Guaranos ženklas","Austral sign":"Australo ženklas","Hryvnia sign":"Grivinos ženklas","Cedi sign":"Cedi ženklas","Livre tournois sign":"Livre tournois ženklas","Spesmilo sign":"Spesmilo ženklas","Tenge sign":"TengÄ—s ženklas","Indian rupee sign":"Indijos rupijos ženklas","Turkish lira sign":"Turkijos liros ženklas","Nordic mark sign":"Å iaurietiÅ¡kas ženklas","Manat sign":"Manatos ženklas","Ruble sign":"Rublio ženklas","Latin capital letter a with macron":"Lotynų didžioji raidÄ— a su makronu","Latin small letter a with macron":"Lotynų mažoji raidÄ— a su makronu","Latin capital letter a with breve":"Lotynų didžioji raidÄ— a su lankeliu","Latin small letter a with breve":"Lotynų mažoji raidÄ— a su lankeliu","Latin capital letter a with ogonek":"Lotynų didžioji raidÄ— a su nosine","Latin small letter a with ogonek":"Lotynų mažoji raidÄ— a su nosine","Latin capital letter c with acute":"Lotynų didžioji raidÄ— c su deÅ¡ininiu kirÄiu","Latin small letter c with acute":"Lotynų mažoji raidÄ— c su deÅ¡ininiu kirÄiu","Latin capital letter c with circumflex":"Lotynų didžioji raidÄ— c su cirkumfleksu","Latin small letter c with circumflex":"Lotynų mažoji raidÄ— c su cirkumfleksu","Latin capital letter c with dot above":"Lotynų didžioji raidÄ— c su taÅ¡ku virÅ¡uje","Latin small letter c with dot above":"Lotynų mažoji raidÄ— c su taÅ¡ku virÅ¡uje","Latin capital letter c with caron":"Lotynų didžioji raidÄ— c su paukÅ¡Äiuku","Latin small letter c with caron":"Lotynų mažoji raidÄ— c su paukÅ¡Äiuku","Latin capital letter d with caron":"Lotynų didžioji raidÄ— d su paukÅ¡Äiuku","Latin small letter d with caron":"Lotynų mažoji raidÄ— d su paukÅ¡Äiuku","Latin capital letter d with stroke":"Lotynų didžioji raidÄ— d su pasviruoju brÅ«kÅ¡neliu","Latin small letter d with stroke":"Lotynų mažoji raidÄ— d su pasviruoju brÅ«kÅ¡neliu","Latin capital letter e with macron":"Lotynų didžioji raidÄ— e su makronu","Latin small letter e with macron":"Lotynų mažoji raidÄ— e su makronu","Latin capital letter e with breve":"Lotynų didžioji raidÄ— e su lankeliu","Latin small letter e with breve":"Lotynų mažoji raidÄ— e su lankeliu","Latin capital letter e with dot above":"Lotynų didžioji raidÄ— e su taÅ¡ku virÅ¡uje","Latin small letter e with dot above":"Lotynų mažoji raidÄ— e su taÅ¡ku virÅ¡uje","Latin capital letter e with ogonek":"Lotynų didžioji raidÄ— e su nosine","Latin small letter e with ogonek":"Lotynų mažoji raidÄ— e su nosine","Latin capital letter e with caron":"Lotynų didžioji raidÄ— e su paukÅ¡Äiuku","Latin small letter e with caron":"Lotynų didžioji raidÄ— e su paukÅ¡Äiuku","Latin capital letter g with circumflex":"Lotynų didžioji raidÄ— g su cirkumfleksu","Latin small letter g with circumflex":"Lotynų mažoji raidÄ— g su cirkumfleksu","Latin capital letter g with breve":"Lotynų didžioji raidÄ— g su lankeliu","Latin small letter g with breve":"Lotynų mažoji raidÄ— g su lankeliu","Latin capital letter g with dot above":"Lotynų didžioji raidÄ— g su taÅ¡ku virÅ¡uje","Latin small letter g with dot above":"Lotynų mažoji raidÄ— g su taÅ¡ku virÅ¡uje","Latin capital letter g with cedilla":"Lotynų didžioji raidÄ— g su sedile","Latin small letter g with cedilla":"Lotynų mažoji raidÄ— g su sedile","Latin capital letter h with circumflex":"Lotynų didžioji raidÄ— h su cirkumfleksu","Latin small letter h with circumflex":"Lotynų mažoji raidÄ— h su cirkumfleksu","Latin capital letter h with stroke":"Lotynų didžioji raidÄ— h su pasviruoju brÅ«kÅ¡neliu","Latin small letter h with stroke":"Lotynų mažoji raidÄ— h su pasviruoju brÅ«kÅ¡neliu","Latin capital letter i with tilde":"Lotynų didžioji raidÄ— i su riestiniu kirÄiu","Latin small letter i with tilde":"Lotynų mažoji raidÄ— i su riestiniu kirÄiu","Latin capital letter i with macron":"Lotynų didžioji raidÄ— i su makronu","Latin small letter i with macron":"Lotynų mažoji raidÄ— i su makronu","Latin capital letter i with breve":"Lotynų didžioji raidÄ— i su lankeliu","Latin small letter i with breve":"Lotynų mažoji raidÄ— i su lankeliu","Latin capital letter i with ogonek":"Lotynų didžioji raidÄ— i su nosine","Latin small letter i with ogonek":"Lotynų mažoji raidÄ— i su nosine","Latin capital letter i with dot above":"Lotynų didžioji raidÄ— i su taÅ¡ku virÅ¡uje","Latin small letter dotless i":"Lotynų mažoji raidÄ— i be taÅ¡kų","Latin capital ligature ij":"Lotynų didžioji ligatÅ«ra ij","Latin small ligature ij":"Lotynų mažoji ligatÅ«ra ij","Latin capital letter j with circumflex":"Lotynų didžioji raidÄ— j su cirkumfleksu","Latin small letter j with circumflex":"Lotynų mažoji raidÄ— j su cirkumfleksu","Latin capital letter k with cedilla":"Lotynų didžioji raidÄ— k su sedile","Latin small letter k with cedilla":"Lotynų mažoji raidÄ— k su sedile","Latin small letter kra":"Lotynų mažoji raidÄ— kra","Latin capital letter l with acute":"Lotynų didžioji raidÄ— l su deÅ¡ininiu kirÄiu","Latin small letter l with acute":"Lotynų mažoji raidÄ— l su deÅ¡ininiu kirÄiu","Latin capital letter l with cedilla":"Lotynų didžioji raidÄ— l su sedile","Latin small letter l with cedilla":"Lotynų mažoji raidÄ— l su sedile","Latin capital letter l with caron":"Lotynų didžioji raidÄ— l su paukÅ¡Äiuku","Latin small letter l with caron":"Lotynų mažoji raidÄ— l su paukÅ¡Äiuku","Latin capital letter l with middle dot":"Lotynų didžioji raidÄ— l su taÅ¡ku viduryje","Latin small letter l with middle dot":"Lotynų mažoji raidÄ— l su taÅ¡ku viduryje","Latin capital letter l with stroke":"Lotynų didžioji raidÄ— l su pasviruoju brÅ«kÅ¡neliu","Latin small letter l with stroke":"Lotynų mažoji raidÄ— l su pasviruoju brÅ«kÅ¡neliu","Latin capital letter n with acute":"Lotynų didžioji raidÄ— n su deÅ¡ininiu kirÄiu","Latin small letter n with acute":"Lotynų mažoji raidÄ— n su deÅ¡ininiu kirÄiu","Latin capital letter n with cedilla":"Lotynų didžioji raidÄ— n su sedile","Latin small letter n with cedilla":"Lotynų mažoji raidÄ— n su sedile","Latin capital letter n with caron":"Lotynų didžioji raidÄ— n su paukÅ¡Äiuku","Latin small letter n with caron":"Lotynų mažoji raidÄ— n su paukÅ¡Äiuku","Latin small letter n preceded by apostrophe":"Lotynų mažoji raidÄ— n su apostrofu prieÅ¡ais","Latin capital letter eng":"Lotynų didžioji raidÄ— eng","Latin small letter eng":"Lotynų mažoji raidÄ— eng","Latin capital letter o with macron":"Lotynų didžioji raidÄ— o su makronu","Latin small letter o with macron":"Lotynų mažoji raidÄ— o su makronu","Latin capital letter o with breve":"Lotynų didžioji raidÄ— o su lankeliu","Latin small letter o with breve":"Lotynų mažoji raidÄ— o su lankeliu","Latin capital letter o with double acute":"Lotynų didžioji raidÄ— o su dvigubu deÅ¡ininiu kirÄiu","Latin small letter o with double acute":"Lotynų mažoji raidÄ— o su dvigubu deÅ¡ininiu kirÄiu","Latin capital ligature oe":"Lotynų didžioji ligatÅ«ra oe","Latin small ligature oe":"Lotynų mažoji ligatÅ«ra oe","Latin capital letter r with acute":"Lotynų didžioji raidÄ— r su deÅ¡ininiu kirÄiu","Latin small letter r with acute":"Lotynų mažoji raidÄ— r su deÅ¡ininiu kirÄiu","Latin capital letter r with cedilla":"Lotynų didžioji raidÄ— r su sedile","Latin small letter r with cedilla":"Lotynų mažoji raidÄ— r su sedile","Latin capital letter r with caron":"Lotynų didžioji raidÄ— r su paukÅ¡Äiuku","Latin small letter r with caron":"Lotynų mažoji raidÄ— r su paukÅ¡Äiuku","Latin capital letter s with acute":"Lotynų didžioji raidÄ— s su deÅ¡ininiu kirÄiu","Latin small letter s with acute":"Lotynų mažoji raidÄ— s su deÅ¡ininiu kirÄiu","Latin capital letter s with circumflex":"Lotynų didžioji raidÄ— s su cirkumfleksu","Latin small letter s with circumflex":"Lotynų mažoji raidÄ— s su cirkumfleksu","Latin capital letter s with cedilla":"Lotynų didžioji raidÄ— s su sedile","Latin small letter s with cedilla":"Lotynų mažoji raidÄ— s su sedile","Latin capital letter s with caron":"Lotynų didžioji raidÄ— s su paukÅ¡Äiuku","Latin small letter s with caron":"Lotynų mažoji raidÄ— s su paukÅ¡Äiuku","Latin capital letter t with cedilla":"Lotynų didžioji raidÄ— t su sedile","Latin small letter t with cedilla":"Lotynų mažoji raidÄ— t su sedile","Latin capital letter t with caron":"Lotynų didžioji raidÄ— t su paukÅ¡Äiuku","Latin small letter t with caron":"Lotynų mažoji raidÄ— t su paukÅ¡Äiuku","Latin capital letter t with stroke":"Lotynų didžioji raidÄ— t su pasviruoju brÅ«kÅ¡neliu","Latin small letter t with stroke":"Lotynų mažoji raidÄ— t su pasviruoju brÅ«kÅ¡neliu","Latin capital letter u with tilde":"Lotynų didžioji raidÄ— u su riestiniu kirÄiu","Latin small letter u with tilde":"Lotynų mažoji raidÄ— u su riestiniu kirÄiu","Latin capital letter u with macron":"Lotynų didžioji raidÄ— u su makronu","Latin small letter u with macron":"Lotynų mažoji raidÄ— u su makronu","Latin capital letter u with breve":"Lotynų didžioji raidÄ— u su lankeliu","Latin small letter u with breve":"Lotynų mažoji raidÄ— u su lankeliu","Latin capital letter u with ring above":"Lotynų didžioji raidÄ— u su žiedu virÅ¡uje","Latin small letter u with ring above":"Lotynų mažoji raidÄ— u su žiedu virÅ¡uje","Latin capital letter u with double acute":"Lotynų didžioji raidÄ— u su dvigubu deÅ¡ininiu kirÄiu","Latin small letter u with double acute":"Lotynų mažoji raidÄ— u su dvigubu deÅ¡ininiu kirÄiu","Latin capital letter u with ogonek":"Lotynų didžioji raidÄ— u su nosine","Latin small letter u with ogonek":"Lotynų mažoji raidÄ— u su nosine","Latin capital letter w with circumflex":"Lotynų didžioji raidÄ— w su cirkumfleksu","Latin small letter w with circumflex":"Lotynų mažoji raidÄ— w su cirkumfleksu","Latin capital letter y with circumflex":"Lotynų didžioji raidÄ— y su cirkumfleksu","Latin small letter y with circumflex":"Lotynų mažoji raidÄ— y su cirkumfleksu","Latin capital letter y with diaeresis":"Lotynų didžioji raidÄ— y su diaereze","Latin capital letter z with acute":"Lotynų didžioji raidÄ— z su deÅ¡ininiu kirÄiu","Latin small letter z with acute":"Lotynų mažoji raidÄ— z su deÅ¡ininiu kirÄiu","Latin capital letter z with dot above":"Lotynų didžioji raidÄ— z su taÅ¡ku virÅ¡uje","Latin small letter z with dot above":"Lotynų mažoji raidÄ— z su taÅ¡ku virÅ¡uje","Latin capital letter z with caron":"Lotynų didžioji raidÄ— z su paukÅ¡Äiuku","Latin small letter z with caron":"Lotynų mažoji raidÄ— z su paukÅ¡Äiuku","Latin small letter long s":"Lotynų mažoji ilga raidÄ— s","Less-than sign":"Mažiau nei ženklas","Greater-than sign":"Daugiau nei ženklas","Less-than or equal to":"Mažiau nei arba lygu ","Greater-than or equal to":"Daugiau nei arba lygu","En dash":"BrÅ«kÅ¡nelis","Em dash":"BrÅ«kÅ¡nys",Macron:"Makronas",Overline:"VirÅ¡utinÄ— juosta","Degree sign":"Laipsnio ženklas","Minus sign":"Minuso ženklas","Plus-minus sign":"Pliuso-minuso ženklas","Division sign":"Dalybos ženklas","Fraction slash":"Trupmeninis pasvirasis brÅ«kÅ¡nys","Multiplication sign":"Daugybos ženklas","Latin small letter f with hook":"Lotynų mažoji raidÄ— f su kabliuku",Integral:"Integralas","N-ary summation":"Sigma sumavimas",Infinity:"BegalybÄ—","Square root":"KvadratinÄ— Å¡aknis","Tilde operator":"Ekvivalentas","Approximately equal to":"Apytiksliai lygu","Almost equal to":"Beveik lygu","Not equal to":"Nelygu","Identical to":"IdentiÅ¡kas","Element of":"Narys","Not an element of":"Ne narys","Contains as member":"Skaitosi kaip narys","N-ary product":"Dekarto produktas","Logical and":"Konjunkcija","Logical or":"Disjunkcija","Not sign":"Neigimas",Intersection:"Sankirta",Union:"SÄ…junga","Partial differential":"DalinÄ— iÅ¡vestinÄ—","For all":"Bendrumo kvantorius","There exists":"Egzistavimo kvantorius","Empty set":"NulinÄ— reikÅ¡mÄ—",Nabla:"Nabla","Asterisk operator":"ŽvaigždutÄ—","Proportional to":"Proporcingas",Angle:"Kampas","Vulgar fraction one quarter":"Paprastoji trupmena one ketvirtadalis","Vulgar fraction one half":"Paprastoji trupmena one antroji","Vulgar fraction three quarters":"Paprastoji trupmena three ketvirtadaliai","Single left-pointing angle quotation mark":"Vienguba kairÄ—n nukreipto kampo kabutÄ—","Single right-pointing angle quotation mark":"Vienguba deÅ¡inÄ—n nukreipto kampo kabutÄ—","Left-pointing double angle quotation mark":"KairÄ—n nukreipto kampo dviguba kabutÄ—","Right-pointing double angle quotation mark":"DeÅ¡inÄ—n nukreipto kampo dviguba kabutÄ—","Left single quotation mark":"Vienguba kairÄ— kabutÄ—","Right single quotation mark":"Vienguba deÅ¡inÄ— kabutÄ—","Left double quotation mark":"KairÄ— dviguba kabutÄ—","Right double quotation mark":"DeÅ¡inÄ— dviguba kabutÄ—","Single low-9 quotation mark":"Vienguba žema „9“ kabutÄ—","Double low-9 quotation mark":"Dviguba žema „9“ kabutÄ—","Inverted exclamation mark":"Apverstas Å¡auktukas","Inverted question mark":"Apverstas klaustukas","Two dot leader":"Two taÅ¡kų linijos","Horizontal ellipsis":"Horizontali elipsÄ—","Double dagger":"Dvigubo kryžiaus ženklas","Per mille sign":"PromilÄ—s ženklas","Per ten thousand sign":"Ten tÅ«kstanÄių ženklas","Double exclamation mark":"Dvigubas Å¡auktukas","Question exclamation mark":"Klaustukas Å¡auktukas","Exclamation question mark":"Å auktukas klaustukas","Double question mark":"Dvigubas klaustukas","Copyright sign":"Autorinių teisių simbolis","Registered sign":"Registruoto prekÄ—s ženklo simbolis","Trade mark sign":"PrekÄ—s ženklo simbolis","Section sign":"Skirsnio ženklas","Paragraph sign":"Pastraipos ženklas","Reversed paragraph sign":"Apverstas pastraipos ženklas","Character categories":"Simbolių kategorijos",Styles:"Stiliai","Multiple styles":"Daug stilių","Block styles":"Blokuoti stilius","Text styles":"Teksto stiliai","Insert table":"Ä®terpti lentelÄ™","Header column":"AntraÅ¡tÄ—s stulpelis","Insert column left":"Ä®terpti stulpelį kairÄ—je","Insert column right":"Ä®terpti stulpelį deÅ¡inÄ—je","Delete column":"IÅ¡trinti stulpelį","Select column":"Pasirinkti stulpelį",Column:"Stulpelis","Header row":"AntraÅ¡tÄ—s eilutÄ—","Insert row below":"Ä®terpti eilutÄ™ žemiau","Insert row above":"Ä®terpti eilutÄ™ aukÅ¡Äiau","Delete row":"IÅ¡trinti eilutÄ™","Select row":"Pasirinkti eilutÄ™",Row:"EilutÄ—","Merge cell up":"Prijungti langelį virÅ¡uje","Merge cell right":"Prijungti langelį deÅ¡inÄ—je","Merge cell down":"Prijungti langelį apaÄioje","Merge cell left":"Prijungti langelį kairÄ—je","Split cell vertically":"Padalinti langelį vertikaliai","Split cell horizontally":"Padalinti langelį horizontaliai","Merge cells":"Sujungti langelius","Table toolbar":"LentelÄ—s įrankių juosta","Table properties":"LentelÄ—s savybÄ—s","Cell properties":"Langelio savybÄ—s",Border:"KraÅ¡tas",Style:"Stilius",Width:"Plotis",Height:"AukÅ¡tis",Color:"Spalva",Background:"Fonas",Padding:"Užpildymas",Dimensions:"Matmenys","Table cell text alignment":"LentelÄ—s langelio teksto lygiavimas",Alignment:"Lygiavimas","Horizontal text alignment toolbar":"Horizontalaus teksto lygiavimo įrankių juosta","Vertical text alignment toolbar":"Vertikalaus teksto lygiavimo įrankių juosta","Table alignment toolbar":"Teksto lygiavimo įrankių juosta",None:"Nieko",Solid:"Vientisas",Dotted:"TaÅ¡kuotas",Dashed:"BrÅ«kÅ¡neliais",Double:"Dvigubas",Groove:"Ilgas ir siauras",Ridge:"Briaunuotas",Inset:"Intarpas",Outset:"Pradžia","Align cell text to the left":"Lygiuoti langelio tekstÄ… kairÄ—je","Align cell text to the center":"Lygiuoti langelio tekstÄ… centre","Align cell text to the right":"Lygiuoti langelio tekstÄ… deÅ¡inÄ—je","Justify cell text":"Pabrėžti langelio tekstÄ…","Align cell text to the top":"Lygiuoti langelio tekstÄ… virÅ¡uje","Align cell text to the middle":"Lygiuoti langelio tekstÄ… viduryje","Align cell text to the bottom":"Lygiuoti langelio tekstÄ… apaÄioje","Align table to the left":"Lygiuoti lentelÄ™ kairÄ—je","Center table":"Centruoti lentelÄ™","Align table to the right":"Lygiuoti lentelÄ™ deÅ¡inÄ—je","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Spalva neteisinga. MÄ—ginkite \"#FF0000\" arba \"rgb(255,0,0)\" arba \"raudona\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ReikÅ¡mÄ— neteisinga. MÄ—ginkite \"10px\" arba \"2em\", ar paprasÄiausiai \"2\".","Color picker":"Spalvos ieÅ¡kiklis","Toggle caption off":"IÅ¡jungti antraÅ¡tÄ™","Toggle caption on":"Ä®jungti antraÅ¡tÄ™","Enter table caption":"Ä®vesti lentelÄ—s antraÅ¡tÄ™","Rich Text Editor":"RaiÅ¡kiojo teksto redaktorius","Editor editing area: %0":"Redaktoriaus redagavimo sritis: %0","Edit block":"Redaguoti blokÄ…","Click to edit block":"SpustelÄ—kite norÄ—dami redaguoti blokÄ…","Drag to move":"Vilkite, kad perkeltumÄ—te",Next:"Kitas",Previous:"BuvÄ™s","Editor toolbar":"Redaktoriaus įrankių juosta","Dropdown toolbar":"Ä®rankių juosta pasirenkamajame sÄ…raÅ¡e",Black:"Juoda","Dim grey":"PilkÅ¡va",Grey:"Pilka","Light grey":"Å viesiai pilka",White:"Balta",Red:"Raudona",Orange:"OranžinÄ—",Yellow:"Geltona","Light green":"Å viesiai žalia",Green:"Žalia",Aquamarine:"Aquamarine",Turquoise:"Turkio","Light blue":"Å viesiai mÄ—lyna",Blue:"MÄ—lyna",Purple:"VioletinÄ—","Editor block content toolbar":"Redaktoriaus bloko turinio įrankių juosta","Editor contextual toolbar":"Redaktoriaus kontekstinÄ— įrankių juosta",HEX:"Å eÅ¡ioliktainÄ— reikÅ¡mÄ— (angl. HEX)",Accept:"Priimti","No results found":"Nieko nerasta","No searchable items":"NÄ—ra paieÅ¡kos elementų","Editor dialog":"Redaktoriaus dialogo langas",Close:"Uždaryti",Undo:"Atgal",Redo:"Pirmyn","Upload in progress":"Ä®kelima","Widget toolbar":"Valdiklių įrankių juosta","Insert paragraph before block":"Ä®kelti pastraipÄ… prieÅ¡ blokÄ…","Insert paragraph after block":"Ä®kelti pastraipÄ… po bloko","Press Enter to type after or press Shift + Enter to type before the widget":"Paspauskite Enter, jei norite raÅ¡yti po valdiklio, arba paspauskite Shift + Enter, jei norite raÅ¡yti prieÅ¡ valdiklį.","Words: %0":"Žodžių: %0","Characters: %0":"Simbolių: %0"} );l.getPluralForm=function(n){return (n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['lt'] = d['lt'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Lygiuoti į kairÄ™","Align right":"Lygiuoti į deÅ¡inÄ™","Align center":"Centruoti",Justify:"Lygiuoti per visÄ… plotį","Text alignment":"Teksto lygiavimas","Text alignment toolbar":"Teksto lygiavimo įrankių juosta",Bold:"ParyÅ¡kintas",Italic:"Kursyvas",Underline:"Pabrauktas",Code:"Kodas",Strikethrough:"Perbrauktas",Subscript:"Žemiau",Superscript:"AukÅ¡Äiau","Block quote":"Citata","Insert code block":"Ä®terpti codų blokÄ…","Plain text":"Paprastasis tekstas",Cancel:"AtÅ¡aukti",Clear:"IÅ¡valyti","Remove color":"PaÅ¡alinti spalvÄ…","Restore default":"Atkurti numatytuosius",Save:"IÅ¡saugoti","Show more items":"Rodyti daugiau elementų","%0 of %1":"%0 iÅ¡ %1","Cannot upload file:":"Negalima įkelti failo:","Rich Text Editor. Editing area: %0":"RaiÅ¡kiojo teksto redaktorius. Redagavimo sritis: %0","Insert with file manager":"Ä®terpti naudojant failų tvarkyklÄ™","Replace with file manager":"Pakeisti failų tvarkykle","Insert image with file manager":"Ä®terpti paveikslÄ—lį naudojant failų tvarkyklÄ™","Replace image with file manager":"Pakeisti paveikslÄ—lį failų tvarkytuve","Find and replace":"Rasti ir pakeisti","Find in text…":"Surasti tekste...",Find:"Surasti","Previous result":"BuvÄ™s rezultatas","Next result":"Kitas rezultatas",Replace:"Pakeisti","Replace all":"Pakeisti visus","Match case":"Sutapties atvejis","Whole words only":"Tik vientisus žodžius","Replace with…":"Sukeisti su...","Text to find must not be empty.":"IeÅ¡komas tekstas negali bÅ«ti tuÅ¡Äias.","Tip: Find some text first in order to replace it.":"Patarimas: Pirmiausiai suraskite teksto, jog jį sukeistumÄ—te.","Advanced options":"IÅ¡plÄ—stinÄ—s pasirinktys","Font Size":"Å rifto dydis",Tiny:"Mažytis",Small:"Mažas",Big:"Didelis",Huge:"MilžiniÅ¡kas","Font Family":"Å rifto Å¡eima",Default:"Numatyta","Font Color":"Å rifto spalva","Font Background Color":"Å rifto fono spalva","Document colors":"Dokumento spalvos",Paragraph:"Paragrafas",Heading:"AntraÅ¡tÄ—","Choose heading":"Pasirinkite antraÅ¡tÄ™","Heading 1":"AntraÅ¡tÄ— 1","Heading 2":"AntraÅ¡tÄ— 2","Heading 3":"AntraÅ¡tÄ— 3","Heading 4":"AntraÅ¡tÄ— 4","Heading 5":"AntraÅ¡tÄ— 5","Heading 6":"AntraÅ¡tÄ— 6","Type your title":"Ä®veskite savo pavadinimÄ…","Type or paste your content here.":"RaÅ¡ykite ar įkopijuokite turinį Äia.","Horizontal line":"Horizontali linija","HTML object":"HTML object","Increase indent":"Padidinti atitraukimÄ…","Decrease indent":"Sumažinti atitraukimÄ…",Unlink:"PaÅ¡alinti nuorodÄ…",Link:"PridÄ—ti nuorodÄ…","Link URL":"Nuorodos URL","Link image":"Susieti paveikslÄ—lį","Edit link":"Keisti nuorodÄ…","Open link in new tab":"Atidaryti nuorodÄ… naujame skirtuke","This link has no URL":"Å i nuorda neturi URL","Open in a new tab":"Atverti naujoje kortelÄ—je",Downloadable:"ParsisiunÄiamas","Numbered List":"Numeruotas rÄ…raÅ¡as","Bulleted List":"SÄ…raÅ¡as","To-do List":"UžduoÄių sÄ…raÅ¡as","Bulleted list styles toolbar":"Ženklinto sÄ…raÅ¡o stilių įrankių juosta","Numbered list styles toolbar":"Numeruoto sÄ…raÅ¡o stilių įrankių juosta","Toggle the disc list style":"Perjungti diskinį sÄ…raÅ¡o stilių","Toggle the circle list style":"Perjungti ovalų sÄ…raÅ¡o stilių","Toggle the square list style":"Perjungti kvadratinį sÄ…raÅ¡o stilių","Toggle the decimal list style":"Perjungti deÅ¡imtainį sÄ…raÅ¡o stilių","Toggle the decimal with leading zero list style":"Perjungti deÅ¡imtainį sÄ…raÅ¡o su nuliu priekyje stilių","Toggle the lower–roman list style":"Perjungti žemesnįjį romÄ—niÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the upper–roman list style":"Perjungti aukÅ¡tesnįjį romÄ—niÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the lower–latin list style":"Perjungti žemesnįjį lotyniÅ¡ko stiliaus sÄ…raÅ¡Ä…","Toggle the upper–latin list style":"Perjungti aukÅ¡tesnįjį lotyniÅ¡ko stiliaus sÄ…raÅ¡Ä…",Disc:"Diskas",Circle:"Apskritimas",Square:"Kvadratas",Decimal:"DeÅ¡imtainis","Decimal with leading zero":"DeÅ¡imtainis su nuliu priekyje","Lower–roman":"žemesnysis-romÄ—niÅ¡kas","Upper-roman":"VirÅ¡utinis romÄ—niÅ¡kas","Lower-latin":"žemesnysis-lotyniÅ¡kas","Upper-latin":"VirÅ¡utinis romÄ—niÅ¡kas","List properties":"Vardyti ypatybes","Start at":"PradÄ—ti nuo","Start index must be greater than 0.":"Pradžios indeksas turi bÅ«ti didesnis nei 0.","Reversed order":"AtvirkÅ¡tinÄ— tvarka","Remove Format":"Naikinti formatavimÄ…","Select all":"Pasirinkti viskÄ…","Show blocks":"Rodyti blokus",Source:"Å altinis","Special characters":"IÅ¡skirtiniai simboliai",All:"Visi",Arrows:"RodyklÄ—s",Currency:"Valiuta",Latin:"LotyniÅ¡ki raÅ¡menys",Mathematical:"Matematiniai raÅ¡menys",Text:"Tekstas","leftwards simple arrow":"Ä® kairÄ™ paprasta rodyklÄ—","rightwards simple arrow":"Ä® deÅ¡inÄ™ paprasta rodyklÄ—","upwards simple arrow":"Ä® viršų paprasta rodyklÄ—","downwards simple arrow":"Ä® apaÄiÄ… paprasta rodyklÄ—","leftwards double arrow":"dviguba rodyklÄ— kairÄ—n","rightwards double arrow":"dviguba rodyklÄ— deÅ¡inÄ—n","upwards double arrow":"dviguba rodyklÄ— aukÅ¡tyn","downwards double arrow":"dviguba rodyklÄ— žemyn","leftwards dashed arrow":"punktyrinÄ— rodyklÄ— kairÄ—n","rightwards dashed arrow":"punktyrinÄ— rodyklÄ— deÅ¡inÄ—n","upwards dashed arrow":"punktyrinÄ— rodyklÄ— aukÅ¡tyn","downwards dashed arrow":"punktyrinÄ— rodyklÄ— žemyn","leftwards arrow to bar":"rodyklÄ— į kairÄ™ juostÄ…","rightwards arrow to bar":"rodyklÄ— į deÅ¡inÄ™ juostÄ…","upwards arrow to bar":"rodyklÄ— į juostÄ… aukÅ¡tyn","downwards arrow to bar":"rodyklÄ— į juostÄ… žemyn","up down arrow with base":"rodyklÄ— aukÅ¡tyn žemyn su pagrindu","back with leftwards arrow above":"atgal su rodykle kairÄ—n virÅ¡uje","end with leftwards arrow above":"pabaiga su rodykle kairÄ—n virÅ¡uje","on with exclamation mark with left right arrow above":"įjungta su Å¡auktuku su rodykle kairÄ—n deÅ¡inÄ—n virÅ¡uje","soon with rightwards arrow above":"netrukus su rodykle deÅ¡inÄ—n virÅ¡uje","top with upwards arrow above":"virÅ¡us su rodykle aukÅ¡tyn virÅ¡uje","Dollar sign":"Dolerio ženklas","Euro sign":"Euro ženklas","Yen sign":"Jenos ženklas","Pound sign":"Svaro ženklas","Cent sign":"Cento ženklas","Euro-currency sign":"Euro valiutos ženklas","Colon sign":"DvitaÅ¡kio ženklas","Cruzeiro sign":"Cruzeiro ženklas","French franc sign":"PrancÅ«zų franko ženklas","Lira sign":"Liros ženklas","Currency sign":"Valiutos ženklas","Bitcoin sign":"Bitkoino ženklas","Mill sign":"MalÅ«no ženklas","Naira sign":"Nairos ženklas","Peseta sign":"Pesetos ženklas","Rupee sign":"Rupijos ženklas","Won sign":"Vonos ženklas","New sheqel sign":"Naujojo Å¡ekelio ženklas","Dong sign":"Dongo ženklas","Kip sign":"Kipo ženklas","Tugrik sign":"Tugriko ženklas","Drachma sign":"Drachmos ženklas","German penny sign":"Vokietijos cento ženklas","Peso sign":"Peso ženklas","Guarani sign":"Guaranos ženklas","Austral sign":"Australo ženklas","Hryvnia sign":"Grivinos ženklas","Cedi sign":"Cedi ženklas","Livre tournois sign":"Livre tournois ženklas","Spesmilo sign":"Spesmilo ženklas","Tenge sign":"TengÄ—s ženklas","Indian rupee sign":"Indijos rupijos ženklas","Turkish lira sign":"Turkijos liros ženklas","Nordic mark sign":"Å iaurietiÅ¡kas ženklas","Manat sign":"Manatos ženklas","Ruble sign":"Rublio ženklas","Latin capital letter a with macron":"Lotynų didžioji raidÄ— a su makronu","Latin small letter a with macron":"Lotynų mažoji raidÄ— a su makronu","Latin capital letter a with breve":"Lotynų didžioji raidÄ— a su lankeliu","Latin small letter a with breve":"Lotynų mažoji raidÄ— a su lankeliu","Latin capital letter a with ogonek":"Lotynų didžioji raidÄ— a su nosine","Latin small letter a with ogonek":"Lotynų mažoji raidÄ— a su nosine","Latin capital letter c with acute":"Lotynų didžioji raidÄ— c su deÅ¡ininiu kirÄiu","Latin small letter c with acute":"Lotynų mažoji raidÄ— c su deÅ¡ininiu kirÄiu","Latin capital letter c with circumflex":"Lotynų didžioji raidÄ— c su cirkumfleksu","Latin small letter c with circumflex":"Lotynų mažoji raidÄ— c su cirkumfleksu","Latin capital letter c with dot above":"Lotynų didžioji raidÄ— c su taÅ¡ku virÅ¡uje","Latin small letter c with dot above":"Lotynų mažoji raidÄ— c su taÅ¡ku virÅ¡uje","Latin capital letter c with caron":"Lotynų didžioji raidÄ— c su paukÅ¡Äiuku","Latin small letter c with caron":"Lotynų mažoji raidÄ— c su paukÅ¡Äiuku","Latin capital letter d with caron":"Lotynų didžioji raidÄ— d su paukÅ¡Äiuku","Latin small letter d with caron":"Lotynų mažoji raidÄ— d su paukÅ¡Äiuku","Latin capital letter d with stroke":"Lotynų didžioji raidÄ— d su pasviruoju brÅ«kÅ¡neliu","Latin small letter d with stroke":"Lotynų mažoji raidÄ— d su pasviruoju brÅ«kÅ¡neliu","Latin capital letter e with macron":"Lotynų didžioji raidÄ— e su makronu","Latin small letter e with macron":"Lotynų mažoji raidÄ— e su makronu","Latin capital letter e with breve":"Lotynų didžioji raidÄ— e su lankeliu","Latin small letter e with breve":"Lotynų mažoji raidÄ— e su lankeliu","Latin capital letter e with dot above":"Lotynų didžioji raidÄ— e su taÅ¡ku virÅ¡uje","Latin small letter e with dot above":"Lotynų mažoji raidÄ— e su taÅ¡ku virÅ¡uje","Latin capital letter e with ogonek":"Lotynų didžioji raidÄ— e su nosine","Latin small letter e with ogonek":"Lotynų mažoji raidÄ— e su nosine","Latin capital letter e with caron":"Lotynų didžioji raidÄ— e su paukÅ¡Äiuku","Latin small letter e with caron":"Lotynų didžioji raidÄ— e su paukÅ¡Äiuku","Latin capital letter g with circumflex":"Lotynų didžioji raidÄ— g su cirkumfleksu","Latin small letter g with circumflex":"Lotynų mažoji raidÄ— g su cirkumfleksu","Latin capital letter g with breve":"Lotynų didžioji raidÄ— g su lankeliu","Latin small letter g with breve":"Lotynų mažoji raidÄ— g su lankeliu","Latin capital letter g with dot above":"Lotynų didžioji raidÄ— g su taÅ¡ku virÅ¡uje","Latin small letter g with dot above":"Lotynų mažoji raidÄ— g su taÅ¡ku virÅ¡uje","Latin capital letter g with cedilla":"Lotynų didžioji raidÄ— g su sedile","Latin small letter g with cedilla":"Lotynų mažoji raidÄ— g su sedile","Latin capital letter h with circumflex":"Lotynų didžioji raidÄ— h su cirkumfleksu","Latin small letter h with circumflex":"Lotynų mažoji raidÄ— h su cirkumfleksu","Latin capital letter h with stroke":"Lotynų didžioji raidÄ— h su pasviruoju brÅ«kÅ¡neliu","Latin small letter h with stroke":"Lotynų mažoji raidÄ— h su pasviruoju brÅ«kÅ¡neliu","Latin capital letter i with tilde":"Lotynų didžioji raidÄ— i su riestiniu kirÄiu","Latin small letter i with tilde":"Lotynų mažoji raidÄ— i su riestiniu kirÄiu","Latin capital letter i with macron":"Lotynų didžioji raidÄ— i su makronu","Latin small letter i with macron":"Lotynų mažoji raidÄ— i su makronu","Latin capital letter i with breve":"Lotynų didžioji raidÄ— i su lankeliu","Latin small letter i with breve":"Lotynų mažoji raidÄ— i su lankeliu","Latin capital letter i with ogonek":"Lotynų didžioji raidÄ— i su nosine","Latin small letter i with ogonek":"Lotynų mažoji raidÄ— i su nosine","Latin capital letter i with dot above":"Lotynų didžioji raidÄ— i su taÅ¡ku virÅ¡uje","Latin small letter dotless i":"Lotynų mažoji raidÄ— i be taÅ¡kų","Latin capital ligature ij":"Lotynų didžioji ligatÅ«ra ij","Latin small ligature ij":"Lotynų mažoji ligatÅ«ra ij","Latin capital letter j with circumflex":"Lotynų didžioji raidÄ— j su cirkumfleksu","Latin small letter j with circumflex":"Lotynų mažoji raidÄ— j su cirkumfleksu","Latin capital letter k with cedilla":"Lotynų didžioji raidÄ— k su sedile","Latin small letter k with cedilla":"Lotynų mažoji raidÄ— k su sedile","Latin small letter kra":"Lotynų mažoji raidÄ— kra","Latin capital letter l with acute":"Lotynų didžioji raidÄ— l su deÅ¡ininiu kirÄiu","Latin small letter l with acute":"Lotynų mažoji raidÄ— l su deÅ¡ininiu kirÄiu","Latin capital letter l with cedilla":"Lotynų didžioji raidÄ— l su sedile","Latin small letter l with cedilla":"Lotynų mažoji raidÄ— l su sedile","Latin capital letter l with caron":"Lotynų didžioji raidÄ— l su paukÅ¡Äiuku","Latin small letter l with caron":"Lotynų mažoji raidÄ— l su paukÅ¡Äiuku","Latin capital letter l with middle dot":"Lotynų didžioji raidÄ— l su taÅ¡ku viduryje","Latin small letter l with middle dot":"Lotynų mažoji raidÄ— l su taÅ¡ku viduryje","Latin capital letter l with stroke":"Lotynų didžioji raidÄ— l su pasviruoju brÅ«kÅ¡neliu","Latin small letter l with stroke":"Lotynų mažoji raidÄ— l su pasviruoju brÅ«kÅ¡neliu","Latin capital letter n with acute":"Lotynų didžioji raidÄ— n su deÅ¡ininiu kirÄiu","Latin small letter n with acute":"Lotynų mažoji raidÄ— n su deÅ¡ininiu kirÄiu","Latin capital letter n with cedilla":"Lotynų didžioji raidÄ— n su sedile","Latin small letter n with cedilla":"Lotynų mažoji raidÄ— n su sedile","Latin capital letter n with caron":"Lotynų didžioji raidÄ— n su paukÅ¡Äiuku","Latin small letter n with caron":"Lotynų mažoji raidÄ— n su paukÅ¡Äiuku","Latin small letter n preceded by apostrophe":"Lotynų mažoji raidÄ— n su apostrofu prieÅ¡ais","Latin capital letter eng":"Lotynų didžioji raidÄ— eng","Latin small letter eng":"Lotynų mažoji raidÄ— eng","Latin capital letter o with macron":"Lotynų didžioji raidÄ— o su makronu","Latin small letter o with macron":"Lotynų mažoji raidÄ— o su makronu","Latin capital letter o with breve":"Lotynų didžioji raidÄ— o su lankeliu","Latin small letter o with breve":"Lotynų mažoji raidÄ— o su lankeliu","Latin capital letter o with double acute":"Lotynų didžioji raidÄ— o su dvigubu deÅ¡ininiu kirÄiu","Latin small letter o with double acute":"Lotynų mažoji raidÄ— o su dvigubu deÅ¡ininiu kirÄiu","Latin capital ligature oe":"Lotynų didžioji ligatÅ«ra oe","Latin small ligature oe":"Lotynų mažoji ligatÅ«ra oe","Latin capital letter r with acute":"Lotynų didžioji raidÄ— r su deÅ¡ininiu kirÄiu","Latin small letter r with acute":"Lotynų mažoji raidÄ— r su deÅ¡ininiu kirÄiu","Latin capital letter r with cedilla":"Lotynų didžioji raidÄ— r su sedile","Latin small letter r with cedilla":"Lotynų mažoji raidÄ— r su sedile","Latin capital letter r with caron":"Lotynų didžioji raidÄ— r su paukÅ¡Äiuku","Latin small letter r with caron":"Lotynų mažoji raidÄ— r su paukÅ¡Äiuku","Latin capital letter s with acute":"Lotynų didžioji raidÄ— s su deÅ¡ininiu kirÄiu","Latin small letter s with acute":"Lotynų mažoji raidÄ— s su deÅ¡ininiu kirÄiu","Latin capital letter s with circumflex":"Lotynų didžioji raidÄ— s su cirkumfleksu","Latin small letter s with circumflex":"Lotynų mažoji raidÄ— s su cirkumfleksu","Latin capital letter s with cedilla":"Lotynų didžioji raidÄ— s su sedile","Latin small letter s with cedilla":"Lotynų mažoji raidÄ— s su sedile","Latin capital letter s with caron":"Lotynų didžioji raidÄ— s su paukÅ¡Äiuku","Latin small letter s with caron":"Lotynų mažoji raidÄ— s su paukÅ¡Äiuku","Latin capital letter t with cedilla":"Lotynų didžioji raidÄ— t su sedile","Latin small letter t with cedilla":"Lotynų mažoji raidÄ— t su sedile","Latin capital letter t with caron":"Lotynų didžioji raidÄ— t su paukÅ¡Äiuku","Latin small letter t with caron":"Lotynų mažoji raidÄ— t su paukÅ¡Äiuku","Latin capital letter t with stroke":"Lotynų didžioji raidÄ— t su pasviruoju brÅ«kÅ¡neliu","Latin small letter t with stroke":"Lotynų mažoji raidÄ— t su pasviruoju brÅ«kÅ¡neliu","Latin capital letter u with tilde":"Lotynų didžioji raidÄ— u su riestiniu kirÄiu","Latin small letter u with tilde":"Lotynų mažoji raidÄ— u su riestiniu kirÄiu","Latin capital letter u with macron":"Lotynų didžioji raidÄ— u su makronu","Latin small letter u with macron":"Lotynų mažoji raidÄ— u su makronu","Latin capital letter u with breve":"Lotynų didžioji raidÄ— u su lankeliu","Latin small letter u with breve":"Lotynų mažoji raidÄ— u su lankeliu","Latin capital letter u with ring above":"Lotynų didžioji raidÄ— u su žiedu virÅ¡uje","Latin small letter u with ring above":"Lotynų mažoji raidÄ— u su žiedu virÅ¡uje","Latin capital letter u with double acute":"Lotynų didžioji raidÄ— u su dvigubu deÅ¡ininiu kirÄiu","Latin small letter u with double acute":"Lotynų mažoji raidÄ— u su dvigubu deÅ¡ininiu kirÄiu","Latin capital letter u with ogonek":"Lotynų didžioji raidÄ— u su nosine","Latin small letter u with ogonek":"Lotynų mažoji raidÄ— u su nosine","Latin capital letter w with circumflex":"Lotynų didžioji raidÄ— w su cirkumfleksu","Latin small letter w with circumflex":"Lotynų mažoji raidÄ— w su cirkumfleksu","Latin capital letter y with circumflex":"Lotynų didžioji raidÄ— y su cirkumfleksu","Latin small letter y with circumflex":"Lotynų mažoji raidÄ— y su cirkumfleksu","Latin capital letter y with diaeresis":"Lotynų didžioji raidÄ— y su diaereze","Latin capital letter z with acute":"Lotynų didžioji raidÄ— z su deÅ¡ininiu kirÄiu","Latin small letter z with acute":"Lotynų mažoji raidÄ— z su deÅ¡ininiu kirÄiu","Latin capital letter z with dot above":"Lotynų didžioji raidÄ— z su taÅ¡ku virÅ¡uje","Latin small letter z with dot above":"Lotynų mažoji raidÄ— z su taÅ¡ku virÅ¡uje","Latin capital letter z with caron":"Lotynų didžioji raidÄ— z su paukÅ¡Äiuku","Latin small letter z with caron":"Lotynų mažoji raidÄ— z su paukÅ¡Äiuku","Latin small letter long s":"Lotynų mažoji ilga raidÄ— s","Less-than sign":"Mažiau nei ženklas","Greater-than sign":"Daugiau nei ženklas","Less-than or equal to":"Mažiau nei arba lygu ","Greater-than or equal to":"Daugiau nei arba lygu","En dash":"BrÅ«kÅ¡nelis","Em dash":"BrÅ«kÅ¡nys",Macron:"Makronas",Overline:"VirÅ¡utinÄ— juosta","Degree sign":"Laipsnio ženklas","Minus sign":"Minuso ženklas","Plus-minus sign":"Pliuso-minuso ženklas","Division sign":"Dalybos ženklas","Fraction slash":"Trupmeninis pasvirasis brÅ«kÅ¡nys","Multiplication sign":"Daugybos ženklas","Latin small letter f with hook":"Lotynų mažoji raidÄ— f su kabliuku",Integral:"Integralas","N-ary summation":"Sigma sumavimas",Infinity:"BegalybÄ—","Square root":"KvadratinÄ— Å¡aknis","Tilde operator":"Ekvivalentas","Approximately equal to":"Apytiksliai lygu","Almost equal to":"Beveik lygu","Not equal to":"Nelygu","Identical to":"IdentiÅ¡kas","Element of":"Narys","Not an element of":"Ne narys","Contains as member":"Skaitosi kaip narys","N-ary product":"Dekarto produktas","Logical and":"Konjunkcija","Logical or":"Disjunkcija","Not sign":"Neigimas",Intersection:"Sankirta",Union:"SÄ…junga","Partial differential":"DalinÄ— iÅ¡vestinÄ—","For all":"Bendrumo kvantorius","There exists":"Egzistavimo kvantorius","Empty set":"NulinÄ— reikÅ¡mÄ—",Nabla:"Nabla","Asterisk operator":"ŽvaigždutÄ—","Proportional to":"Proporcingas",Angle:"Kampas","Vulgar fraction one quarter":"Paprastoji trupmena one ketvirtadalis","Vulgar fraction one half":"Paprastoji trupmena one antroji","Vulgar fraction three quarters":"Paprastoji trupmena three ketvirtadaliai","Single left-pointing angle quotation mark":"Vienguba kairÄ—n nukreipto kampo kabutÄ—","Single right-pointing angle quotation mark":"Vienguba deÅ¡inÄ—n nukreipto kampo kabutÄ—","Left-pointing double angle quotation mark":"KairÄ—n nukreipto kampo dviguba kabutÄ—","Right-pointing double angle quotation mark":"DeÅ¡inÄ—n nukreipto kampo dviguba kabutÄ—","Left single quotation mark":"Vienguba kairÄ— kabutÄ—","Right single quotation mark":"Vienguba deÅ¡inÄ— kabutÄ—","Left double quotation mark":"KairÄ— dviguba kabutÄ—","Right double quotation mark":"DeÅ¡inÄ— dviguba kabutÄ—","Single low-9 quotation mark":"Vienguba žema „9“ kabutÄ—","Double low-9 quotation mark":"Dviguba žema „9“ kabutÄ—","Inverted exclamation mark":"Apverstas Å¡auktukas","Inverted question mark":"Apverstas klaustukas","Two dot leader":"Two taÅ¡kų linijos","Horizontal ellipsis":"Horizontali elipsÄ—","Double dagger":"Dvigubo kryžiaus ženklas","Per mille sign":"PromilÄ—s ženklas","Per ten thousand sign":"Ten tÅ«kstanÄių ženklas","Double exclamation mark":"Dvigubas Å¡auktukas","Question exclamation mark":"Klaustukas Å¡auktukas","Exclamation question mark":"Å auktukas klaustukas","Double question mark":"Dvigubas klaustukas","Copyright sign":"Autorinių teisių simbolis","Registered sign":"Registruoto prekÄ—s ženklo simbolis","Trade mark sign":"PrekÄ—s ženklo simbolis","Section sign":"Skirsnio ženklas","Paragraph sign":"Pastraipos ženklas","Reversed paragraph sign":"Apverstas pastraipos ženklas","Character categories":"Simbolių kategorijos",Styles:"Stiliai","Multiple styles":"Daug stilių","Block styles":"Blokuoti stilius","Text styles":"Teksto stiliai","Insert table":"Ä®terpti lentelÄ™","Header column":"AntraÅ¡tÄ—s stulpelis","Insert column left":"Ä®terpti stulpelį kairÄ—je","Insert column right":"Ä®terpti stulpelį deÅ¡inÄ—je","Delete column":"IÅ¡trinti stulpelį","Select column":"Pasirinkti stulpelį",Column:"Stulpelis","Header row":"AntraÅ¡tÄ—s eilutÄ—","Insert row below":"Ä®terpti eilutÄ™ žemiau","Insert row above":"Ä®terpti eilutÄ™ aukÅ¡Äiau","Delete row":"IÅ¡trinti eilutÄ™","Select row":"Pasirinkti eilutÄ™",Row:"EilutÄ—","Merge cell up":"Prijungti langelį virÅ¡uje","Merge cell right":"Prijungti langelį deÅ¡inÄ—je","Merge cell down":"Prijungti langelį apaÄioje","Merge cell left":"Prijungti langelį kairÄ—je","Split cell vertically":"Padalinti langelį vertikaliai","Split cell horizontally":"Padalinti langelį horizontaliai","Merge cells":"Sujungti langelius","Table toolbar":"LentelÄ—s įrankių juosta","Table properties":"LentelÄ—s savybÄ—s","Cell properties":"Langelio savybÄ—s",Border:"KraÅ¡tas",Style:"Stilius",Width:"Plotis",Height:"AukÅ¡tis",Color:"Spalva",Background:"Fonas",Padding:"Užpildymas",Dimensions:"Matmenys","Table cell text alignment":"LentelÄ—s langelio teksto lygiavimas",Alignment:"Lygiavimas","Horizontal text alignment toolbar":"Horizontalaus teksto lygiavimo įrankių juosta","Vertical text alignment toolbar":"Vertikalaus teksto lygiavimo įrankių juosta","Table alignment toolbar":"Teksto lygiavimo įrankių juosta",None:"Nieko",Solid:"Vientisas",Dotted:"TaÅ¡kuotas",Dashed:"BrÅ«kÅ¡neliais",Double:"Dvigubas",Groove:"Ilgas ir siauras",Ridge:"Briaunuotas",Inset:"Intarpas",Outset:"Pradžia","Align cell text to the left":"Lygiuoti langelio tekstÄ… kairÄ—je","Align cell text to the center":"Lygiuoti langelio tekstÄ… centre","Align cell text to the right":"Lygiuoti langelio tekstÄ… deÅ¡inÄ—je","Justify cell text":"Pabrėžti langelio tekstÄ…","Align cell text to the top":"Lygiuoti langelio tekstÄ… virÅ¡uje","Align cell text to the middle":"Lygiuoti langelio tekstÄ… viduryje","Align cell text to the bottom":"Lygiuoti langelio tekstÄ… apaÄioje","Align table to the left":"Lygiuoti lentelÄ™ kairÄ—je","Center table":"Centruoti lentelÄ™","Align table to the right":"Lygiuoti lentelÄ™ deÅ¡inÄ—je","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Spalva neteisinga. MÄ—ginkite \"#FF0000\" arba \"rgb(255,0,0)\" arba \"raudona\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ReikÅ¡mÄ— neteisinga. MÄ—ginkite \"10px\" arba \"2em\", ar paprasÄiausiai \"2\".","Color picker":"Spalvos ieÅ¡kiklis","Toggle caption off":"IÅ¡jungti antraÅ¡tÄ™","Toggle caption on":"Ä®jungti antraÅ¡tÄ™","Enter table caption":"Ä®vesti lentelÄ—s antraÅ¡tÄ™","Rich Text Editor":"RaiÅ¡kiojo teksto redaktorius","Editor editing area: %0":"Redaktoriaus redagavimo sritis: %0","Edit block":"Redaguoti blokÄ…","Click to edit block":"SpustelÄ—kite norÄ—dami redaguoti blokÄ…","Drag to move":"Vilkite, kad perkeltumÄ—te",Next:"Kitas",Previous:"BuvÄ™s","Editor toolbar":"Redaktoriaus įrankių juosta","Dropdown toolbar":"Ä®rankių juosta pasirenkamajame sÄ…raÅ¡e",Black:"Juoda","Dim grey":"PilkÅ¡va",Grey:"Pilka","Light grey":"Å viesiai pilka",White:"Balta",Red:"Raudona",Orange:"OranžinÄ—",Yellow:"Geltona","Light green":"Å viesiai žalia",Green:"Žalia",Aquamarine:"Aquamarine",Turquoise:"Turkio","Light blue":"Å viesiai mÄ—lyna",Blue:"MÄ—lyna",Purple:"VioletinÄ—","Editor block content toolbar":"Redaktoriaus bloko turinio įrankių juosta","Editor contextual toolbar":"Redaktoriaus kontekstinÄ— įrankių juosta",HEX:"Å eÅ¡ioliktainÄ— reikÅ¡mÄ— (angl. HEX)",Accept:"Priimti","No results found":"Nieko nerasta","No searchable items":"NÄ—ra paieÅ¡kos elementų","Editor dialog":"Redaktoriaus dialogo langas",Close:"Uždaryti",Undo:"Atgal",Redo:"Pirmyn","Upload in progress":"Ä®kelima","Widget toolbar":"Valdiklių įrankių juosta","Insert paragraph before block":"Ä®kelti pastraipÄ… prieÅ¡ blokÄ…","Insert paragraph after block":"Ä®kelti pastraipÄ… po bloko","Press Enter to type after or press Shift + Enter to type before the widget":"Paspauskite Enter, jei norite raÅ¡yti po valdiklio, arba paspauskite Shift + Enter, jei norite raÅ¡yti prieÅ¡ valdiklį.","Words: %0":"Žodžių: %0","Characters: %0":"Simbolių: %0"} );l.getPluralForm=function(n){return (n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lv.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lv.js index 6cc3f2a227de4347b8b2ae6bf2bfbb211aa37a5d..0d26ef831c800f8e152820ce7e3d0d421c19af31 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lv.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/lv.js @@ -1 +1 @@ -(function(d){ const l = d['lv'] = d['lv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Pa kreisi","Align right":"Pa labi","Align center":"CentrÄ“t",Justify:"IzlÄ«dzinÄt abas malas","Text alignment":"Teksta izlÄ«dzinÄÅ¡ana","Text alignment toolbar":"Teksta lÄ«dzinÄÅ¡anas rÄ«kjosla",Bold:"Trekns",Italic:"KursÄ«vs",Underline:"PasvÄ«trots",Code:"Kods",Strikethrough:"NosvÄ«trots",Subscript:"ApakÅ¡raksts",Superscript:"AugÅ¡raksts","Block quote":"CitÄts","Insert code block":"Ievietot koda bloku","Plain text":"VienkÄrÅ¡s teksts",Cancel:"Atcelt",Clear:"NotÄ«rÄ«t","Remove color":"Noņemt krÄsu","Restore default":"Atgriezt noklusÄ“jumu",Save:"SaglabÄt","Show more items":"ParÄdÄ«t vairÄk vienumus","%0 of %1":"%0 no %1","Cannot upload file:":"Nevar augÅ¡upielÄdÄ“t failu:","Rich Text Editor. Editing area: %0":"BagÄtÄ«ga Teksta Redaktors. Rediģēšanas zona: %0","Insert with file manager":"Ievietot, izmantojot failu pÄrvaldnieku","Replace with file manager":"AizstÄt, izmantojot failu pÄrvaldnieku","Insert image with file manager":"Ievietojiet attÄ“lu, izmantojot failu pÄrvaldnieku","Replace image with file manager":"AizstÄt attÄ“lu, izmantojot failu pÄrvaldnieku","Find and replace":"MeklÄ“t un aizstÄt","Find in text…":"MeklÄ“t tekstÄ...",Find:"MeklÄ“t","Previous result":"IepriekÅ¡Ä“jais rezultÄts","Next result":"NÄkamais rezultÄts",Replace:"AizstÄt","Replace all":"AizstÄt visu","Match case":"PrecÄ«za atbilstÄ«ba","Whole words only":"Tikai pilni vÄrdi","Replace with…":"AizstÄt ar...","Text to find must not be empty.":"MeklÄ“Å¡anas tekstam jÄbÅ«t aizpildÄ«tam.","Tip: Find some text first in order to replace it.":"Padoms: SÄkumÄ uzmeklÄ“jiet tekstu un tikai tad aizstÄjiet to.","Advanced options":"Uzlabotas iespÄ“jas",Paragraph:"ParagrÄfs",Heading:"Virsraksts","Choose heading":"IzvÄ“lÄ“ties virsrakstu","Heading 1":"Virsraksts 1","Heading 2":"Virsraksts 2","Heading 3":"Virsraksts 3","Heading 4":"Virsraksts 4","Heading 5":"Virsraksts 5","Heading 6":"Virsraksts 6","Type your title":"Ievadiet virsrakstu","Type or paste your content here.":"Rakstiet vai ielÄ«mÄ“jiet saturu Å¡eit.","Horizontal line":"HorizontÄli atdaloÅ¡Ä lÄ«nija","HTML object":"HTML objekts","Increase indent":"PalielinÄt atkÄpi","Decrease indent":"SamazinÄt atkÄpi",Unlink:"Noņemt Saiti",Link:"Saite","Link URL":"Saites URL","Link image":"Ievietot saiti uz attÄ“la","Edit link":"Labot Saiti","Open link in new tab":"AtvÄ“rt saiti jaunÄ cilnÄ“","This link has no URL":"Saitei nav norÄdÄ«ts URL","Open in a new tab":"AtvÄ“rt jaunÄ cilnÄ“",Downloadable:"LejupielÄdÄ“jams","Numbered List":"NumurÄ“ts Saraksts","Bulleted List":"NenumurÄ“ts Saraksts","To-do List":"To-do Saraksts","Bulleted list styles toolbar":"NenumurÄ“ta saraksta stili","Numbered list styles toolbar":"NumurÄ“ta saraksta stili","Toggle the disc list style":"PÄrslÄ“gt diskveida saraksta stilu","Toggle the circle list style":"PÄrslÄ“gt apļveida saraksta stilu","Toggle the square list style":"PÄrslÄ“gt kvadrÄtveida saraksta stilu","Toggle the decimal list style":"PÄrslÄ“gt decimÄlskaitļu saraksta stilu","Toggle the decimal with leading zero list style":"PÄrslÄ“gt decimÄlskaitļu sÄkot ar nulli saraksta stilu","Toggle the lower–roman list style":"PÄrslÄ“gt mazo romieÅ¡u burtu saraksta stilu","Toggle the upper–roman list style":"PÄrslÄ“gt lielo romieÅ¡u burtu saraksta stilu","Toggle the lower–latin list style":"PÄrslÄ“gt mazo latīņu burtu saraksta stilu","Toggle the upper–latin list style":"PÄrslÄ“gt lielo latīņu burtu saraksta stilu",Disc:"Disks",Circle:"Aplis",Square:"KvadrÄts",Decimal:"Cipari","Decimal with leading zero":"DecimÄlskaitļi sÄkot ar nulli","Lower–roman":"mazie romieÅ¡u burti","Upper-roman":"lielie romieÅ¡u burti","Lower-latin":"mazie latīņu burti","Upper-latin":"lielie latīņu burti","List properties":"saraksta detaļas","Start at":"SÄkt no","Start index must be greater than 0.":"Indeksam jÄbÅ«t lielÄkam par 0","Reversed order":"PretÄ“ja secÄ«ba","Remove Format":"Noņemt formatÄ“jumu","Select all":"IzvÄ“lÄ“ties visu","Show blocks":"RÄdÄ«t blokus",Source:"Pirmavots","Special characters":"SpeciÄlie simboli",All:"Visi",Arrows:"Bultas",Currency:"ValÅ«ta",Latin:"Latīņu",Mathematical:"MatemÄtisks",Text:"Teksts","leftwards simple arrow":"vienkÄrÅ¡Ä bulta pa kreisi","rightwards simple arrow":"vienkÄrÅ¡Ä bulta pa labi","upwards simple arrow":"vienkÄrÅ¡Ä bulta uz augÅ¡u","downwards simple arrow":"vienkÄrÅ¡Ä bulta lejup","leftwards double arrow":"pa kreisi vÄ“rstÄ dubultbultiņa","rightwards double arrow":"pa labi vÄ“rstÄ dubultbultiņa","upwards double arrow":"augÅ¡upvÄ“rsta dubultÄ bultiņa","downwards double arrow":"lejupvÄ“rsta dubultÄ bultiņa","leftwards dashed arrow":"pa kreisi vÄ“rstÄ partrauktÄ bultiņa","rightwards dashed arrow":"pa labi vÄ“rstÄ partrauktÄ bultiņa","upwards dashed arrow":"augÅ¡upvÄ“rsta pÄrtrauktÄ bultiņa","downwards dashed arrow":"lejupvÄ“rsta pÄrtrauktÄ bultiņa","leftwards arrow to bar":"pa kreisi vÄ“rstÄ bultiņa uz joslu","rightwards arrow to bar":"pa labi vÄ“rstÄ bultiņa uz joslu","upwards arrow to bar":"augÅ¡upvÄ“rsta bultiņa uz joslu","downwards arrow to bar":"lejupvÄ“rsta bultiņa uz joslu","up down arrow with base":"augÅ¡up-lejupvÄ“rsta bultiņa ar pamatni","back with leftwards arrow above":"atpakaļ ar kreisi vÄ“rstu bultiņu augÅ¡pusÄ“","end with leftwards arrow above":"beigt ar kreisi vÄ“rstu bultiņu augÅ¡pusÄ“","on with exclamation mark with left right arrow above":"ieslÄ“gts ar izsaukuma zÄ«mi ar kreiso-labo bultiņu augÅ¡pusÄ“","soon with rightwards arrow above":"drÄ«z ar uz labo pusi vÄ“rstu bultiņu augÅ¡pusÄ“","top with upwards arrow above":"augÅ¡pusÄ“ ar augÅ¡upvÄ“rstu bultiņu augÅ¡pusÄ“","Dollar sign":"DolÄrzÄ«me","Euro sign":"EirozÄ«me","Yen sign":"Jenas zÄ«me","Pound sign":"MÄrciņas zÄ«me","Cent sign":"Centa zÄ«me","Euro-currency sign":"Eiro valÅ«tas zÄ«me","Colon sign":"Kols","Cruzeiro sign":"Kruzeiro zÄ«me","French franc sign":"FranÄu franka zÄ«me","Lira sign":"Liras zÄ«me","Currency sign":"ValÅ«tas zÄ«me","Bitcoin sign":"Bitkoina zÄ«me","Mill sign":"Millas zÄ«mes","Naira sign":"Nairas zÄ«me","Peseta sign":"Pesetas zÄ«me","Rupee sign":"RÅ«pijas zÄ«me","Won sign":"Vonas zÄ«me","New sheqel sign":"Å ekeļa zÄ«me","Dong sign":"Donga zÄ«me","Kip sign":"Kipa zÄ«me","Tugrik sign":"Tugrika zÄ«me","Drachma sign":"Drahmas zÄ«me","German penny sign":"VÄcu santÄ«ma zÄ«me","Peso sign":"Peso zÄ«me","Guarani sign":"Guarani zÄ«me","Austral sign":"AustrÄla zÄ«me","Hryvnia sign":"Grivnas zÄ«me","Cedi sign":"Sedi zÄ«me","Livre tournois sign":"Tours mÄrciņu zÄ«me","Spesmilo sign":"Spesmilo zÄ«me","Tenge sign":"Tenges zÄ«me","Indian rupee sign":"Indijas rÅ«pijas zÄ«me","Turkish lira sign":"Turcijas liras zÄ«me","Nordic mark sign":"Ziemeļu markas zÄ«me","Manat sign":"Manata zÄ«me","Ruble sign":"Rubļa zÄ«me","Latin capital letter a with macron":"Latīņu lielais burts a ar garumzÄ«mi","Latin small letter a with macron":"Latīņu mazais burts a ar garumzÄ«mi","Latin capital letter a with breve":"Latīņu lielais burts a ar Ä«suma zÄ«mi","Latin small letter a with breve":"Latīņu mazais burts a ar Ä«suma zÄ«mi","Latin capital letter a with ogonek":"Latīņu lielais burts a ar ogoneku","Latin small letter a with ogonek":"Latīņu mazais burts a ar ogoneku","Latin capital letter c with acute":"Latīņu lielais burts c ar akÅ«tu","Latin small letter c with acute":"Latīņu mazais burts c ar akÅ«tu","Latin capital letter c with circumflex":"Latīņu lielais burts c ar cirkumfleksu","Latin small letter c with circumflex":"Latīņu mazais burts c ar cirkumfleksu","Latin capital letter c with dot above":"Latīņu lielais burts c ar punktu augÅ¡pusÄ“","Latin small letter c with dot above":"Latīņu mazais burts c ar punktu augÅ¡pusÄ“","Latin capital letter c with caron":"Latīņu lielais burts c ar karonu","Latin small letter c with caron":"Latīņu mazais burts c ar karonu","Latin capital letter d with caron":"Latīņu lielais burts d ar karonu","Latin small letter d with caron":"Latīņu mazais burts d ar karonu","Latin capital letter d with stroke":"Latīņu lielais burts d ar lÄ«niju","Latin small letter d with stroke":"Latīņu mazais burts d ar lÄ«niju","Latin capital letter e with macron":"Latīņu lielais burts e ar garumzÄ«mi","Latin small letter e with macron":"Latīņu mazais burts e ar garumzÄ«mi","Latin capital letter e with breve":"Latīņu lielais burts e ar Ä«suma zÄ«mi","Latin small letter e with breve":"Latīņu mazais burts e ar Ä«suma zÄ«mi","Latin capital letter e with dot above":"Latīņu lielais burts e ar punktu augÅ¡pusÄ“","Latin small letter e with dot above":"Latīņu mazais burts e ar punktu augÅ¡pusÄ“","Latin capital letter e with ogonek":"Latīņu lielais burts e ar ogoneku","Latin small letter e with ogonek":"Latīņu mazais burts e ar ogoneku","Latin capital letter e with caron":"Latīņu lielais burts e ar karonu","Latin small letter e with caron":"Latīņu mazais burts e ar karonu","Latin capital letter g with circumflex":"Latīņu lielais burts g ar cirkumfleksu","Latin small letter g with circumflex":"Latīņu mazais burts g ar cirkumfleksu","Latin capital letter g with breve":"Latīņu lielais burts g ar Ä«suma zÄ«mi","Latin small letter g with breve":"Latīņu mazais burts g ar Ä«suma zÄ«mi","Latin capital letter g with dot above":"Latīņu lielais burts g ar punktu augÅ¡pusÄ“","Latin small letter g with dot above":"Latīņu mazais burts e ar punktu augÅ¡pusÄ“","Latin capital letter g with cedilla":"Latīņu lielais burts g ar sediļu","Latin small letter g with cedilla":"Latīņu mazais burts g ar sediļu","Latin capital letter h with circumflex":"Latīņu lielais burts h ar cirkumfleksu","Latin small letter h with circumflex":"Latīņu mazais burts c ar cirkumfleksu","Latin capital letter h with stroke":"Latīņu lielais burts h ar lÄ«niju","Latin small letter h with stroke":"Latīņu mazais burts h ar lÄ«niju","Latin capital letter i with tilde":"Latīņu lielais burts i ar tildi","Latin small letter i with tilde":"Latīņu mazais burts i ar tildi","Latin capital letter i with macron":"Latīņu lielais burts i ar garumzÄ«mi","Latin small letter i with macron":"Latīņu mazais burts i ar garumzÄ«mi","Latin capital letter i with breve":"Latīņu lielais burts i ar Ä«suma zÄ«mi","Latin small letter i with breve":"Latīņu mazais burts i ar Ä«suma zÄ«mi","Latin capital letter i with ogonek":"Latīņu lielais burts i ar ogoneku","Latin small letter i with ogonek":"Latīņu mazais burts i ar ogoneku","Latin capital letter i with dot above":"Latīņu lielais burts i ar punktu augÅ¡pusÄ“","Latin small letter dotless i":"Latīņu mazais bezpunkta burts i","Latin capital ligature ij":"Latīņu lielÄ ligatÅ«ra ij","Latin small ligature ij":"Latīņu mazÄ ligatÅ«ra ij","Latin capital letter j with circumflex":"Latīņu lielais burts j ar cirkumfleksu","Latin small letter j with circumflex":"Latīņu mazais burts j ar cirkumfleksu","Latin capital letter k with cedilla":"Latīņu lielais burts k ar sediļu","Latin small letter k with cedilla":"Latīņu mazais burts k ar sediļu","Latin small letter kra":"Latīņu mazais burts kra","Latin capital letter l with acute":"Latīņu lielais burts l ar akÅ«tu","Latin small letter l with acute":"Latīņu mazais burts l ar akÅ«tu","Latin capital letter l with cedilla":"Latīņu lielais burts l ar sediļu","Latin small letter l with cedilla":"Latīņu mazais burts l ar sediļu","Latin capital letter l with caron":"Latīņu lielais burts l ar karonu","Latin small letter l with caron":"Latīņu mazais burts l ar karonu","Latin capital letter l with middle dot":"Latīņu lielais burts l ar vidÄ“jo punktu","Latin small letter l with middle dot":"Latīņu mazais burts l ar vidÄ“jo punktu","Latin capital letter l with stroke":"Latīņu lielais burts l ar lÄ«niju","Latin small letter l with stroke":"Latīņu mazais burts l ar lÄ«niju","Latin capital letter n with acute":"Latīņu lielais burts n ar akÅ«tu","Latin small letter n with acute":"Latīņu mazais burts n ar akÅ«tu","Latin capital letter n with cedilla":"Latīņu lielais burts n ar sediļu","Latin small letter n with cedilla":"Latīņu mazais burts n ar sediļu","Latin capital letter n with caron":"Latīņu lielais burts n ar karonu","Latin small letter n with caron":"Latīņu mazais burts n ar karonu","Latin small letter n preceded by apostrophe":"Latīņu mazais burts n, pirms kura ir apostrofs","Latin capital letter eng":"Latīņu lielais burts eng","Latin small letter eng":"Latīņu mazais burts eng","Latin capital letter o with macron":"Latīņu lielais burts o ar garumzÄ«mi","Latin small letter o with macron":"Latīņu mazais burts o ar garumzÄ«mi","Latin capital letter o with breve":"Latīņu lielais burts o ar Ä«suma zÄ«mi","Latin small letter o with breve":"Latīņu mazais burts o ar Ä«suma zÄ«mi","Latin capital letter o with double acute":"Latīņu lielais burts o ar dubultu akÅ«tu","Latin small letter o with double acute":"Latīņu mazais burts o ar dubultu akÅ«tu","Latin capital ligature oe":"Latīņu lielÄ ligatÅ«ra oe","Latin small ligature oe":"Latīņu mazÄ ligatÅ«ra oe","Latin capital letter r with acute":"Latīņu lielais burts r ar akÅ«tu","Latin small letter r with acute":"Latīņu mazais burts r ar akÅ«tu","Latin capital letter r with cedilla":"Latīņu lielais burts r ar sediļu","Latin small letter r with cedilla":"Latīņu mazais burts r ar sediļu","Latin capital letter r with caron":"Latīņu lielais burts r ar karonu","Latin small letter r with caron":"Latīņu mazais burts r ar karonu","Latin capital letter s with acute":"Latīņu lielais burts s ar akÅ«tu","Latin small letter s with acute":"Latīņu mazais burts s ar akÅ«tu","Latin capital letter s with circumflex":"Latīņu lielais burts s ar cirkumfleksu","Latin small letter s with circumflex":"Latīņu mazais burts s ar cirkumfleksu","Latin capital letter s with cedilla":"Latīņu lielais burts s ar sediļu","Latin small letter s with cedilla":"Latīņu mazais burts s ar sediļu","Latin capital letter s with caron":"Latīņu lielais burts s ar karonu","Latin small letter s with caron":"Latīņu mazais burts s ar karonu","Latin capital letter t with cedilla":"Latīņu lielais burts t ar sediļu","Latin small letter t with cedilla":"Latīņu mazais burts t ar sediļu","Latin capital letter t with caron":"Latīņu lielais burts t ar karonu","Latin small letter t with caron":"Latīņu mazais burts t ar karonu","Latin capital letter t with stroke":"Latīņu lielais burts t ar lÄ«niju","Latin small letter t with stroke":"Latīņu mazais burts t ar lÄ«niju","Latin capital letter u with tilde":"Latīņu lielais burts u ar tildi","Latin small letter u with tilde":"Latīņu mazais burts u ar tildi","Latin capital letter u with macron":"Latīņu lielais burts u ar garumzÄ«mi","Latin small letter u with macron":"Latīņu mazais burts u ar garumzÄ«mi","Latin capital letter u with breve":"Latīņu lielais burts u ar Ä«suma zÄ«mi","Latin small letter u with breve":"Latīņu mazais burts u ar Ä«suma zÄ«mi","Latin capital letter u with ring above":"Latīņu lielais burts u ar gredzenu augÅ¡pusÄ“","Latin small letter u with ring above":"Latīņu mazais burts u ar gredzenu augÅ¡pusÄ“","Latin capital letter u with double acute":"Latīņu lielais burts u ar dubultu akÅ«tu","Latin small letter u with double acute":"Latīņu mazais burts u ar dubultu akÅ«tu","Latin capital letter u with ogonek":"Latīņu lielais burts u ar ogoneku","Latin small letter u with ogonek":"Latīņu mazais burts u ar ogoneku","Latin capital letter w with circumflex":"Latīņu lielais burts w ar cirkumfleksu","Latin small letter w with circumflex":"Latīņu mazais burts w ar cirkumfleksu","Latin capital letter y with circumflex":"Latīņu lielais burts y ar cirkumfleksu","Latin small letter y with circumflex":"Latīņu mazais burts y ar cirkumfleksu","Latin capital letter y with diaeresis":"Latīņu lielais burts y ar diaerÄ“zi","Latin capital letter z with acute":"Latīņu lielais burts z ar akÅ«tu","Latin small letter z with acute":"Latīņu mazais burts z ar akÅ«tu","Latin capital letter z with dot above":"Latīņu lielais burts z ar punktu augÅ¡pusÄ“","Latin small letter z with dot above":"Latīņu mazais burts z ar punktu augÅ¡pusÄ“","Latin capital letter z with caron":"Latīņu lielais burts z ar karonu","Latin small letter z with caron":"Latīņu mazais burts z ar karonu","Latin small letter long s":"Latīņu mazais burts garais s","Less-than sign":"MazÄk nekÄ zÄ«me","Greater-than sign":"VairÄk nekÄ zÄ«me","Less-than or equal to":"MazÄks par vai vienÄds ar","Greater-than or equal to":"LielÄks par vai vienÄds ar","En dash":"Īsa domuzÄ«me","Em dash":"DomuzÄ«me",Macron:"GarumzÄ«me",Overline:"VirssvÄ«tra","Degree sign":"GrÄdu zÄ«me","Minus sign":"MÄ«nus zÄ«me","Plus-minus sign":"Plus-mÄ«nus zÄ«me","Division sign":"DalÄ«Å¡anas zÄ«me","Fraction slash":"DalÄ«Å¡anas slÄ«psvÄ«tra","Multiplication sign":"ReizinÄÅ¡anas zÄ«me","Latin small letter f with hook":"Latīņu mazais burts f ar ÄÄ·i",Integral:"IntegrÄlis","N-ary summation":"N-Ära summa",Infinity:"BezgalÄ«ba","Square root":"KvadrÄtsakne","Tilde operator":"Tildes operators","Approximately equal to":"Aptuveni vienÄds ar","Almost equal to":"GandrÄ«z vienÄds ar","Not equal to":"Nav vienÄds ar","Identical to":"VienÄds ar","Element of":"Elements no","Not an element of":"Nav elements","Contains as member":"Satur kÄ ","N-ary product":"N-Ärs produkts","Logical and":"LoÄ£isks un ","Logical or":"LoÄ£isks vai","Not sign":"Aizlieguma zÄ«me",Intersection:"Intersekcija",Union:"SavienÄ«ba","Partial differential":"Daļējs diferenciÄlis","For all":"Visiem","There exists":"EksistÄ“","Empty set":"TukÅ¡a kopa",Nabla:"Nabla","Asterisk operator":"Asterisks","Proportional to":"ProporcionÄls",Angle:"StÅ«ris","Vulgar fraction one quarter":"Viena ceturtdaļa","Vulgar fraction one half":"Viena puse","Vulgar fraction three quarters":"TrÄ«s ceturtdaļas","Single left-pointing angle quotation mark":"Pa kreisi vÄ“rsta stÅ«rainÄ pÄ“diņa","Single right-pointing angle quotation mark":"Pa labi vÄ“rsta stÅ«rainÄ pÄ“diņa","Left-pointing double angle quotation mark":"Pa kreisi vÄ“rstas dubultÄs stÅ«rainÄs pÄ“diņas","Right-pointing double angle quotation mark":"Pa labi vÄ“rstas dubultÄs stÅ«rainÄs pÄ“diņas","Left single quotation mark":"Viena kreisÄ pÄ“diņa","Right single quotation mark":"Viena labÄ pÄ“diņa","Left double quotation mark":"KreisÄs dubultÄs pÄ“diņas","Right double quotation mark":"LabÄs dubultÄs pÄ“diņas","Single low-9 quotation mark":"Viena zemÄ-9 pÄ“diņÄs","Double low-9 quotation mark":"DubultÄs zemÄs-9 pÄ“diņÄs","Inverted exclamation mark":"Apgriezta izsaukuma zÄ«me","Inverted question mark":"Apgriezta jautÄjuma zÄ«me","Two dot leader":"Divu punktu lÄ«deris","Horizontal ellipsis":"HorizontÄlÄ elipse","Double dagger":"Dubults duncis","Per mille sign":"Promiles zÄ«me","Per ten thousand sign":"Desmit tÅ«kstoÅ¡Äs daļas zÄ«me","Double exclamation mark":"Dubulta izsaukuma zÄ«me","Question exclamation mark":"JautÄjuma izsaukuma zÄ«me","Exclamation question mark":"Izsaukuma jautÄjuma zÄ«me","Double question mark":"Dubulta jautÄjumzÄ«me","Copyright sign":"AutortiesÄ«bu zÄ«me","Registered sign":"ReÄ£istrÄ“ta preÄuzÄ«mes zÄ«me","Trade mark sign":"PreÄuzÄ«mes zÄ«me","Section sign":"Sekcijas zÄ«me","Paragraph sign":"Rindkopas zÄ«me","Reversed paragraph sign":"ApgrieztÄ rindkopas zÄ«me","Character categories":"RakstzÄ«mju kategorijas",Styles:"Stili","Multiple styles":"VairÄki stili","Block styles":"Bloka stili","Text styles":"Teksta stili","Insert table":"Ievietot tabulu","Header column":"Å Ä« kolonna ir galvene","Insert column left":"Ievietot kolonnu pa kreisi","Insert column right":"Ievietot kolonnu pa labi","Delete column":"DzÄ“st kolonnu","Select column":"IzvÄ“lÄ“ties kolonnu",Column:"Kolonna","Header row":"Å Ä« rinda ir galvene","Insert row below":"Ievietot rindu zem","Insert row above":"Ievietot rindu virs","Delete row":"DzÄ“st rindu","Select row":"IzvÄ“lÄ“ties rindu",Row:"Rinda","Merge cell up":"Apvienot Å¡Å«nas uz augÅ¡u","Merge cell right":"Apvienot Å¡Å«nas pa labi","Merge cell down":"Apvienot Å¡Å«nas uz leju","Merge cell left":"Apvienot Å¡Å«nas pa kreisi","Split cell vertically":"AtdalÄ«t Å¡Å«nu vertikÄli","Split cell horizontally":"AtdalÄ«t Å¡Å«nu horizontÄli","Merge cells":"Apvienot Å¡Å«nas","Table toolbar":"Tabulas rÄ«kjosla","Table properties":"Tabulas Ä«paÅ¡Ä«bas","Cell properties":"Å Å«nas Ä«paÅ¡Ä«bas",Border:"Apmale",Style:"Stils",Width:"Platums",Height:"Augstums",Color:"Teksta krÄsa",Background:"Fona krÄsa",Padding:"Atstatums",Dimensions:"IzmÄ“ri","Table cell text alignment":"Teksta novietojums Å¡Å«nÄ",Alignment:"Novietojums","Horizontal text alignment toolbar":"HorizontÄla teksta lÄ«dzinÄÅ¡ana","Vertical text alignment toolbar":"VertikÄla teksta lÄ«dzinÄÅ¡ana","Table alignment toolbar":"Tabulas lÄ«dzinÄÅ¡ana",None:"Bez apmales",Solid:"NepÄrtraukta lÄ«nija",Dotted:"PunktÄ“ta lÄ«nija",Dashed:"PÄrtraukta lÄ«nija",Double:"Dubulta lÄ«nija",Groove:"Iespiesta lÄ«nija",Ridge:"Izcelta lÄ«nija",Inset:"Ievietot / ieliktnis",Outset:"sÄkums","Align cell text to the left":"LÄ«dzinÄt Å¡Å«nas tekstu pa kreisi","Align cell text to the center":"LÄ«dzinÄt Å¡Å«nas tekstu centrÄ","Align cell text to the right":"LÄ«dzinÄt Å¡Å«nas tekstu pa labi","Justify cell text":"Taisnot Å¡Å«nas tekstu","Align cell text to the top":"LÄ«dzinÄt Å¡Å«nas tekstu pie augÅ¡as","Align cell text to the middle":"LÄ«dzinÄt Å¡Å«nas tekstu vidÅ«","Align cell text to the bottom":"LÄ«dzinÄt Å¡Å«nas tekstu pie apakÅ¡as","Align table to the left":"LÄ«dzinÄt tabulu pa kreisi","Center table":"CentrÄ“t tabulu","Align table to the right":"LÄ«dzinÄt tabulu pa labi","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"KrÄsa nav korekta. MÄ“Ä£iniet \"#FF0000\" vai \"rgb(255,0,0)\" vai \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"VÄ“rtÄ«ba nav korekta. MÄ“Ä£iniet \"10px\" vai \"2em\" vai vienkÄrÅ¡i \"2\"","Color picker":"KrÄsu palete","Toggle caption off":"IzslÄ“gt tabulas parakstu","Toggle caption on":"IeslÄ“gt tabulas parakstu","Enter table caption":"Ievadiet tabulas parakstu","Rich Text Editor":"BagÄtinÄtais Teksta Redaktors","Editor editing area: %0":"Redaktora rediģēšanas zona: %0","Edit block":"Labot bloku","Click to edit block":"NoklikÅ¡Ä·iniet, lai rediģētu sadaļu","Drag to move":"Velciet, lai pÄrvietotu",Next:"NÄkamÄ",Previous:"IepriekÅ¡Ä“jÄ","Editor toolbar":"Redaktora rÄ«kjosla","Dropdown toolbar":"Papildus izvÄ“lnes rÄ«kjosla",Black:"Melns","Dim grey":"BlÄvi pelÄ“ks",Grey:"PelÄ“ks","Light grey":"GaiÅ¡i pelÄ“ks",White:"Balts",Red:"Sarkans",Orange:"Oranžs",Yellow:"Dzeltens","Light green":"GaiÅ¡i zaļš",Green:"Zaļš",Aquamarine:"AkvamarÄ«ns",Turquoise:"TirkÄ«za","Light blue":"GaiÅ¡i zils",Blue:"Zils",Purple:"Violets","Editor block content toolbar":"Rediģēšanas bloka satura rÄ«kjosla","Editor contextual toolbar":"Redaktora konteksta rÄ«kjosla",HEX:"HEX KrÄsu kods",Accept:"ApstiprinÄt","No results found":"Nekas nav atrasts","No searchable items":"Nav meklÄ“jamu vienumu","Editor dialog":"Redaktora dialoglodziņš",Close:"AizvÄ“rt",Undo:"Atsaukt",Redo:"Uz priekÅ¡u","Upload in progress":"Notiek augÅ¡upielÄde","Widget toolbar":"SÄ«krÄ«ku rÄ«kjosla","Insert paragraph before block":"Ievietot paragrÄfu pirms bloka","Insert paragraph after block":"Ievietot paragrÄfu aiz bloka","Press Enter to type after or press Shift + Enter to type before the widget":"Nospiediet taustiņu Enter, lai rakstÄ«tu aiz logrÄ«ka, vai nospiediet taustiņu Shift + Enter, lai rakstÄ«tu pirms logrÄ«ka","Words: %0":"VÄrdi: %0","Characters: %0":"RakstzÄ«mes: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['lv'] = d['lv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Pa kreisi","Align right":"Pa labi","Align center":"CentrÄ“t",Justify:"IzlÄ«dzinÄt abas malas","Text alignment":"Teksta izlÄ«dzinÄÅ¡ana","Text alignment toolbar":"Teksta lÄ«dzinÄÅ¡anas rÄ«kjosla",Bold:"Trekns",Italic:"KursÄ«vs",Underline:"PasvÄ«trots",Code:"Kods",Strikethrough:"NosvÄ«trots",Subscript:"ApakÅ¡raksts",Superscript:"AugÅ¡raksts","Block quote":"CitÄts","Insert code block":"Ievietot koda bloku","Plain text":"VienkÄrÅ¡s teksts",Cancel:"Atcelt",Clear:"NotÄ«rÄ«t","Remove color":"Noņemt krÄsu","Restore default":"Atgriezt noklusÄ“jumu",Save:"SaglabÄt","Show more items":"ParÄdÄ«t vairÄk vienumus","%0 of %1":"%0 no %1","Cannot upload file:":"Nevar augÅ¡upielÄdÄ“t failu:","Rich Text Editor. Editing area: %0":"BagÄtÄ«ga Teksta Redaktors. Rediģēšanas zona: %0","Insert with file manager":"Ievietot, izmantojot failu pÄrvaldnieku","Replace with file manager":"AizstÄt, izmantojot failu pÄrvaldnieku","Insert image with file manager":"Ievietojiet attÄ“lu, izmantojot failu pÄrvaldnieku","Replace image with file manager":"AizstÄt attÄ“lu, izmantojot failu pÄrvaldnieku","Find and replace":"MeklÄ“t un aizstÄt","Find in text…":"MeklÄ“t tekstÄ...",Find:"MeklÄ“t","Previous result":"IepriekÅ¡Ä“jais rezultÄts","Next result":"NÄkamais rezultÄts",Replace:"AizstÄt","Replace all":"AizstÄt visu","Match case":"PrecÄ«za atbilstÄ«ba","Whole words only":"Tikai pilni vÄrdi","Replace with…":"AizstÄt ar...","Text to find must not be empty.":"MeklÄ“Å¡anas tekstam jÄbÅ«t aizpildÄ«tam.","Tip: Find some text first in order to replace it.":"Padoms: SÄkumÄ uzmeklÄ“jiet tekstu un tikai tad aizstÄjiet to.","Advanced options":"Uzlabotas iespÄ“jas","Font Size":"Fonta Lielums",Tiny:"Ä»oti mazs",Small:"Mazs",Big:"Liels",Huge:"MilzÄ«gs","Font Family":"Fonts",Default:"NoklusÄ“juma","Font Color":"Fonta krÄsa","Font Background Color":"Fonta fona krÄsa","Document colors":"KrÄsas dokumentÄ",Paragraph:"ParagrÄfs",Heading:"Virsraksts","Choose heading":"IzvÄ“lÄ“ties virsrakstu","Heading 1":"Virsraksts 1","Heading 2":"Virsraksts 2","Heading 3":"Virsraksts 3","Heading 4":"Virsraksts 4","Heading 5":"Virsraksts 5","Heading 6":"Virsraksts 6","Type your title":"Ievadiet virsrakstu","Type or paste your content here.":"Rakstiet vai ielÄ«mÄ“jiet saturu Å¡eit.","Horizontal line":"HorizontÄli atdaloÅ¡Ä lÄ«nija","HTML object":"HTML objekts","Increase indent":"PalielinÄt atkÄpi","Decrease indent":"SamazinÄt atkÄpi",Unlink:"Noņemt Saiti",Link:"Saite","Link URL":"Saites URL","Link image":"Ievietot saiti uz attÄ“la","Edit link":"Labot Saiti","Open link in new tab":"AtvÄ“rt saiti jaunÄ cilnÄ“","This link has no URL":"Saitei nav norÄdÄ«ts URL","Open in a new tab":"AtvÄ“rt jaunÄ cilnÄ“",Downloadable:"LejupielÄdÄ“jams","Numbered List":"NumurÄ“ts Saraksts","Bulleted List":"NenumurÄ“ts Saraksts","To-do List":"To-do Saraksts","Bulleted list styles toolbar":"NenumurÄ“ta saraksta stili","Numbered list styles toolbar":"NumurÄ“ta saraksta stili","Toggle the disc list style":"PÄrslÄ“gt diskveida saraksta stilu","Toggle the circle list style":"PÄrslÄ“gt apļveida saraksta stilu","Toggle the square list style":"PÄrslÄ“gt kvadrÄtveida saraksta stilu","Toggle the decimal list style":"PÄrslÄ“gt decimÄlskaitļu saraksta stilu","Toggle the decimal with leading zero list style":"PÄrslÄ“gt decimÄlskaitļu sÄkot ar nulli saraksta stilu","Toggle the lower–roman list style":"PÄrslÄ“gt mazo romieÅ¡u burtu saraksta stilu","Toggle the upper–roman list style":"PÄrslÄ“gt lielo romieÅ¡u burtu saraksta stilu","Toggle the lower–latin list style":"PÄrslÄ“gt mazo latīņu burtu saraksta stilu","Toggle the upper–latin list style":"PÄrslÄ“gt lielo latīņu burtu saraksta stilu",Disc:"Disks",Circle:"Aplis",Square:"KvadrÄts",Decimal:"Cipari","Decimal with leading zero":"DecimÄlskaitļi sÄkot ar nulli","Lower–roman":"mazie romieÅ¡u burti","Upper-roman":"lielie romieÅ¡u burti","Lower-latin":"mazie latīņu burti","Upper-latin":"lielie latīņu burti","List properties":"saraksta detaļas","Start at":"SÄkt no","Start index must be greater than 0.":"Indeksam jÄbÅ«t lielÄkam par 0","Reversed order":"PretÄ“ja secÄ«ba","Remove Format":"Noņemt formatÄ“jumu","Select all":"IzvÄ“lÄ“ties visu","Show blocks":"RÄdÄ«t blokus",Source:"Pirmavots","Special characters":"SpeciÄlie simboli",All:"Visi",Arrows:"Bultas",Currency:"ValÅ«ta",Latin:"Latīņu",Mathematical:"MatemÄtisks",Text:"Teksts","leftwards simple arrow":"vienkÄrÅ¡Ä bulta pa kreisi","rightwards simple arrow":"vienkÄrÅ¡Ä bulta pa labi","upwards simple arrow":"vienkÄrÅ¡Ä bulta uz augÅ¡u","downwards simple arrow":"vienkÄrÅ¡Ä bulta lejup","leftwards double arrow":"pa kreisi vÄ“rstÄ dubultbultiņa","rightwards double arrow":"pa labi vÄ“rstÄ dubultbultiņa","upwards double arrow":"augÅ¡upvÄ“rsta dubultÄ bultiņa","downwards double arrow":"lejupvÄ“rsta dubultÄ bultiņa","leftwards dashed arrow":"pa kreisi vÄ“rstÄ partrauktÄ bultiņa","rightwards dashed arrow":"pa labi vÄ“rstÄ partrauktÄ bultiņa","upwards dashed arrow":"augÅ¡upvÄ“rsta pÄrtrauktÄ bultiņa","downwards dashed arrow":"lejupvÄ“rsta pÄrtrauktÄ bultiņa","leftwards arrow to bar":"pa kreisi vÄ“rstÄ bultiņa uz joslu","rightwards arrow to bar":"pa labi vÄ“rstÄ bultiņa uz joslu","upwards arrow to bar":"augÅ¡upvÄ“rsta bultiņa uz joslu","downwards arrow to bar":"lejupvÄ“rsta bultiņa uz joslu","up down arrow with base":"augÅ¡up-lejupvÄ“rsta bultiņa ar pamatni","back with leftwards arrow above":"atpakaļ ar kreisi vÄ“rstu bultiņu augÅ¡pusÄ“","end with leftwards arrow above":"beigt ar kreisi vÄ“rstu bultiņu augÅ¡pusÄ“","on with exclamation mark with left right arrow above":"ieslÄ“gts ar izsaukuma zÄ«mi ar kreiso-labo bultiņu augÅ¡pusÄ“","soon with rightwards arrow above":"drÄ«z ar uz labo pusi vÄ“rstu bultiņu augÅ¡pusÄ“","top with upwards arrow above":"augÅ¡pusÄ“ ar augÅ¡upvÄ“rstu bultiņu augÅ¡pusÄ“","Dollar sign":"DolÄrzÄ«me","Euro sign":"EirozÄ«me","Yen sign":"Jenas zÄ«me","Pound sign":"MÄrciņas zÄ«me","Cent sign":"Centa zÄ«me","Euro-currency sign":"Eiro valÅ«tas zÄ«me","Colon sign":"Kols","Cruzeiro sign":"Kruzeiro zÄ«me","French franc sign":"FranÄu franka zÄ«me","Lira sign":"Liras zÄ«me","Currency sign":"ValÅ«tas zÄ«me","Bitcoin sign":"Bitkoina zÄ«me","Mill sign":"Millas zÄ«mes","Naira sign":"Nairas zÄ«me","Peseta sign":"Pesetas zÄ«me","Rupee sign":"RÅ«pijas zÄ«me","Won sign":"Vonas zÄ«me","New sheqel sign":"Å ekeļa zÄ«me","Dong sign":"Donga zÄ«me","Kip sign":"Kipa zÄ«me","Tugrik sign":"Tugrika zÄ«me","Drachma sign":"Drahmas zÄ«me","German penny sign":"VÄcu santÄ«ma zÄ«me","Peso sign":"Peso zÄ«me","Guarani sign":"Guarani zÄ«me","Austral sign":"AustrÄla zÄ«me","Hryvnia sign":"Grivnas zÄ«me","Cedi sign":"Sedi zÄ«me","Livre tournois sign":"Tours mÄrciņu zÄ«me","Spesmilo sign":"Spesmilo zÄ«me","Tenge sign":"Tenges zÄ«me","Indian rupee sign":"Indijas rÅ«pijas zÄ«me","Turkish lira sign":"Turcijas liras zÄ«me","Nordic mark sign":"Ziemeļu markas zÄ«me","Manat sign":"Manata zÄ«me","Ruble sign":"Rubļa zÄ«me","Latin capital letter a with macron":"Latīņu lielais burts a ar garumzÄ«mi","Latin small letter a with macron":"Latīņu mazais burts a ar garumzÄ«mi","Latin capital letter a with breve":"Latīņu lielais burts a ar Ä«suma zÄ«mi","Latin small letter a with breve":"Latīņu mazais burts a ar Ä«suma zÄ«mi","Latin capital letter a with ogonek":"Latīņu lielais burts a ar ogoneku","Latin small letter a with ogonek":"Latīņu mazais burts a ar ogoneku","Latin capital letter c with acute":"Latīņu lielais burts c ar akÅ«tu","Latin small letter c with acute":"Latīņu mazais burts c ar akÅ«tu","Latin capital letter c with circumflex":"Latīņu lielais burts c ar cirkumfleksu","Latin small letter c with circumflex":"Latīņu mazais burts c ar cirkumfleksu","Latin capital letter c with dot above":"Latīņu lielais burts c ar punktu augÅ¡pusÄ“","Latin small letter c with dot above":"Latīņu mazais burts c ar punktu augÅ¡pusÄ“","Latin capital letter c with caron":"Latīņu lielais burts c ar karonu","Latin small letter c with caron":"Latīņu mazais burts c ar karonu","Latin capital letter d with caron":"Latīņu lielais burts d ar karonu","Latin small letter d with caron":"Latīņu mazais burts d ar karonu","Latin capital letter d with stroke":"Latīņu lielais burts d ar lÄ«niju","Latin small letter d with stroke":"Latīņu mazais burts d ar lÄ«niju","Latin capital letter e with macron":"Latīņu lielais burts e ar garumzÄ«mi","Latin small letter e with macron":"Latīņu mazais burts e ar garumzÄ«mi","Latin capital letter e with breve":"Latīņu lielais burts e ar Ä«suma zÄ«mi","Latin small letter e with breve":"Latīņu mazais burts e ar Ä«suma zÄ«mi","Latin capital letter e with dot above":"Latīņu lielais burts e ar punktu augÅ¡pusÄ“","Latin small letter e with dot above":"Latīņu mazais burts e ar punktu augÅ¡pusÄ“","Latin capital letter e with ogonek":"Latīņu lielais burts e ar ogoneku","Latin small letter e with ogonek":"Latīņu mazais burts e ar ogoneku","Latin capital letter e with caron":"Latīņu lielais burts e ar karonu","Latin small letter e with caron":"Latīņu mazais burts e ar karonu","Latin capital letter g with circumflex":"Latīņu lielais burts g ar cirkumfleksu","Latin small letter g with circumflex":"Latīņu mazais burts g ar cirkumfleksu","Latin capital letter g with breve":"Latīņu lielais burts g ar Ä«suma zÄ«mi","Latin small letter g with breve":"Latīņu mazais burts g ar Ä«suma zÄ«mi","Latin capital letter g with dot above":"Latīņu lielais burts g ar punktu augÅ¡pusÄ“","Latin small letter g with dot above":"Latīņu mazais burts e ar punktu augÅ¡pusÄ“","Latin capital letter g with cedilla":"Latīņu lielais burts g ar sediļu","Latin small letter g with cedilla":"Latīņu mazais burts g ar sediļu","Latin capital letter h with circumflex":"Latīņu lielais burts h ar cirkumfleksu","Latin small letter h with circumflex":"Latīņu mazais burts c ar cirkumfleksu","Latin capital letter h with stroke":"Latīņu lielais burts h ar lÄ«niju","Latin small letter h with stroke":"Latīņu mazais burts h ar lÄ«niju","Latin capital letter i with tilde":"Latīņu lielais burts i ar tildi","Latin small letter i with tilde":"Latīņu mazais burts i ar tildi","Latin capital letter i with macron":"Latīņu lielais burts i ar garumzÄ«mi","Latin small letter i with macron":"Latīņu mazais burts i ar garumzÄ«mi","Latin capital letter i with breve":"Latīņu lielais burts i ar Ä«suma zÄ«mi","Latin small letter i with breve":"Latīņu mazais burts i ar Ä«suma zÄ«mi","Latin capital letter i with ogonek":"Latīņu lielais burts i ar ogoneku","Latin small letter i with ogonek":"Latīņu mazais burts i ar ogoneku","Latin capital letter i with dot above":"Latīņu lielais burts i ar punktu augÅ¡pusÄ“","Latin small letter dotless i":"Latīņu mazais bezpunkta burts i","Latin capital ligature ij":"Latīņu lielÄ ligatÅ«ra ij","Latin small ligature ij":"Latīņu mazÄ ligatÅ«ra ij","Latin capital letter j with circumflex":"Latīņu lielais burts j ar cirkumfleksu","Latin small letter j with circumflex":"Latīņu mazais burts j ar cirkumfleksu","Latin capital letter k with cedilla":"Latīņu lielais burts k ar sediļu","Latin small letter k with cedilla":"Latīņu mazais burts k ar sediļu","Latin small letter kra":"Latīņu mazais burts kra","Latin capital letter l with acute":"Latīņu lielais burts l ar akÅ«tu","Latin small letter l with acute":"Latīņu mazais burts l ar akÅ«tu","Latin capital letter l with cedilla":"Latīņu lielais burts l ar sediļu","Latin small letter l with cedilla":"Latīņu mazais burts l ar sediļu","Latin capital letter l with caron":"Latīņu lielais burts l ar karonu","Latin small letter l with caron":"Latīņu mazais burts l ar karonu","Latin capital letter l with middle dot":"Latīņu lielais burts l ar vidÄ“jo punktu","Latin small letter l with middle dot":"Latīņu mazais burts l ar vidÄ“jo punktu","Latin capital letter l with stroke":"Latīņu lielais burts l ar lÄ«niju","Latin small letter l with stroke":"Latīņu mazais burts l ar lÄ«niju","Latin capital letter n with acute":"Latīņu lielais burts n ar akÅ«tu","Latin small letter n with acute":"Latīņu mazais burts n ar akÅ«tu","Latin capital letter n with cedilla":"Latīņu lielais burts n ar sediļu","Latin small letter n with cedilla":"Latīņu mazais burts n ar sediļu","Latin capital letter n with caron":"Latīņu lielais burts n ar karonu","Latin small letter n with caron":"Latīņu mazais burts n ar karonu","Latin small letter n preceded by apostrophe":"Latīņu mazais burts n, pirms kura ir apostrofs","Latin capital letter eng":"Latīņu lielais burts eng","Latin small letter eng":"Latīņu mazais burts eng","Latin capital letter o with macron":"Latīņu lielais burts o ar garumzÄ«mi","Latin small letter o with macron":"Latīņu mazais burts o ar garumzÄ«mi","Latin capital letter o with breve":"Latīņu lielais burts o ar Ä«suma zÄ«mi","Latin small letter o with breve":"Latīņu mazais burts o ar Ä«suma zÄ«mi","Latin capital letter o with double acute":"Latīņu lielais burts o ar dubultu akÅ«tu","Latin small letter o with double acute":"Latīņu mazais burts o ar dubultu akÅ«tu","Latin capital ligature oe":"Latīņu lielÄ ligatÅ«ra oe","Latin small ligature oe":"Latīņu mazÄ ligatÅ«ra oe","Latin capital letter r with acute":"Latīņu lielais burts r ar akÅ«tu","Latin small letter r with acute":"Latīņu mazais burts r ar akÅ«tu","Latin capital letter r with cedilla":"Latīņu lielais burts r ar sediļu","Latin small letter r with cedilla":"Latīņu mazais burts r ar sediļu","Latin capital letter r with caron":"Latīņu lielais burts r ar karonu","Latin small letter r with caron":"Latīņu mazais burts r ar karonu","Latin capital letter s with acute":"Latīņu lielais burts s ar akÅ«tu","Latin small letter s with acute":"Latīņu mazais burts s ar akÅ«tu","Latin capital letter s with circumflex":"Latīņu lielais burts s ar cirkumfleksu","Latin small letter s with circumflex":"Latīņu mazais burts s ar cirkumfleksu","Latin capital letter s with cedilla":"Latīņu lielais burts s ar sediļu","Latin small letter s with cedilla":"Latīņu mazais burts s ar sediļu","Latin capital letter s with caron":"Latīņu lielais burts s ar karonu","Latin small letter s with caron":"Latīņu mazais burts s ar karonu","Latin capital letter t with cedilla":"Latīņu lielais burts t ar sediļu","Latin small letter t with cedilla":"Latīņu mazais burts t ar sediļu","Latin capital letter t with caron":"Latīņu lielais burts t ar karonu","Latin small letter t with caron":"Latīņu mazais burts t ar karonu","Latin capital letter t with stroke":"Latīņu lielais burts t ar lÄ«niju","Latin small letter t with stroke":"Latīņu mazais burts t ar lÄ«niju","Latin capital letter u with tilde":"Latīņu lielais burts u ar tildi","Latin small letter u with tilde":"Latīņu mazais burts u ar tildi","Latin capital letter u with macron":"Latīņu lielais burts u ar garumzÄ«mi","Latin small letter u with macron":"Latīņu mazais burts u ar garumzÄ«mi","Latin capital letter u with breve":"Latīņu lielais burts u ar Ä«suma zÄ«mi","Latin small letter u with breve":"Latīņu mazais burts u ar Ä«suma zÄ«mi","Latin capital letter u with ring above":"Latīņu lielais burts u ar gredzenu augÅ¡pusÄ“","Latin small letter u with ring above":"Latīņu mazais burts u ar gredzenu augÅ¡pusÄ“","Latin capital letter u with double acute":"Latīņu lielais burts u ar dubultu akÅ«tu","Latin small letter u with double acute":"Latīņu mazais burts u ar dubultu akÅ«tu","Latin capital letter u with ogonek":"Latīņu lielais burts u ar ogoneku","Latin small letter u with ogonek":"Latīņu mazais burts u ar ogoneku","Latin capital letter w with circumflex":"Latīņu lielais burts w ar cirkumfleksu","Latin small letter w with circumflex":"Latīņu mazais burts w ar cirkumfleksu","Latin capital letter y with circumflex":"Latīņu lielais burts y ar cirkumfleksu","Latin small letter y with circumflex":"Latīņu mazais burts y ar cirkumfleksu","Latin capital letter y with diaeresis":"Latīņu lielais burts y ar diaerÄ“zi","Latin capital letter z with acute":"Latīņu lielais burts z ar akÅ«tu","Latin small letter z with acute":"Latīņu mazais burts z ar akÅ«tu","Latin capital letter z with dot above":"Latīņu lielais burts z ar punktu augÅ¡pusÄ“","Latin small letter z with dot above":"Latīņu mazais burts z ar punktu augÅ¡pusÄ“","Latin capital letter z with caron":"Latīņu lielais burts z ar karonu","Latin small letter z with caron":"Latīņu mazais burts z ar karonu","Latin small letter long s":"Latīņu mazais burts garais s","Less-than sign":"MazÄk nekÄ zÄ«me","Greater-than sign":"VairÄk nekÄ zÄ«me","Less-than or equal to":"MazÄks par vai vienÄds ar","Greater-than or equal to":"LielÄks par vai vienÄds ar","En dash":"Īsa domuzÄ«me","Em dash":"DomuzÄ«me",Macron:"GarumzÄ«me",Overline:"VirssvÄ«tra","Degree sign":"GrÄdu zÄ«me","Minus sign":"MÄ«nus zÄ«me","Plus-minus sign":"Plus-mÄ«nus zÄ«me","Division sign":"DalÄ«Å¡anas zÄ«me","Fraction slash":"DalÄ«Å¡anas slÄ«psvÄ«tra","Multiplication sign":"ReizinÄÅ¡anas zÄ«me","Latin small letter f with hook":"Latīņu mazais burts f ar ÄÄ·i",Integral:"IntegrÄlis","N-ary summation":"N-Ära summa",Infinity:"BezgalÄ«ba","Square root":"KvadrÄtsakne","Tilde operator":"Tildes operators","Approximately equal to":"Aptuveni vienÄds ar","Almost equal to":"GandrÄ«z vienÄds ar","Not equal to":"Nav vienÄds ar","Identical to":"VienÄds ar","Element of":"Elements no","Not an element of":"Nav elements","Contains as member":"Satur kÄ ","N-ary product":"N-Ärs produkts","Logical and":"LoÄ£isks un ","Logical or":"LoÄ£isks vai","Not sign":"Aizlieguma zÄ«me",Intersection:"Intersekcija",Union:"SavienÄ«ba","Partial differential":"Daļējs diferenciÄlis","For all":"Visiem","There exists":"EksistÄ“","Empty set":"TukÅ¡a kopa",Nabla:"Nabla","Asterisk operator":"Asterisks","Proportional to":"ProporcionÄls",Angle:"StÅ«ris","Vulgar fraction one quarter":"Viena ceturtdaļa","Vulgar fraction one half":"Viena puse","Vulgar fraction three quarters":"TrÄ«s ceturtdaļas","Single left-pointing angle quotation mark":"Pa kreisi vÄ“rsta stÅ«rainÄ pÄ“diņa","Single right-pointing angle quotation mark":"Pa labi vÄ“rsta stÅ«rainÄ pÄ“diņa","Left-pointing double angle quotation mark":"Pa kreisi vÄ“rstas dubultÄs stÅ«rainÄs pÄ“diņas","Right-pointing double angle quotation mark":"Pa labi vÄ“rstas dubultÄs stÅ«rainÄs pÄ“diņas","Left single quotation mark":"Viena kreisÄ pÄ“diņa","Right single quotation mark":"Viena labÄ pÄ“diņa","Left double quotation mark":"KreisÄs dubultÄs pÄ“diņas","Right double quotation mark":"LabÄs dubultÄs pÄ“diņas","Single low-9 quotation mark":"Viena zemÄ-9 pÄ“diņÄs","Double low-9 quotation mark":"DubultÄs zemÄs-9 pÄ“diņÄs","Inverted exclamation mark":"Apgriezta izsaukuma zÄ«me","Inverted question mark":"Apgriezta jautÄjuma zÄ«me","Two dot leader":"Divu punktu lÄ«deris","Horizontal ellipsis":"HorizontÄlÄ elipse","Double dagger":"Dubults duncis","Per mille sign":"Promiles zÄ«me","Per ten thousand sign":"Desmit tÅ«kstoÅ¡Äs daļas zÄ«me","Double exclamation mark":"Dubulta izsaukuma zÄ«me","Question exclamation mark":"JautÄjuma izsaukuma zÄ«me","Exclamation question mark":"Izsaukuma jautÄjuma zÄ«me","Double question mark":"Dubulta jautÄjumzÄ«me","Copyright sign":"AutortiesÄ«bu zÄ«me","Registered sign":"ReÄ£istrÄ“ta preÄuzÄ«mes zÄ«me","Trade mark sign":"PreÄuzÄ«mes zÄ«me","Section sign":"Sekcijas zÄ«me","Paragraph sign":"Rindkopas zÄ«me","Reversed paragraph sign":"ApgrieztÄ rindkopas zÄ«me","Character categories":"RakstzÄ«mju kategorijas",Styles:"Stili","Multiple styles":"VairÄki stili","Block styles":"Bloka stili","Text styles":"Teksta stili","Insert table":"Ievietot tabulu","Header column":"Å Ä« kolonna ir galvene","Insert column left":"Ievietot kolonnu pa kreisi","Insert column right":"Ievietot kolonnu pa labi","Delete column":"DzÄ“st kolonnu","Select column":"IzvÄ“lÄ“ties kolonnu",Column:"Kolonna","Header row":"Å Ä« rinda ir galvene","Insert row below":"Ievietot rindu zem","Insert row above":"Ievietot rindu virs","Delete row":"DzÄ“st rindu","Select row":"IzvÄ“lÄ“ties rindu",Row:"Rinda","Merge cell up":"Apvienot Å¡Å«nas uz augÅ¡u","Merge cell right":"Apvienot Å¡Å«nas pa labi","Merge cell down":"Apvienot Å¡Å«nas uz leju","Merge cell left":"Apvienot Å¡Å«nas pa kreisi","Split cell vertically":"AtdalÄ«t Å¡Å«nu vertikÄli","Split cell horizontally":"AtdalÄ«t Å¡Å«nu horizontÄli","Merge cells":"Apvienot Å¡Å«nas","Table toolbar":"Tabulas rÄ«kjosla","Table properties":"Tabulas Ä«paÅ¡Ä«bas","Cell properties":"Å Å«nas Ä«paÅ¡Ä«bas",Border:"Apmale",Style:"Stils",Width:"Platums",Height:"Augstums",Color:"Teksta krÄsa",Background:"Fona krÄsa",Padding:"Atstatums",Dimensions:"IzmÄ“ri","Table cell text alignment":"Teksta novietojums Å¡Å«nÄ",Alignment:"Novietojums","Horizontal text alignment toolbar":"HorizontÄla teksta lÄ«dzinÄÅ¡ana","Vertical text alignment toolbar":"VertikÄla teksta lÄ«dzinÄÅ¡ana","Table alignment toolbar":"Tabulas lÄ«dzinÄÅ¡ana",None:"Bez apmales",Solid:"NepÄrtraukta lÄ«nija",Dotted:"PunktÄ“ta lÄ«nija",Dashed:"PÄrtraukta lÄ«nija",Double:"Dubulta lÄ«nija",Groove:"Iespiesta lÄ«nija",Ridge:"Izcelta lÄ«nija",Inset:"Ievietot / ieliktnis",Outset:"sÄkums","Align cell text to the left":"LÄ«dzinÄt Å¡Å«nas tekstu pa kreisi","Align cell text to the center":"LÄ«dzinÄt Å¡Å«nas tekstu centrÄ","Align cell text to the right":"LÄ«dzinÄt Å¡Å«nas tekstu pa labi","Justify cell text":"Taisnot Å¡Å«nas tekstu","Align cell text to the top":"LÄ«dzinÄt Å¡Å«nas tekstu pie augÅ¡as","Align cell text to the middle":"LÄ«dzinÄt Å¡Å«nas tekstu vidÅ«","Align cell text to the bottom":"LÄ«dzinÄt Å¡Å«nas tekstu pie apakÅ¡as","Align table to the left":"LÄ«dzinÄt tabulu pa kreisi","Center table":"CentrÄ“t tabulu","Align table to the right":"LÄ«dzinÄt tabulu pa labi","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"KrÄsa nav korekta. MÄ“Ä£iniet \"#FF0000\" vai \"rgb(255,0,0)\" vai \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"VÄ“rtÄ«ba nav korekta. MÄ“Ä£iniet \"10px\" vai \"2em\" vai vienkÄrÅ¡i \"2\"","Color picker":"KrÄsu palete","Toggle caption off":"IzslÄ“gt tabulas parakstu","Toggle caption on":"IeslÄ“gt tabulas parakstu","Enter table caption":"Ievadiet tabulas parakstu","Rich Text Editor":"BagÄtinÄtais Teksta Redaktors","Editor editing area: %0":"Redaktora rediģēšanas zona: %0","Edit block":"Labot bloku","Click to edit block":"NoklikÅ¡Ä·iniet, lai rediģētu sadaļu","Drag to move":"Velciet, lai pÄrvietotu",Next:"NÄkamÄ",Previous:"IepriekÅ¡Ä“jÄ","Editor toolbar":"Redaktora rÄ«kjosla","Dropdown toolbar":"Papildus izvÄ“lnes rÄ«kjosla",Black:"Melns","Dim grey":"BlÄvi pelÄ“ks",Grey:"PelÄ“ks","Light grey":"GaiÅ¡i pelÄ“ks",White:"Balts",Red:"Sarkans",Orange:"Oranžs",Yellow:"Dzeltens","Light green":"GaiÅ¡i zaļš",Green:"Zaļš",Aquamarine:"AkvamarÄ«ns",Turquoise:"TirkÄ«za","Light blue":"GaiÅ¡i zils",Blue:"Zils",Purple:"Violets","Editor block content toolbar":"Rediģēšanas bloka satura rÄ«kjosla","Editor contextual toolbar":"Redaktora konteksta rÄ«kjosla",HEX:"HEX KrÄsu kods",Accept:"ApstiprinÄt","No results found":"Nekas nav atrasts","No searchable items":"Nav meklÄ“jamu vienumu","Editor dialog":"Redaktora dialoglodziņš",Close:"AizvÄ“rt",Undo:"Atsaukt",Redo:"Uz priekÅ¡u","Upload in progress":"Notiek augÅ¡upielÄde","Widget toolbar":"SÄ«krÄ«ku rÄ«kjosla","Insert paragraph before block":"Ievietot paragrÄfu pirms bloka","Insert paragraph after block":"Ievietot paragrÄfu aiz bloka","Press Enter to type after or press Shift + Enter to type before the widget":"Nospiediet taustiņu Enter, lai rakstÄ«tu aiz logrÄ«ka, vai nospiediet taustiņu Shift + Enter, lai rakstÄ«tu pirms logrÄ«ka","Words: %0":"VÄrdi: %0","Characters: %0":"RakstzÄ«mes: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ms.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ms.js index dffe3b52ac09f63cf1dcb7d057f6cf42abd526d7..50b2d25ef108631fab2f6d745ab1dd6c80fc649f 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ms.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ms.js @@ -1 +1 @@ -(function(d){ const l = d['ms'] = d['ms'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Jajarkan kiri","Align right":"Jajarkan kiri","Align center":"Jajarkan tengah",Justify:"Imbang","Text alignment":"Jajaran teks","Text alignment toolbar":"Bar alat capaian jajaran teks",Bold:"Tebal",Italic:"Italik",Underline:"Garis bawah",Code:"Kod",Strikethrough:"Garis lorek",Subscript:"Subskrip",Superscript:"Superskrip","Block quote":"Blok petikan","Insert code block":"Masukkan blok kod","Plain text":"Teks kosong",Cancel:"Batal",Clear:"Kosongkan","Remove color":"Buang warna","Restore default":"Pulihkan lalai",Save:"Simpan","Show more items":"Tunjukkan item lain","%0 of %1":"%0 daripada %1","Cannot upload file:":"Gagal memuat naik fail","Rich Text Editor. Editing area: %0":"Editor Teks Kaya. Ruang suntingan: %0","Insert with file manager":"Masukkan dengan pengurus fail","Replace with file manager":"Gantikan dengan pengurus fail","Insert image with file manager":"Masukkan imej dengan pengurus fail","Replace image with file manager":"Gantikan imej dengan pengurus fail","Find and replace":"Cari dan ganti","Find in text…":"Cari dalam teks...",Find:"Cari","Previous result":"Keputusan sebelumnya","Next result":"Keputusan seterusnya",Replace:"Ganti","Replace all":"Ganti semua","Match case":"Sesuaikan kes","Whole words only":"Perkataan penuh sahaja","Replace with…":"Gantikan dengan...","Text to find must not be empty.":"Teks yang hendak dicari tidak boleh ditinggalkan kosong.","Tip: Find some text first in order to replace it.":"Petua: Cari teks terlebih dahulu untuk menggantikannya.","Advanced options":"Pilihan lanjutan",Paragraph:"Perenggan",Heading:"Pengepala","Choose heading":"Pilih pengepala","Heading 1":"Pengepala 1","Heading 2":"Pengepala 2","Heading 3":"Pengepala 3","Heading 4":"Pengepala 4","Heading 5":"Pengepala 5","Heading 6":"Pengepala 6","Type your title":"Taip tajuk anda","Type or paste your content here.":"Taip atau tampal kandungan anda disini.","Horizontal line":"Baris melintang","HTML object":"Objek HTML","Increase indent":"Tambah inden","Decrease indent":"Kurangkan inden",Unlink:"Buang pautan",Link:"Pautkan","Link URL":"Pautkan URL","Link image":"Pautkan imej","Edit link":"Sunting pautan","Open link in new tab":"Buka pautan dalam tab baru","This link has no URL":"Pautan ini tidak mempunyai URL","Open in a new tab":"Buka dalam tab baru",Downloadable:"Boleh dimuat turun","Numbered List":"Senarai Bernombor","Bulleted List":"Senarai Berbulet","To-do List":"Senarai Untuk Dilakukan","Bulleted list styles toolbar":"Bar capaian gaya senarai berbulet","Numbered list styles toolbar":"Bar alat capaian gaya senarai bernombor","Toggle the disc list style":"Buka gaya senarai cakera","Toggle the circle list style":"Buka gaya senarai bulatan","Toggle the square list style":"Buka gaya senarai petak","Toggle the decimal list style":"Buka gaya senarai titik perpuluhan","Toggle the decimal with leading zero list style":"Buka titik perpuluhan dengan gaya senarai kosong pendahulu","Toggle the lower–roman list style":"Buka gaya senarai roman bawah","Toggle the upper–roman list style":"Buka gaya senarai roman atas","Toggle the lower–latin list style":"Buka gaya senarai latin bawah","Toggle the upper–latin list style":"Buka gaya senarai latin atas",Disc:"Cakera",Circle:"Bula",Square:"Petak",Decimal:"Perpuluhan","Decimal with leading zero":"Perpuluhan dengan kosong pendahulu","Lower–roman":"Roman bawah","Upper-roman":"Roman atas","Lower-latin":"Latin bawah","Upper-latin":"Latin atas","List properties":"Senarai sifat","Start at":"Mula pada","Start index must be greater than 0.":"Indeks mula hendaklah lebih besar daripada 0.","Reversed order":"Susunan terbalik","Remove Format":"Buang Format","Select all":"Pilih seterusnya","Show blocks":"Tunjukkan blok",Source:"Sumber","Special characters":"Aksara istimewa",All:"Semua",Arrows:"Anak Panah",Currency:"Mata Wang",Latin:"Bahasa Latin",Mathematical:"Matematik",Text:"Teks","leftwards simple arrow":"anak panah mudah ke kiri","rightwards simple arrow":"anak panah mudah ke kanan","upwards simple arrow":"anak panah mudah ke atas","downwards simple arrow":"anak panah mudah ke bawah","leftwards double arrow":"anak panah berkembar arah kiri","rightwards double arrow":"anak panah berkembar arah kanan","upwards double arrow":"anak panah berkembar arah atas","downwards double arrow":"anak panah berkembar arah bawah","leftwards dashed arrow":"anak panah bersengkang arah kiri","rightwards dashed arrow":"anak panah bersengkang arah kanan","upwards dashed arrow":"anak panah bersengkang arah atas","downwards dashed arrow":"anak panah bersengkang arah bawah","leftwards arrow to bar":"anak panah arah kiri ke bar","rightwards arrow to bar":"anak panah arah kanan ke bar","upwards arrow to bar":"anak panah arah atas ke bar","downwards arrow to bar":"anak panah arah bawah ke bar","up down arrow with base":"anak panah atas bawah dengan dasar","back with leftwards arrow above":"kembali dengan anak panah arah kiri di atas","end with leftwards arrow above":"tamatkan dengan anak panah arah kiri di atas","on with exclamation mark with left right arrow above":"pada dengan tanda seru dengan anak panah kiri kanan di atas","soon with rightwards arrow above":"tidak lama lagi dengan anak panah arah kanan di atas","top with upwards arrow above":"atas dengan anak panah arah atas di atas","Dollar sign":"Simbol Dolar","Euro sign":"Simbol Euro","Yen sign":"Simbol Yen","Pound sign":"Simbol Paun","Cent sign":"Simbol sen","Euro-currency sign":"Simbol mata wang Euro","Colon sign":"Tanda titik bertindih","Cruzeiro sign":"Simbol Cruzeiro","French franc sign":"Simbol Franc Perancis","Lira sign":"Simbol Lira","Currency sign":"Simbol mata wang","Bitcoin sign":"Simbol Bitcoin","Mill sign":"Simbol Mill","Naira sign":"Simbol Naira","Peseta sign":"Simbol Peseta","Rupee sign":"Simbol Rupee","Won sign":"Simbol Won","New sheqel sign":"Simbol Sheqel baru","Dong sign":"Simbol Dong","Kip sign":"Simbol Kip","Tugrik sign":"Simbol Tugrik","Drachma sign":"Simbol Drachma","German penny sign":"Simbol Peni Jerman","Peso sign":"Simbol Peso","Guarani sign":"Simbol Guarani","Austral sign":"Simbol Austral","Hryvnia sign":"Simbol Hryvnia","Cedi sign":"Simbol Cedi","Livre tournois sign":"Simbol Livre Tournois","Spesmilo sign":"Simbol Spesmilo","Tenge sign":"Simbol Tenge","Indian rupee sign":"Simbol Rupee India","Turkish lira sign":"Simbol Lira Turki","Nordic mark sign":"Simbol lambang Nordik","Manat sign":"Simbol Manat","Ruble sign":"Simbol Ruble","Latin capital letter a with macron":"Huruf Latin a besar dengan tanda makron","Latin small letter a with macron":"Huruf Latin a kecil dengan tanda makron","Latin capital letter a with breve":"Huruf Latin a besar dengan tanda singkat","Latin small letter a with breve":"Huruf Latin a kecil dengan tanda singkat","Latin capital letter a with ogonek":"Huruf Latin a besar dengan tanda ogonek","Latin small letter a with ogonek":"Huruf Latin a kecil dengan tanda ogonek","Latin capital letter c with acute":"Huruf Latin c besar dengan tanda tirus","Latin small letter c with acute":"Huruf Latin c kecil dengan tanda tirus","Latin capital letter c with circumflex":"Huruf Latin c besar dengan tanda sirkumfleks","Latin small letter c with circumflex":"Huruf Latin c kecil dengan tanda Sirkumfleks","Latin capital letter c with dot above":"Huruf Latin c besar dengan titik di atas","Latin small letter c with dot above":"Huruf Latin c kecil dengan titik di atas","Latin capital letter c with caron":"Huruf Latin c besar dengan tanda caron","Latin small letter c with caron":"Huruf Latin c kecil dengan tanda caron","Latin capital letter d with caron":"Huruf Latin d besar dengan tanda caron","Latin small letter d with caron":"Huruf Latin d kecil dengan tanda caron","Latin capital letter d with stroke":"Huruf Latin d besar dengan garis miring","Latin small letter d with stroke":"Huruf Latin d kecil dengan garis miring","Latin capital letter e with macron":"Huruf Latin e besar dengan tanda makron","Latin small letter e with macron":"Huruf Latin e kecil dengan tanda makron","Latin capital letter e with breve":"Huruf Latin e besar dengan tanda singkat","Latin small letter e with breve":"Huruf Latin e kecil dengan tanda singkat","Latin capital letter e with dot above":"Huruf Latin e besar dengan titik di atas","Latin small letter e with dot above":"Huruf Latin e kecil dengan titik di atas","Latin capital letter e with ogonek":"Huruf Latin e besar dengan tanda ogonek","Latin small letter e with ogonek":"Huruf Latin e kecil dengan tanda ogonek","Latin capital letter e with caron":"Huruf Latin e besar dengan tanda caron","Latin small letter e with caron":"Huruf Latin e kecil dengan tanda caron","Latin capital letter g with circumflex":"Huruf Latin g besar dengan tanda sirkumfleks","Latin small letter g with circumflex":"Huruf Latin g kecil dengan tanda sirkumfleks","Latin capital letter g with breve":"Huruf Latin g besar dengan tanda singkat","Latin small letter g with breve":"Huruf Latin g kecil dengan tanda singkat","Latin capital letter g with dot above":"Huruf Latin g besar dengan titik di atas","Latin small letter g with dot above":"Huruf Latin g kecil dengan titik di atas","Latin capital letter g with cedilla":"Huruf Latin g besar dengan tanda sedila","Latin small letter g with cedilla":"Huruf Latin g kecil dengan tanda sedila","Latin capital letter h with circumflex":"Huruf Latin h besar dengan tanda sirkumfleks","Latin small letter h with circumflex":"Huruf Latin h kecil dengan tanda sirkumfleks","Latin capital letter h with stroke":"Huruf Latin h besar dengan garis miring","Latin small letter h with stroke":"Huruf Latin h kecil dengan garis miring","Latin capital letter i with tilde":"Huruf Latin i besar dengan tanda tilde","Latin small letter i with tilde":"Huruf Latin i kecil dengan tanda tilde","Latin capital letter i with macron":"Huruf Latin i besar dengan tanda makron","Latin small letter i with macron":"Huruf Latin i kecil dengan tanda makron","Latin capital letter i with breve":"Huruf Latin i besar dengan tanda singkat","Latin small letter i with breve":"Huruf Latin i kecil dengan tanda singkat","Latin capital letter i with ogonek":"Huruf Latin i besar dengan tanda ogonek","Latin small letter i with ogonek":"Huruf Latin i kecil dengan tanda ogonek","Latin capital letter i with dot above":"Huruf Latin i besar dengan titik di atas","Latin small letter dotless i":"Huruf Latin i kecil tanpa titik","Latin capital ligature ij":"Huruf kembar Latin ij besar","Latin small ligature ij":"Huruf kembar Latin ij kecil","Latin capital letter j with circumflex":"Huruf Latin j besar dengan tanda sirkumfleks","Latin small letter j with circumflex":"Huruf Latin j kecil dengan tanda sirkumfleks","Latin capital letter k with cedilla":"Huruf Latin k besar dengan tanda sedila","Latin small letter k with cedilla":"Huruf Latin k kecil dengan tanda sedila","Latin small letter kra":"Huruf Latin kra kecil","Latin capital letter l with acute":"Huruf Latin l besar dengan tanda tirus","Latin small letter l with acute":"Huruf Latin l kecil dengan tanda tirus","Latin capital letter l with cedilla":"Huruf Latin l besar dengan tanda sedila","Latin small letter l with cedilla":"Huruf Latin l kecil dengan tanda sedila","Latin capital letter l with caron":"Huruf Latin l besar dengan tanda caron","Latin small letter l with caron":"Huruf Latin l kecil dengan tanda caron","Latin capital letter l with middle dot":"Huruf Latin l besar dengan titik tengah","Latin small letter l with middle dot":"Huruf Latin l kecil dengan titik tengah","Latin capital letter l with stroke":"Huruf Latin l besar dengan garis miring","Latin small letter l with stroke":"Huruf Latin l kecil dengan garis miring","Latin capital letter n with acute":"Huruf Latin n besar dengan tanda tirus","Latin small letter n with acute":"Huruf Latin n kecil dengan tanda tirus","Latin capital letter n with cedilla":"Huruf Latin n besar dengan tanda sedila","Latin small letter n with cedilla":"Huruf Latin n kecil dengan tanda sedila","Latin capital letter n with caron":"Huruf Latin n besar dengan tanda caron","Latin small letter n with caron":"Huruf Latin n kecil dengan tanda caron","Latin small letter n preceded by apostrophe":"Huruf Latin n kecil didahului dengan koma atas","Latin capital letter eng":"Huruf Latin eng besar","Latin small letter eng":"Huruf Latin eng kecil","Latin capital letter o with macron":"Huruf Latin o besar dengan tanda makron","Latin small letter o with macron":"Huruf Latin o kecil dengan tanda makron","Latin capital letter o with breve":"Huruf Latin o besar dengan tanda singkat","Latin small letter o with breve":"Huruf Latin o kecil dengan tanda singkat","Latin capital letter o with double acute":"Huruf Latin o besar dengan tanda tirus berkembar","Latin small letter o with double acute":"Huruf Latin o kecil dengan tanda tirus berkembar","Latin capital ligature oe":"Huruf kembar Latin oe besar","Latin small ligature oe":"Huruf kembar Latin oe kecil","Latin capital letter r with acute":"Huruf Latin r besar dengan tanda tirus","Latin small letter r with acute":"Huruf Latin r kecil dengan tanda tirus","Latin capital letter r with cedilla":"Huruf Latin r besar dengan tanda sedila","Latin small letter r with cedilla":"Huruf Latin r kecil dengan tanda sedila","Latin capital letter r with caron":"Huruf Latin r besar dengan tanda caron","Latin small letter r with caron":"Huruf Latin r kecil dengan tanda caron","Latin capital letter s with acute":"Huruf Latin s besar dengan tanda tirus","Latin small letter s with acute":"Huruf Latin s kecil dengan tanda tirus","Latin capital letter s with circumflex":"Huruf Latin s besar dengan tanda sirkumfleks","Latin small letter s with circumflex":"Huruf Latin s kecil dengan tanda sirkumfleks","Latin capital letter s with cedilla":"Huruf Latin s besar dengan tanda sedila","Latin small letter s with cedilla":"Huruf Latin s kecil dengan tanda sedila","Latin capital letter s with caron":"Huruf Latin s besar dengan tanda caron","Latin small letter s with caron":"Huruf Latin s kecil dengan tanda caron","Latin capital letter t with cedilla":"Huruf Latin t besar dengan tanda sedila","Latin small letter t with cedilla":"Huruf Latin t kecil dengan tanda sedila","Latin capital letter t with caron":"Huruf Latin t besar dengan tanda caron","Latin small letter t with caron":"Huruf Latin t kecil dengan tanda caron","Latin capital letter t with stroke":"Huruf Latin t besar dengan garis miring","Latin small letter t with stroke":"Huruf Latin t kecil dengan garis miring","Latin capital letter u with tilde":"Huruf Latin u besar dengan tanda tilde","Latin small letter u with tilde":"Huruf Latin u kecil dengan tanda tilde","Latin capital letter u with macron":"Huruf Latin u besar dengan tanda makron","Latin small letter u with macron":"Huruf Latin u kecil dengan tanda makron","Latin capital letter u with breve":"Huruf Latin u besar dengan tanda singkat","Latin small letter u with breve":"Huruf Latin u kecil dengan tanda singkat","Latin capital letter u with ring above":"Huruf Latin u besar dengan bulatan di atas","Latin small letter u with ring above":"Huruf Latin u kecil dengan bulatan di atas","Latin capital letter u with double acute":"Huruf Latin u besar dengan tanda tirus berkembar","Latin small letter u with double acute":"Huruf Latin u kecil dengan tanda tirus berkembar","Latin capital letter u with ogonek":"Huruf Latin u besar dengan tanda ogonek","Latin small letter u with ogonek":"Huruf Latin u kecil dengan tanda ogonek","Latin capital letter w with circumflex":"Huruf Latin w besar dengan tanda sirkumfleks","Latin small letter w with circumflex":"Huruf Latin w kecil dengan tanda sirkumfleks","Latin capital letter y with circumflex":"Huruf Latin y besar dengan tanda sirkumfleks","Latin small letter y with circumflex":"Huruf Latin y kecil dengan tanda sirkumfleks","Latin capital letter y with diaeresis":"Huruf Latin y besar dengan tanda diaresis","Latin capital letter z with acute":"Huruf Latin z besar dengan tanda tirus","Latin small letter z with acute":"Huruf Latin z kecil dengan tanda tirus","Latin capital letter z with dot above":"Huruf Latin z besar dengan titik di atas","Latin small letter z with dot above":"Huruf Latin z kecil dengan titik di atas","Latin capital letter z with caron":"Huruf Latin z besar dengan tanda caron","Latin small letter z with caron":"Huruf Latin z kecil dengan tanda caron","Latin small letter long s":"Huruf latin s panjang kecil","Less-than sign":"Simbol kurang daripada","Greater-than sign":"Simbol lebih besar daripada","Less-than or equal to":"Kurang daripada atau sama dengan","Greater-than or equal to":"Lebih besar daripada atau sama dengan","En dash":"Sengkang en","Em dash":"Sengkang em",Macron:"Tanda makron",Overline:"Garisan atas","Degree sign":"Simbol darjah","Minus sign":"Simbol tolak","Plus-minus sign":"Simbol tambah tolak","Division sign":"Simbol bahagi","Fraction slash":"Garis condong pecahan","Multiplication sign":"Simbol darab","Latin small letter f with hook":"Huruf Latin f kecil dengan cangkuk",Integral:"Integral","N-ary summation":"Penghasiltambahan per - n - an",Infinity:"Infiniti","Square root":"Punca kuasa","Tilde operator":"Pengoperasi tilde","Approximately equal to":"Kira-kira sama dengan","Almost equal to":"Hampir sama dengan","Not equal to":"Tidak sama dengan","Identical to":"Serupa dengan","Element of":"Unsur bagi","Not an element of":"Bukan unsur bagi","Contains as member":"Terkandung sebagai anggota","N-ary product":"Hasil per - n - an","Logical and":"Logik dan","Logical or":"Logik atau","Not sign":"Bukan simbol",Intersection:"Persilangan",Union:"Penyatuan","Partial differential":"Pembezaan separa","For all":"Untuk semua","There exists":"Wujud","Empty set":"Set kosong",Nabla:"Nabla","Asterisk operator":"Pengoperasi asterisk","Proportional to":"Berkadaran dengan",Angle:"Sudut","Vulgar fraction one quarter":"Pecahan kasar satu per empat","Vulgar fraction one half":"Pecahan kasar satu per dua","Vulgar fraction three quarters":"Pecahan kasar tiga per empat","Single left-pointing angle quotation mark":"Tanda petikan sudut ke kiri tunggal","Single right-pointing angle quotation mark":"Tanda petikan sudut ke kanan tunggal","Left-pointing double angle quotation mark":"Tanda petikan sudut ke kiri berkembar","Right-pointing double angle quotation mark":"Tanda petikan sudut ke kanan berkembar","Left single quotation mark":"Tanda petikan tunggal kiri","Right single quotation mark":"Tanda petikan tunggal kanan","Left double quotation mark":"Tanda petikan berkembar kiri","Right double quotation mark":"Tanda petikan berkembar kanan","Single low-9 quotation mark":"Tanda petikan rendah 9 tunggal","Double low-9 quotation mark":"Tanda petikan rendah 9 berkembar","Inverted exclamation mark":"Tanda seru terbalik","Inverted question mark":"Tanda soal terbalik","Two dot leader":"Pendahulu dua titik","Horizontal ellipsis":"Elipsis Mendatar","Double dagger":"Tanda rujuk kembar","Per mille sign":"Simbol per mille","Per ten thousand sign":"Simbol per sepuluh ribu","Double exclamation mark":"Tanda seru berkembar","Question exclamation mark":"Tanda seru soal","Exclamation question mark":"Tanda soal seru","Double question mark":"Tanda soal berkembar","Copyright sign":"Simbol hak cipta","Registered sign":"Simbol berdaftar","Trade mark sign":"Simbol tanda dagangan","Section sign":"Simbol seksyen","Paragraph sign":"Tanda perenggan","Reversed paragraph sign":"Tanda perenggan terbalik","Character categories":"Kategori aksara",Styles:"Gaya","Multiple styles":"Gaya berbilang","Block styles":"Gaya blok","Text styles":"Gaya teks","Insert table":"Masukkan jadual","Header column":"Kolum pengepala","Insert column left":"Masukkan kolum kiri","Insert column right":"Masukkan kolum kanan","Delete column":"Padam kolum","Select column":"Pilih kolum",Column:"Kolum","Header row":"Baris pengepala","Insert row below":"Masukkan baris dibawah","Insert row above":"Masukkan baris diatas","Delete row":"Padam baris","Select row":"Pilih baris",Row:"Baris","Merge cell up":"Cantumkan sel keatas","Merge cell right":"Cantumkan sel kekanan","Merge cell down":"Cantumkan sel kebawah","Merge cell left":"Cantumkan sel kekiri","Split cell vertically":"Leraikan sel menegak","Split cell horizontally":"Leraikan sel melintang","Merge cells":"Cantumkan sel ","Table toolbar":"Bar alat capaian jadual","Table properties":"Sifat jadual","Cell properties":"Sifat sel",Border:"Sempadan",Style:"Gaya",Width:"Lebar",Height:"Ketinggian",Color:"Warna",Background:"Latar belakang",Padding:"Ketebalan",Dimensions:"Dimensi","Table cell text alignment":"Jajaran teks sel jadual",Alignment:"Jajaran","Horizontal text alignment toolbar":"Bar alat capaian jajaran teks melintang","Vertical text alignment toolbar":"Bar alat capaian jajaran teks menegak","Table alignment toolbar":"Bar alat capaian jajaran jadual",None:"Tiada",Solid:"Pejal",Dotted:"Bertitik",Dashed:"Garis putus-putus",Double:"Dua baris",Groove:"Lurah",Ridge:"Batas",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Jajarkan teks sel kekiri","Align cell text to the center":"Jajarkan teks sel ketengah","Align cell text to the right":"Jajarkan teks sel kekanan","Justify cell text":"Imbang teks sel","Align cell text to the top":"Jajarkan teks sel keatas","Align cell text to the middle":"Jajarkan teks sel ketengah","Align cell text to the bottom":"Jajarkan teks sel kebawah","Align table to the left":"Jajarkan jadual sel kekiri","Center table":"Ketengahkan jadual","Align table to the right":"Jajarkan jadual sel kekanan","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Warna tidak sah. Cuba \"#FF0000\" atau \"rgb(255,0,0)\" atau \"merah\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Nilai tidak sah. Cuba \"10px\" atau \"2em\" atau \"2\" sahaja.","Color picker":"Pemilih warna","Toggle caption off":"Tutup kapsyen","Toggle caption on":"Buka kapsyen","Enter table caption":"Benarkan kapsyen jadual","Rich Text Editor":"Penyunting Teks Kaya","Editor editing area: %0":"Ruang suntingan editor: %0","Edit block":"Sunting blok","Click to edit block":"Klik untuk menyunting sekatan","Drag to move":"Seret untuk menggerakkan",Next:"Seterusnya",Previous:"Sebelumnya","Editor toolbar":"Bar alat capaian suntingan","Dropdown toolbar":"Bar alat capaian tetingkap",Black:"Hitam","Dim grey":"Kelabu malap",Grey:"Kelabu","Light grey":"Kelabu cerah",White:"Putih",Red:"Merah",Orange:"Oren",Yellow:"Kuning","Light green":"Hijau cerah",Green:"Hijau",Aquamarine:"Akuamarin",Turquoise:"Firus","Light blue":"Biru cerah",Blue:"Biru",Purple:"Ungu","Editor block content toolbar":"Bar alat sekat kandungan editor","Editor contextual toolbar":"Bar alat kontekstual editor",HEX:"HEX",Accept:"Terima","No results found":"Tiada keputusan ditemui","No searchable items":"Tiada item untuk dicari","Editor dialog":"Dialog editor",Close:"Tutup",Undo:"Buat asal",Redo:"Buat semula","Upload in progress":"Muat naik sedang berlangsung","Widget toolbar":"Bar alat capaian widget","Insert paragraph before block":"Masukkan perenggan sebelum blok","Insert paragraph after block":"Masukkan perenggan sebelum blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tekan Enter untuk menaip selepas atau tekan Shift + Enter untuk menaip sebelum widget","Words: %0":"Perkataan: %0","Characters: %0":"Aksara: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ms'] = d['ms'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Jajarkan kiri","Align right":"Jajarkan kiri","Align center":"Jajarkan tengah",Justify:"Imbang","Text alignment":"Jajaran teks","Text alignment toolbar":"Bar alat capaian jajaran teks",Bold:"Tebal",Italic:"Italik",Underline:"Garis bawah",Code:"Kod",Strikethrough:"Garis lorek",Subscript:"Subskrip",Superscript:"Superskrip","Block quote":"Blok petikan","Insert code block":"Masukkan blok kod","Plain text":"Teks kosong",Cancel:"Batal",Clear:"Kosongkan","Remove color":"Buang warna","Restore default":"Pulihkan lalai",Save:"Simpan","Show more items":"Tunjukkan item lain","%0 of %1":"%0 daripada %1","Cannot upload file:":"Gagal memuat naik fail","Rich Text Editor. Editing area: %0":"Editor Teks Kaya. Ruang suntingan: %0","Insert with file manager":"Masukkan dengan pengurus fail","Replace with file manager":"Gantikan dengan pengurus fail","Insert image with file manager":"Masukkan imej dengan pengurus fail","Replace image with file manager":"Gantikan imej dengan pengurus fail","Find and replace":"Cari dan ganti","Find in text…":"Cari dalam teks...",Find:"Cari","Previous result":"Keputusan sebelumnya","Next result":"Keputusan seterusnya",Replace:"Ganti","Replace all":"Ganti semua","Match case":"Sesuaikan kes","Whole words only":"Perkataan penuh sahaja","Replace with…":"Gantikan dengan...","Text to find must not be empty.":"Teks yang hendak dicari tidak boleh ditinggalkan kosong.","Tip: Find some text first in order to replace it.":"Petua: Cari teks terlebih dahulu untuk menggantikannya.","Advanced options":"Pilihan lanjutan","Font Size":"Saiz fon",Tiny:"Halus",Small:"Kecil",Big:"Besar",Huge:"Gergasi","Font Family":"Keluarga Fon",Default:"Lalai","Font Color":"Warna Fon","Font Background Color":"Warna Latar Belakang Fon","Document colors":"Warna dokumen",Paragraph:"Perenggan",Heading:"Pengepala","Choose heading":"Pilih pengepala","Heading 1":"Pengepala 1","Heading 2":"Pengepala 2","Heading 3":"Pengepala 3","Heading 4":"Pengepala 4","Heading 5":"Pengepala 5","Heading 6":"Pengepala 6","Type your title":"Taip tajuk anda","Type or paste your content here.":"Taip atau tampal kandungan anda disini.","Horizontal line":"Baris melintang","HTML object":"Objek HTML","Increase indent":"Tambah inden","Decrease indent":"Kurangkan inden",Unlink:"Buang pautan",Link:"Pautkan","Link URL":"Pautkan URL","Link image":"Pautkan imej","Edit link":"Sunting pautan","Open link in new tab":"Buka pautan dalam tab baru","This link has no URL":"Pautan ini tidak mempunyai URL","Open in a new tab":"Buka dalam tab baru",Downloadable:"Boleh dimuat turun","Numbered List":"Senarai Bernombor","Bulleted List":"Senarai Berbulet","To-do List":"Senarai Untuk Dilakukan","Bulleted list styles toolbar":"Bar capaian gaya senarai berbulet","Numbered list styles toolbar":"Bar alat capaian gaya senarai bernombor","Toggle the disc list style":"Buka gaya senarai cakera","Toggle the circle list style":"Buka gaya senarai bulatan","Toggle the square list style":"Buka gaya senarai petak","Toggle the decimal list style":"Buka gaya senarai titik perpuluhan","Toggle the decimal with leading zero list style":"Buka titik perpuluhan dengan gaya senarai kosong pendahulu","Toggle the lower–roman list style":"Buka gaya senarai roman bawah","Toggle the upper–roman list style":"Buka gaya senarai roman atas","Toggle the lower–latin list style":"Buka gaya senarai latin bawah","Toggle the upper–latin list style":"Buka gaya senarai latin atas",Disc:"Cakera",Circle:"Bula",Square:"Petak",Decimal:"Perpuluhan","Decimal with leading zero":"Perpuluhan dengan kosong pendahulu","Lower–roman":"Roman bawah","Upper-roman":"Roman atas","Lower-latin":"Latin bawah","Upper-latin":"Latin atas","List properties":"Senarai sifat","Start at":"Mula pada","Start index must be greater than 0.":"Indeks mula hendaklah lebih besar daripada 0.","Reversed order":"Susunan terbalik","Remove Format":"Buang Format","Select all":"Pilih seterusnya","Show blocks":"Tunjukkan blok",Source:"Sumber","Special characters":"Aksara istimewa",All:"Semua",Arrows:"Anak Panah",Currency:"Mata Wang",Latin:"Bahasa Latin",Mathematical:"Matematik",Text:"Teks","leftwards simple arrow":"anak panah mudah ke kiri","rightwards simple arrow":"anak panah mudah ke kanan","upwards simple arrow":"anak panah mudah ke atas","downwards simple arrow":"anak panah mudah ke bawah","leftwards double arrow":"anak panah berkembar arah kiri","rightwards double arrow":"anak panah berkembar arah kanan","upwards double arrow":"anak panah berkembar arah atas","downwards double arrow":"anak panah berkembar arah bawah","leftwards dashed arrow":"anak panah bersengkang arah kiri","rightwards dashed arrow":"anak panah bersengkang arah kanan","upwards dashed arrow":"anak panah bersengkang arah atas","downwards dashed arrow":"anak panah bersengkang arah bawah","leftwards arrow to bar":"anak panah arah kiri ke bar","rightwards arrow to bar":"anak panah arah kanan ke bar","upwards arrow to bar":"anak panah arah atas ke bar","downwards arrow to bar":"anak panah arah bawah ke bar","up down arrow with base":"anak panah atas bawah dengan dasar","back with leftwards arrow above":"kembali dengan anak panah arah kiri di atas","end with leftwards arrow above":"tamatkan dengan anak panah arah kiri di atas","on with exclamation mark with left right arrow above":"pada dengan tanda seru dengan anak panah kiri kanan di atas","soon with rightwards arrow above":"tidak lama lagi dengan anak panah arah kanan di atas","top with upwards arrow above":"atas dengan anak panah arah atas di atas","Dollar sign":"Simbol Dolar","Euro sign":"Simbol Euro","Yen sign":"Simbol Yen","Pound sign":"Simbol Paun","Cent sign":"Simbol sen","Euro-currency sign":"Simbol mata wang Euro","Colon sign":"Tanda titik bertindih","Cruzeiro sign":"Simbol Cruzeiro","French franc sign":"Simbol Franc Perancis","Lira sign":"Simbol Lira","Currency sign":"Simbol mata wang","Bitcoin sign":"Simbol Bitcoin","Mill sign":"Simbol Mill","Naira sign":"Simbol Naira","Peseta sign":"Simbol Peseta","Rupee sign":"Simbol Rupee","Won sign":"Simbol Won","New sheqel sign":"Simbol Sheqel baru","Dong sign":"Simbol Dong","Kip sign":"Simbol Kip","Tugrik sign":"Simbol Tugrik","Drachma sign":"Simbol Drachma","German penny sign":"Simbol Peni Jerman","Peso sign":"Simbol Peso","Guarani sign":"Simbol Guarani","Austral sign":"Simbol Austral","Hryvnia sign":"Simbol Hryvnia","Cedi sign":"Simbol Cedi","Livre tournois sign":"Simbol Livre Tournois","Spesmilo sign":"Simbol Spesmilo","Tenge sign":"Simbol Tenge","Indian rupee sign":"Simbol Rupee India","Turkish lira sign":"Simbol Lira Turki","Nordic mark sign":"Simbol lambang Nordik","Manat sign":"Simbol Manat","Ruble sign":"Simbol Ruble","Latin capital letter a with macron":"Huruf Latin a besar dengan tanda makron","Latin small letter a with macron":"Huruf Latin a kecil dengan tanda makron","Latin capital letter a with breve":"Huruf Latin a besar dengan tanda singkat","Latin small letter a with breve":"Huruf Latin a kecil dengan tanda singkat","Latin capital letter a with ogonek":"Huruf Latin a besar dengan tanda ogonek","Latin small letter a with ogonek":"Huruf Latin a kecil dengan tanda ogonek","Latin capital letter c with acute":"Huruf Latin c besar dengan tanda tirus","Latin small letter c with acute":"Huruf Latin c kecil dengan tanda tirus","Latin capital letter c with circumflex":"Huruf Latin c besar dengan tanda sirkumfleks","Latin small letter c with circumflex":"Huruf Latin c kecil dengan tanda Sirkumfleks","Latin capital letter c with dot above":"Huruf Latin c besar dengan titik di atas","Latin small letter c with dot above":"Huruf Latin c kecil dengan titik di atas","Latin capital letter c with caron":"Huruf Latin c besar dengan tanda caron","Latin small letter c with caron":"Huruf Latin c kecil dengan tanda caron","Latin capital letter d with caron":"Huruf Latin d besar dengan tanda caron","Latin small letter d with caron":"Huruf Latin d kecil dengan tanda caron","Latin capital letter d with stroke":"Huruf Latin d besar dengan garis miring","Latin small letter d with stroke":"Huruf Latin d kecil dengan garis miring","Latin capital letter e with macron":"Huruf Latin e besar dengan tanda makron","Latin small letter e with macron":"Huruf Latin e kecil dengan tanda makron","Latin capital letter e with breve":"Huruf Latin e besar dengan tanda singkat","Latin small letter e with breve":"Huruf Latin e kecil dengan tanda singkat","Latin capital letter e with dot above":"Huruf Latin e besar dengan titik di atas","Latin small letter e with dot above":"Huruf Latin e kecil dengan titik di atas","Latin capital letter e with ogonek":"Huruf Latin e besar dengan tanda ogonek","Latin small letter e with ogonek":"Huruf Latin e kecil dengan tanda ogonek","Latin capital letter e with caron":"Huruf Latin e besar dengan tanda caron","Latin small letter e with caron":"Huruf Latin e kecil dengan tanda caron","Latin capital letter g with circumflex":"Huruf Latin g besar dengan tanda sirkumfleks","Latin small letter g with circumflex":"Huruf Latin g kecil dengan tanda sirkumfleks","Latin capital letter g with breve":"Huruf Latin g besar dengan tanda singkat","Latin small letter g with breve":"Huruf Latin g kecil dengan tanda singkat","Latin capital letter g with dot above":"Huruf Latin g besar dengan titik di atas","Latin small letter g with dot above":"Huruf Latin g kecil dengan titik di atas","Latin capital letter g with cedilla":"Huruf Latin g besar dengan tanda sedila","Latin small letter g with cedilla":"Huruf Latin g kecil dengan tanda sedila","Latin capital letter h with circumflex":"Huruf Latin h besar dengan tanda sirkumfleks","Latin small letter h with circumflex":"Huruf Latin h kecil dengan tanda sirkumfleks","Latin capital letter h with stroke":"Huruf Latin h besar dengan garis miring","Latin small letter h with stroke":"Huruf Latin h kecil dengan garis miring","Latin capital letter i with tilde":"Huruf Latin i besar dengan tanda tilde","Latin small letter i with tilde":"Huruf Latin i kecil dengan tanda tilde","Latin capital letter i with macron":"Huruf Latin i besar dengan tanda makron","Latin small letter i with macron":"Huruf Latin i kecil dengan tanda makron","Latin capital letter i with breve":"Huruf Latin i besar dengan tanda singkat","Latin small letter i with breve":"Huruf Latin i kecil dengan tanda singkat","Latin capital letter i with ogonek":"Huruf Latin i besar dengan tanda ogonek","Latin small letter i with ogonek":"Huruf Latin i kecil dengan tanda ogonek","Latin capital letter i with dot above":"Huruf Latin i besar dengan titik di atas","Latin small letter dotless i":"Huruf Latin i kecil tanpa titik","Latin capital ligature ij":"Huruf kembar Latin ij besar","Latin small ligature ij":"Huruf kembar Latin ij kecil","Latin capital letter j with circumflex":"Huruf Latin j besar dengan tanda sirkumfleks","Latin small letter j with circumflex":"Huruf Latin j kecil dengan tanda sirkumfleks","Latin capital letter k with cedilla":"Huruf Latin k besar dengan tanda sedila","Latin small letter k with cedilla":"Huruf Latin k kecil dengan tanda sedila","Latin small letter kra":"Huruf Latin kra kecil","Latin capital letter l with acute":"Huruf Latin l besar dengan tanda tirus","Latin small letter l with acute":"Huruf Latin l kecil dengan tanda tirus","Latin capital letter l with cedilla":"Huruf Latin l besar dengan tanda sedila","Latin small letter l with cedilla":"Huruf Latin l kecil dengan tanda sedila","Latin capital letter l with caron":"Huruf Latin l besar dengan tanda caron","Latin small letter l with caron":"Huruf Latin l kecil dengan tanda caron","Latin capital letter l with middle dot":"Huruf Latin l besar dengan titik tengah","Latin small letter l with middle dot":"Huruf Latin l kecil dengan titik tengah","Latin capital letter l with stroke":"Huruf Latin l besar dengan garis miring","Latin small letter l with stroke":"Huruf Latin l kecil dengan garis miring","Latin capital letter n with acute":"Huruf Latin n besar dengan tanda tirus","Latin small letter n with acute":"Huruf Latin n kecil dengan tanda tirus","Latin capital letter n with cedilla":"Huruf Latin n besar dengan tanda sedila","Latin small letter n with cedilla":"Huruf Latin n kecil dengan tanda sedila","Latin capital letter n with caron":"Huruf Latin n besar dengan tanda caron","Latin small letter n with caron":"Huruf Latin n kecil dengan tanda caron","Latin small letter n preceded by apostrophe":"Huruf Latin n kecil didahului dengan koma atas","Latin capital letter eng":"Huruf Latin eng besar","Latin small letter eng":"Huruf Latin eng kecil","Latin capital letter o with macron":"Huruf Latin o besar dengan tanda makron","Latin small letter o with macron":"Huruf Latin o kecil dengan tanda makron","Latin capital letter o with breve":"Huruf Latin o besar dengan tanda singkat","Latin small letter o with breve":"Huruf Latin o kecil dengan tanda singkat","Latin capital letter o with double acute":"Huruf Latin o besar dengan tanda tirus berkembar","Latin small letter o with double acute":"Huruf Latin o kecil dengan tanda tirus berkembar","Latin capital ligature oe":"Huruf kembar Latin oe besar","Latin small ligature oe":"Huruf kembar Latin oe kecil","Latin capital letter r with acute":"Huruf Latin r besar dengan tanda tirus","Latin small letter r with acute":"Huruf Latin r kecil dengan tanda tirus","Latin capital letter r with cedilla":"Huruf Latin r besar dengan tanda sedila","Latin small letter r with cedilla":"Huruf Latin r kecil dengan tanda sedila","Latin capital letter r with caron":"Huruf Latin r besar dengan tanda caron","Latin small letter r with caron":"Huruf Latin r kecil dengan tanda caron","Latin capital letter s with acute":"Huruf Latin s besar dengan tanda tirus","Latin small letter s with acute":"Huruf Latin s kecil dengan tanda tirus","Latin capital letter s with circumflex":"Huruf Latin s besar dengan tanda sirkumfleks","Latin small letter s with circumflex":"Huruf Latin s kecil dengan tanda sirkumfleks","Latin capital letter s with cedilla":"Huruf Latin s besar dengan tanda sedila","Latin small letter s with cedilla":"Huruf Latin s kecil dengan tanda sedila","Latin capital letter s with caron":"Huruf Latin s besar dengan tanda caron","Latin small letter s with caron":"Huruf Latin s kecil dengan tanda caron","Latin capital letter t with cedilla":"Huruf Latin t besar dengan tanda sedila","Latin small letter t with cedilla":"Huruf Latin t kecil dengan tanda sedila","Latin capital letter t with caron":"Huruf Latin t besar dengan tanda caron","Latin small letter t with caron":"Huruf Latin t kecil dengan tanda caron","Latin capital letter t with stroke":"Huruf Latin t besar dengan garis miring","Latin small letter t with stroke":"Huruf Latin t kecil dengan garis miring","Latin capital letter u with tilde":"Huruf Latin u besar dengan tanda tilde","Latin small letter u with tilde":"Huruf Latin u kecil dengan tanda tilde","Latin capital letter u with macron":"Huruf Latin u besar dengan tanda makron","Latin small letter u with macron":"Huruf Latin u kecil dengan tanda makron","Latin capital letter u with breve":"Huruf Latin u besar dengan tanda singkat","Latin small letter u with breve":"Huruf Latin u kecil dengan tanda singkat","Latin capital letter u with ring above":"Huruf Latin u besar dengan bulatan di atas","Latin small letter u with ring above":"Huruf Latin u kecil dengan bulatan di atas","Latin capital letter u with double acute":"Huruf Latin u besar dengan tanda tirus berkembar","Latin small letter u with double acute":"Huruf Latin u kecil dengan tanda tirus berkembar","Latin capital letter u with ogonek":"Huruf Latin u besar dengan tanda ogonek","Latin small letter u with ogonek":"Huruf Latin u kecil dengan tanda ogonek","Latin capital letter w with circumflex":"Huruf Latin w besar dengan tanda sirkumfleks","Latin small letter w with circumflex":"Huruf Latin w kecil dengan tanda sirkumfleks","Latin capital letter y with circumflex":"Huruf Latin y besar dengan tanda sirkumfleks","Latin small letter y with circumflex":"Huruf Latin y kecil dengan tanda sirkumfleks","Latin capital letter y with diaeresis":"Huruf Latin y besar dengan tanda diaresis","Latin capital letter z with acute":"Huruf Latin z besar dengan tanda tirus","Latin small letter z with acute":"Huruf Latin z kecil dengan tanda tirus","Latin capital letter z with dot above":"Huruf Latin z besar dengan titik di atas","Latin small letter z with dot above":"Huruf Latin z kecil dengan titik di atas","Latin capital letter z with caron":"Huruf Latin z besar dengan tanda caron","Latin small letter z with caron":"Huruf Latin z kecil dengan tanda caron","Latin small letter long s":"Huruf latin s panjang kecil","Less-than sign":"Simbol kurang daripada","Greater-than sign":"Simbol lebih besar daripada","Less-than or equal to":"Kurang daripada atau sama dengan","Greater-than or equal to":"Lebih besar daripada atau sama dengan","En dash":"Sengkang en","Em dash":"Sengkang em",Macron:"Tanda makron",Overline:"Garisan atas","Degree sign":"Simbol darjah","Minus sign":"Simbol tolak","Plus-minus sign":"Simbol tambah tolak","Division sign":"Simbol bahagi","Fraction slash":"Garis condong pecahan","Multiplication sign":"Simbol darab","Latin small letter f with hook":"Huruf Latin f kecil dengan cangkuk",Integral:"Integral","N-ary summation":"Penghasiltambahan per - n - an",Infinity:"Infiniti","Square root":"Punca kuasa","Tilde operator":"Pengoperasi tilde","Approximately equal to":"Kira-kira sama dengan","Almost equal to":"Hampir sama dengan","Not equal to":"Tidak sama dengan","Identical to":"Serupa dengan","Element of":"Unsur bagi","Not an element of":"Bukan unsur bagi","Contains as member":"Terkandung sebagai anggota","N-ary product":"Hasil per - n - an","Logical and":"Logik dan","Logical or":"Logik atau","Not sign":"Bukan simbol",Intersection:"Persilangan",Union:"Penyatuan","Partial differential":"Pembezaan separa","For all":"Untuk semua","There exists":"Wujud","Empty set":"Set kosong",Nabla:"Nabla","Asterisk operator":"Pengoperasi asterisk","Proportional to":"Berkadaran dengan",Angle:"Sudut","Vulgar fraction one quarter":"Pecahan kasar satu per empat","Vulgar fraction one half":"Pecahan kasar satu per dua","Vulgar fraction three quarters":"Pecahan kasar tiga per empat","Single left-pointing angle quotation mark":"Tanda petikan sudut ke kiri tunggal","Single right-pointing angle quotation mark":"Tanda petikan sudut ke kanan tunggal","Left-pointing double angle quotation mark":"Tanda petikan sudut ke kiri berkembar","Right-pointing double angle quotation mark":"Tanda petikan sudut ke kanan berkembar","Left single quotation mark":"Tanda petikan tunggal kiri","Right single quotation mark":"Tanda petikan tunggal kanan","Left double quotation mark":"Tanda petikan berkembar kiri","Right double quotation mark":"Tanda petikan berkembar kanan","Single low-9 quotation mark":"Tanda petikan rendah 9 tunggal","Double low-9 quotation mark":"Tanda petikan rendah 9 berkembar","Inverted exclamation mark":"Tanda seru terbalik","Inverted question mark":"Tanda soal terbalik","Two dot leader":"Pendahulu dua titik","Horizontal ellipsis":"Elipsis Mendatar","Double dagger":"Tanda rujuk kembar","Per mille sign":"Simbol per mille","Per ten thousand sign":"Simbol per sepuluh ribu","Double exclamation mark":"Tanda seru berkembar","Question exclamation mark":"Tanda seru soal","Exclamation question mark":"Tanda soal seru","Double question mark":"Tanda soal berkembar","Copyright sign":"Simbol hak cipta","Registered sign":"Simbol berdaftar","Trade mark sign":"Simbol tanda dagangan","Section sign":"Simbol seksyen","Paragraph sign":"Tanda perenggan","Reversed paragraph sign":"Tanda perenggan terbalik","Character categories":"Kategori aksara",Styles:"Gaya","Multiple styles":"Gaya berbilang","Block styles":"Gaya blok","Text styles":"Gaya teks","Insert table":"Masukkan jadual","Header column":"Kolum pengepala","Insert column left":"Masukkan kolum kiri","Insert column right":"Masukkan kolum kanan","Delete column":"Padam kolum","Select column":"Pilih kolum",Column:"Kolum","Header row":"Baris pengepala","Insert row below":"Masukkan baris dibawah","Insert row above":"Masukkan baris diatas","Delete row":"Padam baris","Select row":"Pilih baris",Row:"Baris","Merge cell up":"Cantumkan sel keatas","Merge cell right":"Cantumkan sel kekanan","Merge cell down":"Cantumkan sel kebawah","Merge cell left":"Cantumkan sel kekiri","Split cell vertically":"Leraikan sel menegak","Split cell horizontally":"Leraikan sel melintang","Merge cells":"Cantumkan sel ","Table toolbar":"Bar alat capaian jadual","Table properties":"Sifat jadual","Cell properties":"Sifat sel",Border:"Sempadan",Style:"Gaya",Width:"Lebar",Height:"Ketinggian",Color:"Warna",Background:"Latar belakang",Padding:"Ketebalan",Dimensions:"Dimensi","Table cell text alignment":"Jajaran teks sel jadual",Alignment:"Jajaran","Horizontal text alignment toolbar":"Bar alat capaian jajaran teks melintang","Vertical text alignment toolbar":"Bar alat capaian jajaran teks menegak","Table alignment toolbar":"Bar alat capaian jajaran jadual",None:"Tiada",Solid:"Pejal",Dotted:"Bertitik",Dashed:"Garis putus-putus",Double:"Dua baris",Groove:"Lurah",Ridge:"Batas",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Jajarkan teks sel kekiri","Align cell text to the center":"Jajarkan teks sel ketengah","Align cell text to the right":"Jajarkan teks sel kekanan","Justify cell text":"Imbang teks sel","Align cell text to the top":"Jajarkan teks sel keatas","Align cell text to the middle":"Jajarkan teks sel ketengah","Align cell text to the bottom":"Jajarkan teks sel kebawah","Align table to the left":"Jajarkan jadual sel kekiri","Center table":"Ketengahkan jadual","Align table to the right":"Jajarkan jadual sel kekanan","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Warna tidak sah. Cuba \"#FF0000\" atau \"rgb(255,0,0)\" atau \"merah\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Nilai tidak sah. Cuba \"10px\" atau \"2em\" atau \"2\" sahaja.","Color picker":"Pemilih warna","Toggle caption off":"Tutup kapsyen","Toggle caption on":"Buka kapsyen","Enter table caption":"Benarkan kapsyen jadual","Rich Text Editor":"Penyunting Teks Kaya","Editor editing area: %0":"Ruang suntingan editor: %0","Edit block":"Sunting blok","Click to edit block":"Klik untuk menyunting sekatan","Drag to move":"Seret untuk menggerakkan",Next:"Seterusnya",Previous:"Sebelumnya","Editor toolbar":"Bar alat capaian suntingan","Dropdown toolbar":"Bar alat capaian tetingkap",Black:"Hitam","Dim grey":"Kelabu malap",Grey:"Kelabu","Light grey":"Kelabu cerah",White:"Putih",Red:"Merah",Orange:"Oren",Yellow:"Kuning","Light green":"Hijau cerah",Green:"Hijau",Aquamarine:"Akuamarin",Turquoise:"Firus","Light blue":"Biru cerah",Blue:"Biru",Purple:"Ungu","Editor block content toolbar":"Bar alat sekat kandungan editor","Editor contextual toolbar":"Bar alat kontekstual editor",HEX:"HEX",Accept:"Terima","No results found":"Tiada keputusan ditemui","No searchable items":"Tiada item untuk dicari","Editor dialog":"Dialog editor",Close:"Tutup",Undo:"Buat asal",Redo:"Buat semula","Upload in progress":"Muat naik sedang berlangsung","Widget toolbar":"Bar alat capaian widget","Insert paragraph before block":"Masukkan perenggan sebelum blok","Insert paragraph after block":"Masukkan perenggan sebelum blok","Press Enter to type after or press Shift + Enter to type before the widget":"Tekan Enter untuk menaip selepas atau tekan Shift + Enter untuk menaip sebelum widget","Words: %0":"Perkataan: %0","Characters: %0":"Aksara: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nb.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nb.js index 33708598f35d313a83ecdf383e4b1a96b01e062b..97ddd1d9d4f7f937c7fecb8f11efcc183b1a49c9 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nb.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nb.js @@ -1 +1 @@ -(function(d){ const l = d['nb'] = d['nb'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Venstrejuster","Align right":"Høyrejuster","Align center":"Midstill",Justify:"Blokkjuster","Text alignment":"Tekstjustering","Text alignment toolbar":"",Bold:"Fet",Italic:"Kursiv",Underline:"Understreking",Code:"Kode",Strikethrough:"Gjennomstreking",Subscript:"",Superscript:"","Block quote":"Blokksitat",Cancel:"Avbryt",Clear:"","Remove color":"","Restore default":"",Save:"Lagre","Show more items":"","%0 of %1":"","Cannot upload file:":"Kan ikke laste opp fil:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Avsnitt",Heading:"Overskrift","Choose heading":"Velg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"","Heading 5":"","Heading 6":"","Type your title":"","Type or paste your content here.":"",Unlink:"Fjern lenke",Link:"Lenke","Link URL":"URL for lenke","Link image":"","Edit link":"Rediger lenke","Open link in new tab":"Ã…pne lenke i ny fane","This link has no URL":"Denne lenken har ingen URL","Open in a new tab":"",Downloadable:"","Numbered List":"Nummerert liste","Bulleted List":"Punktmerket liste","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Insert table":"Sett inn tabell","Header column":"Overskriftkolonne","Insert column left":"","Insert column right":"","Delete column":"Slett kolonne","Select column":"",Column:"Kolonne","Header row":"Overskriftrad","Insert row below":"Sett inn rad under","Insert row above":"Sett inn rad over","Delete row":"Slett rad","Select row":"",Row:"Rad","Merge cell up":"SlÃ¥ sammen celle opp","Merge cell right":"SlÃ¥ sammen celle til høyre","Merge cell down":"SlÃ¥ sammen celle ned","Merge cell left":"SlÃ¥ sammen celle til venstre","Split cell vertically":"Del celle vertikalt","Split cell horizontally":"Del celle horisontalt","Merge cells":"SlÃ¥ sammen celler","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rikteksteditor","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"","Dim grey":"",Grey:"","Light grey":"",White:"",Red:"",Orange:"",Yellow:"","Light green":"",Green:"",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Angre",Redo:"Gjør om","Upload in progress":"Opplasting pÃ¥gÃ¥r"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['nb'] = d['nb'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Venstrejuster","Align right":"Høyrejuster","Align center":"Midstill",Justify:"Blokkjuster","Text alignment":"Tekstjustering","Text alignment toolbar":"",Bold:"Fet",Italic:"Kursiv",Underline:"Understreking",Code:"Kode",Strikethrough:"Gjennomstreking",Subscript:"",Superscript:"","Block quote":"Blokksitat",Cancel:"Avbryt",Clear:"","Remove color":"","Restore default":"",Save:"Lagre","Show more items":"","%0 of %1":"","Cannot upload file:":"Kan ikke laste opp fil:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Skriftstørrelse",Tiny:"Veldig liten",Small:"Liten",Big:"Stor",Huge:"Veldig stor","Font Family":"Skrifttype",Default:"Standard","Font Color":"","Font Background Color":"","Document colors":"",Paragraph:"Avsnitt",Heading:"Overskrift","Choose heading":"Velg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"","Heading 5":"","Heading 6":"","Type your title":"","Type or paste your content here.":"",Unlink:"Fjern lenke",Link:"Lenke","Link URL":"URL for lenke","Link image":"","Edit link":"Rediger lenke","Open link in new tab":"Ã…pne lenke i ny fane","This link has no URL":"Denne lenken har ingen URL","Open in a new tab":"",Downloadable:"","Numbered List":"Nummerert liste","Bulleted List":"Punktmerket liste","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Insert table":"Sett inn tabell","Header column":"Overskriftkolonne","Insert column left":"","Insert column right":"","Delete column":"Slett kolonne","Select column":"",Column:"Kolonne","Header row":"Overskriftrad","Insert row below":"Sett inn rad under","Insert row above":"Sett inn rad over","Delete row":"Slett rad","Select row":"",Row:"Rad","Merge cell up":"SlÃ¥ sammen celle opp","Merge cell right":"SlÃ¥ sammen celle til høyre","Merge cell down":"SlÃ¥ sammen celle ned","Merge cell left":"SlÃ¥ sammen celle til venstre","Split cell vertically":"Del celle vertikalt","Split cell horizontally":"Del celle horisontalt","Merge cells":"SlÃ¥ sammen celler","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Rikteksteditor","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"","Dim grey":"",Grey:"","Light grey":"",White:"",Red:"",Orange:"",Yellow:"","Light green":"",Green:"",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Angre",Redo:"Gjør om","Upload in progress":"Opplasting pÃ¥gÃ¥r"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ne.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ne.js index 09af54328294295a77b54bf746d0948076a8e287..f6c5e2964a1771ada6dbac205ca5506363321c20 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ne.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ne.js @@ -1 +1 @@ -(function(d){ const l = d['ne'] = d['ne'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"बायाठपङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Align right":"दायाठपङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Align center":"केनà¥à¤¦à¥à¤° पङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Justify:"जसà¥à¤Ÿà¤¿à¤«à¤¾à¤‡ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Text alignment":"पाठसंरेखण","Text alignment toolbar":"",Bold:"बोलà¥à¤¡",Italic:"इटालिक",Underline:"रेखांकन",Code:"कोड",Strikethrough:"सà¥à¤Ÿà¥à¤°à¤¾à¤‡à¤•à¤¥à¥à¤°à¥‚",Subscript:"सबसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ",Superscript:"सà¥à¤ªà¤°à¤¸à¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ","Block quote":"बà¥à¤²à¤• उदà¥à¤§à¤°à¤£",Cancel:"रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Clear:"","Remove color":"रंग हटाउन","Restore default":"",Save:"सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Show more items":"","%0 of %1":"%0 मधà¥à¤¯à¥‡ %1","Cannot upload file:":"फाइल अपलोड गरà¥à¤¨ मिलà¥à¤¦à¥ˆà¤¨","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"अनà¥à¤šà¥à¤›à¥‡à¤¦",Heading:"शीरà¥à¤·à¤•","Choose heading":"शीरà¥à¤·à¤• छनौट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Heading 1":"शीरà¥à¤·à¤•-à¤à¤•","Heading 2":"शीरà¥à¤·à¤• २","Heading 3":"शीरà¥à¤·à¤• ३","Heading 4":"शीरà¥à¤·à¤• ४","Heading 5":"शीरà¥à¤·à¤• ५","Heading 6":"शीरà¥à¤·à¤• ६","Type your title":"","Type or paste your content here.":"","Increase indent":"इनà¥à¤¡à¥‡à¤¨à¥à¤Ÿ बढाउन","Decrease indent":"इनà¥à¤¡à¥‡à¤¨à¥à¤Ÿ घटाउन",Unlink:"अनलिङà¥à¤• गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Link:"लिङà¥à¤•","Link URL":"लिङà¥à¤• यूआरà¤à¤²","Link image":"","Edit link":"लिङà¥à¤• समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Open link in new tab":"नयाठटà¥à¤¯à¤¾à¤¬à¤®à¤¾ लिङà¥à¤• खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","This link has no URL":"यो लिङà¥à¤•à¤¸à¤à¤— यूआरà¤à¤² छैन","Open in a new tab":"नयाठटà¥à¤¯à¤¾à¤¬à¤®à¤¾ खोलà¥à¤¨",Downloadable:"डाउनलोड योगà¥à¤¯","Numbered List":"सूचीबदà¥à¤§ सूची","Bulleted List":"गोली चिनà¥à¤¹ अङà¥à¤•à¤¿à¤¤ सूची","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"ढाà¤à¤šà¤¾ हटाउनà¥à¤¹à¥‹à¤¸à¥","Insert table":"तालिका समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Header column":"हेडर सà¥à¤¤à¤®à¥à¤","Insert column left":"बायाठसà¥à¤¤à¤®à¥à¤ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨","Insert column right":"दायाठसà¥à¤¤à¤®à¥à¤ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨","Delete column":"सà¥à¤¤à¤®à¥à¤ मेटाउनà¥à¤¹à¥‹à¤¸à¥","Select column":"",Column:"सà¥à¤¤à¤®à¥à¤","Header row":"हेडर पङà¥à¤•à¥à¤¤à¤¿","Insert row below":"तल पंकà¥à¤¤à¤¿ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Insert row above":"माथि पंकà¥à¤¤à¤¿ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Delete row":"पङà¥à¤•à¥à¤¤à¤¿ मेटाउनà¥à¤¹à¥‹à¤¸à¥","Select row":"",Row:"पङà¥à¤•à¥à¤¤à¤¿","Merge cell up":"ककà¥à¤· माथि मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell right":"दायाठककà¥à¤· मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell down":"ककà¥à¤· तल मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell left":"सेल बायाठमरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Split cell vertically":"ठाडो ककà¥à¤· विà¤à¤¾à¤œà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Split cell horizontally":"कà¥à¤·à¥ˆà¤¤à¤¿à¤œ ककà¥à¤· विà¤à¤¾à¤œà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cells":"ककà¥à¤· मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"धनी पाठसमà¥à¤ªà¤¾à¤¦à¤•","Editor editing area: %0":"","Edit block":"बà¥à¤²à¤• समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨","Click to edit block":"","Drag to move":"",Next:"अरà¥à¤•à¥‹",Previous:"अघिलà¥à¤²à¥‹","Editor toolbar":"","Dropdown toolbar":"",Black:"कालो","Dim grey":"धमिलो खैरो",Grey:"खैरो","Light grey":"हलà¥à¤•à¤¾ खैरो",White:"सेतो",Red:"रातो",Orange:"सà¥à¤¨à¥à¤¤à¤²à¤¾ रंग",Yellow:"पहेंलो","Light green":"हलà¥à¤•à¤¾ हरियो",Green:"हरियो",Aquamarine:"अवà¥à¤•à¤µà¤¾à¤®à¤°à¤¿à¤¨",Turquoise:"तà¥à¤°à¤•à¥‹à¤‡à¤¸","Light blue":"हलà¥à¤•à¤¾ निलो",Blue:"निलो",Purple:"बैंगनी रंग","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"पूरà¥à¤µà¤µà¤¤",Redo:"रिडà¥","Upload in progress":"अपलोड हà¥à¤¦à¥ˆà¤›","Words: %0":"शबà¥à¤¦à¤¹à¤°à¥‚: %0","Characters: %0":"कà¥à¤¯à¤¾à¤°à¥‡à¤•à¥à¤Ÿà¤°à¤¹à¤°à¥‚: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ne'] = d['ne'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"बायाठपङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Align right":"दायाठपङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Align center":"केनà¥à¤¦à¥à¤° पङà¥à¤•à¥à¤¤à¤¿à¤¬à¤¦à¥à¤§ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Justify:"जसà¥à¤Ÿà¤¿à¤«à¤¾à¤‡ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Text alignment":"पाठसंरेखण","Text alignment toolbar":"",Bold:"बोलà¥à¤¡",Italic:"इटालिक",Underline:"रेखांकन",Code:"कोड",Strikethrough:"सà¥à¤Ÿà¥à¤°à¤¾à¤‡à¤•à¤¥à¥à¤°à¥‚",Subscript:"सबसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ",Superscript:"सà¥à¤ªà¤°à¤¸à¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ","Block quote":"बà¥à¤²à¤• उदà¥à¤§à¤°à¤£",Cancel:"रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Clear:"","Remove color":"रंग हटाउन","Restore default":"",Save:"सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Show more items":"","%0 of %1":"%0 मधà¥à¤¯à¥‡ %1","Cannot upload file:":"फाइल अपलोड गरà¥à¤¨ मिलà¥à¤¦à¥ˆà¤¨","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"फनà¥à¤Ÿ आकार",Tiny:"सानो",Small:"सानो",Big:"ठूलो",Huge:"विशाल","Font Family":"फनà¥à¤Ÿ परिवार",Default:"पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤¿à¤¤","Font Color":"फनà¥à¤Ÿ रंग","Font Background Color":"पृषà¥à¤ à¤à¥‚मिको फनà¥à¤Ÿ रंग","Document colors":"कागजात रंग",Paragraph:"अनà¥à¤šà¥à¤›à¥‡à¤¦",Heading:"शीरà¥à¤·à¤•","Choose heading":"शीरà¥à¤·à¤• छनौट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Heading 1":"शीरà¥à¤·à¤•-à¤à¤•","Heading 2":"शीरà¥à¤·à¤• २","Heading 3":"शीरà¥à¤·à¤• ३","Heading 4":"शीरà¥à¤·à¤• ४","Heading 5":"शीरà¥à¤·à¤• ५","Heading 6":"शीरà¥à¤·à¤• ६","Type your title":"","Type or paste your content here.":"","Increase indent":"इनà¥à¤¡à¥‡à¤¨à¥à¤Ÿ बढाउन","Decrease indent":"इनà¥à¤¡à¥‡à¤¨à¥à¤Ÿ घटाउन",Unlink:"अनलिङà¥à¤• गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥",Link:"लिङà¥à¤•","Link URL":"लिङà¥à¤• यूआरà¤à¤²","Link image":"","Edit link":"लिङà¥à¤• समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Open link in new tab":"नयाठटà¥à¤¯à¤¾à¤¬à¤®à¤¾ लिङà¥à¤• खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","This link has no URL":"यो लिङà¥à¤•à¤¸à¤à¤— यूआरà¤à¤² छैन","Open in a new tab":"नयाठटà¥à¤¯à¤¾à¤¬à¤®à¤¾ खोलà¥à¤¨",Downloadable:"डाउनलोड योगà¥à¤¯","Numbered List":"सूचीबदà¥à¤§ सूची","Bulleted List":"गोली चिनà¥à¤¹ अङà¥à¤•à¤¿à¤¤ सूची","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"ढाà¤à¤šà¤¾ हटाउनà¥à¤¹à¥‹à¤¸à¥","Insert table":"तालिका समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Header column":"हेडर सà¥à¤¤à¤®à¥à¤","Insert column left":"बायाठसà¥à¤¤à¤®à¥à¤ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨","Insert column right":"दायाठसà¥à¤¤à¤®à¥à¤ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨","Delete column":"सà¥à¤¤à¤®à¥à¤ मेटाउनà¥à¤¹à¥‹à¤¸à¥","Select column":"",Column:"सà¥à¤¤à¤®à¥à¤","Header row":"हेडर पङà¥à¤•à¥à¤¤à¤¿","Insert row below":"तल पंकà¥à¤¤à¤¿ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Insert row above":"माथि पंकà¥à¤¤à¤¿ समà¥à¤®à¤¿à¤²à¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Delete row":"पङà¥à¤•à¥à¤¤à¤¿ मेटाउनà¥à¤¹à¥‹à¤¸à¥","Select row":"",Row:"पङà¥à¤•à¥à¤¤à¤¿","Merge cell up":"ककà¥à¤· माथि मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell right":"दायाठककà¥à¤· मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell down":"ककà¥à¤· तल मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cell left":"सेल बायाठमरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Split cell vertically":"ठाडो ककà¥à¤· विà¤à¤¾à¤œà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Split cell horizontally":"कà¥à¤·à¥ˆà¤¤à¤¿à¤œ ककà¥à¤· विà¤à¤¾à¤œà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Merge cells":"ककà¥à¤· मरà¥à¤œ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"धनी पाठसमà¥à¤ªà¤¾à¤¦à¤•","Editor editing area: %0":"","Edit block":"बà¥à¤²à¤• समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨","Click to edit block":"","Drag to move":"",Next:"अरà¥à¤•à¥‹",Previous:"अघिलà¥à¤²à¥‹","Editor toolbar":"","Dropdown toolbar":"",Black:"कालो","Dim grey":"धमिलो खैरो",Grey:"खैरो","Light grey":"हलà¥à¤•à¤¾ खैरो",White:"सेतो",Red:"रातो",Orange:"सà¥à¤¨à¥à¤¤à¤²à¤¾ रंग",Yellow:"पहेंलो","Light green":"हलà¥à¤•à¤¾ हरियो",Green:"हरियो",Aquamarine:"अवà¥à¤•à¤µà¤¾à¤®à¤°à¤¿à¤¨",Turquoise:"तà¥à¤°à¤•à¥‹à¤‡à¤¸","Light blue":"हलà¥à¤•à¤¾ निलो",Blue:"निलो",Purple:"बैंगनी रंग","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"पूरà¥à¤µà¤µà¤¤",Redo:"रिडà¥","Upload in progress":"अपलोड हà¥à¤¦à¥ˆà¤›","Words: %0":"शबà¥à¤¦à¤¹à¤°à¥‚: %0","Characters: %0":"कà¥à¤¯à¤¾à¤°à¥‡à¤•à¥à¤Ÿà¤°à¤¹à¤°à¥‚: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nl.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nl.js index 2702aa29bdc1297d5335df9fd5ceb072e54350af..0890862627db48e35c34c4efd49fafbbce0668fb 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nl.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/nl.js @@ -1 +1 @@ -(function(d){ const l = d['nl'] = d['nl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Links uitlijnen","Align right":"Rechts uitlijnen","Align center":"Midden uitlijnen",Justify:"Volledig uitlijnen","Text alignment":"Tekst uitlijning","Text alignment toolbar":"Tekst uitlijning werkbalk",Bold:"Vet",Italic:"Cursief",Underline:"Onderlijnen",Code:"Code",Strikethrough:"Doorhalen",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Blok citaat","Insert code block":"Codeblok invoegen","Plain text":"Platte tekst",Cancel:"Annuleren",Clear:"Wissen","Remove color":"Verwijder kleur","Restore default":"Standaardinstellingen terugzetten",Save:"Opslaan","Show more items":"Meer items weergeven","%0 of %1":"%0 van %1","Cannot upload file:":"Kan bestand niet uploaden:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Bewerkingsgebied: %0","Insert with file manager":"Invoegen met bestandsbeheer","Replace with file manager":"Vervangen met bestandsbeheerder","Insert image with file manager":"Afbeelding invoegen met bestandsbeheer","Replace image with file manager":"Afbeelding vervangen met bestandsbeheerder","Find and replace":"Zoeken en vervangen","Find in text…":"Zoeken in tekst",Find:"Zoeken","Previous result":"Volgende zoeken","Next result":"Vorige zoeken",Replace:"Vervangen","Replace all":"Alles vervangen","Match case":"Hoofdlettergevoelig","Whole words only":"Alleen volledige woorden","Replace with…":"Vervangen door","Text to find must not be empty.":"Dit veld mag niet leeg zijn","Tip: Find some text first in order to replace it.":"Tip: zoek eerst de tekst om hem te vervangen","Advanced options":"Geavanceerde opties",Paragraph:"Paragraaf",Heading:"Koppen","Choose heading":"Kies kop","Heading 1":"Kop 1","Heading 2":"Kop 2","Heading 3":"Kop 3","Heading 4":"Kop 4","Heading 5":"Kop 5","Heading 6":"Kop 6","Type your title":"Voor uw titel in","Type or paste your content here.":"Voer of plak uw inhoud in.","Horizontal line":"Horizontale lijn","HTML object":"HTML object","Increase indent":"Inspringen","Decrease indent":"Minder inspringen",Unlink:"Verwijder link",Link:"Link","Link URL":"Link URL","Link image":"Link afbeelding","Edit link":"Bewerk link","Open link in new tab":"Open link in nieuw tabblad","This link has no URL":"Deze link heeft geen URL","Open in a new tab":"Open een nieuw tabblad",Downloadable:"Downloadbaar","Numbered List":"Genummerde lijst","Bulleted List":"Ongenummerde lijst","To-do List":"To-do lijst","Bulleted list styles toolbar":"Toolbar voor stijlen van opsommingslijsten","Numbered list styles toolbar":"Toolbar voor stijlen van genummerde lijsten","Toggle the disc list style":"Schakel de stijl van lijsten met bulletpoint in","Toggle the circle list style":"Schakel de stijl van lijsten met cirkel in","Toggle the square list style":"Schakel de stijl van lijsten met vierkant in","Toggle the decimal list style":"Schakel de stijl van lijsten met cijfers in","Toggle the decimal with leading zero list style":"Schakel de stijl van lijsten met cijfers voorafgegaan door een nul in","Toggle the lower–roman list style":"Schakel de stijl van lijsten met kleine Romeinse cijfers in","Toggle the upper–roman list style":"Schakel de stijl van lijsten met grote Romeinse cijfers in","Toggle the lower–latin list style":"Schakel de stijl van lijsten met kleine Latijnse letters in","Toggle the upper–latin list style":"Schakel de stijl van lijsten met Latijnse hoofdletters in",Disc:"Schijf",Circle:"Cirkel",Square:"Vierkant",Decimal:"Decimaal","Decimal with leading zero":"Decimaal voorafgegaan door een nul","Lower–roman":"Kleine Romeinse cijfers","Upper-roman":"Grote Romeinse cijfers","Lower-latin":"Kleine Latijnse letters","Upper-latin":"Latijnse hoofdletters","List properties":"Lijsteigenschappen","Start at":"Begin op","Start index must be greater than 0.":"Begin van index moet groter zijn dan 0.","Reversed order":"Omgekeerde volgorde","Remove Format":"Verwijder opmaak","Select all":"Selecteer alles","Show blocks":"Blokken tonen",Source:"Bron","Special characters":"Speciale karakters",All:"Alles",Arrows:"Pijlen",Currency:"Valuta",Latin:"Latijn",Mathematical:"Wiskundig",Text:"Tekst","leftwards simple arrow":"simpele pijl naar links","rightwards simple arrow":"simpele pijl naar rechts","upwards simple arrow":"simpele pijl naar boven","downwards simple arrow":"simpele pijl naar beneden","leftwards double arrow":"linkswijzende dubbele pijl","rightwards double arrow":"rechtswijzende dubbele pijl","upwards double arrow":"bovenwijzende dubbele pijl","downwards double arrow":"benedenwijzende dubbele pijl","leftwards dashed arrow":"linkswijzende gestreepte pijl","rightwards dashed arrow":"rechtswijzende gestreepte pijl","upwards dashed arrow":"bovenwijzende gestreepte pijl","downwards dashed arrow":"benedenwijzende gestreepte pijl","leftwards arrow to bar":"linkswijzende pijl naar streep","rightwards arrow to bar":"rechtswijzende pijl naar streep","upwards arrow to bar":"bovenwijzende pijl naar streep","downwards arrow to bar":"benedenwijzende pijl naar streep","up down arrow with base":"boven beneden pijl met streep","back with leftwards arrow above":"back met linkswijzende pijl erboven","end with leftwards arrow above":"end met linkswijzende pijl erboven","on with exclamation mark with left right arrow above":"on met uitroepteken met links rechts pijl erboven","soon with rightwards arrow above":"soon met rechtswijzende pijl erboven","top with upwards arrow above":"top met bovenwijzende pijl erboven","Dollar sign":"Dollar teken","Euro sign":"Euro teken","Yen sign":"Yen teken","Pound sign":"Pond teken","Cent sign":"Cent teken","Euro-currency sign":"Euro-valuta teken","Colon sign":"Colón teken","Cruzeiro sign":"Cruzeiro teken","French franc sign":"Franse frank teken","Lira sign":"Lira teken","Currency sign":"Valuta teken","Bitcoin sign":"Bitcoin teken","Mill sign":"Mill teken","Naira sign":"Naira teken","Peseta sign":"Peseta teken","Rupee sign":"Roepie teken","Won sign":"Won teken","New sheqel sign":"Nieuwe sjekel teken","Dong sign":"Dong teken","Kip sign":"Kip teken","Tugrik sign":"Tugrik teken","Drachma sign":"Drachme teken","German penny sign":"Duitse penny teken","Peso sign":"Peso teken","Guarani sign":"Guarani teken","Austral sign":"Austral teken","Hryvnia sign":"Grivna teken","Cedi sign":"Cedi teken","Livre tournois sign":"Livre tournois teken","Spesmilo sign":"Spesmilo teken","Tenge sign":"Tenge teken","Indian rupee sign":"Indiaanse roepie teken","Turkish lira sign":"Turkse lira teken","Nordic mark sign":"Noorse mark teken","Manat sign":"Manat teken","Ruble sign":"Roebel teken","Latin capital letter a with macron":"Latijnse hoofdletter a met macron","Latin small letter a with macron":"Latijnse kleine letter a met macron","Latin capital letter a with breve":"Latijnse hoofdletter a met breve","Latin small letter a with breve":"Latijnse kleine letter a met breve","Latin capital letter a with ogonek":"Latijnse hoofdletter a met ogonek","Latin small letter a with ogonek":"Latijnse kleine letter a met ogonek","Latin capital letter c with acute":"Latijnse hoofdletter c met acute","Latin small letter c with acute":"Latijnse kleine letter c met acute","Latin capital letter c with circumflex":"Latijnse hoofdletter c met circumflex","Latin small letter c with circumflex":"Latijnse kleine letter c met circumflex","Latin capital letter c with dot above":"Latijnse hoofdletter c met punt erboven","Latin small letter c with dot above":"Latijnse kleine letter met punt erboven","Latin capital letter c with caron":"Latijnse hoofdletter c met caron","Latin small letter c with caron":"Latijnse kleine letter c met caron","Latin capital letter d with caron":"Latijnse hoofdletter d met caron","Latin small letter d with caron":"Latijnse kleine letter d met caron","Latin capital letter d with stroke":"Latijnse hoofdletter d met dwarsstreep","Latin small letter d with stroke":"Latijnse kleine letter d met dwarsstreep","Latin capital letter e with macron":"Latijnse hoofdletter e met macron","Latin small letter e with macron":"Latijnse kleine letter e met macron","Latin capital letter e with breve":"Latijnse hoofdletter e met breve","Latin small letter e with breve":"Latijnse kleine letter e met breve","Latin capital letter e with dot above":"Latijnse hoofdletter e met punt erboven","Latin small letter e with dot above":"Latijnse kleine letter e met punt erboven","Latin capital letter e with ogonek":"Latijnse hoofdletter e met ogonek","Latin small letter e with ogonek":"Latijnse kleine letter e met ogonek","Latin capital letter e with caron":"Latijnse hoofdletter e met haÄek","Latin small letter e with caron":"Latijnse kleine letter e met haÄek","Latin capital letter g with circumflex":"Latijnse hoofdletter g met circumflex","Latin small letter g with circumflex":"Latijnse kleine letter g met circumflex","Latin capital letter g with breve":"Latijnse hoofdletter g met breve","Latin small letter g with breve":"Latijnse kleine letter g met breve","Latin capital letter g with dot above":"Latijnse hoofdletter g met punt erboven","Latin small letter g with dot above":"Latijnse kleine letter g met punt erboven","Latin capital letter g with cedilla":"Latijnse hoofdletter g met cedille","Latin small letter g with cedilla":"Latijnse kleine letter g met cedille","Latin capital letter h with circumflex":"Latijnse hoofdletter h met circumflex","Latin small letter h with circumflex":"Latijnse kleine letter h met circumflex","Latin capital letter h with stroke":"Latijnse hoofdletter h met macron\n","Latin small letter h with stroke":"Latijnse kleine letter h met macron","Latin capital letter i with tilde":"Latijnse hoofdletter i met tilde","Latin small letter i with tilde":"Latijnse kleine letter i met tilde","Latin capital letter i with macron":"Latijnse hoofdletter i met macron","Latin small letter i with macron":"Latijnse kleine letter i met macron","Latin capital letter i with breve":"Latijnse hoofdletter i met breve","Latin small letter i with breve":"Latijnse kleine letter i met breve","Latin capital letter i with ogonek":"Latijnse hoofdletter i met ogonek","Latin small letter i with ogonek":"Latijnse kleine letter i met ogonek","Latin capital letter i with dot above":"Latijnse hoofdletter i met punt erboven","Latin small letter dotless i":"Latijnse kleine letter i zonder punt","Latin capital ligature ij":"Latijnse hoofdletter ligatuur ij","Latin small ligature ij":"Latijnse kleine ligatuur ij","Latin capital letter j with circumflex":"Latijnse hoofdletter j met circumflex","Latin small letter j with circumflex":"Latijnse kleine letter j met circumflex","Latin capital letter k with cedilla":"Latijnse hoofdletter k met cedille","Latin small letter k with cedilla":"Latijnse kleine letter k met cedille","Latin small letter kra":"Latijnse kleine letter kra","Latin capital letter l with acute":"Latijnse hoofdletter l met accent aigu","Latin small letter l with acute":"Latijnse kleine letter l met accent aigu","Latin capital letter l with cedilla":"Latijnse hoofdletter l met cedille","Latin small letter l with cedilla":"Latijnse kleine letter l met cedille","Latin capital letter l with caron":"Latijnse hoofdletter l met haÄek","Latin small letter l with caron":"Latijnse kleine letter l met haÄek","Latin capital letter l with middle dot":"Latijnse hoofdletter l met punt in het midden","Latin small letter l with middle dot":"Latijnse kleine letter l met punt in het midden","Latin capital letter l with stroke":"Latijnse hoofdletter l met dwarsstreep","Latin small letter l with stroke":"Latijnse kleine letter l met dwarsstreep","Latin capital letter n with acute":"Latijnse hoofdletter n met accent aigu","Latin small letter n with acute":"Latijnse kleine letter n met accent aigu","Latin capital letter n with cedilla":"Latijnse hoofdletter n met cedille","Latin small letter n with cedilla":"Latijnse kleine letter n met cedille","Latin capital letter n with caron":"Latijnse hoofdletter n met haÄek","Latin small letter n with caron":"Latijnse kleine letter n met haÄek","Latin small letter n preceded by apostrophe":"Latijnse kleine letter n voorafgegaan door apostrof","Latin capital letter eng":"Latijnse hoofdletter eng","Latin small letter eng":"Latijnse kleine letter eng","Latin capital letter o with macron":"Latijnse hoofdletter o met macron","Latin small letter o with macron":"Latijnse kleine letter o met macron","Latin capital letter o with breve":"Latijnse hoofdletter o met breve","Latin small letter o with breve":"Latijnse kleine letter o met breve","Latin capital letter o with double acute":"Latijnse hoofdletter o met dubbel accent aigu","Latin small letter o with double acute":"Latijnse kleine letter o met dubbel accent aigu","Latin capital ligature oe":"Latijnse hoofdletter ligatuur oe","Latin small ligature oe":"Latijnse kleine ligatuur oe","Latin capital letter r with acute":"Latijnse hoofdletter r met accent aigu","Latin small letter r with acute":"Latijnse kleine letter r met accent aigu","Latin capital letter r with cedilla":"Latijnse hoofdletter r met cedille","Latin small letter r with cedilla":"Latijnse kleine letter r met cedille","Latin capital letter r with caron":"Latijnse hoofdletter r met haÄek","Latin small letter r with caron":"Latijnse kleine letter r met haÄek","Latin capital letter s with acute":"Latijnse hoofdletter s met accent aigu","Latin small letter s with acute":"Latijnse kleine letter s met accent aigu","Latin capital letter s with circumflex":"Latijnse hoofdletter s met circumflex","Latin small letter s with circumflex":"Latijnse kleine letter s met circumflex","Latin capital letter s with cedilla":"Latijnse hoofdletter s met cedille","Latin small letter s with cedilla":"Latijnse kleine letter s met cedille","Latin capital letter s with caron":"Latijnse hoofdletter s met haÄek","Latin small letter s with caron":"Latijnse kleine letter s met haÄek","Latin capital letter t with cedilla":"Latijnse hoofdletter t met cedille","Latin small letter t with cedilla":"Latijnse kleine letter t met cedille","Latin capital letter t with caron":"Latijnse hoofdletter t met haÄek","Latin small letter t with caron":"Latijnse kleine letter t met haÄek","Latin capital letter t with stroke":"Latijnse hoofdletter t met dwarsstreep","Latin small letter t with stroke":"Latijnse kleine letter t met dwarsstreep","Latin capital letter u with tilde":"Latijnse hoofdletter u met tilde","Latin small letter u with tilde":"Latijnse kleine letter u met tilde","Latin capital letter u with macron":"Latijnse hoofdletter u met macron","Latin small letter u with macron":"Latijnse kleine letter u met macron","Latin capital letter u with breve":"Latijnse hoofdletter u met breve","Latin small letter u with breve":"Latijnse kleine letter u met breve","Latin capital letter u with ring above":"Latijnse hoofdletter u met ring erboven","Latin small letter u with ring above":"Latijnse kleine letter u met ring erboven","Latin capital letter u with double acute":"Latijnse hoofdletter u met dubbele accent aigu","Latin small letter u with double acute":"Latijnse kleine letter u met dubbele accent aigu","Latin capital letter u with ogonek":"Latijnse hoofdletter u met ogonek","Latin small letter u with ogonek":"Latijnse kleine letter u met ogonek","Latin capital letter w with circumflex":"Latijnse hoofdletter w met circumflex","Latin small letter w with circumflex":"Latijnse kleine letter w met circumflex","Latin capital letter y with circumflex":"Latijnse hoofdletter y met circumflex","Latin small letter y with circumflex":"Latijnse kleine letter y met circumflex","Latin capital letter y with diaeresis":"Latijnse hoofdletter y met trema","Latin capital letter z with acute":"Latijnse hoofdletter z met accent aigu","Latin small letter z with acute":"Latijnse kleine letter z met accent aigu","Latin capital letter z with dot above":"Latijnse hoofdletter z met punt erboven","Latin small letter z with dot above":"Latijnse kleine letter z met punt erboven","Latin capital letter z with caron":"Latijnse hoofdletter z met haÄek","Latin small letter z with caron":"Latijnse kleine letter z met haÄek","Latin small letter long s":"Latijnse kleine letter lange s","Less-than sign":"Kleiner-dan teken","Greater-than sign":"Groter-dan teken","Less-than or equal to":"Kleiner-dan of gelijk aan","Greater-than or equal to":"Groter-dan of gelijk aan","En dash":"Half kastlijntje","Em dash":"Kastlijntje",Macron:"Makron",Overline:"Overline","Degree sign":"Graden teken","Minus sign":"Min teken","Plus-minus sign":"Plus-minus teken","Division sign":"Deel teken","Fraction slash":"Breuk teken","Multiplication sign":"Vermenigvuldigingsteken","Latin small letter f with hook":"Latijnse kleine letter f met hoek",Integral:"Integraal","N-ary summation":"N-ary sommatie",Infinity:"Infinity","Square root":"Vierkantswortel","Tilde operator":"Tidle teken","Approximately equal to":"Ongeveer gelijk aan","Almost equal to":"Bijna gelijk aan","Not equal to":"Niet gelijk aan","Identical to":"Gelijk aan","Element of":"Onderdeel van","Not an element of":"Geen onderdeel van","Contains as member":"Bevat als onderdeel","N-ary product":"N-ary product","Logical and":"Logische en","Logical or":"Logische of","Not sign":"Niet teken",Intersection:"Kruispunt",Union:"Unie","Partial differential":"Gedeeltelijk differentieel","For all":"Voor alles","There exists":"Er bestaat","Empty set":"Lege set",Nabla:"Nabla","Asterisk operator":"Asterisk teken","Proportional to":"Verhoudend tot",Angle:"Hoek","Vulgar fraction one quarter":"Gewone breuk een kwart","Vulgar fraction one half":"Gewone breuk een half","Vulgar fraction three quarters":"Gewone breuk driekwart","Single left-pointing angle quotation mark":"Enkel naar links wijzend punthaakje","Single right-pointing angle quotation mark":"Enkel naar rechts wijzend punthaakje","Left-pointing double angle quotation mark":"Naar links wijzende guillemet","Right-pointing double angle quotation mark":"Naar rechts wijzende guillemet","Left single quotation mark":"Linker enkelvoudig aanhalingsteken","Right single quotation mark":"Rechter enkelvoudig aanhalingsteken","Left double quotation mark":"Linker dubbel aanhalingsteken","Right double quotation mark":"Rechter dubbel aanhalingsteken","Single low-9 quotation mark":"Enkelvoudig laag aanhalingsteken","Double low-9 quotation mark":"Dubbel laag aanhalingsteken","Inverted exclamation mark":"Omgekeerd uitroepteken","Inverted question mark":"Omgekeerd vraagteken","Two dot leader":"Dubbele leidende punt","Horizontal ellipsis":"Horizontale ellips","Double dagger":"Dubbele obelisk","Per mille sign":"Promilleteken","Per ten thousand sign":"Basispunt","Double exclamation mark":"Dubbel uitroepteken","Question exclamation mark":"Vraagteken-uitroepteken","Exclamation question mark":"Uitroepteken-vraagteken","Double question mark":"Dubbel vraagteken","Copyright sign":"Copyrightteken","Registered sign":"Geregistreerd handelsmerkteken","Trade mark sign":"Handelsmerkteken","Section sign":"Paragraafsymbool","Paragraph sign":"Paragraaf teken","Reversed paragraph sign":"Omgekeerd paragraaf teken","Character categories":"Karakter categorieën",Styles:"Stijlen","Multiple styles":"Meerdere stijlen","Block styles":"Blok stijlen","Text styles":"Tekst stijlen","Insert table":"Tabel invoegen","Header column":"Titel kolom","Insert column left":"Kolom links invoegen","Insert column right":"Kolom rechts invoegen","Delete column":"Verwijder kolom","Select column":"Selecteer kolom",Column:"Kolom","Header row":"Titel rij","Insert row below":"Rij hieronder invoegen","Insert row above":"Rij hierboven invoegen","Delete row":"Verwijder rij","Select row":"Selecteer rij",Row:"Rij","Merge cell up":"Cel hierboven samenvoegen","Merge cell right":"Cel hierna samenvoegen","Merge cell down":"Cel hieronder samenvoegen","Merge cell left":"Cel hiervoor samenvoegen","Split cell vertically":"Splits cel verticaal","Split cell horizontally":"Splits cel horizontaal","Merge cells":"Cellen samenvoegen","Table toolbar":"Tabel werkbalk","Table properties":"Tabeleigenschappen","Cell properties":"Celeigenschappen",Border:"Rand",Style:"Stijl",Width:"Breedte",Height:"Hoogte",Color:"Kleur",Background:"Achtergrond",Padding:"Opvulling",Dimensions:"Afmetingen","Table cell text alignment":"Tekstuitlijning tabelcel",Alignment:"Uitlijning","Horizontal text alignment toolbar":"Werkbalk voor horizontale tekstuitlijning","Vertical text alignment toolbar":"Werkbalk voor verticale tekstuitlijning","Table alignment toolbar":"Werkbalk tabeluitlijning",None:"Geen",Solid:"Ononderbroken",Dotted:"Stippellijn",Dashed:"Onderbroken",Double:"Dubbel",Groove:"Sleuf",Ridge:"Rand",Inset:"Ingezet",Outset:"Opliggend","Align cell text to the left":"Celtekst links uitlijnen","Align cell text to the center":"Tekst in de cel centreren","Align cell text to the right":"Celtekst rechts uitlijnen","Justify cell text":"Celtekst uitvullen","Align cell text to the top":"Celtekst boven uitlijnen","Align cell text to the middle":"Celtekst in het midden uitlijnen","Align cell text to the bottom":"Celtekst onder uitlijnen","Align table to the left":"Tabel links uitlijnen","Center table":"Tabel centreren","Align table to the right":"Tabel rechts uitlijnen","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"De kleur in niet correct, probeer \"#FF0000\" of \"rgb(255,0,0)\" of \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"De waarde is ongeldig. Probeer '10px' of '2em' of gewoon '2'.","Color picker":"Kleurkiezer","Toggle caption off":"Bijschrift uitzetten","Toggle caption on":"Bijschrift aanzetten","Enter table caption":"Voer tabelbijschrift in","Rich Text Editor":"Tekstbewerker","Editor editing area: %0":"Bewerkingsgebied: %0","Edit block":"Blok aanpassen","Click to edit block":"Klik om blok te bewerken","Drag to move":"Sleep om te verplaatsen",Next:"Volgende",Previous:"Vorige","Editor toolbar":"Editor welkbalk","Dropdown toolbar":"Drop-down werkbalk",Black:"Zwart","Dim grey":"Gedimd grijs",Grey:"Grijs","Light grey":"Lichtgrijs",White:"Wit",Red:"Rood",Orange:"Oranje",Yellow:"Geel","Light green":"Lichtgroen",Green:"Groen",Aquamarine:"Aquamarijn",Turquoise:"Turquoise","Light blue":"Lichtblauw",Blue:"Blauw",Purple:"Paars","Editor block content toolbar":"Inhoud werkbalk voor editorblok","Editor contextual toolbar":"Contextuele werkbalk van editor",HEX:"HEX",Accept:"Accepteren","No results found":"Geen zoekresultaten","No searchable items":"Geen zoekbare items","Editor dialog":"Dialoog bewerker",Close:"Sluiten",Undo:"Ongedaan maken",Redo:"Opnieuw","Upload in progress":"Bezig met uploaden","Widget toolbar":"Widget werkbalk","Insert paragraph before block":"Voeg paragraaf toe voor blok","Insert paragraph after block":"Voeg paragraaf toe na blok","Press Enter to type after or press Shift + Enter to type before the widget":"Druk op Enter om na de widget te typen of druk op Shift + Enter om vóór de widget te typen","Words: %0":"Woorden: %0","Characters: %0":"Tekens: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['nl'] = d['nl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Links uitlijnen","Align right":"Rechts uitlijnen","Align center":"Midden uitlijnen",Justify:"Volledig uitlijnen","Text alignment":"Tekst uitlijning","Text alignment toolbar":"Tekst uitlijning werkbalk",Bold:"Vet",Italic:"Cursief",Underline:"Onderlijnen",Code:"Code",Strikethrough:"Doorhalen",Subscript:"Subscript",Superscript:"Superscript","Block quote":"Blok citaat","Insert code block":"Codeblok invoegen","Plain text":"Platte tekst",Cancel:"Annuleren",Clear:"Wissen","Remove color":"Verwijder kleur","Restore default":"Standaardinstellingen terugzetten",Save:"Opslaan","Show more items":"Meer items weergeven","%0 of %1":"%0 van %1","Cannot upload file:":"Kan bestand niet uploaden:","Rich Text Editor. Editing area: %0":"Rich Text Editor. Bewerkingsgebied: %0","Insert with file manager":"Invoegen met bestandsbeheer","Replace with file manager":"Vervangen met bestandsbeheerder","Insert image with file manager":"Afbeelding invoegen met bestandsbeheer","Replace image with file manager":"Afbeelding vervangen met bestandsbeheerder","Find and replace":"Zoeken en vervangen","Find in text…":"Zoeken in tekst",Find:"Zoeken","Previous result":"Volgende zoeken","Next result":"Vorige zoeken",Replace:"Vervangen","Replace all":"Alles vervangen","Match case":"Hoofdlettergevoelig","Whole words only":"Alleen volledige woorden","Replace with…":"Vervangen door","Text to find must not be empty.":"Dit veld mag niet leeg zijn","Tip: Find some text first in order to replace it.":"Tip: zoek eerst de tekst om hem te vervangen","Advanced options":"Geavanceerde opties","Font Size":"Lettergrootte",Tiny:"Zeer klein",Small:"Klein",Big:"Groot",Huge:"Zeer groot","Font Family":"Lettertype",Default:"Standaard","Font Color":"Tekstkleur","Font Background Color":"Tekst achtergrondkleur","Document colors":"Document kleur",Paragraph:"Paragraaf",Heading:"Koppen","Choose heading":"Kies kop","Heading 1":"Kop 1","Heading 2":"Kop 2","Heading 3":"Kop 3","Heading 4":"Kop 4","Heading 5":"Kop 5","Heading 6":"Kop 6","Type your title":"Voor uw titel in","Type or paste your content here.":"Voer of plak uw inhoud in.","Horizontal line":"Horizontale lijn","HTML object":"HTML object","Increase indent":"Inspringen","Decrease indent":"Minder inspringen",Unlink:"Verwijder link",Link:"Link","Link URL":"Link URL","Link image":"Link afbeelding","Edit link":"Bewerk link","Open link in new tab":"Open link in nieuw tabblad","This link has no URL":"Deze link heeft geen URL","Open in a new tab":"Open een nieuw tabblad",Downloadable:"Downloadbaar","Numbered List":"Genummerde lijst","Bulleted List":"Ongenummerde lijst","To-do List":"To-do lijst","Bulleted list styles toolbar":"Toolbar voor stijlen van opsommingslijsten","Numbered list styles toolbar":"Toolbar voor stijlen van genummerde lijsten","Toggle the disc list style":"Schakel de stijl van lijsten met bulletpoint in","Toggle the circle list style":"Schakel de stijl van lijsten met cirkel in","Toggle the square list style":"Schakel de stijl van lijsten met vierkant in","Toggle the decimal list style":"Schakel de stijl van lijsten met cijfers in","Toggle the decimal with leading zero list style":"Schakel de stijl van lijsten met cijfers voorafgegaan door een nul in","Toggle the lower–roman list style":"Schakel de stijl van lijsten met kleine Romeinse cijfers in","Toggle the upper–roman list style":"Schakel de stijl van lijsten met grote Romeinse cijfers in","Toggle the lower–latin list style":"Schakel de stijl van lijsten met kleine Latijnse letters in","Toggle the upper–latin list style":"Schakel de stijl van lijsten met Latijnse hoofdletters in",Disc:"Schijf",Circle:"Cirkel",Square:"Vierkant",Decimal:"Decimaal","Decimal with leading zero":"Decimaal voorafgegaan door een nul","Lower–roman":"Kleine Romeinse cijfers","Upper-roman":"Grote Romeinse cijfers","Lower-latin":"Kleine Latijnse letters","Upper-latin":"Latijnse hoofdletters","List properties":"Lijsteigenschappen","Start at":"Begin op","Start index must be greater than 0.":"Begin van index moet groter zijn dan 0.","Reversed order":"Omgekeerde volgorde","Remove Format":"Verwijder opmaak","Select all":"Selecteer alles","Show blocks":"Blokken tonen",Source:"Bron","Special characters":"Speciale karakters",All:"Alles",Arrows:"Pijlen",Currency:"Valuta",Latin:"Latijn",Mathematical:"Wiskundig",Text:"Tekst","leftwards simple arrow":"simpele pijl naar links","rightwards simple arrow":"simpele pijl naar rechts","upwards simple arrow":"simpele pijl naar boven","downwards simple arrow":"simpele pijl naar beneden","leftwards double arrow":"linkswijzende dubbele pijl","rightwards double arrow":"rechtswijzende dubbele pijl","upwards double arrow":"bovenwijzende dubbele pijl","downwards double arrow":"benedenwijzende dubbele pijl","leftwards dashed arrow":"linkswijzende gestreepte pijl","rightwards dashed arrow":"rechtswijzende gestreepte pijl","upwards dashed arrow":"bovenwijzende gestreepte pijl","downwards dashed arrow":"benedenwijzende gestreepte pijl","leftwards arrow to bar":"linkswijzende pijl naar streep","rightwards arrow to bar":"rechtswijzende pijl naar streep","upwards arrow to bar":"bovenwijzende pijl naar streep","downwards arrow to bar":"benedenwijzende pijl naar streep","up down arrow with base":"boven beneden pijl met streep","back with leftwards arrow above":"back met linkswijzende pijl erboven","end with leftwards arrow above":"end met linkswijzende pijl erboven","on with exclamation mark with left right arrow above":"on met uitroepteken met links rechts pijl erboven","soon with rightwards arrow above":"soon met rechtswijzende pijl erboven","top with upwards arrow above":"top met bovenwijzende pijl erboven","Dollar sign":"Dollar teken","Euro sign":"Euro teken","Yen sign":"Yen teken","Pound sign":"Pond teken","Cent sign":"Cent teken","Euro-currency sign":"Euro-valuta teken","Colon sign":"Colón teken","Cruzeiro sign":"Cruzeiro teken","French franc sign":"Franse frank teken","Lira sign":"Lira teken","Currency sign":"Valuta teken","Bitcoin sign":"Bitcoin teken","Mill sign":"Mill teken","Naira sign":"Naira teken","Peseta sign":"Peseta teken","Rupee sign":"Roepie teken","Won sign":"Won teken","New sheqel sign":"Nieuwe sjekel teken","Dong sign":"Dong teken","Kip sign":"Kip teken","Tugrik sign":"Tugrik teken","Drachma sign":"Drachme teken","German penny sign":"Duitse penny teken","Peso sign":"Peso teken","Guarani sign":"Guarani teken","Austral sign":"Austral teken","Hryvnia sign":"Grivna teken","Cedi sign":"Cedi teken","Livre tournois sign":"Livre tournois teken","Spesmilo sign":"Spesmilo teken","Tenge sign":"Tenge teken","Indian rupee sign":"Indiaanse roepie teken","Turkish lira sign":"Turkse lira teken","Nordic mark sign":"Noorse mark teken","Manat sign":"Manat teken","Ruble sign":"Roebel teken","Latin capital letter a with macron":"Latijnse hoofdletter a met macron","Latin small letter a with macron":"Latijnse kleine letter a met macron","Latin capital letter a with breve":"Latijnse hoofdletter a met breve","Latin small letter a with breve":"Latijnse kleine letter a met breve","Latin capital letter a with ogonek":"Latijnse hoofdletter a met ogonek","Latin small letter a with ogonek":"Latijnse kleine letter a met ogonek","Latin capital letter c with acute":"Latijnse hoofdletter c met acute","Latin small letter c with acute":"Latijnse kleine letter c met acute","Latin capital letter c with circumflex":"Latijnse hoofdletter c met circumflex","Latin small letter c with circumflex":"Latijnse kleine letter c met circumflex","Latin capital letter c with dot above":"Latijnse hoofdletter c met punt erboven","Latin small letter c with dot above":"Latijnse kleine letter met punt erboven","Latin capital letter c with caron":"Latijnse hoofdletter c met caron","Latin small letter c with caron":"Latijnse kleine letter c met caron","Latin capital letter d with caron":"Latijnse hoofdletter d met caron","Latin small letter d with caron":"Latijnse kleine letter d met caron","Latin capital letter d with stroke":"Latijnse hoofdletter d met dwarsstreep","Latin small letter d with stroke":"Latijnse kleine letter d met dwarsstreep","Latin capital letter e with macron":"Latijnse hoofdletter e met macron","Latin small letter e with macron":"Latijnse kleine letter e met macron","Latin capital letter e with breve":"Latijnse hoofdletter e met breve","Latin small letter e with breve":"Latijnse kleine letter e met breve","Latin capital letter e with dot above":"Latijnse hoofdletter e met punt erboven","Latin small letter e with dot above":"Latijnse kleine letter e met punt erboven","Latin capital letter e with ogonek":"Latijnse hoofdletter e met ogonek","Latin small letter e with ogonek":"Latijnse kleine letter e met ogonek","Latin capital letter e with caron":"Latijnse hoofdletter e met haÄek","Latin small letter e with caron":"Latijnse kleine letter e met haÄek","Latin capital letter g with circumflex":"Latijnse hoofdletter g met circumflex","Latin small letter g with circumflex":"Latijnse kleine letter g met circumflex","Latin capital letter g with breve":"Latijnse hoofdletter g met breve","Latin small letter g with breve":"Latijnse kleine letter g met breve","Latin capital letter g with dot above":"Latijnse hoofdletter g met punt erboven","Latin small letter g with dot above":"Latijnse kleine letter g met punt erboven","Latin capital letter g with cedilla":"Latijnse hoofdletter g met cedille","Latin small letter g with cedilla":"Latijnse kleine letter g met cedille","Latin capital letter h with circumflex":"Latijnse hoofdletter h met circumflex","Latin small letter h with circumflex":"Latijnse kleine letter h met circumflex","Latin capital letter h with stroke":"Latijnse hoofdletter h met macron\n","Latin small letter h with stroke":"Latijnse kleine letter h met macron","Latin capital letter i with tilde":"Latijnse hoofdletter i met tilde","Latin small letter i with tilde":"Latijnse kleine letter i met tilde","Latin capital letter i with macron":"Latijnse hoofdletter i met macron","Latin small letter i with macron":"Latijnse kleine letter i met macron","Latin capital letter i with breve":"Latijnse hoofdletter i met breve","Latin small letter i with breve":"Latijnse kleine letter i met breve","Latin capital letter i with ogonek":"Latijnse hoofdletter i met ogonek","Latin small letter i with ogonek":"Latijnse kleine letter i met ogonek","Latin capital letter i with dot above":"Latijnse hoofdletter i met punt erboven","Latin small letter dotless i":"Latijnse kleine letter i zonder punt","Latin capital ligature ij":"Latijnse hoofdletter ligatuur ij","Latin small ligature ij":"Latijnse kleine ligatuur ij","Latin capital letter j with circumflex":"Latijnse hoofdletter j met circumflex","Latin small letter j with circumflex":"Latijnse kleine letter j met circumflex","Latin capital letter k with cedilla":"Latijnse hoofdletter k met cedille","Latin small letter k with cedilla":"Latijnse kleine letter k met cedille","Latin small letter kra":"Latijnse kleine letter kra","Latin capital letter l with acute":"Latijnse hoofdletter l met accent aigu","Latin small letter l with acute":"Latijnse kleine letter l met accent aigu","Latin capital letter l with cedilla":"Latijnse hoofdletter l met cedille","Latin small letter l with cedilla":"Latijnse kleine letter l met cedille","Latin capital letter l with caron":"Latijnse hoofdletter l met haÄek","Latin small letter l with caron":"Latijnse kleine letter l met haÄek","Latin capital letter l with middle dot":"Latijnse hoofdletter l met punt in het midden","Latin small letter l with middle dot":"Latijnse kleine letter l met punt in het midden","Latin capital letter l with stroke":"Latijnse hoofdletter l met dwarsstreep","Latin small letter l with stroke":"Latijnse kleine letter l met dwarsstreep","Latin capital letter n with acute":"Latijnse hoofdletter n met accent aigu","Latin small letter n with acute":"Latijnse kleine letter n met accent aigu","Latin capital letter n with cedilla":"Latijnse hoofdletter n met cedille","Latin small letter n with cedilla":"Latijnse kleine letter n met cedille","Latin capital letter n with caron":"Latijnse hoofdletter n met haÄek","Latin small letter n with caron":"Latijnse kleine letter n met haÄek","Latin small letter n preceded by apostrophe":"Latijnse kleine letter n voorafgegaan door apostrof","Latin capital letter eng":"Latijnse hoofdletter eng","Latin small letter eng":"Latijnse kleine letter eng","Latin capital letter o with macron":"Latijnse hoofdletter o met macron","Latin small letter o with macron":"Latijnse kleine letter o met macron","Latin capital letter o with breve":"Latijnse hoofdletter o met breve","Latin small letter o with breve":"Latijnse kleine letter o met breve","Latin capital letter o with double acute":"Latijnse hoofdletter o met dubbel accent aigu","Latin small letter o with double acute":"Latijnse kleine letter o met dubbel accent aigu","Latin capital ligature oe":"Latijnse hoofdletter ligatuur oe","Latin small ligature oe":"Latijnse kleine ligatuur oe","Latin capital letter r with acute":"Latijnse hoofdletter r met accent aigu","Latin small letter r with acute":"Latijnse kleine letter r met accent aigu","Latin capital letter r with cedilla":"Latijnse hoofdletter r met cedille","Latin small letter r with cedilla":"Latijnse kleine letter r met cedille","Latin capital letter r with caron":"Latijnse hoofdletter r met haÄek","Latin small letter r with caron":"Latijnse kleine letter r met haÄek","Latin capital letter s with acute":"Latijnse hoofdletter s met accent aigu","Latin small letter s with acute":"Latijnse kleine letter s met accent aigu","Latin capital letter s with circumflex":"Latijnse hoofdletter s met circumflex","Latin small letter s with circumflex":"Latijnse kleine letter s met circumflex","Latin capital letter s with cedilla":"Latijnse hoofdletter s met cedille","Latin small letter s with cedilla":"Latijnse kleine letter s met cedille","Latin capital letter s with caron":"Latijnse hoofdletter s met haÄek","Latin small letter s with caron":"Latijnse kleine letter s met haÄek","Latin capital letter t with cedilla":"Latijnse hoofdletter t met cedille","Latin small letter t with cedilla":"Latijnse kleine letter t met cedille","Latin capital letter t with caron":"Latijnse hoofdletter t met haÄek","Latin small letter t with caron":"Latijnse kleine letter t met haÄek","Latin capital letter t with stroke":"Latijnse hoofdletter t met dwarsstreep","Latin small letter t with stroke":"Latijnse kleine letter t met dwarsstreep","Latin capital letter u with tilde":"Latijnse hoofdletter u met tilde","Latin small letter u with tilde":"Latijnse kleine letter u met tilde","Latin capital letter u with macron":"Latijnse hoofdletter u met macron","Latin small letter u with macron":"Latijnse kleine letter u met macron","Latin capital letter u with breve":"Latijnse hoofdletter u met breve","Latin small letter u with breve":"Latijnse kleine letter u met breve","Latin capital letter u with ring above":"Latijnse hoofdletter u met ring erboven","Latin small letter u with ring above":"Latijnse kleine letter u met ring erboven","Latin capital letter u with double acute":"Latijnse hoofdletter u met dubbele accent aigu","Latin small letter u with double acute":"Latijnse kleine letter u met dubbele accent aigu","Latin capital letter u with ogonek":"Latijnse hoofdletter u met ogonek","Latin small letter u with ogonek":"Latijnse kleine letter u met ogonek","Latin capital letter w with circumflex":"Latijnse hoofdletter w met circumflex","Latin small letter w with circumflex":"Latijnse kleine letter w met circumflex","Latin capital letter y with circumflex":"Latijnse hoofdletter y met circumflex","Latin small letter y with circumflex":"Latijnse kleine letter y met circumflex","Latin capital letter y with diaeresis":"Latijnse hoofdletter y met trema","Latin capital letter z with acute":"Latijnse hoofdletter z met accent aigu","Latin small letter z with acute":"Latijnse kleine letter z met accent aigu","Latin capital letter z with dot above":"Latijnse hoofdletter z met punt erboven","Latin small letter z with dot above":"Latijnse kleine letter z met punt erboven","Latin capital letter z with caron":"Latijnse hoofdletter z met haÄek","Latin small letter z with caron":"Latijnse kleine letter z met haÄek","Latin small letter long s":"Latijnse kleine letter lange s","Less-than sign":"Kleiner-dan teken","Greater-than sign":"Groter-dan teken","Less-than or equal to":"Kleiner-dan of gelijk aan","Greater-than or equal to":"Groter-dan of gelijk aan","En dash":"Half kastlijntje","Em dash":"Kastlijntje",Macron:"Makron",Overline:"Overline","Degree sign":"Graden teken","Minus sign":"Min teken","Plus-minus sign":"Plus-minus teken","Division sign":"Deel teken","Fraction slash":"Breuk teken","Multiplication sign":"Vermenigvuldigingsteken","Latin small letter f with hook":"Latijnse kleine letter f met hoek",Integral:"Integraal","N-ary summation":"N-ary sommatie",Infinity:"Infinity","Square root":"Vierkantswortel","Tilde operator":"Tidle teken","Approximately equal to":"Ongeveer gelijk aan","Almost equal to":"Bijna gelijk aan","Not equal to":"Niet gelijk aan","Identical to":"Gelijk aan","Element of":"Onderdeel van","Not an element of":"Geen onderdeel van","Contains as member":"Bevat als onderdeel","N-ary product":"N-ary product","Logical and":"Logische en","Logical or":"Logische of","Not sign":"Niet teken",Intersection:"Kruispunt",Union:"Unie","Partial differential":"Gedeeltelijk differentieel","For all":"Voor alles","There exists":"Er bestaat","Empty set":"Lege set",Nabla:"Nabla","Asterisk operator":"Asterisk teken","Proportional to":"Verhoudend tot",Angle:"Hoek","Vulgar fraction one quarter":"Gewone breuk een kwart","Vulgar fraction one half":"Gewone breuk een half","Vulgar fraction three quarters":"Gewone breuk driekwart","Single left-pointing angle quotation mark":"Enkel naar links wijzend punthaakje","Single right-pointing angle quotation mark":"Enkel naar rechts wijzend punthaakje","Left-pointing double angle quotation mark":"Naar links wijzende guillemet","Right-pointing double angle quotation mark":"Naar rechts wijzende guillemet","Left single quotation mark":"Linker enkelvoudig aanhalingsteken","Right single quotation mark":"Rechter enkelvoudig aanhalingsteken","Left double quotation mark":"Linker dubbel aanhalingsteken","Right double quotation mark":"Rechter dubbel aanhalingsteken","Single low-9 quotation mark":"Enkelvoudig laag aanhalingsteken","Double low-9 quotation mark":"Dubbel laag aanhalingsteken","Inverted exclamation mark":"Omgekeerd uitroepteken","Inverted question mark":"Omgekeerd vraagteken","Two dot leader":"Dubbele leidende punt","Horizontal ellipsis":"Horizontale ellips","Double dagger":"Dubbele obelisk","Per mille sign":"Promilleteken","Per ten thousand sign":"Basispunt","Double exclamation mark":"Dubbel uitroepteken","Question exclamation mark":"Vraagteken-uitroepteken","Exclamation question mark":"Uitroepteken-vraagteken","Double question mark":"Dubbel vraagteken","Copyright sign":"Copyrightteken","Registered sign":"Geregistreerd handelsmerkteken","Trade mark sign":"Handelsmerkteken","Section sign":"Paragraafsymbool","Paragraph sign":"Paragraaf teken","Reversed paragraph sign":"Omgekeerd paragraaf teken","Character categories":"Karakter categorieën",Styles:"Stijlen","Multiple styles":"Meerdere stijlen","Block styles":"Blok stijlen","Text styles":"Tekst stijlen","Insert table":"Tabel invoegen","Header column":"Titel kolom","Insert column left":"Kolom links invoegen","Insert column right":"Kolom rechts invoegen","Delete column":"Verwijder kolom","Select column":"Selecteer kolom",Column:"Kolom","Header row":"Titel rij","Insert row below":"Rij hieronder invoegen","Insert row above":"Rij hierboven invoegen","Delete row":"Verwijder rij","Select row":"Selecteer rij",Row:"Rij","Merge cell up":"Cel hierboven samenvoegen","Merge cell right":"Cel hierna samenvoegen","Merge cell down":"Cel hieronder samenvoegen","Merge cell left":"Cel hiervoor samenvoegen","Split cell vertically":"Splits cel verticaal","Split cell horizontally":"Splits cel horizontaal","Merge cells":"Cellen samenvoegen","Table toolbar":"Tabel werkbalk","Table properties":"Tabeleigenschappen","Cell properties":"Celeigenschappen",Border:"Rand",Style:"Stijl",Width:"Breedte",Height:"Hoogte",Color:"Kleur",Background:"Achtergrond",Padding:"Opvulling",Dimensions:"Afmetingen","Table cell text alignment":"Tekstuitlijning tabelcel",Alignment:"Uitlijning","Horizontal text alignment toolbar":"Werkbalk voor horizontale tekstuitlijning","Vertical text alignment toolbar":"Werkbalk voor verticale tekstuitlijning","Table alignment toolbar":"Werkbalk tabeluitlijning",None:"Geen",Solid:"Ononderbroken",Dotted:"Stippellijn",Dashed:"Onderbroken",Double:"Dubbel",Groove:"Sleuf",Ridge:"Rand",Inset:"Ingezet",Outset:"Opliggend","Align cell text to the left":"Celtekst links uitlijnen","Align cell text to the center":"Tekst in de cel centreren","Align cell text to the right":"Celtekst rechts uitlijnen","Justify cell text":"Celtekst uitvullen","Align cell text to the top":"Celtekst boven uitlijnen","Align cell text to the middle":"Celtekst in het midden uitlijnen","Align cell text to the bottom":"Celtekst onder uitlijnen","Align table to the left":"Tabel links uitlijnen","Center table":"Tabel centreren","Align table to the right":"Tabel rechts uitlijnen","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"De kleur in niet correct, probeer \"#FF0000\" of \"rgb(255,0,0)\" of \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"De waarde is ongeldig. Probeer '10px' of '2em' of gewoon '2'.","Color picker":"Kleurkiezer","Toggle caption off":"Bijschrift uitzetten","Toggle caption on":"Bijschrift aanzetten","Enter table caption":"Voer tabelbijschrift in","Rich Text Editor":"Tekstbewerker","Editor editing area: %0":"Bewerkingsgebied: %0","Edit block":"Blok aanpassen","Click to edit block":"Klik om blok te bewerken","Drag to move":"Sleep om te verplaatsen",Next:"Volgende",Previous:"Vorige","Editor toolbar":"Editor welkbalk","Dropdown toolbar":"Drop-down werkbalk",Black:"Zwart","Dim grey":"Gedimd grijs",Grey:"Grijs","Light grey":"Lichtgrijs",White:"Wit",Red:"Rood",Orange:"Oranje",Yellow:"Geel","Light green":"Lichtgroen",Green:"Groen",Aquamarine:"Aquamarijn",Turquoise:"Turquoise","Light blue":"Lichtblauw",Blue:"Blauw",Purple:"Paars","Editor block content toolbar":"Inhoud werkbalk voor editorblok","Editor contextual toolbar":"Contextuele werkbalk van editor",HEX:"HEX",Accept:"Accepteren","No results found":"Geen zoekresultaten","No searchable items":"Geen zoekbare items","Editor dialog":"Dialoog bewerker",Close:"Sluiten",Undo:"Ongedaan maken",Redo:"Opnieuw","Upload in progress":"Bezig met uploaden","Widget toolbar":"Widget werkbalk","Insert paragraph before block":"Voeg paragraaf toe voor blok","Insert paragraph after block":"Voeg paragraaf toe na blok","Press Enter to type after or press Shift + Enter to type before the widget":"Druk op Enter om na de widget te typen of druk op Shift + Enter om vóór de widget te typen","Words: %0":"Woorden: %0","Characters: %0":"Tekens: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/no.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/no.js index 410c3021b2462536dbd67530cd2c9711e3fb0712..baf151fb3fb204242966d5e4ef2c2b4a4054eed1 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/no.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/no.js @@ -1 +1 @@ -(function(d){ const l = d['no'] = d['no'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Venstrejuster","Align right":"Høyrejuster","Align center":"Midtstill",Justify:"Blokkjuster","Text alignment":"Tekstjustering","Text alignment toolbar":"Verktøylinje for tekstjustering",Bold:"Fet",Italic:"Kursiv",Underline:"Understreket",Code:"Kode",Strikethrough:"Gjennomstreket",Subscript:"Senket skrift",Superscript:"Hevet skrift","Block quote":"Blokksitat","Insert code block":"Sett inn kodeblokk","Plain text":"Ren tekst",Cancel:"Avbryt",Clear:"Slett","Remove color":"Fjern farge","Restore default":"Tilbakestill til standard",Save:"Lagre","Show more items":"Vis flere elementer","%0 of %1":"%0 av %1","Cannot upload file:":"Kan ikke laste opp fil:","Rich Text Editor. Editing area: %0":"Redigeringsverktøy for rik tekst. RedigeringsomrÃ¥de: %0","Insert with file manager":"Sett inn med filbehandling","Replace with file manager":"Erstatt med filbehandling","Insert image with file manager":"Sett inn bilde med filbehandling","Replace image with file manager":"Erstatt bilde med filbehandling","Find and replace":"Søk og erstatt","Find in text…":"Søk i tekst",Find:"Søk","Previous result":"Forrige resultat","Next result":"Neste resultat",Replace:"Erstatt","Replace all":"Erstatt alt","Match case":"Skill mellom store og smÃ¥ bokstaver","Whole words only":"Kun hele ord","Replace with…":"Erstatt med …","Text to find must not be empty.":"Teksten som skal finnes mÃ¥ ikke være tom","Tip: Find some text first in order to replace it.":"Tips: Finn noe tekst først for Ã¥ kunne erstatte den.","Advanced options":"Avanserte alternativer",Paragraph:"Avsnitt",Heading:"Overskrift","Choose heading":"Velg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"Overskrift 4","Heading 5":"Overskrift 5","Heading 6":"Overskrift 6","Type your title":"Skriv inn tittel","Type or paste your content here.":"Skriv eller lim inn ditt innhold her","Horizontal line":"Horisontal linje","HTML object":"HTML-objekt","Increase indent":"Øk innrykk","Decrease indent":"Reduser innrykk",Unlink:"Fjern lenke",Link:"Lenke","Link URL":"Lenke-URL","Link image":"Bildelenke","Edit link":"Rediger lenke","Open link in new tab":"Ã…pne lenke i ny fane","This link has no URL":"Denne lenken mangler en URL","Open in a new tab":"Ã…pne i ny fane",Downloadable:"Nedlastbar","Numbered List":"Nummerert liste","Bulleted List":"Punktliste","To-do List":"Oppgaveliste","Bulleted list styles toolbar":"Verktøylinje for punktlistestiler","Numbered list styles toolbar":"Verktøylinje for stiler for nummererte lister","Toggle the disc list style":"Veksle disklistestil","Toggle the circle list style":"Veksle sirkellistestil","Toggle the square list style":"Veksle firkantlistestil","Toggle the decimal list style":"Veksle nummerlistestil","Toggle the decimal with leading zero list style":"Veksle listestilen med nummer med foranstilt null","Toggle the lower–roman list style":"Veksle listestilen med smÃ¥ romertall","Toggle the upper–roman list style":"Veksle listestilen med store romertall","Toggle the lower–latin list style":"Veksle listestilen med smÃ¥ latinske tegn","Toggle the upper–latin list style":"Veksle listestilen med store latinske tegn",Disc:"Disk",Circle:"Sirkel",Square:"Firkant",Decimal:"Nummer","Decimal with leading zero":"Nummer med foranstilt null","Lower–roman":"SmÃ¥ romertall","Upper-roman":"Store romertall","Lower-latin":"SmÃ¥ latinske tegn","Upper-latin":"Store latinske tegn","List properties":"Listeegenskaper","Start at":"Start ved","Start index must be greater than 0.":"Startindeks mÃ¥ være større enn 0.","Reversed order":"Motsatt rekkefølge","Remove Format":"Fjern formatering","Select all":"Velg alt ","Show blocks":"Vis blokker",Source:"Kilde","Special characters":"Spesialtegn",All:"Alle",Arrows:"Piltaster",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematisk",Text:"Tekst","leftwards simple arrow":"venstre enkel pil","rightwards simple arrow":"høyre enkel pil","upwards simple arrow":"opp enkel pil","downwards simple arrow":"ned enkel pil","leftwards double arrow":"Dobbel pil mot venstre","rightwards double arrow":"Dobbel pil mot høyre","upwards double arrow":"Dobbel pil opp","downwards double arrow":"Dobbel pil nedover","leftwards dashed arrow":"Stiplet pil mot venstre ","rightwards dashed arrow":"Stiplet pil mot høyre","upwards dashed arrow":"Stiplet pil oppover","downwards dashed arrow":"Stiplet pil nedover","leftwards arrow to bar":"Pil mot venstre til strek","rightwards arrow to bar":"Pil mot høyre til strek","upwards arrow to bar":"Pil oppover til strek ","downwards arrow to bar":"Pil nedover til strek","up down arrow with base":"Pil oppover med base","back with leftwards arrow above":"Tilbake med pil mot venstre over","end with leftwards arrow above":"Avslutt med pil mot venstre over","on with exclamation mark with left right arrow above":"PÃ¥ med utropstegn og venstre-høyre-pil over.","soon with rightwards arrow above":"Snart med pil mot høyre over","top with upwards arrow above":"Topp med pil oppover over","Dollar sign":"Dollartegn","Euro sign":"Eurotegn","Yen sign":"Yentegn","Pound sign":"Pundtegn","Cent sign":"Cent-tegn","Euro-currency sign":"Valutasymbol for Euro","Colon sign":"Kolon","Cruzeiro sign":"Cruzeirotegn","French franc sign":"Valutasymbol for franske franc","Lira sign":"Liretegn","Currency sign":"Valutasymbol","Bitcoin sign":"Bitcoinsymbol","Mill sign":"Milltegn","Naira sign":"Nairategn","Peseta sign":"Pesetategn","Rupee sign":"Riupitegn","Won sign":"Wontegn","New sheqel sign":"Nytt shekeltegn","Dong sign":"Dongtegn","Kip sign":"Kiptegn","Tugrik sign":"Tugriktegn","Drachma sign":"Drakmetegn","German penny sign":"Tysk øretegn","Peso sign":"Pesotegn","Guarani sign":"Guaranitegn","Austral sign":"Australtegn","Hryvnia sign":"Hryvniategn","Cedi sign":"Ceditegn","Livre tournois sign":"Livre tournoistegn","Spesmilo sign":"Spesmilotegn","Tenge sign":"Tengetegn","Indian rupee sign":"Indisk rupitegn","Turkish lira sign":"Tyrkisk liretegn","Nordic mark sign":"Nordisk marktegn","Manat sign":"Manattegn","Ruble sign":"Rubeltegn","Latin capital letter a with macron":"Latinsk stor a med makron ","Latin small letter a with macron":"Latinsk liten a med makron ","Latin capital letter a with breve":"Latinsk stor a med breve","Latin small letter a with breve":"Latinsk liten a med breve","Latin capital letter a with ogonek":"Latinsk stor a med kvist","Latin small letter a with ogonek":"Latinsk liten a med kvist","Latin capital letter c with acute":"Latinsk stor c med akutt aksent","Latin small letter c with acute":"Latinsk liten c med akutt aksent ","Latin capital letter c with circumflex":"Latinsk stor c med cirkumfleks","Latin small letter c with circumflex":"Latinsk liten c med cirkumfleks","Latin capital letter c with dot above":"Latinsk stor c med prikk over","Latin small letter c with dot above":"Latinsk liten c med prikk over","Latin capital letter c with caron":"Latinsk stor c med caron","Latin small letter c with caron":"Latinsk liten c med caron","Latin capital letter d with caron":"Latinsk stor d med caron","Latin small letter d with caron":"Latinsk liten d med caron","Latin capital letter d with stroke":"Latinsk stor d med strek","Latin small letter d with stroke":"Latinsk liten d med strek","Latin capital letter e with macron":"Latinsk stor e med makron","Latin small letter e with macron":"Latinsk liten e med makron","Latin capital letter e with breve":"Latinsk stor e med breve","Latin small letter e with breve":"Latinsk liten e med breve","Latin capital letter e with dot above":"Latinsk stor e med prikk over","Latin small letter e with dot above":"Latinsk liten e med prikk over","Latin capital letter e with ogonek":"Latinsk stor e med kvist","Latin small letter e with ogonek":"Latinsk liten e med kvist","Latin capital letter e with caron":"Latinsk stor e med caron","Latin small letter e with caron":"Latinsk liten e med caron","Latin capital letter g with circumflex":"Latinsk stor g med cirkumfleks","Latin small letter g with circumflex":"Latinsk liten g med cirkumfleks","Latin capital letter g with breve":"Latinsk stor g med breve","Latin small letter g with breve":"Latinsk liten g med breve","Latin capital letter g with dot above":"Latinsk stor g med prikk over","Latin small letter g with dot above":"Latinsk liten g med prikk over","Latin capital letter g with cedilla":"Latinsk stor g med cedille","Latin small letter g with cedilla":"Latinsk liten g med cedille ","Latin capital letter h with circumflex":"Latinsk stor h med cirkumfleks","Latin small letter h with circumflex":"Latinsk liten h med cirkumfleks","Latin capital letter h with stroke":"\nLatinsk stor h med stek","Latin small letter h with stroke":"Latinsk liten h med strek","Latin capital letter i with tilde":"Latinsk stor i med tilde","Latin small letter i with tilde":"Latinsk liten i med tilde","Latin capital letter i with macron":"Latinsk stor i med makron","Latin small letter i with macron":"Latinsk liten i med makron","Latin capital letter i with breve":"Latinsk stor i med breve","Latin small letter i with breve":"Latinsk liten i med breve","Latin capital letter i with ogonek":"Latinsk stor i med kvist","Latin small letter i with ogonek":"Latinsk liten i med kvist","Latin capital letter i with dot above":"Latinsk stor i med prikk over ","Latin small letter dotless i":"Latinsk liten i uten prikk","Latin capital ligature ij":"Latinsk stor digraf ij","Latin small ligature ij":"Latinsk liten digraf ik","Latin capital letter j with circumflex":"Latinsk stor j med cirkumfleks","Latin small letter j with circumflex":"Latinsk liten j med cirkumfleks","Latin capital letter k with cedilla":"Latinsk stor k med cedille","Latin small letter k with cedilla":"Latinsk liten k med cedille","Latin small letter kra":"Latinsk liten kra","Latin capital letter l with acute":"Latinsk stor l med akutt aksent","Latin small letter l with acute":"Latinsk liten l med akutt aksent","Latin capital letter l with cedilla":"Latinsk stor l med cedille","Latin small letter l with cedilla":"Latinsk liten l med cedille","Latin capital letter l with caron":"Latinsk stor l med caron","Latin small letter l with caron":"Latinsk liten l med caron","Latin capital letter l with middle dot":"Latinsk stor l med prikk midt pÃ¥","Latin small letter l with middle dot":"Latinsk liten l med midtprikk","Latin capital letter l with stroke":"Latinsk stor l med strek","Latin small letter l with stroke":"Latinsk liten l med strek","Latin capital letter n with acute":"Latinsk stor n med akutt aksent","Latin small letter n with acute":"Latinsk liten n med akutt aksent ","Latin capital letter n with cedilla":"Latinsk stor n med cedille","Latin small letter n with cedilla":"Latinsk liten n med cedille","Latin capital letter n with caron":"Latinsk stor n med caron","Latin small letter n with caron":"Latinsk liten n med caron","Latin small letter n preceded by apostrophe":"Latinsk liten n med apostroff foran","Latin capital letter eng":"Latinsk stor eng","Latin small letter eng":"Latinsk liten eng","Latin capital letter o with macron":"Latinsk stor o med makron","Latin small letter o with macron":"Latinsk liten o med makron","Latin capital letter o with breve":"Latinsk stor o med breve","Latin small letter o with breve":"Latinsk liten o med breve","Latin capital letter o with double acute":"Latinsk stor o med dobbel akutt aksent","Latin small letter o with double acute":"Latinsk liten o med dobbel akutt aksent","Latin capital ligature oe":"Latinsk stor difraf oe","Latin small ligature oe":"Latinsk liten digraf oe","Latin capital letter r with acute":"Latinsk stor r med akutt aksent","Latin small letter r with acute":"Latinsk liten r med akutt aksent","Latin capital letter r with cedilla":"Latinsk stor r med cedille","Latin small letter r with cedilla":"Latinsk liten r med ceille","Latin capital letter r with caron":"Latinsk stor r med caron","Latin small letter r with caron":"Latinsk liten r med caron","Latin capital letter s with acute":"Latinsk stor s med akutt aksent","Latin small letter s with acute":"Latinsk liten s med akutt aksent","Latin capital letter s with circumflex":"Latinsk stor s med cirkumfleks","Latin small letter s with circumflex":"Latinsk liten s med cirkumfleks","Latin capital letter s with cedilla":"Latinsk stor s med cedille","Latin small letter s with cedilla":"Latinsk liten s med cedille","Latin capital letter s with caron":"Latinsk stor s med caron","Latin small letter s with caron":"Latinsk liten s med caron","Latin capital letter t with cedilla":"Latinsk stor t med cedille","Latin small letter t with cedilla":"Latinsk liten t med cedille","Latin capital letter t with caron":"Latinsk stor t med caron","Latin small letter t with caron":"Latinsk liten t med caron","Latin capital letter t with stroke":"Latinsk stor t med strek","Latin small letter t with stroke":"Latinsk liten t med strek","Latin capital letter u with tilde":"Latinsk stor u med tilde","Latin small letter u with tilde":"Latinsk liten u med tilde","Latin capital letter u with macron":"Latinsk stor u med makron","Latin small letter u with macron":"Latinsk liten u med makron","Latin capital letter u with breve":"Latinsk stor u med breve","Latin small letter u with breve":"Latinsk liten u med breve","Latin capital letter u with ring above":"Latinsk stor u med ring over","Latin small letter u with ring above":"Latinsk liten u med ring over","Latin capital letter u with double acute":"Latinsk stor u med dobbel akutt aksent","Latin small letter u with double acute":"Latinsk liten u med dobbel akutt aksent","Latin capital letter u with ogonek":"Latinsk stor u med kvist","Latin small letter u with ogonek":"Latinsk liten u med kvist","Latin capital letter w with circumflex":"Latings stor w med cirkumfleks","Latin small letter w with circumflex":"Latinsk liten w med cirkumfleks","Latin capital letter y with circumflex":"Latinsk stor y med cirkumfleks","Latin small letter y with circumflex":"Latinsk liten y med cirkumfleks","Latin capital letter y with diaeresis":"Latinsk stor y med trema","Latin capital letter z with acute":"Latinsk stor z med akutt aksent","Latin small letter z with acute":"Latinsk liten z med akutt aksent","Latin capital letter z with dot above":"Latings stor z med prikk over","Latin small letter z with dot above":"Latinsk liten z med prikk over","Latin capital letter z with caron":"Latinsk stor z med caron","Latin small letter z with caron":"Latinsk liten z med caron","Latin small letter long s":"Latinsk liten lang s","Less-than sign":"Mindre enn-tegn","Greater-than sign":"Mer enn-tegn","Less-than or equal to":"Mindre eller lik","Greater-than or equal to":"Stø","En dash":"En-strek","Em dash":"Em-strek",Macron:"Macr",Overline:"Linje over","Degree sign":"Grade","Minus sign":"Minustegn","Plus-minus sign":"Pluss","Division sign":"Deletegn","Fraction slash":"Brøkstrek","Multiplication sign":"Gangetegn","Latin small letter f with hook":"Latinsk liten f med krok",Integral:"Integrert","N-ary summation":"N-ary-summering",Infinity:"Uendelig","Square root":"Kvadratrot","Tilde operator":"Tildeoperatør","Approximately equal to":"Omtrent ik","Almost equal to":"Nesten lik","Not equal to":"Ikke lik","Identical to":"Identisk til","Element of":"Element av","Not an element of":"Ikke et element av","Contains as member":"Inneholder som medlem","N-ary product":"N-ary-produkt","Logical and":"Logisk og","Logical or":"Logisk eller","Not sign":"Ikketegn",Intersection:"Kryss",Union:"Union","Partial differential":"Delvis forskjell","For all":"For alle","There exists":"Det eksisterer","Empty set":"Tomt sett",Nabla:"Nabla","Asterisk operator":"Asteriskoperatør","Proportional to":"Proporsjonell til",Angle:"Vinkel","Vulgar fraction one quarter":"Vulgær brøkdel en kvart","Vulgar fraction one half":"Vulgær brøkdel en halv","Vulgar fraction three quarters":"Vulgær brøkdel tre kvarte","Single left-pointing angle quotation mark":"Enkelt anførselstegn mot venstre","Single right-pointing angle quotation mark":"Enkelt anførselstegn mot høyre","Left-pointing double angle quotation mark":"Venstrepekende dobbelvinklede anførselstegn","Right-pointing double angle quotation mark":"Høyrepekende dobbelvinklede anførselstegn","Left single quotation mark":"Venstre enkelt anførselstegn","Right single quotation mark":"Høyre enkelt anførselstegn","Left double quotation mark":"Venstre dobbelt anførselstegn","Right double quotation mark":"Høyre dobbelt anførselstegn","Single low-9 quotation mark":"Enkelt lav-9-anførselstegn","Double low-9 quotation mark":"Dobbelt lav-9-anførselstegn","Inverted exclamation mark":"Invertert utropstegn","Inverted question mark":"Invertert spørsmÃ¥lstegn","Two dot leader":"To prikker leder","Horizontal ellipsis":"Horisontal ellipse","Double dagger":"Dobbel dolk","Per mille sign":"Per mille-tegn","Per ten thousand sign":"Per ti tusen-tegn","Double exclamation mark":"Dobbelt utropstegn","Question exclamation mark":"SpørmÃ¥l-utropstegn","Exclamation question mark":"Utrops-spørsmÃ¥lstegn","Double question mark":"Dobbelt spørsmÃ¥lstegn","Copyright sign":"Opphavsrettstegn","Registered sign":"Registrert-tegn","Trade mark sign":"Varemerketegn","Section sign":"Seksjontegn","Paragraph sign":"avsnittstegn","Reversed paragraph sign":"Reversert avsnittstegn","Character categories":"Karakterkategorier",Styles:"Stiler","Multiple styles":"Multiple stiler","Block styles":"Blokkstiler","Text styles":"Tekststiler","Insert table":"Sett inn tabell","Header column":"Overskriftkolonne","Insert column left":"Sett inn kolonne til venstre","Insert column right":"Sett inn kolonne til høyre","Delete column":"Slett kolonne","Select column":"Velg kolonne ",Column:"Kolonne","Header row":"Overskriftrad","Insert row below":"Sett inn rad under","Insert row above":"Sett inn rad over","Delete row":"Slett rad","Select row":"Velg rad",Row:"Rad","Merge cell up":"SlÃ¥ sammen celle over","Merge cell right":"SlÃ¥ sammen celle til høyre","Merge cell down":"SlÃ¥ sammen celle under","Merge cell left":"SlÃ¥ sammen celle til venstre","Split cell vertically":"Del opp celle vertikalt","Split cell horizontally":"Del opp celle horisontalt","Merge cells":"SlÃ¥ sammen celler","Table toolbar":"Tabell verktøylinje ","Table properties":"Egenskaper for tabell","Cell properties":"Celleegenskaper ",Border:"Kantlinje ",Style:"Stil ",Width:"Bredde",Height:"Høyde",Color:"Farge",Background:"Bakgrunn ",Padding:"Fylling",Dimensions:"Dimensjoner","Table cell text alignment":"Celle tekstjustering ",Alignment:"Justering","Horizontal text alignment toolbar":"Verktøylinje for justering av tekst horisontalt ","Vertical text alignment toolbar":"Verktøylinje for justering av tekst vertikalt ","Table alignment toolbar":"Verktøylinje for justering av tabell ",None:"Ingen",Solid:"Hel",Dotted:"Stiplede",Dashed:"Stiplet",Double:"Dobbel ",Groove:"Grov",Ridge:"Kjede",Inset:"Innover",Outset:"Utover","Align cell text to the left":"Juster celletekst til venstre ","Align cell text to the center":"Juster celletekst til midten ","Align cell text to the right":"Juster celletekst til høyre ","Justify cell text":"Rett celletekst ","Align cell text to the top":"Juster celletekst til topp","Align cell text to the middle":"Juster celletekst til midten","Align cell text to the bottom":"Juster celletekst til bunn ","Align table to the left":"Juster tabell til venstre ","Center table":"Sentrer tabell ","Align table to the right":"Juster tabell til høyre ","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Ugyldig farge ","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ugyldig verdi ","Color picker":"Fargevalg ","Toggle caption off":"Veksle tabelltekst av","Toggle caption on":"Veksle tabelltekst pÃ¥","Enter table caption":"Legg inn tabelltekst","Rich Text Editor":"Tekstredigeringsverktøy for rik tekst","Editor editing area: %0":"RedigeringsomrÃ¥de for redigeringsverktøyet: %0","Edit block":"Rediger blokk","Click to edit block":"Klikk for Ã¥ redigere blokk","Drag to move":"Dra for Ã¥ flytte",Next:"Neste",Previous:"Forrige","Editor toolbar":"Verktøylinje for redigeringsverktøy","Dropdown toolbar":"Verktøylinje for nedtrekksliste",Black:"Svart","Dim grey":"Svak grÃ¥",Grey:"GrÃ¥","Light grey":"LysegrÃ¥",White:"Hvit",Red:"Rød",Orange:"Oransje",Yellow:"Gul","Light green":"Lysegrønn",Green:"Grønn",Aquamarine:"Akvamarin",Turquoise:"Turkis","Light blue":"LyseblÃ¥",Blue:"BlÃ¥",Purple:"Lilla","Editor block content toolbar":"Verktøylinje for blokkinnhold i redigeringsverktøy","Editor contextual toolbar":"Verktøylinje for kontekst i redigeringsverktøy",HEX:"HEX",Accept:"Godta","No results found":"Ingen resultater","No searchable items":"Ingen søkbare elementer","Editor dialog":"Dialogboks for redigering",Close:"Lukk",Undo:"Angre",Redo:"Gjør om","Upload in progress":"Laster opp fil","Widget toolbar":"Widget verktøylinje ","Insert paragraph before block":"Sett inn paragraf foran blokk","Insert paragraph after block":"Sett inn paragraf etter blokk","Press Enter to type after or press Shift + Enter to type before the widget":"Trykk Enter for Ã¥ skrive etter eller trykk Shift + Enter for Ã¥ skrive før widgeten","Words: %0":"Ord: %0","Characters: %0":"Tegn: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['no'] = d['no'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Venstrejuster","Align right":"Høyrejuster","Align center":"Midtstill",Justify:"Blokkjuster","Text alignment":"Tekstjustering","Text alignment toolbar":"Verktøylinje for tekstjustering",Bold:"Fet",Italic:"Kursiv",Underline:"Understreket",Code:"Kode",Strikethrough:"Gjennomstreket",Subscript:"Senket skrift",Superscript:"Hevet skrift","Block quote":"Blokksitat","Insert code block":"Sett inn kodeblokk","Plain text":"Ren tekst",Cancel:"Avbryt",Clear:"Slett","Remove color":"Fjern farge","Restore default":"Tilbakestill til standard",Save:"Lagre","Show more items":"Vis flere elementer","%0 of %1":"%0 av %1","Cannot upload file:":"Kan ikke laste opp fil:","Rich Text Editor. Editing area: %0":"Redigeringsverktøy for rik tekst. RedigeringsomrÃ¥de: %0","Insert with file manager":"Sett inn med filbehandling","Replace with file manager":"Erstatt med filbehandling","Insert image with file manager":"Sett inn bilde med filbehandling","Replace image with file manager":"Erstatt bilde med filbehandling","Find and replace":"Søk og erstatt","Find in text…":"Søk i tekst",Find:"Søk","Previous result":"Forrige resultat","Next result":"Neste resultat",Replace:"Erstatt","Replace all":"Erstatt alt","Match case":"Skill mellom store og smÃ¥ bokstaver","Whole words only":"Kun hele ord","Replace with…":"Erstatt med …","Text to find must not be empty.":"Teksten som skal finnes mÃ¥ ikke være tom","Tip: Find some text first in order to replace it.":"Tips: Finn noe tekst først for Ã¥ kunne erstatte den.","Advanced options":"Avanserte alternativer","Font Size":"Skriftstørrelse",Tiny:"Veldig liten",Small:"Liten",Big:"Stor",Huge:"Veldig stor","Font Family":"Skrifttypefamilie",Default:"Standard","Font Color":"Skriftfarge","Font Background Color":"Uthevingsfarge for tekst","Document colors":"Dokumentfarger",Paragraph:"Avsnitt",Heading:"Overskrift","Choose heading":"Velg overskrift","Heading 1":"Overskrift 1","Heading 2":"Overskrift 2","Heading 3":"Overskrift 3","Heading 4":"Overskrift 4","Heading 5":"Overskrift 5","Heading 6":"Overskrift 6","Type your title":"Skriv inn tittel","Type or paste your content here.":"Skriv eller lim inn ditt innhold her","Horizontal line":"Horisontal linje","HTML object":"HTML-objekt","Increase indent":"Øk innrykk","Decrease indent":"Reduser innrykk",Unlink:"Fjern lenke",Link:"Lenke","Link URL":"Lenke-URL","Link image":"Bildelenke","Edit link":"Rediger lenke","Open link in new tab":"Ã…pne lenke i ny fane","This link has no URL":"Denne lenken mangler en URL","Open in a new tab":"Ã…pne i ny fane",Downloadable:"Nedlastbar","Numbered List":"Nummerert liste","Bulleted List":"Punktliste","To-do List":"Oppgaveliste","Bulleted list styles toolbar":"Verktøylinje for punktlistestiler","Numbered list styles toolbar":"Verktøylinje for stiler for nummererte lister","Toggle the disc list style":"Veksle disklistestil","Toggle the circle list style":"Veksle sirkellistestil","Toggle the square list style":"Veksle firkantlistestil","Toggle the decimal list style":"Veksle nummerlistestil","Toggle the decimal with leading zero list style":"Veksle listestilen med nummer med foranstilt null","Toggle the lower–roman list style":"Veksle listestilen med smÃ¥ romertall","Toggle the upper–roman list style":"Veksle listestilen med store romertall","Toggle the lower–latin list style":"Veksle listestilen med smÃ¥ latinske tegn","Toggle the upper–latin list style":"Veksle listestilen med store latinske tegn",Disc:"Disk",Circle:"Sirkel",Square:"Firkant",Decimal:"Nummer","Decimal with leading zero":"Nummer med foranstilt null","Lower–roman":"SmÃ¥ romertall","Upper-roman":"Store romertall","Lower-latin":"SmÃ¥ latinske tegn","Upper-latin":"Store latinske tegn","List properties":"Listeegenskaper","Start at":"Start ved","Start index must be greater than 0.":"Startindeks mÃ¥ være større enn 0.","Reversed order":"Motsatt rekkefølge","Remove Format":"Fjern formatering","Select all":"Velg alt ","Show blocks":"Vis blokker",Source:"Kilde","Special characters":"Spesialtegn",All:"Alle",Arrows:"Piltaster",Currency:"Valuta",Latin:"Latin",Mathematical:"Matematisk",Text:"Tekst","leftwards simple arrow":"venstre enkel pil","rightwards simple arrow":"høyre enkel pil","upwards simple arrow":"opp enkel pil","downwards simple arrow":"ned enkel pil","leftwards double arrow":"Dobbel pil mot venstre","rightwards double arrow":"Dobbel pil mot høyre","upwards double arrow":"Dobbel pil opp","downwards double arrow":"Dobbel pil nedover","leftwards dashed arrow":"Stiplet pil mot venstre ","rightwards dashed arrow":"Stiplet pil mot høyre","upwards dashed arrow":"Stiplet pil oppover","downwards dashed arrow":"Stiplet pil nedover","leftwards arrow to bar":"Pil mot venstre til strek","rightwards arrow to bar":"Pil mot høyre til strek","upwards arrow to bar":"Pil oppover til strek ","downwards arrow to bar":"Pil nedover til strek","up down arrow with base":"Pil oppover med base","back with leftwards arrow above":"Tilbake med pil mot venstre over","end with leftwards arrow above":"Avslutt med pil mot venstre over","on with exclamation mark with left right arrow above":"PÃ¥ med utropstegn og venstre-høyre-pil over.","soon with rightwards arrow above":"Snart med pil mot høyre over","top with upwards arrow above":"Topp med pil oppover over","Dollar sign":"Dollartegn","Euro sign":"Eurotegn","Yen sign":"Yentegn","Pound sign":"Pundtegn","Cent sign":"Cent-tegn","Euro-currency sign":"Valutasymbol for Euro","Colon sign":"Kolon","Cruzeiro sign":"Cruzeirotegn","French franc sign":"Valutasymbol for franske franc","Lira sign":"Liretegn","Currency sign":"Valutasymbol","Bitcoin sign":"Bitcoinsymbol","Mill sign":"Milltegn","Naira sign":"Nairategn","Peseta sign":"Pesetategn","Rupee sign":"Riupitegn","Won sign":"Wontegn","New sheqel sign":"Nytt shekeltegn","Dong sign":"Dongtegn","Kip sign":"Kiptegn","Tugrik sign":"Tugriktegn","Drachma sign":"Drakmetegn","German penny sign":"Tysk øretegn","Peso sign":"Pesotegn","Guarani sign":"Guaranitegn","Austral sign":"Australtegn","Hryvnia sign":"Hryvniategn","Cedi sign":"Ceditegn","Livre tournois sign":"Livre tournoistegn","Spesmilo sign":"Spesmilotegn","Tenge sign":"Tengetegn","Indian rupee sign":"Indisk rupitegn","Turkish lira sign":"Tyrkisk liretegn","Nordic mark sign":"Nordisk marktegn","Manat sign":"Manattegn","Ruble sign":"Rubeltegn","Latin capital letter a with macron":"Latinsk stor a med makron ","Latin small letter a with macron":"Latinsk liten a med makron ","Latin capital letter a with breve":"Latinsk stor a med breve","Latin small letter a with breve":"Latinsk liten a med breve","Latin capital letter a with ogonek":"Latinsk stor a med kvist","Latin small letter a with ogonek":"Latinsk liten a med kvist","Latin capital letter c with acute":"Latinsk stor c med akutt aksent","Latin small letter c with acute":"Latinsk liten c med akutt aksent ","Latin capital letter c with circumflex":"Latinsk stor c med cirkumfleks","Latin small letter c with circumflex":"Latinsk liten c med cirkumfleks","Latin capital letter c with dot above":"Latinsk stor c med prikk over","Latin small letter c with dot above":"Latinsk liten c med prikk over","Latin capital letter c with caron":"Latinsk stor c med caron","Latin small letter c with caron":"Latinsk liten c med caron","Latin capital letter d with caron":"Latinsk stor d med caron","Latin small letter d with caron":"Latinsk liten d med caron","Latin capital letter d with stroke":"Latinsk stor d med strek","Latin small letter d with stroke":"Latinsk liten d med strek","Latin capital letter e with macron":"Latinsk stor e med makron","Latin small letter e with macron":"Latinsk liten e med makron","Latin capital letter e with breve":"Latinsk stor e med breve","Latin small letter e with breve":"Latinsk liten e med breve","Latin capital letter e with dot above":"Latinsk stor e med prikk over","Latin small letter e with dot above":"Latinsk liten e med prikk over","Latin capital letter e with ogonek":"Latinsk stor e med kvist","Latin small letter e with ogonek":"Latinsk liten e med kvist","Latin capital letter e with caron":"Latinsk stor e med caron","Latin small letter e with caron":"Latinsk liten e med caron","Latin capital letter g with circumflex":"Latinsk stor g med cirkumfleks","Latin small letter g with circumflex":"Latinsk liten g med cirkumfleks","Latin capital letter g with breve":"Latinsk stor g med breve","Latin small letter g with breve":"Latinsk liten g med breve","Latin capital letter g with dot above":"Latinsk stor g med prikk over","Latin small letter g with dot above":"Latinsk liten g med prikk over","Latin capital letter g with cedilla":"Latinsk stor g med cedille","Latin small letter g with cedilla":"Latinsk liten g med cedille ","Latin capital letter h with circumflex":"Latinsk stor h med cirkumfleks","Latin small letter h with circumflex":"Latinsk liten h med cirkumfleks","Latin capital letter h with stroke":"\nLatinsk stor h med stek","Latin small letter h with stroke":"Latinsk liten h med strek","Latin capital letter i with tilde":"Latinsk stor i med tilde","Latin small letter i with tilde":"Latinsk liten i med tilde","Latin capital letter i with macron":"Latinsk stor i med makron","Latin small letter i with macron":"Latinsk liten i med makron","Latin capital letter i with breve":"Latinsk stor i med breve","Latin small letter i with breve":"Latinsk liten i med breve","Latin capital letter i with ogonek":"Latinsk stor i med kvist","Latin small letter i with ogonek":"Latinsk liten i med kvist","Latin capital letter i with dot above":"Latinsk stor i med prikk over ","Latin small letter dotless i":"Latinsk liten i uten prikk","Latin capital ligature ij":"Latinsk stor digraf ij","Latin small ligature ij":"Latinsk liten digraf ik","Latin capital letter j with circumflex":"Latinsk stor j med cirkumfleks","Latin small letter j with circumflex":"Latinsk liten j med cirkumfleks","Latin capital letter k with cedilla":"Latinsk stor k med cedille","Latin small letter k with cedilla":"Latinsk liten k med cedille","Latin small letter kra":"Latinsk liten kra","Latin capital letter l with acute":"Latinsk stor l med akutt aksent","Latin small letter l with acute":"Latinsk liten l med akutt aksent","Latin capital letter l with cedilla":"Latinsk stor l med cedille","Latin small letter l with cedilla":"Latinsk liten l med cedille","Latin capital letter l with caron":"Latinsk stor l med caron","Latin small letter l with caron":"Latinsk liten l med caron","Latin capital letter l with middle dot":"Latinsk stor l med prikk midt pÃ¥","Latin small letter l with middle dot":"Latinsk liten l med midtprikk","Latin capital letter l with stroke":"Latinsk stor l med strek","Latin small letter l with stroke":"Latinsk liten l med strek","Latin capital letter n with acute":"Latinsk stor n med akutt aksent","Latin small letter n with acute":"Latinsk liten n med akutt aksent ","Latin capital letter n with cedilla":"Latinsk stor n med cedille","Latin small letter n with cedilla":"Latinsk liten n med cedille","Latin capital letter n with caron":"Latinsk stor n med caron","Latin small letter n with caron":"Latinsk liten n med caron","Latin small letter n preceded by apostrophe":"Latinsk liten n med apostroff foran","Latin capital letter eng":"Latinsk stor eng","Latin small letter eng":"Latinsk liten eng","Latin capital letter o with macron":"Latinsk stor o med makron","Latin small letter o with macron":"Latinsk liten o med makron","Latin capital letter o with breve":"Latinsk stor o med breve","Latin small letter o with breve":"Latinsk liten o med breve","Latin capital letter o with double acute":"Latinsk stor o med dobbel akutt aksent","Latin small letter o with double acute":"Latinsk liten o med dobbel akutt aksent","Latin capital ligature oe":"Latinsk stor difraf oe","Latin small ligature oe":"Latinsk liten digraf oe","Latin capital letter r with acute":"Latinsk stor r med akutt aksent","Latin small letter r with acute":"Latinsk liten r med akutt aksent","Latin capital letter r with cedilla":"Latinsk stor r med cedille","Latin small letter r with cedilla":"Latinsk liten r med ceille","Latin capital letter r with caron":"Latinsk stor r med caron","Latin small letter r with caron":"Latinsk liten r med caron","Latin capital letter s with acute":"Latinsk stor s med akutt aksent","Latin small letter s with acute":"Latinsk liten s med akutt aksent","Latin capital letter s with circumflex":"Latinsk stor s med cirkumfleks","Latin small letter s with circumflex":"Latinsk liten s med cirkumfleks","Latin capital letter s with cedilla":"Latinsk stor s med cedille","Latin small letter s with cedilla":"Latinsk liten s med cedille","Latin capital letter s with caron":"Latinsk stor s med caron","Latin small letter s with caron":"Latinsk liten s med caron","Latin capital letter t with cedilla":"Latinsk stor t med cedille","Latin small letter t with cedilla":"Latinsk liten t med cedille","Latin capital letter t with caron":"Latinsk stor t med caron","Latin small letter t with caron":"Latinsk liten t med caron","Latin capital letter t with stroke":"Latinsk stor t med strek","Latin small letter t with stroke":"Latinsk liten t med strek","Latin capital letter u with tilde":"Latinsk stor u med tilde","Latin small letter u with tilde":"Latinsk liten u med tilde","Latin capital letter u with macron":"Latinsk stor u med makron","Latin small letter u with macron":"Latinsk liten u med makron","Latin capital letter u with breve":"Latinsk stor u med breve","Latin small letter u with breve":"Latinsk liten u med breve","Latin capital letter u with ring above":"Latinsk stor u med ring over","Latin small letter u with ring above":"Latinsk liten u med ring over","Latin capital letter u with double acute":"Latinsk stor u med dobbel akutt aksent","Latin small letter u with double acute":"Latinsk liten u med dobbel akutt aksent","Latin capital letter u with ogonek":"Latinsk stor u med kvist","Latin small letter u with ogonek":"Latinsk liten u med kvist","Latin capital letter w with circumflex":"Latings stor w med cirkumfleks","Latin small letter w with circumflex":"Latinsk liten w med cirkumfleks","Latin capital letter y with circumflex":"Latinsk stor y med cirkumfleks","Latin small letter y with circumflex":"Latinsk liten y med cirkumfleks","Latin capital letter y with diaeresis":"Latinsk stor y med trema","Latin capital letter z with acute":"Latinsk stor z med akutt aksent","Latin small letter z with acute":"Latinsk liten z med akutt aksent","Latin capital letter z with dot above":"Latings stor z med prikk over","Latin small letter z with dot above":"Latinsk liten z med prikk over","Latin capital letter z with caron":"Latinsk stor z med caron","Latin small letter z with caron":"Latinsk liten z med caron","Latin small letter long s":"Latinsk liten lang s","Less-than sign":"Mindre enn-tegn","Greater-than sign":"Mer enn-tegn","Less-than or equal to":"Mindre eller lik","Greater-than or equal to":"Stø","En dash":"En-strek","Em dash":"Em-strek",Macron:"Macr",Overline:"Linje over","Degree sign":"Grade","Minus sign":"Minustegn","Plus-minus sign":"Pluss","Division sign":"Deletegn","Fraction slash":"Brøkstrek","Multiplication sign":"Gangetegn","Latin small letter f with hook":"Latinsk liten f med krok",Integral:"Integrert","N-ary summation":"N-ary-summering",Infinity:"Uendelig","Square root":"Kvadratrot","Tilde operator":"Tildeoperatør","Approximately equal to":"Omtrent ik","Almost equal to":"Nesten lik","Not equal to":"Ikke lik","Identical to":"Identisk til","Element of":"Element av","Not an element of":"Ikke et element av","Contains as member":"Inneholder som medlem","N-ary product":"N-ary-produkt","Logical and":"Logisk og","Logical or":"Logisk eller","Not sign":"Ikketegn",Intersection:"Kryss",Union:"Union","Partial differential":"Delvis forskjell","For all":"For alle","There exists":"Det eksisterer","Empty set":"Tomt sett",Nabla:"Nabla","Asterisk operator":"Asteriskoperatør","Proportional to":"Proporsjonell til",Angle:"Vinkel","Vulgar fraction one quarter":"Vulgær brøkdel en kvart","Vulgar fraction one half":"Vulgær brøkdel en halv","Vulgar fraction three quarters":"Vulgær brøkdel tre kvarte","Single left-pointing angle quotation mark":"Enkelt anførselstegn mot venstre","Single right-pointing angle quotation mark":"Enkelt anførselstegn mot høyre","Left-pointing double angle quotation mark":"Venstrepekende dobbelvinklede anførselstegn","Right-pointing double angle quotation mark":"Høyrepekende dobbelvinklede anførselstegn","Left single quotation mark":"Venstre enkelt anførselstegn","Right single quotation mark":"Høyre enkelt anførselstegn","Left double quotation mark":"Venstre dobbelt anførselstegn","Right double quotation mark":"Høyre dobbelt anførselstegn","Single low-9 quotation mark":"Enkelt lav-9-anførselstegn","Double low-9 quotation mark":"Dobbelt lav-9-anførselstegn","Inverted exclamation mark":"Invertert utropstegn","Inverted question mark":"Invertert spørsmÃ¥lstegn","Two dot leader":"To prikker leder","Horizontal ellipsis":"Horisontal ellipse","Double dagger":"Dobbel dolk","Per mille sign":"Per mille-tegn","Per ten thousand sign":"Per ti tusen-tegn","Double exclamation mark":"Dobbelt utropstegn","Question exclamation mark":"SpørmÃ¥l-utropstegn","Exclamation question mark":"Utrops-spørsmÃ¥lstegn","Double question mark":"Dobbelt spørsmÃ¥lstegn","Copyright sign":"Opphavsrettstegn","Registered sign":"Registrert-tegn","Trade mark sign":"Varemerketegn","Section sign":"Seksjontegn","Paragraph sign":"avsnittstegn","Reversed paragraph sign":"Reversert avsnittstegn","Character categories":"Karakterkategorier",Styles:"Stiler","Multiple styles":"Multiple stiler","Block styles":"Blokkstiler","Text styles":"Tekststiler","Insert table":"Sett inn tabell","Header column":"Overskriftkolonne","Insert column left":"Sett inn kolonne til venstre","Insert column right":"Sett inn kolonne til høyre","Delete column":"Slett kolonne","Select column":"Velg kolonne ",Column:"Kolonne","Header row":"Overskriftrad","Insert row below":"Sett inn rad under","Insert row above":"Sett inn rad over","Delete row":"Slett rad","Select row":"Velg rad",Row:"Rad","Merge cell up":"SlÃ¥ sammen celle over","Merge cell right":"SlÃ¥ sammen celle til høyre","Merge cell down":"SlÃ¥ sammen celle under","Merge cell left":"SlÃ¥ sammen celle til venstre","Split cell vertically":"Del opp celle vertikalt","Split cell horizontally":"Del opp celle horisontalt","Merge cells":"SlÃ¥ sammen celler","Table toolbar":"Tabell verktøylinje ","Table properties":"Egenskaper for tabell","Cell properties":"Celleegenskaper ",Border:"Kantlinje ",Style:"Stil ",Width:"Bredde",Height:"Høyde",Color:"Farge",Background:"Bakgrunn ",Padding:"Fylling",Dimensions:"Dimensjoner","Table cell text alignment":"Celle tekstjustering ",Alignment:"Justering","Horizontal text alignment toolbar":"Verktøylinje for justering av tekst horisontalt ","Vertical text alignment toolbar":"Verktøylinje for justering av tekst vertikalt ","Table alignment toolbar":"Verktøylinje for justering av tabell ",None:"Ingen",Solid:"Hel",Dotted:"Stiplede",Dashed:"Stiplet",Double:"Dobbel ",Groove:"Grov",Ridge:"Kjede",Inset:"Innover",Outset:"Utover","Align cell text to the left":"Juster celletekst til venstre ","Align cell text to the center":"Juster celletekst til midten ","Align cell text to the right":"Juster celletekst til høyre ","Justify cell text":"Rett celletekst ","Align cell text to the top":"Juster celletekst til topp","Align cell text to the middle":"Juster celletekst til midten","Align cell text to the bottom":"Juster celletekst til bunn ","Align table to the left":"Juster tabell til venstre ","Center table":"Sentrer tabell ","Align table to the right":"Juster tabell til høyre ","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Ugyldig farge ","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ugyldig verdi ","Color picker":"Fargevalg ","Toggle caption off":"Veksle tabelltekst av","Toggle caption on":"Veksle tabelltekst pÃ¥","Enter table caption":"Legg inn tabelltekst","Rich Text Editor":"Tekstredigeringsverktøy for rik tekst","Editor editing area: %0":"RedigeringsomrÃ¥de for redigeringsverktøyet: %0","Edit block":"Rediger blokk","Click to edit block":"Klikk for Ã¥ redigere blokk","Drag to move":"Dra for Ã¥ flytte",Next:"Neste",Previous:"Forrige","Editor toolbar":"Verktøylinje for redigeringsverktøy","Dropdown toolbar":"Verktøylinje for nedtrekksliste",Black:"Svart","Dim grey":"Svak grÃ¥",Grey:"GrÃ¥","Light grey":"LysegrÃ¥",White:"Hvit",Red:"Rød",Orange:"Oransje",Yellow:"Gul","Light green":"Lysegrønn",Green:"Grønn",Aquamarine:"Akvamarin",Turquoise:"Turkis","Light blue":"LyseblÃ¥",Blue:"BlÃ¥",Purple:"Lilla","Editor block content toolbar":"Verktøylinje for blokkinnhold i redigeringsverktøy","Editor contextual toolbar":"Verktøylinje for kontekst i redigeringsverktøy",HEX:"HEX",Accept:"Godta","No results found":"Ingen resultater","No searchable items":"Ingen søkbare elementer","Editor dialog":"Dialogboks for redigering",Close:"Lukk",Undo:"Angre",Redo:"Gjør om","Upload in progress":"Laster opp fil","Widget toolbar":"Widget verktøylinje ","Insert paragraph before block":"Sett inn paragraf foran blokk","Insert paragraph after block":"Sett inn paragraf etter blokk","Press Enter to type after or press Shift + Enter to type before the widget":"Trykk Enter for Ã¥ skrive etter eller trykk Shift + Enter for Ã¥ skrive før widgeten","Words: %0":"Ord: %0","Characters: %0":"Tegn: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pl.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pl.js index 5def5b18a8df3d3f6d04b7c4b248af366a8d7114..b0a1b192efcd7783323a1a0e1bf52d784dfc0838 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pl.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pl.js @@ -1 +1 @@ -(function(d){ const l = d['pl'] = d['pl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Wyrównaj do lewej","Align right":"Wyrównaj do prawej","Align center":"Wyrównaj do Å›rodka",Justify:"Wyrównaj obustronnie","Text alignment":"Wyrównanie tekstu","Text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu",Bold:"Pogrubienie",Italic:"Kursywa",Underline:"PodkreÅ›lenie",Code:"Kod",Strikethrough:"PrzekreÅ›lenie",Subscript:"Indeks dolny",Superscript:"Indeks górny","Block quote":"Cytat blokowy","Insert code block":"Wstaw blok kodu","Plain text":"ZwykÅ‚y tekst",Cancel:"Anuluj",Clear:"Wyczyść","Remove color":"UsuÅ„ kolor","Restore default":"Przywróć domyÅ›lne",Save:"Zapisz","Show more items":"Pokaż wiÄ™cej","%0 of %1":"%0 z %1","Cannot upload file:":"Nie można przesÅ‚ać pliku:","Rich Text Editor. Editing area: %0":"Edytor tekstu. Obszar edycji: %0","Insert with file manager":"Wstaw za pomocÄ… menedżera plików","Replace with file manager":"ZastÄ…p za pomocÄ… menedżera plików","Insert image with file manager":"Wstaw obraz za pomocÄ… menedżera plików","Replace image with file manager":"ZastÄ…p obraz za pomocÄ… menedżera plików","Find and replace":"Znajdź i zamieÅ„","Find in text…":"Znajdź…",Find:"Znajdź","Previous result":"Poprzedni","Next result":"NastÄ™pny",Replace:"ZamieÅ„","Replace all":"ZamieÅ„ wszystko","Match case":"UwzglÄ™dnij wielkość liter","Whole words only":"Znajdź tylko caÅ‚e wyrazy","Replace with…":"ZamieÅ„ na…","Text to find must not be empty.":"Szukany tekst nie może być pusty.","Tip: Find some text first in order to replace it.":"Podpowiedź: Znajdź jakiÅ› tekst, aby go zamienić.","Advanced options":"Opcje zaawansowane",Paragraph:"Akapit",Heading:"Nagłówek","Choose heading":"Wybierz nagłówek","Heading 1":"Nagłówek 1","Heading 2":"Nagłówek 2","Heading 3":"Nagłówek 3","Heading 4":"Nagłówek 4","Heading 5":"Nagłówek 5","Heading 6":"Nagłówek 6","Type your title":"Podaj tytuÅ‚","Type or paste your content here.":"Wpisz lub wklej tutaj treść dokumentu.","Horizontal line":"Linia pozioma","HTML object":"Obiekt HTML","Increase indent":"ZwiÄ™ksz wciÄ™cie","Decrease indent":"Zmniejsz wciÄ™cie",Unlink:"UsuÅ„ odnoÅ›nik",Link:"Wstaw odnoÅ›nik","Link URL":"Adres URL","Link image":"Wstaw odnoÅ›nik do obrazka","Edit link":"Edytuj odnoÅ›nik","Open link in new tab":"Otwórz odnoÅ›nik w nowej zakÅ‚adce","This link has no URL":"Nie podano adresu URL odnoÅ›nika","Open in a new tab":"Otwórz w nowej zakÅ‚adce",Downloadable:"Do pobrania","Numbered List":"Lista numerowana","Bulleted List":"Lista wypunktowana","To-do List":"Lista rzeczy do zrobienia","Bulleted list styles toolbar":"Pasek z narzÄ™dziami: style listy z punktorami","Numbered list styles toolbar":"Pasek z narzÄ™dziami: style listy numerowanej","Toggle the disc list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dyskâ€","Toggle the circle list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „kółkoâ€","Toggle the square list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „kwadratâ€","Toggle the decimal list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dziesiÄ™tneâ€","Toggle the decimal with leading zero list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dziesiÄ™tne z zerem wiodÄ…cymâ€","Toggle the lower–roman list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „maÅ‚e cyfry rzymskieâ€","Toggle the upper–roman list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „wielkie cyfry rzymskieâ€","Toggle the lower–latin list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „alfabet Å‚aciÅ„ski – maÅ‚e literyâ€","Toggle the upper–latin list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „alfabet Å‚aciÅ„ski – wielkie literyâ€",Disc:"Dysk",Circle:"Kółko",Square:"Kwadrat",Decimal:"DziesiÄ™tne","Decimal with leading zero":"DziesiÄ™tne z zerem wiodÄ…cym","Lower–roman":"MaÅ‚e cyfry rzymskie","Upper-roman":"Wielkie cyfry rzymskie","Lower-latin":"Alfabet Å‚aciÅ„ski – maÅ‚e litery","Upper-latin":"Alfabet Å‚aciÅ„ski – wielkie litery","List properties":"WÅ‚aÅ›ciwoÅ›ci listy","Start at":"Zacznij od","Start index must be greater than 0.":"Wartość poczÄ…tkowa musi być wiÄ™ksza niż 0.","Reversed order":"Odwrócona kolejność","Remove Format":"UsuÅ„ formatowanie","Select all":"Zaznacz wszystko","Show blocks":"WyÅ›wietl bloki",Source:"ŹródÅ‚o","Special characters":"Znaki specjalne",All:"Wszystko",Arrows:"StrzaÅ‚ki",Currency:"Waluta",Latin:"ÅaciÅ„ski",Mathematical:"Matematyczne",Text:"Tekst","leftwards simple arrow":"prosta strzaÅ‚ka w lewo","rightwards simple arrow":"prosta strzaÅ‚ka w prawo","upwards simple arrow":"prosta strzaÅ‚ka w górÄ™","downwards simple arrow":"prosta strzaÅ‚ka w dół","leftwards double arrow":"podwójna strzaÅ‚ka w lewo","rightwards double arrow":"podwójna strzaÅ‚ka w prawo","upwards double arrow":"podwójna strzaÅ‚ka w górÄ™","downwards double arrow":"podwójna strzaÅ‚ka w dół","leftwards dashed arrow":"przerywana strzaÅ‚ka w lewo","rightwards dashed arrow":"przerywana strzaÅ‚ka w prawo","upwards dashed arrow":"przerywana strzaÅ‚ka w górÄ™","downwards dashed arrow":"przerywana strzaÅ‚ka w dół","leftwards arrow to bar":"strzaÅ‚ka w lewo do belki","rightwards arrow to bar":"strzaÅ‚ka w prawo do belki","upwards arrow to bar":"strzaÅ‚ka w górÄ™ do belki","downwards arrow to bar":"strzaÅ‚ka w dół do belki","up down arrow with base":"strzaÅ‚ka w górÄ™ i w dół z podstawÄ…","back with leftwards arrow above":"do tyÅ‚u ze strzaÅ‚kÄ… w lewo powyżej","end with leftwards arrow above":"koniec ze strzaÅ‚kÄ… w lewo powyżej","on with exclamation mark with left right arrow above":"na z wykrzyknikiem i strzaÅ‚kÄ… w lewo i prawo powyżej","soon with rightwards arrow above":"wkrótce ze strzaÅ‚kÄ… w prawo powyżej","top with upwards arrow above":"do góry ze strzaÅ‚kÄ… w górÄ™ powyżej","Dollar sign":"Znak dolara","Euro sign":"Znak euro","Yen sign":"Znak jena","Pound sign":"Znak funta","Cent sign":"Znak centa","Euro-currency sign":"Znak euro","Colon sign":"Znak colona","Cruzeiro sign":"Znak cruzeiro","French franc sign":"Znak franka francuskiego","Lira sign":"Znak liry","Currency sign":"Znak waluty","Bitcoin sign":"Znak bitcoina","Mill sign":"Symbol mila","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 sign":"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":"Symbol liwra turoÅ„skiego","Spesmilo sign":"Symbol spesmilo","Tenge sign":"Znak tenge","Indian rupee sign":"Znak rupii indyjskiej","Turkish lira sign":"Znak liry tureckiej","Nordic mark sign":"Znak marki nordyckiej","Manat sign":"Znak manata","Ruble sign":"Znak rubla","Latin capital letter a with macron":"ÅaciÅ„ska wielka litera a z makronem","Latin small letter a with macron":"ÅaciÅ„ska maÅ‚a litera a z makronem","Latin capital letter a with breve":"ÅaciÅ„ska wielka litera a z Å‚uczkiem","Latin small letter a with breve":"ÅaciÅ„ska maÅ‚a litera a z Å‚uczkiem","Latin capital letter a with ogonek":"ÅaciÅ„ska wielka litera a z ogonkiem","Latin small letter a with ogonek":"ÅaciÅ„ska maÅ‚a litera a z ogonkiem","Latin capital letter c with acute":"ÅaciÅ„ska wielka litera c z kreskÄ…","Latin small letter c with acute":"ÅaciÅ„ska maÅ‚a litera c z kreskÄ…","Latin capital letter c with circumflex":"ÅaciÅ„ska wielka litera c z daszkiem","Latin small letter c with circumflex":"ÅaciÅ„ska maÅ‚a litera c z daszkiem","Latin capital letter c with dot above":"ÅaciÅ„ska wielka litera c z kropkÄ… powyżej","Latin small letter c with dot above":"ÅaciÅ„ska maÅ‚a litera c z kropkÄ… powyżej","Latin capital letter c with caron":"ÅaciÅ„ska wielka litera c z ptaszkiem","Latin small letter c with caron":"ÅaciÅ„ska maÅ‚a litera c z ptaszkiem","Latin capital letter d with caron":"ÅaciÅ„ska wielka litera d z ptaszkiem","Latin small letter d with caron":"ÅaciÅ„ska maÅ‚a litera d z ptaszkiem","Latin capital letter d with stroke":"ÅaciÅ„ska wielka litera d z przekreÅ›leniem","Latin small letter d with stroke":"ÅaciÅ„ska maÅ‚a litera d z przekreÅ›leniem","Latin capital letter e with macron":"ÅaciÅ„ska wielka litera e z makronem","Latin small letter e with macron":"ÅaciÅ„ska maÅ‚a litera e z makronem","Latin capital letter e with breve":"ÅaciÅ„ska wielka litera e z Å‚uczkiem","Latin small letter e with breve":"ÅaciÅ„ska maÅ‚a litera e z Å‚uczkiem","Latin capital letter e with dot above":"ÅaciÅ„ska wielka litera e z kropkÄ… powyżej","Latin small letter e with dot above":"ÅaciÅ„ska maÅ‚a litera e z kropkÄ… powyżej","Latin capital letter e with ogonek":"ÅaciÅ„ska wielka litera e z ogonkiem","Latin small letter e with ogonek":"ÅaciÅ„ska maÅ‚a litera e z ogonkiem","Latin capital letter e with caron":"ÅaciÅ„ska wielka litera e z ptaszkiem","Latin small letter e with caron":"ÅaciÅ„ska maÅ‚a litera e z ptaszkiem","Latin capital letter g with circumflex":"ÅaciÅ„ska wielka litera g z daszkiem","Latin small letter g with circumflex":"ÅaciÅ„ska maÅ‚a litera g z daszkiem","Latin capital letter g with breve":"ÅaciÅ„ska wielka litera g z Å‚uczkiem","Latin small letter g with breve":"ÅaciÅ„ska maÅ‚a litera g z Å‚uczkiem","Latin capital letter g with dot above":"ÅaciÅ„ska wielka litera g z kropkÄ… powyżej","Latin small letter g with dot above":"ÅaciÅ„ska maÅ‚a litera g z kropkÄ… powyżej","Latin capital letter g with cedilla":"ÅaciÅ„ska wielka litera g z haczykiem","Latin small letter g with cedilla":"ÅaciÅ„ska maÅ‚a litera g z haczykiem","Latin capital letter h with circumflex":"ÅaciÅ„ska wielka litera h z daszkiem","Latin small letter h with circumflex":"ÅaciÅ„ska maÅ‚a litera h z daszkiem","Latin capital letter h with stroke":"ÅaciÅ„ska wielka litera h z przekreÅ›leniem","Latin small letter h with stroke":"ÅaciÅ„ska maÅ‚a litera h z przekreÅ›leniem","Latin capital letter i with tilde":" ÅaciÅ„ska wielka litera i z tyldÄ…","Latin small letter i with tilde":"ÅaciÅ„ska maÅ‚a litera i z tyldÄ…","Latin capital letter i with macron":"ÅaciÅ„ska wielka litera i z makronem","Latin small letter i with macron":"ÅaciÅ„ska maÅ‚a litera i z makronem","Latin capital letter i with breve":"ÅaciÅ„ska wielka litera i z Å‚uczkiem","Latin small letter i with breve":"ÅaciÅ„ska maÅ‚a litera i z Å‚uczkiem","Latin capital letter i with ogonek":"ÅaciÅ„ska wielka litera i z ogonkiem","Latin small letter i with ogonek":"ÅaciÅ„ska maÅ‚a litera i z ogonkiem","Latin capital letter i with dot above":"ÅaciÅ„ska wielka litera i z kropkÄ… powyżej","Latin small letter dotless i":"ÅaciÅ„ska maÅ‚a litera i bez kropki","Latin capital ligature ij":"ÅaciÅ„ska wielka ligatura ij","Latin small ligature ij":"ÅaciÅ„ska maÅ‚a ligatura ij","Latin capital letter j with circumflex":"ÅaciÅ„ska wielka litera j z daszkiem","Latin small letter j with circumflex":"ÅaciÅ„ska maÅ‚a litera j z daszkiem","Latin capital letter k with cedilla":"ÅaciÅ„ska wielka litera k z haczykiem","Latin small letter k with cedilla":"ÅaciÅ„ska maÅ‚a litera k z haczykiem","Latin small letter kra":"ÅaciÅ„ska maÅ‚a litera kra","Latin capital letter l with acute":"ÅaciÅ„ska wielka litera l z kreskÄ…","Latin small letter l with acute":"ÅaciÅ„ska maÅ‚a litera l z kreskÄ…","Latin capital letter l with cedilla":"ÅaciÅ„ska wielka litera l z haczykiem","Latin small letter l with cedilla":"ÅaciÅ„ska maÅ‚a litera l z haczykiem","Latin capital letter l with caron":"ÅaciÅ„ska wielka litera l z ptaszkiem","Latin small letter l with caron":"ÅaciÅ„ska maÅ‚a litera l z ptaszkiem","Latin capital letter l with middle dot":"ÅaciÅ„ska wielka litera l z kropkÄ… poÅ›rodku","Latin small letter l with middle dot":"ÅaciÅ„ska maÅ‚a litera l z kropkÄ… poÅ›rodku","Latin capital letter l with stroke":"ÅaciÅ„ska wielka litera l z przekreÅ›leniem","Latin small letter l with stroke":"ÅaciÅ„ska maÅ‚a litera l z przekreÅ›leniem","Latin capital letter n with acute":"ÅaciÅ„ska wielka litera n z kreskÄ…","Latin small letter n with acute":"ÅaciÅ„ska maÅ‚a litera n z kreskÄ…","Latin capital letter n with cedilla":"ÅaciÅ„ska wielka litera n z haczykiem","Latin small letter n with cedilla":"ÅaciÅ„ska maÅ‚a litera n z haczykiem","Latin capital letter n with caron":"ÅaciÅ„ska wielka litera n z ptaszkiem","Latin small letter n with caron":"ÅaciÅ„ska maÅ‚a litera n z ptaszkiem","Latin small letter n preceded by apostrophe":"ÅaciÅ„ska maÅ‚a litera n poprzedzona apostrofem","Latin capital letter eng":"ÅaciÅ„ska wielka litera eng","Latin small letter eng":"ÅaciÅ„ska maÅ‚a litera eng","Latin capital letter o with macron":"ÅaciÅ„ska wielka litera o z makronem","Latin small letter o with macron":"ÅaciÅ„ska maÅ‚a litera o z makronem","Latin capital letter o with breve":"ÅaciÅ„ska wielka litera o z Å‚uczkiem","Latin small letter o with breve":"ÅaciÅ„ska maÅ‚a litera o z Å‚uczkiem","Latin capital letter o with double acute":"ÅaciÅ„ska wielka litera o z dwiema kreskami","Latin small letter o with double acute":"ÅaciÅ„ska maÅ‚a litera o z dwiema kreskami","Latin capital ligature oe":"ÅaciÅ„ska wielka ligatura oe","Latin small ligature oe":"ÅaciÅ„ska maÅ‚a ligatura oe","Latin capital letter r with acute":"ÅaciÅ„ska wielka litera r z kreskÄ…","Latin small letter r with acute":"ÅaciÅ„ska maÅ‚a litera r z kreskÄ…","Latin capital letter r with cedilla":"ÅaciÅ„ska wielka litera r z haczykiem","Latin small letter r with cedilla":"ÅaciÅ„ska maÅ‚a litera r z haczykiem","Latin capital letter r with caron":"ÅaciÅ„ska wielka litera r z ptaszkiem","Latin small letter r with caron":"ÅaciÅ„ska maÅ‚a litera r z ptaszkiem","Latin capital letter s with acute":"ÅaciÅ„ska wielka litera s z kreskÄ…","Latin small letter s with acute":"ÅaciÅ„ska maÅ‚a litera s z kreskÄ…","Latin capital letter s with circumflex":"ÅaciÅ„ska wielka litera s z daszkiem","Latin small letter s with circumflex":"ÅaciÅ„ska maÅ‚a litera s z daszkiem","Latin capital letter s with cedilla":"ÅaciÅ„ska wielka litera s z haczykiem","Latin small letter s with cedilla":"ÅaciÅ„ska wielka litera s z haczykiem","Latin capital letter s with caron":"ÅaciÅ„ska wielka litera s z ptaszkiem","Latin small letter s with caron":"ÅaciÅ„ska maÅ‚a litera s z ptaszkiem","Latin capital letter t with cedilla":"ÅaciÅ„ska wielka litera t z haczykiem","Latin small letter t with cedilla":"ÅaciÅ„ska maÅ‚a litera t z haczykiem","Latin capital letter t with caron":"ÅaciÅ„ska wielka litera t z ptaszkiem","Latin small letter t with caron":"ÅaciÅ„ska maÅ‚a litera t z ptaszkiem","Latin capital letter t with stroke":"ÅaciÅ„ska wielka litera t z przekreÅ›leniem","Latin small letter t with stroke":"ÅaciÅ„ska maÅ‚a litera t z przekreÅ›leniem","Latin capital letter u with tilde":"ÅaciÅ„ska wielka litera u z tyldÄ…","Latin small letter u with tilde":"ÅaciÅ„ska maÅ‚a litera u z tyldÄ…","Latin capital letter u with macron":"ÅaciÅ„ska wielka litera u z makronem","Latin small letter u with macron":"ÅaciÅ„ska maÅ‚a litera u z makronem","Latin capital letter u with breve":"ÅaciÅ„ska wielka litera u z Å‚uczkiem","Latin small letter u with breve":"ÅaciÅ„ska maÅ‚a litera u z Å‚uczkiem","Latin capital letter u with ring above":"ÅaciÅ„ska wielka litera u z kółkiem powyżej","Latin small letter u with ring above":"ÅaciÅ„ska maÅ‚a litera u z kółkiem powyżej","Latin capital letter u with double acute":"ÅaciÅ„ska wielka litera u z dwiema kreskami","Latin small letter u with double acute":"ÅaciÅ„ska maÅ‚a litera u z dwiema kreskami","Latin capital letter u with ogonek":"ÅaciÅ„ska wielka litera u z ogonkiem","Latin small letter u with ogonek":"ÅaciÅ„ska maÅ‚a litera u z ogonkiem","Latin capital letter w with circumflex":"ÅaciÅ„ska wielka litera w z daszkiem","Latin small letter w with circumflex":"ÅaciÅ„ska maÅ‚a litera w z daszkiem","Latin capital letter y with circumflex":"ÅaciÅ„ska wielka litera y z daszkiem","Latin small letter y with circumflex":"ÅaciÅ„ska maÅ‚a litera y z daszkiem","Latin capital letter y with diaeresis":"ÅaciÅ„ska wielka litera y z dwiema kropkami","Latin capital letter z with acute":"ÅaciÅ„ska wielka litera z z kreskÄ…","Latin small letter z with acute":"ÅaciÅ„ska maÅ‚a litera z z kreskÄ…","Latin capital letter z with dot above":"ÅaciÅ„ska wielka litera z z kropkÄ… powyżej","Latin small letter z with dot above":"ÅaciÅ„ska maÅ‚a litera z z kropkÄ… powyżej","Latin capital letter z with caron":"ÅaciÅ„ska wielka litera z z ptaszkiem","Latin small letter z with caron":"ÅaciÅ„ska maÅ‚a litera z z ptaszkiem","Latin small letter long s":"ÅaciÅ„ska litera dÅ‚ugie s","Less-than sign":"Znak mniejszoÅ›ci","Greater-than sign":"Znak wiÄ™kszoÅ›ci","Less-than or equal to":"Znak mniejsze niż lub równe","Greater-than or equal to":"Znak wiÄ™ksze niż lub równe","En dash":"Półpauza","Em dash":"Pauza",Macron:"Makron",Overline:"NadkreÅ›lenie","Degree sign":"Znak stopnia","Minus sign":"Znak minus","Plus-minus sign":"Znak plus-minus","Division sign":"Znak dzielenia","Fraction slash":"Kreska uÅ‚amkowa","Multiplication sign":"Znak mnożenia","Latin small letter f with hook":"ÅaciÅ„ska maÅ‚a litera f z zawijasem",Integral:"CaÅ‚ka","N-ary summation":"Suma n-argumentowa",Infinity:"NieskoÅ„czoność","Square root":"Pierwiastek kwadratowy","Tilde operator":"Operator tylda","Approximately equal to":"W przybliżeniu równe","Almost equal to":"Prawie równe","Not equal to":"Różne","Identical to":"Identyczne","Element of":"Należy do","Not an element of":"Nie należy do","Contains as member":"Zawiera element","N-ary product":"Iloczyn n-argumentowy","Logical and":"Koniunkcja logiczna","Logical or":"Alternatywa logiczna","Not sign":"Znak negacji",Intersection:"Część wspólna",Union:"Suma zbiorów","Partial differential":"Pochodna czÄ…stkowa","For all":"Kwantyfikator ogólny","There exists":"Kwantyfikator szczegółowy","Empty set":"Zbiór pusty",Nabla:"Operator nabla","Asterisk operator":"Operator asterysk","Proportional to":"Proporcjonalność",Angle:"KÄ…t","Vulgar fraction one quarter":"UÅ‚amek zwykÅ‚y jedna czwarta","Vulgar fraction one half":"UÅ‚amek zwykÅ‚y jedna druga","Vulgar fraction three quarters":"UÅ‚amek zwykÅ‚y trzy czwarte","Single left-pointing angle quotation mark":"Pojedynczy lewy cudzysłów kÄ…towy","Single right-pointing angle quotation mark":"Pojedynczy prawy cudzysłów kÄ…towy","Left-pointing double angle quotation mark":"Podwójny lewy cudzysłów kÄ…towy","Right-pointing double angle quotation mark":"Podwójny prawy cudzysłów kÄ…towy","Left single quotation mark":"Pojedynczy lewy cudzysłów","Right single quotation mark":"Pojedynczy prawy cudzysłów","Left double quotation mark":"Podwójny lewy cudzysłów","Right double quotation mark":"Podwójny prawy cudzysłów","Single low-9 quotation mark":"Pojedynczy dolny cudzysłów","Double low-9 quotation mark":"Podwójny dolny cudzysłów","Inverted exclamation mark":"Odwrócony wykrzyknik","Inverted question mark":"Odwrócony pytajnik","Two dot leader":"Dwie kropki wiodÄ…ce","Horizontal ellipsis":"Wielokropek poziomy","Double dagger":"Podwójny sztylet","Per mille sign":"Znak promila","Per ten thousand sign":"Punkt bazowy","Double exclamation mark":"Podwójny wykrzyknik","Question exclamation mark":"Pytajnik z wykrzyknikiem","Exclamation question mark":"Wykrzyknik z pytajnikiem","Double question mark":"Podwójny pytajnik","Copyright sign":"Znak praw autorskich","Registered sign":"Zastrzeżony znak towarowy","Trade mark sign":"Symbol znaku towarowego","Section sign":"Znak sekcji","Paragraph sign":"Znak akapitu","Reversed paragraph sign":"Odwrócony znak akapitu","Character categories":"Kategorie znaków",Styles:"Style","Multiple styles":"Wiele stylów","Block styles":"Style tekstu blokowego","Text styles":"Style tekstu","Insert table":"Wstaw tabelÄ™","Header column":"Kolumna nagłówka","Insert column left":"Wstaw kolumnÄ™ z lewej","Insert column right":"Wstaw kolumnÄ™ z prawej","Delete column":"UsuÅ„ kolumnÄ™","Select column":"Zaznacz kolumnÄ™",Column:"Kolumna","Header row":"Wiersz nagłówka","Insert row below":"Wstaw wiersz poniżej","Insert row above":"Wstaw wiersz ponad","Delete row":"UsuÅ„ wiersz","Select row":"Zaznacz wiersz",Row:"Wiersz","Merge cell up":"Scal komórkÄ™ w górÄ™","Merge cell right":"Scal komórkÄ™ w prawo","Merge cell down":"Scal komórkÄ™ w dół","Merge cell left":"Scal komórkÄ™ w lewo","Split cell vertically":"Podziel komórkÄ™ pionowo","Split cell horizontally":"Podziel komórkÄ™ poziomo","Merge cells":"Scal komórki","Table toolbar":"Pasek narzÄ™dzi tabel","Table properties":"WÅ‚aÅ›ciwoÅ›ci tabeli","Cell properties":"WÅ‚aÅ›ciwoÅ›ci komórki",Border:"Obramowanie",Style:"Styl",Width:"Szerokość",Height:"Wysokość",Color:"Kolor",Background:"TÅ‚o",Padding:"DopeÅ‚nienie",Dimensions:"Wymiary","Table cell text alignment":"Wyrównanie tekstu komórki tabeli",Alignment:"Wyrównanie","Horizontal text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu w poziomie","Vertical text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu w pionie","Table alignment toolbar":"Pasek narzÄ™dzi wyrównania tabeli",None:"Brak",Solid:"CiÄ…gÅ‚e",Dotted:"Kropkowane",Dashed:"Kreskowane",Double:"Podwójne",Groove:"WklÄ™sÅ‚e",Ridge:"WypukÅ‚e",Inset:"ZapadniÄ™te",Outset:"WysuniÄ™te","Align cell text to the left":"Wyrównaj tekst w komórce do lewej","Align cell text to the center":"Wyrównaj tekst w komórce do Å›rodka","Align cell text to the right":"Wyrównaj tekst w komórce do prawej","Justify cell text":"Wyjustuj tekst komórki","Align cell text to the top":"Wyrównaj tekst w komórce do góry","Align cell text to the middle":"Wyrównaj tekst w komórce do Å›rodka","Align cell text to the bottom":"Wyrównaj tekst w komórce do doÅ‚u","Align table to the left":"Wyrównaj tabelÄ™ do lewej","Center table":"Wyrównaj tabelÄ™ do Å›rodka","Align table to the right":"Wyrównaj tabelÄ™ do prawej","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Kolor jest niepoprawny. Spróbuj wpisać \"#FF0000\", \"rgb(255,0,0)\" lub \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Wartość jest niepoprawna. Spróbuj wpisać \"10px\", \"2em\" lub po prostu \"2\".","Color picker":"Wybór koloru","Toggle caption off":"Ukryj podpis tabeli","Toggle caption on":"Pokaż podpis tabeli","Enter table caption":"Wprowadź podpis tabeli","Rich Text Editor":"Edytor tekstu sformatowanego","Editor editing area: %0":"Obszar edycji edytora: %0","Edit block":"Edytuj blok","Click to edit block":"Kliknij, aby edytować blok","Drag to move":"PrzeciÄ…gnij, aby przenieść",Next:"NastÄ™pny",Previous:"Poprzedni","Editor toolbar":"Pasek narzÄ™dzi edytora","Dropdown toolbar":"Rozwijany pasek narzÄ™dzi",Black:"Czarny","Dim grey":"Ciemnoszary",Grey:"Szary","Light grey":"Jasnoszary",White:"BiaÅ‚y",Red:"Czerwony",Orange:"PomaraÅ„czowy",Yellow:"Żółty","Light green":"Jasnozielony",Green:"Zielony",Aquamarine:"Akwamaryna",Turquoise:"Turkusowy","Light blue":"Jasnoniebieski",Blue:"Niebieski",Purple:"Purpurowy","Editor block content toolbar":"Pasek zadaÅ„ treÅ›ci blokowej edytora","Editor contextual toolbar":"Kontekstowy pasek zadaÅ„ edytora",HEX:"SZESNASTKOWY",Accept:"Zaakceptuj","No results found":"Nie znaleziono wyników","No searchable items":"Brak elementów do wyszukania","Editor dialog":"Okno edytora",Close:"Zamknij",Undo:"Cofnij",Redo:"Ponów","Upload in progress":"Trwa przesyÅ‚anie","Widget toolbar":"Pasek widgetów","Insert paragraph before block":"Wstaw akapit przed blokiem","Insert paragraph after block":"Wstaw akapit po bloku","Press Enter to type after or press Shift + Enter to type before the widget":"NaciÅ›nij Enter, aby pisać po widżecie, lub Shift + Enter, aby pisać przed widżetem","Words: %0":"SÅ‚owa: %0","Characters: %0":"Znaki: %0"} );l.getPluralForm=function(n){return (n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['pl'] = d['pl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Wyrównaj do lewej","Align right":"Wyrównaj do prawej","Align center":"Wyrównaj do Å›rodka",Justify:"Wyrównaj obustronnie","Text alignment":"Wyrównanie tekstu","Text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu",Bold:"Pogrubienie",Italic:"Kursywa",Underline:"PodkreÅ›lenie",Code:"Kod",Strikethrough:"PrzekreÅ›lenie",Subscript:"Indeks dolny",Superscript:"Indeks górny","Block quote":"Cytat blokowy","Insert code block":"Wstaw blok kodu","Plain text":"ZwykÅ‚y tekst",Cancel:"Anuluj",Clear:"Wyczyść","Remove color":"UsuÅ„ kolor","Restore default":"Przywróć domyÅ›lne",Save:"Zapisz","Show more items":"Pokaż wiÄ™cej","%0 of %1":"%0 z %1","Cannot upload file:":"Nie można przesÅ‚ać pliku:","Rich Text Editor. Editing area: %0":"Edytor tekstu. Obszar edycji: %0","Insert with file manager":"Wstaw za pomocÄ… menedżera plików","Replace with file manager":"ZastÄ…p za pomocÄ… menedżera plików","Insert image with file manager":"Wstaw obraz za pomocÄ… menedżera plików","Replace image with file manager":"ZastÄ…p obraz za pomocÄ… menedżera plików","Find and replace":"Znajdź i zamieÅ„","Find in text…":"Znajdź…",Find:"Znajdź","Previous result":"Poprzedni","Next result":"NastÄ™pny",Replace:"ZamieÅ„","Replace all":"ZamieÅ„ wszystko","Match case":"UwzglÄ™dnij wielkość liter","Whole words only":"Znajdź tylko caÅ‚e wyrazy","Replace with…":"ZamieÅ„ na…","Text to find must not be empty.":"Szukany tekst nie może być pusty.","Tip: Find some text first in order to replace it.":"Podpowiedź: Znajdź jakiÅ› tekst, aby go zamienić.","Advanced options":"Opcje zaawansowane","Font Size":"Rozmiar czcionki",Tiny:"Bardzo maÅ‚y",Small:"MaÅ‚y",Big:"Duży",Huge:"Bardzo duży","Font Family":"Czcionka",Default:"DomyÅ›lny","Font Color":"Kolor czcionki","Font Background Color":"Kolor tÅ‚a czcionki","Document colors":"Kolory dokumentu",Paragraph:"Akapit",Heading:"Nagłówek","Choose heading":"Wybierz nagłówek","Heading 1":"Nagłówek 1","Heading 2":"Nagłówek 2","Heading 3":"Nagłówek 3","Heading 4":"Nagłówek 4","Heading 5":"Nagłówek 5","Heading 6":"Nagłówek 6","Type your title":"Podaj tytuÅ‚","Type or paste your content here.":"Wpisz lub wklej tutaj treść dokumentu.","Horizontal line":"Linia pozioma","HTML object":"Obiekt HTML","Increase indent":"ZwiÄ™ksz wciÄ™cie","Decrease indent":"Zmniejsz wciÄ™cie",Unlink:"UsuÅ„ odnoÅ›nik",Link:"Wstaw odnoÅ›nik","Link URL":"Adres URL","Link image":"Wstaw odnoÅ›nik do obrazka","Edit link":"Edytuj odnoÅ›nik","Open link in new tab":"Otwórz odnoÅ›nik w nowej zakÅ‚adce","This link has no URL":"Nie podano adresu URL odnoÅ›nika","Open in a new tab":"Otwórz w nowej zakÅ‚adce",Downloadable:"Do pobrania","Numbered List":"Lista numerowana","Bulleted List":"Lista wypunktowana","To-do List":"Lista rzeczy do zrobienia","Bulleted list styles toolbar":"Pasek z narzÄ™dziami: style listy z punktorami","Numbered list styles toolbar":"Pasek z narzÄ™dziami: style listy numerowanej","Toggle the disc list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dyskâ€","Toggle the circle list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „kółkoâ€","Toggle the square list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „kwadratâ€","Toggle the decimal list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dziesiÄ™tneâ€","Toggle the decimal with leading zero list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „dziesiÄ™tne z zerem wiodÄ…cymâ€","Toggle the lower–roman list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „maÅ‚e cyfry rzymskieâ€","Toggle the upper–roman list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „wielkie cyfry rzymskieâ€","Toggle the lower–latin list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „alfabet Å‚aciÅ„ski – maÅ‚e literyâ€","Toggle the upper–latin list style":"WÅ‚Ä…cz/wyÅ‚Ä…cz listÄ™ w stylu „alfabet Å‚aciÅ„ski – wielkie literyâ€",Disc:"Dysk",Circle:"Kółko",Square:"Kwadrat",Decimal:"DziesiÄ™tne","Decimal with leading zero":"DziesiÄ™tne z zerem wiodÄ…cym","Lower–roman":"MaÅ‚e cyfry rzymskie","Upper-roman":"Wielkie cyfry rzymskie","Lower-latin":"Alfabet Å‚aciÅ„ski – maÅ‚e litery","Upper-latin":"Alfabet Å‚aciÅ„ski – wielkie litery","List properties":"WÅ‚aÅ›ciwoÅ›ci listy","Start at":"Zacznij od","Start index must be greater than 0.":"Wartość poczÄ…tkowa musi być wiÄ™ksza niż 0.","Reversed order":"Odwrócona kolejność","Remove Format":"UsuÅ„ formatowanie","Select all":"Zaznacz wszystko","Show blocks":"WyÅ›wietl bloki",Source:"ŹródÅ‚o","Special characters":"Znaki specjalne",All:"Wszystko",Arrows:"StrzaÅ‚ki",Currency:"Waluta",Latin:"ÅaciÅ„ski",Mathematical:"Matematyczne",Text:"Tekst","leftwards simple arrow":"prosta strzaÅ‚ka w lewo","rightwards simple arrow":"prosta strzaÅ‚ka w prawo","upwards simple arrow":"prosta strzaÅ‚ka w górÄ™","downwards simple arrow":"prosta strzaÅ‚ka w dół","leftwards double arrow":"podwójna strzaÅ‚ka w lewo","rightwards double arrow":"podwójna strzaÅ‚ka w prawo","upwards double arrow":"podwójna strzaÅ‚ka w górÄ™","downwards double arrow":"podwójna strzaÅ‚ka w dół","leftwards dashed arrow":"przerywana strzaÅ‚ka w lewo","rightwards dashed arrow":"przerywana strzaÅ‚ka w prawo","upwards dashed arrow":"przerywana strzaÅ‚ka w górÄ™","downwards dashed arrow":"przerywana strzaÅ‚ka w dół","leftwards arrow to bar":"strzaÅ‚ka w lewo do belki","rightwards arrow to bar":"strzaÅ‚ka w prawo do belki","upwards arrow to bar":"strzaÅ‚ka w górÄ™ do belki","downwards arrow to bar":"strzaÅ‚ka w dół do belki","up down arrow with base":"strzaÅ‚ka w górÄ™ i w dół z podstawÄ…","back with leftwards arrow above":"do tyÅ‚u ze strzaÅ‚kÄ… w lewo powyżej","end with leftwards arrow above":"koniec ze strzaÅ‚kÄ… w lewo powyżej","on with exclamation mark with left right arrow above":"na z wykrzyknikiem i strzaÅ‚kÄ… w lewo i prawo powyżej","soon with rightwards arrow above":"wkrótce ze strzaÅ‚kÄ… w prawo powyżej","top with upwards arrow above":"do góry ze strzaÅ‚kÄ… w górÄ™ powyżej","Dollar sign":"Znak dolara","Euro sign":"Znak euro","Yen sign":"Znak jena","Pound sign":"Znak funta","Cent sign":"Znak centa","Euro-currency sign":"Znak euro","Colon sign":"Znak colona","Cruzeiro sign":"Znak cruzeiro","French franc sign":"Znak franka francuskiego","Lira sign":"Znak liry","Currency sign":"Znak waluty","Bitcoin sign":"Znak bitcoina","Mill sign":"Symbol mila","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 sign":"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":"Symbol liwra turoÅ„skiego","Spesmilo sign":"Symbol spesmilo","Tenge sign":"Znak tenge","Indian rupee sign":"Znak rupii indyjskiej","Turkish lira sign":"Znak liry tureckiej","Nordic mark sign":"Znak marki nordyckiej","Manat sign":"Znak manata","Ruble sign":"Znak rubla","Latin capital letter a with macron":"ÅaciÅ„ska wielka litera a z makronem","Latin small letter a with macron":"ÅaciÅ„ska maÅ‚a litera a z makronem","Latin capital letter a with breve":"ÅaciÅ„ska wielka litera a z Å‚uczkiem","Latin small letter a with breve":"ÅaciÅ„ska maÅ‚a litera a z Å‚uczkiem","Latin capital letter a with ogonek":"ÅaciÅ„ska wielka litera a z ogonkiem","Latin small letter a with ogonek":"ÅaciÅ„ska maÅ‚a litera a z ogonkiem","Latin capital letter c with acute":"ÅaciÅ„ska wielka litera c z kreskÄ…","Latin small letter c with acute":"ÅaciÅ„ska maÅ‚a litera c z kreskÄ…","Latin capital letter c with circumflex":"ÅaciÅ„ska wielka litera c z daszkiem","Latin small letter c with circumflex":"ÅaciÅ„ska maÅ‚a litera c z daszkiem","Latin capital letter c with dot above":"ÅaciÅ„ska wielka litera c z kropkÄ… powyżej","Latin small letter c with dot above":"ÅaciÅ„ska maÅ‚a litera c z kropkÄ… powyżej","Latin capital letter c with caron":"ÅaciÅ„ska wielka litera c z ptaszkiem","Latin small letter c with caron":"ÅaciÅ„ska maÅ‚a litera c z ptaszkiem","Latin capital letter d with caron":"ÅaciÅ„ska wielka litera d z ptaszkiem","Latin small letter d with caron":"ÅaciÅ„ska maÅ‚a litera d z ptaszkiem","Latin capital letter d with stroke":"ÅaciÅ„ska wielka litera d z przekreÅ›leniem","Latin small letter d with stroke":"ÅaciÅ„ska maÅ‚a litera d z przekreÅ›leniem","Latin capital letter e with macron":"ÅaciÅ„ska wielka litera e z makronem","Latin small letter e with macron":"ÅaciÅ„ska maÅ‚a litera e z makronem","Latin capital letter e with breve":"ÅaciÅ„ska wielka litera e z Å‚uczkiem","Latin small letter e with breve":"ÅaciÅ„ska maÅ‚a litera e z Å‚uczkiem","Latin capital letter e with dot above":"ÅaciÅ„ska wielka litera e z kropkÄ… powyżej","Latin small letter e with dot above":"ÅaciÅ„ska maÅ‚a litera e z kropkÄ… powyżej","Latin capital letter e with ogonek":"ÅaciÅ„ska wielka litera e z ogonkiem","Latin small letter e with ogonek":"ÅaciÅ„ska maÅ‚a litera e z ogonkiem","Latin capital letter e with caron":"ÅaciÅ„ska wielka litera e z ptaszkiem","Latin small letter e with caron":"ÅaciÅ„ska maÅ‚a litera e z ptaszkiem","Latin capital letter g with circumflex":"ÅaciÅ„ska wielka litera g z daszkiem","Latin small letter g with circumflex":"ÅaciÅ„ska maÅ‚a litera g z daszkiem","Latin capital letter g with breve":"ÅaciÅ„ska wielka litera g z Å‚uczkiem","Latin small letter g with breve":"ÅaciÅ„ska maÅ‚a litera g z Å‚uczkiem","Latin capital letter g with dot above":"ÅaciÅ„ska wielka litera g z kropkÄ… powyżej","Latin small letter g with dot above":"ÅaciÅ„ska maÅ‚a litera g z kropkÄ… powyżej","Latin capital letter g with cedilla":"ÅaciÅ„ska wielka litera g z haczykiem","Latin small letter g with cedilla":"ÅaciÅ„ska maÅ‚a litera g z haczykiem","Latin capital letter h with circumflex":"ÅaciÅ„ska wielka litera h z daszkiem","Latin small letter h with circumflex":"ÅaciÅ„ska maÅ‚a litera h z daszkiem","Latin capital letter h with stroke":"ÅaciÅ„ska wielka litera h z przekreÅ›leniem","Latin small letter h with stroke":"ÅaciÅ„ska maÅ‚a litera h z przekreÅ›leniem","Latin capital letter i with tilde":" ÅaciÅ„ska wielka litera i z tyldÄ…","Latin small letter i with tilde":"ÅaciÅ„ska maÅ‚a litera i z tyldÄ…","Latin capital letter i with macron":"ÅaciÅ„ska wielka litera i z makronem","Latin small letter i with macron":"ÅaciÅ„ska maÅ‚a litera i z makronem","Latin capital letter i with breve":"ÅaciÅ„ska wielka litera i z Å‚uczkiem","Latin small letter i with breve":"ÅaciÅ„ska maÅ‚a litera i z Å‚uczkiem","Latin capital letter i with ogonek":"ÅaciÅ„ska wielka litera i z ogonkiem","Latin small letter i with ogonek":"ÅaciÅ„ska maÅ‚a litera i z ogonkiem","Latin capital letter i with dot above":"ÅaciÅ„ska wielka litera i z kropkÄ… powyżej","Latin small letter dotless i":"ÅaciÅ„ska maÅ‚a litera i bez kropki","Latin capital ligature ij":"ÅaciÅ„ska wielka ligatura ij","Latin small ligature ij":"ÅaciÅ„ska maÅ‚a ligatura ij","Latin capital letter j with circumflex":"ÅaciÅ„ska wielka litera j z daszkiem","Latin small letter j with circumflex":"ÅaciÅ„ska maÅ‚a litera j z daszkiem","Latin capital letter k with cedilla":"ÅaciÅ„ska wielka litera k z haczykiem","Latin small letter k with cedilla":"ÅaciÅ„ska maÅ‚a litera k z haczykiem","Latin small letter kra":"ÅaciÅ„ska maÅ‚a litera kra","Latin capital letter l with acute":"ÅaciÅ„ska wielka litera l z kreskÄ…","Latin small letter l with acute":"ÅaciÅ„ska maÅ‚a litera l z kreskÄ…","Latin capital letter l with cedilla":"ÅaciÅ„ska wielka litera l z haczykiem","Latin small letter l with cedilla":"ÅaciÅ„ska maÅ‚a litera l z haczykiem","Latin capital letter l with caron":"ÅaciÅ„ska wielka litera l z ptaszkiem","Latin small letter l with caron":"ÅaciÅ„ska maÅ‚a litera l z ptaszkiem","Latin capital letter l with middle dot":"ÅaciÅ„ska wielka litera l z kropkÄ… poÅ›rodku","Latin small letter l with middle dot":"ÅaciÅ„ska maÅ‚a litera l z kropkÄ… poÅ›rodku","Latin capital letter l with stroke":"ÅaciÅ„ska wielka litera l z przekreÅ›leniem","Latin small letter l with stroke":"ÅaciÅ„ska maÅ‚a litera l z przekreÅ›leniem","Latin capital letter n with acute":"ÅaciÅ„ska wielka litera n z kreskÄ…","Latin small letter n with acute":"ÅaciÅ„ska maÅ‚a litera n z kreskÄ…","Latin capital letter n with cedilla":"ÅaciÅ„ska wielka litera n z haczykiem","Latin small letter n with cedilla":"ÅaciÅ„ska maÅ‚a litera n z haczykiem","Latin capital letter n with caron":"ÅaciÅ„ska wielka litera n z ptaszkiem","Latin small letter n with caron":"ÅaciÅ„ska maÅ‚a litera n z ptaszkiem","Latin small letter n preceded by apostrophe":"ÅaciÅ„ska maÅ‚a litera n poprzedzona apostrofem","Latin capital letter eng":"ÅaciÅ„ska wielka litera eng","Latin small letter eng":"ÅaciÅ„ska maÅ‚a litera eng","Latin capital letter o with macron":"ÅaciÅ„ska wielka litera o z makronem","Latin small letter o with macron":"ÅaciÅ„ska maÅ‚a litera o z makronem","Latin capital letter o with breve":"ÅaciÅ„ska wielka litera o z Å‚uczkiem","Latin small letter o with breve":"ÅaciÅ„ska maÅ‚a litera o z Å‚uczkiem","Latin capital letter o with double acute":"ÅaciÅ„ska wielka litera o z dwiema kreskami","Latin small letter o with double acute":"ÅaciÅ„ska maÅ‚a litera o z dwiema kreskami","Latin capital ligature oe":"ÅaciÅ„ska wielka ligatura oe","Latin small ligature oe":"ÅaciÅ„ska maÅ‚a ligatura oe","Latin capital letter r with acute":"ÅaciÅ„ska wielka litera r z kreskÄ…","Latin small letter r with acute":"ÅaciÅ„ska maÅ‚a litera r z kreskÄ…","Latin capital letter r with cedilla":"ÅaciÅ„ska wielka litera r z haczykiem","Latin small letter r with cedilla":"ÅaciÅ„ska maÅ‚a litera r z haczykiem","Latin capital letter r with caron":"ÅaciÅ„ska wielka litera r z ptaszkiem","Latin small letter r with caron":"ÅaciÅ„ska maÅ‚a litera r z ptaszkiem","Latin capital letter s with acute":"ÅaciÅ„ska wielka litera s z kreskÄ…","Latin small letter s with acute":"ÅaciÅ„ska maÅ‚a litera s z kreskÄ…","Latin capital letter s with circumflex":"ÅaciÅ„ska wielka litera s z daszkiem","Latin small letter s with circumflex":"ÅaciÅ„ska maÅ‚a litera s z daszkiem","Latin capital letter s with cedilla":"ÅaciÅ„ska wielka litera s z haczykiem","Latin small letter s with cedilla":"ÅaciÅ„ska wielka litera s z haczykiem","Latin capital letter s with caron":"ÅaciÅ„ska wielka litera s z ptaszkiem","Latin small letter s with caron":"ÅaciÅ„ska maÅ‚a litera s z ptaszkiem","Latin capital letter t with cedilla":"ÅaciÅ„ska wielka litera t z haczykiem","Latin small letter t with cedilla":"ÅaciÅ„ska maÅ‚a litera t z haczykiem","Latin capital letter t with caron":"ÅaciÅ„ska wielka litera t z ptaszkiem","Latin small letter t with caron":"ÅaciÅ„ska maÅ‚a litera t z ptaszkiem","Latin capital letter t with stroke":"ÅaciÅ„ska wielka litera t z przekreÅ›leniem","Latin small letter t with stroke":"ÅaciÅ„ska maÅ‚a litera t z przekreÅ›leniem","Latin capital letter u with tilde":"ÅaciÅ„ska wielka litera u z tyldÄ…","Latin small letter u with tilde":"ÅaciÅ„ska maÅ‚a litera u z tyldÄ…","Latin capital letter u with macron":"ÅaciÅ„ska wielka litera u z makronem","Latin small letter u with macron":"ÅaciÅ„ska maÅ‚a litera u z makronem","Latin capital letter u with breve":"ÅaciÅ„ska wielka litera u z Å‚uczkiem","Latin small letter u with breve":"ÅaciÅ„ska maÅ‚a litera u z Å‚uczkiem","Latin capital letter u with ring above":"ÅaciÅ„ska wielka litera u z kółkiem powyżej","Latin small letter u with ring above":"ÅaciÅ„ska maÅ‚a litera u z kółkiem powyżej","Latin capital letter u with double acute":"ÅaciÅ„ska wielka litera u z dwiema kreskami","Latin small letter u with double acute":"ÅaciÅ„ska maÅ‚a litera u z dwiema kreskami","Latin capital letter u with ogonek":"ÅaciÅ„ska wielka litera u z ogonkiem","Latin small letter u with ogonek":"ÅaciÅ„ska maÅ‚a litera u z ogonkiem","Latin capital letter w with circumflex":"ÅaciÅ„ska wielka litera w z daszkiem","Latin small letter w with circumflex":"ÅaciÅ„ska maÅ‚a litera w z daszkiem","Latin capital letter y with circumflex":"ÅaciÅ„ska wielka litera y z daszkiem","Latin small letter y with circumflex":"ÅaciÅ„ska maÅ‚a litera y z daszkiem","Latin capital letter y with diaeresis":"ÅaciÅ„ska wielka litera y z dwiema kropkami","Latin capital letter z with acute":"ÅaciÅ„ska wielka litera z z kreskÄ…","Latin small letter z with acute":"ÅaciÅ„ska maÅ‚a litera z z kreskÄ…","Latin capital letter z with dot above":"ÅaciÅ„ska wielka litera z z kropkÄ… powyżej","Latin small letter z with dot above":"ÅaciÅ„ska maÅ‚a litera z z kropkÄ… powyżej","Latin capital letter z with caron":"ÅaciÅ„ska wielka litera z z ptaszkiem","Latin small letter z with caron":"ÅaciÅ„ska maÅ‚a litera z z ptaszkiem","Latin small letter long s":"ÅaciÅ„ska litera dÅ‚ugie s","Less-than sign":"Znak mniejszoÅ›ci","Greater-than sign":"Znak wiÄ™kszoÅ›ci","Less-than or equal to":"Znak mniejsze niż lub równe","Greater-than or equal to":"Znak wiÄ™ksze niż lub równe","En dash":"Półpauza","Em dash":"Pauza",Macron:"Makron",Overline:"NadkreÅ›lenie","Degree sign":"Znak stopnia","Minus sign":"Znak minus","Plus-minus sign":"Znak plus-minus","Division sign":"Znak dzielenia","Fraction slash":"Kreska uÅ‚amkowa","Multiplication sign":"Znak mnożenia","Latin small letter f with hook":"ÅaciÅ„ska maÅ‚a litera f z zawijasem",Integral:"CaÅ‚ka","N-ary summation":"Suma n-argumentowa",Infinity:"NieskoÅ„czoność","Square root":"Pierwiastek kwadratowy","Tilde operator":"Operator tylda","Approximately equal to":"W przybliżeniu równe","Almost equal to":"Prawie równe","Not equal to":"Różne","Identical to":"Identyczne","Element of":"Należy do","Not an element of":"Nie należy do","Contains as member":"Zawiera element","N-ary product":"Iloczyn n-argumentowy","Logical and":"Koniunkcja logiczna","Logical or":"Alternatywa logiczna","Not sign":"Znak negacji",Intersection:"Część wspólna",Union:"Suma zbiorów","Partial differential":"Pochodna czÄ…stkowa","For all":"Kwantyfikator ogólny","There exists":"Kwantyfikator szczegółowy","Empty set":"Zbiór pusty",Nabla:"Operator nabla","Asterisk operator":"Operator asterysk","Proportional to":"Proporcjonalność",Angle:"KÄ…t","Vulgar fraction one quarter":"UÅ‚amek zwykÅ‚y jedna czwarta","Vulgar fraction one half":"UÅ‚amek zwykÅ‚y jedna druga","Vulgar fraction three quarters":"UÅ‚amek zwykÅ‚y trzy czwarte","Single left-pointing angle quotation mark":"Pojedynczy lewy cudzysłów kÄ…towy","Single right-pointing angle quotation mark":"Pojedynczy prawy cudzysłów kÄ…towy","Left-pointing double angle quotation mark":"Podwójny lewy cudzysłów kÄ…towy","Right-pointing double angle quotation mark":"Podwójny prawy cudzysłów kÄ…towy","Left single quotation mark":"Pojedynczy lewy cudzysłów","Right single quotation mark":"Pojedynczy prawy cudzysłów","Left double quotation mark":"Podwójny lewy cudzysłów","Right double quotation mark":"Podwójny prawy cudzysłów","Single low-9 quotation mark":"Pojedynczy dolny cudzysłów","Double low-9 quotation mark":"Podwójny dolny cudzysłów","Inverted exclamation mark":"Odwrócony wykrzyknik","Inverted question mark":"Odwrócony pytajnik","Two dot leader":"Dwie kropki wiodÄ…ce","Horizontal ellipsis":"Wielokropek poziomy","Double dagger":"Podwójny sztylet","Per mille sign":"Znak promila","Per ten thousand sign":"Punkt bazowy","Double exclamation mark":"Podwójny wykrzyknik","Question exclamation mark":"Pytajnik z wykrzyknikiem","Exclamation question mark":"Wykrzyknik z pytajnikiem","Double question mark":"Podwójny pytajnik","Copyright sign":"Znak praw autorskich","Registered sign":"Zastrzeżony znak towarowy","Trade mark sign":"Symbol znaku towarowego","Section sign":"Znak sekcji","Paragraph sign":"Znak akapitu","Reversed paragraph sign":"Odwrócony znak akapitu","Character categories":"Kategorie znaków",Styles:"Style","Multiple styles":"Wiele stylów","Block styles":"Style tekstu blokowego","Text styles":"Style tekstu","Insert table":"Wstaw tabelÄ™","Header column":"Kolumna nagłówka","Insert column left":"Wstaw kolumnÄ™ z lewej","Insert column right":"Wstaw kolumnÄ™ z prawej","Delete column":"UsuÅ„ kolumnÄ™","Select column":"Zaznacz kolumnÄ™",Column:"Kolumna","Header row":"Wiersz nagłówka","Insert row below":"Wstaw wiersz poniżej","Insert row above":"Wstaw wiersz ponad","Delete row":"UsuÅ„ wiersz","Select row":"Zaznacz wiersz",Row:"Wiersz","Merge cell up":"Scal komórkÄ™ w górÄ™","Merge cell right":"Scal komórkÄ™ w prawo","Merge cell down":"Scal komórkÄ™ w dół","Merge cell left":"Scal komórkÄ™ w lewo","Split cell vertically":"Podziel komórkÄ™ pionowo","Split cell horizontally":"Podziel komórkÄ™ poziomo","Merge cells":"Scal komórki","Table toolbar":"Pasek narzÄ™dzi tabel","Table properties":"WÅ‚aÅ›ciwoÅ›ci tabeli","Cell properties":"WÅ‚aÅ›ciwoÅ›ci komórki",Border:"Obramowanie",Style:"Styl",Width:"Szerokość",Height:"Wysokość",Color:"Kolor",Background:"TÅ‚o",Padding:"DopeÅ‚nienie",Dimensions:"Wymiary","Table cell text alignment":"Wyrównanie tekstu komórki tabeli",Alignment:"Wyrównanie","Horizontal text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu w poziomie","Vertical text alignment toolbar":"Pasek narzÄ™dzi wyrównania tekstu w pionie","Table alignment toolbar":"Pasek narzÄ™dzi wyrównania tabeli",None:"Brak",Solid:"CiÄ…gÅ‚e",Dotted:"Kropkowane",Dashed:"Kreskowane",Double:"Podwójne",Groove:"WklÄ™sÅ‚e",Ridge:"WypukÅ‚e",Inset:"ZapadniÄ™te",Outset:"WysuniÄ™te","Align cell text to the left":"Wyrównaj tekst w komórce do lewej","Align cell text to the center":"Wyrównaj tekst w komórce do Å›rodka","Align cell text to the right":"Wyrównaj tekst w komórce do prawej","Justify cell text":"Wyjustuj tekst komórki","Align cell text to the top":"Wyrównaj tekst w komórce do góry","Align cell text to the middle":"Wyrównaj tekst w komórce do Å›rodka","Align cell text to the bottom":"Wyrównaj tekst w komórce do doÅ‚u","Align table to the left":"Wyrównaj tabelÄ™ do lewej","Center table":"Wyrównaj tabelÄ™ do Å›rodka","Align table to the right":"Wyrównaj tabelÄ™ do prawej","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Kolor jest niepoprawny. Spróbuj wpisać \"#FF0000\", \"rgb(255,0,0)\" lub \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Wartość jest niepoprawna. Spróbuj wpisać \"10px\", \"2em\" lub po prostu \"2\".","Color picker":"Wybór koloru","Toggle caption off":"Ukryj podpis tabeli","Toggle caption on":"Pokaż podpis tabeli","Enter table caption":"Wprowadź podpis tabeli","Rich Text Editor":"Edytor tekstu sformatowanego","Editor editing area: %0":"Obszar edycji edytora: %0","Edit block":"Edytuj blok","Click to edit block":"Kliknij, aby edytować blok","Drag to move":"PrzeciÄ…gnij, aby przenieść",Next:"NastÄ™pny",Previous:"Poprzedni","Editor toolbar":"Pasek narzÄ™dzi edytora","Dropdown toolbar":"Rozwijany pasek narzÄ™dzi",Black:"Czarny","Dim grey":"Ciemnoszary",Grey:"Szary","Light grey":"Jasnoszary",White:"BiaÅ‚y",Red:"Czerwony",Orange:"PomaraÅ„czowy",Yellow:"Żółty","Light green":"Jasnozielony",Green:"Zielony",Aquamarine:"Akwamaryna",Turquoise:"Turkusowy","Light blue":"Jasnoniebieski",Blue:"Niebieski",Purple:"Purpurowy","Editor block content toolbar":"Pasek zadaÅ„ treÅ›ci blokowej edytora","Editor contextual toolbar":"Kontekstowy pasek zadaÅ„ edytora",HEX:"SZESNASTKOWY",Accept:"Zaakceptuj","No results found":"Nie znaleziono wyników","No searchable items":"Brak elementów do wyszukania","Editor dialog":"Okno edytora",Close:"Zamknij",Undo:"Cofnij",Redo:"Ponów","Upload in progress":"Trwa przesyÅ‚anie","Widget toolbar":"Pasek widgetów","Insert paragraph before block":"Wstaw akapit przed blokiem","Insert paragraph after block":"Wstaw akapit po bloku","Press Enter to type after or press Shift + Enter to type before the widget":"NaciÅ›nij Enter, aby pisać po widżecie, lub Shift + Enter, aby pisać przed widżetem","Words: %0":"SÅ‚owa: %0","Characters: %0":"Znaki: %0"} );l.getPluralForm=function(n){return (n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt-br.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt-br.js index 6e1ac77023404089ee249b6f357a0188f3e84fc9..6946fd6f0b40ccb1ec3dec0bedfdecd93deec4ef 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt-br.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt-br.js @@ -1 +1 @@ -(function(d){ const l = d['pt-br'] = d['pt-br'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinhar à esquerda","Align right":"Alinhar à direita","Align center":"Centralizar",Justify:"Justificar","Text alignment":"Alinhamento do texto","Text alignment toolbar":"Ferramentas de alinhamento de texto",Bold:"Negrito",Italic:"Itálico",Underline:"Sublinhado",Code:"Código",Strikethrough:"Tachado",Subscript:"Subscrito",Superscript:"Sobrescrito","Block quote":"Bloco de citação","Insert code block":"Inserir bloco de código","Plain text":"Texto sem formatação",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Remover cor","Restore default":"Restaurar padrão",Save:"Salvar","Show more items":"Exibir mais itens","%0 of %1":"%0 de %1","Cannot upload file:":"Não foi possÃvel enviar o arquivo:","Rich Text Editor. Editing area: %0":"Editor de Texto Valioso. Ãrea de edição: %0","Insert with file manager":"Inserir com gerenciador de arquivos","Replace with file manager":"Substituir pelo gerenciador de arquivos","Insert image with file manager":"Inserir imagem com o gerenciador de arquivos","Replace image with file manager":"Substituir imagem pelo gerenciador de arquivos","Find and replace":"Localizar e substituir","Find in text…":"Localizar no texto",Find:"Localizar","Previous result":"Ocorrência anterior","Next result":"Próxima ocorrência",Replace:"Substituir","Replace all":"Substituir todos","Match case":"Diferenciar maiúsculas de minúsculas","Whole words only":"Apenas palavras inteiras","Replace with…":"Substituir por...","Text to find must not be empty.":"O texto a ser localizado não pode ser vazio.","Tip: Find some text first in order to replace it.":"Dica: Localize algum texto primeiro para poder substituÃ-lo.","Advanced options":"Opções avançadas",Paragraph:"Parágrafo",Heading:"Titulo","Choose heading":"Escolha o tÃtulo","Heading 1":"TÃtulo 1","Heading 2":"TÃtulo 2","Heading 3":"TÃtulo 3","Heading 4":"TÃtulo 4","Heading 5":"TÃtulo 5","Heading 6":"TÃtulo 6","Type your title":"Digite o tÃtulo","Type or paste your content here.":"Digite ou cole o conteúdo aqui.","Horizontal line":"Linha horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar recuo","Decrease indent":"Diminuir recuo",Unlink:"Remover link",Link:"Link","Link URL":"URL do link","Link image":"Link com imagem","Edit link":"Editar link","Open link in new tab":"Abrir link em nova aba","This link has no URL":"Este link não possui uma URL","Open in a new tab":"Abrir em nova aba",Downloadable:"Pode ser baixado","Numbered List":"Lista numerada","Bulleted List":"Lista com marcadores","To-do List":"Lista de Tarefas","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista com marcador","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Alternar o estilo da lista de disco","Toggle the circle list style":"Alternar o estilo da lista de cÃrculo","Toggle the square list style":"Alternar o estilo de lista quadrada","Toggle the decimal list style":"Alternar o estilo de lista decimal","Toggle the decimal with leading zero list style":"Alternar o estilo de lista decimal com zero à esquerda","Toggle the lower–roman list style":"Alternar o estilo de lista romana minúscula","Toggle the upper–roman list style":"Alternar o estilo de lista romana maiúscula","Toggle the lower–latin list style":"Alternar o estilo de lista latina minúscula","Toggle the upper–latin list style":"Alternar o estilo de lista latino maiúscula",Disc:"Disco",Circle:"CÃrculo",Square:"Quadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal com zero à esquerda","Lower–roman":"Romano minúsculo","Upper-roman":"Romano maiúsculo","Lower-latin":"Latim minúsculo","Upper-latin":"Latim maiúsculo","List properties":"Propriedades da lista","Start at":"Iniciar em","Start index must be greater than 0.":"O Ãndice inicial deve ser maior que 0.","Reversed order":"Ordem inversa","Remove Format":"Remover Formatação","Select all":"Selecionar tudo","Show blocks":"Mostrar blocos",Source:"Código-Fonte","Special characters":"Caracteres especiais",All:"Tudo",Arrows:"Setas",Currency:"Moeda",Latin:"Latim",Mathematical:"Matemática",Text:"Texto","leftwards simple arrow":"seta simples para a esquerda","rightwards simple arrow":"seta simples para a direita","upwards simple arrow":"seta simples para cima","downwards simple arrow":"seta simples para baixo","leftwards double arrow":"seta dupla para esquerda","rightwards double arrow":"seta dupla para direita","upwards double arrow":"seta dupla para cima","downwards double arrow":"seta dupla para baixo","leftwards dashed arrow":"seta tracejada para esquerda","rightwards dashed arrow":"seta tracejada para direita","upwards dashed arrow":"seta tracejada para cima","downwards dashed arrow":"seta tracejada para baixo","leftwards arrow to bar":"seta à esquerda para barra","rightwards arrow to bar":"seta à direita para barra","upwards arrow to bar":"seta a cima para barra","downwards arrow to bar":"seta a baixo para barra","up down arrow with base":"seta para cima e para baixo com base","back with leftwards arrow above":"sÃmbolo BACK com a seta para esquerda acima","end with leftwards arrow above":"sÃmbolo END com a seta para esquerda acima","on with exclamation mark with left right arrow above":"sÃmbolo ON com ponto de exclamação e seta para esquerda e direita acima","soon with rightwards arrow above":"sÃmbolo SOON com a seta para a direita acima","top with upwards arrow above":"sÃmbolo TOP com a seta para cima acima","Dollar sign":"SÃmbolo do Dólar","Euro sign":"SÃmbolo do Euro","Yen sign":"SÃmbolo do Yen","Pound sign":"SÃmbolo de Libra","Cent sign":"SÃmbolo de Centavo","Euro-currency sign":"SÃmbolo da moeda Euro","Colon sign":"Sinal de dois pontos","Cruzeiro sign":"SÃmbolo do Cruzeiro","French franc sign":"SÃmbolo do Franco Francês","Lira sign":"SÃmbolo da Lira","Currency sign":"SÃmbolo de moeda","Bitcoin sign":"SÃmbolo do Bitcoin","Mill sign":"SÃmbolo de Mill","Naira sign":"SÃmbolo de Naira","Peseta sign":"SÃmbolo de Peseta","Rupee sign":"SÃmbolo da Rupia","Won sign":"SÃmbolo do Won","New sheqel sign":"SÃmbolo do Novo Sheqel","Dong sign":"SÃmbolo do Dong","Kip sign":"SÃmbolo do Kip","Tugrik sign":"SÃmbolo de Tugrik","Drachma sign":"Sinal de Dracma","German penny sign":"SÃmbolo do Centavo Alemão","Peso sign":"SÃmbolo do Peso","Guarani sign":"SÃmbolo do Guarani","Austral sign":"SÃmbolo de Austral","Hryvnia sign":"SÃmbolo de Hryvnia","Cedi sign":"SÃmbolo de Cedi","Livre tournois sign":"SÃmbolo de Livre tournois","Spesmilo sign":"SÃmbolo do Spesmilo","Tenge sign":"SÃmbolo do Tenge","Indian rupee sign":"SÃmbolo da Rupia Indiana","Turkish lira sign":"SÃmbolo da Lira Turca","Nordic mark sign":"SÃmbolo do Marco Nórdico","Manat sign":"SÃmbolo do Manat","Ruble sign":"SÃmbolo do Rublo Russo","Latin capital letter a with macron":"SÃmbolo latim maiúsculo A com mácron","Latin small letter a with macron":"SÃmbolo latim minúsculo A com mácron","Latin capital letter a with breve":"SÃmbolo latim maiúsculo A com breve","Latin small letter a with breve":"SÃmbolo latim minúsculo A com breve","Latin capital letter a with ogonek":"SÃmbolo latim maiúsculo A com ogonek","Latin small letter a with ogonek":"SÃmbolo latim minúsculo A com ogonek","Latin capital letter c with acute":"SÃmbolo latim maiúsculo C com acento agudo","Latin small letter c with acute":"SÃmbolo latim minúsculo C com acento agudo","Latin capital letter c with circumflex":"SÃmbolo latim maiúsculo C com acento circunflexo","Latin small letter c with circumflex":"SÃmbolo latim minúsculo C com acento circunflexo","Latin capital letter c with dot above":"SÃmbolo latim maiúsculo C com ponto acima","Latin small letter c with dot above":"SÃmbolo latim minúsculo C com ponto acima","Latin capital letter c with caron":"SÃmbolo latim maiúsculo C com caron","Latin small letter c with caron":"SÃmbolo latim minúsculo C com caron","Latin capital letter d with caron":"SÃmbolo latim maiúsculo D com caron","Latin small letter d with caron":"SÃmbolo latim minúsculo D com caron","Latin capital letter d with stroke":"SÃmbolo latin maiúsculo D com um traçado vertical","Latin small letter d with stroke":"SÃmbolo latin minúsculo D com um traçado vertical","Latin capital letter e with macron":"SÃmbolo latim maiúsculo E com mácron","Latin small letter e with macron":"SÃmbolo latim minúsculo E com mácron","Latin capital letter e with breve":"SÃmbolo latim maiúsculo E com breve","Latin small letter e with breve":"SÃmbolo latim minúsculo E com breve","Latin capital letter e with dot above":"SÃmbolo latim maiúsculo E com ponto acima","Latin small letter e with dot above":"SÃmbolo latim minúsculo E com ponto acima","Latin capital letter e with ogonek":"SÃmbolo latim maiúsculo E com ogonek","Latin small letter e with ogonek":"SÃmbolo latim minúsculo E com ogonek","Latin capital letter e with caron":"SÃmbolo latim maiúsculo E com caron","Latin small letter e with caron":"SÃmbolo latim minúsculo E com caron","Latin capital letter g with circumflex":"SÃmbolo latim maiúsculo G com acento circunflexo","Latin small letter g with circumflex":"SÃmbolo latim minúsculo G com acento circunflexo","Latin capital letter g with breve":"SÃmbolo latim maiúsculo G com breve","Latin small letter g with breve":"SÃmbolo latim minúsculo G com breve","Latin capital letter g with dot above":"SÃmbolo latim maiúsculo G com ponto acima","Latin small letter g with dot above":"SÃmbolo latim minúsculo G com ponto acima","Latin capital letter g with cedilla":"SÃmbolo latim maiúsculo G com cedilha","Latin small letter g with cedilla":"SÃmbolo latim minúsculo G com cedilha","Latin capital letter h with circumflex":"SÃmbolo latim maiúsculo H com acento circunflexo","Latin small letter h with circumflex":"SÃmbolo latim minúsculo H com acento circunflexo","Latin capital letter h with stroke":"SÃmbolo latin maiúsculo H com um traçado vertical","Latin small letter h with stroke":"SÃmbolo latin minúsculo H com um traçado vertical","Latin capital letter i with tilde":"SÃmbolo latim maiúsculo I com til","Latin small letter i with tilde":"SÃmbolo latim minúsculo I com til","Latin capital letter i with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter i with macron":"SÃmbolo latim minúsculo I com mácron","Latin capital letter i with breve":"SÃmbolo latim maiúsculo I com breve","Latin small letter i with breve":"SÃmbolo latim minúsculo I com breve","Latin capital letter i with ogonek":"SÃmbolo latim maiúsculo I com ogonek","Latin small letter i with ogonek":"SÃmbolo latim minúsculo I com ogonek","Latin capital letter i with dot above":"SÃmbolo latim maiúsculo I com ponto acima","Latin small letter dotless i":"SÃmbolo latin sem ponto I","Latin capital ligature ij":"SÃmbolo latin maiúsculo ligadura IJ","Latin small ligature ij":"SÃmbolo latin minúsculo ligadura IJ","Latin capital letter j with circumflex":"SÃmbolo latim maiúsculo J com acento circunflexo","Latin small letter j with circumflex":"SÃmbolo latim minúsculo J com acento circunflexo","Latin capital letter k with cedilla":"SÃmbolo latim maiúsculo K com cedilha","Latin small letter k with cedilla":"SÃmbolo latim minúsculo K com cedilha","Latin small letter kra":"SÃmbolo latin minúsculo K","Latin capital letter l with acute":"SÃmbolo latim maiúsculo l com acento agudo","Latin small letter l with acute":"SÃmbolo latim minúsculo I com acento agudo","Latin capital letter l with cedilla":"SÃmbolo latim maiúsculo L com cedilha","Latin small letter l with cedilla":"SÃmbolo latim minúsculo L com cedilha","Latin capital letter l with caron":"SÃmbolo latim maiúsculo I com caron","Latin small letter l with caron":"SÃmbolo latim minúsculo I com caron","Latin capital letter l with middle dot":"SÃmbolo latin maiúsculo L com ponto no meio","Latin small letter l with middle dot":"SÃmbolo latin minúsculo L com ponto no meio","Latin capital letter l with stroke":"SÃmbolo latin maiúsculo L com um traçado vertical","Latin small letter l with stroke":"SÃmbolo latin minúsculo L com um traçado vertical","Latin capital letter n with acute":"SÃmbolo latim maiúsculo N com acento agudo","Latin small letter n with acute":"SÃmbolo latim minúsculo N com acento agudo","Latin capital letter n with cedilla":"SÃmbolo latim maiúsculo N com cedilha","Latin small letter n with cedilla":"SÃmbolo latim minúsculo N com cedilha","Latin capital letter n with caron":"SÃmbolo latim maiúsculo N com caron","Latin small letter n with caron":"SÃmbolo latim minúsculo N com caron","Latin small letter n preceded by apostrophe":"SÃmbolo latim minúsculo N precedido por apóstrofe","Latin capital letter eng":"SÃmbolo latim maiúsculo Eng","Latin small letter eng":"SÃmbolo latim minúsculo Eng","Latin capital letter o with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter o with macron":"SÃmbolo latim minúsculo O com mácron","Latin capital letter o with breve":"SÃmbolo latim maiúsculo O com breve","Latin small letter o with breve":"SÃmbolo latim minúsculo O com breve","Latin capital letter o with double acute":"SÃmbolo latim maiúsculo O com acento agudo duplo","Latin small letter o with double acute":"SÃmbolo latim minúsculo O com acento agudo duplo","Latin capital ligature oe":"SÃmbolo latin maiúsculo ligadura OE","Latin small ligature oe":"SÃmbolo latin minúsculo ligadura OE","Latin capital letter r with acute":"SÃmbolo latim maiúsculo R com acento agudo","Latin small letter r with acute":"SÃmbolo latim minúsculo R com acento agudo","Latin capital letter r with cedilla":"SÃmbolo latim maiúsculo R com cedilha","Latin small letter r with cedilla":"SÃmbolo latim minúsculo R com cedilha","Latin capital letter r with caron":"SÃmbolo latim maiúsculo R com caron","Latin small letter r with caron":"SÃmbolo latim minúsculo R com caron","Latin capital letter s with acute":"SÃmbolo latim maiúsculo S com acento agudo","Latin small letter s with acute":"SÃmbolo latim minúsculo S com acento agudo","Latin capital letter s with circumflex":"SÃmbolo latim maiúsculo S com acento circunflexo","Latin small letter s with circumflex":"SÃmbolo latim minúsculo S com acento circunflexo","Latin capital letter s with cedilla":"SÃmbolo latim maiúsculo S com cedilha","Latin small letter s with cedilla":"SÃmbolo latim minúsculo S com cedilha","Latin capital letter s with caron":"SÃmbolo latim maiúsculo S com caron","Latin small letter s with caron":"SÃmbolo latim minúsculo S com caron","Latin capital letter t with cedilla":"SÃmbolo latim maiúsculo T com cedilha","Latin small letter t with cedilla":"SÃmbolo latim minúsculo T com cedilha","Latin capital letter t with caron":"SÃmbolo latim maiúsculo T com caron","Latin small letter t with caron":"SÃmbolo latim minúsculo T com caron","Latin capital letter t with stroke":"SÃmbolo latin maiúsculo T com um traçado vertical","Latin small letter t with stroke":"SÃmbolo latin minúsculo T com um traçado vertical","Latin capital letter u with tilde":"SÃmbolo latim maiúsculo U com til","Latin small letter u with tilde":"SÃmbolo latim minúsculo U com til","Latin capital letter u with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter u with macron":"SÃmbolo latim minúsculo U com mácron","Latin capital letter u with breve":"SÃmbolo latim maiúsculo U com breve","Latin small letter u with breve":"SÃmbolo latim minúsculo U com breve","Latin capital letter u with ring above":"SÃmbolo latim maiúsculo U com anel acima","Latin small letter u with ring above":"SÃmbolo latim minúsculo U com anel acima","Latin capital letter u with double acute":"SÃmbolo latim maiúsculo U com acento agudo duplo","Latin small letter u with double acute":"SÃmbolo latim minúsculo U com acento agudo","Latin capital letter u with ogonek":"SÃmbolo latim maiúsculo U com ogonek","Latin small letter u with ogonek":"SÃmbolo latim minúsculo U com ogonek","Latin capital letter w with circumflex":"SÃmbolo latim maiúsculo W com acento circunflexo","Latin small letter w with circumflex":"SÃmbolo latim minúsculo W com acento circunflexo","Latin capital letter y with circumflex":"SÃmbolo latim maiúsculo Y com acento circunflexo","Latin small letter y with circumflex":"SÃmbolo latim minúsculo Y com acento circunflexo","Latin capital letter y with diaeresis":"SÃmbolo latim maiúsculo Z com trema","Latin capital letter z with acute":"SÃmbolo latim maiúsculo Z com acento agudo","Latin small letter z with acute":"SÃmbolo latim minúsculo Z com acento agudo","Latin capital letter z with dot above":"SÃmbolo latim maiúsculo Z com ponto acima","Latin small letter z with dot above":"SÃmbolo latim minúsculo Z com ponto acima","Latin capital letter z with caron":"SÃmbolo latim maiúsculo Z com caron","Latin small letter z with caron":"SÃmbolo latim minúsculo Z com caron","Latin small letter long s":"SÃmbolo latim minúsculo long s","Less-than sign":"Sinal menor que","Greater-than sign":"Sinal maior que","Less-than or equal to":"Menor que ou igual a","Greater-than or equal to":"Maior que ou igual a","En dash":"Traço","Em dash":"Travessão",Macron:"Mácron",Overline:"Linha acima","Degree sign":"Sinal de grau","Minus sign":"Sinal de menos","Plus-minus sign":"Sinal de mais ou menos","Division sign":"Sinal de divisão","Fraction slash":"Barra de fração","Multiplication sign":"Sinal de multiplicação","Latin small letter f with hook":"Latim minúsculo F com gancho",Integral:"Integral","N-ary summation":"Somatório",Infinity:"Infinito","Square root":"Raiz quadrada","Tilde operator":"Operador til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Quase igual a","Not equal to":"Diferente de","Identical to":"Idêntico a","Element of":"Elemento de","Not an element of":"Não é um elemento de","Contains as member":"Contém como membro","N-ary product":"Produto Cartesiano","Logical and":"Operador lógico AND","Logical or":"Operador lógico OR","Not sign":"Sinal de não",Intersection:"Interseção",Union:"União","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vazio",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ângulo","Vulgar fraction one quarter":"Fração um quarto","Vulgar fraction one half":"Fração um meio","Vulgar fraction three quarters":"Fração três quartos","Single left-pointing angle quotation mark":"Aspas angulares simples esquerda","Single right-pointing angle quotation mark":"Aspas angulares simples direita","Left-pointing double angle quotation mark":"Aspas angulares duplas esquerda","Right-pointing double angle quotation mark":"Aspas angulares duplas direita","Left single quotation mark":"Aspas simples esquerda","Right single quotation mark":"Aspas simples direita","Left double quotation mark":"Aspas dupla esquerda","Right double quotation mark":"Aspas dupla direita","Single low-9 quotation mark":"Aspas baixas simples","Double low-9 quotation mark":"Aspas duplas baixas simples","Inverted exclamation mark":"Ponto de exclamação invertido","Inverted question mark":"Ponto de interrogação invertido","Two dot leader":"Dois pontos","Horizontal ellipsis":"Elipse horizontal","Double dagger":"Adaga dupla","Per mille sign":"SÃmbolo de por 1 mil","Per ten thousand sign":"SÃmbolo de por 10 mil","Double exclamation mark":"Sinal do ponto de exclamação duplo","Question exclamation mark":"Ponto de interrogação com exclamação","Exclamation question mark":"Ponto de exclamação com interrogação","Double question mark":"Ponto de interrogação duplo","Copyright sign":"SÃmbolo de direitos reservados","Registered sign":"SÃmbolo de registrado","Trade mark sign":"SÃmbolo de marca registrada","Section sign":"SÃmbolo de secção","Paragraph sign":"SÃmbolo de parágrafo","Reversed paragraph sign":"SÃmbolo de parágrafo invertido","Character categories":"Categoria de caracteres",Styles:"Estilos","Multiple styles":"Múltiplos estilos","Block styles":"Estilos de bloco","Text styles":"Estilos de texto","Insert table":"Inserir tabela","Header column":"Coluna de cabeçalho","Insert column left":"Inserir coluna à esquerda","Insert column right":"Inserir coluna à direita","Delete column":"Excluir coluna","Select column":"Selecionar coluna",Column:"Coluna","Header row":"Linha de cabeçalho","Insert row below":"Inserir linha abaixo","Insert row above":"Inserir linha acima","Delete row":"Excluir linha","Select row":"Selecionar linha",Row:"Linha","Merge cell up":"Mesclar acima","Merge cell right":"Mesclar à direita","Merge cell down":"Mesclar abaixo","Merge cell left":"Mesclar à esquerda","Split cell vertically":"Dividir verticalmente","Split cell horizontally":"Dividir horizontalmente","Merge cells":"Mesclar células","Table toolbar":"Ferramentas de Tabela","Table properties":"Propriedades da tabela","Cell properties":"Propriedades da célula",Border:"Borda",Style:"Estilo",Width:"Largura",Height:"Altura",Color:"Cor",Background:"Cor de fundo",Padding:"Margem interna",Dimensions:"Dimensões","Table cell text alignment":"Alinhamento do texto na célula",Alignment:"Alinhamento","Horizontal text alignment toolbar":"Ferramentas de alinhamento horizontal do texto","Vertical text alignment toolbar":"Ferramentas de alinhamento vertical do texto","Table alignment toolbar":"Ferramentas de alinhamento da tabela",None:"Sem borda",Solid:"Sólida",Dotted:"Pontilhada",Dashed:"Tracejada",Double:"Dupla",Groove:"Ranhura",Ridge:"Crista",Inset:"Baixo relevo",Outset:"Alto relevo","Align cell text to the left":"Alinhar texto da célula para a esquerda","Align cell text to the center":"Alinhar texto da célula centralizado","Align cell text to the right":"Alinhar texto da célula para a direita","Justify cell text":"Justificar texto da célula","Align cell text to the top":"Alinhar texto da célula para o topo","Align cell text to the middle":"Alinhar texto da célula para o meio","Align cell text to the bottom":"Alinhar texto da célula para baixo","Align table to the left":"Alinhar tabela para esquerda","Center table":"Centralizar tabela","Align table to the right":"Alinhar tabela para direita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Cor inválida. Tente \"#FF0000\" ou \"rgb(255,0,0)\" ou \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Valor inválido. Tente \"10px\" ou \"2em\" ou apenas \"2\"","Color picker":"Seletor de cor","Toggle caption off":"Desabilitar legenda","Toggle caption on":"Habilitar legenda","Enter table caption":"Inserir legenda da tabela","Rich Text Editor":"Editor de Formatação","Editor editing area: %0":"Ãrea de edição do editor: %0","Edit block":"Editor de bloco","Click to edit block":"Clicar para editar o bloco","Drag to move":"Arrastar para mover",Next:"Próximo",Previous:"Anterior","Editor toolbar":"Ferramentas do Editor","Dropdown toolbar":"Barra de Ferramentas da Lista Suspensa",Black:"Preto","Dim grey":"Cinza escuro",Grey:"Cinza","Light grey":"Cinza claro",White:"Branco",Red:"Vermelho",Orange:"Laranja",Yellow:"Amarelo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Ãgua-marinha",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Púrpura","Editor block content toolbar":"Barra de ferramentas de bloco do Editor","Editor contextual toolbar":"Barra de ferramentas contextual do Editor",HEX:"Hexadecimal",Accept:"Aceitar","No results found":"Nenhum resultado encontrado","No searchable items":"Sem itens pesquisáveis","Editor dialog":"Diálogo do editor",Close:"Fechar",Undo:"Desfazer",Redo:"Refazer","Upload in progress":"Enviando dados","Widget toolbar":"Ferramentas de Widgets","Insert paragraph before block":"Inserir parágrafo antes do bloco","Insert paragraph after block":"Inserir parágrafo após o bloco","Press Enter to type after or press Shift + Enter to type before the widget":"Pressione Enter para digitar depois ou pressione Shift + Enter para digitar antes do widget","Words: %0":"Palavras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['pt-br'] = d['pt-br'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinhar à esquerda","Align right":"Alinhar à direita","Align center":"Centralizar",Justify:"Justificar","Text alignment":"Alinhamento do texto","Text alignment toolbar":"Ferramentas de alinhamento de texto",Bold:"Negrito",Italic:"Itálico",Underline:"Sublinhado",Code:"Código",Strikethrough:"Tachado",Subscript:"Subscrito",Superscript:"Sobrescrito","Block quote":"Bloco de citação","Insert code block":"Inserir bloco de código","Plain text":"Texto sem formatação",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Remover cor","Restore default":"Restaurar padrão",Save:"Salvar","Show more items":"Exibir mais itens","%0 of %1":"%0 de %1","Cannot upload file:":"Não foi possÃvel enviar o arquivo:","Rich Text Editor. Editing area: %0":"Editor de Texto Valioso. Ãrea de edição: %0","Insert with file manager":"Inserir com gerenciador de arquivos","Replace with file manager":"Substituir pelo gerenciador de arquivos","Insert image with file manager":"Inserir imagem com o gerenciador de arquivos","Replace image with file manager":"Substituir imagem pelo gerenciador de arquivos","Find and replace":"Localizar e substituir","Find in text…":"Localizar no texto",Find:"Localizar","Previous result":"Ocorrência anterior","Next result":"Próxima ocorrência",Replace:"Substituir","Replace all":"Substituir todos","Match case":"Diferenciar maiúsculas de minúsculas","Whole words only":"Apenas palavras inteiras","Replace with…":"Substituir por...","Text to find must not be empty.":"O texto a ser localizado não pode ser vazio.","Tip: Find some text first in order to replace it.":"Dica: Localize algum texto primeiro para poder substituÃ-lo.","Advanced options":"Opções avançadas","Font Size":"Tamanho da fonte",Tiny:"Minúsculo",Small:"Pequeno",Big:"Grande",Huge:"Gigante","Font Family":"Fonte",Default:"Padrão","Font Color":"Cor da Fonte","Font Background Color":"Cor de Fundo","Document colors":"Cores do documento",Paragraph:"Parágrafo",Heading:"Titulo","Choose heading":"Escolha o tÃtulo","Heading 1":"TÃtulo 1","Heading 2":"TÃtulo 2","Heading 3":"TÃtulo 3","Heading 4":"TÃtulo 4","Heading 5":"TÃtulo 5","Heading 6":"TÃtulo 6","Type your title":"Digite o tÃtulo","Type or paste your content here.":"Digite ou cole o conteúdo aqui.","Horizontal line":"Linha horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar recuo","Decrease indent":"Diminuir recuo",Unlink:"Remover link",Link:"Link","Link URL":"URL do link","Link image":"Link com imagem","Edit link":"Editar link","Open link in new tab":"Abrir link em nova aba","This link has no URL":"Este link não possui uma URL","Open in a new tab":"Abrir em nova aba",Downloadable:"Pode ser baixado","Numbered List":"Lista numerada","Bulleted List":"Lista com marcadores","To-do List":"Lista de Tarefas","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista com marcador","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Alternar o estilo da lista de disco","Toggle the circle list style":"Alternar o estilo da lista de cÃrculo","Toggle the square list style":"Alternar o estilo de lista quadrada","Toggle the decimal list style":"Alternar o estilo de lista decimal","Toggle the decimal with leading zero list style":"Alternar o estilo de lista decimal com zero à esquerda","Toggle the lower–roman list style":"Alternar o estilo de lista romana minúscula","Toggle the upper–roman list style":"Alternar o estilo de lista romana maiúscula","Toggle the lower–latin list style":"Alternar o estilo de lista latina minúscula","Toggle the upper–latin list style":"Alternar o estilo de lista latino maiúscula",Disc:"Disco",Circle:"CÃrculo",Square:"Quadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal com zero à esquerda","Lower–roman":"Romano minúsculo","Upper-roman":"Romano maiúsculo","Lower-latin":"Latim minúsculo","Upper-latin":"Latim maiúsculo","List properties":"Propriedades da lista","Start at":"Iniciar em","Start index must be greater than 0.":"O Ãndice inicial deve ser maior que 0.","Reversed order":"Ordem inversa","Remove Format":"Remover Formatação","Select all":"Selecionar tudo","Show blocks":"Mostrar blocos",Source:"Código-Fonte","Special characters":"Caracteres especiais",All:"Tudo",Arrows:"Setas",Currency:"Moeda",Latin:"Latim",Mathematical:"Matemática",Text:"Texto","leftwards simple arrow":"seta simples para a esquerda","rightwards simple arrow":"seta simples para a direita","upwards simple arrow":"seta simples para cima","downwards simple arrow":"seta simples para baixo","leftwards double arrow":"seta dupla para esquerda","rightwards double arrow":"seta dupla para direita","upwards double arrow":"seta dupla para cima","downwards double arrow":"seta dupla para baixo","leftwards dashed arrow":"seta tracejada para esquerda","rightwards dashed arrow":"seta tracejada para direita","upwards dashed arrow":"seta tracejada para cima","downwards dashed arrow":"seta tracejada para baixo","leftwards arrow to bar":"seta à esquerda para barra","rightwards arrow to bar":"seta à direita para barra","upwards arrow to bar":"seta a cima para barra","downwards arrow to bar":"seta a baixo para barra","up down arrow with base":"seta para cima e para baixo com base","back with leftwards arrow above":"sÃmbolo BACK com a seta para esquerda acima","end with leftwards arrow above":"sÃmbolo END com a seta para esquerda acima","on with exclamation mark with left right arrow above":"sÃmbolo ON com ponto de exclamação e seta para esquerda e direita acima","soon with rightwards arrow above":"sÃmbolo SOON com a seta para a direita acima","top with upwards arrow above":"sÃmbolo TOP com a seta para cima acima","Dollar sign":"SÃmbolo do Dólar","Euro sign":"SÃmbolo do Euro","Yen sign":"SÃmbolo do Yen","Pound sign":"SÃmbolo de Libra","Cent sign":"SÃmbolo de Centavo","Euro-currency sign":"SÃmbolo da moeda Euro","Colon sign":"Sinal de dois pontos","Cruzeiro sign":"SÃmbolo do Cruzeiro","French franc sign":"SÃmbolo do Franco Francês","Lira sign":"SÃmbolo da Lira","Currency sign":"SÃmbolo de moeda","Bitcoin sign":"SÃmbolo do Bitcoin","Mill sign":"SÃmbolo de Mill","Naira sign":"SÃmbolo de Naira","Peseta sign":"SÃmbolo de Peseta","Rupee sign":"SÃmbolo da Rupia","Won sign":"SÃmbolo do Won","New sheqel sign":"SÃmbolo do Novo Sheqel","Dong sign":"SÃmbolo do Dong","Kip sign":"SÃmbolo do Kip","Tugrik sign":"SÃmbolo de Tugrik","Drachma sign":"Sinal de Dracma","German penny sign":"SÃmbolo do Centavo Alemão","Peso sign":"SÃmbolo do Peso","Guarani sign":"SÃmbolo do Guarani","Austral sign":"SÃmbolo de Austral","Hryvnia sign":"SÃmbolo de Hryvnia","Cedi sign":"SÃmbolo de Cedi","Livre tournois sign":"SÃmbolo de Livre tournois","Spesmilo sign":"SÃmbolo do Spesmilo","Tenge sign":"SÃmbolo do Tenge","Indian rupee sign":"SÃmbolo da Rupia Indiana","Turkish lira sign":"SÃmbolo da Lira Turca","Nordic mark sign":"SÃmbolo do Marco Nórdico","Manat sign":"SÃmbolo do Manat","Ruble sign":"SÃmbolo do Rublo Russo","Latin capital letter a with macron":"SÃmbolo latim maiúsculo A com mácron","Latin small letter a with macron":"SÃmbolo latim minúsculo A com mácron","Latin capital letter a with breve":"SÃmbolo latim maiúsculo A com breve","Latin small letter a with breve":"SÃmbolo latim minúsculo A com breve","Latin capital letter a with ogonek":"SÃmbolo latim maiúsculo A com ogonek","Latin small letter a with ogonek":"SÃmbolo latim minúsculo A com ogonek","Latin capital letter c with acute":"SÃmbolo latim maiúsculo C com acento agudo","Latin small letter c with acute":"SÃmbolo latim minúsculo C com acento agudo","Latin capital letter c with circumflex":"SÃmbolo latim maiúsculo C com acento circunflexo","Latin small letter c with circumflex":"SÃmbolo latim minúsculo C com acento circunflexo","Latin capital letter c with dot above":"SÃmbolo latim maiúsculo C com ponto acima","Latin small letter c with dot above":"SÃmbolo latim minúsculo C com ponto acima","Latin capital letter c with caron":"SÃmbolo latim maiúsculo C com caron","Latin small letter c with caron":"SÃmbolo latim minúsculo C com caron","Latin capital letter d with caron":"SÃmbolo latim maiúsculo D com caron","Latin small letter d with caron":"SÃmbolo latim minúsculo D com caron","Latin capital letter d with stroke":"SÃmbolo latin maiúsculo D com um traçado vertical","Latin small letter d with stroke":"SÃmbolo latin minúsculo D com um traçado vertical","Latin capital letter e with macron":"SÃmbolo latim maiúsculo E com mácron","Latin small letter e with macron":"SÃmbolo latim minúsculo E com mácron","Latin capital letter e with breve":"SÃmbolo latim maiúsculo E com breve","Latin small letter e with breve":"SÃmbolo latim minúsculo E com breve","Latin capital letter e with dot above":"SÃmbolo latim maiúsculo E com ponto acima","Latin small letter e with dot above":"SÃmbolo latim minúsculo E com ponto acima","Latin capital letter e with ogonek":"SÃmbolo latim maiúsculo E com ogonek","Latin small letter e with ogonek":"SÃmbolo latim minúsculo E com ogonek","Latin capital letter e with caron":"SÃmbolo latim maiúsculo E com caron","Latin small letter e with caron":"SÃmbolo latim minúsculo E com caron","Latin capital letter g with circumflex":"SÃmbolo latim maiúsculo G com acento circunflexo","Latin small letter g with circumflex":"SÃmbolo latim minúsculo G com acento circunflexo","Latin capital letter g with breve":"SÃmbolo latim maiúsculo G com breve","Latin small letter g with breve":"SÃmbolo latim minúsculo G com breve","Latin capital letter g with dot above":"SÃmbolo latim maiúsculo G com ponto acima","Latin small letter g with dot above":"SÃmbolo latim minúsculo G com ponto acima","Latin capital letter g with cedilla":"SÃmbolo latim maiúsculo G com cedilha","Latin small letter g with cedilla":"SÃmbolo latim minúsculo G com cedilha","Latin capital letter h with circumflex":"SÃmbolo latim maiúsculo H com acento circunflexo","Latin small letter h with circumflex":"SÃmbolo latim minúsculo H com acento circunflexo","Latin capital letter h with stroke":"SÃmbolo latin maiúsculo H com um traçado vertical","Latin small letter h with stroke":"SÃmbolo latin minúsculo H com um traçado vertical","Latin capital letter i with tilde":"SÃmbolo latim maiúsculo I com til","Latin small letter i with tilde":"SÃmbolo latim minúsculo I com til","Latin capital letter i with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter i with macron":"SÃmbolo latim minúsculo I com mácron","Latin capital letter i with breve":"SÃmbolo latim maiúsculo I com breve","Latin small letter i with breve":"SÃmbolo latim minúsculo I com breve","Latin capital letter i with ogonek":"SÃmbolo latim maiúsculo I com ogonek","Latin small letter i with ogonek":"SÃmbolo latim minúsculo I com ogonek","Latin capital letter i with dot above":"SÃmbolo latim maiúsculo I com ponto acima","Latin small letter dotless i":"SÃmbolo latin sem ponto I","Latin capital ligature ij":"SÃmbolo latin maiúsculo ligadura IJ","Latin small ligature ij":"SÃmbolo latin minúsculo ligadura IJ","Latin capital letter j with circumflex":"SÃmbolo latim maiúsculo J com acento circunflexo","Latin small letter j with circumflex":"SÃmbolo latim minúsculo J com acento circunflexo","Latin capital letter k with cedilla":"SÃmbolo latim maiúsculo K com cedilha","Latin small letter k with cedilla":"SÃmbolo latim minúsculo K com cedilha","Latin small letter kra":"SÃmbolo latin minúsculo K","Latin capital letter l with acute":"SÃmbolo latim maiúsculo l com acento agudo","Latin small letter l with acute":"SÃmbolo latim minúsculo I com acento agudo","Latin capital letter l with cedilla":"SÃmbolo latim maiúsculo L com cedilha","Latin small letter l with cedilla":"SÃmbolo latim minúsculo L com cedilha","Latin capital letter l with caron":"SÃmbolo latim maiúsculo I com caron","Latin small letter l with caron":"SÃmbolo latim minúsculo I com caron","Latin capital letter l with middle dot":"SÃmbolo latin maiúsculo L com ponto no meio","Latin small letter l with middle dot":"SÃmbolo latin minúsculo L com ponto no meio","Latin capital letter l with stroke":"SÃmbolo latin maiúsculo L com um traçado vertical","Latin small letter l with stroke":"SÃmbolo latin minúsculo L com um traçado vertical","Latin capital letter n with acute":"SÃmbolo latim maiúsculo N com acento agudo","Latin small letter n with acute":"SÃmbolo latim minúsculo N com acento agudo","Latin capital letter n with cedilla":"SÃmbolo latim maiúsculo N com cedilha","Latin small letter n with cedilla":"SÃmbolo latim minúsculo N com cedilha","Latin capital letter n with caron":"SÃmbolo latim maiúsculo N com caron","Latin small letter n with caron":"SÃmbolo latim minúsculo N com caron","Latin small letter n preceded by apostrophe":"SÃmbolo latim minúsculo N precedido por apóstrofe","Latin capital letter eng":"SÃmbolo latim maiúsculo Eng","Latin small letter eng":"SÃmbolo latim minúsculo Eng","Latin capital letter o with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter o with macron":"SÃmbolo latim minúsculo O com mácron","Latin capital letter o with breve":"SÃmbolo latim maiúsculo O com breve","Latin small letter o with breve":"SÃmbolo latim minúsculo O com breve","Latin capital letter o with double acute":"SÃmbolo latim maiúsculo O com acento agudo duplo","Latin small letter o with double acute":"SÃmbolo latim minúsculo O com acento agudo duplo","Latin capital ligature oe":"SÃmbolo latin maiúsculo ligadura OE","Latin small ligature oe":"SÃmbolo latin minúsculo ligadura OE","Latin capital letter r with acute":"SÃmbolo latim maiúsculo R com acento agudo","Latin small letter r with acute":"SÃmbolo latim minúsculo R com acento agudo","Latin capital letter r with cedilla":"SÃmbolo latim maiúsculo R com cedilha","Latin small letter r with cedilla":"SÃmbolo latim minúsculo R com cedilha","Latin capital letter r with caron":"SÃmbolo latim maiúsculo R com caron","Latin small letter r with caron":"SÃmbolo latim minúsculo R com caron","Latin capital letter s with acute":"SÃmbolo latim maiúsculo S com acento agudo","Latin small letter s with acute":"SÃmbolo latim minúsculo S com acento agudo","Latin capital letter s with circumflex":"SÃmbolo latim maiúsculo S com acento circunflexo","Latin small letter s with circumflex":"SÃmbolo latim minúsculo S com acento circunflexo","Latin capital letter s with cedilla":"SÃmbolo latim maiúsculo S com cedilha","Latin small letter s with cedilla":"SÃmbolo latim minúsculo S com cedilha","Latin capital letter s with caron":"SÃmbolo latim maiúsculo S com caron","Latin small letter s with caron":"SÃmbolo latim minúsculo S com caron","Latin capital letter t with cedilla":"SÃmbolo latim maiúsculo T com cedilha","Latin small letter t with cedilla":"SÃmbolo latim minúsculo T com cedilha","Latin capital letter t with caron":"SÃmbolo latim maiúsculo T com caron","Latin small letter t with caron":"SÃmbolo latim minúsculo T com caron","Latin capital letter t with stroke":"SÃmbolo latin maiúsculo T com um traçado vertical","Latin small letter t with stroke":"SÃmbolo latin minúsculo T com um traçado vertical","Latin capital letter u with tilde":"SÃmbolo latim maiúsculo U com til","Latin small letter u with tilde":"SÃmbolo latim minúsculo U com til","Latin capital letter u with macron":"SÃmbolo latim maiúsculo I com mácron","Latin small letter u with macron":"SÃmbolo latim minúsculo U com mácron","Latin capital letter u with breve":"SÃmbolo latim maiúsculo U com breve","Latin small letter u with breve":"SÃmbolo latim minúsculo U com breve","Latin capital letter u with ring above":"SÃmbolo latim maiúsculo U com anel acima","Latin small letter u with ring above":"SÃmbolo latim minúsculo U com anel acima","Latin capital letter u with double acute":"SÃmbolo latim maiúsculo U com acento agudo duplo","Latin small letter u with double acute":"SÃmbolo latim minúsculo U com acento agudo","Latin capital letter u with ogonek":"SÃmbolo latim maiúsculo U com ogonek","Latin small letter u with ogonek":"SÃmbolo latim minúsculo U com ogonek","Latin capital letter w with circumflex":"SÃmbolo latim maiúsculo W com acento circunflexo","Latin small letter w with circumflex":"SÃmbolo latim minúsculo W com acento circunflexo","Latin capital letter y with circumflex":"SÃmbolo latim maiúsculo Y com acento circunflexo","Latin small letter y with circumflex":"SÃmbolo latim minúsculo Y com acento circunflexo","Latin capital letter y with diaeresis":"SÃmbolo latim maiúsculo Z com trema","Latin capital letter z with acute":"SÃmbolo latim maiúsculo Z com acento agudo","Latin small letter z with acute":"SÃmbolo latim minúsculo Z com acento agudo","Latin capital letter z with dot above":"SÃmbolo latim maiúsculo Z com ponto acima","Latin small letter z with dot above":"SÃmbolo latim minúsculo Z com ponto acima","Latin capital letter z with caron":"SÃmbolo latim maiúsculo Z com caron","Latin small letter z with caron":"SÃmbolo latim minúsculo Z com caron","Latin small letter long s":"SÃmbolo latim minúsculo long s","Less-than sign":"Sinal menor que","Greater-than sign":"Sinal maior que","Less-than or equal to":"Menor que ou igual a","Greater-than or equal to":"Maior que ou igual a","En dash":"Traço","Em dash":"Travessão",Macron:"Mácron",Overline:"Linha acima","Degree sign":"Sinal de grau","Minus sign":"Sinal de menos","Plus-minus sign":"Sinal de mais ou menos","Division sign":"Sinal de divisão","Fraction slash":"Barra de fração","Multiplication sign":"Sinal de multiplicação","Latin small letter f with hook":"Latim minúsculo F com gancho",Integral:"Integral","N-ary summation":"Somatório",Infinity:"Infinito","Square root":"Raiz quadrada","Tilde operator":"Operador til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Quase igual a","Not equal to":"Diferente de","Identical to":"Idêntico a","Element of":"Elemento de","Not an element of":"Não é um elemento de","Contains as member":"Contém como membro","N-ary product":"Produto Cartesiano","Logical and":"Operador lógico AND","Logical or":"Operador lógico OR","Not sign":"Sinal de não",Intersection:"Interseção",Union:"União","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vazio",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ângulo","Vulgar fraction one quarter":"Fração um quarto","Vulgar fraction one half":"Fração um meio","Vulgar fraction three quarters":"Fração três quartos","Single left-pointing angle quotation mark":"Aspas angulares simples esquerda","Single right-pointing angle quotation mark":"Aspas angulares simples direita","Left-pointing double angle quotation mark":"Aspas angulares duplas esquerda","Right-pointing double angle quotation mark":"Aspas angulares duplas direita","Left single quotation mark":"Aspas simples esquerda","Right single quotation mark":"Aspas simples direita","Left double quotation mark":"Aspas dupla esquerda","Right double quotation mark":"Aspas dupla direita","Single low-9 quotation mark":"Aspas baixas simples","Double low-9 quotation mark":"Aspas duplas baixas simples","Inverted exclamation mark":"Ponto de exclamação invertido","Inverted question mark":"Ponto de interrogação invertido","Two dot leader":"Dois pontos","Horizontal ellipsis":"Elipse horizontal","Double dagger":"Adaga dupla","Per mille sign":"SÃmbolo de por 1 mil","Per ten thousand sign":"SÃmbolo de por 10 mil","Double exclamation mark":"Sinal do ponto de exclamação duplo","Question exclamation mark":"Ponto de interrogação com exclamação","Exclamation question mark":"Ponto de exclamação com interrogação","Double question mark":"Ponto de interrogação duplo","Copyright sign":"SÃmbolo de direitos reservados","Registered sign":"SÃmbolo de registrado","Trade mark sign":"SÃmbolo de marca registrada","Section sign":"SÃmbolo de secção","Paragraph sign":"SÃmbolo de parágrafo","Reversed paragraph sign":"SÃmbolo de parágrafo invertido","Character categories":"Categoria de caracteres",Styles:"Estilos","Multiple styles":"Múltiplos estilos","Block styles":"Estilos de bloco","Text styles":"Estilos de texto","Insert table":"Inserir tabela","Header column":"Coluna de cabeçalho","Insert column left":"Inserir coluna à esquerda","Insert column right":"Inserir coluna à direita","Delete column":"Excluir coluna","Select column":"Selecionar coluna",Column:"Coluna","Header row":"Linha de cabeçalho","Insert row below":"Inserir linha abaixo","Insert row above":"Inserir linha acima","Delete row":"Excluir linha","Select row":"Selecionar linha",Row:"Linha","Merge cell up":"Mesclar acima","Merge cell right":"Mesclar à direita","Merge cell down":"Mesclar abaixo","Merge cell left":"Mesclar à esquerda","Split cell vertically":"Dividir verticalmente","Split cell horizontally":"Dividir horizontalmente","Merge cells":"Mesclar células","Table toolbar":"Ferramentas de Tabela","Table properties":"Propriedades da tabela","Cell properties":"Propriedades da célula",Border:"Borda",Style:"Estilo",Width:"Largura",Height:"Altura",Color:"Cor",Background:"Cor de fundo",Padding:"Margem interna",Dimensions:"Dimensões","Table cell text alignment":"Alinhamento do texto na célula",Alignment:"Alinhamento","Horizontal text alignment toolbar":"Ferramentas de alinhamento horizontal do texto","Vertical text alignment toolbar":"Ferramentas de alinhamento vertical do texto","Table alignment toolbar":"Ferramentas de alinhamento da tabela",None:"Sem borda",Solid:"Sólida",Dotted:"Pontilhada",Dashed:"Tracejada",Double:"Dupla",Groove:"Ranhura",Ridge:"Crista",Inset:"Baixo relevo",Outset:"Alto relevo","Align cell text to the left":"Alinhar texto da célula para a esquerda","Align cell text to the center":"Alinhar texto da célula centralizado","Align cell text to the right":"Alinhar texto da célula para a direita","Justify cell text":"Justificar texto da célula","Align cell text to the top":"Alinhar texto da célula para o topo","Align cell text to the middle":"Alinhar texto da célula para o meio","Align cell text to the bottom":"Alinhar texto da célula para baixo","Align table to the left":"Alinhar tabela para esquerda","Center table":"Centralizar tabela","Align table to the right":"Alinhar tabela para direita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Cor inválida. Tente \"#FF0000\" ou \"rgb(255,0,0)\" ou \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Valor inválido. Tente \"10px\" ou \"2em\" ou apenas \"2\"","Color picker":"Seletor de cor","Toggle caption off":"Desabilitar legenda","Toggle caption on":"Habilitar legenda","Enter table caption":"Inserir legenda da tabela","Rich Text Editor":"Editor de Formatação","Editor editing area: %0":"Ãrea de edição do editor: %0","Edit block":"Editor de bloco","Click to edit block":"Clicar para editar o bloco","Drag to move":"Arrastar para mover",Next:"Próximo",Previous:"Anterior","Editor toolbar":"Ferramentas do Editor","Dropdown toolbar":"Barra de Ferramentas da Lista Suspensa",Black:"Preto","Dim grey":"Cinza escuro",Grey:"Cinza","Light grey":"Cinza claro",White:"Branco",Red:"Vermelho",Orange:"Laranja",Yellow:"Amarelo","Light green":"Verde claro",Green:"Verde",Aquamarine:"Ãgua-marinha",Turquoise:"Turquesa","Light blue":"Azul claro",Blue:"Azul",Purple:"Púrpura","Editor block content toolbar":"Barra de ferramentas de bloco do Editor","Editor contextual toolbar":"Barra de ferramentas contextual do Editor",HEX:"Hexadecimal",Accept:"Aceitar","No results found":"Nenhum resultado encontrado","No searchable items":"Sem itens pesquisáveis","Editor dialog":"Diálogo do editor",Close:"Fechar",Undo:"Desfazer",Redo:"Refazer","Upload in progress":"Enviando dados","Widget toolbar":"Ferramentas de Widgets","Insert paragraph before block":"Inserir parágrafo antes do bloco","Insert paragraph after block":"Inserir parágrafo após o bloco","Press Enter to type after or press Shift + Enter to type before the widget":"Pressione Enter para digitar depois ou pressione Shift + Enter para digitar antes do widget","Words: %0":"Palavras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt.js index fa1e579db9094a2c7c755df4c4d120849131b03c..a359f16469332102e299d4368e89d4753cf0dfbc 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/pt.js @@ -1 +1 @@ -(function(d){ const l = d['pt'] = d['pt'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinhar à esquerda","Align right":"Alinhar à direita","Align center":"Alinhar ao centro",Justify:"Justificar","Text alignment":"Alinhamento de texto","Text alignment toolbar":"Barra de alinhamento de texto",Bold:"Negrito",Italic:"Itálico",Underline:"Sublinhado",Code:"Código",Strikethrough:"Riscado",Subscript:"Subscrito",Superscript:"Sobrescrito","Block quote":"Bloco de citação","Insert code block":"Inserir bloco de citação","Plain text":"Texto simples",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Remover cor","Restore default":"Restaurar predefinição",Save:"Guardar","Show more items":"Mostrar mais itens","%0 of %1":"%0 de %1","Cannot upload file:":"Não foi possÃvel carregar o ficheiro:","Rich Text Editor. Editing area: %0":"Editor de Texto Formatado. Ãrea de edição: %0","Insert with file manager":"Inserir com o gestor de ficheiros","Replace with file manager":"Substituir com o gestor de ficheiros","Insert image with file manager":"Inserir imagem com o gestor de ficheiros","Replace image with file manager":"Substituir imagem com o gestor de ficheiros","Find and replace":"Encontrar e substituir","Find in text…":"Encontrar no texto...",Find:"Encontrar","Previous result":"Resultado anterior","Next result":"Próximo resultado",Replace:"Substituir","Replace all":"Substituir todos","Match case":"Corresponder maiúsculas/minúsculas","Whole words only":"Apenas palavras inteiras","Replace with…":"Substituir com...","Text to find must not be empty.":"O texto a pesquisar não pode estar vazio.","Tip: Find some text first in order to replace it.":"Dica: Encontre algum texto primeiro para poder substituÃ-lo.","Advanced options":"Opções avançadas",Paragraph:"Parágrafo",Heading:"Cabeçalho","Choose heading":"Escolher cabeçalho","Heading 1":"Cabeçalho 1","Heading 2":"Cabeçalho 2","Heading 3":"Cabeçalho 3","Heading 4":"Cabeçalho 4","Heading 5":"Cabeçalho 5","Heading 6":"Cabeçalho 6","Type your title":"Introduza o seu tÃtulo","Type or paste your content here.":"Digite ou cole o seu conteúdo aqui.","Horizontal line":"Linha horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar indentação","Decrease indent":"Diminuir indentação",Unlink:"Desligar",Link:"Hiperligação","Link URL":"URL da ligação","Link image":"Adicionar link a imagem","Edit link":"Editar link","Open link in new tab":"Abrir link num novo separador","This link has no URL":"Este link não tem URL","Open in a new tab":"Abrir num novo separador",Downloadable:"Descarregável","Numbered List":"Lista ordenada","Bulleted List":"Lista não ordenada","To-do List":"Lista de Afazeres","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista de itens","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Ativar o estilo de lista de discos","Toggle the circle list style":"Ativar o estilo de lista de cÃrculos","Toggle the square list style":"Ativar o estilo de lista de quadrados","Toggle the decimal list style":"Ativar o estilo de lista decimal","Toggle the decimal with leading zero list style":"Ativar o estilo de lista decimal com zero inicial","Toggle the lower–roman list style":"Ativar o estilo de lista de números romanos minúsculos","Toggle the upper–roman list style":"Ativar o estilo de lista de números romanos maiúsculos","Toggle the lower–latin list style":"Ativar o estilo de lista de latim minúsculo","Toggle the upper–latin list style":"Ativar o estilo de lista de latim maiúsculo",Disc:"Disco",Circle:"CÃrculo",Square:"Quadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal com zero inicial","Lower–roman":"Romano minúsculo","Upper-roman":"Romano maiúsculo","Lower-latin":"Latim minúsculo","Upper-latin":"Latim maiúsculo","List properties":"Propriedades da lista","Start at":"Começa em","Start index must be greater than 0.":"O Ãndice inicial tem de ser superior a 0.","Reversed order":"Ordem invertida","Remove Format":"Remover formatação","Select all":"Selecionar todos","Show blocks":"Mostrar blocos",Source:"Fonte","Special characters":"Carateres especiais",All:"Todos",Arrows:"Setas",Currency:"Moeda",Latin:"Latinos",Mathematical:"Matemáticos",Text:"Texto","leftwards simple arrow":"seta simples para a esquerda","rightwards simple arrow":"seta simples para a direita","upwards simple arrow":"seta simples para cima","downwards simple arrow":"seta simples para baixo","leftwards double arrow":"seta dupla para a esquerda","rightwards double arrow":"seta dupla para a direita","upwards double arrow":"seta dupla para cima","downwards double arrow":"seta dupla para baixo","leftwards dashed arrow":"seta tracejada para a esquerda","rightwards dashed arrow":"seta tracejada para a direita","upwards dashed arrow":"seta tracejada para cima","downwards dashed arrow":"seta tracejada para baixo","leftwards arrow to bar":"seta para a esquerda contra uma barra","rightwards arrow to bar":"seta para a direita contra uma barra","upwards arrow to bar":"seta para cima contra uma barra","downwards arrow to bar":"seta para baixo contra uma barra","up down arrow with base":"seta bidirecional vertical com base","back with leftwards arrow above":"\"back\" com seta para a esquerda em cima","end with leftwards arrow above":"\"end\" com seta para a esquerda em cima","on with exclamation mark with left right arrow above":"\"on\" com sinal de exclamação com seta para a direita e para a esquerda em cima","soon with rightwards arrow above":"\"soon\" com seta para a direita em cima","top with upwards arrow above":"\"Top\" com seta para cima em cima","Dollar sign":"Cifrão","Euro sign":"Sinal de euro","Yen sign":"Sinal de iene","Pound sign":"Sinal de libra","Cent sign":"Sinal de cêntimo","Euro-currency sign":"Sinal monetário do euro","Colon sign":"Sinal de colombo","Cruzeiro sign":"Sinal de cruzeiro","French franc sign":"Sinal de franco francês","Lira sign":"Sinal de lira","Currency sign":"Sinal monetário","Bitcoin sign":"Sinal de bitcoin","Mill sign":"Sinal de mill","Naira sign":"Sinal de naira","Peseta sign":"Sinal de peseta","Rupee sign":"Sinal de rupia","Won sign":"Sinal de won","New sheqel sign":"Sinal de novo sheqel","Dong sign":"Sinal de dong","Kip sign":"Sinal de kip","Tugrik sign":"Sinal de tugrique","Drachma sign":"Sinal de dracma","German penny sign":"Sinal de fénigue alemão","Peso sign":"Sinal de peso","Guarani sign":"Sinal de guarani","Austral sign":"Sinal de austral","Hryvnia sign":"Sinal de grÃvnia","Cedi sign":"Sinal de cedi","Livre tournois sign":"Sinal de libra de tours","Spesmilo sign":"Sinal de spesmilo","Tenge sign":"Sinal de tengue","Indian rupee sign":"Sinal de rupia indiana","Turkish lira sign":"Sinal de lira turca","Nordic mark sign":"Sinal de marca nórdica","Manat sign":"Sinal de manat","Ruble sign":"Sinal de rublo","Latin capital letter a with macron":"Latim - letra maiúscula a com mácron","Latin small letter a with macron":"Latim - letra minúscula a com mácron","Latin capital letter a with breve":"Latim - letra maiúscula a com breve","Latin small letter a with breve":"Latim - letra minúscula a com breve","Latin capital letter a with ogonek":"Latim - letra maiúscula a com ogonek","Latin small letter a with ogonek":"Latim - letra minúscula a com ogonek","Latin capital letter c with acute":"Latim - letra maiúscula c com acento agudo","Latin small letter c with acute":"Latim - letra minúscula c com acento agudo","Latin capital letter c with circumflex":"Latim - letra maiúscula c com acento circunflexo","Latin small letter c with circumflex":"Latim - letra minúscula c com acento circunflexo","Latin capital letter c with dot above":"Latim - letra maiúscula c com um ponto por cima","Latin small letter c with dot above":"Latim - letra minúscula c com um ponto por cima","Latin capital letter c with caron":"Latim - letra maiúscula c com cáron","Latin small letter c with caron":"Latim - letra minúscula c com cáron","Latin capital letter d with caron":"Latim - letra maiúscula d com cáron","Latin small letter d with caron":"Latim - letra minúscula d com cáron","Latin capital letter d with stroke":"Latim - letra maiúscula d cortada por um traço","Latin small letter d with stroke":"Latim - letra minúscula d cortada por um traço","Latin capital letter e with macron":"Latim - letra maiúscula e com mácron","Latin small letter e with macron":"Latim - letra minúscula e com mácron","Latin capital letter e with breve":"Latim - letra maiúscula e com breve","Latin small letter e with breve":"Latim - letra minúscula e com breve","Latin capital letter e with dot above":"Latim - letra maiúscula e com um ponto por cima","Latin small letter e with dot above":"Latim - letra minúscula e com um ponto por cima","Latin capital letter e with ogonek":"Latim - letra maiúscula e com ogonek","Latin small letter e with ogonek":"Latim - letra minúscula e com ogonek","Latin capital letter e with caron":"Latim - letra maiúscula e com cáron","Latin small letter e with caron":"Latim - letra minúscula e com cáron","Latin capital letter g with circumflex":"Latim - letra maiúscula g com acento circunflexo","Latin small letter g with circumflex":"Latim - letra minúscula g com acento circunflexo","Latin capital letter g with breve":"Latim - letra maiúscula g com breve","Latin small letter g with breve":"Latim - letra minúscula g com breve","Latin capital letter g with dot above":"Latim - letra maiúscula g com um ponto por cima","Latin small letter g with dot above":"Latim - letra minúscula g com um ponto por cima","Latin capital letter g with cedilla":"Latim - letra maiúscula g com cedilha","Latin small letter g with cedilla":"Latim - letra minúscula g com cedilha","Latin capital letter h with circumflex":"Latim - letra maiúscula h com acento circunflexo","Latin small letter h with circumflex":"Latim - letra minúscula h com acento circunflexo","Latin capital letter h with stroke":"Latim - letra maiúscula h cortada por um traço","Latin small letter h with stroke":"Latim - letra minúscula h cortada por um traço","Latin capital letter i with tilde":"Latim - letra maiúscula i com til","Latin small letter i with tilde":"Latim - letra minúscula i com til","Latin capital letter i with macron":"Latim - letra maiúscula i com mácron","Latin small letter i with macron":"Latim - letra minúscula i com mácron","Latin capital letter i with breve":"Latim - letra maiúscula i com breve","Latin small letter i with breve":"Latim - letra minúscula i com breve","Latin capital letter i with ogonek":"Latim - letra maiúscula i com ogonek","Latin small letter i with ogonek":"Latim - letra minúscula i com ogonek","Latin capital letter i with dot above":"Latim - letra maiúscula i com um ponto por cima","Latin small letter dotless i":"Latim - letra minúscula i, sem ponto","Latin capital ligature ij":"Latim - digrama das letras maiúsculas ligadas ij","Latin small ligature ij":"Latim - digrama das letras minúsculas ligadas ij","Latin capital letter j with circumflex":"Latim - letra maiúscula j com acento circunflexo","Latin small letter j with circumflex":"Latim - letra minúscula j com acento circunflexo","Latin capital letter k with cedilla":"Latim - letra maiúscula k com cedilha","Latin small letter k with cedilla":"Latim - letra minúscula k com cedilha","Latin small letter kra":"Latim - letra minúscula kra (pequeno k)","Latin capital letter l with acute":"Latim - letra maiúscula l com acento agudo","Latin small letter l with acute":"Latim - letra minúscula l com acento agudo","Latin capital letter l with cedilla":"Latim - letra maiúscula l com cedilha","Latin small letter l with cedilla":"Latim - letra minúscula l com cedilha","Latin capital letter l with caron":"Latim - letra maiúscula l com cáron","Latin small letter l with caron":"Latim - letra minúscula l com cáron","Latin capital letter l with middle dot":"Latim - letra maiúscula l com ponto central","Latin small letter l with middle dot":"Latim - letra minúscula l com ponto central","Latin capital letter l with stroke":"Latim - letra maiúscula l cortada por um traço","Latin small letter l with stroke":"Latim - letra minúscula l cortada por um traço","Latin capital letter n with acute":"Latim - letra maiúscula n com acento agudo","Latin small letter n with acute":"Latim - letra minúscula n com acento agudo","Latin capital letter n with cedilla":"Latim - letra maiúscula n com cedilha","Latin small letter n with cedilla":"Latim - letra minúscula n com cedilha","Latin capital letter n with caron":"Latim - letra maiúscula n com cáron","Latin small letter n with caron":"Latim - letra minúscula n com cáron","Latin small letter n preceded by apostrophe":"Latim - letra minúscula n precedida por um apóstrofo","Latin capital letter eng":"Latim - letra maiúscula eng (fonema velar nasal)","Latin small letter eng":"Latim - letra minúscula eng (fonema velar nasal)","Latin capital letter o with macron":"Latim - letra maiúscula o com mácron","Latin small letter o with macron":"Latim - letra minúscula o com mácron","Latin capital letter o with breve":"Latim - letra maiúscula o com breve","Latin small letter o with breve":"Latim - letra minúscula o com breve","Latin capital letter o with double acute":"Latim - letra maiúscula o com acento agudo duplo","Latin small letter o with double acute":"Latim - letra minúscula o com acento agudo duplo","Latin capital ligature oe":"Latim - digrama das letras maiúsculas ligadas oe","Latin small ligature oe":"Latim - digrama das letras minúsculas ligadas oe","Latin capital letter r with acute":"Latim - letra maiúscula r com acento agudo","Latin small letter r with acute":"Latim - letra minúscula r com acento agudo","Latin capital letter r with cedilla":"Latim - letra maiúscula r com cedilha","Latin small letter r with cedilla":"Latim - letra minúscula r com cedilha","Latin capital letter r with caron":"Latim - letra maiúscula r com cáron","Latin small letter r with caron":"Latim - letra minúscula r com cáron","Latin capital letter s with acute":"Latim - letra maiúscula s com acento agudo","Latin small letter s with acute":"Latim - letra minúscula s com acento agudo","Latin capital letter s with circumflex":"Latim - letra maiúscula s com acento circunflexo","Latin small letter s with circumflex":"Latim - letra minúscula s com acento circunflexo","Latin capital letter s with cedilla":"Latim - letra maiúscula s com cedilha","Latin small letter s with cedilla":"Latim - letra minúscula s com cedilha","Latin capital letter s with caron":"Latim - letra maiúscula s com cáron","Latin small letter s with caron":"Latim - letra minúscula s com cáron","Latin capital letter t with cedilla":"Latim - letra maiúscula t com cedilha","Latin small letter t with cedilla":"Latim - letra minúscula t com cedilha","Latin capital letter t with caron":"Latim - letra maiúscula t com cáron","Latin small letter t with caron":"Latim - letra minúscula t com cáron","Latin capital letter t with stroke":"Latim - letra maiúscula t cortada por um traço","Latin small letter t with stroke":"Latim - letra minúscula t cortada por um traço","Latin capital letter u with tilde":"Latim - letra maiúscula u com til","Latin small letter u with tilde":"Latim - letra minúscula u com til","Latin capital letter u with macron":"Latim - letra maiúscula u com mácron","Latin small letter u with macron":"Latim - letra minúscula u com mácron","Latin capital letter u with breve":"Latim - letra maiúscula u com breve","Latin small letter u with breve":"Latim - letra minúscula u com breve","Latin capital letter u with ring above":"Latim - letra maiúscula u com cÃrculo por cima","Latin small letter u with ring above":"Latim - letra minúscula u com cÃrculo por cima","Latin capital letter u with double acute":"Latim - letra maiúscula u com acento agudo duplo","Latin small letter u with double acute":"Latim - letra minúscula u com acento agudo duplo","Latin capital letter u with ogonek":"Latim - letra maiúscula u com ogonek","Latin small letter u with ogonek":"Latim - letra minúscula u com ogonek","Latin capital letter w with circumflex":"Latim - letra maiúscula w com acento circunflexo","Latin small letter w with circumflex":"Latim - letra minúscula w com acento circunflexo","Latin capital letter y with circumflex":"Latim - letra maiúscula y com acento circunflexo","Latin small letter y with circumflex":"Latim - letra minúscula y com acento circunflexo","Latin capital letter y with diaeresis":"Latim - letra maiúscula y com trema","Latin capital letter z with acute":"Latim - letra maiúscula z com acento agudo","Latin small letter z with acute":"Latim - letra minúscula z com acento agudo","Latin capital letter z with dot above":"Latim - letra maiúscula z com um ponto por cima","Latin small letter z with dot above":"Latim - letra minúscula z com um ponto por cima","Latin capital letter z with caron":"Latim - letra maiúscula z com cáron","Latin small letter z with caron":"Latim - letra minúscula z com cáron","Latin small letter long s":"Latim - s prolongado (sÃmbolo do fonema fricativo alveolar surdo)","Less-than sign":"Sinal de menor","Greater-than sign":"Sinal de maior","Less-than or equal to":"Menor que ou igual a","Greater-than or equal to":"Maior que ou igual a","En dash":"Traço","Em dash":"Travessão",Macron:"Mácron",Overline:"Linha sobreposta","Degree sign":"Sinal de grau","Minus sign":"Sinal de subtração","Plus-minus sign":"Sinal de adição-subtração","Division sign":"Sinal de divisão","Fraction slash":"Barra de fração","Multiplication sign":"Sinal de multiplicação","Latin small letter f with hook":"Latim - letra minúscula f com gancho",Integral:"Inteiro","N-ary summation":"N-ésimo somatório",Infinity:"Infinito","Square root":"Raiz quadrada","Tilde operator":"Operador de til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Quase igual a","Not equal to":"Diferente de","Identical to":"Idêntico a","Element of":"Elemento de","Not an element of":"Não é um elemento de","Contains as member":"Contém como membro","N-ary product":"N-ésimo produto","Logical and":"E lógico","Logical or":"Ou lógico","Not sign":"Sinal de negação",Intersection:"Interseção",Union:"União","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vazio",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ângulo","Vulgar fraction one quarter":"Fração comum - um quarto","Vulgar fraction one half":"Fração comum - um meio","Vulgar fraction three quarters":"Fração comum - três quartos","Single left-pointing angle quotation mark":"Plica esquerda em ângulo","Single right-pointing angle quotation mark":"Plica direita em ângulo","Left-pointing double angle quotation mark":"Aspas esquerdas em ângulo","Right-pointing double angle quotation mark":"Aspas direitas em ângulo","Left single quotation mark":"Plica esquerda","Right single quotation mark":"Plica direita","Left double quotation mark":"Aspas esquerdas","Right double quotation mark":"Aspas direitas","Single low-9 quotation mark":"Plica curva inferior","Double low-9 quotation mark":"Aspas curvas inferiores","Inverted exclamation mark":"Ponto de exclamação invertido","Inverted question mark":"Ponto de interrogação invertido","Two dot leader":"Dois pontos de seguimento","Horizontal ellipsis":"Reticências horizontais","Double dagger":"Óbelo duplo","Per mille sign":"Sinal de permilagem","Per ten thousand sign":"Razão de um para dez mil","Double exclamation mark":"Ponto de exclamação duplo","Question exclamation mark":"Sinal de exclamação interrogativa","Exclamation question mark":"Sinal de interrogação exclamativa","Double question mark":"Duplo ponto de interrogação","Copyright sign":"Sinal de copyright","Registered sign":"Sinal de registado","Trade mark sign":"Sinal de marca comercial","Section sign":"Sinal de secção","Paragraph sign":"Sinal de parágrafo","Reversed paragraph sign":"Sinal de parágrafo invertido","Character categories":"Categorias de carateres",Styles:"Estilos","Multiple styles":"Vários estilos","Block styles":"Estilos de blocos","Text styles":"Estilos de texto","Insert table":"Inserir tabela","Header column":"Coluna de cabeçalho","Insert column left":"Inserir coluna à esquerda","Insert column right":"Inserir coluna à direita","Delete column":"Eliminar coluna","Select column":"Selecionar coluna",Column:"Coluna","Header row":"Filha de cabeçalho","Insert row below":"Inserir fila abaixo","Insert row above":"Inserir fila acima","Delete row":"Eliminar fila","Select row":"Selecionar fila",Row:"Fila","Merge cell up":"Unir célula acima","Merge cell right":"Unir célula à direita","Merge cell down":"Unir célula abaixo","Merge cell left":"Unir célula à esquerda","Split cell vertically":"Dividir célula verticalmente","Split cell horizontally":"Dividir célula horizontalmente","Merge cells":"Fundir células","Table toolbar":"Barra de ferramentas da tabela","Table properties":"Propriedades da tabela","Cell properties":"Propriedades da célula",Border:"Limite",Style:"Estilo",Width:"Largura",Height:"Altura",Color:"Cor",Background:"Fundo",Padding:"Enchimento",Dimensions:"Dimensões","Table cell text alignment":"Alinhamento de texto das células da tabela",Alignment:"Alinhamento","Horizontal text alignment toolbar":"Barra de ferramentas do alinhamento horizontal de texto","Vertical text alignment toolbar":"Barra de ferramentas do alinhamento vertical de texto","Table alignment toolbar":"Barra de ferramentas do alinhamento da tabela",None:"Nenhum",Solid:"Sólido",Dotted:"Pontilhado",Dashed:"Tracejado",Double:"Duplo",Groove:"Sulcos",Ridge:"Rebordo",Inset:"Interior",Outset:"Exterior","Align cell text to the left":"Alinhar texto da célula à esquerda","Align cell text to the center":"Alinhar texto da célula ao centro","Align cell text to the right":"Alinhar texto da célula à direita","Justify cell text":"Justificar texto da célula","Align cell text to the top":"Alinhar texto da célula no topo","Align cell text to the middle":"Alinhar texto da célula ao meio","Align cell text to the bottom":"Alinhar texto da célula no fundo","Align table to the left":"Alinhar tabela à esquerda","Center table":"Centrar tabela","Align table to the right":"Alinhar tabela à direita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A cor é inválida. Tente \"#FF0000\" ou \"rgb(255,0,0)\" ou \"vermelho\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"O valor é inválido. Tente \"10px\" ou \"2em\" ou simplesmente \"2\".","Color picker":"Selecionador de cor","Toggle caption off":"Desativar legenda","Toggle caption on":"Ativar legenda","Enter table caption":"Introduzir legenda da tabela","Rich Text Editor":"Editor de texto avançado","Editor editing area: %0":"Ãrea de edição do editor: %0","Edit block":"Editar bloco","Click to edit block":"Clique para editar o bloco","Drag to move":"Arraste para mover",Next:"Seguinte",Previous:"Anterior","Editor toolbar":"Barra de ferramentas do editor","Dropdown toolbar":"Barra de ferramentas do dropdown",Black:"Preto","Dim grey":"Cinzento-escuro",Grey:"Cinzento","Light grey":"Cinzento-claro",White:"Branco",Red:"Vermelho",Orange:"Laranja",Yellow:"Amarelo","Light green":"Verde-claro",Green:"Verde",Aquamarine:"Verde-azulado",Turquoise:"Turquesa","Light blue":"Azul-claro",Blue:"Azul",Purple:"Roxo","Editor block content toolbar":"Barra de ferramentas de edição do conteúdo de blocos","Editor contextual toolbar":"Barra de ferramentas contextual de edição",HEX:"HEX",Accept:"Aceitar","No results found":"Nenhum resultado encontrado","No searchable items":"Nenhum item pesquisável","Editor dialog":"Diálogo do editor",Close:"Fechar",Undo:"Desfazer",Redo:"Refazer","Upload in progress":"Carregamento em progresso","Widget toolbar":"Barra de ferramentas do widget","Insert paragraph before block":"Inserir parágrafo antes do bloco","Insert paragraph after block":"Inserir parágrafo após o bloco","Press Enter to type after or press Shift + Enter to type before the widget":"Prima Enter para escrever depois ou Shift + Enter para escrever antes do widget","Words: %0":"Palavras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['pt'] = d['pt'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Alinhar à esquerda","Align right":"Alinhar à direita","Align center":"Alinhar ao centro",Justify:"Justificar","Text alignment":"Alinhamento de texto","Text alignment toolbar":"Barra de alinhamento de texto",Bold:"Negrito",Italic:"Itálico",Underline:"Sublinhado",Code:"Código",Strikethrough:"Riscado",Subscript:"Subscrito",Superscript:"Sobrescrito","Block quote":"Bloco de citação","Insert code block":"Inserir bloco de citação","Plain text":"Texto simples",Cancel:"Cancelar",Clear:"Limpar","Remove color":"Remover cor","Restore default":"Restaurar predefinição",Save:"Guardar","Show more items":"Mostrar mais itens","%0 of %1":"%0 de %1","Cannot upload file:":"Não foi possÃvel carregar o ficheiro:","Rich Text Editor. Editing area: %0":"Editor de Texto Formatado. Ãrea de edição: %0","Insert with file manager":"Inserir com o gestor de ficheiros","Replace with file manager":"Substituir com o gestor de ficheiros","Insert image with file manager":"Inserir imagem com o gestor de ficheiros","Replace image with file manager":"Substituir imagem com o gestor de ficheiros","Find and replace":"Encontrar e substituir","Find in text…":"Encontrar no texto...",Find:"Encontrar","Previous result":"Resultado anterior","Next result":"Próximo resultado",Replace:"Substituir","Replace all":"Substituir todos","Match case":"Corresponder maiúsculas/minúsculas","Whole words only":"Apenas palavras inteiras","Replace with…":"Substituir com...","Text to find must not be empty.":"O texto a pesquisar não pode estar vazio.","Tip: Find some text first in order to replace it.":"Dica: Encontre algum texto primeiro para poder substituÃ-lo.","Advanced options":"Opções avançadas","Font Size":"Tamanho da Fonte",Tiny:"MÃnima",Small:"Pequena",Big:"Grande",Huge:"Enorme","Font Family":"FamÃlia de Fontes",Default:"Padrão","Font Color":"Cor da Fonte","Font Background Color":"Cor de Fundo da Fonte","Document colors":"Cores do documento",Paragraph:"Parágrafo",Heading:"Cabeçalho","Choose heading":"Escolher cabeçalho","Heading 1":"Cabeçalho 1","Heading 2":"Cabeçalho 2","Heading 3":"Cabeçalho 3","Heading 4":"Cabeçalho 4","Heading 5":"Cabeçalho 5","Heading 6":"Cabeçalho 6","Type your title":"Introduza o seu tÃtulo","Type or paste your content here.":"Digite ou cole o seu conteúdo aqui.","Horizontal line":"Linha horizontal","HTML object":"Objeto HTML","Increase indent":"Aumentar indentação","Decrease indent":"Diminuir indentação",Unlink:"Desligar",Link:"Hiperligação","Link URL":"URL da ligação","Link image":"Adicionar link a imagem","Edit link":"Editar link","Open link in new tab":"Abrir link num novo separador","This link has no URL":"Este link não tem URL","Open in a new tab":"Abrir num novo separador",Downloadable:"Descarregável","Numbered List":"Lista ordenada","Bulleted List":"Lista não ordenada","To-do List":"Lista de Afazeres","Bulleted list styles toolbar":"Barra de ferramentas de estilos de lista de itens","Numbered list styles toolbar":"Barra de ferramentas de estilos de lista numerada","Toggle the disc list style":"Ativar o estilo de lista de discos","Toggle the circle list style":"Ativar o estilo de lista de cÃrculos","Toggle the square list style":"Ativar o estilo de lista de quadrados","Toggle the decimal list style":"Ativar o estilo de lista decimal","Toggle the decimal with leading zero list style":"Ativar o estilo de lista decimal com zero inicial","Toggle the lower–roman list style":"Ativar o estilo de lista de números romanos minúsculos","Toggle the upper–roman list style":"Ativar o estilo de lista de números romanos maiúsculos","Toggle the lower–latin list style":"Ativar o estilo de lista de latim minúsculo","Toggle the upper–latin list style":"Ativar o estilo de lista de latim maiúsculo",Disc:"Disco",Circle:"CÃrculo",Square:"Quadrado",Decimal:"Decimal","Decimal with leading zero":"Decimal com zero inicial","Lower–roman":"Romano minúsculo","Upper-roman":"Romano maiúsculo","Lower-latin":"Latim minúsculo","Upper-latin":"Latim maiúsculo","List properties":"Propriedades da lista","Start at":"Começa em","Start index must be greater than 0.":"O Ãndice inicial tem de ser superior a 0.","Reversed order":"Ordem invertida","Remove Format":"Remover formatação","Select all":"Selecionar todos","Show blocks":"Mostrar blocos",Source:"Fonte","Special characters":"Carateres especiais",All:"Todos",Arrows:"Setas",Currency:"Moeda",Latin:"Latinos",Mathematical:"Matemáticos",Text:"Texto","leftwards simple arrow":"seta simples para a esquerda","rightwards simple arrow":"seta simples para a direita","upwards simple arrow":"seta simples para cima","downwards simple arrow":"seta simples para baixo","leftwards double arrow":"seta dupla para a esquerda","rightwards double arrow":"seta dupla para a direita","upwards double arrow":"seta dupla para cima","downwards double arrow":"seta dupla para baixo","leftwards dashed arrow":"seta tracejada para a esquerda","rightwards dashed arrow":"seta tracejada para a direita","upwards dashed arrow":"seta tracejada para cima","downwards dashed arrow":"seta tracejada para baixo","leftwards arrow to bar":"seta para a esquerda contra uma barra","rightwards arrow to bar":"seta para a direita contra uma barra","upwards arrow to bar":"seta para cima contra uma barra","downwards arrow to bar":"seta para baixo contra uma barra","up down arrow with base":"seta bidirecional vertical com base","back with leftwards arrow above":"\"back\" com seta para a esquerda em cima","end with leftwards arrow above":"\"end\" com seta para a esquerda em cima","on with exclamation mark with left right arrow above":"\"on\" com sinal de exclamação com seta para a direita e para a esquerda em cima","soon with rightwards arrow above":"\"soon\" com seta para a direita em cima","top with upwards arrow above":"\"Top\" com seta para cima em cima","Dollar sign":"Cifrão","Euro sign":"Sinal de euro","Yen sign":"Sinal de iene","Pound sign":"Sinal de libra","Cent sign":"Sinal de cêntimo","Euro-currency sign":"Sinal monetário do euro","Colon sign":"Sinal de colombo","Cruzeiro sign":"Sinal de cruzeiro","French franc sign":"Sinal de franco francês","Lira sign":"Sinal de lira","Currency sign":"Sinal monetário","Bitcoin sign":"Sinal de bitcoin","Mill sign":"Sinal de mill","Naira sign":"Sinal de naira","Peseta sign":"Sinal de peseta","Rupee sign":"Sinal de rupia","Won sign":"Sinal de won","New sheqel sign":"Sinal de novo sheqel","Dong sign":"Sinal de dong","Kip sign":"Sinal de kip","Tugrik sign":"Sinal de tugrique","Drachma sign":"Sinal de dracma","German penny sign":"Sinal de fénigue alemão","Peso sign":"Sinal de peso","Guarani sign":"Sinal de guarani","Austral sign":"Sinal de austral","Hryvnia sign":"Sinal de grÃvnia","Cedi sign":"Sinal de cedi","Livre tournois sign":"Sinal de libra de tours","Spesmilo sign":"Sinal de spesmilo","Tenge sign":"Sinal de tengue","Indian rupee sign":"Sinal de rupia indiana","Turkish lira sign":"Sinal de lira turca","Nordic mark sign":"Sinal de marca nórdica","Manat sign":"Sinal de manat","Ruble sign":"Sinal de rublo","Latin capital letter a with macron":"Latim - letra maiúscula a com mácron","Latin small letter a with macron":"Latim - letra minúscula a com mácron","Latin capital letter a with breve":"Latim - letra maiúscula a com breve","Latin small letter a with breve":"Latim - letra minúscula a com breve","Latin capital letter a with ogonek":"Latim - letra maiúscula a com ogonek","Latin small letter a with ogonek":"Latim - letra minúscula a com ogonek","Latin capital letter c with acute":"Latim - letra maiúscula c com acento agudo","Latin small letter c with acute":"Latim - letra minúscula c com acento agudo","Latin capital letter c with circumflex":"Latim - letra maiúscula c com acento circunflexo","Latin small letter c with circumflex":"Latim - letra minúscula c com acento circunflexo","Latin capital letter c with dot above":"Latim - letra maiúscula c com um ponto por cima","Latin small letter c with dot above":"Latim - letra minúscula c com um ponto por cima","Latin capital letter c with caron":"Latim - letra maiúscula c com cáron","Latin small letter c with caron":"Latim - letra minúscula c com cáron","Latin capital letter d with caron":"Latim - letra maiúscula d com cáron","Latin small letter d with caron":"Latim - letra minúscula d com cáron","Latin capital letter d with stroke":"Latim - letra maiúscula d cortada por um traço","Latin small letter d with stroke":"Latim - letra minúscula d cortada por um traço","Latin capital letter e with macron":"Latim - letra maiúscula e com mácron","Latin small letter e with macron":"Latim - letra minúscula e com mácron","Latin capital letter e with breve":"Latim - letra maiúscula e com breve","Latin small letter e with breve":"Latim - letra minúscula e com breve","Latin capital letter e with dot above":"Latim - letra maiúscula e com um ponto por cima","Latin small letter e with dot above":"Latim - letra minúscula e com um ponto por cima","Latin capital letter e with ogonek":"Latim - letra maiúscula e com ogonek","Latin small letter e with ogonek":"Latim - letra minúscula e com ogonek","Latin capital letter e with caron":"Latim - letra maiúscula e com cáron","Latin small letter e with caron":"Latim - letra minúscula e com cáron","Latin capital letter g with circumflex":"Latim - letra maiúscula g com acento circunflexo","Latin small letter g with circumflex":"Latim - letra minúscula g com acento circunflexo","Latin capital letter g with breve":"Latim - letra maiúscula g com breve","Latin small letter g with breve":"Latim - letra minúscula g com breve","Latin capital letter g with dot above":"Latim - letra maiúscula g com um ponto por cima","Latin small letter g with dot above":"Latim - letra minúscula g com um ponto por cima","Latin capital letter g with cedilla":"Latim - letra maiúscula g com cedilha","Latin small letter g with cedilla":"Latim - letra minúscula g com cedilha","Latin capital letter h with circumflex":"Latim - letra maiúscula h com acento circunflexo","Latin small letter h with circumflex":"Latim - letra minúscula h com acento circunflexo","Latin capital letter h with stroke":"Latim - letra maiúscula h cortada por um traço","Latin small letter h with stroke":"Latim - letra minúscula h cortada por um traço","Latin capital letter i with tilde":"Latim - letra maiúscula i com til","Latin small letter i with tilde":"Latim - letra minúscula i com til","Latin capital letter i with macron":"Latim - letra maiúscula i com mácron","Latin small letter i with macron":"Latim - letra minúscula i com mácron","Latin capital letter i with breve":"Latim - letra maiúscula i com breve","Latin small letter i with breve":"Latim - letra minúscula i com breve","Latin capital letter i with ogonek":"Latim - letra maiúscula i com ogonek","Latin small letter i with ogonek":"Latim - letra minúscula i com ogonek","Latin capital letter i with dot above":"Latim - letra maiúscula i com um ponto por cima","Latin small letter dotless i":"Latim - letra minúscula i, sem ponto","Latin capital ligature ij":"Latim - digrama das letras maiúsculas ligadas ij","Latin small ligature ij":"Latim - digrama das letras minúsculas ligadas ij","Latin capital letter j with circumflex":"Latim - letra maiúscula j com acento circunflexo","Latin small letter j with circumflex":"Latim - letra minúscula j com acento circunflexo","Latin capital letter k with cedilla":"Latim - letra maiúscula k com cedilha","Latin small letter k with cedilla":"Latim - letra minúscula k com cedilha","Latin small letter kra":"Latim - letra minúscula kra (pequeno k)","Latin capital letter l with acute":"Latim - letra maiúscula l com acento agudo","Latin small letter l with acute":"Latim - letra minúscula l com acento agudo","Latin capital letter l with cedilla":"Latim - letra maiúscula l com cedilha","Latin small letter l with cedilla":"Latim - letra minúscula l com cedilha","Latin capital letter l with caron":"Latim - letra maiúscula l com cáron","Latin small letter l with caron":"Latim - letra minúscula l com cáron","Latin capital letter l with middle dot":"Latim - letra maiúscula l com ponto central","Latin small letter l with middle dot":"Latim - letra minúscula l com ponto central","Latin capital letter l with stroke":"Latim - letra maiúscula l cortada por um traço","Latin small letter l with stroke":"Latim - letra minúscula l cortada por um traço","Latin capital letter n with acute":"Latim - letra maiúscula n com acento agudo","Latin small letter n with acute":"Latim - letra minúscula n com acento agudo","Latin capital letter n with cedilla":"Latim - letra maiúscula n com cedilha","Latin small letter n with cedilla":"Latim - letra minúscula n com cedilha","Latin capital letter n with caron":"Latim - letra maiúscula n com cáron","Latin small letter n with caron":"Latim - letra minúscula n com cáron","Latin small letter n preceded by apostrophe":"Latim - letra minúscula n precedida por um apóstrofo","Latin capital letter eng":"Latim - letra maiúscula eng (fonema velar nasal)","Latin small letter eng":"Latim - letra minúscula eng (fonema velar nasal)","Latin capital letter o with macron":"Latim - letra maiúscula o com mácron","Latin small letter o with macron":"Latim - letra minúscula o com mácron","Latin capital letter o with breve":"Latim - letra maiúscula o com breve","Latin small letter o with breve":"Latim - letra minúscula o com breve","Latin capital letter o with double acute":"Latim - letra maiúscula o com acento agudo duplo","Latin small letter o with double acute":"Latim - letra minúscula o com acento agudo duplo","Latin capital ligature oe":"Latim - digrama das letras maiúsculas ligadas oe","Latin small ligature oe":"Latim - digrama das letras minúsculas ligadas oe","Latin capital letter r with acute":"Latim - letra maiúscula r com acento agudo","Latin small letter r with acute":"Latim - letra minúscula r com acento agudo","Latin capital letter r with cedilla":"Latim - letra maiúscula r com cedilha","Latin small letter r with cedilla":"Latim - letra minúscula r com cedilha","Latin capital letter r with caron":"Latim - letra maiúscula r com cáron","Latin small letter r with caron":"Latim - letra minúscula r com cáron","Latin capital letter s with acute":"Latim - letra maiúscula s com acento agudo","Latin small letter s with acute":"Latim - letra minúscula s com acento agudo","Latin capital letter s with circumflex":"Latim - letra maiúscula s com acento circunflexo","Latin small letter s with circumflex":"Latim - letra minúscula s com acento circunflexo","Latin capital letter s with cedilla":"Latim - letra maiúscula s com cedilha","Latin small letter s with cedilla":"Latim - letra minúscula s com cedilha","Latin capital letter s with caron":"Latim - letra maiúscula s com cáron","Latin small letter s with caron":"Latim - letra minúscula s com cáron","Latin capital letter t with cedilla":"Latim - letra maiúscula t com cedilha","Latin small letter t with cedilla":"Latim - letra minúscula t com cedilha","Latin capital letter t with caron":"Latim - letra maiúscula t com cáron","Latin small letter t with caron":"Latim - letra minúscula t com cáron","Latin capital letter t with stroke":"Latim - letra maiúscula t cortada por um traço","Latin small letter t with stroke":"Latim - letra minúscula t cortada por um traço","Latin capital letter u with tilde":"Latim - letra maiúscula u com til","Latin small letter u with tilde":"Latim - letra minúscula u com til","Latin capital letter u with macron":"Latim - letra maiúscula u com mácron","Latin small letter u with macron":"Latim - letra minúscula u com mácron","Latin capital letter u with breve":"Latim - letra maiúscula u com breve","Latin small letter u with breve":"Latim - letra minúscula u com breve","Latin capital letter u with ring above":"Latim - letra maiúscula u com cÃrculo por cima","Latin small letter u with ring above":"Latim - letra minúscula u com cÃrculo por cima","Latin capital letter u with double acute":"Latim - letra maiúscula u com acento agudo duplo","Latin small letter u with double acute":"Latim - letra minúscula u com acento agudo duplo","Latin capital letter u with ogonek":"Latim - letra maiúscula u com ogonek","Latin small letter u with ogonek":"Latim - letra minúscula u com ogonek","Latin capital letter w with circumflex":"Latim - letra maiúscula w com acento circunflexo","Latin small letter w with circumflex":"Latim - letra minúscula w com acento circunflexo","Latin capital letter y with circumflex":"Latim - letra maiúscula y com acento circunflexo","Latin small letter y with circumflex":"Latim - letra minúscula y com acento circunflexo","Latin capital letter y with diaeresis":"Latim - letra maiúscula y com trema","Latin capital letter z with acute":"Latim - letra maiúscula z com acento agudo","Latin small letter z with acute":"Latim - letra minúscula z com acento agudo","Latin capital letter z with dot above":"Latim - letra maiúscula z com um ponto por cima","Latin small letter z with dot above":"Latim - letra minúscula z com um ponto por cima","Latin capital letter z with caron":"Latim - letra maiúscula z com cáron","Latin small letter z with caron":"Latim - letra minúscula z com cáron","Latin small letter long s":"Latim - s prolongado (sÃmbolo do fonema fricativo alveolar surdo)","Less-than sign":"Sinal de menor","Greater-than sign":"Sinal de maior","Less-than or equal to":"Menor que ou igual a","Greater-than or equal to":"Maior que ou igual a","En dash":"Traço","Em dash":"Travessão",Macron:"Mácron",Overline:"Linha sobreposta","Degree sign":"Sinal de grau","Minus sign":"Sinal de subtração","Plus-minus sign":"Sinal de adição-subtração","Division sign":"Sinal de divisão","Fraction slash":"Barra de fração","Multiplication sign":"Sinal de multiplicação","Latin small letter f with hook":"Latim - letra minúscula f com gancho",Integral:"Inteiro","N-ary summation":"N-ésimo somatório",Infinity:"Infinito","Square root":"Raiz quadrada","Tilde operator":"Operador de til","Approximately equal to":"Aproximadamente igual a","Almost equal to":"Quase igual a","Not equal to":"Diferente de","Identical to":"Idêntico a","Element of":"Elemento de","Not an element of":"Não é um elemento de","Contains as member":"Contém como membro","N-ary product":"N-ésimo produto","Logical and":"E lógico","Logical or":"Ou lógico","Not sign":"Sinal de negação",Intersection:"Interseção",Union:"União","Partial differential":"Diferencial parcial","For all":"Para todo","There exists":"Existe","Empty set":"Conjunto vazio",Nabla:"Nabla","Asterisk operator":"Operador asterisco","Proportional to":"Proporcional a",Angle:"Ângulo","Vulgar fraction one quarter":"Fração comum - um quarto","Vulgar fraction one half":"Fração comum - um meio","Vulgar fraction three quarters":"Fração comum - três quartos","Single left-pointing angle quotation mark":"Plica esquerda em ângulo","Single right-pointing angle quotation mark":"Plica direita em ângulo","Left-pointing double angle quotation mark":"Aspas esquerdas em ângulo","Right-pointing double angle quotation mark":"Aspas direitas em ângulo","Left single quotation mark":"Plica esquerda","Right single quotation mark":"Plica direita","Left double quotation mark":"Aspas esquerdas","Right double quotation mark":"Aspas direitas","Single low-9 quotation mark":"Plica curva inferior","Double low-9 quotation mark":"Aspas curvas inferiores","Inverted exclamation mark":"Ponto de exclamação invertido","Inverted question mark":"Ponto de interrogação invertido","Two dot leader":"Dois pontos de seguimento","Horizontal ellipsis":"Reticências horizontais","Double dagger":"Óbelo duplo","Per mille sign":"Sinal de permilagem","Per ten thousand sign":"Razão de um para dez mil","Double exclamation mark":"Ponto de exclamação duplo","Question exclamation mark":"Sinal de exclamação interrogativa","Exclamation question mark":"Sinal de interrogação exclamativa","Double question mark":"Duplo ponto de interrogação","Copyright sign":"Sinal de copyright","Registered sign":"Sinal de registado","Trade mark sign":"Sinal de marca comercial","Section sign":"Sinal de secção","Paragraph sign":"Sinal de parágrafo","Reversed paragraph sign":"Sinal de parágrafo invertido","Character categories":"Categorias de carateres",Styles:"Estilos","Multiple styles":"Vários estilos","Block styles":"Estilos de blocos","Text styles":"Estilos de texto","Insert table":"Inserir tabela","Header column":"Coluna de cabeçalho","Insert column left":"Inserir coluna à esquerda","Insert column right":"Inserir coluna à direita","Delete column":"Eliminar coluna","Select column":"Selecionar coluna",Column:"Coluna","Header row":"Filha de cabeçalho","Insert row below":"Inserir fila abaixo","Insert row above":"Inserir fila acima","Delete row":"Eliminar fila","Select row":"Selecionar fila",Row:"Fila","Merge cell up":"Unir célula acima","Merge cell right":"Unir célula à direita","Merge cell down":"Unir célula abaixo","Merge cell left":"Unir célula à esquerda","Split cell vertically":"Dividir célula verticalmente","Split cell horizontally":"Dividir célula horizontalmente","Merge cells":"Fundir células","Table toolbar":"Barra de ferramentas da tabela","Table properties":"Propriedades da tabela","Cell properties":"Propriedades da célula",Border:"Limite",Style:"Estilo",Width:"Largura",Height:"Altura",Color:"Cor",Background:"Fundo",Padding:"Enchimento",Dimensions:"Dimensões","Table cell text alignment":"Alinhamento de texto das células da tabela",Alignment:"Alinhamento","Horizontal text alignment toolbar":"Barra de ferramentas do alinhamento horizontal de texto","Vertical text alignment toolbar":"Barra de ferramentas do alinhamento vertical de texto","Table alignment toolbar":"Barra de ferramentas do alinhamento da tabela",None:"Nenhum",Solid:"Sólido",Dotted:"Pontilhado",Dashed:"Tracejado",Double:"Duplo",Groove:"Sulcos",Ridge:"Rebordo",Inset:"Interior",Outset:"Exterior","Align cell text to the left":"Alinhar texto da célula à esquerda","Align cell text to the center":"Alinhar texto da célula ao centro","Align cell text to the right":"Alinhar texto da célula à direita","Justify cell text":"Justificar texto da célula","Align cell text to the top":"Alinhar texto da célula no topo","Align cell text to the middle":"Alinhar texto da célula ao meio","Align cell text to the bottom":"Alinhar texto da célula no fundo","Align table to the left":"Alinhar tabela à esquerda","Center table":"Centrar tabela","Align table to the right":"Alinhar tabela à direita","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"A cor é inválida. Tente \"#FF0000\" ou \"rgb(255,0,0)\" ou \"vermelho\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"O valor é inválido. Tente \"10px\" ou \"2em\" ou simplesmente \"2\".","Color picker":"Selecionador de cor","Toggle caption off":"Desativar legenda","Toggle caption on":"Ativar legenda","Enter table caption":"Introduzir legenda da tabela","Rich Text Editor":"Editor de texto avançado","Editor editing area: %0":"Ãrea de edição do editor: %0","Edit block":"Editar bloco","Click to edit block":"Clique para editar o bloco","Drag to move":"Arraste para mover",Next:"Seguinte",Previous:"Anterior","Editor toolbar":"Barra de ferramentas do editor","Dropdown toolbar":"Barra de ferramentas do dropdown",Black:"Preto","Dim grey":"Cinzento-escuro",Grey:"Cinzento","Light grey":"Cinzento-claro",White:"Branco",Red:"Vermelho",Orange:"Laranja",Yellow:"Amarelo","Light green":"Verde-claro",Green:"Verde",Aquamarine:"Verde-azulado",Turquoise:"Turquesa","Light blue":"Azul-claro",Blue:"Azul",Purple:"Roxo","Editor block content toolbar":"Barra de ferramentas de edição do conteúdo de blocos","Editor contextual toolbar":"Barra de ferramentas contextual de edição",HEX:"HEX",Accept:"Aceitar","No results found":"Nenhum resultado encontrado","No searchable items":"Nenhum item pesquisável","Editor dialog":"Diálogo do editor",Close:"Fechar",Undo:"Desfazer",Redo:"Refazer","Upload in progress":"Carregamento em progresso","Widget toolbar":"Barra de ferramentas do widget","Insert paragraph before block":"Inserir parágrafo antes do bloco","Insert paragraph after block":"Inserir parágrafo após o bloco","Press Enter to type after or press Shift + Enter to type before the widget":"Prima Enter para escrever depois ou Shift + Enter para escrever antes do widget","Words: %0":"Palavras: %0","Characters: %0":"Caracteres: %0"} );l.getPluralForm=function(n){return (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ro.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ro.js index cae28a8f953da5edcfa7298ddc98db280d1b78d4..e88d94556aa519def6d33beda9c541c97271c3c3 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ro.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ro.js @@ -1 +1 @@ -(function(d){ const l = d['ro'] = d['ro'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aliniază la stânga","Align right":"Aliniază la dreapta","Align center":"Aliniază la centru",Justify:"Aliniază stânga-dreapta","Text alignment":"Aliniere text","Text alignment toolbar":"Bara aliniere text",Bold:"ÃŽngroÈ™at",Italic:"Cursiv",Underline:"Subliniat",Code:"Cod",Strikethrough:"Tăiere text cu o linie",Subscript:"Indice",Superscript:"Exponent","Block quote":"Bloc citat","Insert code block":"Inserează un bloc code","Plain text":"Text simplu",Cancel:"Anulare",Clear:"Ștergere","Remove color":"Șterge culoare","Restore default":"Reface la default",Save:"Salvare","Show more items":"Arată mai multe elemente","%0 of %1":"%0 din %1","Cannot upload file:":"Nu se poate încărca fiÈ™ierul:","Rich Text Editor. Editing area: %0":"Editor Rich Text. Zonă editare: %0","Insert with file manager":"Inserare cu managerul de fiÈ™iere","Replace with file manager":"ÃŽnlocuire cu managerul de fiÈ™iere","Insert image with file manager":"Inserare imagine cu managerul de fiÈ™iere","Replace image with file manager":"ÃŽnlocuire imagine cu managerul de fiÈ™iere","Find and replace":"Găsire È™i înlocuire","Find in text…":"Găsire în text...",Find:"Găsire","Previous result":"Rezultatul anterior","Next result":"Rezultatul următor",Replace:"ÃŽnlocuire","Replace all":"ÃŽnlocuire toate","Match case":"Potrivire litere mari È™i mici","Whole words only":"Doar cuvinte întregi","Replace with…":"ÃŽnlocuire cu...","Text to find must not be empty.":"„Text de găsit†nu poate fi lăsat gol.","Tip: Find some text first in order to replace it.":"Sfat: Mai întâi găsiÈ›i textul pentru a-l înlocui.","Advanced options":"OpÈ›iuni avansate",Paragraph:"Paragraf",Heading:"Titlu","Choose heading":"Alege titlu","Heading 1":"Titlu 1","Heading 2":"Titlu 2","Heading 3":"Titlu 3","Heading 4":"Titlu 4","Heading 5":"Titlu 5","Heading 6":"Titlu 6","Type your title":"Scrie titlul tău","Type or paste your content here.":"Scrie sau inserează aici conÈ›inutul tău","Horizontal line":"Linie orizontală","HTML object":"Obiect HTML","Increase indent":"MăreÈ™te indent","Decrease indent":"MicÈ™orează indent",Unlink:"Șterge link",Link:"Link","Link URL":"Link URL","Link image":"Link imagine","Edit link":"Modifică link","Open link in new tab":"Deschide link în tab nou","This link has no URL":"Acest link nu are niciun URL","Open in a new tab":"Deschide în tab nou",Downloadable:"Descărcabil","Numbered List":"Listă numerotată","Bulleted List":"Listă cu puncte","To-do List":"Listă cu activități","Bulleted list styles toolbar":"Toolbar Listă cu puncte","Numbered list styles toolbar":"Toolbar Listă numerotată","Toggle the disc list style":"ComutaÈ›i stilul la lista cu discuri","Toggle the circle list style":"ComutaÈ›i stilul la lista cu cercuri","Toggle the square list style":"ComutaÈ›i stilul la lista cu pătrate","Toggle the decimal list style":"ComutaÈ›i stilul la lista cu numere","Toggle the decimal with leading zero list style":"ComutaÈ›i stilul la lista cu numere cu zero la început","Toggle the lower–roman list style":"ComutaÈ›i stilul la lista cu litere mici romane","Toggle the upper–roman list style":"ComutaÈ›i stilul la lista cu litere mari romane","Toggle the lower–latin list style":"ComutaÈ›i stilul la lista cu litere mici latine","Toggle the upper–latin list style":"ComutaÈ›i stilul la lista cu litere mari latine",Disc:"Disc",Circle:"Cerc",Square:"Pătrat",Decimal:"Număr","Decimal with leading zero":"Număr cu zero la început ","Lower–roman":"Litere mici romane","Upper-roman":"Litere mari romane","Lower-latin":"Litere mici latine","Upper-latin":"Litere mari latine","List properties":"Proprietăți listă","Start at":"ÃŽncepe de la","Start index must be greater than 0.":"Indexul de pornire trebuie să fie mai mare de 0.","Reversed order":"Ordine inversată","Remove Format":"Șterge formatare","Select all":"Selectează-le pe toate","Show blocks":"Arată casetele",Source:"Sursă","Special characters":"Caractere speciale",All:"Toate",Arrows:"SăgeÈ›i",Currency:"Monedă",Latin:"Latină",Mathematical:"Matematic",Text:"Text","leftwards simple arrow":"săgeată simplă spre stânga","rightwards simple arrow":"săgeată simplă spre dreapta","upwards simple arrow":"săgeată simplă în sus","downwards simple arrow":"săgeată simplă în jos","leftwards double arrow":"săgeată dublă spre stânga","rightwards double arrow":"săgeată dublă spre dreapta","upwards double arrow":"săgeată dublă în sus","downwards double arrow":"săgeată dublă în jos","leftwards dashed arrow":"săgeată la stânga cu linie întreruptă","rightwards dashed arrow":"săgeată la dreapta cu linie întreruptă","upwards dashed arrow":"săgeată în sus cu linie întreruptă","downwards dashed arrow":"săgeată în jos cu linie întreruptă","leftwards arrow to bar":"săgeată la stânga spre bară","rightwards arrow to bar":"săgeată la dreapta spre bară","upwards arrow to bar":"săgeată în sus spre bară","downwards arrow to bar":"săgeată în jos spre bară","up down arrow with base":"săgeată în sus È™i în jos cu linie de bază","back with leftwards arrow above":"înapoi cu săgeată spre stânga deasupra","end with leftwards arrow above":"sfârÈ™it cu săgeată spre stânga deasupra","on with exclamation mark with left right arrow above":"„on†cu semn de exclamare È™i săgeată spre stânga deasupra","soon with rightwards arrow above":"„soon†cu săgeată spre dreapta deasupra","top with upwards arrow above":"„top†cu săgeată în sus deasupra","Dollar sign":"Simbolul dolarului","Euro sign":"Simbolul euro","Yen sign":"Simbolul yenului","Pound sign":"Simbolul lirei sterline","Cent sign":"Simbolul pentru cent","Euro-currency sign":"Simbolul monedei euro","Colon sign":"Două puncte","Cruzeiro sign":"Simbolul pentru cruzeiro","French franc sign":"Simbolul pentru francul francez","Lira sign":"Simbolul pentru liră","Currency sign":"Simbolul pentru valută","Bitcoin sign":"Simbolul pentru Bitcoin","Mill sign":"Simbolul pentru mill","Naira sign":"Simbolul pentru naira","Peseta sign":"Simbolul pentru peseta","Rupee sign":"Simbolul pentru rupie","Won sign":"Simbolul pentru won","New sheqel sign":"Simbolul pentru shekelul nou","Dong sign":"Simbolul pentru dong","Kip sign":"Simbolul pentru kip","Tugrik sign":"Simbolul pentru tugrik","Drachma sign":"Simbolul pentru drahmă","German penny sign":"Simbolul pentru pfenigul german","Peso sign":"Simbolul pentru peso","Guarani sign":"Simbolul pentru guarani","Austral sign":"Simbolul pentru austral","Hryvnia sign":"Simbolul pentru grivnă (hrivnă)","Cedi sign":"Simbolul pentru cedi","Livre tournois sign":"Simbolul pentru livra tournois","Spesmilo sign":"Simbolul pentru spesmilo","Tenge sign":"Simbolul pentru tenge","Indian rupee sign":"Simbolul pentru rupia indiană","Turkish lira sign":"Simbolul pentru lira turcească","Nordic mark sign":"Simbolul pentru marca nordică","Manat sign":"Simbolul pentru manat","Ruble sign":"Simbolul pentru rublă","Latin capital letter a with macron":"Litera A majusculă cu macron","Latin small letter a with macron":"Litera A minusculă cu macron","Latin capital letter a with breve":"Litera A majusculă cu breve („căciulăâ€)","Latin small letter a with breve":"Litera A minusculă cu breve („căciulăâ€)","Latin capital letter a with ogonek":"Litera A majusculă cu codiță (ogonek)","Latin small letter a with ogonek":"Litera A minusculă cu codiță (ogonek)","Latin capital letter c with acute":"Litera C majusculă cu accent ascuÈ›it","Latin small letter c with acute":"Litera C minusculă cu accent ascuÈ›it","Latin capital letter c with circumflex":"Litera C majusculă cu accent circumflex","Latin small letter c with circumflex":"Litera C minusculă cu accent circumflex","Latin capital letter c with dot above":"Litera C majusculă cu punct deasupra","Latin small letter c with dot above":"Litera C minusculă cu punct deasupra","Latin capital letter c with caron":"Litera C majusculă cu caron (circumflex inversat)","Latin small letter c with caron":"Litera C minusculă cu caron (circumflex inversat)","Latin capital letter d with caron":"Litera D majusculă cu caron (circumflex inversat)","Latin small letter d with caron":"Litera D minusculă cu caron (circumflex inversat)","Latin capital letter d with stroke":"Litera D barată majusculă","Latin small letter d with stroke":"Litera D barată minusculă","Latin capital letter e with macron":"Litera E majusculă cu macron","Latin small letter e with macron":"Litera E minusculă cu macron","Latin capital letter e with breve":"Litera E majusculă cu breve („căciulăâ€)","Latin small letter e with breve":"Litera E minusculă cu breve („căciulăâ€)","Latin capital letter e with dot above":"Litera E majusculă cu punct deasupra","Latin small letter e with dot above":"Litera E minusculă cu punct deasupra","Latin capital letter e with ogonek":"Litera E majusculă cu ogonek („codițăâ€)","Latin small letter e with ogonek":"Litera E minusculă cu ogonek („codițăâ€)","Latin capital letter e with caron":"Litera E majusculă cu caron (circumflex inversat)","Latin small letter e with caron":"Litera E minusculă cu caron (circumflex inversat)","Latin capital letter g with circumflex":"Litera G majusculă cu accent circumflex","Latin small letter g with circumflex":"Litera G minusculă cu accent circumflex","Latin capital letter g with breve":"Litera G majusculă cu breve („căciulăâ€)","Latin small letter g with breve":"Litera G minusculă cu breve („căciulăâ€)","Latin capital letter g with dot above":"Litera G majusculă cu punct deasupra","Latin small letter g with dot above":"Litera G minusculă cu punct deasupra","Latin capital letter g with cedilla":"Litera G majusculă cu sedilă","Latin small letter g with cedilla":"Litera G minusculă cu sedilă","Latin capital letter h with circumflex":"Litera H majusculă cu accent circumflex","Latin small letter h with circumflex":"Litera H minusculă cu accent circumflex","Latin capital letter h with stroke":"Litera H barată majusculă","Latin small letter h with stroke":"Litera H barată minusculă","Latin capital letter i with tilde":"Litera I majusculă cu tildă","Latin small letter i with tilde":"Litera I minusculă cu tildă","Latin capital letter i with macron":"Litera I majusculă cu macron","Latin small letter i with macron":"Litera I minusculă cu macron","Latin capital letter i with breve":"Litera I majusculă cu breve („căciulăâ€)","Latin small letter i with breve":"Litera I minusculă cu breve („căciulăâ€)","Latin capital letter i with ogonek":"Litera I majusculă cu ogonek („codițăâ€)","Latin small letter i with ogonek":"Litera I minusculă cu ogonek („codițăâ€)","Latin capital letter i with dot above":"Litera I majusculă cu punct deasupra","Latin small letter dotless i":"Litera I minusculă fără punct","Latin capital ligature ij":"Ligatură formată din literele majuscule IJ","Latin small ligature ij":"Ligatură formată din literele minuscule IJ","Latin capital letter j with circumflex":"Litera J majusculă cu accent circumflex","Latin small letter j with circumflex":"Litera J minusculă cu accent circumflex","Latin capital letter k with cedilla":"Litera K majusculă cu sedilă","Latin small letter k with cedilla":"Litera K minusculă cu sedilă","Latin small letter kra":"Litera KRA minusculă","Latin capital letter l with acute":"Litera L majusculă cu accent ascuÈ›it","Latin small letter l with acute":"Litera L minusculă cu accent ascuÈ›it","Latin capital letter l with cedilla":"Litera L majusculă cu sedilă","Latin small letter l with cedilla":"Litera L minusculă cu sedilă","Latin capital letter l with caron":"Litera L majusculă cu caron (circumflex inversat)","Latin small letter l with caron":"Litera L minusculă cu caron (circumflex inversat)","Latin capital letter l with middle dot":"Litera L majusculă cu punct median","Latin small letter l with middle dot":"Litera L minusculă cu punct median","Latin capital letter l with stroke":"Litera L majusculă cu bară oblică","Latin small letter l with stroke":"Litera L minusculă cu bară oblică","Latin capital letter n with acute":"Litera N majusculă cu accent ascuÈ›it","Latin small letter n with acute":"Litera N minusculă cu accent ascuÈ›it","Latin capital letter n with cedilla":"Litera N majusculă cu sedilă","Latin small letter n with cedilla":"Litera N minusculă cu sedilă","Latin capital letter n with caron":"Litera N majusculă cu caron (circumflex inversat)","Latin small letter n with caron":"Litera N minusculă cu caron (circumflex inversat)","Latin small letter n preceded by apostrophe":"Litera N minusculă cu apostrof în față","Latin capital letter eng":"Litera ENG majusculă","Latin small letter eng":"Litera ENG minusculă","Latin capital letter o with macron":"Litera O majusculă cu macron","Latin small letter o with macron":"Litera O minusculă cu macron","Latin capital letter o with breve":"Litera O majusculă cu breve („căciulăâ€)","Latin small letter o with breve":"Litera O minusculă cu breve („căciulăâ€)","Latin capital letter o with double acute":"Litera O majusculă cu dublu accent ascuÈ›it","Latin small letter o with double acute":"Litera O minusculă cu dublu accent ascuÈ›it","Latin capital ligature oe":"Ligatură formată din literele OE majuscule","Latin small ligature oe":"Ligatură formată din literele OE minuscule","Latin capital letter r with acute":"Litera R majusculă cu accent ascuÈ›it","Latin small letter r with acute":"Litera R minusculă cu accent ascuÈ›it","Latin capital letter r with cedilla":"Litera R majusculă cu sedilă","Latin small letter r with cedilla":"Litera R minusculă cu sedilă","Latin capital letter r with caron":"Litera R majusculă cu caron (circumflex inversat)","Latin small letter r with caron":"Litera R minusculă cu caron (circumflex inversat)","Latin capital letter s with acute":"Litera S majusculă cu accent ascuÈ›it","Latin small letter s with acute":"Litera S minusculă cu accent ascuÈ›it","Latin capital letter s with circumflex":"Litera S majusculă cu accent circumflex","Latin small letter s with circumflex":"Litera S minusculă cu accent circumflex","Latin capital letter s with cedilla":"Litera S majusculă cu sedilă","Latin small letter s with cedilla":"Litera S minusculă cu sedilă","Latin capital letter s with caron":"Litera S majusculă cu caron (circumflex inversat)","Latin small letter s with caron":"Litera S minusculă cu caron (circumflex inversat)","Latin capital letter t with cedilla":"Litera T majusculă cu sedilă","Latin small letter t with cedilla":"Litera T minusculă cu sedilă","Latin capital letter t with caron":"Litera T majusculă cu caron (circumflex inversat)","Latin small letter t with caron":"Litera T minusculă cu caron (circumflex inversat)","Latin capital letter t with stroke":"Litera T majusculă barată","Latin small letter t with stroke":"Litera T minusculă barată","Latin capital letter u with tilde":"Litera U majusculă cu tildă","Latin small letter u with tilde":"Litera U minusculă cu tildă","Latin capital letter u with macron":"Litera U majusculă cu macron","Latin small letter u with macron":"Litera U minusculă cu macron","Latin capital letter u with breve":"Litera U majusculă cu breve („căciulăâ€)","Latin small letter u with breve":"Litera U minusculă cu breve („căciulăâ€)","Latin capital letter u with ring above":"Litera majusculă U cu inel deasupra","Latin small letter u with ring above":"Litera minusculă U cu inel deasupra","Latin capital letter u with double acute":"Litera U majusculă cu dublu accent ascuÈ›it","Latin small letter u with double acute":"Litera U minusculă cu dublu accent ascuÈ›it","Latin capital letter u with ogonek":"Litera U majusculă cu ogonek („codițăâ€)","Latin small letter u with ogonek":"Litera U minusculă cu ogonek („codițăâ€)","Latin capital letter w with circumflex":"Litera W majusculă cu accent circumflex","Latin small letter w with circumflex":"Litera W minusculă cu accent circumflex","Latin capital letter y with circumflex":"Litera Y majusculă cu accent circumflex","Latin small letter y with circumflex":"Litera Y minusculă cu accent circumflex","Latin capital letter y with diaeresis":"Litera Y majusculă cu tremă","Latin capital letter z with acute":"Litera Z majusculă cu accent ascuÈ›it","Latin small letter z with acute":"Litera Z minusculă cu accent ascuÈ›it","Latin capital letter z with dot above":"Litera Z majusculă cu punct deasupra","Latin small letter z with dot above":"Litera Z minusculă cu punct deasupra","Latin capital letter z with caron":"Litera Z majusculă cu caron (circumflex inversat)","Latin small letter z with caron":"Litera Z minusculă cu caron (circumflex inversat)","Latin small letter long s":"Litera S lungă minusculă","Less-than sign":"Simbolul „mai mic decâtâ€","Greater-than sign":"Simbolul „mai mare decâtâ€","Less-than or equal to":"Simbolul „mai mic sau egalâ€","Greater-than or equal to":"Simbolul „mai mare sau egalâ€","En dash":"Linie de pauză (en dash)","Em dash":"Linie de dialog (em dash)",Macron:"Macron",Overline:"Linie deasupra","Degree sign":"Simbolul pentru grad","Minus sign":"Semnul minus","Plus-minus sign":"Semnul plus/minus","Division sign":"Semnul împărÈ›irii","Fraction slash":"Bară de fracÈ›ie (oblică)","Multiplication sign":"Semnul înmulÈ›irii","Latin small letter f with hook":"Litera F minusculă cu cârlig",Integral:"Integrală","N-ary summation":"Sumă (simbol matematic)",Infinity:"Infinit","Square root":"Rădăcină pătrată","Tilde operator":"Operatorul tildă","Approximately equal to":"Aproximativ egal cu","Almost equal to":"Aproape egal cu","Not equal to":"Diferit de (nu este egal cu)","Identical to":"Identic cu","Element of":"Element al","Not an element of":"Nu este un element al","Contains as member":"ConÈ›ine ca membru","N-ary product":"Produs cartezian (simbol matematic)","Logical and":"ȘI logic","Logical or":"SAU logic","Not sign":"Negare",Intersection:"IntersecÈ›ie",Union:"Uniune","Partial differential":"DiferenÈ›ială parÈ›ială","For all":"Pentru toÈ›i","There exists":"Există","Empty set":"MulÈ›imea vidă",Nabla:"Nabla","Asterisk operator":"Operatorul asterisc","Proportional to":"ProporÈ›ional cu",Angle:"Unghi","Vulgar fraction one quarter":"Un sfert (fracÈ›ie în scrierea comună)","Vulgar fraction one half":"Jumătate (fracÈ›ie în scrierea comună)","Vulgar fraction three quarters":"Trei sferturi (fracÈ›ie în scrierea comună)","Single left-pointing angle quotation mark":"Ghilimele unghiulare simple cu vârful spre stânga","Single right-pointing angle quotation mark":"Ghilimele unghiulare simple cu vârful spre dreapta","Left-pointing double angle quotation mark":"Ghilimele unghiulare cu vârful spre stânga","Right-pointing double angle quotation mark":"Ghilimele unghiulare cu vârful spre dreapta","Left single quotation mark":"Semnul citării simplu stânga (în formă de 6)","Right single quotation mark":"Semnul citării simplu dreapta (în formă de 9)","Left double quotation mark":"Ghilimele sus în formă de 66","Right double quotation mark":"Ghilimele sus în formă de 99","Single low-9 quotation mark":"Ghilimele simple jos în formă de 9","Double low-9 quotation mark":"Ghilimele jos în formă de 99","Inverted exclamation mark":"Semnul exclamării inversat","Inverted question mark":"Semnul întrebării inversat","Two dot leader":"Două puncte orizontale pe linia de bază","Horizontal ellipsis":"Puncte de suspensie","Double dagger":"Dublă obelă (dagger)","Per mille sign":"Promilă","Per ten thousand sign":"La zece mii","Double exclamation mark":"Semnul exclamării dublu","Question exclamation mark":"Semnele întrebării È™i exclamării","Exclamation question mark":"Semnele exclamării È™i întrebării","Double question mark":"Doublu semnul întrebării","Copyright sign":"Simbolul pentru copyright","Registered sign":"Simbolul de marcă înregistrată","Trade mark sign":"Simbolul de marcă comercială","Section sign":"Simbolul pentru secÈ›iune","Paragraph sign":"Simbolul pentru paragraf","Reversed paragraph sign":"Simbolul pentru paragraf, inversat","Character categories":"Categorii de caractere",Styles:"Stiluri","Multiple styles":"Stiluri multiple","Block styles":"Stiluri pentru blocuri","Text styles":"Stiluri pentru text","Insert table":"Inserează tabel","Header column":"Antet coloană","Insert column left":"Inserează coloană la stânga","Insert column right":"Inserează coloană la dreapta","Delete column":"Șterge coloană","Select column":"Selectează coloana",Column:"Coloană","Header row":"Rând antet","Insert row below":"Inserează rând dedesubt","Insert row above":"Inserează rând deasupra","Delete row":"Șterge rând","Select row":"Selectează linia",Row:"Rând","Merge cell up":"ÃŽmbină celula în sus","Merge cell right":"ÃŽmbină celula la dreapta","Merge cell down":"ÃŽmbină celula în jos","Merge cell left":"ÃŽmbină celula la stânga","Split cell vertically":"Scindează celula pe verticală","Split cell horizontally":"Scindează celula pe orizontală","Merge cells":"ÃŽmbină celulele","Table toolbar":"Bară tabel","Table properties":"Proprietățile tabelei","Cell properties":"Proprietățile celulei",Border:"Bordură",Style:"Stil",Width:"Lungime",Height:"ÃŽnălÈ›ime",Color:"Culoare",Background:"Fundal",Padding:"SpaÈ›iere",Dimensions:"Dimensiuni","Table cell text alignment":"Alinierea textului celulei tabelei",Alignment:"Aliniere","Horizontal text alignment toolbar":"Toolbar aliniere text orizontală","Vertical text alignment toolbar":"Toolbar aliniere text verticală","Table alignment toolbar":"Toolbar aliniere tabelă",None:"Nimic",Solid:"Solidă",Dotted:"Punctată",Dashed:"Linii întrerupte",Double:"Dublă",Groove:"Groove",Ridge:"Crestată",Inset:"Inserează",Outset:"Elimină","Align cell text to the left":"Alinează textul celulei la stânga","Align cell text to the center":"Alinează textul celulei la centru","Align cell text to the right":"Alinează textul celulei la dreapta","Justify cell text":"Textul celulei justify","Align cell text to the top":"Alinează textul celulei sus","Align cell text to the middle":"Alinează textul celulei la mijloc","Align cell text to the bottom":"Alinează textul celulei jos","Align table to the left":"Alinează tabela la stânga","Center table":"Tabelă centrată","Align table to the right":"Alinează tabela la dreapta","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Culoarea este invalidă. ÃŽncearcă \"#FF0000\" sau \"rgb(255,0,0)\" sau \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Valoarea este invalidă. ÃŽncearcă \"10px\" sau \"2em\" sau simplu \"2\".","Color picker":"Alegere culoare","Toggle caption off":"DezactivaÈ›i subtitlul","Toggle caption on":"ActivaÈ›i subtitlul","Enter table caption":"Adaugă subtitlul tabelei","Rich Text Editor":"Editor de text","Editor editing area: %0":"Zonă editare editor: %0","Edit block":"Editează bloc","Click to edit block":"FaceÈ›i clic pentru a edita întreg blocul","Drag to move":"GlisaÈ›i pentru a muta",Next:"ÃŽnainte",Previous:"ÃŽnapoi","Editor toolbar":"Bară editor","Dropdown toolbar":"Bară listă opÈ›iuni",Black:"Negru","Dim grey":"Gri slab",Grey:"Gri","Light grey":"Gri deschis",White:"Alb",Red:"RoÈ™u",Orange:"Portocaliu",Yellow:"Galben","Light green":"Verde deschis",Green:"Verde",Aquamarine:"Acvamarin",Turquoise:"Turcoaz","Light blue":"Albastru deschis",Blue:"Albastru",Purple:"Violet","Editor block content toolbar":"Bară de instrumente editor pentru blocuri de conÈ›inut","Editor contextual toolbar":"Bară contextuală de instrumente editor",HEX:"HEX",Accept:"Acceptă","No results found":"Nu au fost găsite rezultate","No searchable items":"Nu există elemente ce pot fi căutate","Editor dialog":"Dialog editor",Close:"ÃŽnchideÈ›i",Undo:"Anulare",Redo:"Revenire","Upload in progress":"ÃŽncărcare în curs","Widget toolbar":"Bară widget","Insert paragraph before block":"Inserează un paragraf înaintea blocului","Insert paragraph after block":"Inserează un paragraf după bloc","Press Enter to type after or press Shift + Enter to type before the widget":"ApăsaÈ›i Enter pentru a scrie după widget sau Shift+Enter pentru a scrie înaintea acestuia","Words: %0":"Cuvinte: %0","Characters: %0":"Caractere: %0"} );l.getPluralForm=function(n){return (n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ro'] = d['ro'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Aliniază la stânga","Align right":"Aliniază la dreapta","Align center":"Aliniază la centru",Justify:"Aliniază stânga-dreapta","Text alignment":"Aliniere text","Text alignment toolbar":"Bara aliniere text",Bold:"ÃŽngroÈ™at",Italic:"Cursiv",Underline:"Subliniat",Code:"Cod",Strikethrough:"Tăiere text cu o linie",Subscript:"Indice",Superscript:"Exponent","Block quote":"Bloc citat","Insert code block":"Inserează un bloc code","Plain text":"Text simplu",Cancel:"Anulare",Clear:"Ștergere","Remove color":"Șterge culoare","Restore default":"Reface la default",Save:"Salvare","Show more items":"Arată mai multe elemente","%0 of %1":"%0 din %1","Cannot upload file:":"Nu se poate încărca fiÈ™ierul:","Rich Text Editor. Editing area: %0":"Editor Rich Text. Zonă editare: %0","Insert with file manager":"Inserare cu managerul de fiÈ™iere","Replace with file manager":"ÃŽnlocuire cu managerul de fiÈ™iere","Insert image with file manager":"Inserare imagine cu managerul de fiÈ™iere","Replace image with file manager":"ÃŽnlocuire imagine cu managerul de fiÈ™iere","Find and replace":"Găsire È™i înlocuire","Find in text…":"Găsire în text...",Find:"Găsire","Previous result":"Rezultatul anterior","Next result":"Rezultatul următor",Replace:"ÃŽnlocuire","Replace all":"ÃŽnlocuire toate","Match case":"Potrivire litere mari È™i mici","Whole words only":"Doar cuvinte întregi","Replace with…":"ÃŽnlocuire cu...","Text to find must not be empty.":"„Text de găsit†nu poate fi lăsat gol.","Tip: Find some text first in order to replace it.":"Sfat: Mai întâi găsiÈ›i textul pentru a-l înlocui.","Advanced options":"OpÈ›iuni avansate","Font Size":"Dimensiune font",Tiny:"Foarte mică",Small:"Mică",Big:"Mare",Huge:"Foarte mare","Font Family":"Familie font",Default:"Implicită","Font Color":"Culoare font","Font Background Color":"Culoarea de fundal a fontului","Document colors":"Culorile din document",Paragraph:"Paragraf",Heading:"Titlu","Choose heading":"Alege titlu","Heading 1":"Titlu 1","Heading 2":"Titlu 2","Heading 3":"Titlu 3","Heading 4":"Titlu 4","Heading 5":"Titlu 5","Heading 6":"Titlu 6","Type your title":"Scrie titlul tău","Type or paste your content here.":"Scrie sau inserează aici conÈ›inutul tău","Horizontal line":"Linie orizontală","HTML object":"Obiect HTML","Increase indent":"MăreÈ™te indent","Decrease indent":"MicÈ™orează indent",Unlink:"Șterge link",Link:"Link","Link URL":"Link URL","Link image":"Link imagine","Edit link":"Modifică link","Open link in new tab":"Deschide link în tab nou","This link has no URL":"Acest link nu are niciun URL","Open in a new tab":"Deschide în tab nou",Downloadable:"Descărcabil","Numbered List":"Listă numerotată","Bulleted List":"Listă cu puncte","To-do List":"Listă cu activități","Bulleted list styles toolbar":"Toolbar Listă cu puncte","Numbered list styles toolbar":"Toolbar Listă numerotată","Toggle the disc list style":"ComutaÈ›i stilul la lista cu discuri","Toggle the circle list style":"ComutaÈ›i stilul la lista cu cercuri","Toggle the square list style":"ComutaÈ›i stilul la lista cu pătrate","Toggle the decimal list style":"ComutaÈ›i stilul la lista cu numere","Toggle the decimal with leading zero list style":"ComutaÈ›i stilul la lista cu numere cu zero la început","Toggle the lower–roman list style":"ComutaÈ›i stilul la lista cu litere mici romane","Toggle the upper–roman list style":"ComutaÈ›i stilul la lista cu litere mari romane","Toggle the lower–latin list style":"ComutaÈ›i stilul la lista cu litere mici latine","Toggle the upper–latin list style":"ComutaÈ›i stilul la lista cu litere mari latine",Disc:"Disc",Circle:"Cerc",Square:"Pătrat",Decimal:"Număr","Decimal with leading zero":"Număr cu zero la început ","Lower–roman":"Litere mici romane","Upper-roman":"Litere mari romane","Lower-latin":"Litere mici latine","Upper-latin":"Litere mari latine","List properties":"Proprietăți listă","Start at":"ÃŽncepe de la","Start index must be greater than 0.":"Indexul de pornire trebuie să fie mai mare de 0.","Reversed order":"Ordine inversată","Remove Format":"Șterge formatare","Select all":"Selectează-le pe toate","Show blocks":"Arată casetele",Source:"Sursă","Special characters":"Caractere speciale",All:"Toate",Arrows:"SăgeÈ›i",Currency:"Monedă",Latin:"Latină",Mathematical:"Matematic",Text:"Text","leftwards simple arrow":"săgeată simplă spre stânga","rightwards simple arrow":"săgeată simplă spre dreapta","upwards simple arrow":"săgeată simplă în sus","downwards simple arrow":"săgeată simplă în jos","leftwards double arrow":"săgeată dublă spre stânga","rightwards double arrow":"săgeată dublă spre dreapta","upwards double arrow":"săgeată dublă în sus","downwards double arrow":"săgeată dublă în jos","leftwards dashed arrow":"săgeată la stânga cu linie întreruptă","rightwards dashed arrow":"săgeată la dreapta cu linie întreruptă","upwards dashed arrow":"săgeată în sus cu linie întreruptă","downwards dashed arrow":"săgeată în jos cu linie întreruptă","leftwards arrow to bar":"săgeată la stânga spre bară","rightwards arrow to bar":"săgeată la dreapta spre bară","upwards arrow to bar":"săgeată în sus spre bară","downwards arrow to bar":"săgeată în jos spre bară","up down arrow with base":"săgeată în sus È™i în jos cu linie de bază","back with leftwards arrow above":"înapoi cu săgeată spre stânga deasupra","end with leftwards arrow above":"sfârÈ™it cu săgeată spre stânga deasupra","on with exclamation mark with left right arrow above":"„on†cu semn de exclamare È™i săgeată spre stânga deasupra","soon with rightwards arrow above":"„soon†cu săgeată spre dreapta deasupra","top with upwards arrow above":"„top†cu săgeată în sus deasupra","Dollar sign":"Simbolul dolarului","Euro sign":"Simbolul euro","Yen sign":"Simbolul yenului","Pound sign":"Simbolul lirei sterline","Cent sign":"Simbolul pentru cent","Euro-currency sign":"Simbolul monedei euro","Colon sign":"Două puncte","Cruzeiro sign":"Simbolul pentru cruzeiro","French franc sign":"Simbolul pentru francul francez","Lira sign":"Simbolul pentru liră","Currency sign":"Simbolul pentru valută","Bitcoin sign":"Simbolul pentru Bitcoin","Mill sign":"Simbolul pentru mill","Naira sign":"Simbolul pentru naira","Peseta sign":"Simbolul pentru peseta","Rupee sign":"Simbolul pentru rupie","Won sign":"Simbolul pentru won","New sheqel sign":"Simbolul pentru shekelul nou","Dong sign":"Simbolul pentru dong","Kip sign":"Simbolul pentru kip","Tugrik sign":"Simbolul pentru tugrik","Drachma sign":"Simbolul pentru drahmă","German penny sign":"Simbolul pentru pfenigul german","Peso sign":"Simbolul pentru peso","Guarani sign":"Simbolul pentru guarani","Austral sign":"Simbolul pentru austral","Hryvnia sign":"Simbolul pentru grivnă (hrivnă)","Cedi sign":"Simbolul pentru cedi","Livre tournois sign":"Simbolul pentru livra tournois","Spesmilo sign":"Simbolul pentru spesmilo","Tenge sign":"Simbolul pentru tenge","Indian rupee sign":"Simbolul pentru rupia indiană","Turkish lira sign":"Simbolul pentru lira turcească","Nordic mark sign":"Simbolul pentru marca nordică","Manat sign":"Simbolul pentru manat","Ruble sign":"Simbolul pentru rublă","Latin capital letter a with macron":"Litera A majusculă cu macron","Latin small letter a with macron":"Litera A minusculă cu macron","Latin capital letter a with breve":"Litera A majusculă cu breve („căciulăâ€)","Latin small letter a with breve":"Litera A minusculă cu breve („căciulăâ€)","Latin capital letter a with ogonek":"Litera A majusculă cu codiță (ogonek)","Latin small letter a with ogonek":"Litera A minusculă cu codiță (ogonek)","Latin capital letter c with acute":"Litera C majusculă cu accent ascuÈ›it","Latin small letter c with acute":"Litera C minusculă cu accent ascuÈ›it","Latin capital letter c with circumflex":"Litera C majusculă cu accent circumflex","Latin small letter c with circumflex":"Litera C minusculă cu accent circumflex","Latin capital letter c with dot above":"Litera C majusculă cu punct deasupra","Latin small letter c with dot above":"Litera C minusculă cu punct deasupra","Latin capital letter c with caron":"Litera C majusculă cu caron (circumflex inversat)","Latin small letter c with caron":"Litera C minusculă cu caron (circumflex inversat)","Latin capital letter d with caron":"Litera D majusculă cu caron (circumflex inversat)","Latin small letter d with caron":"Litera D minusculă cu caron (circumflex inversat)","Latin capital letter d with stroke":"Litera D barată majusculă","Latin small letter d with stroke":"Litera D barată minusculă","Latin capital letter e with macron":"Litera E majusculă cu macron","Latin small letter e with macron":"Litera E minusculă cu macron","Latin capital letter e with breve":"Litera E majusculă cu breve („căciulăâ€)","Latin small letter e with breve":"Litera E minusculă cu breve („căciulăâ€)","Latin capital letter e with dot above":"Litera E majusculă cu punct deasupra","Latin small letter e with dot above":"Litera E minusculă cu punct deasupra","Latin capital letter e with ogonek":"Litera E majusculă cu ogonek („codițăâ€)","Latin small letter e with ogonek":"Litera E minusculă cu ogonek („codițăâ€)","Latin capital letter e with caron":"Litera E majusculă cu caron (circumflex inversat)","Latin small letter e with caron":"Litera E minusculă cu caron (circumflex inversat)","Latin capital letter g with circumflex":"Litera G majusculă cu accent circumflex","Latin small letter g with circumflex":"Litera G minusculă cu accent circumflex","Latin capital letter g with breve":"Litera G majusculă cu breve („căciulăâ€)","Latin small letter g with breve":"Litera G minusculă cu breve („căciulăâ€)","Latin capital letter g with dot above":"Litera G majusculă cu punct deasupra","Latin small letter g with dot above":"Litera G minusculă cu punct deasupra","Latin capital letter g with cedilla":"Litera G majusculă cu sedilă","Latin small letter g with cedilla":"Litera G minusculă cu sedilă","Latin capital letter h with circumflex":"Litera H majusculă cu accent circumflex","Latin small letter h with circumflex":"Litera H minusculă cu accent circumflex","Latin capital letter h with stroke":"Litera H barată majusculă","Latin small letter h with stroke":"Litera H barată minusculă","Latin capital letter i with tilde":"Litera I majusculă cu tildă","Latin small letter i with tilde":"Litera I minusculă cu tildă","Latin capital letter i with macron":"Litera I majusculă cu macron","Latin small letter i with macron":"Litera I minusculă cu macron","Latin capital letter i with breve":"Litera I majusculă cu breve („căciulăâ€)","Latin small letter i with breve":"Litera I minusculă cu breve („căciulăâ€)","Latin capital letter i with ogonek":"Litera I majusculă cu ogonek („codițăâ€)","Latin small letter i with ogonek":"Litera I minusculă cu ogonek („codițăâ€)","Latin capital letter i with dot above":"Litera I majusculă cu punct deasupra","Latin small letter dotless i":"Litera I minusculă fără punct","Latin capital ligature ij":"Ligatură formată din literele majuscule IJ","Latin small ligature ij":"Ligatură formată din literele minuscule IJ","Latin capital letter j with circumflex":"Litera J majusculă cu accent circumflex","Latin small letter j with circumflex":"Litera J minusculă cu accent circumflex","Latin capital letter k with cedilla":"Litera K majusculă cu sedilă","Latin small letter k with cedilla":"Litera K minusculă cu sedilă","Latin small letter kra":"Litera KRA minusculă","Latin capital letter l with acute":"Litera L majusculă cu accent ascuÈ›it","Latin small letter l with acute":"Litera L minusculă cu accent ascuÈ›it","Latin capital letter l with cedilla":"Litera L majusculă cu sedilă","Latin small letter l with cedilla":"Litera L minusculă cu sedilă","Latin capital letter l with caron":"Litera L majusculă cu caron (circumflex inversat)","Latin small letter l with caron":"Litera L minusculă cu caron (circumflex inversat)","Latin capital letter l with middle dot":"Litera L majusculă cu punct median","Latin small letter l with middle dot":"Litera L minusculă cu punct median","Latin capital letter l with stroke":"Litera L majusculă cu bară oblică","Latin small letter l with stroke":"Litera L minusculă cu bară oblică","Latin capital letter n with acute":"Litera N majusculă cu accent ascuÈ›it","Latin small letter n with acute":"Litera N minusculă cu accent ascuÈ›it","Latin capital letter n with cedilla":"Litera N majusculă cu sedilă","Latin small letter n with cedilla":"Litera N minusculă cu sedilă","Latin capital letter n with caron":"Litera N majusculă cu caron (circumflex inversat)","Latin small letter n with caron":"Litera N minusculă cu caron (circumflex inversat)","Latin small letter n preceded by apostrophe":"Litera N minusculă cu apostrof în față","Latin capital letter eng":"Litera ENG majusculă","Latin small letter eng":"Litera ENG minusculă","Latin capital letter o with macron":"Litera O majusculă cu macron","Latin small letter o with macron":"Litera O minusculă cu macron","Latin capital letter o with breve":"Litera O majusculă cu breve („căciulăâ€)","Latin small letter o with breve":"Litera O minusculă cu breve („căciulăâ€)","Latin capital letter o with double acute":"Litera O majusculă cu dublu accent ascuÈ›it","Latin small letter o with double acute":"Litera O minusculă cu dublu accent ascuÈ›it","Latin capital ligature oe":"Ligatură formată din literele OE majuscule","Latin small ligature oe":"Ligatură formată din literele OE minuscule","Latin capital letter r with acute":"Litera R majusculă cu accent ascuÈ›it","Latin small letter r with acute":"Litera R minusculă cu accent ascuÈ›it","Latin capital letter r with cedilla":"Litera R majusculă cu sedilă","Latin small letter r with cedilla":"Litera R minusculă cu sedilă","Latin capital letter r with caron":"Litera R majusculă cu caron (circumflex inversat)","Latin small letter r with caron":"Litera R minusculă cu caron (circumflex inversat)","Latin capital letter s with acute":"Litera S majusculă cu accent ascuÈ›it","Latin small letter s with acute":"Litera S minusculă cu accent ascuÈ›it","Latin capital letter s with circumflex":"Litera S majusculă cu accent circumflex","Latin small letter s with circumflex":"Litera S minusculă cu accent circumflex","Latin capital letter s with cedilla":"Litera S majusculă cu sedilă","Latin small letter s with cedilla":"Litera S minusculă cu sedilă","Latin capital letter s with caron":"Litera S majusculă cu caron (circumflex inversat)","Latin small letter s with caron":"Litera S minusculă cu caron (circumflex inversat)","Latin capital letter t with cedilla":"Litera T majusculă cu sedilă","Latin small letter t with cedilla":"Litera T minusculă cu sedilă","Latin capital letter t with caron":"Litera T majusculă cu caron (circumflex inversat)","Latin small letter t with caron":"Litera T minusculă cu caron (circumflex inversat)","Latin capital letter t with stroke":"Litera T majusculă barată","Latin small letter t with stroke":"Litera T minusculă barată","Latin capital letter u with tilde":"Litera U majusculă cu tildă","Latin small letter u with tilde":"Litera U minusculă cu tildă","Latin capital letter u with macron":"Litera U majusculă cu macron","Latin small letter u with macron":"Litera U minusculă cu macron","Latin capital letter u with breve":"Litera U majusculă cu breve („căciulăâ€)","Latin small letter u with breve":"Litera U minusculă cu breve („căciulăâ€)","Latin capital letter u with ring above":"Litera majusculă U cu inel deasupra","Latin small letter u with ring above":"Litera minusculă U cu inel deasupra","Latin capital letter u with double acute":"Litera U majusculă cu dublu accent ascuÈ›it","Latin small letter u with double acute":"Litera U minusculă cu dublu accent ascuÈ›it","Latin capital letter u with ogonek":"Litera U majusculă cu ogonek („codițăâ€)","Latin small letter u with ogonek":"Litera U minusculă cu ogonek („codițăâ€)","Latin capital letter w with circumflex":"Litera W majusculă cu accent circumflex","Latin small letter w with circumflex":"Litera W minusculă cu accent circumflex","Latin capital letter y with circumflex":"Litera Y majusculă cu accent circumflex","Latin small letter y with circumflex":"Litera Y minusculă cu accent circumflex","Latin capital letter y with diaeresis":"Litera Y majusculă cu tremă","Latin capital letter z with acute":"Litera Z majusculă cu accent ascuÈ›it","Latin small letter z with acute":"Litera Z minusculă cu accent ascuÈ›it","Latin capital letter z with dot above":"Litera Z majusculă cu punct deasupra","Latin small letter z with dot above":"Litera Z minusculă cu punct deasupra","Latin capital letter z with caron":"Litera Z majusculă cu caron (circumflex inversat)","Latin small letter z with caron":"Litera Z minusculă cu caron (circumflex inversat)","Latin small letter long s":"Litera S lungă minusculă","Less-than sign":"Simbolul „mai mic decâtâ€","Greater-than sign":"Simbolul „mai mare decâtâ€","Less-than or equal to":"Simbolul „mai mic sau egalâ€","Greater-than or equal to":"Simbolul „mai mare sau egalâ€","En dash":"Linie de pauză (en dash)","Em dash":"Linie de dialog (em dash)",Macron:"Macron",Overline:"Linie deasupra","Degree sign":"Simbolul pentru grad","Minus sign":"Semnul minus","Plus-minus sign":"Semnul plus/minus","Division sign":"Semnul împărÈ›irii","Fraction slash":"Bară de fracÈ›ie (oblică)","Multiplication sign":"Semnul înmulÈ›irii","Latin small letter f with hook":"Litera F minusculă cu cârlig",Integral:"Integrală","N-ary summation":"Sumă (simbol matematic)",Infinity:"Infinit","Square root":"Rădăcină pătrată","Tilde operator":"Operatorul tildă","Approximately equal to":"Aproximativ egal cu","Almost equal to":"Aproape egal cu","Not equal to":"Diferit de (nu este egal cu)","Identical to":"Identic cu","Element of":"Element al","Not an element of":"Nu este un element al","Contains as member":"ConÈ›ine ca membru","N-ary product":"Produs cartezian (simbol matematic)","Logical and":"ȘI logic","Logical or":"SAU logic","Not sign":"Negare",Intersection:"IntersecÈ›ie",Union:"Uniune","Partial differential":"DiferenÈ›ială parÈ›ială","For all":"Pentru toÈ›i","There exists":"Există","Empty set":"MulÈ›imea vidă",Nabla:"Nabla","Asterisk operator":"Operatorul asterisc","Proportional to":"ProporÈ›ional cu",Angle:"Unghi","Vulgar fraction one quarter":"Un sfert (fracÈ›ie în scrierea comună)","Vulgar fraction one half":"Jumătate (fracÈ›ie în scrierea comună)","Vulgar fraction three quarters":"Trei sferturi (fracÈ›ie în scrierea comună)","Single left-pointing angle quotation mark":"Ghilimele unghiulare simple cu vârful spre stânga","Single right-pointing angle quotation mark":"Ghilimele unghiulare simple cu vârful spre dreapta","Left-pointing double angle quotation mark":"Ghilimele unghiulare cu vârful spre stânga","Right-pointing double angle quotation mark":"Ghilimele unghiulare cu vârful spre dreapta","Left single quotation mark":"Semnul citării simplu stânga (în formă de 6)","Right single quotation mark":"Semnul citării simplu dreapta (în formă de 9)","Left double quotation mark":"Ghilimele sus în formă de 66","Right double quotation mark":"Ghilimele sus în formă de 99","Single low-9 quotation mark":"Ghilimele simple jos în formă de 9","Double low-9 quotation mark":"Ghilimele jos în formă de 99","Inverted exclamation mark":"Semnul exclamării inversat","Inverted question mark":"Semnul întrebării inversat","Two dot leader":"Două puncte orizontale pe linia de bază","Horizontal ellipsis":"Puncte de suspensie","Double dagger":"Dublă obelă (dagger)","Per mille sign":"Promilă","Per ten thousand sign":"La zece mii","Double exclamation mark":"Semnul exclamării dublu","Question exclamation mark":"Semnele întrebării È™i exclamării","Exclamation question mark":"Semnele exclamării È™i întrebării","Double question mark":"Doublu semnul întrebării","Copyright sign":"Simbolul pentru copyright","Registered sign":"Simbolul de marcă înregistrată","Trade mark sign":"Simbolul de marcă comercială","Section sign":"Simbolul pentru secÈ›iune","Paragraph sign":"Simbolul pentru paragraf","Reversed paragraph sign":"Simbolul pentru paragraf, inversat","Character categories":"Categorii de caractere",Styles:"Stiluri","Multiple styles":"Stiluri multiple","Block styles":"Stiluri pentru blocuri","Text styles":"Stiluri pentru text","Insert table":"Inserează tabel","Header column":"Antet coloană","Insert column left":"Inserează coloană la stânga","Insert column right":"Inserează coloană la dreapta","Delete column":"Șterge coloană","Select column":"Selectează coloana",Column:"Coloană","Header row":"Rând antet","Insert row below":"Inserează rând dedesubt","Insert row above":"Inserează rând deasupra","Delete row":"Șterge rând","Select row":"Selectează linia",Row:"Rând","Merge cell up":"ÃŽmbină celula în sus","Merge cell right":"ÃŽmbină celula la dreapta","Merge cell down":"ÃŽmbină celula în jos","Merge cell left":"ÃŽmbină celula la stânga","Split cell vertically":"Scindează celula pe verticală","Split cell horizontally":"Scindează celula pe orizontală","Merge cells":"ÃŽmbină celulele","Table toolbar":"Bară tabel","Table properties":"Proprietățile tabelei","Cell properties":"Proprietățile celulei",Border:"Bordură",Style:"Stil",Width:"Lungime",Height:"ÃŽnălÈ›ime",Color:"Culoare",Background:"Fundal",Padding:"SpaÈ›iere",Dimensions:"Dimensiuni","Table cell text alignment":"Alinierea textului celulei tabelei",Alignment:"Aliniere","Horizontal text alignment toolbar":"Toolbar aliniere text orizontală","Vertical text alignment toolbar":"Toolbar aliniere text verticală","Table alignment toolbar":"Toolbar aliniere tabelă",None:"Nimic",Solid:"Solidă",Dotted:"Punctată",Dashed:"Linii întrerupte",Double:"Dublă",Groove:"Groove",Ridge:"Crestată",Inset:"Inserează",Outset:"Elimină","Align cell text to the left":"Alinează textul celulei la stânga","Align cell text to the center":"Alinează textul celulei la centru","Align cell text to the right":"Alinează textul celulei la dreapta","Justify cell text":"Textul celulei justify","Align cell text to the top":"Alinează textul celulei sus","Align cell text to the middle":"Alinează textul celulei la mijloc","Align cell text to the bottom":"Alinează textul celulei jos","Align table to the left":"Alinează tabela la stânga","Center table":"Tabelă centrată","Align table to the right":"Alinează tabela la dreapta","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Culoarea este invalidă. ÃŽncearcă \"#FF0000\" sau \"rgb(255,0,0)\" sau \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Valoarea este invalidă. ÃŽncearcă \"10px\" sau \"2em\" sau simplu \"2\".","Color picker":"Alegere culoare","Toggle caption off":"DezactivaÈ›i subtitlul","Toggle caption on":"ActivaÈ›i subtitlul","Enter table caption":"Adaugă subtitlul tabelei","Rich Text Editor":"Editor de text","Editor editing area: %0":"Zonă editare editor: %0","Edit block":"Editează bloc","Click to edit block":"FaceÈ›i clic pentru a edita întreg blocul","Drag to move":"GlisaÈ›i pentru a muta",Next:"ÃŽnainte",Previous:"ÃŽnapoi","Editor toolbar":"Bară editor","Dropdown toolbar":"Bară listă opÈ›iuni",Black:"Negru","Dim grey":"Gri slab",Grey:"Gri","Light grey":"Gri deschis",White:"Alb",Red:"RoÈ™u",Orange:"Portocaliu",Yellow:"Galben","Light green":"Verde deschis",Green:"Verde",Aquamarine:"Acvamarin",Turquoise:"Turcoaz","Light blue":"Albastru deschis",Blue:"Albastru",Purple:"Violet","Editor block content toolbar":"Bară de instrumente editor pentru blocuri de conÈ›inut","Editor contextual toolbar":"Bară contextuală de instrumente editor",HEX:"HEX",Accept:"Acceptă","No results found":"Nu au fost găsite rezultate","No searchable items":"Nu există elemente ce pot fi căutate","Editor dialog":"Dialog editor",Close:"ÃŽnchideÈ›i",Undo:"Anulare",Redo:"Revenire","Upload in progress":"ÃŽncărcare în curs","Widget toolbar":"Bară widget","Insert paragraph before block":"Inserează un paragraf înaintea blocului","Insert paragraph after block":"Inserează un paragraf după bloc","Press Enter to type after or press Shift + Enter to type before the widget":"ApăsaÈ›i Enter pentru a scrie după widget sau Shift+Enter pentru a scrie înaintea acestuia","Words: %0":"Cuvinte: %0","Characters: %0":"Caractere: %0"} );l.getPluralForm=function(n){return (n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ru.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ru.js index 702cdf15d9f957439325fb6bdbb23916ea37417f..b6e6b0c5a1cd8507128ed10ddc562446c5abdbe0 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ru.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ru.js @@ -1 +1 @@ -(function(d){ const l = d['ru'] = d['ru'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Выравнивание по левому краю","Align right":"Выравнивание по правому краю","Align center":"Выравнивание по центру",Justify:"Выравнивание по ширине","Text alignment":"Выравнивание текÑта","Text alignment toolbar":"Выравнивание",Bold:"Жирный",Italic:"КурÑив",Underline:"Подчеркнутый",Code:"ИÑходный код",Strikethrough:"Зачеркнутый",Subscript:"ПодÑтрочный",Superscript:"ÐадÑтрочный","Block quote":"Цитата","Insert code block":"Ð’Ñтавить код","Plain text":"ПроÑтой текÑÑ‚",Cancel:"Отмена",Clear:"ОчиÑтить","Remove color":"Убрать цвет","Restore default":"По умолчанию",Save:"Сохранить","Show more items":"Другие инÑтрументы","%0 of %1":"%0 из %1","Cannot upload file:":"Ðевозможно загрузить файл","Rich Text Editor. Editing area: %0":"Редактор форматированного текÑта. ОблаÑÑ‚ÑŒ редактированиÑ: %0","Insert with file manager":"Ð’Ñтавка Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Replace with file manager":"Заменить Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Insert image with file manager":"Ð’Ñтавить изображение Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Replace image with file manager":"Заменить изображение Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Find and replace":"Ðайти и заменить","Find in text…":"Ðайти в текÑте",Find:"Ðайти","Previous result":"Предыдущий результат","Next result":"Следующий результат",Replace:"Заменить","Replace all":"Заменить вÑÑ‘","Match case":"С учетом региÑтра","Whole words only":"Только Ñлова целиком","Replace with…":"Заменить на...","Text to find must not be empty.":"ИÑкомый текÑÑ‚ не должен быть пуÑтым.","Tip: Find some text first in order to replace it.":"Совет: Ñначала найдите текÑÑ‚, чтобы заменить его.","Advanced options":"Дополнительные параметры",Paragraph:"Параграф",Heading:"Стиль","Choose heading":"Выбор ÑтилÑ","Heading 1":"Заголовок 1","Heading 2":"Заголовок 2","Heading 3":"Заголовок 3","Heading 4":"Заголовок 4","Heading 5":"Заголовок 5","Heading 6":"Заголовок 6","Type your title":"Введите заголовок","Type or paste your content here.":"Введите или вÑтавьте Ñюда ваш текÑÑ‚","Horizontal line":"Ð“Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ð»Ð¸Ð½Ð¸Ñ","HTML object":"HTML объект","Increase indent":"Увеличить отÑтуп","Decrease indent":"Уменьшить отÑтуп",Unlink:"Убрать ÑÑылку",Link:"СÑылка","Link URL":"СÑылка URL","Link image":"СÑылка на изображение","Edit link":"Редактировать ÑÑылку","Open link in new tab":"Открыть ÑÑылку в новой вкладке","This link has no URL":"Ð”Ð»Ñ Ñтой ÑÑылки не уÑтановлен Ð°Ð´Ñ€ÐµÑ URL","Open in a new tab":"Открыть в новой вкладке",Downloadable:"Загружаемые","Numbered List":"Ðумерованный ÑпиÑок","Bulleted List":"Маркированный ÑпиÑок","To-do List":"СпиÑок задач","Bulleted list styles toolbar":"Стили маркированного ÑпиÑка","Numbered list styles toolbar":"Стили нумерованного ÑпиÑка","Toggle the disc list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде закрашенного кружка","Toggle the circle list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде незакрашенного кружка","Toggle the square list style":"Переключить на Ñтиль ÑпиÑка Ñ ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð½Ñ‹Ð¼Ð¸ маркерами","Toggle the decimal list style":"Переключить на Ñтиль ÑпиÑка Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ñ‹Ð¼Ð¸ маркерами","Toggle the decimal with leading zero list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде цифр Ñ Ð½ÑƒÐ»ÐµÐ¼ в начале","Toggle the lower–roman list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде Ñтрочных римÑких цифр","Toggle the upper–roman list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде заглавных римÑких цифр","Toggle the lower–latin list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде Ñтрочных латинÑких букв","Toggle the upper–latin list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде заглавных латинÑких букв",Disc:"ДиÑк",Circle:"ОкружноÑÑ‚ÑŒ",Square:"Квадрат",Decimal:"ДеÑÑтичный","Decimal with leading zero":"ДеÑÑтичный Ñ Ð²ÐµÐ´ÑƒÑ‰Ð¸Ð¼ нулем","Lower–roman":"Малые римÑкие","Upper-roman":"Большие римÑкие","Lower-latin":"Малые латинÑкие","Upper-latin":"Большие латинÑкие","List properties":"СвойÑтва ÑпиÑка","Start at":"Ðачать Ñ","Start index must be greater than 0.":"Ðачальный Ð¸Ð½Ð´ÐµÐºÑ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть больше 0.","Reversed order":"Обратный порÑдок","Remove Format":"Убрать форматирование","Select all":"Выбрать вÑе","Show blocks":"Показать блоки",Source:"HTML редактор","Special characters":"СпецÑимволы",All:"Ð’Ñе",Arrows:"Стрелки",Currency:"Валюта",Latin:"ЛатинÑкие",Mathematical:"МатематичеÑкие",Text:"ТекÑÑ‚","leftwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка влево","rightwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вправо","upwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вверх","downwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вниз","leftwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка влево","rightwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вправо","upwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вверх","downwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вниз","leftwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка влево","rightwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вправо","upwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вверх","downwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вниз","leftwards arrow to bar":"Стрелка влево, упирающаÑÑÑ Ð² планку","rightwards arrow to bar":"Стрелка вправо, упирающаÑÑÑ Ð² планку","upwards arrow to bar":"Стрелка вверх, упирающаÑÑÑ Ð² планку","downwards arrow to bar":"Стрелка вниз, упирающаÑÑÑ Ð² планку","up down arrow with base":"Стрелка вверх и вниз от планки внизу","back with leftwards arrow above":"Стрелка влево над Ñловом BACK (назад)","end with leftwards arrow above":"Стрелка влево над Ñловом END (конец)","on with exclamation mark with left right arrow above":"Стрелка влево и вправо над Ñловом ON! (включить)","soon with rightwards arrow above":"Стрелка вправо над Ñловом SOON (Ñкоро)","top with upwards arrow above":"Стрелка вверх над Ñловом TOP (верх)","Dollar sign":"Символ доллара","Euro sign":"Символ евро","Yen sign":"Символ иены","Pound sign":"Символ фунта Ñтерлингов","Cent sign":"Символ цента","Euro-currency sign":"Символ евровалюты","Colon sign":"Символ двоеточиÑ","Cruzeiro sign":"Символ бразильÑкого крузейро","French franc sign":"Символ французÑкого франка","Lira sign":"Символ лиры","Currency sign":"Символ валюты","Bitcoin sign":"Символ биткоина","Mill sign":"Символ милль","Naira sign":"Символ найры","Peseta sign":"Символ пеÑеты","Rupee sign":"Символ рупии","Won sign":"Символ воны","New sheqel sign":"Символ нового шекелÑ","Dong sign":"Символ донга","Kip sign":"Символ кипа","Tugrik sign":"Символ тугрика","Drachma sign":"Символ драхмы","German penny sign":"Символ немецкого пенни","Peso sign":"Символ пеÑо","Guarani sign":"Символ гуарани","Austral sign":"Символ аргентинÑкого ауÑтралÑ","Hryvnia sign":"Символ гривны","Cedi sign":"Символ ганÑкого Ñеди","Livre tournois sign":"Символ турÑкого ливра","Spesmilo sign":"Символ ÑпеÑмило","Tenge sign":"Символ тенге","Indian rupee sign":"Символ индийÑкой рупии","Turkish lira sign":"Символ турецкой лиры","Nordic mark sign":"Символ ÑкандинавÑкой марки","Manat sign":"Символ маната","Ruble sign":"Символ рублÑ","Latin capital letter a with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter a with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter a with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter a with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter a with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter a with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter c with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter c with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter c with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter c with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter c with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter c with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter c with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter c with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter d with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «D» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter d with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «d» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter d with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «D» Ñо штрихом","Latin small letter d with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «d» Ñо штрихом","Latin capital letter e with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter e with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter e with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter e with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter e with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter e with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter e with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter e with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter e with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter e with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter g with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter g with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter g with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter g with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter g with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter g with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter g with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñедилью","Latin small letter g with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñедилью","Latin capital letter h with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «H» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter h with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «h» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter h with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «H» Ñо штрихом","Latin small letter h with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «h» Ñо штрихом","Latin capital letter i with tilde":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin small letter i with tilde":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin capital letter i with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter i with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter i with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter i with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter i with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter i with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter i with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter dotless i":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» без точки","Latin capital ligature ij":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° «IJ»","Latin small ligature ij":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° «ij»","Latin capital letter j with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «J» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter j with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «j» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter k with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «K» Ñ Ñедилью","Latin small letter k with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «k» Ñ Ñедилью","Latin small letter kra":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° кра","Latin capital letter l with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter l with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter l with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ñедилью","Latin small letter l with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ñедилью","Latin capital letter l with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter l with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter l with middle dot":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð²Ð½ÑƒÑ‚Ñ€Ð¸Ñтрочной точкой","Latin small letter l with middle dot":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð²Ð½ÑƒÑ‚Ñ€Ð¸Ñтрочной точкой","Latin capital letter l with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñо штрихом","Latin small letter l with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñо штрихом","Latin capital letter n with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter n with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter n with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ñедилью","Latin small letter n with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ñедилью","Latin capital letter n with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter n with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter n preceded by apostrophe":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð¿Ñ€ÐµÐ´ÑˆÐµÑтвующим апоÑтрофом","Latin capital letter eng":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ñнг","Latin small letter eng":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ñнг","Latin capital letter o with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter o with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter o with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter o with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter o with double acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin small letter o with double acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin capital ligature oe":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° OE","Latin small ligature oe":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° oe","Latin capital letter r with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter r with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter r with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ñедилью","Latin small letter r with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ñедилью","Latin capital letter r with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter r with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter s with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter s with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter s with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter s with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter s with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ñедилью","Latin small letter s with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ñедилью","Latin capital letter s with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter s with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter t with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñ Ñедилью","Latin small letter t with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñ Ñедилью","Latin capital letter t with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter t with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter t with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñо штрихом","Latin small letter t with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñо штрихом","Latin capital letter u with tilde":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin small letter u with tilde":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin capital letter u with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter u with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter u with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter u with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter u with ring above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ ÐºÑ€ÑƒÐ¶ÐºÐ¾Ð¼ Ñверху","Latin small letter u with ring above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ ÐºÑ€ÑƒÐ¶ÐºÐ¾Ð¼ Ñверху","Latin capital letter u with double acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin small letter u with double acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin capital letter u with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter u with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter w with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «W» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter w with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «w» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter y with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Y» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter y with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «y» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter y with diaeresis":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Y» Ñ Ð´Ð¸ÑрезиÑом","Latin capital letter z with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter z with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter z with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter z with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter z with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter z with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter long s":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ð´Ð»Ð¸Ð½Ð½Ð°Ñ Â«s»","Less-than sign":"Знак меньше","Greater-than sign":"Знак больше","Less-than or equal to":"Меньше либо равно","Greater-than or equal to":"Больше либо равно","En dash":"Среднее тире","Em dash":"Длинное тире",Macron:"Макрон",Overline:"Ðадчёркивание","Degree sign":"Знак градуÑа","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плюÑ-минуÑ","Division sign":"Знак делениÑ","Fraction slash":"Ð”Ñ€Ð¾Ð±Ð½Ð°Ñ Ð½Ð°ÐºÐ»Ð¾Ð½Ð½Ð°Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Multiplication sign":"Знак умножениÑ","Latin small letter f with hook":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «f» Ñ Ñ…Ð²Ð¾Ñтиком",Integral:"Интеграл","N-ary summation":"N-Ð°Ñ€Ð½Ð°Ñ Ñумма",Infinity:"БеÑконечноÑÑ‚ÑŒ","Square root":"Квадратный корень","Tilde operator":"Оператор тильда","Approximately equal to":"КонгруÑнтноÑÑ‚ÑŒ (геометричеÑкое равенÑтво)","Almost equal to":"Почти равный","Not equal to":"Ðе равно","Identical to":"ТождеÑтвенно равно","Element of":"Принадлежит","Not an element of":"Ðе принадлежит","Contains as member":"Содержит как член","N-ary product":"N-арное произведение","Logical and":"ЛогичеÑкое И","Logical or":"ЛогичеÑкое ИЛИ","Not sign":"Знак отрицаниÑ",Intersection:"ПереÑечение",Union:"Объединение","Partial differential":"ЧаÑтичный дифференциал","For all":"Ð”Ð»Ñ Ð²Ñех","There exists":"СущеÑтвует","Empty set":"ПуÑтое множеÑтво",Nabla:"Ðабла","Asterisk operator":"Оператор звездочка","Proportional to":"Пропорционально",Angle:"Угол","Vulgar fraction one quarter":"Дробь – одна четверть","Vulgar fraction one half":"Дробь – одна втораÑ","Vulgar fraction three quarters":"Дробь – три четверти","Single left-pointing angle quotation mark":"ÐžÐ´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ (леваÑ) французÑÐºÐ°Ñ ÑƒÐ³Ð»Ð¾Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Single right-pointing angle quotation mark":"ÐžÐ´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð·Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ (праваÑ) французÑÐºÐ°Ñ ÑƒÐ³Ð»Ð¾Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Left-pointing double angle quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð»ÐµÐ²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ° «ёлочка»","Right-pointing double angle quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¿Ñ€Ð°Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ° «ёлочка»","Left single quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Right single quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Left double quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Right double quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Single low-9 quotation mark":"ÐижнÑÑ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Double low-9 quotation mark":"ÐижнÑÑ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Inverted exclamation mark":"Перевернутый воÑклицательный знак","Inverted question mark":"Перевернутый вопроÑительный знак","Two dot leader":"Двухточечный пунктир","Horizontal ellipsis":"Многоточие","Double dagger":"Двойной креÑтик","Per mille sign":"Знак промилле","Per ten thousand sign":"Знак на деÑÑÑ‚ÑŒ Ñ‚Ñ‹ÑÑч","Double exclamation mark":"Двойной воÑклицательный знак","Question exclamation mark":"ВопроÑительный воÑклицательный знак","Exclamation question mark":"ВоÑклицательный вопроÑительный знак","Double question mark":"Двойной вопроÑительный знак","Copyright sign":"Знак авторÑкого права","Registered sign":"ЗарегиÑтрированный товарный знак","Trade mark sign":"Знак торговой марки","Section sign":"Параграф","Paragraph sign":"Знак абзаца","Reversed paragraph sign":"Обратный знак абзаца","Character categories":"Категории",Styles:"Стили","Multiple styles":"ÐеÑколько Ñтилей","Block styles":"Блочные Ñтили","Text styles":"Стиль текÑта","Insert table":"Ð’Ñтавить таблицу","Header column":"Столбец заголовков","Insert column left":"Ð’Ñтавить Ñтолбец Ñлева","Insert column right":"Ð’Ñтавить Ñтолбец Ñправа","Delete column":"Удалить Ñтолбец","Select column":"Выбрать Ñтолбец",Column:"Столбец","Header row":"Строка заголовков","Insert row below":"Ð’Ñтавить Ñтроку ниже","Insert row above":"Ð’Ñтавить Ñтроку выше","Delete row":"Удалить Ñтроку","Select row":"Выбрать Ñтроку",Row:"Строка","Merge cell up":"Объединить Ñ Ñчейкой Ñверху","Merge cell right":"Объединить Ñ Ñчейкой Ñправа","Merge cell down":"Объединить Ñ Ñчейкой Ñнизу","Merge cell left":"Объединить Ñ Ñчейкой Ñлева","Split cell vertically":"Разделить Ñчейку вертикально","Split cell horizontally":"Разделить Ñчейку горизонтально","Merge cells":"Объединить Ñчейки","Table toolbar":"Панель инÑтрументов таблицы","Table properties":"СвойÑтва таблицы","Cell properties":"СвойÑтва Ñчейки",Border:"Граница",Style:"Стиль",Width:"Ширина",Height:"Ð’Ñ‹Ñота",Color:"Цвет",Background:"Фон",Padding:"ОтÑтуп",Dimensions:"Размеры","Table cell text alignment":"Выравнивание текÑта в Ñчейке таблицы",Alignment:"Выравнивание","Horizontal text alignment toolbar":"Панель инÑтрументов горизонтального Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта","Vertical text alignment toolbar":"Панель инÑтрументов вертикального Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта","Table alignment toolbar":"Панель инÑтрументов Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ‹",None:"Ðет",Solid:"СплошнаÑ",Dotted:"ТочечнаÑ",Dashed:"ПунктирнаÑ",Double:"ДвойнаÑ",Groove:"ЖелобчатаÑ",Ridge:"РебриÑтаÑ",Inset:"ВдавленнаÑ",Outset:"ВыпуклаÑ","Align cell text to the left":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по левому краю","Align cell text to the center":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по центру","Align cell text to the right":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по правому краю","Justify cell text":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по ширине","Align cell text to the top":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по верхнему краю","Align cell text to the middle":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по центру","Align cell text to the bottom":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по нижнему краю","Align table to the left":"ВыровнÑÑ‚ÑŒ таблицу по левому краю","Center table":"ВыровнÑÑ‚ÑŒ таблицу по центру","Align table to the right":"ВыровнÑÑ‚ÑŒ таблицу по правому краю","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Ðеверный цвет. Попробуйте \"#FF0000\" или \"rgb(255,0,0)\" или \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ðеверное значение. Попробуйте \"10px\" или \"2em\" или проÑто \"2\".","Color picker":"Выбор цвета","Toggle caption off":"Выключить опиÑание","Toggle caption on":"Включить опиÑание","Enter table caption":"ПодпиÑÑŒ таблицы","Rich Text Editor":"Редактор","Editor editing area: %0":"ОблаÑÑ‚ÑŒ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð°: %0","Edit block":"Редактировать блок","Click to edit block":"Ðажмите, чтобы редактировать блок","Drag to move":"Перетащить",Next:"Следующий",Previous:"Предыдущий","Editor toolbar":"Панель инÑтрументов редактора","Dropdown toolbar":"Ð’Ñ‹Ð¿Ð°Ð´Ð°ÑŽÑ‰Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ инÑтрументов",Black:"Чёрный","Dim grey":"Тёмно-Ñерый",Grey:"Серый","Light grey":"Светло-Ñерый",White:"Белый",Red:"КраÑный",Orange:"Оранжевый",Yellow:"Жёлтый","Light green":"Салатовый",Green:"Зелёный",Aquamarine:"Ðквамариновый",Turquoise:"Бирюзовый","Light blue":"Голубой",Blue:"Синий",Purple:"Фиолетовый","Editor block content toolbar":"Панель инÑтрументов редактора","Editor contextual toolbar":"КонтекÑÑ‚ÑƒÐ°Ð»ÑŒÐ½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ инÑтрументов редактора",HEX:"HEX",Accept:"ПринÑÑ‚ÑŒ","No results found":"Результаты не найдены","No searchable items":"Ðет Ñлементов Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка","Editor dialog":"Диалоговое окно редактора",Close:"Закрыть",Undo:"Отменить",Redo:"Повторить","Upload in progress":"Идёт загрузка","Widget toolbar":"Панель инÑтрументов виджета","Insert paragraph before block":"Ð’Ñтавить параграф перед блоком","Insert paragraph after block":"Ð’Ñтавить параграф поÑле блока","Press Enter to type after or press Shift + Enter to type before the widget":"Ðажмите Enter Ð´Ð»Ñ Ð²Ð²Ð¾Ð´Ð° текÑта поÑле виджета или нажмите Shift + Enter Ð´Ð»Ñ Ð²Ð²Ð¾Ð´Ð° текÑта перед виджетом","Words: %0":"Слов: %0","Characters: %0":"Символов: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ru'] = d['ru'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Выравнивание по левому краю","Align right":"Выравнивание по правому краю","Align center":"Выравнивание по центру",Justify:"Выравнивание по ширине","Text alignment":"Выравнивание текÑта","Text alignment toolbar":"Выравнивание",Bold:"Жирный",Italic:"КурÑив",Underline:"Подчеркнутый",Code:"ИÑходный код",Strikethrough:"Зачеркнутый",Subscript:"ПодÑтрочный",Superscript:"ÐадÑтрочный","Block quote":"Цитата","Insert code block":"Ð’Ñтавить код","Plain text":"ПроÑтой текÑÑ‚",Cancel:"Отмена",Clear:"ОчиÑтить","Remove color":"Убрать цвет","Restore default":"По умолчанию",Save:"Сохранить","Show more items":"Другие инÑтрументы","%0 of %1":"%0 из %1","Cannot upload file:":"Ðевозможно загрузить файл","Rich Text Editor. Editing area: %0":"Редактор форматированного текÑта. ОблаÑÑ‚ÑŒ редактированиÑ: %0","Insert with file manager":"Ð’Ñтавка Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Replace with file manager":"Заменить Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Insert image with file manager":"Ð’Ñтавить изображение Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Replace image with file manager":"Заменить изображение Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ файлового менеджера","Find and replace":"Ðайти и заменить","Find in text…":"Ðайти в текÑте",Find:"Ðайти","Previous result":"Предыдущий результат","Next result":"Следующий результат",Replace:"Заменить","Replace all":"Заменить вÑÑ‘","Match case":"С учетом региÑтра","Whole words only":"Только Ñлова целиком","Replace with…":"Заменить на...","Text to find must not be empty.":"ИÑкомый текÑÑ‚ не должен быть пуÑтым.","Tip: Find some text first in order to replace it.":"Совет: Ñначала найдите текÑÑ‚, чтобы заменить его.","Advanced options":"Дополнительные параметры","Font Size":"Размер шрифта",Tiny:"Очень мелкий",Small:"Мелкий",Big:"Крупный",Huge:"Очень крупный","Font Family":"СемейÑтво шрифтов",Default:"По умолчанию","Font Color":"Цвет шрифта","Font Background Color":"Цвет фона","Document colors":"Цвет Ñтраницы",Paragraph:"Параграф",Heading:"Стиль","Choose heading":"Выбор ÑтилÑ","Heading 1":"Заголовок 1","Heading 2":"Заголовок 2","Heading 3":"Заголовок 3","Heading 4":"Заголовок 4","Heading 5":"Заголовок 5","Heading 6":"Заголовок 6","Type your title":"Введите заголовок","Type or paste your content here.":"Введите или вÑтавьте Ñюда ваш текÑÑ‚","Horizontal line":"Ð“Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ð»Ð¸Ð½Ð¸Ñ","HTML object":"HTML объект","Increase indent":"Увеличить отÑтуп","Decrease indent":"Уменьшить отÑтуп",Unlink:"Убрать ÑÑылку",Link:"СÑылка","Link URL":"СÑылка URL","Link image":"СÑылка на изображение","Edit link":"Редактировать ÑÑылку","Open link in new tab":"Открыть ÑÑылку в новой вкладке","This link has no URL":"Ð”Ð»Ñ Ñтой ÑÑылки не уÑтановлен Ð°Ð´Ñ€ÐµÑ URL","Open in a new tab":"Открыть в новой вкладке",Downloadable:"Загружаемые","Numbered List":"Ðумерованный ÑпиÑок","Bulleted List":"Маркированный ÑпиÑок","To-do List":"СпиÑок задач","Bulleted list styles toolbar":"Стили маркированного ÑпиÑка","Numbered list styles toolbar":"Стили нумерованного ÑпиÑка","Toggle the disc list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде закрашенного кружка","Toggle the circle list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде незакрашенного кружка","Toggle the square list style":"Переключить на Ñтиль ÑпиÑка Ñ ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð½Ñ‹Ð¼Ð¸ маркерами","Toggle the decimal list style":"Переключить на Ñтиль ÑпиÑка Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ñ‹Ð¼Ð¸ маркерами","Toggle the decimal with leading zero list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде цифр Ñ Ð½ÑƒÐ»ÐµÐ¼ в начале","Toggle the lower–roman list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде Ñтрочных римÑких цифр","Toggle the upper–roman list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде заглавных римÑких цифр","Toggle the lower–latin list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде Ñтрочных латинÑких букв","Toggle the upper–latin list style":"Переключить на Ñтиль ÑпиÑка Ñ Ð¼Ð°Ñ€ÐºÐµÑ€Ð°Ð¼Ð¸ в виде заглавных латинÑких букв",Disc:"ДиÑк",Circle:"ОкружноÑÑ‚ÑŒ",Square:"Квадрат",Decimal:"ДеÑÑтичный","Decimal with leading zero":"ДеÑÑтичный Ñ Ð²ÐµÐ´ÑƒÑ‰Ð¸Ð¼ нулем","Lower–roman":"Малые римÑкие","Upper-roman":"Большие римÑкие","Lower-latin":"Малые латинÑкие","Upper-latin":"Большие латинÑкие","List properties":"СвойÑтва ÑпиÑка","Start at":"Ðачать Ñ","Start index must be greater than 0.":"Ðачальный Ð¸Ð½Ð´ÐµÐºÑ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть больше 0.","Reversed order":"Обратный порÑдок","Remove Format":"Убрать форматирование","Select all":"Выбрать вÑе","Show blocks":"Показать блоки",Source:"HTML редактор","Special characters":"СпецÑимволы",All:"Ð’Ñе",Arrows:"Стрелки",Currency:"Валюта",Latin:"ЛатинÑкие",Mathematical:"МатематичеÑкие",Text:"ТекÑÑ‚","leftwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка влево","rightwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вправо","upwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вверх","downwards simple arrow":"проÑÑ‚Ð°Ñ Ñтрелка вниз","leftwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка влево","rightwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вправо","upwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вверх","downwards double arrow":"Ð”Ð²Ð¾Ð¹Ð½Ð°Ñ Ñтрелка вниз","leftwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка влево","rightwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вправо","upwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вверх","downwards dashed arrow":"ÐŸÑƒÐ½ÐºÑ‚Ð¸Ñ€Ð½Ð°Ñ Ñтрелка вниз","leftwards arrow to bar":"Стрелка влево, упирающаÑÑÑ Ð² планку","rightwards arrow to bar":"Стрелка вправо, упирающаÑÑÑ Ð² планку","upwards arrow to bar":"Стрелка вверх, упирающаÑÑÑ Ð² планку","downwards arrow to bar":"Стрелка вниз, упирающаÑÑÑ Ð² планку","up down arrow with base":"Стрелка вверх и вниз от планки внизу","back with leftwards arrow above":"Стрелка влево над Ñловом BACK (назад)","end with leftwards arrow above":"Стрелка влево над Ñловом END (конец)","on with exclamation mark with left right arrow above":"Стрелка влево и вправо над Ñловом ON! (включить)","soon with rightwards arrow above":"Стрелка вправо над Ñловом SOON (Ñкоро)","top with upwards arrow above":"Стрелка вверх над Ñловом TOP (верх)","Dollar sign":"Символ доллара","Euro sign":"Символ евро","Yen sign":"Символ иены","Pound sign":"Символ фунта Ñтерлингов","Cent sign":"Символ цента","Euro-currency sign":"Символ евровалюты","Colon sign":"Символ двоеточиÑ","Cruzeiro sign":"Символ бразильÑкого крузейро","French franc sign":"Символ французÑкого франка","Lira sign":"Символ лиры","Currency sign":"Символ валюты","Bitcoin sign":"Символ биткоина","Mill sign":"Символ милль","Naira sign":"Символ найры","Peseta sign":"Символ пеÑеты","Rupee sign":"Символ рупии","Won sign":"Символ воны","New sheqel sign":"Символ нового шекелÑ","Dong sign":"Символ донга","Kip sign":"Символ кипа","Tugrik sign":"Символ тугрика","Drachma sign":"Символ драхмы","German penny sign":"Символ немецкого пенни","Peso sign":"Символ пеÑо","Guarani sign":"Символ гуарани","Austral sign":"Символ аргентинÑкого ауÑтралÑ","Hryvnia sign":"Символ гривны","Cedi sign":"Символ ганÑкого Ñеди","Livre tournois sign":"Символ турÑкого ливра","Spesmilo sign":"Символ ÑпеÑмило","Tenge sign":"Символ тенге","Indian rupee sign":"Символ индийÑкой рупии","Turkish lira sign":"Символ турецкой лиры","Nordic mark sign":"Символ ÑкандинавÑкой марки","Manat sign":"Символ маната","Ruble sign":"Символ рублÑ","Latin capital letter a with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter a with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter a with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter a with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter a with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «A» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter a with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «a» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter c with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter c with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter c with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter c with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter c with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter c with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter c with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «C» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter c with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «c» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter d with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «D» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter d with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «d» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter d with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «D» Ñо штрихом","Latin small letter d with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «d» Ñо штрихом","Latin capital letter e with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter e with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter e with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter e with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter e with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter e with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter e with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter e with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter e with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «E» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter e with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «e» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter g with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter g with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter g with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter g with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter g with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter g with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter g with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «G» Ñ Ñедилью","Latin small letter g with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «g» Ñ Ñедилью","Latin capital letter h with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «H» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter h with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «h» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter h with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «H» Ñо штрихом","Latin small letter h with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «h» Ñо штрихом","Latin capital letter i with tilde":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin small letter i with tilde":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin capital letter i with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter i with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter i with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter i with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter i with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter i with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter i with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «I» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter dotless i":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «i» без точки","Latin capital ligature ij":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° «IJ»","Latin small ligature ij":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° «ij»","Latin capital letter j with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «J» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter j with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «j» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter k with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «K» Ñ Ñедилью","Latin small letter k with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «k» Ñ Ñедилью","Latin small letter kra":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° кра","Latin capital letter l with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter l with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter l with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ñедилью","Latin small letter l with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ñедилью","Latin capital letter l with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter l with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter l with middle dot":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñ Ð²Ð½ÑƒÑ‚Ñ€Ð¸Ñтрочной точкой","Latin small letter l with middle dot":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñ Ð²Ð½ÑƒÑ‚Ñ€Ð¸Ñтрочной точкой","Latin capital letter l with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «L» Ñо штрихом","Latin small letter l with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «l» Ñо штрихом","Latin capital letter n with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter n with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter n with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ñедилью","Latin small letter n with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ñедилью","Latin capital letter n with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «N» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter n with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter n preceded by apostrophe":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «n» Ñ Ð¿Ñ€ÐµÐ´ÑˆÐµÑтвующим апоÑтрофом","Latin capital letter eng":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ñнг","Latin small letter eng":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ñнг","Latin capital letter o with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter o with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter o with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter o with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter o with double acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «O» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin small letter o with double acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «o» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin capital ligature oe":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° OE","Latin small ligature oe":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð»Ð¸Ð³Ð°Ñ‚ÑƒÑ€Ð° oe","Latin capital letter r with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter r with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter r with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ñедилью","Latin small letter r with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ñедилью","Latin capital letter r with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «R» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter r with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «r» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter s with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter s with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter s with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter s with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter s with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ñедилью","Latin small letter s with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ñедилью","Latin capital letter s with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «S» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter s with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «s» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter t with cedilla":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñ Ñедилью","Latin small letter t with cedilla":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñ Ñедилью","Latin capital letter t with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter t with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin capital letter t with stroke":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «T» Ñо штрихом","Latin small letter t with stroke":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «t» Ñо штрихом","Latin capital letter u with tilde":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin small letter u with tilde":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ñ‚Ð¸Ð»ÑŒÐ´Ð¾Ð¹","Latin capital letter u with macron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin small letter u with macron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð¼Ð°ÐºÑ€Ð¾Ð½Ð¾Ð¼","Latin capital letter u with breve":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin small letter u with breve":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð±Ñ€ÐµÐ²Ð¸Ñом","Latin capital letter u with ring above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ ÐºÑ€ÑƒÐ¶ÐºÐ¾Ð¼ Ñверху","Latin small letter u with ring above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ ÐºÑ€ÑƒÐ¶ÐºÐ¾Ð¼ Ñверху","Latin capital letter u with double acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin small letter u with double acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼ акутом","Latin capital letter u with ogonek":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «U» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin small letter u with ogonek":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «u» Ñ Ð¾Ð³Ð¾Ð½ÐµÐºÐ¾Ð¼","Latin capital letter w with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «W» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter w with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «w» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter y with circumflex":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Y» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin small letter y with circumflex":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «y» Ñ Ñ†Ð¸Ñ€ÐºÑƒÐ¼Ñ„Ð»ÐµÐºÑом","Latin capital letter y with diaeresis":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Y» Ñ Ð´Ð¸ÑрезиÑом","Latin capital letter z with acute":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin small letter z with acute":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ð°ÐºÑƒÑ‚Ð¾Ð¼","Latin capital letter z with dot above":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin small letter z with dot above":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ñ‚Ð¾Ñ‡ÐºÐ¾Ð¹ Ñверху","Latin capital letter z with caron":"ЛатинÑÐºÐ°Ñ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «Z» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter z with caron":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «z» Ñ Ð³Ð°Ñ‡ÐµÐºÐ¾Ð¼","Latin small letter long s":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° Ð´Ð»Ð¸Ð½Ð½Ð°Ñ Â«s»","Less-than sign":"Знак меньше","Greater-than sign":"Знак больше","Less-than or equal to":"Меньше либо равно","Greater-than or equal to":"Больше либо равно","En dash":"Среднее тире","Em dash":"Длинное тире",Macron:"Макрон",Overline:"Ðадчёркивание","Degree sign":"Знак градуÑа","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плюÑ-минуÑ","Division sign":"Знак делениÑ","Fraction slash":"Ð”Ñ€Ð¾Ð±Ð½Ð°Ñ Ð½Ð°ÐºÐ»Ð¾Ð½Ð½Ð°Ñ Ñ‡ÐµÑ€Ñ‚Ð°","Multiplication sign":"Знак умножениÑ","Latin small letter f with hook":"ЛатинÑÐºÐ°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ð±ÑƒÐºÐ²Ð° «f» Ñ Ñ…Ð²Ð¾Ñтиком",Integral:"Интеграл","N-ary summation":"N-Ð°Ñ€Ð½Ð°Ñ Ñумма",Infinity:"БеÑконечноÑÑ‚ÑŒ","Square root":"Квадратный корень","Tilde operator":"Оператор тильда","Approximately equal to":"КонгруÑнтноÑÑ‚ÑŒ (геометричеÑкое равенÑтво)","Almost equal to":"Почти равный","Not equal to":"Ðе равно","Identical to":"ТождеÑтвенно равно","Element of":"Принадлежит","Not an element of":"Ðе принадлежит","Contains as member":"Содержит как член","N-ary product":"N-арное произведение","Logical and":"ЛогичеÑкое И","Logical or":"ЛогичеÑкое ИЛИ","Not sign":"Знак отрицаниÑ",Intersection:"ПереÑечение",Union:"Объединение","Partial differential":"ЧаÑтичный дифференциал","For all":"Ð”Ð»Ñ Ð²Ñех","There exists":"СущеÑтвует","Empty set":"ПуÑтое множеÑтво",Nabla:"Ðабла","Asterisk operator":"Оператор звездочка","Proportional to":"Пропорционально",Angle:"Угол","Vulgar fraction one quarter":"Дробь – одна четверть","Vulgar fraction one half":"Дробь – одна втораÑ","Vulgar fraction three quarters":"Дробь – три четверти","Single left-pointing angle quotation mark":"ÐžÐ´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ (леваÑ) французÑÐºÐ°Ñ ÑƒÐ³Ð»Ð¾Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Single right-pointing angle quotation mark":"ÐžÐ´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð·Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ (праваÑ) французÑÐºÐ°Ñ ÑƒÐ³Ð»Ð¾Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Left-pointing double angle quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð»ÐµÐ²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ° «ёлочка»","Right-pointing double angle quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¿Ñ€Ð°Ð²Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ° «ёлочка»","Left single quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Right single quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Left double quotation mark":"ÐžÑ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Right double quotation mark":"Ð—Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Single low-9 quotation mark":"ÐижнÑÑ Ð¾Ð´Ð¸Ð½Ð°Ñ€Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Double low-9 quotation mark":"ÐижнÑÑ Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ ÐºÐ°Ð²Ñ‹Ñ‡ÐºÐ°","Inverted exclamation mark":"Перевернутый воÑклицательный знак","Inverted question mark":"Перевернутый вопроÑительный знак","Two dot leader":"Двухточечный пунктир","Horizontal ellipsis":"Многоточие","Double dagger":"Двойной креÑтик","Per mille sign":"Знак промилле","Per ten thousand sign":"Знак на деÑÑÑ‚ÑŒ Ñ‚Ñ‹ÑÑч","Double exclamation mark":"Двойной воÑклицательный знак","Question exclamation mark":"ВопроÑительный воÑклицательный знак","Exclamation question mark":"ВоÑклицательный вопроÑительный знак","Double question mark":"Двойной вопроÑительный знак","Copyright sign":"Знак авторÑкого права","Registered sign":"ЗарегиÑтрированный товарный знак","Trade mark sign":"Знак торговой марки","Section sign":"Параграф","Paragraph sign":"Знак абзаца","Reversed paragraph sign":"Обратный знак абзаца","Character categories":"Категории",Styles:"Стили","Multiple styles":"ÐеÑколько Ñтилей","Block styles":"Блочные Ñтили","Text styles":"Стиль текÑта","Insert table":"Ð’Ñтавить таблицу","Header column":"Столбец заголовков","Insert column left":"Ð’Ñтавить Ñтолбец Ñлева","Insert column right":"Ð’Ñтавить Ñтолбец Ñправа","Delete column":"Удалить Ñтолбец","Select column":"Выбрать Ñтолбец",Column:"Столбец","Header row":"Строка заголовков","Insert row below":"Ð’Ñтавить Ñтроку ниже","Insert row above":"Ð’Ñтавить Ñтроку выше","Delete row":"Удалить Ñтроку","Select row":"Выбрать Ñтроку",Row:"Строка","Merge cell up":"Объединить Ñ Ñчейкой Ñверху","Merge cell right":"Объединить Ñ Ñчейкой Ñправа","Merge cell down":"Объединить Ñ Ñчейкой Ñнизу","Merge cell left":"Объединить Ñ Ñчейкой Ñлева","Split cell vertically":"Разделить Ñчейку вертикально","Split cell horizontally":"Разделить Ñчейку горизонтально","Merge cells":"Объединить Ñчейки","Table toolbar":"Панель инÑтрументов таблицы","Table properties":"СвойÑтва таблицы","Cell properties":"СвойÑтва Ñчейки",Border:"Граница",Style:"Стиль",Width:"Ширина",Height:"Ð’Ñ‹Ñота",Color:"Цвет",Background:"Фон",Padding:"ОтÑтуп",Dimensions:"Размеры","Table cell text alignment":"Выравнивание текÑта в Ñчейке таблицы",Alignment:"Выравнивание","Horizontal text alignment toolbar":"Панель инÑтрументов горизонтального Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта","Vertical text alignment toolbar":"Панель инÑтрументов вертикального Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта","Table alignment toolbar":"Панель инÑтрументов Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ‹",None:"Ðет",Solid:"СплошнаÑ",Dotted:"ТочечнаÑ",Dashed:"ПунктирнаÑ",Double:"ДвойнаÑ",Groove:"ЖелобчатаÑ",Ridge:"РебриÑтаÑ",Inset:"ВдавленнаÑ",Outset:"ВыпуклаÑ","Align cell text to the left":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по левому краю","Align cell text to the center":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по центру","Align cell text to the right":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по правому краю","Justify cell text":"ВыровнÑÑ‚ÑŒ текÑÑ‚ по ширине","Align cell text to the top":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по верхнему краю","Align cell text to the middle":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по центру","Align cell text to the bottom":"ВыровнÑÑ‚ÑŒ текÑÑ‚ Ñчейки по нижнему краю","Align table to the left":"ВыровнÑÑ‚ÑŒ таблицу по левому краю","Center table":"ВыровнÑÑ‚ÑŒ таблицу по центру","Align table to the right":"ВыровнÑÑ‚ÑŒ таблицу по правому краю","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Ðеверный цвет. Попробуйте \"#FF0000\" или \"rgb(255,0,0)\" или \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ðеверное значение. Попробуйте \"10px\" или \"2em\" или проÑто \"2\".","Color picker":"Выбор цвета","Toggle caption off":"Выключить опиÑание","Toggle caption on":"Включить опиÑание","Enter table caption":"ПодпиÑÑŒ таблицы","Rich Text Editor":"Редактор","Editor editing area: %0":"ОблаÑÑ‚ÑŒ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð°: %0","Edit block":"Редактировать блок","Click to edit block":"Ðажмите, чтобы редактировать блок","Drag to move":"Перетащить",Next:"Следующий",Previous:"Предыдущий","Editor toolbar":"Панель инÑтрументов редактора","Dropdown toolbar":"Ð’Ñ‹Ð¿Ð°Ð´Ð°ÑŽÑ‰Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ инÑтрументов",Black:"Чёрный","Dim grey":"Тёмно-Ñерый",Grey:"Серый","Light grey":"Светло-Ñерый",White:"Белый",Red:"КраÑный",Orange:"Оранжевый",Yellow:"Жёлтый","Light green":"Салатовый",Green:"Зелёный",Aquamarine:"Ðквамариновый",Turquoise:"Бирюзовый","Light blue":"Голубой",Blue:"Синий",Purple:"Фиолетовый","Editor block content toolbar":"Панель инÑтрументов редактора","Editor contextual toolbar":"КонтекÑÑ‚ÑƒÐ°Ð»ÑŒÐ½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ инÑтрументов редактора",HEX:"HEX",Accept:"ПринÑÑ‚ÑŒ","No results found":"Результаты не найдены","No searchable items":"Ðет Ñлементов Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка","Editor dialog":"Диалоговое окно редактора",Close:"Закрыть",Undo:"Отменить",Redo:"Повторить","Upload in progress":"Идёт загрузка","Widget toolbar":"Панель инÑтрументов виджета","Insert paragraph before block":"Ð’Ñтавить параграф перед блоком","Insert paragraph after block":"Ð’Ñтавить параграф поÑле блока","Press Enter to type after or press Shift + Enter to type before the widget":"Ðажмите Enter Ð´Ð»Ñ Ð²Ð²Ð¾Ð´Ð° текÑта поÑле виджета или нажмите Shift + Enter Ð´Ð»Ñ Ð²Ð²Ð¾Ð´Ð° текÑта перед виджетом","Words: %0":"Слов: %0","Characters: %0":"Символов: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sk.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sk.js index 33bb123ac092a93b7f74537955ffd54b9c2ebf17..f681db41d016341974080b441808578ca09f720a 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sk.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sk.js @@ -1 +1 @@ -(function(d){ const l = d['sk'] = d['sk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"ZarovnaÅ¥ vľavo","Align right":"ZarovnaÅ¥ vpravo","Align center":"ZarovnaÅ¥ na stred",Justify:"Do bloku","Text alignment":"Zarovnanie textu","Text alignment toolbar":"Panel nástrojov zarovnania textu",Bold:"TuÄné",Italic:"KurzÃva",Underline:"PodÄiarknuté",Code:"Kód",Strikethrough:"PreÅ¡krtnuté",Subscript:"Dolný index",Superscript:"Horný index","Block quote":"Citát","Insert code block":"Vložte blok kódu","Plain text":"ÄŒistý text",Cancel:"ZruÅ¡iÅ¥",Clear:"VyÄistiÅ¥","Remove color":"ZruÅ¡iÅ¥ farbu","Restore default":"ObnoviÅ¥ predvolené",Save:"UložiÅ¥","Show more items":"ZobraziÅ¥ viac položiek","%0 of %1":"%0 z %1","Cannot upload file:":"Nie je možné nahraÅ¥ súbor:","Rich Text Editor. Editing area: %0":"Rich Text Editor. OblasÅ¥ úprav: %0","Insert with file manager":"VložiÅ¥ pomocou správcu súborov","Replace with file manager":"NahradiÅ¥ správcom súborov","Insert image with file manager":"VložiÅ¥ obrázok pomocou správcu súborov","Replace image with file manager":"NahradiÅ¥ obrázok pomocou správcu súborov","Find and replace":"VyhľadaÅ¥ a nahradiÅ¥","Find in text…":"VyhľadaÅ¥ v texte...",Find:"VyhľadaÅ¥","Previous result":"Predchádzajúci výsledok","Next result":"Nasledujúci výsledok",Replace:"NahradiÅ¥","Replace all":"NahradiÅ¥ vÅ¡etko","Match case":"Presná zhoda","Whole words only":"Iba celé slová","Replace with…":"NahradiÅ¥ za...","Text to find must not be empty.":"Text vyhľadávania nemôže byÅ¥ prázdny.","Tip: Find some text first in order to replace it.":"Tip: Najskôr vyhľadajte text, ktorý následne môžete nahradiÅ¥.","Advanced options":"PokroÄilé nastavenia",Paragraph:"Odsek",Heading:"Nadpis","Choose heading":"Vyberte nadpis","Heading 1":"Nadpis 1","Heading 2":"Nadpis 2","Heading 3":"Nadpis 3","Heading 4":"Nadpis 4","Heading 5":"Nadpis 5","Heading 6":"Nadpis 6","Type your title":"Vložte nadpis","Type or paste your content here.":"Vložte obsah","Horizontal line":"Vodorovná Äiara","HTML object":"HTML objekt","Increase indent":"ZväÄÅ¡iÅ¥ odsadenie","Decrease indent":"ZmenÅ¡iÅ¥ odsadenie",Unlink:"ZruÅ¡iÅ¥ odkaz",Link:"Odkaz","Link URL":"URL adresa","Link image":"Adresa obrázku","Edit link":"UpraviÅ¥ odkaz","Open link in new tab":"OtvoriÅ¥ odkaz v novom okne","This link has no URL":"Tento odkaz nemá nastavenú URL adresu","Open in a new tab":"OtvoriÅ¥ v novej záložke",Downloadable:"Na stiahnutie","Numbered List":"ÄŒÃslovaný zoznam","Bulleted List":"Zoznam s odrážkami","To-do List":"To-do zoznam","Bulleted list styles toolbar":"Panel zoznamu s odrážkami","Numbered list styles toolbar":"Panel so Å¡týlmi ÄÃslovaného zoznamu","Toggle the disc list style":"Prepnúť na zoznam s oznaÄenÃm plného kruhu","Toggle the circle list style":"Prepnúť na zoznam s kruhovým oznaÄenÃm","Toggle the square list style":"Prepnúť na zoznam so Å¡tvorcovým oznaÄenÃm","Toggle the decimal list style":"Prepnúť na ÄÃselný zoznam","Toggle the decimal with leading zero list style":"Prepnúť na ÄÃselný zoznam s nulou na zaÄiatku","Toggle the lower–roman list style":"Prepnúť na zoznam s malými rÃmskymi ÄÃslami","Toggle the upper–roman list style":"Prepnúť na zoznam s veľkými rÃmskymi ÄÃslami","Toggle the lower–latin list style":"Prepnúť na zoznam s malými pÃsmenami","Toggle the upper–latin list style":"Prepnúť na zoznam s veľkými pÃsmenami",Disc:"Plný kruh",Circle:"Kruh",Square:"Å tvorec",Decimal:"ÄŒÃsla","Decimal with leading zero":"ÄŒÃsla s nulou na zaÄiatku","Lower–roman":"Malé rÃmske ÄÃsla","Upper-roman":"Veľké rÃmske ÄÃsla","Lower-latin":"Malé pÃsmená","Upper-latin":"Veľké pÃsmená","List properties":"Vlastnosti zoznamu","Start at":"Prvá položka","Start index must be greater than 0.":"Prvá položka musà maÅ¥ index väÄÅ¡Ã ako 0.","Reversed order":"Obrátene poradie","Remove Format":"VyÄistiÅ¥ formátovanie","Select all":"OznaÄiÅ¥ vÅ¡etko","Show blocks":"ZobraziÅ¥ bloky",Source:"Zdroj","Special characters":"Å peciálne znaky",All:"VÅ¡etko",Arrows:"Å Ãpky",Currency:"Mena",Latin:"Latinský",Mathematical:"Matematický",Text:"Text","leftwards simple arrow":"jednoduchá Å¡Ãpka doľava","rightwards simple arrow":"jednoduchá Å¡Ãpka doprava","upwards simple arrow":"jednoduchá Å¡Ãpka nahor","downwards simple arrow":"jednoduchá Å¡Ãpka nadol","leftwards double arrow":"dvojitá Å¡Ãpka doľava","rightwards double arrow":"dvojitá Å¡Ãpka doprava","upwards double arrow":"dvojitá Å¡Ãpka nahor","downwards double arrow":"dvojitá Å¡Ãpka nadol","leftwards dashed arrow":"preruÅ¡ovaná Å¡Ãpka doľava","rightwards dashed arrow":"Äiarkovaná Å¡Ãpka doprava","upwards dashed arrow":"Äiarkovaná Å¡Ãpka nahor","downwards dashed arrow":"preruÅ¡ovaná Å¡Ãpka nadol","leftwards arrow to bar":"Å¡Ãpka doľava do zvislej Äiary","rightwards arrow to bar":"Å¡Ãpka doprava do zvislej Äiary","upwards arrow to bar":"Å¡Ãpka nahor do zvislej Äiary","downwards arrow to bar":"Å¡Ãpka nadol do zvislej Äiary","up down arrow with base":"Å Ãpka hore-dole od základne","back with leftwards arrow above":"Å Ãpka späť","end with leftwards arrow above":"Å Ãpka koniec","on with exclamation mark with left right arrow above":"ON s výkriÄnÃkom so Å¡Ãpkou doľava doprava hore","soon with rightwards arrow above":"Äoskoro so Å¡Ãpkou doprava hore","top with upwards arrow above":"TOP so Å¡Ãpkou hore","Dollar sign":"Znak Dolár","Euro sign":"Znak Euro","Yen sign":"Znak Jen","Pound sign":"Znak Libra","Cent sign":"Znak cent","Euro-currency sign":"Mena Euro","Colon sign":"Dvojbodka","Cruzeiro sign":"Mena Cruzeiro","French franc sign":"Mena Francúzsky Frank","Lira sign":"Mena LÃra","Currency sign":"Znak meny","Bitcoin sign":"Mena Bitcoin","Mill sign":"Znak Mill","Naira sign":"Znak Naira","Peseta sign":"Znak Peseta","Rupee sign":"Znak Rupee","Won sign":"Znak Won","New sheqel sign":"Nový znak Å¡ekelu","Dong sign":"Znak Dong","Kip sign":"Znak Kip","Tugrik sign":"Znak Tugrik","Drachma sign":"Znak Drachma","German penny sign":"Nemecká penny","Peso sign":"Znak Peso","Guarani sign":"Znak Guarani","Austral sign":"Znak Austral","Hryvnia sign":"Znak Hryvnia","Cedi sign":"Znak Cedi","Livre tournois sign":"Znak Livre tournois","Spesmilo sign":"Znak Spesmilo","Tenge sign":"Znak Tenge","Indian rupee sign":"Znak Indická rupia","Turkish lira sign":"Znak Turecká lÃra","Nordic mark sign":"Znak Nórska marka","Manat sign":"Znak Manat","Ruble sign":"Znak Ruble","Latin capital letter a with macron":"Latinské veľké pÃsmeno a s Äiarou","Latin small letter a with macron":"Latinské malé pÃsmeno a s Äiarou","Latin capital letter a with breve":"Latinské veľké pÃsmeno a s mäkÄeňom","Latin small letter a with breve":"Latinské malé pÃsmeno a s mäkÄeňom","Latin capital letter a with ogonek":"Latinské veľké pÃsmeno a s háÄikom","Latin small letter a with ogonek":"Latinské malé pÃsmeno a s háÄikom","Latin capital letter c with acute":"Latinské veľké pÃsmeno c s dĺžňom","Latin small letter c with acute":"Latinské malé pÃsmeno c s dĺžňom","Latin capital letter c with circumflex":"Latinské veľké pÃsmeno c s obráteným mäkÄeňom","Latin small letter c with circumflex":"Latinské malé pÃsmeno c s obráteným mäkÄeňom","Latin capital letter c with dot above":"Latinské veľké pÃsmeno c s bodkou nad znakom","Latin small letter c with dot above":"Latinské malé pÃsmeno c s bodkou nad znakom","Latin capital letter c with caron":"Latinské veľké pÃsmeno c s mäkÄeňom","Latin small letter c with caron":"Latinské malé pÃsmeno c s mäkÄeňom","Latin capital letter d with caron":"Latinské veľké pÃsmeno d s mäkÄeňom","Latin small letter d with caron":"Latinské malé pÃsmeno d s mäkÄeňom","Latin capital letter d with stroke":"Latinské veľké pÃsmeno d s preÄiarknutÃm","Latin small letter d with stroke":"Latinské malé pÃsmeno d s preÄiarknutÃm","Latin capital letter e with macron":"Latinské veľké pÃsmeno e s Äiarou","Latin small letter e with macron":"Latinské malé pÃsmeno e s Äiarou","Latin capital letter e with breve":"Latinské veľké pÃsmeno e s mäkÄeňom","Latin small letter e with breve":"Latinské malé pÃsmeno e s mäkÄeňom","Latin capital letter e with dot above":"Latinské veľké pÃsmeno e s bodkou nad znakom","Latin small letter e with dot above":"Latinské malé pÃsmeno e s bodkou nad znakom","Latin capital letter e with ogonek":"Latinské veľké pÃsmeno e s háÄikom","Latin small letter e with ogonek":"Latinské malé pÃsmeno e s háÄikom","Latin capital letter e with caron":"Latinské veľké pÃsmeno e s mäkÄeňom","Latin small letter e with caron":"Latinské malé pÃsmeno e s mäkÄeňom","Latin capital letter g with circumflex":"Latinské veľké pÃsmeno g s obráteným mäkÄeňom","Latin small letter g with circumflex":"Latinské malé pÃsmeno g s obráteným mäkÄeňom","Latin capital letter g with breve":"Latinské veľké pÃsmeno g s mäkÄeňom","Latin small letter g with breve":"Latinské malé pÃsmeno g s mäkÄeňom","Latin capital letter g with dot above":"Latinské veľké pÃsmeno g s bodkou nad znakom","Latin small letter g with dot above":"Latinské malé pÃsmeno g s bodkou nad znakom","Latin capital letter g with cedilla":"Latinské veľké pÃsmeno g s háÄikom","Latin small letter g with cedilla":"Latinské malé pÃsmeno g s háÄikom","Latin capital letter h with circumflex":"Latinské veľké pÃsmeno h s obráteným mäkÄeňom","Latin small letter h with circumflex":"Latinské malé pÃsmeno h s obráteným mäkÄeňom","Latin capital letter h with stroke":"Latinské veľké pÃsmeno h s preÄiarknutÃm","Latin small letter h with stroke":"Latinské malé pÃsmeno h s preÄiarknutÃm","Latin capital letter i with tilde":"Latinské veľké pÃsmeno i s vlnovkou","Latin small letter i with tilde":"Latinské malé pÃsmeno i s vlnovkou","Latin capital letter i with macron":"Latinské veľké pÃsmeno i s Äiarou","Latin small letter i with macron":"Latinské malé pÃsmeno i s Äiarou","Latin capital letter i with breve":"Latinské veľké pÃsmeno i s mäkÄeňom","Latin small letter i with breve":"Latinské malé pÃsmeno i s mäkÄeňom","Latin capital letter i with ogonek":"Latinské veľké pÃsmeno i s háÄikom","Latin small letter i with ogonek":"Latinské malé pÃsmeno i s háÄikom","Latin capital letter i with dot above":"Latinské veľké pÃsmeno i s bodkou nad znakom","Latin small letter dotless i":"Latinské malé pÃsmeno i bez bodky","Latin capital ligature ij":"Latinský veľký znak ligatúry ij","Latin small ligature ij":"Latinský malý znak ligatúry ij","Latin capital letter j with circumflex":"Latinské veľké pÃsmeno j s obráteným mäkÄeňom","Latin small letter j with circumflex":"Latinské malé pÃsmeno j s obráteným mäkÄeňom","Latin capital letter k with cedilla":"Latinské veľké pÃsmeno k s háÄikom","Latin small letter k with cedilla":"Latinské malé pÃsmeno k s háÄikom","Latin small letter kra":"latinský malý znak Kra","Latin capital letter l with acute":"Latinské veľké pÃsmeno l s dĺžňom","Latin small letter l with acute":"Latinské malé pÃsmeno l s dĺžňom","Latin capital letter l with cedilla":"Latinské veľké pÃsmeno l s háÄikom","Latin small letter l with cedilla":"Latinské malé pÃsmeno l s háÄikom","Latin capital letter l with caron":"Latinské veľké pÃsmeno l s mäkÄeňom","Latin small letter l with caron":"Latinské malé pÃsmeno l s mäkÄeňom","Latin capital letter l with middle dot":"Latinské veľké pÃsmeno l s bodkou uprostred","Latin small letter l with middle dot":"Latinské malé pÃsmeno l s bodkou uprostred","Latin capital letter l with stroke":"Latinské veľké pÃsmeno l s preÄiarknutÃm","Latin small letter l with stroke":"Latinské malé pÃsmeno l s preÄiarknutÃm","Latin capital letter n with acute":"Latinské veľké pÃsmeno n s dĺžňom","Latin small letter n with acute":"Latinské malé pÃsmeno n s dĺžňom","Latin capital letter n with cedilla":"Latinské veľké pÃsmeno n s háÄikom","Latin small letter n with cedilla":"Latinské malé pÃsmeno n s háÄikom","Latin capital letter n with caron":"Latinské veľké pÃsmeno n s mäkÄeňom","Latin small letter n with caron":"Latinské malé pÃsmeno n s mäkÄeňom","Latin small letter n preceded by apostrophe":"Latinské malé pÃsmeno n s apostrofom","Latin capital letter eng":"Latinské veľké pÃsmeno Eng","Latin small letter eng":"Latinské malé pÃsmeno Eng","Latin capital letter o with macron":"Latinské veľké pÃsmeno o s Äiarou","Latin small letter o with macron":"Latinské malé pÃsmeno o s Äiarou","Latin capital letter o with breve":"Latinské veľké pÃsmeno o s mäkÄeňom","Latin small letter o with breve":"Latinské malé pÃsmeno o s mäkÄeňom","Latin capital letter o with double acute":"Latinské veľké pÃsmeno o s dĺžňom","Latin small letter o with double acute":"Latinské malé pÃsmeno o s dĺžňom","Latin capital ligature oe":"Latinský veľký znak ligatúry oe","Latin small ligature oe":"Latinský malý znak ligatúry oe","Latin capital letter r with acute":"Latinské veľké pÃsmeno r s dĺžňom","Latin small letter r with acute":"Latinské malé pÃsmeno r s dĺžňom","Latin capital letter r with cedilla":"Latinské veľké pÃsmeno r s háÄikom","Latin small letter r with cedilla":"Latinské malé pÃsmeno r s háÄikom","Latin capital letter r with caron":"Latinské veľké pÃsmeno r s mäkÄeňom","Latin small letter r with caron":"Latinské malé pÃsmeno r s mäkÄeňom","Latin capital letter s with acute":"Latinské veľké pÃsmeno s s dĺžňom","Latin small letter s with acute":"Latinské malé pÃsmeno s s dĺžňom","Latin capital letter s with circumflex":"Latinské veľké pÃsmeno s s obráteným mäkÄeňom","Latin small letter s with circumflex":"Latinské malé pÃsmeno s s obráteným mäkÄeňom","Latin capital letter s with cedilla":"Latinské veľké pÃsmeno s s háÄikom","Latin small letter s with cedilla":"Latinské malé pÃsmeno s s háÄikom","Latin capital letter s with caron":"Latinské veľké pÃsmeno s s mäkÄeňom","Latin small letter s with caron":"Latinské malé pÃsmeno s s mäkÄeňom","Latin capital letter t with cedilla":"Latinské veľké pÃsmeno t s háÄikom","Latin small letter t with cedilla":"Latinské malé pÃsmeno t s háÄikom","Latin capital letter t with caron":"Latinské veľké pÃsmeno t s mäkÄeňom","Latin small letter t with caron":"Latinské malé pÃsmeno t s mäkÄeňom","Latin capital letter t with stroke":"Latinské veľké pÃsmeno t s preÄiarknutÃm","Latin small letter t with stroke":"Latinské malé pÃsmeno t s preÄiarknutÃm","Latin capital letter u with tilde":"Latinské veľké pÃsmeno u s vlnovkou","Latin small letter u with tilde":"Latinské malé pÃsmeno u s vlnovkou","Latin capital letter u with macron":"Latinské veľké pÃsmeno u s Äiarou","Latin small letter u with macron":"Latinské malé pÃsmeno o s Äiarou","Latin capital letter u with breve":"Latinské veľké pÃsmeno u s mäkÄeňom","Latin small letter u with breve":"Latinské malé pÃsmeno u s mäkÄeňom","Latin capital letter u with ring above":"Latinské veľké pÃsmeno u s krúžkom nad znakom","Latin small letter u with ring above":"Latinské malé pÃsmeno u s krúžkom nad znakom","Latin capital letter u with double acute":"Latinské veľké pÃsmeno u s dvojitým dĺžňom","Latin small letter u with double acute":"Latinské malé pÃsmeno u s dvojitým dĺžňom","Latin capital letter u with ogonek":"Latinské veľké pÃsmeno u s háÄikom","Latin small letter u with ogonek":"Latinské malé pÃsmeno u s háÄikom","Latin capital letter w with circumflex":"Latinské veľké pÃsmeno w s obráteným mäkÄeňom","Latin small letter w with circumflex":"Latinské malé pÃsmeno w s obráteným mäkÄeňom","Latin capital letter y with circumflex":"Latinské veľké pÃsmeno y s obráteným mäkÄeňom","Latin small letter y with circumflex":"Latinské malé pÃsmeno y s obráteným mäkÄeňom","Latin capital letter y with diaeresis":"Latinské veľké pÃsmeno y s dvojbodkou nad znakom","Latin capital letter z with acute":"Latinské veľké pÃsmeno z s dĺžňom","Latin small letter z with acute":"Latinské malé pÃsmeno z s dĺžňom","Latin capital letter z with dot above":"Latinské veľké pÃsmeno z s bodkou nad znakom","Latin small letter z with dot above":"Latinské malé pÃsmeno z s bodkou nad znakom","Latin capital letter z with caron":"Latinské veľké pÃsmeno z s mäkÄeňom","Latin small letter z with caron":"Malé pÃsmeno s z mäkÄeňom","Latin small letter long s":"Malé dlhé pÃsmeno s","Less-than sign":"MenÅ¡Ã ako","Greater-than sign":"VäÄÅ¡Ã ako","Less-than or equal to":"MenÅ¡Ã alebo rovný","Greater-than or equal to":"VäÄÅ¡Ã alebo rovný","En dash":"PomĺÄka","Em dash":"Dlhá pomĺÄka",Macron:"Horná Äiara",Overline:"PreÅ¡krtnutie","Degree sign":"Znak stupeň","Minus sign":"Znak mÃnus","Plus-minus sign":"Znak plus-mÃnus","Division sign":"Delenie","Fraction slash":"LomÃtko / Delenie","Multiplication sign":"Násobenie","Latin small letter f with hook":"Funkcia",Integral:"Integrál","N-ary summation":"Znak cyklického sÄÃtania",Infinity:"NekoneÄno","Square root":"Odmocnina","Tilde operator":"Vlnovka","Approximately equal to":"Aproximácia","Almost equal to":"ÄŒiastoÄne rovný","Not equal to":"Nerovná sa","Identical to":"Identický k","Element of":"Patrà / Je súÄasÅ¥ou","Not an element of":"Nepatrà / Nie je súÄasÅ¥ou","Contains as member":"Obsahuje prvok","N-ary product":"Znak cyklického násobenia","Logical and":"Logický AND","Logical or":"Logický OR","Not sign":"Nie je rovný",Intersection:"PrieseÄnÃk / Prienik",Union:"Zjednotenie","Partial differential":"Parciálna diferencia","For all":"Pre vÅ¡etky prvky v množine","There exists":"Existuje v množine","Empty set":"Prázdna množina",Nabla:"Nabla","Asterisk operator":"HviezdiÄka / násobenie","Proportional to":"Úmerný k",Angle:"Uhol","Vulgar fraction one quarter":"Jedna Å¡tvrtina","Vulgar fraction one half":"Polovica","Vulgar fraction three quarters":"Tri Å¡tvrtiny","Single left-pointing angle quotation mark":"Å Ãpka ukazujúca doľava","Single right-pointing angle quotation mark":"Å Ãpka ukazujúca doprava","Left-pointing double angle quotation mark":"Dvojitá Å¡Ãpka ukazujúca doľava","Right-pointing double angle quotation mark":"Dvojitá Å¡Ãpka ukazujúca doprava","Left single quotation mark":"Ľavá uvodzovka","Right single quotation mark":"Pravá uvodzovka","Left double quotation mark":"Ľavá dvojitá uvodzovka","Right double quotation mark":"Pravá dvojitá uvodzovka","Single low-9 quotation mark":"Spodná uvodzovka","Double low-9 quotation mark":"Dvojitá spodná uvodzovka","Inverted exclamation mark":"Obrátený výkriÄnÃk","Inverted question mark":"Obrátený otáznik","Two dot leader":"Horizontálna dvojbodka","Horizontal ellipsis":"Trojbodka","Double dagger":"DvojkrÞ","Per mille sign":"Promile","Per ten thousand sign":"Na desaÅ¥tisÃc","Double exclamation mark":"Dvojitý výkriÄnÃk","Question exclamation mark":"Otáznik a výkriÄnÃk","Exclamation question mark":"VýkriÄnÃk a otáznik","Double question mark":"Dvojitý otáznik","Copyright sign":"Copyright","Registered sign":"Registrovaný","Trade mark sign":"Ochranná známka","Section sign":"Sekcia","Paragraph sign":"Odsek","Reversed paragraph sign":"Obrátený znak odseku","Character categories":"Kategórie znakov",Styles:"Å týly","Multiple styles":"Viacero Å¡týlov","Block styles":"Å týly bloku","Text styles":"Å týly textu","Insert table":"VložiÅ¥ tabuľku","Header column":"Stĺpec hlaviÄky","Insert column left":"VložiÅ¥ stĺpec vľavo","Insert column right":"VložiÅ¥ stĺpec vpravo","Delete column":"OdstrániÅ¥ stĺpec","Select column":"VybraÅ¥ stĺpec",Column:"Stĺpec","Header row":"Riadok hlaviÄky","Insert row below":"VložiÅ¥ riadok pod","Insert row above":"VložiÅ¥ riadok nad","Delete row":"OdstrániÅ¥ riadok","Select row":"VybraÅ¥ riadok",Row:"Riadok","Merge cell up":"ZlúÄiÅ¥ bunku hore","Merge cell right":"ZlúÄiÅ¥ bunku vpravo","Merge cell down":"ZlúÄiÅ¥ bunku dole","Merge cell left":"ZlúÄiÅ¥ bunku vľavo","Split cell vertically":"RozdeliÅ¥ bunku zvislo","Split cell horizontally":"RozdeliÅ¥ bunku vodorovne","Merge cells":"ZlúÄiÅ¥ bunky","Table toolbar":"Panel nástrojov tabuľky","Table properties":"Vlastnosti tabuľky","Cell properties":"Vlastnosti bunky",Border:"Orámovanie",Style:"Å týl",Width:"Å Ãrka",Height:"Výška",Color:"Farba",Background:"Pozadie",Padding:"Vnútorný okraj",Dimensions:"Rozmery","Table cell text alignment":"Zarovnanie textu v bunke",Alignment:"Zarovnanie","Horizontal text alignment toolbar":"Horizontálne zarovnanie textu v panely","Vertical text alignment toolbar":"Vertikálne zarovnanie textu v panely","Table alignment toolbar":"Panel zarovnania tabuľky",None:"Žiadna",Solid:"Plná",Dotted:"Bodkovaná",Dashed:"ÄŒiarkovaná",Double:"Dvojitá",Groove:"Drážkovaná",Ridge:"Rámovaná",Inset:"Vložená z vnútra",Outset:"Vložená zvonku","Align cell text to the left":"ZarovnaÅ¥ text bunky doľava","Align cell text to the center":"ZarovnaÅ¥ text bunky na stred","Align cell text to the right":"ZarovnaÅ¥ text bunky doprava","Justify cell text":"ZarovnaÅ¥ text bunky z oboch strán","Align cell text to the top":"ZarovnaÅ¥ text bunky nahor","Align cell text to the middle":"ZarovnaÅ¥ text bunky na stred","Align cell text to the bottom":"ZarovnaÅ¥ text bunky nadol","Align table to the left":"ZarovnaÅ¥ tabuľku doľava","Center table":"CentrovaÅ¥ tabuľku","Align table to the right":"ZarovnaÅ¥ tabuľku doprava","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Farba má nesprávny formát. Skúste \"#FF0000\", \"rgb(255,0,0)\" alebo \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Hodnota je nesprávna. Skúste \"10px\", \"2em\" alebo jednoducho \"2\".","Color picker":"VybraÅ¥ farbu","Toggle caption off":"Vypnúť titulok","Toggle caption on":"Zapnúť titulok","Enter table caption":"Zadajte popis tabuľky","Rich Text Editor":"Editor s formátovanÃm","Editor editing area: %0":"OblasÅ¥ úprav editora: %0","Edit block":"UpraviÅ¥ odsek","Click to edit block":"Úprava bloku kliknutÃm","Drag to move":"PotiahnuÅ¥ a presunúť",Next:"ÄŽalÅ¡ie",Previous:"Predchádzajúce","Editor toolbar":"Panel nástrojov editora","Dropdown toolbar":"Panel nástrojov roletového menu",Black:"ÄŒierna","Dim grey":"Tmavosivá",Grey:"Sivá","Light grey":"Bledosivá",White:"Biela",Red:"ÄŒervená",Orange:"Oranžová",Yellow:"Žltá","Light green":"Bledozelená",Green:"Zelená",Aquamarine:"AkvamarÃnová",Turquoise:"Tyrkysová","Light blue":"Bledomodrá",Blue:"Modrá",Purple:"Fialová","Editor block content toolbar":"Panel s nástrojmi obsahu bloku editora","Editor contextual toolbar":"Kontextový panel nástrojov editora",HEX:"HEX",Accept:"PotvrdiÅ¥","No results found":"Neboli nájdené žiadne výsledky","No searchable items":"Žiadne vyhľadávateľné položky","Editor dialog":"Dialóg editora",Close:"ZatvoriÅ¥",Undo:"Späť",Redo:"Znova","Upload in progress":"Prebieha nahrávanie","Widget toolbar":"Panel nástrojov ovládacieho prvku","Insert paragraph before block":"VložiÅ¥ odstavec pred blok","Insert paragraph after block":"VložiÅ¥ odstavec za blok","Press Enter to type after or press Shift + Enter to type before the widget":"StlaÄte Enter, ak chcete pÃsaÅ¥ po miniaplikácii, alebo stlaÄte Shift + Enter, ak chcete pÃsaÅ¥ pred miniaplikáciou","Words: %0":"Slov: %0","Characters: %0":"Znakov: %0"} );l.getPluralForm=function(n){return (n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sk'] = d['sk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"ZarovnaÅ¥ vľavo","Align right":"ZarovnaÅ¥ vpravo","Align center":"ZarovnaÅ¥ na stred",Justify:"Do bloku","Text alignment":"Zarovnanie textu","Text alignment toolbar":"Panel nástrojov zarovnania textu",Bold:"TuÄné",Italic:"KurzÃva",Underline:"PodÄiarknuté",Code:"Kód",Strikethrough:"PreÅ¡krtnuté",Subscript:"Dolný index",Superscript:"Horný index","Block quote":"Citát","Insert code block":"Vložte blok kódu","Plain text":"ÄŒistý text",Cancel:"ZruÅ¡iÅ¥",Clear:"VyÄistiÅ¥","Remove color":"ZruÅ¡iÅ¥ farbu","Restore default":"ObnoviÅ¥ predvolené",Save:"UložiÅ¥","Show more items":"ZobraziÅ¥ viac položiek","%0 of %1":"%0 z %1","Cannot upload file:":"Nie je možné nahraÅ¥ súbor:","Rich Text Editor. Editing area: %0":"Rich Text Editor. OblasÅ¥ úprav: %0","Insert with file manager":"VložiÅ¥ pomocou správcu súborov","Replace with file manager":"NahradiÅ¥ správcom súborov","Insert image with file manager":"VložiÅ¥ obrázok pomocou správcu súborov","Replace image with file manager":"NahradiÅ¥ obrázok pomocou správcu súborov","Find and replace":"VyhľadaÅ¥ a nahradiÅ¥","Find in text…":"VyhľadaÅ¥ v texte...",Find:"VyhľadaÅ¥","Previous result":"Predchádzajúci výsledok","Next result":"Nasledujúci výsledok",Replace:"NahradiÅ¥","Replace all":"NahradiÅ¥ vÅ¡etko","Match case":"Presná zhoda","Whole words only":"Iba celé slová","Replace with…":"NahradiÅ¥ za...","Text to find must not be empty.":"Text vyhľadávania nemôže byÅ¥ prázdny.","Tip: Find some text first in order to replace it.":"Tip: Najskôr vyhľadajte text, ktorý následne môžete nahradiÅ¥.","Advanced options":"PokroÄilé nastavenia","Font Size":"VeľkosÅ¥ pÃsma",Tiny:"Veľmi malé",Small:"Malé",Big:"Veľké",Huge:"Veľmi veľké","Font Family":"Názov pÃsma",Default:"Predvolené","Font Color":"Farba pÃsma","Font Background Color":"Farba zvýraznenia textu","Document colors":"Farby dokumentu",Paragraph:"Odsek",Heading:"Nadpis","Choose heading":"Vyberte nadpis","Heading 1":"Nadpis 1","Heading 2":"Nadpis 2","Heading 3":"Nadpis 3","Heading 4":"Nadpis 4","Heading 5":"Nadpis 5","Heading 6":"Nadpis 6","Type your title":"Vložte nadpis","Type or paste your content here.":"Vložte obsah","Horizontal line":"Vodorovná Äiara","HTML object":"HTML objekt","Increase indent":"ZväÄÅ¡iÅ¥ odsadenie","Decrease indent":"ZmenÅ¡iÅ¥ odsadenie",Unlink:"ZruÅ¡iÅ¥ odkaz",Link:"Odkaz","Link URL":"URL adresa","Link image":"Adresa obrázku","Edit link":"UpraviÅ¥ odkaz","Open link in new tab":"OtvoriÅ¥ odkaz v novom okne","This link has no URL":"Tento odkaz nemá nastavenú URL adresu","Open in a new tab":"OtvoriÅ¥ v novej záložke",Downloadable:"Na stiahnutie","Numbered List":"ÄŒÃslovaný zoznam","Bulleted List":"Zoznam s odrážkami","To-do List":"To-do zoznam","Bulleted list styles toolbar":"Panel zoznamu s odrážkami","Numbered list styles toolbar":"Panel so Å¡týlmi ÄÃslovaného zoznamu","Toggle the disc list style":"Prepnúť na zoznam s oznaÄenÃm plného kruhu","Toggle the circle list style":"Prepnúť na zoznam s kruhovým oznaÄenÃm","Toggle the square list style":"Prepnúť na zoznam so Å¡tvorcovým oznaÄenÃm","Toggle the decimal list style":"Prepnúť na ÄÃselný zoznam","Toggle the decimal with leading zero list style":"Prepnúť na ÄÃselný zoznam s nulou na zaÄiatku","Toggle the lower–roman list style":"Prepnúť na zoznam s malými rÃmskymi ÄÃslami","Toggle the upper–roman list style":"Prepnúť na zoznam s veľkými rÃmskymi ÄÃslami","Toggle the lower–latin list style":"Prepnúť na zoznam s malými pÃsmenami","Toggle the upper–latin list style":"Prepnúť na zoznam s veľkými pÃsmenami",Disc:"Plný kruh",Circle:"Kruh",Square:"Å tvorec",Decimal:"ÄŒÃsla","Decimal with leading zero":"ÄŒÃsla s nulou na zaÄiatku","Lower–roman":"Malé rÃmske ÄÃsla","Upper-roman":"Veľké rÃmske ÄÃsla","Lower-latin":"Malé pÃsmená","Upper-latin":"Veľké pÃsmená","List properties":"Vlastnosti zoznamu","Start at":"Prvá položka","Start index must be greater than 0.":"Prvá položka musà maÅ¥ index väÄÅ¡Ã ako 0.","Reversed order":"Obrátene poradie","Remove Format":"VyÄistiÅ¥ formátovanie","Select all":"OznaÄiÅ¥ vÅ¡etko","Show blocks":"ZobraziÅ¥ bloky",Source:"Zdroj","Special characters":"Å peciálne znaky",All:"VÅ¡etko",Arrows:"Å Ãpky",Currency:"Mena",Latin:"Latinský",Mathematical:"Matematický",Text:"Text","leftwards simple arrow":"jednoduchá Å¡Ãpka doľava","rightwards simple arrow":"jednoduchá Å¡Ãpka doprava","upwards simple arrow":"jednoduchá Å¡Ãpka nahor","downwards simple arrow":"jednoduchá Å¡Ãpka nadol","leftwards double arrow":"dvojitá Å¡Ãpka doľava","rightwards double arrow":"dvojitá Å¡Ãpka doprava","upwards double arrow":"dvojitá Å¡Ãpka nahor","downwards double arrow":"dvojitá Å¡Ãpka nadol","leftwards dashed arrow":"preruÅ¡ovaná Å¡Ãpka doľava","rightwards dashed arrow":"Äiarkovaná Å¡Ãpka doprava","upwards dashed arrow":"Äiarkovaná Å¡Ãpka nahor","downwards dashed arrow":"preruÅ¡ovaná Å¡Ãpka nadol","leftwards arrow to bar":"Å¡Ãpka doľava do zvislej Äiary","rightwards arrow to bar":"Å¡Ãpka doprava do zvislej Äiary","upwards arrow to bar":"Å¡Ãpka nahor do zvislej Äiary","downwards arrow to bar":"Å¡Ãpka nadol do zvislej Äiary","up down arrow with base":"Å Ãpka hore-dole od základne","back with leftwards arrow above":"Å Ãpka späť","end with leftwards arrow above":"Å Ãpka koniec","on with exclamation mark with left right arrow above":"ON s výkriÄnÃkom so Å¡Ãpkou doľava doprava hore","soon with rightwards arrow above":"Äoskoro so Å¡Ãpkou doprava hore","top with upwards arrow above":"TOP so Å¡Ãpkou hore","Dollar sign":"Znak Dolár","Euro sign":"Znak Euro","Yen sign":"Znak Jen","Pound sign":"Znak Libra","Cent sign":"Znak cent","Euro-currency sign":"Mena Euro","Colon sign":"Dvojbodka","Cruzeiro sign":"Mena Cruzeiro","French franc sign":"Mena Francúzsky Frank","Lira sign":"Mena LÃra","Currency sign":"Znak meny","Bitcoin sign":"Mena Bitcoin","Mill sign":"Znak Mill","Naira sign":"Znak Naira","Peseta sign":"Znak Peseta","Rupee sign":"Znak Rupee","Won sign":"Znak Won","New sheqel sign":"Nový znak Å¡ekelu","Dong sign":"Znak Dong","Kip sign":"Znak Kip","Tugrik sign":"Znak Tugrik","Drachma sign":"Znak Drachma","German penny sign":"Nemecká penny","Peso sign":"Znak Peso","Guarani sign":"Znak Guarani","Austral sign":"Znak Austral","Hryvnia sign":"Znak Hryvnia","Cedi sign":"Znak Cedi","Livre tournois sign":"Znak Livre tournois","Spesmilo sign":"Znak Spesmilo","Tenge sign":"Znak Tenge","Indian rupee sign":"Znak Indická rupia","Turkish lira sign":"Znak Turecká lÃra","Nordic mark sign":"Znak Nórska marka","Manat sign":"Znak Manat","Ruble sign":"Znak Ruble","Latin capital letter a with macron":"Latinské veľké pÃsmeno a s Äiarou","Latin small letter a with macron":"Latinské malé pÃsmeno a s Äiarou","Latin capital letter a with breve":"Latinské veľké pÃsmeno a s mäkÄeňom","Latin small letter a with breve":"Latinské malé pÃsmeno a s mäkÄeňom","Latin capital letter a with ogonek":"Latinské veľké pÃsmeno a s háÄikom","Latin small letter a with ogonek":"Latinské malé pÃsmeno a s háÄikom","Latin capital letter c with acute":"Latinské veľké pÃsmeno c s dĺžňom","Latin small letter c with acute":"Latinské malé pÃsmeno c s dĺžňom","Latin capital letter c with circumflex":"Latinské veľké pÃsmeno c s obráteným mäkÄeňom","Latin small letter c with circumflex":"Latinské malé pÃsmeno c s obráteným mäkÄeňom","Latin capital letter c with dot above":"Latinské veľké pÃsmeno c s bodkou nad znakom","Latin small letter c with dot above":"Latinské malé pÃsmeno c s bodkou nad znakom","Latin capital letter c with caron":"Latinské veľké pÃsmeno c s mäkÄeňom","Latin small letter c with caron":"Latinské malé pÃsmeno c s mäkÄeňom","Latin capital letter d with caron":"Latinské veľké pÃsmeno d s mäkÄeňom","Latin small letter d with caron":"Latinské malé pÃsmeno d s mäkÄeňom","Latin capital letter d with stroke":"Latinské veľké pÃsmeno d s preÄiarknutÃm","Latin small letter d with stroke":"Latinské malé pÃsmeno d s preÄiarknutÃm","Latin capital letter e with macron":"Latinské veľké pÃsmeno e s Äiarou","Latin small letter e with macron":"Latinské malé pÃsmeno e s Äiarou","Latin capital letter e with breve":"Latinské veľké pÃsmeno e s mäkÄeňom","Latin small letter e with breve":"Latinské malé pÃsmeno e s mäkÄeňom","Latin capital letter e with dot above":"Latinské veľké pÃsmeno e s bodkou nad znakom","Latin small letter e with dot above":"Latinské malé pÃsmeno e s bodkou nad znakom","Latin capital letter e with ogonek":"Latinské veľké pÃsmeno e s háÄikom","Latin small letter e with ogonek":"Latinské malé pÃsmeno e s háÄikom","Latin capital letter e with caron":"Latinské veľké pÃsmeno e s mäkÄeňom","Latin small letter e with caron":"Latinské malé pÃsmeno e s mäkÄeňom","Latin capital letter g with circumflex":"Latinské veľké pÃsmeno g s obráteným mäkÄeňom","Latin small letter g with circumflex":"Latinské malé pÃsmeno g s obráteným mäkÄeňom","Latin capital letter g with breve":"Latinské veľké pÃsmeno g s mäkÄeňom","Latin small letter g with breve":"Latinské malé pÃsmeno g s mäkÄeňom","Latin capital letter g with dot above":"Latinské veľké pÃsmeno g s bodkou nad znakom","Latin small letter g with dot above":"Latinské malé pÃsmeno g s bodkou nad znakom","Latin capital letter g with cedilla":"Latinské veľké pÃsmeno g s háÄikom","Latin small letter g with cedilla":"Latinské malé pÃsmeno g s háÄikom","Latin capital letter h with circumflex":"Latinské veľké pÃsmeno h s obráteným mäkÄeňom","Latin small letter h with circumflex":"Latinské malé pÃsmeno h s obráteným mäkÄeňom","Latin capital letter h with stroke":"Latinské veľké pÃsmeno h s preÄiarknutÃm","Latin small letter h with stroke":"Latinské malé pÃsmeno h s preÄiarknutÃm","Latin capital letter i with tilde":"Latinské veľké pÃsmeno i s vlnovkou","Latin small letter i with tilde":"Latinské malé pÃsmeno i s vlnovkou","Latin capital letter i with macron":"Latinské veľké pÃsmeno i s Äiarou","Latin small letter i with macron":"Latinské malé pÃsmeno i s Äiarou","Latin capital letter i with breve":"Latinské veľké pÃsmeno i s mäkÄeňom","Latin small letter i with breve":"Latinské malé pÃsmeno i s mäkÄeňom","Latin capital letter i with ogonek":"Latinské veľké pÃsmeno i s háÄikom","Latin small letter i with ogonek":"Latinské malé pÃsmeno i s háÄikom","Latin capital letter i with dot above":"Latinské veľké pÃsmeno i s bodkou nad znakom","Latin small letter dotless i":"Latinské malé pÃsmeno i bez bodky","Latin capital ligature ij":"Latinský veľký znak ligatúry ij","Latin small ligature ij":"Latinský malý znak ligatúry ij","Latin capital letter j with circumflex":"Latinské veľké pÃsmeno j s obráteným mäkÄeňom","Latin small letter j with circumflex":"Latinské malé pÃsmeno j s obráteným mäkÄeňom","Latin capital letter k with cedilla":"Latinské veľké pÃsmeno k s háÄikom","Latin small letter k with cedilla":"Latinské malé pÃsmeno k s háÄikom","Latin small letter kra":"latinský malý znak Kra","Latin capital letter l with acute":"Latinské veľké pÃsmeno l s dĺžňom","Latin small letter l with acute":"Latinské malé pÃsmeno l s dĺžňom","Latin capital letter l with cedilla":"Latinské veľké pÃsmeno l s háÄikom","Latin small letter l with cedilla":"Latinské malé pÃsmeno l s háÄikom","Latin capital letter l with caron":"Latinské veľké pÃsmeno l s mäkÄeňom","Latin small letter l with caron":"Latinské malé pÃsmeno l s mäkÄeňom","Latin capital letter l with middle dot":"Latinské veľké pÃsmeno l s bodkou uprostred","Latin small letter l with middle dot":"Latinské malé pÃsmeno l s bodkou uprostred","Latin capital letter l with stroke":"Latinské veľké pÃsmeno l s preÄiarknutÃm","Latin small letter l with stroke":"Latinské malé pÃsmeno l s preÄiarknutÃm","Latin capital letter n with acute":"Latinské veľké pÃsmeno n s dĺžňom","Latin small letter n with acute":"Latinské malé pÃsmeno n s dĺžňom","Latin capital letter n with cedilla":"Latinské veľké pÃsmeno n s háÄikom","Latin small letter n with cedilla":"Latinské malé pÃsmeno n s háÄikom","Latin capital letter n with caron":"Latinské veľké pÃsmeno n s mäkÄeňom","Latin small letter n with caron":"Latinské malé pÃsmeno n s mäkÄeňom","Latin small letter n preceded by apostrophe":"Latinské malé pÃsmeno n s apostrofom","Latin capital letter eng":"Latinské veľké pÃsmeno Eng","Latin small letter eng":"Latinské malé pÃsmeno Eng","Latin capital letter o with macron":"Latinské veľké pÃsmeno o s Äiarou","Latin small letter o with macron":"Latinské malé pÃsmeno o s Äiarou","Latin capital letter o with breve":"Latinské veľké pÃsmeno o s mäkÄeňom","Latin small letter o with breve":"Latinské malé pÃsmeno o s mäkÄeňom","Latin capital letter o with double acute":"Latinské veľké pÃsmeno o s dĺžňom","Latin small letter o with double acute":"Latinské malé pÃsmeno o s dĺžňom","Latin capital ligature oe":"Latinský veľký znak ligatúry oe","Latin small ligature oe":"Latinský malý znak ligatúry oe","Latin capital letter r with acute":"Latinské veľké pÃsmeno r s dĺžňom","Latin small letter r with acute":"Latinské malé pÃsmeno r s dĺžňom","Latin capital letter r with cedilla":"Latinské veľké pÃsmeno r s háÄikom","Latin small letter r with cedilla":"Latinské malé pÃsmeno r s háÄikom","Latin capital letter r with caron":"Latinské veľké pÃsmeno r s mäkÄeňom","Latin small letter r with caron":"Latinské malé pÃsmeno r s mäkÄeňom","Latin capital letter s with acute":"Latinské veľké pÃsmeno s s dĺžňom","Latin small letter s with acute":"Latinské malé pÃsmeno s s dĺžňom","Latin capital letter s with circumflex":"Latinské veľké pÃsmeno s s obráteným mäkÄeňom","Latin small letter s with circumflex":"Latinské malé pÃsmeno s s obráteným mäkÄeňom","Latin capital letter s with cedilla":"Latinské veľké pÃsmeno s s háÄikom","Latin small letter s with cedilla":"Latinské malé pÃsmeno s s háÄikom","Latin capital letter s with caron":"Latinské veľké pÃsmeno s s mäkÄeňom","Latin small letter s with caron":"Latinské malé pÃsmeno s s mäkÄeňom","Latin capital letter t with cedilla":"Latinské veľké pÃsmeno t s háÄikom","Latin small letter t with cedilla":"Latinské malé pÃsmeno t s háÄikom","Latin capital letter t with caron":"Latinské veľké pÃsmeno t s mäkÄeňom","Latin small letter t with caron":"Latinské malé pÃsmeno t s mäkÄeňom","Latin capital letter t with stroke":"Latinské veľké pÃsmeno t s preÄiarknutÃm","Latin small letter t with stroke":"Latinské malé pÃsmeno t s preÄiarknutÃm","Latin capital letter u with tilde":"Latinské veľké pÃsmeno u s vlnovkou","Latin small letter u with tilde":"Latinské malé pÃsmeno u s vlnovkou","Latin capital letter u with macron":"Latinské veľké pÃsmeno u s Äiarou","Latin small letter u with macron":"Latinské malé pÃsmeno o s Äiarou","Latin capital letter u with breve":"Latinské veľké pÃsmeno u s mäkÄeňom","Latin small letter u with breve":"Latinské malé pÃsmeno u s mäkÄeňom","Latin capital letter u with ring above":"Latinské veľké pÃsmeno u s krúžkom nad znakom","Latin small letter u with ring above":"Latinské malé pÃsmeno u s krúžkom nad znakom","Latin capital letter u with double acute":"Latinské veľké pÃsmeno u s dvojitým dĺžňom","Latin small letter u with double acute":"Latinské malé pÃsmeno u s dvojitým dĺžňom","Latin capital letter u with ogonek":"Latinské veľké pÃsmeno u s háÄikom","Latin small letter u with ogonek":"Latinské malé pÃsmeno u s háÄikom","Latin capital letter w with circumflex":"Latinské veľké pÃsmeno w s obráteným mäkÄeňom","Latin small letter w with circumflex":"Latinské malé pÃsmeno w s obráteným mäkÄeňom","Latin capital letter y with circumflex":"Latinské veľké pÃsmeno y s obráteným mäkÄeňom","Latin small letter y with circumflex":"Latinské malé pÃsmeno y s obráteným mäkÄeňom","Latin capital letter y with diaeresis":"Latinské veľké pÃsmeno y s dvojbodkou nad znakom","Latin capital letter z with acute":"Latinské veľké pÃsmeno z s dĺžňom","Latin small letter z with acute":"Latinské malé pÃsmeno z s dĺžňom","Latin capital letter z with dot above":"Latinské veľké pÃsmeno z s bodkou nad znakom","Latin small letter z with dot above":"Latinské malé pÃsmeno z s bodkou nad znakom","Latin capital letter z with caron":"Latinské veľké pÃsmeno z s mäkÄeňom","Latin small letter z with caron":"Malé pÃsmeno s z mäkÄeňom","Latin small letter long s":"Malé dlhé pÃsmeno s","Less-than sign":"MenÅ¡Ã ako","Greater-than sign":"VäÄÅ¡Ã ako","Less-than or equal to":"MenÅ¡Ã alebo rovný","Greater-than or equal to":"VäÄÅ¡Ã alebo rovný","En dash":"PomĺÄka","Em dash":"Dlhá pomĺÄka",Macron:"Horná Äiara",Overline:"PreÅ¡krtnutie","Degree sign":"Znak stupeň","Minus sign":"Znak mÃnus","Plus-minus sign":"Znak plus-mÃnus","Division sign":"Delenie","Fraction slash":"LomÃtko / Delenie","Multiplication sign":"Násobenie","Latin small letter f with hook":"Funkcia",Integral:"Integrál","N-ary summation":"Znak cyklického sÄÃtania",Infinity:"NekoneÄno","Square root":"Odmocnina","Tilde operator":"Vlnovka","Approximately equal to":"Aproximácia","Almost equal to":"ÄŒiastoÄne rovný","Not equal to":"Nerovná sa","Identical to":"Identický k","Element of":"Patrà / Je súÄasÅ¥ou","Not an element of":"Nepatrà / Nie je súÄasÅ¥ou","Contains as member":"Obsahuje prvok","N-ary product":"Znak cyklického násobenia","Logical and":"Logický AND","Logical or":"Logický OR","Not sign":"Nie je rovný",Intersection:"PrieseÄnÃk / Prienik",Union:"Zjednotenie","Partial differential":"Parciálna diferencia","For all":"Pre vÅ¡etky prvky v množine","There exists":"Existuje v množine","Empty set":"Prázdna množina",Nabla:"Nabla","Asterisk operator":"HviezdiÄka / násobenie","Proportional to":"Úmerný k",Angle:"Uhol","Vulgar fraction one quarter":"Jedna Å¡tvrtina","Vulgar fraction one half":"Polovica","Vulgar fraction three quarters":"Tri Å¡tvrtiny","Single left-pointing angle quotation mark":"Å Ãpka ukazujúca doľava","Single right-pointing angle quotation mark":"Å Ãpka ukazujúca doprava","Left-pointing double angle quotation mark":"Dvojitá Å¡Ãpka ukazujúca doľava","Right-pointing double angle quotation mark":"Dvojitá Å¡Ãpka ukazujúca doprava","Left single quotation mark":"Ľavá uvodzovka","Right single quotation mark":"Pravá uvodzovka","Left double quotation mark":"Ľavá dvojitá uvodzovka","Right double quotation mark":"Pravá dvojitá uvodzovka","Single low-9 quotation mark":"Spodná uvodzovka","Double low-9 quotation mark":"Dvojitá spodná uvodzovka","Inverted exclamation mark":"Obrátený výkriÄnÃk","Inverted question mark":"Obrátený otáznik","Two dot leader":"Horizontálna dvojbodka","Horizontal ellipsis":"Trojbodka","Double dagger":"DvojkrÞ","Per mille sign":"Promile","Per ten thousand sign":"Na desaÅ¥tisÃc","Double exclamation mark":"Dvojitý výkriÄnÃk","Question exclamation mark":"Otáznik a výkriÄnÃk","Exclamation question mark":"VýkriÄnÃk a otáznik","Double question mark":"Dvojitý otáznik","Copyright sign":"Copyright","Registered sign":"Registrovaný","Trade mark sign":"Ochranná známka","Section sign":"Sekcia","Paragraph sign":"Odsek","Reversed paragraph sign":"Obrátený znak odseku","Character categories":"Kategórie znakov",Styles:"Å týly","Multiple styles":"Viacero Å¡týlov","Block styles":"Å týly bloku","Text styles":"Å týly textu","Insert table":"VložiÅ¥ tabuľku","Header column":"Stĺpec hlaviÄky","Insert column left":"VložiÅ¥ stĺpec vľavo","Insert column right":"VložiÅ¥ stĺpec vpravo","Delete column":"OdstrániÅ¥ stĺpec","Select column":"VybraÅ¥ stĺpec",Column:"Stĺpec","Header row":"Riadok hlaviÄky","Insert row below":"VložiÅ¥ riadok pod","Insert row above":"VložiÅ¥ riadok nad","Delete row":"OdstrániÅ¥ riadok","Select row":"VybraÅ¥ riadok",Row:"Riadok","Merge cell up":"ZlúÄiÅ¥ bunku hore","Merge cell right":"ZlúÄiÅ¥ bunku vpravo","Merge cell down":"ZlúÄiÅ¥ bunku dole","Merge cell left":"ZlúÄiÅ¥ bunku vľavo","Split cell vertically":"RozdeliÅ¥ bunku zvislo","Split cell horizontally":"RozdeliÅ¥ bunku vodorovne","Merge cells":"ZlúÄiÅ¥ bunky","Table toolbar":"Panel nástrojov tabuľky","Table properties":"Vlastnosti tabuľky","Cell properties":"Vlastnosti bunky",Border:"Orámovanie",Style:"Å týl",Width:"Å Ãrka",Height:"Výška",Color:"Farba",Background:"Pozadie",Padding:"Vnútorný okraj",Dimensions:"Rozmery","Table cell text alignment":"Zarovnanie textu v bunke",Alignment:"Zarovnanie","Horizontal text alignment toolbar":"Horizontálne zarovnanie textu v panely","Vertical text alignment toolbar":"Vertikálne zarovnanie textu v panely","Table alignment toolbar":"Panel zarovnania tabuľky",None:"Žiadna",Solid:"Plná",Dotted:"Bodkovaná",Dashed:"ÄŒiarkovaná",Double:"Dvojitá",Groove:"Drážkovaná",Ridge:"Rámovaná",Inset:"Vložená z vnútra",Outset:"Vložená zvonku","Align cell text to the left":"ZarovnaÅ¥ text bunky doľava","Align cell text to the center":"ZarovnaÅ¥ text bunky na stred","Align cell text to the right":"ZarovnaÅ¥ text bunky doprava","Justify cell text":"ZarovnaÅ¥ text bunky z oboch strán","Align cell text to the top":"ZarovnaÅ¥ text bunky nahor","Align cell text to the middle":"ZarovnaÅ¥ text bunky na stred","Align cell text to the bottom":"ZarovnaÅ¥ text bunky nadol","Align table to the left":"ZarovnaÅ¥ tabuľku doľava","Center table":"CentrovaÅ¥ tabuľku","Align table to the right":"ZarovnaÅ¥ tabuľku doprava","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Farba má nesprávny formát. Skúste \"#FF0000\", \"rgb(255,0,0)\" alebo \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Hodnota je nesprávna. Skúste \"10px\", \"2em\" alebo jednoducho \"2\".","Color picker":"VybraÅ¥ farbu","Toggle caption off":"Vypnúť titulok","Toggle caption on":"Zapnúť titulok","Enter table caption":"Zadajte popis tabuľky","Rich Text Editor":"Editor s formátovanÃm","Editor editing area: %0":"OblasÅ¥ úprav editora: %0","Edit block":"UpraviÅ¥ odsek","Click to edit block":"Úprava bloku kliknutÃm","Drag to move":"PotiahnuÅ¥ a presunúť",Next:"ÄŽalÅ¡ie",Previous:"Predchádzajúce","Editor toolbar":"Panel nástrojov editora","Dropdown toolbar":"Panel nástrojov roletového menu",Black:"ÄŒierna","Dim grey":"Tmavosivá",Grey:"Sivá","Light grey":"Bledosivá",White:"Biela",Red:"ÄŒervená",Orange:"Oranžová",Yellow:"Žltá","Light green":"Bledozelená",Green:"Zelená",Aquamarine:"AkvamarÃnová",Turquoise:"Tyrkysová","Light blue":"Bledomodrá",Blue:"Modrá",Purple:"Fialová","Editor block content toolbar":"Panel s nástrojmi obsahu bloku editora","Editor contextual toolbar":"Kontextový panel nástrojov editora",HEX:"HEX",Accept:"PotvrdiÅ¥","No results found":"Neboli nájdené žiadne výsledky","No searchable items":"Žiadne vyhľadávateľné položky","Editor dialog":"Dialóg editora",Close:"ZatvoriÅ¥",Undo:"Späť",Redo:"Znova","Upload in progress":"Prebieha nahrávanie","Widget toolbar":"Panel nástrojov ovládacieho prvku","Insert paragraph before block":"VložiÅ¥ odstavec pred blok","Insert paragraph after block":"VložiÅ¥ odstavec za blok","Press Enter to type after or press Shift + Enter to type before the widget":"StlaÄte Enter, ak chcete pÃsaÅ¥ po miniaplikácii, alebo stlaÄte Shift + Enter, ak chcete pÃsaÅ¥ pred miniaplikáciou","Words: %0":"Slov: %0","Characters: %0":"Znakov: %0"} );l.getPluralForm=function(n){return (n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sl.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sl.js index ffaf96c0ba135f8aaf6831db6884b120fbcda293..9fdd45bf97cee313e779d2234fb9f7d3a58bde7f 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sl.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sl.js @@ -1 +1 @@ -(function(d){ const l = d['sl'] = d['sl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Poravnava levo","Align right":"Poravnava desno","Align center":"Sredinska poravnava",Justify:"Postavi na sredino","Text alignment":"Poravnava besedila","Text alignment toolbar":"Orodna vrstica besedila",Bold:"Krepko",Italic:"PoÅ¡evno",Underline:"PodÄrtaj",Code:"Koda",Strikethrough:"PreÄrtano",Subscript:"NaroÄnik",Superscript:"Nadpis","Block quote":"Blokiraj citat",Cancel:"PrekliÄi",Clear:"","Remove color":"Odstrani barvo","Restore default":"",Save:"Shrani","Show more items":"","%0 of %1":"","Cannot upload file:":"Ni možno naložiti datoteke:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Odstavek",Heading:"Naslov","Choose heading":"Izberi naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Vnesi naslov","Type or paste your content here.":"Vnesi ali prilepi vsebino","Horizontal line":"Vodoravna Ärta","Insert table":"Vstavi tabelo","Header column":"","Insert column left":"","Insert column right":"","Delete column":"","Select column":"",Column:"","Header row":"","Insert row below":"","Insert row above":"","Delete row":"","Select row":"",Row:"","Merge cell up":"","Merge cell right":"","Merge cell down":"","Merge cell left":"","Split cell vertically":"","Split cell horizontally":"","Merge cells":"","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"ÄŒrna","Dim grey":"Temno siva",Grey:"Siva","Light grey":"Svetlo siva",White:"Bela",Red:"RdeÄa",Orange:"Oranžna",Yellow:"Rumena","Light green":"Svetlo zelena",Green:"Zelena",Aquamarine:"Akvamarin",Turquoise:"Turkizna","Light blue":"Svetlo modra",Blue:"Modra",Purple:"VijoliÄna","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:""} );l.getPluralForm=function(n){return (n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sl'] = d['sl'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Poravnava levo","Align right":"Poravnava desno","Align center":"Sredinska poravnava",Justify:"Postavi na sredino","Text alignment":"Poravnava besedila","Text alignment toolbar":"Orodna vrstica besedila",Bold:"Krepko",Italic:"PoÅ¡evno",Underline:"PodÄrtaj",Code:"Koda",Strikethrough:"PreÄrtano",Subscript:"NaroÄnik",Superscript:"Nadpis","Block quote":"Blokiraj citat",Cancel:"PrekliÄi",Clear:"","Remove color":"Odstrani barvo","Restore default":"",Save:"Shrani","Show more items":"","%0 of %1":"","Cannot upload file:":"Ni možno naložiti datoteke:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Velikost pisave",Tiny:"Drobna",Small:"Majhna",Big:"Veliko",Huge:"Ogromno","Font Family":"Vrsta oz. tip pisave",Default:"Privzeto","Font Color":"Barva pisave","Font Background Color":"Barva ozadja pisave","Document colors":"Barve dokumenta",Paragraph:"Odstavek",Heading:"Naslov","Choose heading":"Izberi naslov","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Vnesi naslov","Type or paste your content here.":"Vnesi ali prilepi vsebino","Horizontal line":"Vodoravna Ärta","Insert table":"Vstavi tabelo","Header column":"","Insert column left":"","Insert column right":"","Delete column":"","Select column":"",Column:"","Header row":"","Insert row below":"","Insert row above":"","Delete row":"","Select row":"",Row:"","Merge cell up":"","Merge cell right":"","Merge cell down":"","Merge cell left":"","Split cell vertically":"","Split cell horizontally":"","Merge cells":"","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"",Next:"",Previous:"","Editor toolbar":"","Dropdown toolbar":"",Black:"ÄŒrna","Dim grey":"Temno siva",Grey:"Siva","Light grey":"Svetlo siva",White:"Bela",Red:"RdeÄa",Orange:"Oranžna",Yellow:"Rumena","Light green":"Svetlo zelena",Green:"Zelena",Aquamarine:"Akvamarin",Turquoise:"Turkizna","Light blue":"Svetlo modra",Blue:"Modra",Purple:"VijoliÄna","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:""} );l.getPluralForm=function(n){return (n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sq.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sq.js index caf3eea70229571161214bcf4c3391d407c2004a..effa9938063b1bb14d58537d70a13431e401dc76 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sq.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sq.js @@ -1 +1 @@ -(function(d){ const l = d['sq'] = d['sq'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Radhit majtas","Align right":"Radhit djathtas","Align center":"Radhit në mes",Justify:"Plotësim","Text alignment":"Radhitja e tekstit","Text alignment toolbar":"Shiriti i rradhitjes së tekstit",Bold:"Trash",Italic:"Pjerrtë",Underline:"Nënvizuar",Code:"Kod",Strikethrough:"Vi në mes",Subscript:"Abonohu",Superscript:"Mbishkrim","Block quote":"Thonjëzat","Insert code block":"Shto bllokun e kodit","Plain text":"Teksti i thjeshtë",Cancel:"Anulo",Clear:"Pastro","Remove color":"Largo ngjyrën","Restore default":"",Save:"Ruaj","Show more items":"","%0 of %1":"","Cannot upload file:":"Nuk mund të ngarkojë skedën:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Paragrafi",Heading:"Nëntitulli","Choose heading":"Përzgjidh nëntitullin","Heading 1":"Nëntitulli 1","Heading 2":"Nëntitulli 2","Heading 3":"Nëntitulli 3","Heading 4":"Titulli 4","Heading 5":"Titulli 5","Heading 6":"Titulli 6","Type your title":"Shkruani titullin tuaj","Type or paste your content here.":"Shkruaj ose kopjo përmbajtjen këtu.","Horizontal line":"Vija horizontale",Unlink:"Largo nyjën",Link:"Shto nyjën","Link URL":"Nyja e URL-së","Link image":"Foto e nyjes","Edit link":"Redakto nyjën","Open link in new tab":"Hap nyjën në faqe të re","This link has no URL":"Kjo nyje nuk ka URL","Open in a new tab":"Hape në një fletë të re",Downloadable:"E shkarkueshme","Numbered List":"Listë me Numra","Bulleted List":"Listë me Pika","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Largo formatimin","Select all":"Përzgjidh të gjitha","Show blocks":"Shfaq blloqet","Special characters":"",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"Simboli i Euros","Yen sign":"Simboli i Yen-it","Pound sign":"Simboli i Funtit","Cent sign":"","Euro-currency sign":"Simboli i euros","Colon sign":"Simboli i ngjyrës","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"Simboli i valutës","Bitcoin sign":"Simboli i Bitcoin-it","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"Simboli i feningut gjerman","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"Simboli i lirës turke","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"Shkronja e madhe latine D me ndarje në mes","Latin small letter d with stroke":"Shkronja e vogël latine d me ndarje në mes","Latin capital letter e with macron":"Shkronja e madhe latine E me vijë horizontale sipër","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"Shkronja e madhe latine H me ndarje në mes","Latin small letter h with stroke":"Shkronja e vogël latine h me ndarje në mes","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"Shkronja e vogël latine k me pjesje poshtë","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"Shkronja e madhe latine L me ndarje në mes","Latin small letter l with stroke":"Shkronja e vogël latine l me ndarje në mes","Latin capital letter n with acute":"Shkronja latine e madhe N me apostrof","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"Shkronja e madhe latine T me ndarje në mes","Latin small letter t with stroke":"Shkronja e vogël latine t me ndarje në mes","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"Shkronja e vogël latine u me drapër poshtë","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"Simboli i më i vogël se","Greater-than sign":"Simboli më e madhe se","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"Simboli minus","Plus-minus sign":"Simboli plus-minus","Division sign":"Shenja e pjesëtimit","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"Rënja katrore","Tilde operator":"","Approximately equal to":"","Almost equal to":"Gati e ngjashme me","Not equal to":"E pabarabartë me","Identical to":"E ngjashme me","Element of":"Elementi i","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"Logjik ose","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"Për të gjitha","There exists":"Ekziston","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"Në përpjesëtim me",Angle:"Engjëlli","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"Simboli i paragrafit","Reversed paragraph sign":"","Character categories":"Kategoritë e karaktereve","Insert table":"Shto tabelë","Header column":"Kolona e kokës","Insert column left":"Shto kolonë majtas","Insert column right":"Shto kolonë djathtas","Delete column":"Gris kolonën","Select column":"",Column:"Kolona","Header row":"Rreshti i kokës","Insert row below":"Shto rresht poshtë","Insert row above":"Shto rresht sipër","Delete row":"Grish rreshtin","Select row":"",Row:"Rreshti","Merge cell up":"Bashko kutizat sipër","Merge cell right":"Bashko kutizat djathtas","Merge cell down":"Bashko kutizat poshtë","Merge cell left":"Bashko kutizat majtas","Split cell vertically":"Ndajë kutizat vertikalisht","Split cell horizontally":"Ndaj kutizat horizontalisht","Merge cells":"Bashko kutizat","Table toolbar":"Kokështrirja e tabelës","Table properties":"Karakteristikat e tabelës","Cell properties":"Karakteristikat e qelisë",Border:"",Style:"Stili",Width:"Gjerësia",Height:"Lartësia",Color:"Ngjyra",Background:"Prapavija",Padding:"",Dimensions:"Dimensionet","Table cell text alignment":"Rradhitja e tekstit të qelisë së tabelës",Alignment:"Radhitja","Horizontal text alignment toolbar":"Kokështrirja e rradhitjes së tekstit horizontalisht","Vertical text alignment toolbar":"Kokështrirja e rradhitjes së tekstit vertikalisht","Table alignment toolbar":"Kokështrirja e radhitjes së tabelës",None:"Asnjë",Solid:"",Dotted:"Me pika",Dashed:"",Double:"Me dy vija",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"Radhit tekstin e qelisë majtas","Align cell text to the center":"Radhite tekstin në mes","Align cell text to the right":"Radhit tekstin e qelisë në të djathtë","Justify cell text":"","Align cell text to the top":"Radhit tekstin e qelisë sipër","Align cell text to the middle":"Radhit tekstin e qelisë në mes","Align cell text to the bottom":"Radhite tesktin e qelisë në fund","Align table to the left":"Radhit tabelën majtas","Center table":"","Align table to the right":"Radhit tabelën në të djathtë","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Kodi është i pavlefshëm. Provo\"#FF0000\" ose \"rgb(255,0,0)\" ose \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Redaktues i Tekstit të Pasur","Editor editing area: %0":"","Edit block":"Redakto bllokun","Click to edit block":"","Drag to move":"",Next:"E radhës",Previous:"Paraprake","Editor toolbar":"Kokështrirja e redaktuesit","Dropdown toolbar":"Zgjero kokështrirjen",Black:"E zezë","Dim grey":"",Grey:"Ngjyrë hiri","Light grey":"",White:"E bardhë",Red:"E kuqe",Orange:"Ngjyrë portokalli",Yellow:"E verdhë","Light green":"",Green:"E gjelbër",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"E kaltër",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Rikthe",Redo:"Ribëj","Upload in progress":"Duke ngarkuar","Widget toolbar":"Kokështrirja e shtesës","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Fjalë: %0","Characters: %0":"Karaktere: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sq'] = d['sq'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Radhit majtas","Align right":"Radhit djathtas","Align center":"Radhit në mes",Justify:"Plotësim","Text alignment":"Radhitja e tekstit","Text alignment toolbar":"Shiriti i rradhitjes së tekstit",Bold:"Trash",Italic:"Pjerrtë",Underline:"Nënvizuar",Code:"Kod",Strikethrough:"Vi në mes",Subscript:"Abonohu",Superscript:"Mbishkrim","Block quote":"Thonjëzat","Insert code block":"Shto bllokun e kodit","Plain text":"Teksti i thjeshtë",Cancel:"Anulo",Clear:"Pastro","Remove color":"Largo ngjyrën","Restore default":"",Save:"Ruaj","Show more items":"","%0 of %1":"","Cannot upload file:":"Nuk mund të ngarkojë skedën:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Madhësia tekstit",Tiny:"I vocërr",Small:"I vogël",Big:"I madh",Huge:"I stërmadh","Font Family":"Familja e fontit",Default:"Parazgjedhur","Font Color":"Ngjyra e tekstit","Font Background Color":"Ngjyra e tekstit të prapavijës","Document colors":"Ngjyra e dokumentit",Paragraph:"Paragrafi",Heading:"Nëntitulli","Choose heading":"Përzgjidh nëntitullin","Heading 1":"Nëntitulli 1","Heading 2":"Nëntitulli 2","Heading 3":"Nëntitulli 3","Heading 4":"Titulli 4","Heading 5":"Titulli 5","Heading 6":"Titulli 6","Type your title":"Shkruani titullin tuaj","Type or paste your content here.":"Shkruaj ose kopjo përmbajtjen këtu.","Horizontal line":"Vija horizontale",Unlink:"Largo nyjën",Link:"Shto nyjën","Link URL":"Nyja e URL-së","Link image":"Foto e nyjes","Edit link":"Redakto nyjën","Open link in new tab":"Hap nyjën në faqe të re","This link has no URL":"Kjo nyje nuk ka URL","Open in a new tab":"Hape në një fletë të re",Downloadable:"E shkarkueshme","Numbered List":"Listë me Numra","Bulleted List":"Listë me Pika","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Largo formatimin","Select all":"Përzgjidh të gjitha","Show blocks":"Shfaq blloqet","Special characters":"",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"Simboli i Euros","Yen sign":"Simboli i Yen-it","Pound sign":"Simboli i Funtit","Cent sign":"","Euro-currency sign":"Simboli i euros","Colon sign":"Simboli i ngjyrës","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"Simboli i valutës","Bitcoin sign":"Simboli i Bitcoin-it","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"Simboli i feningut gjerman","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"Simboli i lirës turke","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"Shkronja e madhe latine D me ndarje në mes","Latin small letter d with stroke":"Shkronja e vogël latine d me ndarje në mes","Latin capital letter e with macron":"Shkronja e madhe latine E me vijë horizontale sipër","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"Shkronja e madhe latine H me ndarje në mes","Latin small letter h with stroke":"Shkronja e vogël latine h me ndarje në mes","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"Shkronja e vogël latine k me pjesje poshtë","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"Shkronja e madhe latine L me ndarje në mes","Latin small letter l with stroke":"Shkronja e vogël latine l me ndarje në mes","Latin capital letter n with acute":"Shkronja latine e madhe N me apostrof","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"Shkronja e madhe latine T me ndarje në mes","Latin small letter t with stroke":"Shkronja e vogël latine t me ndarje në mes","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"Shkronja e vogël latine u me drapër poshtë","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"Simboli i më i vogël se","Greater-than sign":"Simboli më e madhe se","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"Simboli minus","Plus-minus sign":"Simboli plus-minus","Division sign":"Shenja e pjesëtimit","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"Rënja katrore","Tilde operator":"","Approximately equal to":"","Almost equal to":"Gati e ngjashme me","Not equal to":"E pabarabartë me","Identical to":"E ngjashme me","Element of":"Elementi i","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"Logjik ose","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"Për të gjitha","There exists":"Ekziston","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"Në përpjesëtim me",Angle:"Engjëlli","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"Simboli i paragrafit","Reversed paragraph sign":"","Character categories":"Kategoritë e karaktereve","Insert table":"Shto tabelë","Header column":"Kolona e kokës","Insert column left":"Shto kolonë majtas","Insert column right":"Shto kolonë djathtas","Delete column":"Gris kolonën","Select column":"",Column:"Kolona","Header row":"Rreshti i kokës","Insert row below":"Shto rresht poshtë","Insert row above":"Shto rresht sipër","Delete row":"Grish rreshtin","Select row":"",Row:"Rreshti","Merge cell up":"Bashko kutizat sipër","Merge cell right":"Bashko kutizat djathtas","Merge cell down":"Bashko kutizat poshtë","Merge cell left":"Bashko kutizat majtas","Split cell vertically":"Ndajë kutizat vertikalisht","Split cell horizontally":"Ndaj kutizat horizontalisht","Merge cells":"Bashko kutizat","Table toolbar":"Kokështrirja e tabelës","Table properties":"Karakteristikat e tabelës","Cell properties":"Karakteristikat e qelisë",Border:"",Style:"Stili",Width:"Gjerësia",Height:"Lartësia",Color:"Ngjyra",Background:"Prapavija",Padding:"",Dimensions:"Dimensionet","Table cell text alignment":"Rradhitja e tekstit të qelisë së tabelës",Alignment:"Radhitja","Horizontal text alignment toolbar":"Kokështrirja e rradhitjes së tekstit horizontalisht","Vertical text alignment toolbar":"Kokështrirja e rradhitjes së tekstit vertikalisht","Table alignment toolbar":"Kokështrirja e radhitjes së tabelës",None:"Asnjë",Solid:"",Dotted:"Me pika",Dashed:"",Double:"Me dy vija",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"Radhit tekstin e qelisë majtas","Align cell text to the center":"Radhite tekstin në mes","Align cell text to the right":"Radhit tekstin e qelisë në të djathtë","Justify cell text":"","Align cell text to the top":"Radhit tekstin e qelisë sipër","Align cell text to the middle":"Radhit tekstin e qelisë në mes","Align cell text to the bottom":"Radhite tesktin e qelisë në fund","Align table to the left":"Radhit tabelën majtas","Center table":"","Align table to the right":"Radhit tabelën në të djathtë","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Kodi është i pavlefshëm. Provo\"#FF0000\" ose \"rgb(255,0,0)\" ose \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Redaktues i Tekstit të Pasur","Editor editing area: %0":"","Edit block":"Redakto bllokun","Click to edit block":"","Drag to move":"",Next:"E radhës",Previous:"Paraprake","Editor toolbar":"Kokështrirja e redaktuesit","Dropdown toolbar":"Zgjero kokështrirjen",Black:"E zezë","Dim grey":"",Grey:"Ngjyrë hiri","Light grey":"",White:"E bardhë",Red:"E kuqe",Orange:"Ngjyrë portokalli",Yellow:"E verdhë","Light green":"",Green:"E gjelbër",Aquamarine:"",Turquoise:"","Light blue":"",Blue:"E kaltër",Purple:"","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Rikthe",Redo:"Ribëj","Upload in progress":"Duke ngarkuar","Widget toolbar":"Kokështrirja e shtesës","Insert paragraph before block":"","Insert paragraph after block":"","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Fjalë: %0","Characters: %0":"Karaktere: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr-latn.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr-latn.js index cd482b3c0d861a161ff6f3c9cdf27a5be5f592a0..d0d2151ccb7eb8d68aa81b3c91f27282854b2f97 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr-latn.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr-latn.js @@ -1 +1 @@ -(function(d){ const l = d['sr-latn'] = d['sr-latn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Levo ravnanje","Align right":"Desno ravnanje","Align center":"Centralno ravnanje",Justify:"Obostrano ravnanje","Text alignment":"Ravnanje teksta","Text alignment toolbar":"Alatke za ravnanje teksta",Bold:"Podebljano",Italic:"Kurziv",Underline:"PodvuÄen",Code:"Kod",Strikethrough:"Precrtan",Subscript:"Index dole",Superscript:"Index gore","Block quote":"Citat","Insert code block":"Dodaj blok koda","Plain text":"ObiÄan tekst",Cancel:"Odustani",Clear:"ObriÅ¡i","Remove color":"Otkloni boju","Restore default":"Vrati podrazumevano",Save:"SaÄuvaj","Show more items":"Prikaži joÅ¡ stavki","%0 of %1":"%0 of %1","Cannot upload file:":"Postavljanje fajla je neuspeÅ¡no:","Rich Text Editor. Editing area: %0":"UreÄ‘ivaÄ bogatijeg teksta. Prostor za ureÄ‘ivanje: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"NaÄ‘ji i zameni","Find in text…":"PronaÄ‘ji u tekstu…",Find:"PronaÄ‘ji","Previous result":"Prethodni rezultat","Next result":"Sledeći rezultat",Replace:"Zameni","Replace all":"Zameni sve","Match case":"Podudaranje sluÄaj","Whole words only":"Samo cele reÄi","Replace with…":"Zameni sa…","Text to find must not be empty.":"Tekst za pronalaženje ne sme biti prazan.","Tip: Find some text first in order to replace it.":"Savet: Prvo pronaÄ‘jite neki tekst da biste ga zamenili.","Advanced options":"",Paragraph:"Pasus",Heading:"Stilovi","Choose heading":"Odredi stil","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Odredite naslov","Type or paste your content here.":"UpiÅ¡ite ili nalepite naslov","Horizontal line":"Horizontalna razdelna linija","HTML object":"HTML objеkat","Increase indent":"Povećaj uclaÄenje","Decrease indent":"Smanji uvlaÄenje",Unlink:"Оtkloni link",Link:"Link","Link URL":"URL link","Link image":"Link slike","Edit link":"Ispravi link","Open link in new tab":"Otvori link u novom prozoru","This link has no URL":"Link ne sadrži URL","Open in a new tab":"Otvori u novoj kartici",Downloadable:"Moguće preuzimanje","Numbered List":"Lista sa brojevima","Bulleted List":"Nabrajane liste","To-do List":"Lista obaveza","Bulleted list styles toolbar":"Traka sa alatkama za nabrajane liste","Numbered list styles toolbar":"Traka sa altakama za liste sa brojevima","Toggle the disc list style":"UkljuÄite / iskljuÄite stil liste diskova","Toggle the circle list style":"UkljuÄite / iskljuÄite stil liste krugova","Toggle the square list style":"UkljuÄite / iskljuÄite stil liste kvadrata","Toggle the decimal list style":"UkljuÄi / iskljuÄi stil dekadne liste","Toggle the decimal with leading zero list style":"Prebaci decimalni znak sa vodecÌim stilom liste nula","Toggle the lower–roman list style":"UkljuÄite / iskljuÄite stil donje rimske liste","Toggle the upper–roman list style":"UkljuÄite / iskljuÄite stil gornje rimske liste","Toggle the lower–latin list style":"UkljuÄite / iskljuÄite stil donje liste latinice","Toggle the upper–latin list style":"UkljuÄite / iskljuÄite stil gornje liste latinice",Disc:"Disk",Circle:"Krug",Square:"Kvadrat",Decimal:"Decimala","Decimal with leading zero":"Decimalni broj sa nulom na poÄetku","Lower–roman":"Donji - rimski","Upper-roman":"Gornji - rimski","Lower-latin":"Donji - latinski","Upper-latin":"Gornji - latinski","List properties":"Navedite svojstva","Start at":"PoÄeti u","Start index must be greater than 0.":"PoÄetni indeks mora biti vecÌi od 0.","Reversed order":"Obrnuti redosled","Remove Format":"Ukloni formatiranje","Select all":"OznaÄi sve","Show blocks":"Prikaži blokove",Source:"Izvor","Special characters":"Specijalni karakteri",All:"Svi",Arrows:"Strelica",Currency:"Valute",Latin:"LatiniÄni",Mathematical:"MatematiÄki",Text:"Tekst","leftwards simple arrow":"jednostavna strelica nalevo","rightwards simple arrow":"jednostavna strelica udesno","upwards simple arrow":"jednostavna strelica nagore","downwards simple arrow":"jednostavna strelica nadole","leftwards double arrow":"Dupla strlica levo","rightwards double arrow":"Dupla strelica desno","upwards double arrow":"Dupla strelica prema gore","downwards double arrow":"Dupla strelica prema dole","leftwards dashed arrow":"Prekidana strelica levo","rightwards dashed arrow":"Prekidana strelica desno","upwards dashed arrow":"Prekidana strelica prema gore","downwards dashed arrow":"Prekidana strelica prema dole","leftwards arrow to bar":"Strelica nalevo ka traci","rightwards arrow to bar":"Strelica nadesno ka traci","upwards arrow to bar":"Strelica prema gore ka traci","downwards arrow to bar":"Strelica prema dole ka traci","up down arrow with base":"Strelica nadole sa bazom","back with leftwards arrow above":"Nazad sa strelicom levo","end with leftwards arrow above":"ZavrÅ¡ite strelicom levo","on with exclamation mark with left right arrow above":"UkljuÄeno sa uzviÄnikom sa strelicom levo desno","soon with rightwards arrow above":"Uskoro sa strelicom nadesno","top with upwards arrow above":"Na vrhu sa strelicom prema gore","Dollar sign":"Znak dolara","Euro sign":"Znak eura","Yen sign":"Znak jena","Pound sign":"Znak funti","Cent sign":"Znak centа","Euro-currency sign":"Znak valute eura","Colon sign":"DvotaÄka","Cruzeiro sign":"Znak cruzeiro","French franc sign":"Znak francuskog franaka","Lira sign":"Znak lire","Currency sign":"Znak valute","Bitcoin sign":"Znak bitcoina","Mill sign":"Znak mlina","Naira sign":"Znak naira","Peseta sign":"Znak pezeta","Rupee sign":"Znak rupia","Won sign":"Znak von","New sheqel sign":"Znak novi Å¡ekel","Dong sign":"Znak dong","Kip sign":"Znak kip","Tugrik sign":"Znak tugrik","Drachma sign":"Znak drahma","German penny sign":"Znak nemaÄki peni","Peso sign":"Znak peso","Guarani sign":"Znak guarani","Austral sign":"Australni znak","Hryvnia sign":"Znak grivna","Cedi sign":"Znak cedi","Livre tournois sign":"Znak livre tournois","Spesmilo sign":"Znak spesmilio","Tenge sign":"Znak tenge","Indian rupee sign":"Znak indijske rupije","Turkish lira sign":"Znak turskih lira","Nordic mark sign":"Nordijski znak","Manat sign":"Znak manat","Ruble sign":"Znak ruble","Latin capital letter a with macron":"Latinsko veliko slovo a sa makronom","Latin small letter a with macron":"Latinsko malo slovo a sa makronom","Latin capital letter a with breve":"Latinsko veliko slovo a sa brevom","Latin small letter a with breve":"Latinsko malo slovo a sa brevom","Latin capital letter a with ogonek":"Latinsko veliko slovo a sa ogonek","Latin small letter a with ogonek":"Latinsko malo slovo a sa ogonek","Latin capital letter c with acute":"Latinsko veliko slovo c sa akutom","Latin small letter c with acute":"Latinsko malo slovo c sa akutom","Latin capital letter c with circumflex":"Latinsko veliko slovo c sa circumflex","Latin small letter c with circumflex":"Latino malo slovo c sa circumflex","Latin capital letter c with dot above":"Latinsko veliko slovo c sa taÄkom iznad","Latin small letter c with dot above":"Latinsko malo slovo c sa taÄkom iznad","Latin capital letter c with caron":"Latinsko veliko slovo c sa caronom","Latin small letter c with caron":"Latinsko malo slovo c sa caronom","Latin capital letter d with caron":"Latinsko veliko slovo d sa caronom","Latin small letter d with caron":"Latinsko malo slovo d sa caronom","Latin capital letter d with stroke":"Latinsko veliko slovo d sa stroke","Latin small letter d with stroke":"Latinsko malo slovo d sa stroke","Latin capital letter e with macron":"Latinsko veliko slovo e sa macron","Latin small letter e with macron":"Latinsko malo slovo e sa macron","Latin capital letter e with breve":"Latinsko veliko slovo e sa breve","Latin small letter e with breve":"Latinsko malo slovo e sa breve","Latin capital letter e with dot above":"Latinsko veliko slovo e sa taÄkom iznad","Latin small letter e with dot above":"Latinsko malo slovo e sa taÄkom iznad","Latin capital letter e with ogonek":"Latinsko veliko slovo e sa ogonek","Latin small letter e with ogonek":"Latinsko malo slovo e sa ogonek","Latin capital letter e with caron":"Latinsko veliko slovo e sa caron","Latin small letter e with caron":"Latinsko malo slovo e sa caron","Latin capital letter g with circumflex":"Latinsko veliko slovo g sa circumflex","Latin small letter g with circumflex":"Latinsko malo slovo g sa circumflex","Latin capital letter g with breve":"Latinsko veliko slovo g sa breve","Latin small letter g with breve":"Latinsko malo slovo g sa breve","Latin capital letter g with dot above":"Latinsko veliko slovo g sa taÄkom iznad","Latin small letter g with dot above":"Latinsko malo slovo g sa taÄkom iznad","Latin capital letter g with cedilla":"Latinsko veliko slovo g sa cedillom","Latin small letter g with cedilla":"Latinsko malo slovo g sa cedillom","Latin capital letter h with circumflex":"Latinsko veliko slovo h sa circumflex","Latin small letter h with circumflex":"Latinsko malo slovo h sa circumflex","Latin capital letter h with stroke":"Latinsko veliko slovo h sa stroke","Latin small letter h with stroke":"Latinsko malo slovo h sa stroke","Latin capital letter i with tilde":"Latinsko veliko slovo i sa tildom","Latin small letter i with tilde":"Latinsko malo slovo i sa tildom","Latin capital letter i with macron":"Latinsko veliko slovo i sa macron","Latin small letter i with macron":"Latinsko malo slovo i sa macron","Latin capital letter i with breve":"Latinsko veloko slovo i sa breve","Latin small letter i with breve":"Latinsko malo slovo i sa breve","Latin capital letter i with ogonek":"Latinsko veliko slovo i sa ogonek","Latin small letter i with ogonek":"Latinsko malo slovo i sa ogonek","Latin capital letter i with dot above":"Latinsko veliko slovo i sa tackom iznad","Latin small letter dotless i":"Latinsko malo slovo i bez taÄke","Latin capital ligature ij":"Latinska velika ligatura ij","Latin small ligature ij":"Latinska mala ligatura ij","Latin capital letter j with circumflex":"Latinsko veliko slovo j sa circumflex","Latin small letter j with circumflex":"Latinsko malo slovo j sa circumflex","Latin capital letter k with cedilla":"Latinsko veliko slovo k sa cedila","Latin small letter k with cedilla":"Latinsko malo slovo k sa cedila","Latin small letter kra":"Latinsko malo slovo kra","Latin capital letter l with acute":"Latinsko veloko slovo l sa akutom","Latin small letter l with acute":"Latinsko malo slovo l sa akutom","Latin capital letter l with cedilla":"Latinsko veliko slovo l sa cedila","Latin small letter l with cedilla":"Latinsko malo slovo l sa cedila","Latin capital letter l with caron":"Latinsko veliko slovo l sa caron","Latin small letter l with caron":"Latinsko malo slovo l sa caron","Latin capital letter l with middle dot":"Latinsko veliko slovo l sa srednjom taÄkom","Latin small letter l with middle dot":"Latinsko malo slovo l sa srednjom taÄkom","Latin capital letter l with stroke":"Latinsko veliko slovo l sa stroke","Latin small letter l with stroke":"Latinsko malo slovo l sa stroke","Latin capital letter n with acute":"Latinsko veliko slovo n sa akutom ","Latin small letter n with acute":"Latinsko malo slovo n sa akutom ","Latin capital letter n with cedilla":"Latinsko veliko slovo n sa cedilom","Latin small letter n with cedilla":"Latinsko malo slovo n sa cedilom","Latin capital letter n with caron":"Latinsko veliko slovo n sa caron","Latin small letter n with caron":"Latinsko malo slovo n sa caron ","Latin small letter n preceded by apostrophe":"Latinsko malo slovo n koje prethodi apostrof","Latin capital letter eng":"Latinsko veliko slovo eng","Latin small letter eng":"Latinsko malo slovo eng","Latin capital letter o with macron":"Latinsko veliko slovo o sa macron","Latin small letter o with macron":"Latinsko malo slovo o sa macron","Latin capital letter o with breve":"Latinsko veliko slovo o sa breve","Latin small letter o with breve":"Latinsko malo slovo o sa breve","Latin capital letter o with double acute":"Latinsko veliko slovo o sa dvostrukom akutom","Latin small letter o with double acute":"Latinsko malo slovo o sa dvostrukom akutom","Latin capital ligature oe":"Latinska velika ligatura oe","Latin small ligature oe":"Latinska mala ligatura oe","Latin capital letter r with acute":"Latinsko veliko slovo r sa akutom","Latin small letter r with acute":"Latinsko malo slovo r sa akutom","Latin capital letter r with cedilla":"Latinsko veliko slovo r sa cedila","Latin small letter r with cedilla":"Latinsko malo slovo r sa cedila","Latin capital letter r with caron":"Latinsko veliko slovo r sa caron","Latin small letter r with caron":"Latinsko malo slovo r sa caron","Latin capital letter s with acute":"Latinsko veliko slovo s sa akutom","Latin small letter s with acute":"Latinsko malo slovo s sa akutom","Latin capital letter s with circumflex":"Latinsko veliko slovo s sa circumflex","Latin small letter s with circumflex":"Latinsko malo slovo s sa circumflex","Latin capital letter s with cedilla":"Latinsko veliko slovo s sa cedila","Latin small letter s with cedilla":"Latinsko malo slovo s sa cedila","Latin capital letter s with caron":"Latinsko veliko slovo s sa caron","Latin small letter s with caron":"Latinsko malo slovo s sa caron","Latin capital letter t with cedilla":"Latinsko veliko slovo t sa cedila","Latin small letter t with cedilla":"Latinsko malo slovo t sa cedila","Latin capital letter t with caron":"Latinsko veliko slovo t sa caron","Latin small letter t with caron":"Latinsko malo slovo t sa caron","Latin capital letter t with stroke":"Latinsko veliko slovo t sa stroke","Latin small letter t with stroke":"Latinsko malo slovo t sa stroke","Latin capital letter u with tilde":"Latinsko veliko slovo u sa tildom","Latin small letter u with tilde":"Latinsko malo slovo u sa tildom","Latin capital letter u with macron":"Latinsko veliko slovo u sa macron","Latin small letter u with macron":"Latinsko malo slovo u sa macron","Latin capital letter u with breve":"Latinsko veliko slovo u sa breve","Latin small letter u with breve":"Latinsko malo slovo u sa breve","Latin capital letter u with ring above":"Latinsko veliko slovo u s prstenom iznad","Latin small letter u with ring above":"Latinsko malo slovo u s prstenom iznad","Latin capital letter u with double acute":"Latinsko veliko slovo u s dvostrukom akutom","Latin small letter u with double acute":"Latinsko malo slovo u s dvostrukom akutom","Latin capital letter u with ogonek":"Latinsko veliko slovo u sa ogonek","Latin small letter u with ogonek":"Latinsko malo slovo u sa ogonek","Latin capital letter w with circumflex":"Latinsko veliko slovo w sa circumflex","Latin small letter w with circumflex":"Latinsko malo slovo w sa circumflex","Latin capital letter y with circumflex":"Latinsko veliko slovo y sa circumflex","Latin small letter y with circumflex":"Latinsko malo slovo y sa circumflex","Latin capital letter y with diaeresis":"Latinsko veliko slovo y sa dijarezom","Latin capital letter z with acute":"Latinsko veliko slovo z sa akutom","Latin small letter z with acute":"Latinsko malo slovo z sa akutom","Latin capital letter z with dot above":"Latinsko veliko slovo z sa taÄkom iznad","Latin small letter z with dot above":"Latinsko malo slovo z sa taÄkom iznad","Latin capital letter z with caron":"Latinsko veliko slovo z sa caron","Latin small letter z with caron":"Latinsko malo slovo z sa caron","Latin small letter long s":"Latinsko malo slovo dugaÄko s","Less-than sign":"Znak manje od","Greater-than sign":"Znak veće od","Less-than or equal to":"Znak manje od ili jednako","Greater-than or equal to":"Znak veće od ili jednako","En dash":"En crtica","Em dash":"Em crtica",Macron:"Macron",Overline:"Overline","Degree sign":"Znak stepena","Minus sign":"Znak minus","Plus-minus sign":"Znak plus-minus","Division sign":"Znak divizije","Fraction slash":"Crta frakcije","Multiplication sign":"Znak množenja","Latin small letter f with hook":"Latinsko malo slovo f sa kukom",Integral:"Integral","N-ary summation":"N-ari zbir",Infinity:"BeskonaÄnost","Square root":"Kvadratni koren","Tilde operator":"Tilde operator","Approximately equal to":"Otprilike jednako","Almost equal to":"Skoro jednako","Not equal to":"Nejednako sa","Identical to":"IdentiÄan","Element of":"Element od","Not an element of":"Nije element","Contains as member":"Sadrži kao Älan","N-ary product":"N-ari proizvod","Logical and":"LogiÄki i","Logical or":"LogiÄki ili","Not sign":"Nije znak",Intersection:"Raskrsnica",Union:"Unija","Partial differential":"DelimiÄni diferencijal","For all":"Za sve","There exists":"Postoji","Empty set":"Prazan set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Srazmerno",Angle:"Ugao","Vulgar fraction one quarter":"Vulgarna frakcija jedna Äetvrtina","Vulgar fraction one half":"Vulgarna frakcija jedna polovina","Vulgar fraction three quarters":"Vulgarna frakcija tri Äetvrtine","Single left-pointing angle quotation mark":"PojedinaÄni navodnik ugla levog pokazivanja","Single right-pointing angle quotation mark":"PojedinaÄni navodnik ugla desnog pokazivanja","Left-pointing double angle quotation mark":"Levi dvostrani navodnik dvostrukog ugla","Right-pointing double angle quotation mark":"Desni dvostrani navodnik dvostrukog ugla","Left single quotation mark":"Levi pojedinaÄni navodnik","Right single quotation mark":"Desni pojedinaÄni navodnik","Left double quotation mark":"Levi dvostruki navodnik","Right double quotation mark":"Desni dvostruki navodnik","Single low-9 quotation mark":"Jedan niski-9 navodnik","Double low-9 quotation mark":"Dvostruki niski-9 navodnik","Inverted exclamation mark":"Obrnuti uzviÄnik","Inverted question mark":"Obrnuti upitnik","Two dot leader":"Vodja sa dve taÄke","Horizontal ellipsis":"Horizontalna elipsa","Double dagger":"Dvostruki bodež","Per mille sign":"Znak per mile","Per ten thousand sign":"Znak za deset hiljada","Double exclamation mark":"Dvosrtuki uzviÄnik","Question exclamation mark":"Znak upitnika uzviÄnika","Exclamation question mark":"Znak uzviÄnika upitnika","Double question mark":"Dvostruki upitnik","Copyright sign":"Simbol autorskog prava","Registered sign":"Registrovani znak","Trade mark sign":"Znak brenda","Section sign":"Znak sekcija","Paragraph sign":"Znak paragraf","Reversed paragraph sign":"Obrnuti znak paragrafa","Character categories":"Kategorija karaktera",Styles:"Stilovi","Multiple styles":"ViÅ¡e stilova","Block styles":"Blok stilovi","Text styles":"Stilovi teksta","Insert table":"Dodaj tabelu","Header column":"Kolona za zaglavlje","Insert column left":"Dodaj kolonu levo","Insert column right":"Dodaj kolonu desno","Delete column":"BriÅ¡i kolonu","Select column":"Odaberi kolonu",Column:"Kolona","Header row":"Red za zaglavlje","Insert row below":"Dodaj red ispod","Insert row above":"Dodaj red iznad","Delete row":"BriÅ¡i red","Select row":"Odaberi red",Row:"Red","Merge cell up":"Spoj ćelije na gore","Merge cell right":"Spoj ćelije na desno","Merge cell down":"Spoj ćelije na dole","Merge cell left":"Spoj ćelije na levo","Split cell vertically":"Deli ćelije uspravno","Split cell horizontally":"Deli ćelije vodoravno","Merge cells":"Spoj ćelije","Table toolbar":"Tabela traka sa alatkama","Table properties":"Svojstva tabele","Cell properties":"Svojstva ćelije",Border:"Granica",Style:"Stil",Width:"Å irina",Height:"Visina",Color:"Boja",Background:"Pozadina",Padding:"Postavljanje",Dimensions:"Dimenzija","Table cell text alignment":"Poravnaj tekst u tabeli",Alignment:"Poravnanje","Horizontal text alignment toolbar":"Horizontalna traka sa alatkama za poravnavanje teksta","Vertical text alignment toolbar":"Vertikalna traka sa alatkama za poravnavanje teksta","Table alignment toolbar":"Traka sa alatkama za poravnavanje tabele",None:"Nijedan",Solid:"ÄŒvrst",Dotted:"Sa taÄkama",Dashed:"Razbijeno",Double:"Dvostruki",Groove:"Kolosek",Ridge:"Greben",Inset:"Prilog",Outset:"PoÄetak","Align cell text to the left":"Poravnajte tekst cÌelije levo","Align cell text to the center":"Poravnajte tekst cÌelije u sredinu","Align cell text to the right":"Poravnajte tekst cÌelije desno","Justify cell text":"Opravdajte tekst cÌelije","Align cell text to the top":"Poravnajte tekst cÌelije prema gore","Align cell text to the middle":"Poravnajte tekst cÌelije u sredinu","Align cell text to the bottom":"Poravnajte tekst cÌelije prema dole","Align table to the left":"Poravnajte tabelu na levu stranu","Center table":"Centar tabele","Align table to the right":"Poravnajte tabelu na desnu stranu","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Boja je nevažecÌa. PokuÅ¡ajte sa \"# FF0000\" ili \"rgb (255,0,0)\" ili \"crvena\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Vrednost je nevažecÌa. PokuÅ¡ajte sa „10pk“ ili „2em“ ili jednostavno „2“.","Color picker":"BiraÄ boja","Toggle caption off":"IskljuÄivanje natpisa","Toggle caption on":"UkljuÄite naslov","Enter table caption":"Unesite naslov tabele","Rich Text Editor":"ProÅ¡ireni ureÄ‘ivaÄ teksta","Editor editing area: %0":"Oblast za ureÄ‘ivanje urednika: %0","Edit block":"Blok ureÄ‘ivaÄ","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili",Next:"Sledeći",Previous:"Prethodni","Editor toolbar":"UreÄ‘ivaÄ traka sa alatkama","Dropdown toolbar":"Padajuća traka sa alatkama",Black:"Crna","Dim grey":"Bledo siva",Grey:"Siva","Light grey":"Svetlo siva",White:"Bela",Red:"Crvena",Orange:"Narandžasta",Yellow:"Žuta","Light green":"Svetlo zelena",Green:"Zelena",Aquamarine:"Zelenkastoplava",Turquoise:"Tirkizna","Light blue":"Svetloplava",Blue:"Plava",Purple:"LjubiÄasta","Editor block content toolbar":"Traka sa alatkama za blokiranje sadržaja ureÄ‘ivaÄa","Editor contextual toolbar":"Kontekstualna traka sa alatkama Editor",HEX:"HEX",Accept:"Prihvati","No results found":"Nije pronaÄ‘en nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"",Close:"",Undo:"PovlaÄenje",Redo:"Ponovo","Upload in progress":"Postavljanje u toku","Widget toolbar":"Видгет трака Ñа алаткама","Insert paragraph before block":"Уметните одломак пре блока","Insert paragraph after block":"Уметните одломак поÑле блока","Press Enter to type after or press Shift + Enter to type before the widget":"Pritisnite Enter da kucate posle ili pritisnite Shift + Enter da kucate pre vidžeta","Words: %0":"ReÄi: %0","Characters: %0":"Karakteri: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sr-latn'] = d['sr-latn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Levo ravnanje","Align right":"Desno ravnanje","Align center":"Centralno ravnanje",Justify:"Obostrano ravnanje","Text alignment":"Ravnanje teksta","Text alignment toolbar":"Alatke za ravnanje teksta",Bold:"Podebljano",Italic:"Kurziv",Underline:"PodvuÄen",Code:"Kod",Strikethrough:"Precrtan",Subscript:"Index dole",Superscript:"Index gore","Block quote":"Citat","Insert code block":"Dodaj blok koda","Plain text":"ObiÄan tekst",Cancel:"Odustani",Clear:"ObriÅ¡i","Remove color":"Otkloni boju","Restore default":"Vrati podrazumevano",Save:"SaÄuvaj","Show more items":"Prikaži joÅ¡ stavki","%0 of %1":"%0 of %1","Cannot upload file:":"Postavljanje fajla je neuspeÅ¡no:","Rich Text Editor. Editing area: %0":"UreÄ‘ivaÄ bogatijeg teksta. Prostor za ureÄ‘ivanje: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"NaÄ‘ji i zameni","Find in text…":"PronaÄ‘ji u tekstu…",Find:"PronaÄ‘ji","Previous result":"Prethodni rezultat","Next result":"Sledeći rezultat",Replace:"Zameni","Replace all":"Zameni sve","Match case":"Podudaranje sluÄaj","Whole words only":"Samo cele reÄi","Replace with…":"Zameni sa…","Text to find must not be empty.":"Tekst za pronalaženje ne sme biti prazan.","Tip: Find some text first in order to replace it.":"Savet: Prvo pronaÄ‘jite neki tekst da biste ga zamenili.","Advanced options":"","Font Size":"VeliÄina fonta",Tiny:"Sitno",Small:"Malo",Big:"Veliko",Huge:"Ogromno","Font Family":"Font",Default:"Оsnovni","Font Color":"Boja slova","Font Background Color":"Boja pozadine slova","Document colors":"Boje dokumenta",Paragraph:"Pasus",Heading:"Stilovi","Choose heading":"Odredi stil","Heading 1":"Naslov 1","Heading 2":"Naslov 2","Heading 3":"Naslov 3","Heading 4":"Naslov 4","Heading 5":"Naslov 5","Heading 6":"Naslov 6","Type your title":"Odredite naslov","Type or paste your content here.":"UpiÅ¡ite ili nalepite naslov","Horizontal line":"Horizontalna razdelna linija","HTML object":"HTML objеkat","Increase indent":"Povećaj uclaÄenje","Decrease indent":"Smanji uvlaÄenje",Unlink:"Оtkloni link",Link:"Link","Link URL":"URL link","Link image":"Link slike","Edit link":"Ispravi link","Open link in new tab":"Otvori link u novom prozoru","This link has no URL":"Link ne sadrži URL","Open in a new tab":"Otvori u novoj kartici",Downloadable:"Moguće preuzimanje","Numbered List":"Lista sa brojevima","Bulleted List":"Nabrajane liste","To-do List":"Lista obaveza","Bulleted list styles toolbar":"Traka sa alatkama za nabrajane liste","Numbered list styles toolbar":"Traka sa altakama za liste sa brojevima","Toggle the disc list style":"UkljuÄite / iskljuÄite stil liste diskova","Toggle the circle list style":"UkljuÄite / iskljuÄite stil liste krugova","Toggle the square list style":"UkljuÄite / iskljuÄite stil liste kvadrata","Toggle the decimal list style":"UkljuÄi / iskljuÄi stil dekadne liste","Toggle the decimal with leading zero list style":"Prebaci decimalni znak sa vodecÌim stilom liste nula","Toggle the lower–roman list style":"UkljuÄite / iskljuÄite stil donje rimske liste","Toggle the upper–roman list style":"UkljuÄite / iskljuÄite stil gornje rimske liste","Toggle the lower–latin list style":"UkljuÄite / iskljuÄite stil donje liste latinice","Toggle the upper–latin list style":"UkljuÄite / iskljuÄite stil gornje liste latinice",Disc:"Disk",Circle:"Krug",Square:"Kvadrat",Decimal:"Decimala","Decimal with leading zero":"Decimalni broj sa nulom na poÄetku","Lower–roman":"Donji - rimski","Upper-roman":"Gornji - rimski","Lower-latin":"Donji - latinski","Upper-latin":"Gornji - latinski","List properties":"Navedite svojstva","Start at":"PoÄeti u","Start index must be greater than 0.":"PoÄetni indeks mora biti vecÌi od 0.","Reversed order":"Obrnuti redosled","Remove Format":"Ukloni formatiranje","Select all":"OznaÄi sve","Show blocks":"Prikaži blokove",Source:"Izvor","Special characters":"Specijalni karakteri",All:"Svi",Arrows:"Strelica",Currency:"Valute",Latin:"LatiniÄni",Mathematical:"MatematiÄki",Text:"Tekst","leftwards simple arrow":"jednostavna strelica nalevo","rightwards simple arrow":"jednostavna strelica udesno","upwards simple arrow":"jednostavna strelica nagore","downwards simple arrow":"jednostavna strelica nadole","leftwards double arrow":"Dupla strlica levo","rightwards double arrow":"Dupla strelica desno","upwards double arrow":"Dupla strelica prema gore","downwards double arrow":"Dupla strelica prema dole","leftwards dashed arrow":"Prekidana strelica levo","rightwards dashed arrow":"Prekidana strelica desno","upwards dashed arrow":"Prekidana strelica prema gore","downwards dashed arrow":"Prekidana strelica prema dole","leftwards arrow to bar":"Strelica nalevo ka traci","rightwards arrow to bar":"Strelica nadesno ka traci","upwards arrow to bar":"Strelica prema gore ka traci","downwards arrow to bar":"Strelica prema dole ka traci","up down arrow with base":"Strelica nadole sa bazom","back with leftwards arrow above":"Nazad sa strelicom levo","end with leftwards arrow above":"ZavrÅ¡ite strelicom levo","on with exclamation mark with left right arrow above":"UkljuÄeno sa uzviÄnikom sa strelicom levo desno","soon with rightwards arrow above":"Uskoro sa strelicom nadesno","top with upwards arrow above":"Na vrhu sa strelicom prema gore","Dollar sign":"Znak dolara","Euro sign":"Znak eura","Yen sign":"Znak jena","Pound sign":"Znak funti","Cent sign":"Znak centа","Euro-currency sign":"Znak valute eura","Colon sign":"DvotaÄka","Cruzeiro sign":"Znak cruzeiro","French franc sign":"Znak francuskog franaka","Lira sign":"Znak lire","Currency sign":"Znak valute","Bitcoin sign":"Znak bitcoina","Mill sign":"Znak mlina","Naira sign":"Znak naira","Peseta sign":"Znak pezeta","Rupee sign":"Znak rupia","Won sign":"Znak von","New sheqel sign":"Znak novi Å¡ekel","Dong sign":"Znak dong","Kip sign":"Znak kip","Tugrik sign":"Znak tugrik","Drachma sign":"Znak drahma","German penny sign":"Znak nemaÄki peni","Peso sign":"Znak peso","Guarani sign":"Znak guarani","Austral sign":"Australni znak","Hryvnia sign":"Znak grivna","Cedi sign":"Znak cedi","Livre tournois sign":"Znak livre tournois","Spesmilo sign":"Znak spesmilio","Tenge sign":"Znak tenge","Indian rupee sign":"Znak indijske rupije","Turkish lira sign":"Znak turskih lira","Nordic mark sign":"Nordijski znak","Manat sign":"Znak manat","Ruble sign":"Znak ruble","Latin capital letter a with macron":"Latinsko veliko slovo a sa makronom","Latin small letter a with macron":"Latinsko malo slovo a sa makronom","Latin capital letter a with breve":"Latinsko veliko slovo a sa brevom","Latin small letter a with breve":"Latinsko malo slovo a sa brevom","Latin capital letter a with ogonek":"Latinsko veliko slovo a sa ogonek","Latin small letter a with ogonek":"Latinsko malo slovo a sa ogonek","Latin capital letter c with acute":"Latinsko veliko slovo c sa akutom","Latin small letter c with acute":"Latinsko malo slovo c sa akutom","Latin capital letter c with circumflex":"Latinsko veliko slovo c sa circumflex","Latin small letter c with circumflex":"Latino malo slovo c sa circumflex","Latin capital letter c with dot above":"Latinsko veliko slovo c sa taÄkom iznad","Latin small letter c with dot above":"Latinsko malo slovo c sa taÄkom iznad","Latin capital letter c with caron":"Latinsko veliko slovo c sa caronom","Latin small letter c with caron":"Latinsko malo slovo c sa caronom","Latin capital letter d with caron":"Latinsko veliko slovo d sa caronom","Latin small letter d with caron":"Latinsko malo slovo d sa caronom","Latin capital letter d with stroke":"Latinsko veliko slovo d sa stroke","Latin small letter d with stroke":"Latinsko malo slovo d sa stroke","Latin capital letter e with macron":"Latinsko veliko slovo e sa macron","Latin small letter e with macron":"Latinsko malo slovo e sa macron","Latin capital letter e with breve":"Latinsko veliko slovo e sa breve","Latin small letter e with breve":"Latinsko malo slovo e sa breve","Latin capital letter e with dot above":"Latinsko veliko slovo e sa taÄkom iznad","Latin small letter e with dot above":"Latinsko malo slovo e sa taÄkom iznad","Latin capital letter e with ogonek":"Latinsko veliko slovo e sa ogonek","Latin small letter e with ogonek":"Latinsko malo slovo e sa ogonek","Latin capital letter e with caron":"Latinsko veliko slovo e sa caron","Latin small letter e with caron":"Latinsko malo slovo e sa caron","Latin capital letter g with circumflex":"Latinsko veliko slovo g sa circumflex","Latin small letter g with circumflex":"Latinsko malo slovo g sa circumflex","Latin capital letter g with breve":"Latinsko veliko slovo g sa breve","Latin small letter g with breve":"Latinsko malo slovo g sa breve","Latin capital letter g with dot above":"Latinsko veliko slovo g sa taÄkom iznad","Latin small letter g with dot above":"Latinsko malo slovo g sa taÄkom iznad","Latin capital letter g with cedilla":"Latinsko veliko slovo g sa cedillom","Latin small letter g with cedilla":"Latinsko malo slovo g sa cedillom","Latin capital letter h with circumflex":"Latinsko veliko slovo h sa circumflex","Latin small letter h with circumflex":"Latinsko malo slovo h sa circumflex","Latin capital letter h with stroke":"Latinsko veliko slovo h sa stroke","Latin small letter h with stroke":"Latinsko malo slovo h sa stroke","Latin capital letter i with tilde":"Latinsko veliko slovo i sa tildom","Latin small letter i with tilde":"Latinsko malo slovo i sa tildom","Latin capital letter i with macron":"Latinsko veliko slovo i sa macron","Latin small letter i with macron":"Latinsko malo slovo i sa macron","Latin capital letter i with breve":"Latinsko veloko slovo i sa breve","Latin small letter i with breve":"Latinsko malo slovo i sa breve","Latin capital letter i with ogonek":"Latinsko veliko slovo i sa ogonek","Latin small letter i with ogonek":"Latinsko malo slovo i sa ogonek","Latin capital letter i with dot above":"Latinsko veliko slovo i sa tackom iznad","Latin small letter dotless i":"Latinsko malo slovo i bez taÄke","Latin capital ligature ij":"Latinska velika ligatura ij","Latin small ligature ij":"Latinska mala ligatura ij","Latin capital letter j with circumflex":"Latinsko veliko slovo j sa circumflex","Latin small letter j with circumflex":"Latinsko malo slovo j sa circumflex","Latin capital letter k with cedilla":"Latinsko veliko slovo k sa cedila","Latin small letter k with cedilla":"Latinsko malo slovo k sa cedila","Latin small letter kra":"Latinsko malo slovo kra","Latin capital letter l with acute":"Latinsko veloko slovo l sa akutom","Latin small letter l with acute":"Latinsko malo slovo l sa akutom","Latin capital letter l with cedilla":"Latinsko veliko slovo l sa cedila","Latin small letter l with cedilla":"Latinsko malo slovo l sa cedila","Latin capital letter l with caron":"Latinsko veliko slovo l sa caron","Latin small letter l with caron":"Latinsko malo slovo l sa caron","Latin capital letter l with middle dot":"Latinsko veliko slovo l sa srednjom taÄkom","Latin small letter l with middle dot":"Latinsko malo slovo l sa srednjom taÄkom","Latin capital letter l with stroke":"Latinsko veliko slovo l sa stroke","Latin small letter l with stroke":"Latinsko malo slovo l sa stroke","Latin capital letter n with acute":"Latinsko veliko slovo n sa akutom ","Latin small letter n with acute":"Latinsko malo slovo n sa akutom ","Latin capital letter n with cedilla":"Latinsko veliko slovo n sa cedilom","Latin small letter n with cedilla":"Latinsko malo slovo n sa cedilom","Latin capital letter n with caron":"Latinsko veliko slovo n sa caron","Latin small letter n with caron":"Latinsko malo slovo n sa caron ","Latin small letter n preceded by apostrophe":"Latinsko malo slovo n koje prethodi apostrof","Latin capital letter eng":"Latinsko veliko slovo eng","Latin small letter eng":"Latinsko malo slovo eng","Latin capital letter o with macron":"Latinsko veliko slovo o sa macron","Latin small letter o with macron":"Latinsko malo slovo o sa macron","Latin capital letter o with breve":"Latinsko veliko slovo o sa breve","Latin small letter o with breve":"Latinsko malo slovo o sa breve","Latin capital letter o with double acute":"Latinsko veliko slovo o sa dvostrukom akutom","Latin small letter o with double acute":"Latinsko malo slovo o sa dvostrukom akutom","Latin capital ligature oe":"Latinska velika ligatura oe","Latin small ligature oe":"Latinska mala ligatura oe","Latin capital letter r with acute":"Latinsko veliko slovo r sa akutom","Latin small letter r with acute":"Latinsko malo slovo r sa akutom","Latin capital letter r with cedilla":"Latinsko veliko slovo r sa cedila","Latin small letter r with cedilla":"Latinsko malo slovo r sa cedila","Latin capital letter r with caron":"Latinsko veliko slovo r sa caron","Latin small letter r with caron":"Latinsko malo slovo r sa caron","Latin capital letter s with acute":"Latinsko veliko slovo s sa akutom","Latin small letter s with acute":"Latinsko malo slovo s sa akutom","Latin capital letter s with circumflex":"Latinsko veliko slovo s sa circumflex","Latin small letter s with circumflex":"Latinsko malo slovo s sa circumflex","Latin capital letter s with cedilla":"Latinsko veliko slovo s sa cedila","Latin small letter s with cedilla":"Latinsko malo slovo s sa cedila","Latin capital letter s with caron":"Latinsko veliko slovo s sa caron","Latin small letter s with caron":"Latinsko malo slovo s sa caron","Latin capital letter t with cedilla":"Latinsko veliko slovo t sa cedila","Latin small letter t with cedilla":"Latinsko malo slovo t sa cedila","Latin capital letter t with caron":"Latinsko veliko slovo t sa caron","Latin small letter t with caron":"Latinsko malo slovo t sa caron","Latin capital letter t with stroke":"Latinsko veliko slovo t sa stroke","Latin small letter t with stroke":"Latinsko malo slovo t sa stroke","Latin capital letter u with tilde":"Latinsko veliko slovo u sa tildom","Latin small letter u with tilde":"Latinsko malo slovo u sa tildom","Latin capital letter u with macron":"Latinsko veliko slovo u sa macron","Latin small letter u with macron":"Latinsko malo slovo u sa macron","Latin capital letter u with breve":"Latinsko veliko slovo u sa breve","Latin small letter u with breve":"Latinsko malo slovo u sa breve","Latin capital letter u with ring above":"Latinsko veliko slovo u s prstenom iznad","Latin small letter u with ring above":"Latinsko malo slovo u s prstenom iznad","Latin capital letter u with double acute":"Latinsko veliko slovo u s dvostrukom akutom","Latin small letter u with double acute":"Latinsko malo slovo u s dvostrukom akutom","Latin capital letter u with ogonek":"Latinsko veliko slovo u sa ogonek","Latin small letter u with ogonek":"Latinsko malo slovo u sa ogonek","Latin capital letter w with circumflex":"Latinsko veliko slovo w sa circumflex","Latin small letter w with circumflex":"Latinsko malo slovo w sa circumflex","Latin capital letter y with circumflex":"Latinsko veliko slovo y sa circumflex","Latin small letter y with circumflex":"Latinsko malo slovo y sa circumflex","Latin capital letter y with diaeresis":"Latinsko veliko slovo y sa dijarezom","Latin capital letter z with acute":"Latinsko veliko slovo z sa akutom","Latin small letter z with acute":"Latinsko malo slovo z sa akutom","Latin capital letter z with dot above":"Latinsko veliko slovo z sa taÄkom iznad","Latin small letter z with dot above":"Latinsko malo slovo z sa taÄkom iznad","Latin capital letter z with caron":"Latinsko veliko slovo z sa caron","Latin small letter z with caron":"Latinsko malo slovo z sa caron","Latin small letter long s":"Latinsko malo slovo dugaÄko s","Less-than sign":"Znak manje od","Greater-than sign":"Znak veće od","Less-than or equal to":"Znak manje od ili jednako","Greater-than or equal to":"Znak veće od ili jednako","En dash":"En crtica","Em dash":"Em crtica",Macron:"Macron",Overline:"Overline","Degree sign":"Znak stepena","Minus sign":"Znak minus","Plus-minus sign":"Znak plus-minus","Division sign":"Znak divizije","Fraction slash":"Crta frakcije","Multiplication sign":"Znak množenja","Latin small letter f with hook":"Latinsko malo slovo f sa kukom",Integral:"Integral","N-ary summation":"N-ari zbir",Infinity:"BeskonaÄnost","Square root":"Kvadratni koren","Tilde operator":"Tilde operator","Approximately equal to":"Otprilike jednako","Almost equal to":"Skoro jednako","Not equal to":"Nejednako sa","Identical to":"IdentiÄan","Element of":"Element od","Not an element of":"Nije element","Contains as member":"Sadrži kao Älan","N-ary product":"N-ari proizvod","Logical and":"LogiÄki i","Logical or":"LogiÄki ili","Not sign":"Nije znak",Intersection:"Raskrsnica",Union:"Unija","Partial differential":"DelimiÄni diferencijal","For all":"Za sve","There exists":"Postoji","Empty set":"Prazan set",Nabla:"Nabla","Asterisk operator":"Asterisk operator","Proportional to":"Srazmerno",Angle:"Ugao","Vulgar fraction one quarter":"Vulgarna frakcija jedna Äetvrtina","Vulgar fraction one half":"Vulgarna frakcija jedna polovina","Vulgar fraction three quarters":"Vulgarna frakcija tri Äetvrtine","Single left-pointing angle quotation mark":"PojedinaÄni navodnik ugla levog pokazivanja","Single right-pointing angle quotation mark":"PojedinaÄni navodnik ugla desnog pokazivanja","Left-pointing double angle quotation mark":"Levi dvostrani navodnik dvostrukog ugla","Right-pointing double angle quotation mark":"Desni dvostrani navodnik dvostrukog ugla","Left single quotation mark":"Levi pojedinaÄni navodnik","Right single quotation mark":"Desni pojedinaÄni navodnik","Left double quotation mark":"Levi dvostruki navodnik","Right double quotation mark":"Desni dvostruki navodnik","Single low-9 quotation mark":"Jedan niski-9 navodnik","Double low-9 quotation mark":"Dvostruki niski-9 navodnik","Inverted exclamation mark":"Obrnuti uzviÄnik","Inverted question mark":"Obrnuti upitnik","Two dot leader":"Vodja sa dve taÄke","Horizontal ellipsis":"Horizontalna elipsa","Double dagger":"Dvostruki bodež","Per mille sign":"Znak per mile","Per ten thousand sign":"Znak za deset hiljada","Double exclamation mark":"Dvosrtuki uzviÄnik","Question exclamation mark":"Znak upitnika uzviÄnika","Exclamation question mark":"Znak uzviÄnika upitnika","Double question mark":"Dvostruki upitnik","Copyright sign":"Simbol autorskog prava","Registered sign":"Registrovani znak","Trade mark sign":"Znak brenda","Section sign":"Znak sekcija","Paragraph sign":"Znak paragraf","Reversed paragraph sign":"Obrnuti znak paragrafa","Character categories":"Kategorija karaktera",Styles:"Stilovi","Multiple styles":"ViÅ¡e stilova","Block styles":"Blok stilovi","Text styles":"Stilovi teksta","Insert table":"Dodaj tabelu","Header column":"Kolona za zaglavlje","Insert column left":"Dodaj kolonu levo","Insert column right":"Dodaj kolonu desno","Delete column":"BriÅ¡i kolonu","Select column":"Odaberi kolonu",Column:"Kolona","Header row":"Red za zaglavlje","Insert row below":"Dodaj red ispod","Insert row above":"Dodaj red iznad","Delete row":"BriÅ¡i red","Select row":"Odaberi red",Row:"Red","Merge cell up":"Spoj ćelije na gore","Merge cell right":"Spoj ćelije na desno","Merge cell down":"Spoj ćelije na dole","Merge cell left":"Spoj ćelije na levo","Split cell vertically":"Deli ćelije uspravno","Split cell horizontally":"Deli ćelije vodoravno","Merge cells":"Spoj ćelije","Table toolbar":"Tabela traka sa alatkama","Table properties":"Svojstva tabele","Cell properties":"Svojstva ćelije",Border:"Granica",Style:"Stil",Width:"Å irina",Height:"Visina",Color:"Boja",Background:"Pozadina",Padding:"Postavljanje",Dimensions:"Dimenzija","Table cell text alignment":"Poravnaj tekst u tabeli",Alignment:"Poravnanje","Horizontal text alignment toolbar":"Horizontalna traka sa alatkama za poravnavanje teksta","Vertical text alignment toolbar":"Vertikalna traka sa alatkama za poravnavanje teksta","Table alignment toolbar":"Traka sa alatkama za poravnavanje tabele",None:"Nijedan",Solid:"ÄŒvrst",Dotted:"Sa taÄkama",Dashed:"Razbijeno",Double:"Dvostruki",Groove:"Kolosek",Ridge:"Greben",Inset:"Prilog",Outset:"PoÄetak","Align cell text to the left":"Poravnajte tekst cÌelije levo","Align cell text to the center":"Poravnajte tekst cÌelije u sredinu","Align cell text to the right":"Poravnajte tekst cÌelije desno","Justify cell text":"Opravdajte tekst cÌelije","Align cell text to the top":"Poravnajte tekst cÌelije prema gore","Align cell text to the middle":"Poravnajte tekst cÌelije u sredinu","Align cell text to the bottom":"Poravnajte tekst cÌelije prema dole","Align table to the left":"Poravnajte tabelu na levu stranu","Center table":"Centar tabele","Align table to the right":"Poravnajte tabelu na desnu stranu","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Boja je nevažecÌa. PokuÅ¡ajte sa \"# FF0000\" ili \"rgb (255,0,0)\" ili \"crvena\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Vrednost je nevažecÌa. PokuÅ¡ajte sa „10pk“ ili „2em“ ili jednostavno „2“.","Color picker":"BiraÄ boja","Toggle caption off":"IskljuÄivanje natpisa","Toggle caption on":"UkljuÄite naslov","Enter table caption":"Unesite naslov tabele","Rich Text Editor":"ProÅ¡ireni ureÄ‘ivaÄ teksta","Editor editing area: %0":"Oblast za ureÄ‘ivanje urednika: %0","Edit block":"Blok ureÄ‘ivaÄ","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili",Next:"Sledeći",Previous:"Prethodni","Editor toolbar":"UreÄ‘ivaÄ traka sa alatkama","Dropdown toolbar":"Padajuća traka sa alatkama",Black:"Crna","Dim grey":"Bledo siva",Grey:"Siva","Light grey":"Svetlo siva",White:"Bela",Red:"Crvena",Orange:"Narandžasta",Yellow:"Žuta","Light green":"Svetlo zelena",Green:"Zelena",Aquamarine:"Zelenkastoplava",Turquoise:"Tirkizna","Light blue":"Svetloplava",Blue:"Plava",Purple:"LjubiÄasta","Editor block content toolbar":"Traka sa alatkama za blokiranje sadržaja ureÄ‘ivaÄa","Editor contextual toolbar":"Kontekstualna traka sa alatkama Editor",HEX:"HEX",Accept:"Prihvati","No results found":"Nije pronaÄ‘en nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"",Close:"",Undo:"PovlaÄenje",Redo:"Ponovo","Upload in progress":"Postavljanje u toku","Widget toolbar":"Видгет трака Ñа алаткама","Insert paragraph before block":"Уметните одломак пре блока","Insert paragraph after block":"Уметните одломак поÑле блока","Press Enter to type after or press Shift + Enter to type before the widget":"Pritisnite Enter da kucate posle ili pritisnite Shift + Enter da kucate pre vidžeta","Words: %0":"ReÄi: %0","Characters: %0":"Karakteri: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr.js index cf39553c34261e769cdaa1f674a6a75a6848d995..51a1ca8d906e2900580a60cea98404d4afa47dac 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sr.js @@ -1 +1 @@ -(function(d){ const l = d['sr'] = d['sr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Лево равнање","Align right":"ДеÑно равнање","Align center":"Централно равнанје",Justify:"ОбоÑтрано равнање","Text alignment":"Равнање текÑта","Text alignment toolbar":"Ðлатке за равнање текÑта",Bold:"Подебљано",Italic:"Курзив",Underline:"Подвучен",Code:"Код",Strikethrough:"Прецртан",Subscript:"Ð˜Ð½Ð´ÐµÐºÑ Ð´Ð¾Ð»Ðµ",Superscript:"Ð˜Ð½Ð´ÐµÐºÑ Ð³Ð¾Ñ€Ðµ","Block quote":"Цитат","Insert code block":"Додај блок кода","Plain text":"Обичан текÑÑ‚",Cancel:"ОдуÑтани",Clear:"ObriÅ¡i","Remove color":"Отклони боју","Restore default":"Врати подразумевано",Save:"Сачувај","Show more items":"Прикажи још Ñтавки","%0 of %1":"%0 of %1","Cannot upload file:":"ПоÑтављање фајла је неуÑпешно:","Rich Text Editor. Editing area: %0":"Уређивач обогаћеног текÑта.ПроÑтор за уређивање: %0","Insert with file manager":"Ubaci pomoću menadžera datoteka","Replace with file manager":"Zameni pomoću menadžera datoteka","Insert image with file manager":"Ubaci sliku pomoću menadžera datoteka","Replace image with file manager":"Zameni sliku pomoću menadžera datoteka","Find and replace":"Ðађи и замени","Find in text…":"Пронађи у текÑту… ",Find:"Пронаћи","Previous result":"Претходни резултат ","Next result":"Следећи резултат ",Replace:"Замени","Replace all":"Замени Ñве","Match case":"Подударање Ñлучај ","Whole words only":"Само целе речи ","Replace with…":"Замени Ñа…","Text to find must not be empty.":"ТекÑÑ‚ за проналажење не Ñме бити празан.","Tip: Find some text first in order to replace it.":"Савет: Прво пронађите неки текÑÑ‚ да биÑте га заменили. ","Advanced options":"Napredne opcije",Paragraph:"ПаÑуÑ",Heading:"Стилови","Choose heading":"Одреди Ñтил","Heading 1":"ÐаÑлов 1","Heading 2":"ÐаÑлов 2","Heading 3":"ÐаÑлов 3","Heading 4":"ÐаÑлов 4","Heading 5":"ÐаÑлов 5","Heading 6":"ÐаÑлов 6","Type your title":"Одредите наÑлов","Type or paste your content here.":"Упишите или налепите наÑлов","Horizontal line":"Хоризонтална разделна линија","HTML object":"ХТМЛ објекат ","Increase indent":"Повећај увлачење","Decrease indent":"Смањи увлачење",Unlink:"Отклони линк",Link:"Линк","Link URL":"УРЛ линк","Link image":"Линк Ñлике","Edit link":"ИÑправи линк","Open link in new tab":"Отвори линк у новом прозору","This link has no URL":"Линк не Ñадржи УРЛ","Open in a new tab":"Отвори у новој картици",Downloadable:"Могуће преузимање","Numbered List":"ЛиÑта Ñа бројевима","Bulleted List":"Ðабрајане лиÑте","To-do List":"ЛиÑта обавеза","Bulleted list styles toolbar":"Трака Ñа алаткама за набрајане лиÑте","Numbered list styles toolbar":"Трака Ñа алаткама за лиÑте Ñа бројевима","Toggle the disc list style":"Укључите / иÑкључите Ñтил лиÑте диÑкова","Toggle the circle list style":"Укључи / иÑкључи Ñтил лиÑте кругова","Toggle the square list style":"Укључи / иÑкључи Ñтил лиÑте квадрата","Toggle the decimal list style":"Укључи / иÑкључи Ñтил декадне лиÑте","Toggle the decimal with leading zero list style":"Пребаци децимални знак Ñа водећим Ñтилом лиÑте нула","Toggle the lower–roman list style":"Укључите/ иÑкључите Ñтил доње римÑке лиÑте","Toggle the upper–roman list style":"Укључите / иÑкључите Ñтил горње римÑке лиÑте","Toggle the lower–latin list style":"Укључите / иÑкључите Ñтил доње лиÑте латинице","Toggle the upper–latin list style":"Укључите / иÑкључите Ñтил горње лиÑте латинице",Disc:"ДиÑк",Circle:"Круг",Square:"Квадрат",Decimal:"Децимала","Decimal with leading zero":"Децимала Ñа нулом на почетку","Lower–roman":"Доњи - римÑки","Upper-roman":"Горњи - римÑки","Lower-latin":"Доњи - латинÑки","Upper-latin":"Горњи - латинÑки","List properties":"Ðаведите ÑвојÑтва ","Start at":"Почети у","Start index must be greater than 0.":"Почетни Ð¸Ð½Ð´ÐµÐºÑ Ð¼Ð¾Ñ€Ð° бити већи од 0. ","Reversed order":"Обрнути редоÑлед ","Remove Format":"Уклони форматирање","Select all":"Означи Ñве.","Show blocks":"Prikaži blokove",Source:"Извор","Special characters":"Специјални карактери",All:"Сви",Arrows:"Стрелице",Currency:"Валуте",Latin:"Латинични",Mathematical:"Maтематички",Text:"ТекÑÑ‚","leftwards simple arrow":"једноÑтавна Ñтрелица налево","rightwards simple arrow":"једноÑтавна Ñтрелица удеÑно","upwards simple arrow":"једноÑтавна Ñтрелица нагоре","downwards simple arrow":"једноÑтавна Ñтрелица надоле","leftwards double arrow":"Дупла Ñтрелица лево","rightwards double arrow":"Дупла Ñтрелица деÑно","upwards double arrow":"Дупла Ñтрелица према горе","downwards double arrow":"Дупла Ñтрелица према доле","leftwards dashed arrow":"Прекидана Ñтрелица лево","rightwards dashed arrow":"Прекидана Ñтрелица деÑно","upwards dashed arrow":"Прекидана Ñтрелица према горе","downwards dashed arrow":"Прекидана Ñтрелица према доле","leftwards arrow to bar":"Стрелица налево ка траци","rightwards arrow to bar":"Стрелица надеÑно ка траци","upwards arrow to bar":"Стрелица према горе ка траци","downwards arrow to bar":"Стрелица према доле ка траци","up down arrow with base":"Стрелица на доле Ñа базом","back with leftwards arrow above":"Ðазад Ñа Ñтрелицом лево","end with leftwards arrow above":"Завршите Ñтрелицом лево","on with exclamation mark with left right arrow above":"Укључено Ñа узвичником Ñа Ñтрелицомлево деÑно","soon with rightwards arrow above":"УÑкоро Ñа Ñтрелицом надеÑно","top with upwards arrow above":"Ðа врху Ñа Ñтрелицом према горе","Dollar sign":"Знак долара","Euro sign":"Знак еура","Yen sign":"Знак јена","Pound sign":"Знак фунти","Cent sign":"Знак цента","Euro-currency sign":"Знак валуте еура","Colon sign":"Двотачка","Cruzeiro sign":"Знак црузеиро","French franc sign":"Знак француÑког франака","Lira sign":"Знак лире","Currency sign":"Знак валуте","Bitcoin sign":"Знак биткиона","Mill sign":"Знак млна","Naira sign":"Знак наира","Peseta sign":"Знак пезета","Rupee sign":"Знак рупиа","Won sign":"Знак вон","New sheqel sign":"Знак нови шекел","Dong sign":"Знак донг","Kip sign":"Знак кип","Tugrik sign":"Знак тугрик","Drachma sign":"Знак драхма","German penny sign":"Знак немачки пени","Peso sign":"Знак пеÑо","Guarani sign":"Знак гуарани","Austral sign":"ÐуÑтрални знак","Hryvnia sign":"Знак гривна","Cedi sign":"Знак цеди","Livre tournois sign":"Знак ливре тоурноиÑ","Spesmilo sign":"Знак ÑпеÑмилио","Tenge sign":"Знак тенге","Indian rupee sign":"Знак индијÑке рупије","Turkish lira sign":"Знак турÑких лира","Nordic mark sign":"ÐордијÑки знак","Manat sign":"Знак манат","Ruble sign":"Знак рубле","Latin capital letter a with macron":"ЛатинÑко белико Ñлово а Ñа макроном","Latin small letter a with macron":"ЛатинÑко мало Ñлово а Ñа макроном","Latin capital letter a with breve":"ЛатинÑко велико Ñлово а Ñа бревом ","Latin small letter a with breve":"ЛатинÑко мало Ñлово а Ñа бревом","Latin capital letter a with ogonek":"ЛатинÑко велико Ñлово а Ñа огонек","Latin small letter a with ogonek":"ЛатинÑко мало Ñлово Ñ Ñа огонек","Latin capital letter c with acute":"ЛатинÑко велико Ñлово ц Ñа акутом","Latin small letter c with acute":"ЛатинÑко мало Ñлово ц Ñа акутом","Latin capital letter c with circumflex":"ЛатинÑко велико Ñлово ц Ñа цирцумфлекÑ","Latin small letter c with circumflex":"ЛатинÑко мало Ñлово ц Ñа цирцумфлекÑ","Latin capital letter c with dot above":"ЛатинÑко велико Ñлово ц Ñа тачком изнад","Latin small letter c with dot above":"ЛатинÑко мало Ñлвово ц Ñа тачком изнад","Latin capital letter c with caron":"ЛатинÑко велико Ñлово ц Ñа цароном","Latin small letter c with caron":"ЛатинÑко мало Ñлово ц Ñа цароном","Latin capital letter d with caron":"ЛатинÑко велико Ñлово д Ñа цароном","Latin small letter d with caron":"ЛатинÑко мало Ñлово д Ñа цароном","Latin capital letter d with stroke":"ЛатинÑко велико Ñлово д Ñа Ñтроке","Latin small letter d with stroke":"ЛатинÑко мало Ñлово д Ñа Ñтроке","Latin capital letter e with macron":"ЛатинÑко велико Ñлово е Ñа мацрон","Latin small letter e with macron":"ЛатинÑко мало Ñлово е Ñа мацрон","Latin capital letter e with breve":"ЛатинÑко велико Ñлово е Ñа бреве","Latin small letter e with breve":"ЛатинÑко мало Ñлово е Ñа бреве","Latin capital letter e with dot above":"ЛатинÑко велико Ñлово е Ñа тачком изнад","Latin small letter e with dot above":"ЛатинÑко мало Ñлово е Ñа тачком изнад","Latin capital letter e with ogonek":"ЛатинÑко велико Ñлово е Ñа огонек","Latin small letter e with ogonek":"ЛатинÑко мало Ñлво е Ñа огонек","Latin capital letter e with caron":"ЛатинÑко велико Ñлово е Ñа царон","Latin small letter e with caron":"ЛатинÑко мало Ñлово е Ñа царон","Latin capital letter g with circumflex":"ЛатинÑко велико Ñлово г Ñа цирцумфлекÑ","Latin small letter g with circumflex":"ЛатинÑко мало Ñлобо г Ñа цирцумфлекÑ","Latin capital letter g with breve":"ЛатинÑк велико Ñлово г Ñа бреве","Latin small letter g with breve":"ЛатинÑко мало Ñлово г Ñа бреве","Latin capital letter g with dot above":"ЛатинÑко велико Ñлово г Ñа тачком изнад","Latin small letter g with dot above":"ЛатинÑко мало Ñлово г Ñа тачком изнад","Latin capital letter g with cedilla":"ЛатинÑко велико Ñлово г Ñа цедилом","Latin small letter g with cedilla":"ЛатинÑко мало Ñлово г Ñа цедилом","Latin capital letter h with circumflex":"ЛатинÑко велико Ñлово Ñ… Ñа цирцумфлекÑ","Latin small letter h with circumflex":"ЛатинÑко мало Ñлово Ñ… Ñа цирцумфлекÑ","Latin capital letter h with stroke":"ЛатинÑко велико Ñлово Ñ… Ñа Ñтроке","Latin small letter h with stroke":"ЛатинÑко мало Ñлово Ñ… Ñа Ñтроке","Latin capital letter i with tilde":"ЛатинÑко велико Ñлово и Ñа тилдом","Latin small letter i with tilde":"ЛатинÑко мало Ñлово и Ñа тилдом","Latin capital letter i with macron":"ЛатинÑко велико Ñлово и Ñа мацрон","Latin small letter i with macron":"ЛатинÑко мало Ñлово и Ñа мацрон","Latin capital letter i with breve":"ЛатинÑко велико Ñлово и Ñа бреве","Latin small letter i with breve":"ЛатинÑко мало Ñлово и Ñа бреве","Latin capital letter i with ogonek":"ЛатинÑко велоко Ñлово и Ñа огонек","Latin small letter i with ogonek":"ЛатинÑко мало Ñлово и Ñа огонек","Latin capital letter i with dot above":"ЛатинÑко велико Ñлово и Ñа тачком изнад","Latin small letter dotless i":"ЛатинÑко мало Ñлово и без тачке","Latin capital ligature ij":"ЛатинÑка велика лигатура иј","Latin small ligature ij":"ЛатинÑка мала лигатура иј","Latin capital letter j with circumflex":"ЛатинÑко велико Ñлово ј Ñа цирцумфлекÑ","Latin small letter j with circumflex":"ЛатнцÑко мало Ñлово ј Ñа цирцумфлекÑ","Latin capital letter k with cedilla":"ЛатинÑко велико Ñлово к Ñа цедила","Latin small letter k with cedilla":"ЛатинÑко мало Ñлово к Ñа цедила","Latin small letter kra":"ЛатинÑко мало Ñлово кра","Latin capital letter l with acute":"ЛаинÑко велико Ñлово л Ñа акутом","Latin small letter l with acute":"ЛатинÑко мало Ñлово л Ñа акутом","Latin capital letter l with cedilla":"ЛатинÑко велико Ñлово л Ñа цедила","Latin small letter l with cedilla":"ЛатинÑко мало Ñлово л Ñа цедила","Latin capital letter l with caron":"ЛатинÑко велико Ñлово л Ñа царон","Latin small letter l with caron":"ЛатинÑко мало Ñлово л Ñа царон","Latin capital letter l with middle dot":"ЛатинÑко велико Ñлово л Ñа Ñреднјом тачком","Latin small letter l with middle dot":"ЛатинÑко мало Ñлово Ñа цреднјом тачком","Latin capital letter l with stroke":"ЛатинÑко велико Ñлово л Ñа Ñтроке","Latin small letter l with stroke":"ЛатинÑко мало Ñлово л Ñа Ñтроке","Latin capital letter n with acute":"ЛатинÑко влико Ñлово н Ñа акутом","Latin small letter n with acute":"ЛатинÑко мало Ñлово н Ñа акутом","Latin capital letter n with cedilla":"ЛатинÑко велико Ñлово н Ñа цедилом","Latin small letter n with cedilla":"ЛатинÑко мало Ñлово н Ñа цедилом","Latin capital letter n with caron":"ЛатинÑко велико Ñлово н Ñа царон","Latin small letter n with caron":"ЛатинÑко мало Ñлово н Ñа царон","Latin small letter n preceded by apostrophe":"ЛатинÑко мало Ñлово н које претходи апоÑтроф","Latin capital letter eng":"ЛатинÑко велико Ñлово енг","Latin small letter eng":"ЛатинÑко мало Ñлово енг","Latin capital letter o with macron":"ЛатинÑко велико Ñлово о Ñа мацрон","Latin small letter o with macron":"ЛатинÑко мало Ñлово о Ñа марон","Latin capital letter o with breve":"ЛатинÑко велико Ñлово о Ñа бреве","Latin small letter o with breve":"ЛатинÑко мало Ñлово о Ñа бреве","Latin capital letter o with double acute":"ЛатинÑко велико Ñлово о Ñа двоÑтруком акутом","Latin small letter o with double acute":"ЛатинÑко мало Ñлово о Ñа двоÑтруком акутом","Latin capital ligature oe":"ЛатинÑка велика лигатура ое","Latin small ligature oe":"ЛатинÑка мала лигатура ое","Latin capital letter r with acute":"ЛатинÑко велико Ñлово Ñ€ Ñа акутом","Latin small letter r with acute":"ЛатинÑко мало Ñлово Ñ€ Ñа акутом","Latin capital letter r with cedilla":"ЛатинÑко велико Ñлово Ñ€ Ñа цедила","Latin small letter r with cedilla":"ЛатинÑко мало Ñлово Ñ€ Ñа цедила","Latin capital letter r with caron":"ЛатинÑко велико Ñлово Ñ€ Ñа царон","Latin small letter r with caron":"ЛатинÑко мало Ñлово Ñ€ Ñа царон","Latin capital letter s with acute":"ЛатинÑко велоко Ñлово Ñ Ñа акутом","Latin small letter s with acute":"ЛатинÑко мало Ñлово Ñ Ñа акутом","Latin capital letter s with circumflex":"ЛатинÑко велико Ñлово Ñ Ñа цирцумфлекÑ","Latin small letter s with circumflex":"ЛатинÑко мало Ñлово Ñ Ñа цирцумфлекÑ","Latin capital letter s with cedilla":"ЛатинÑко велико Ñлово Ñ Ñа цедила","Latin small letter s with cedilla":"ЛатинÑко мало Ñлово Ñ Ñа цедила","Latin capital letter s with caron":"ЛатинÑко велико Ñлово Ñ Ñа царон","Latin small letter s with caron":"ЛатинÑко мало Ñлово Ñ Ñа царон","Latin capital letter t with cedilla":"ЛатинÑко велико Ñлово Ñ‚ Ñа цедила","Latin small letter t with cedilla":"ЛатинÑко мало Ñлово Ñ‚ Ñа цедила","Latin capital letter t with caron":"ЛатинÑко велико Ñлово Ñ‚ Ñа царон","Latin small letter t with caron":"ЛатинÑко мало Ñлово Ñ‚ Ñа царон","Latin capital letter t with stroke":"ЛатинÑко велико Ñлово Ñ‚ Ñа Ñтроке","Latin small letter t with stroke":"ЛатинÑко мало Ñлово Ñ‚ Ñа Ñтроке","Latin capital letter u with tilde":"ЛатинÑко велико Ñлово у Ñа тилдом","Latin small letter u with tilde":"ЛатинÑко мало Ñлово у Ñа тилдом","Latin capital letter u with macron":"ЛатинÑко велико Ñлово у Ñа мацрон","Latin small letter u with macron":"ЛатинÑко мало Ñлово у Ñа мацрон","Latin capital letter u with breve":"ЛатинÑко велико Ñлово у Ñа бреве","Latin small letter u with breve":"ЛатинÑко мало Ñлово у Ñа бреве","Latin capital letter u with ring above":"ЛатинÑко велико Ñлово у Ñ Ð¿Ñ€ÐµÑтеном изнад","Latin small letter u with ring above":"ЛатинÑко мало Ñлово у Ñ Ð¿Ñ€Ñтеном изнад","Latin capital letter u with double acute":"ЛатинÑко велико Ñлово у Ñ Ð´Ð²Ð¾Ñтруким акутом","Latin small letter u with double acute":"ЛатинÑко мало Ñлово у Ñ Ð´Ð²Ð¾Ñтруким акутом","Latin capital letter u with ogonek":"ЛатинÑко велико Ñлово у Ñа огонек","Latin small letter u with ogonek":"ЛатинÑко мало Ñлово у Ñа огонек","Latin capital letter w with circumflex":"ЛатинÑко велико Ñлово дупло в Ñа цирцумфлекÑ","Latin small letter w with circumflex":"ЛатинÑко мало Ñлово дупло в Ñа цирцумфлекÑ","Latin capital letter y with circumflex":"ЛатинÑко велико Ñлово ипÑилон Ñа цирцумфлекÑ","Latin small letter y with circumflex":"ЛатинÑко мало Ñлово ипÑилон Ñа цирцумфлекÑ","Latin capital letter y with diaeresis":"ЛатинÑко велико Ñлово ипÑилон Ñа дијарезом","Latin capital letter z with acute":"ЛатинÑко велико Ñлово з Ñа акутом","Latin small letter z with acute":"ЛатинÑко мало Ñлово з Ñа акутом","Latin capital letter z with dot above":"ЛатинÑко велико Ñлово з Ñа тачком изнад","Latin small letter z with dot above":"ЛатинÑко мало Ñлово з Ñа тачком изнад","Latin capital letter z with caron":"ЛатинÑко велико Ñлово з Ñа царон","Latin small letter z with caron":"ЛатинÑко мало Ñлово з Ñа царон","Latin small letter long s":"ЛатинÑко мало Ñлово дугачко Ñ","Less-than sign":"Знак мање од","Greater-than sign":"Знак веће од","Less-than or equal to":"Збак мање од или једнако","Greater-than or equal to":"Знак веће од или једнако","En dash":"Ен цртица","Em dash":"Ем цртица",Macron:"Мацрон",Overline:"Оверлине","Degree sign":"Знак Ñтепена","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плуÑ-минуÑ","Division sign":"Знак дивизије","Fraction slash":"Црта фракције","Multiplication sign":"Знак множења","Latin small letter f with hook":"ЛатинÑко мало Ñлово Ñ„ Ñа куком",Integral:"Интеграл","N-ary summation":"Ð-ари збир",Infinity:"БеÑконачноÑÑ‚","Square root":"Квадратни корен","Tilde operator":"Тилде оператор","Approximately equal to":"Отприлике једнако","Almost equal to":"Скоро једнако","Not equal to":"Ðеједнако Ñа","Identical to":"Идентичан","Element of":"Елемент од","Not an element of":"Ðије елемент","Contains as member":"Садржи као члан","N-ary product":"Ð-ари производ","Logical and":"Логички и","Logical or":"Локички или","Not sign":"Ðије знак",Intersection:"РаÑкрÑница",Union:"Унија","Partial differential":"Делимични диференцијал","For all":"За Ñве","There exists":"ПоÑтоји","Empty set":"Празан Ñет",Nabla:"Ðабла","Asterisk operator":"ÐÑÑ‚ÐµÑ€Ð¸ÐºÑ Ð¾Ð¿ÐµÑ€Ð°Ñ‚Ð¾Ñ€","Proportional to":"Сразмерно",Angle:"Угао","Vulgar fraction one quarter":"Вулгарна фракција једна четвртина","Vulgar fraction one half":"Вулгарна фракција једна половина","Vulgar fraction three quarters":"Вулгарна фрација три четвртине","Single left-pointing angle quotation mark":"Појединачни наводник угла левог показиванја","Single right-pointing angle quotation mark":"Појединачни наводник угла деÑног показивања","Left-pointing double angle quotation mark":"Леви двоÑтрани наводник двоÑтруког угла ","Right-pointing double angle quotation mark":"ДеÑни двоÑтрани наводик двоÑтруког угла ","Left single quotation mark":"Леви појединачни наводник","Right single quotation mark":"ДеÑни појединачни наводник","Left double quotation mark":"Леви двоÑтруки наводник","Right double quotation mark":"ДеÑни двоÑтруки наводник","Single low-9 quotation mark":"Један ниÑки -9 наводник","Double low-9 quotation mark":"ДвоÑтруки ниÑки -9 наводник","Inverted exclamation mark":"Обрнути узвичник","Inverted question mark":"Обрнути упитник","Two dot leader":"Вођа Ñа две тачке","Horizontal ellipsis":"Хоризонтална елипÑа","Double dagger":"ДвоÑтруки бодеж","Per mille sign":"Знак пер миле","Per ten thousand sign":"Знак за деÑет хиљада","Double exclamation mark":"ДвоÑтруки узвичник","Question exclamation mark":"Знак упитника узвичника","Exclamation question mark":"Знак узвичника упитника","Double question mark":"ДвоÑтруки упитник","Copyright sign":"Симбол ауторÑког права","Registered sign":"РегиÑтровани знак","Trade mark sign":"Знак бренда","Section sign":"Знак Ñелекција","Paragraph sign":"Знак параграф","Reversed paragraph sign":"Обрнути знак параграфа","Character categories":"Категорија карактера",Styles:"Стилови","Multiple styles":"Више Ñтилова","Block styles":"Блок Ñтилови","Text styles":"Стилови текÑта","Insert table":"Додај табелу","Header column":"Колона за заглавље","Insert column left":"Додај колону лево","Insert column right":"Додај колону деÑно","Delete column":"Бриши колону","Select column":"Изабери колону",Column:"Колона","Header row":"Ред за заглавлје","Insert row below":"Додај ред иÑпод","Insert row above":"Додај ред изнад","Delete row":"Бриши ред","Select row":"Изабери ред",Row:"Ред","Merge cell up":"Спој ћелије на горе","Merge cell right":"Спој ћелије на деÑно","Merge cell down":"Спој ћелије на доле","Merge cell left":"Cпој ћелије на лево","Split cell vertically":"Дели ћелије уÑправно","Split cell horizontally":"Дели ћелије водоравно","Merge cells":"Спој ћелије","Table toolbar":"Табела трака Ñа алаткама","Table properties":"СвојÑтва табеле","Cell properties":"СвојÑтва ћелије",Border:"Граница",Style:"Стил",Width:"Ширина",Height:"ВиÑина",Color:"Боја",Background:"Позадина",Padding:"ПоÑтављање",Dimensions:"Димензија","Table cell text alignment":"Поравнај текÑту табели",Alignment:"Поравнање","Horizontal text alignment toolbar":"Хоризонтална трака Ñа алаткама за поравнање текÑта","Vertical text alignment toolbar":"Вертикална трака Ñа алаткама за поравнање текÑта","Table alignment toolbar":"Трака Ñа алаткама за поравнање табеле",None:"Ðиједан",Solid:"ЧврÑÑ‚",Dotted:"Са тачкама",Dashed:"Разбијено",Double:"ДвоÑтруко",Groove:"КолоÑек",Ridge:"Гребен",Inset:"Прилог",Outset:"Почетак","Align cell text to the left":"Поравнајте текÑÑ‚ ћелије лево","Align cell text to the center":"Поравнајте текÑÑ‚ ћелије у Ñредину","Align cell text to the right":"Поравнајте текÑÑ‚ ћелије деÑно","Justify cell text":"Оправдајте текÑÑ‚ ћелије","Align cell text to the top":"Поравнајте текÑÑ‚ ћелије према горе","Align cell text to the middle":"Поравнајте текÑÑ‚ ћелије у Ñредину","Align cell text to the bottom":"Поравнајте текÑÑ‚ ћелије према доле","Align table to the left":"Поравнајте табелу на леву Ñтрану","Center table":"Центар табеле","Align table to the right":"Поравнајте табелу на деÑну Ñтрану","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Боја је неважећа. Покушајте Ñа \"#FF0000\" или \"rgb(255,0,0)\" или \"црвена\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ВредноÑÑ‚ је неважећа. Покушајте Ñа \"10px\" или \"2em\" или једноÑтавно \"2\".","Color picker":"Бирач боја","Toggle caption off":"ИÑкључивање натпиÑа ","Toggle caption on":"Укључите наÑлов ","Enter table caption":"УнеÑите наÑлов табеле ","Rich Text Editor":"Проширен уређивач текÑта","Editor editing area: %0":"ОблаÑÑ‚ за уређивање уредника: %0","Edit block":"Блок уређивач","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili",Next:"Следећи",Previous:"Претходни","Editor toolbar":"Уређивач трака Ñа алаткама","Dropdown toolbar":"Падајућа трака Ñа алаткама",Black:"Црна","Dim grey":"Бледо Ñива",Grey:"Сива","Light grey":"Светло Ñива",White:"Бела",Red:"Црвена",Orange:"ÐараџаÑта",Yellow:"Жута","Light green":"Светлозелена",Green:"Зелена",Aquamarine:"ЗеленкаÑтоплава",Turquoise:"Тиркизна","Light blue":"Светлоплава",Blue:"Плава",Purple:"ЉубичаÑта","Editor block content toolbar":"Трака Ñа алаткама за блокирање Ñадржаја уређивача","Editor contextual toolbar":"КонтекÑтуална трака Ñа алаткама Едитор",HEX:"HEX",Accept:"Prihvati","No results found":"Nije pronaÄ‘en nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"Dijalog za ureÄ‘ivanje",Close:"Zatvori",Undo:"Повлачење",Redo:"Поново","Upload in progress":"ПоÑтављање у току","Widget toolbar":"Widget traka sa alatkama","Insert paragraph before block":"Umetnite odlomak pre bloka","Insert paragraph after block":"Umetnite odlomak posle bloka","Press Enter to type after or press Shift + Enter to type before the widget":"ПритиÑните Ентер да куцате поÑле или притиÑните Схифт + Ентер да куцате пре виџета","Words: %0":"Речи: %0","Characters: %0":"Карактери: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sr'] = d['sr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Лево равнање","Align right":"ДеÑно равнање","Align center":"Централно равнанје",Justify:"ОбоÑтрано равнање","Text alignment":"Равнање текÑта","Text alignment toolbar":"Ðлатке за равнање текÑта",Bold:"Подебљано",Italic:"Курзив",Underline:"Подвучен",Code:"Код",Strikethrough:"Прецртан",Subscript:"Ð˜Ð½Ð´ÐµÐºÑ Ð´Ð¾Ð»Ðµ",Superscript:"Ð˜Ð½Ð´ÐµÐºÑ Ð³Ð¾Ñ€Ðµ","Block quote":"Цитат","Insert code block":"Додај блок кода","Plain text":"Обичан текÑÑ‚",Cancel:"ОдуÑтани",Clear:"ObriÅ¡i","Remove color":"Отклони боју","Restore default":"Врати подразумевано",Save:"Сачувај","Show more items":"Прикажи још Ñтавки","%0 of %1":"%0 of %1","Cannot upload file:":"ПоÑтављање фајла је неуÑпешно:","Rich Text Editor. Editing area: %0":"Уређивач обогаћеног текÑта.ПроÑтор за уређивање: %0","Insert with file manager":"Ubaci pomoću menadžera datoteka","Replace with file manager":"Zameni pomoću menadžera datoteka","Insert image with file manager":"Ubaci sliku pomoću menadžera datoteka","Replace image with file manager":"Zameni sliku pomoću menadžera datoteka","Find and replace":"Ðађи и замени","Find in text…":"Пронађи у текÑту… ",Find:"Пронаћи","Previous result":"Претходни резултат ","Next result":"Следећи резултат ",Replace:"Замени","Replace all":"Замени Ñве","Match case":"Подударање Ñлучај ","Whole words only":"Само целе речи ","Replace with…":"Замени Ñа…","Text to find must not be empty.":"ТекÑÑ‚ за проналажење не Ñме бити празан.","Tip: Find some text first in order to replace it.":"Савет: Прво пронађите неки текÑÑ‚ да биÑте га заменили. ","Advanced options":"Napredne opcije","Font Size":"Величина фонта",Tiny:"Ситно",Small:"Мало",Big:"Велико",Huge:"Огромно","Font Family":"Фонт",Default:"ОÑновни","Font Color":"Боја Ñлова","Font Background Color":"Боја позадине Ñлова","Document colors":"Боје документа",Paragraph:"ПаÑуÑ",Heading:"Стилови","Choose heading":"Одреди Ñтил","Heading 1":"ÐаÑлов 1","Heading 2":"ÐаÑлов 2","Heading 3":"ÐаÑлов 3","Heading 4":"ÐаÑлов 4","Heading 5":"ÐаÑлов 5","Heading 6":"ÐаÑлов 6","Type your title":"Одредите наÑлов","Type or paste your content here.":"Упишите или налепите наÑлов","Horizontal line":"Хоризонтална разделна линија","HTML object":"ХТМЛ објекат ","Increase indent":"Повећај увлачење","Decrease indent":"Смањи увлачење",Unlink:"Отклони линк",Link:"Линк","Link URL":"УРЛ линк","Link image":"Линк Ñлике","Edit link":"ИÑправи линк","Open link in new tab":"Отвори линк у новом прозору","This link has no URL":"Линк не Ñадржи УРЛ","Open in a new tab":"Отвори у новој картици",Downloadable:"Могуће преузимање","Numbered List":"ЛиÑта Ñа бројевима","Bulleted List":"Ðабрајане лиÑте","To-do List":"ЛиÑта обавеза","Bulleted list styles toolbar":"Трака Ñа алаткама за набрајане лиÑте","Numbered list styles toolbar":"Трака Ñа алаткама за лиÑте Ñа бројевима","Toggle the disc list style":"Укључите / иÑкључите Ñтил лиÑте диÑкова","Toggle the circle list style":"Укључи / иÑкључи Ñтил лиÑте кругова","Toggle the square list style":"Укључи / иÑкључи Ñтил лиÑте квадрата","Toggle the decimal list style":"Укључи / иÑкључи Ñтил декадне лиÑте","Toggle the decimal with leading zero list style":"Пребаци децимални знак Ñа водећим Ñтилом лиÑте нула","Toggle the lower–roman list style":"Укључите/ иÑкључите Ñтил доње римÑке лиÑте","Toggle the upper–roman list style":"Укључите / иÑкључите Ñтил горње римÑке лиÑте","Toggle the lower–latin list style":"Укључите / иÑкључите Ñтил доње лиÑте латинице","Toggle the upper–latin list style":"Укључите / иÑкључите Ñтил горње лиÑте латинице",Disc:"ДиÑк",Circle:"Круг",Square:"Квадрат",Decimal:"Децимала","Decimal with leading zero":"Децимала Ñа нулом на почетку","Lower–roman":"Доњи - римÑки","Upper-roman":"Горњи - римÑки","Lower-latin":"Доњи - латинÑки","Upper-latin":"Горњи - латинÑки","List properties":"Ðаведите ÑвојÑтва ","Start at":"Почети у","Start index must be greater than 0.":"Почетни Ð¸Ð½Ð´ÐµÐºÑ Ð¼Ð¾Ñ€Ð° бити већи од 0. ","Reversed order":"Обрнути редоÑлед ","Remove Format":"Уклони форматирање","Select all":"Означи Ñве.","Show blocks":"Prikaži blokove",Source:"Извор","Special characters":"Специјални карактери",All:"Сви",Arrows:"Стрелице",Currency:"Валуте",Latin:"Латинични",Mathematical:"Maтематички",Text:"ТекÑÑ‚","leftwards simple arrow":"једноÑтавна Ñтрелица налево","rightwards simple arrow":"једноÑтавна Ñтрелица удеÑно","upwards simple arrow":"једноÑтавна Ñтрелица нагоре","downwards simple arrow":"једноÑтавна Ñтрелица надоле","leftwards double arrow":"Дупла Ñтрелица лево","rightwards double arrow":"Дупла Ñтрелица деÑно","upwards double arrow":"Дупла Ñтрелица према горе","downwards double arrow":"Дупла Ñтрелица према доле","leftwards dashed arrow":"Прекидана Ñтрелица лево","rightwards dashed arrow":"Прекидана Ñтрелица деÑно","upwards dashed arrow":"Прекидана Ñтрелица према горе","downwards dashed arrow":"Прекидана Ñтрелица према доле","leftwards arrow to bar":"Стрелица налево ка траци","rightwards arrow to bar":"Стрелица надеÑно ка траци","upwards arrow to bar":"Стрелица према горе ка траци","downwards arrow to bar":"Стрелица према доле ка траци","up down arrow with base":"Стрелица на доле Ñа базом","back with leftwards arrow above":"Ðазад Ñа Ñтрелицом лево","end with leftwards arrow above":"Завршите Ñтрелицом лево","on with exclamation mark with left right arrow above":"Укључено Ñа узвичником Ñа Ñтрелицомлево деÑно","soon with rightwards arrow above":"УÑкоро Ñа Ñтрелицом надеÑно","top with upwards arrow above":"Ðа врху Ñа Ñтрелицом према горе","Dollar sign":"Знак долара","Euro sign":"Знак еура","Yen sign":"Знак јена","Pound sign":"Знак фунти","Cent sign":"Знак цента","Euro-currency sign":"Знак валуте еура","Colon sign":"Двотачка","Cruzeiro sign":"Знак црузеиро","French franc sign":"Знак француÑког франака","Lira sign":"Знак лире","Currency sign":"Знак валуте","Bitcoin sign":"Знак биткиона","Mill sign":"Знак млна","Naira sign":"Знак наира","Peseta sign":"Знак пезета","Rupee sign":"Знак рупиа","Won sign":"Знак вон","New sheqel sign":"Знак нови шекел","Dong sign":"Знак донг","Kip sign":"Знак кип","Tugrik sign":"Знак тугрик","Drachma sign":"Знак драхма","German penny sign":"Знак немачки пени","Peso sign":"Знак пеÑо","Guarani sign":"Знак гуарани","Austral sign":"ÐуÑтрални знак","Hryvnia sign":"Знак гривна","Cedi sign":"Знак цеди","Livre tournois sign":"Знак ливре тоурноиÑ","Spesmilo sign":"Знак ÑпеÑмилио","Tenge sign":"Знак тенге","Indian rupee sign":"Знак индијÑке рупије","Turkish lira sign":"Знак турÑких лира","Nordic mark sign":"ÐордијÑки знак","Manat sign":"Знак манат","Ruble sign":"Знак рубле","Latin capital letter a with macron":"ЛатинÑко белико Ñлово а Ñа макроном","Latin small letter a with macron":"ЛатинÑко мало Ñлово а Ñа макроном","Latin capital letter a with breve":"ЛатинÑко велико Ñлово а Ñа бревом ","Latin small letter a with breve":"ЛатинÑко мало Ñлово а Ñа бревом","Latin capital letter a with ogonek":"ЛатинÑко велико Ñлово а Ñа огонек","Latin small letter a with ogonek":"ЛатинÑко мало Ñлово Ñ Ñа огонек","Latin capital letter c with acute":"ЛатинÑко велико Ñлово ц Ñа акутом","Latin small letter c with acute":"ЛатинÑко мало Ñлово ц Ñа акутом","Latin capital letter c with circumflex":"ЛатинÑко велико Ñлово ц Ñа цирцумфлекÑ","Latin small letter c with circumflex":"ЛатинÑко мало Ñлово ц Ñа цирцумфлекÑ","Latin capital letter c with dot above":"ЛатинÑко велико Ñлово ц Ñа тачком изнад","Latin small letter c with dot above":"ЛатинÑко мало Ñлвово ц Ñа тачком изнад","Latin capital letter c with caron":"ЛатинÑко велико Ñлово ц Ñа цароном","Latin small letter c with caron":"ЛатинÑко мало Ñлово ц Ñа цароном","Latin capital letter d with caron":"ЛатинÑко велико Ñлово д Ñа цароном","Latin small letter d with caron":"ЛатинÑко мало Ñлово д Ñа цароном","Latin capital letter d with stroke":"ЛатинÑко велико Ñлово д Ñа Ñтроке","Latin small letter d with stroke":"ЛатинÑко мало Ñлово д Ñа Ñтроке","Latin capital letter e with macron":"ЛатинÑко велико Ñлово е Ñа мацрон","Latin small letter e with macron":"ЛатинÑко мало Ñлово е Ñа мацрон","Latin capital letter e with breve":"ЛатинÑко велико Ñлово е Ñа бреве","Latin small letter e with breve":"ЛатинÑко мало Ñлово е Ñа бреве","Latin capital letter e with dot above":"ЛатинÑко велико Ñлово е Ñа тачком изнад","Latin small letter e with dot above":"ЛатинÑко мало Ñлово е Ñа тачком изнад","Latin capital letter e with ogonek":"ЛатинÑко велико Ñлово е Ñа огонек","Latin small letter e with ogonek":"ЛатинÑко мало Ñлво е Ñа огонек","Latin capital letter e with caron":"ЛатинÑко велико Ñлово е Ñа царон","Latin small letter e with caron":"ЛатинÑко мало Ñлово е Ñа царон","Latin capital letter g with circumflex":"ЛатинÑко велико Ñлово г Ñа цирцумфлекÑ","Latin small letter g with circumflex":"ЛатинÑко мало Ñлобо г Ñа цирцумфлекÑ","Latin capital letter g with breve":"ЛатинÑк велико Ñлово г Ñа бреве","Latin small letter g with breve":"ЛатинÑко мало Ñлово г Ñа бреве","Latin capital letter g with dot above":"ЛатинÑко велико Ñлово г Ñа тачком изнад","Latin small letter g with dot above":"ЛатинÑко мало Ñлово г Ñа тачком изнад","Latin capital letter g with cedilla":"ЛатинÑко велико Ñлово г Ñа цедилом","Latin small letter g with cedilla":"ЛатинÑко мало Ñлово г Ñа цедилом","Latin capital letter h with circumflex":"ЛатинÑко велико Ñлово Ñ… Ñа цирцумфлекÑ","Latin small letter h with circumflex":"ЛатинÑко мало Ñлово Ñ… Ñа цирцумфлекÑ","Latin capital letter h with stroke":"ЛатинÑко велико Ñлово Ñ… Ñа Ñтроке","Latin small letter h with stroke":"ЛатинÑко мало Ñлово Ñ… Ñа Ñтроке","Latin capital letter i with tilde":"ЛатинÑко велико Ñлово и Ñа тилдом","Latin small letter i with tilde":"ЛатинÑко мало Ñлово и Ñа тилдом","Latin capital letter i with macron":"ЛатинÑко велико Ñлово и Ñа мацрон","Latin small letter i with macron":"ЛатинÑко мало Ñлово и Ñа мацрон","Latin capital letter i with breve":"ЛатинÑко велико Ñлово и Ñа бреве","Latin small letter i with breve":"ЛатинÑко мало Ñлово и Ñа бреве","Latin capital letter i with ogonek":"ЛатинÑко велоко Ñлово и Ñа огонек","Latin small letter i with ogonek":"ЛатинÑко мало Ñлово и Ñа огонек","Latin capital letter i with dot above":"ЛатинÑко велико Ñлово и Ñа тачком изнад","Latin small letter dotless i":"ЛатинÑко мало Ñлово и без тачке","Latin capital ligature ij":"ЛатинÑка велика лигатура иј","Latin small ligature ij":"ЛатинÑка мала лигатура иј","Latin capital letter j with circumflex":"ЛатинÑко велико Ñлово ј Ñа цирцумфлекÑ","Latin small letter j with circumflex":"ЛатнцÑко мало Ñлово ј Ñа цирцумфлекÑ","Latin capital letter k with cedilla":"ЛатинÑко велико Ñлово к Ñа цедила","Latin small letter k with cedilla":"ЛатинÑко мало Ñлово к Ñа цедила","Latin small letter kra":"ЛатинÑко мало Ñлово кра","Latin capital letter l with acute":"ЛаинÑко велико Ñлово л Ñа акутом","Latin small letter l with acute":"ЛатинÑко мало Ñлово л Ñа акутом","Latin capital letter l with cedilla":"ЛатинÑко велико Ñлово л Ñа цедила","Latin small letter l with cedilla":"ЛатинÑко мало Ñлово л Ñа цедила","Latin capital letter l with caron":"ЛатинÑко велико Ñлово л Ñа царон","Latin small letter l with caron":"ЛатинÑко мало Ñлово л Ñа царон","Latin capital letter l with middle dot":"ЛатинÑко велико Ñлово л Ñа Ñреднјом тачком","Latin small letter l with middle dot":"ЛатинÑко мало Ñлово Ñа цреднјом тачком","Latin capital letter l with stroke":"ЛатинÑко велико Ñлово л Ñа Ñтроке","Latin small letter l with stroke":"ЛатинÑко мало Ñлово л Ñа Ñтроке","Latin capital letter n with acute":"ЛатинÑко влико Ñлово н Ñа акутом","Latin small letter n with acute":"ЛатинÑко мало Ñлово н Ñа акутом","Latin capital letter n with cedilla":"ЛатинÑко велико Ñлово н Ñа цедилом","Latin small letter n with cedilla":"ЛатинÑко мало Ñлово н Ñа цедилом","Latin capital letter n with caron":"ЛатинÑко велико Ñлово н Ñа царон","Latin small letter n with caron":"ЛатинÑко мало Ñлово н Ñа царон","Latin small letter n preceded by apostrophe":"ЛатинÑко мало Ñлово н које претходи апоÑтроф","Latin capital letter eng":"ЛатинÑко велико Ñлово енг","Latin small letter eng":"ЛатинÑко мало Ñлово енг","Latin capital letter o with macron":"ЛатинÑко велико Ñлово о Ñа мацрон","Latin small letter o with macron":"ЛатинÑко мало Ñлово о Ñа марон","Latin capital letter o with breve":"ЛатинÑко велико Ñлово о Ñа бреве","Latin small letter o with breve":"ЛатинÑко мало Ñлово о Ñа бреве","Latin capital letter o with double acute":"ЛатинÑко велико Ñлово о Ñа двоÑтруком акутом","Latin small letter o with double acute":"ЛатинÑко мало Ñлово о Ñа двоÑтруком акутом","Latin capital ligature oe":"ЛатинÑка велика лигатура ое","Latin small ligature oe":"ЛатинÑка мала лигатура ое","Latin capital letter r with acute":"ЛатинÑко велико Ñлово Ñ€ Ñа акутом","Latin small letter r with acute":"ЛатинÑко мало Ñлово Ñ€ Ñа акутом","Latin capital letter r with cedilla":"ЛатинÑко велико Ñлово Ñ€ Ñа цедила","Latin small letter r with cedilla":"ЛатинÑко мало Ñлово Ñ€ Ñа цедила","Latin capital letter r with caron":"ЛатинÑко велико Ñлово Ñ€ Ñа царон","Latin small letter r with caron":"ЛатинÑко мало Ñлово Ñ€ Ñа царон","Latin capital letter s with acute":"ЛатинÑко велоко Ñлово Ñ Ñа акутом","Latin small letter s with acute":"ЛатинÑко мало Ñлово Ñ Ñа акутом","Latin capital letter s with circumflex":"ЛатинÑко велико Ñлово Ñ Ñа цирцумфлекÑ","Latin small letter s with circumflex":"ЛатинÑко мало Ñлово Ñ Ñа цирцумфлекÑ","Latin capital letter s with cedilla":"ЛатинÑко велико Ñлово Ñ Ñа цедила","Latin small letter s with cedilla":"ЛатинÑко мало Ñлово Ñ Ñа цедила","Latin capital letter s with caron":"ЛатинÑко велико Ñлово Ñ Ñа царон","Latin small letter s with caron":"ЛатинÑко мало Ñлово Ñ Ñа царон","Latin capital letter t with cedilla":"ЛатинÑко велико Ñлово Ñ‚ Ñа цедила","Latin small letter t with cedilla":"ЛатинÑко мало Ñлово Ñ‚ Ñа цедила","Latin capital letter t with caron":"ЛатинÑко велико Ñлово Ñ‚ Ñа царон","Latin small letter t with caron":"ЛатинÑко мало Ñлово Ñ‚ Ñа царон","Latin capital letter t with stroke":"ЛатинÑко велико Ñлово Ñ‚ Ñа Ñтроке","Latin small letter t with stroke":"ЛатинÑко мало Ñлово Ñ‚ Ñа Ñтроке","Latin capital letter u with tilde":"ЛатинÑко велико Ñлово у Ñа тилдом","Latin small letter u with tilde":"ЛатинÑко мало Ñлово у Ñа тилдом","Latin capital letter u with macron":"ЛатинÑко велико Ñлово у Ñа мацрон","Latin small letter u with macron":"ЛатинÑко мало Ñлово у Ñа мацрон","Latin capital letter u with breve":"ЛатинÑко велико Ñлово у Ñа бреве","Latin small letter u with breve":"ЛатинÑко мало Ñлово у Ñа бреве","Latin capital letter u with ring above":"ЛатинÑко велико Ñлово у Ñ Ð¿Ñ€ÐµÑтеном изнад","Latin small letter u with ring above":"ЛатинÑко мало Ñлово у Ñ Ð¿Ñ€Ñтеном изнад","Latin capital letter u with double acute":"ЛатинÑко велико Ñлово у Ñ Ð´Ð²Ð¾Ñтруким акутом","Latin small letter u with double acute":"ЛатинÑко мало Ñлово у Ñ Ð´Ð²Ð¾Ñтруким акутом","Latin capital letter u with ogonek":"ЛатинÑко велико Ñлово у Ñа огонек","Latin small letter u with ogonek":"ЛатинÑко мало Ñлово у Ñа огонек","Latin capital letter w with circumflex":"ЛатинÑко велико Ñлово дупло в Ñа цирцумфлекÑ","Latin small letter w with circumflex":"ЛатинÑко мало Ñлово дупло в Ñа цирцумфлекÑ","Latin capital letter y with circumflex":"ЛатинÑко велико Ñлово ипÑилон Ñа цирцумфлекÑ","Latin small letter y with circumflex":"ЛатинÑко мало Ñлово ипÑилон Ñа цирцумфлекÑ","Latin capital letter y with diaeresis":"ЛатинÑко велико Ñлово ипÑилон Ñа дијарезом","Latin capital letter z with acute":"ЛатинÑко велико Ñлово з Ñа акутом","Latin small letter z with acute":"ЛатинÑко мало Ñлово з Ñа акутом","Latin capital letter z with dot above":"ЛатинÑко велико Ñлово з Ñа тачком изнад","Latin small letter z with dot above":"ЛатинÑко мало Ñлово з Ñа тачком изнад","Latin capital letter z with caron":"ЛатинÑко велико Ñлово з Ñа царон","Latin small letter z with caron":"ЛатинÑко мало Ñлово з Ñа царон","Latin small letter long s":"ЛатинÑко мало Ñлово дугачко Ñ","Less-than sign":"Знак мање од","Greater-than sign":"Знак веће од","Less-than or equal to":"Збак мање од или једнако","Greater-than or equal to":"Знак веће од или једнако","En dash":"Ен цртица","Em dash":"Ем цртица",Macron:"Мацрон",Overline:"Оверлине","Degree sign":"Знак Ñтепена","Minus sign":"Знак минуÑ","Plus-minus sign":"Знак плуÑ-минуÑ","Division sign":"Знак дивизије","Fraction slash":"Црта фракције","Multiplication sign":"Знак множења","Latin small letter f with hook":"ЛатинÑко мало Ñлово Ñ„ Ñа куком",Integral:"Интеграл","N-ary summation":"Ð-ари збир",Infinity:"БеÑконачноÑÑ‚","Square root":"Квадратни корен","Tilde operator":"Тилде оператор","Approximately equal to":"Отприлике једнако","Almost equal to":"Скоро једнако","Not equal to":"Ðеједнако Ñа","Identical to":"Идентичан","Element of":"Елемент од","Not an element of":"Ðије елемент","Contains as member":"Садржи као члан","N-ary product":"Ð-ари производ","Logical and":"Логички и","Logical or":"Локички или","Not sign":"Ðије знак",Intersection:"РаÑкрÑница",Union:"Унија","Partial differential":"Делимични диференцијал","For all":"За Ñве","There exists":"ПоÑтоји","Empty set":"Празан Ñет",Nabla:"Ðабла","Asterisk operator":"ÐÑÑ‚ÐµÑ€Ð¸ÐºÑ Ð¾Ð¿ÐµÑ€Ð°Ñ‚Ð¾Ñ€","Proportional to":"Сразмерно",Angle:"Угао","Vulgar fraction one quarter":"Вулгарна фракција једна четвртина","Vulgar fraction one half":"Вулгарна фракција једна половина","Vulgar fraction three quarters":"Вулгарна фрација три четвртине","Single left-pointing angle quotation mark":"Појединачни наводник угла левог показиванја","Single right-pointing angle quotation mark":"Појединачни наводник угла деÑног показивања","Left-pointing double angle quotation mark":"Леви двоÑтрани наводник двоÑтруког угла ","Right-pointing double angle quotation mark":"ДеÑни двоÑтрани наводик двоÑтруког угла ","Left single quotation mark":"Леви појединачни наводник","Right single quotation mark":"ДеÑни појединачни наводник","Left double quotation mark":"Леви двоÑтруки наводник","Right double quotation mark":"ДеÑни двоÑтруки наводник","Single low-9 quotation mark":"Један ниÑки -9 наводник","Double low-9 quotation mark":"ДвоÑтруки ниÑки -9 наводник","Inverted exclamation mark":"Обрнути узвичник","Inverted question mark":"Обрнути упитник","Two dot leader":"Вођа Ñа две тачке","Horizontal ellipsis":"Хоризонтална елипÑа","Double dagger":"ДвоÑтруки бодеж","Per mille sign":"Знак пер миле","Per ten thousand sign":"Знак за деÑет хиљада","Double exclamation mark":"ДвоÑтруки узвичник","Question exclamation mark":"Знак упитника узвичника","Exclamation question mark":"Знак узвичника упитника","Double question mark":"ДвоÑтруки упитник","Copyright sign":"Симбол ауторÑког права","Registered sign":"РегиÑтровани знак","Trade mark sign":"Знак бренда","Section sign":"Знак Ñелекција","Paragraph sign":"Знак параграф","Reversed paragraph sign":"Обрнути знак параграфа","Character categories":"Категорија карактера",Styles:"Стилови","Multiple styles":"Више Ñтилова","Block styles":"Блок Ñтилови","Text styles":"Стилови текÑта","Insert table":"Додај табелу","Header column":"Колона за заглавље","Insert column left":"Додај колону лево","Insert column right":"Додај колону деÑно","Delete column":"Бриши колону","Select column":"Изабери колону",Column:"Колона","Header row":"Ред за заглавлје","Insert row below":"Додај ред иÑпод","Insert row above":"Додај ред изнад","Delete row":"Бриши ред","Select row":"Изабери ред",Row:"Ред","Merge cell up":"Спој ћелије на горе","Merge cell right":"Спој ћелије на деÑно","Merge cell down":"Спој ћелије на доле","Merge cell left":"Cпој ћелије на лево","Split cell vertically":"Дели ћелије уÑправно","Split cell horizontally":"Дели ћелије водоравно","Merge cells":"Спој ћелије","Table toolbar":"Табела трака Ñа алаткама","Table properties":"СвојÑтва табеле","Cell properties":"СвојÑтва ћелије",Border:"Граница",Style:"Стил",Width:"Ширина",Height:"ВиÑина",Color:"Боја",Background:"Позадина",Padding:"ПоÑтављање",Dimensions:"Димензија","Table cell text alignment":"Поравнај текÑту табели",Alignment:"Поравнање","Horizontal text alignment toolbar":"Хоризонтална трака Ñа алаткама за поравнање текÑта","Vertical text alignment toolbar":"Вертикална трака Ñа алаткама за поравнање текÑта","Table alignment toolbar":"Трака Ñа алаткама за поравнање табеле",None:"Ðиједан",Solid:"ЧврÑÑ‚",Dotted:"Са тачкама",Dashed:"Разбијено",Double:"ДвоÑтруко",Groove:"КолоÑек",Ridge:"Гребен",Inset:"Прилог",Outset:"Почетак","Align cell text to the left":"Поравнајте текÑÑ‚ ћелије лево","Align cell text to the center":"Поравнајте текÑÑ‚ ћелије у Ñредину","Align cell text to the right":"Поравнајте текÑÑ‚ ћелије деÑно","Justify cell text":"Оправдајте текÑÑ‚ ћелије","Align cell text to the top":"Поравнајте текÑÑ‚ ћелије према горе","Align cell text to the middle":"Поравнајте текÑÑ‚ ћелије у Ñредину","Align cell text to the bottom":"Поравнајте текÑÑ‚ ћелије према доле","Align table to the left":"Поравнајте табелу на леву Ñтрану","Center table":"Центар табеле","Align table to the right":"Поравнајте табелу на деÑну Ñтрану","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Боја је неважећа. Покушајте Ñа \"#FF0000\" или \"rgb(255,0,0)\" или \"црвена\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ВредноÑÑ‚ је неважећа. Покушајте Ñа \"10px\" или \"2em\" или једноÑтавно \"2\".","Color picker":"Бирач боја","Toggle caption off":"ИÑкључивање натпиÑа ","Toggle caption on":"Укључите наÑлов ","Enter table caption":"УнеÑите наÑлов табеле ","Rich Text Editor":"Проширен уређивач текÑта","Editor editing area: %0":"ОблаÑÑ‚ за уређивање уредника: %0","Edit block":"Блок уређивач","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili",Next:"Следећи",Previous:"Претходни","Editor toolbar":"Уређивач трака Ñа алаткама","Dropdown toolbar":"Падајућа трака Ñа алаткама",Black:"Црна","Dim grey":"Бледо Ñива",Grey:"Сива","Light grey":"Светло Ñива",White:"Бела",Red:"Црвена",Orange:"ÐараџаÑта",Yellow:"Жута","Light green":"Светлозелена",Green:"Зелена",Aquamarine:"ЗеленкаÑтоплава",Turquoise:"Тиркизна","Light blue":"Светлоплава",Blue:"Плава",Purple:"ЉубичаÑта","Editor block content toolbar":"Трака Ñа алаткама за блокирање Ñадржаја уређивача","Editor contextual toolbar":"КонтекÑтуална трака Ñа алаткама Едитор",HEX:"HEX",Accept:"Prihvati","No results found":"Nije pronaÄ‘en nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"Dijalog za ureÄ‘ivanje",Close:"Zatvori",Undo:"Повлачење",Redo:"Поново","Upload in progress":"ПоÑтављање у току","Widget toolbar":"Widget traka sa alatkama","Insert paragraph before block":"Umetnite odlomak pre bloka","Insert paragraph after block":"Umetnite odlomak posle bloka","Press Enter to type after or press Shift + Enter to type before the widget":"ПритиÑните Ентер да куцате поÑле или притиÑните Схифт + Ентер да куцате пре виџета","Words: %0":"Речи: %0","Characters: %0":"Карактери: %0"} );l.getPluralForm=function(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sv.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sv.js index 086a68d784e27c137594c92f80ac43af5b6f9303..d0b90652226ec4942f8bcfbf009c95c79a505090 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sv.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/sv.js @@ -1 +1 @@ -(function(d){ const l = d['sv'] = d['sv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Vänsterjustera","Align right":"Högerjustera","Align center":"Centrera",Justify:"Justera till marginaler","Text alignment":"Textjustering","Text alignment toolbar":"Verktygsfält för textjustering",Bold:"Fet",Italic:"Kursiv",Underline:"Understrykning",Code:"Kod",Strikethrough:"Genomstruken",Subscript:"Nedsänkta tecken",Superscript:"Upphöjda tecken","Block quote":"Blockcitat","Insert code block":"Infoga kodblock","Plain text":"Vanlig text",Cancel:"Avbryt",Clear:"Rensa","Remove color":"Ta bort färg","Restore default":"Ã…terställ standard",Save:"Spara","Show more items":"Visa fler objekt","%0 of %1":"%0 av %1","Cannot upload file:":"Kan inte ladda upp fil:","Rich Text Editor. Editing area: %0":"RTF-redigerare. RedigeringsomrÃ¥de: %0","Insert with file manager":"Infoga genom filhanteraren","Replace with file manager":"Ersätt genom filhanteraren","Insert image with file manager":"Infoga bild genom filhanteraren","Replace image with file manager":"Ersätt bild genom filhanteraren","Find and replace":"Hitta och ersätt","Find in text…":"Hitta i text ...",Find:"Hitta","Previous result":"FöregÃ¥ende träff","Next result":"Nästa träff",Replace:"Ersätt","Replace all":"Ersätt alla","Match case":"Matcha versaler","Whole words only":"Enbart hela ord","Replace with…":"Ersätt med ...","Text to find must not be empty.":"Text att hitta fÃ¥r inte vara tom.","Tip: Find some text first in order to replace it.":"Tips: Hitta nÃ¥gon text först för att ersätta den.","Advanced options":"Avancerade alternativ",Paragraph:"Paragraf",Heading:"Rubrik","Choose heading":"Välj rubrik","Heading 1":"Rubrik 1","Heading 2":"Rubrik 2","Heading 3":"Rubrik 3","Heading 4":"Rubrik 4","Heading 5":"Rubrik 5","Heading 6":"Rubrik 6","Type your title":"Skriv in rubriken","Type or paste your content here.":"Skriv eller klistra in ditt innehÃ¥ll här.","Horizontal line":"Horisontell linje","HTML object":"HTML-objekt","Increase indent":"Öka indrag","Decrease indent":"Minska indrag",Unlink:"Ta bort länk",Link:"Länk","Link URL":"Länkens URL","Link image":"Länka bild","Edit link":"Redigera länk","Open link in new tab":"Öppna länk i ny flik","This link has no URL":"Denna länk saknar URL","Open in a new tab":"Öppna i en ny flik",Downloadable:"Nedladdningsbar","Numbered List":"Numrerad lista","Bulleted List":"Punktlista","To-do List":"Att-göra-lista","Bulleted list styles toolbar":"Verktygsfält för punktlistor","Numbered list styles toolbar":"Verktygsfält för numrerade listor","Toggle the disc list style":"Växla till disklisttypen","Toggle the circle list style":"Växla till cirkellisttypen","Toggle the square list style":"Växla till fyrkantslisttypen","Toggle the decimal list style":"Växla till decimallisttypen","Toggle the decimal with leading zero list style":"Växla till listtypen decimal-med-inledande-nolla","Toggle the lower–roman list style":"Växla till listtypen romerska gemener","Toggle the upper–roman list style":"Växla till listtypen romerska versaler","Toggle the lower–latin list style":"Växla till listtypen latinska gemener","Toggle the upper–latin list style":"Växla till listtypen latinska versaler ",Disc:"Disk",Circle:"Cirkel",Square:"Fyrkant",Decimal:"Decimal","Decimal with leading zero":"Decimal med inledande nolla","Lower–roman":"Romerska gemener","Upper-roman":"Romerska versaler","Lower-latin":"Latinska gemener","Upper-latin":"Latinska versaler","List properties":"Listegenskaper","Start at":"Börja pÃ¥","Start index must be greater than 0.":"Startindex mÃ¥ste vara större än 0.","Reversed order":"Byt riktning","Remove Format":"Radera formatering","Select all":"Välj alla","Show blocks":"Visa block",Source:"Källa","Special characters":"Specialtecken",All:"Alla",Arrows:"Pilar",Currency:"Valuta",Latin:"Latinska",Mathematical:"Matematiska",Text:"Text","leftwards simple arrow":"enkel vänsterpil","rightwards simple arrow":"enkel högerpil","upwards simple arrow":"enkel uppÃ¥tpil","downwards simple arrow":"enkel nedÃ¥tpil","leftwards double arrow":"dubbelpil Ã¥t vänster","rightwards double arrow":"dubbelpil Ã¥t höger","upwards double arrow":"dubbelpil uppÃ¥t","downwards double arrow":"dubbelpil nedÃ¥t","leftwards dashed arrow":"streckad pil Ã¥t vänster","rightwards dashed arrow":"streckad pil Ã¥t höger","upwards dashed arrow":"streckad pil uppÃ¥t","downwards dashed arrow":"streckad pil nedÃ¥t","leftwards arrow to bar":"pil Ã¥t vänster till baren","rightwards arrow to bar":"pil Ã¥t höger till bar","upwards arrow to bar":"uppÃ¥triktad pil till streck","downwards arrow to bar":"pil nedÃ¥t för att sätta en bar","up down arrow with base":"upp ner pil med bas","back with leftwards arrow above":"tillbaka med pil Ã¥t vänster ovanför","end with leftwards arrow above":"avsluta med en pil Ã¥t vänster ovanför","on with exclamation mark with left right arrow above":"pÃ¥ med utropstecken med vänster högerpil ovanför","soon with rightwards arrow above":"snart med högerpilen ovan","top with upwards arrow above":"överst med en uppÃ¥triktad pil ovanför","Dollar sign":"Dollartecken","Euro sign":"Euro-skylt","Yen sign":"Yen-tecken","Pound sign":"Pundskyltning","Cent sign":"Cent-tecken","Euro-currency sign":"Tecken pÃ¥ euro-valuta","Colon sign":"Colon-tecken","Cruzeiro sign":"Kryssningsskylt","French franc sign":"Franska franc tecken","Lira sign":"Lira-tecken","Currency sign":"Valutateknik","Bitcoin sign":"Bitcoin-tecken","Mill sign":"Kvarnskylt","Naira sign":"Naira-tecken","Peseta sign":"Peseta-tecken","Rupee sign":"Tecken pÃ¥ rupier","Won sign":"Vunnit tecken","New sheqel sign":"Ny sheqel-skylt","Dong sign":"Dong-tecken","Kip sign":"Kip-tecken","Tugrik sign":"Tugrik-tecken","Drachma sign":"Drachma tecken","German penny sign":"Tyska penny-tecken","Peso sign":"Peso-tecken","Guarani sign":"Guarani-tecken","Austral sign":"Australisk skylt","Hryvnia sign":"Hryvnia tecken","Cedi sign":"Cedi-tecken","Livre tournois sign":"Turneringens bokskylt","Spesmilo sign":"Spesmilo skylt","Tenge sign":"Tenge-tecken","Indian rupee sign":"Indisk rupie tecken","Turkish lira sign":"Turkiska liran tecken","Nordic mark sign":"Nordiskt märke tecken","Manat sign":"Manat-tecken","Ruble sign":"Rubel tecken","Latin capital letter a with macron":"Den latinska storbokstaven a med makron","Latin small letter a with macron":"Latin liten bokstav a med makron","Latin capital letter a with breve":"Den latinska storbokstaven a med breve","Latin small letter a with breve":"Den latinska lilla bokstaven a med breve","Latin capital letter a with ogonek":"Den latinska huvudbokstaven a med ogonek","Latin small letter a with ogonek":"Den latinska lilla bokstaven a med ogonek","Latin capital letter c with acute":"Den latinska storbokstaven c med akut","Latin small letter c with acute":"Den latinska lilla bokstaven c med akut","Latin capital letter c with circumflex":"Den latinska storbokstaven c med omljud","Latin small letter c with circumflex":"Den latinska lilla bokstaven c med circumflex","Latin capital letter c with dot above":"Latinsk huvudbokstav c med punkt ovan","Latin small letter c with dot above":"Den latinska lilla bokstaven c med en punkt ovanför","Latin capital letter c with caron":"Den latinska storbokstaven c med caron","Latin small letter c with caron":"Den latinska lilla bokstaven c med caron","Latin capital letter d with caron":"Latin stor bokstav d med caron","Latin small letter d with caron":"Latin liten bokstav d med caron","Latin capital letter d with stroke":"Latin stor bokstav d med streck","Latin small letter d with stroke":"Latin liten bokstav d med streck","Latin capital letter e with macron":"Latinskt huvudstadbrev e med macron","Latin small letter e with macron":"Den latinska lilla bokstaven e med makron","Latin capital letter e with breve":"Den latinska storbokstaven e med breve","Latin small letter e with breve":"Den latinska lilla bokstaven e med breve","Latin capital letter e with dot above":"Latinsk huvudbokstav e med punkt ovan","Latin small letter e with dot above":"Den latinska lilla bokstaven e med en punkt ovanför","Latin capital letter e with ogonek":"Den latinska storbokstaven e med ogonek","Latin small letter e with ogonek":"Den latinska lilla bokstaven e med ogonek","Latin capital letter e with caron":"Latin stor bokstav e med caron","Latin small letter e with caron":"Den latinska lilla bokstaven e med caron","Latin capital letter g with circumflex":"Den latinska storbokstaven g med omljud","Latin small letter g with circumflex":"Den latinska lilla bokstaven g med omljud","Latin capital letter g with breve":"Den latinska storbokstaven g med breve","Latin small letter g with breve":"Den latinska lilla bokstaven g med breve","Latin capital letter g with dot above":"Latinsk huvudbokstav g med punkt ovan","Latin small letter g with dot above":"Den latinska lilla bokstaven g med en punkt ovanför","Latin capital letter g with cedilla":"Den latinska storbokstaven g med cedilla","Latin small letter g with cedilla":"Den latinska lilla bokstaven g med cedilla","Latin capital letter h with circumflex":"Latinsk huvudbokstav h med circumflex","Latin small letter h with circumflex":"Den latinska lilla bokstaven h med omljud","Latin capital letter h with stroke":"Latin stor bokstav h med streck","Latin small letter h with stroke":"Latin liten bokstav h med streck","Latin capital letter i with tilde":"Den latinska storbokstaven i med tilde","Latin small letter i with tilde":"Den latinska lilla bokstaven i med tilde","Latin capital letter i with macron":"Den latinska storbokstaven i med makron","Latin small letter i with macron":"Den latinska lilla bokstaven i med makron","Latin capital letter i with breve":"Den latinska storbokstaven i med breve","Latin small letter i with breve":"Den latinska lilla bokstaven i med breve","Latin capital letter i with ogonek":"Den latinska storbokstaven i med ogonek","Latin small letter i with ogonek":"Den latinska lilla bokstaven i med ogonek","Latin capital letter i with dot above":"Latinsk stor bokstav i med prick ovanför","Latin small letter dotless i":"latinsk liten bokstav utan punkt i","Latin capital ligature ij":"Latinisk huvudbokstavsligatur ij","Latin small ligature ij":"latinsk liten ligatur ij","Latin capital letter j with circumflex":"Den latinska storbokstaven j med omljud","Latin small letter j with circumflex":"Den latinska lilla bokstaven j med circumflex","Latin capital letter k with cedilla":"Den latinska storbokstaven k med cedilla","Latin small letter k with cedilla":"Den latinska lilla bokstaven k med cedilla","Latin small letter kra":"Den latinska lilla bokstaven kra","Latin capital letter l with acute":"Den latinska storbokstaven l med akut","Latin small letter l with acute":"Den latinska lilla bokstaven l med akut","Latin capital letter l with cedilla":"Den latinska storbokstaven l med cedilla","Latin small letter l with cedilla":"Den latinska lilla bokstaven l med cedilla","Latin capital letter l with caron":"Latin stor bokstav l med caron","Latin small letter l with caron":"Den latinska lilla bokstaven l med caron","Latin capital letter l with middle dot":"Latinsk huvudbokstav l med mittpunkt","Latin small letter l with middle dot":"Latinsk liten bokstav l med mittpunkt","Latin capital letter l with stroke":"Latinska huvudbokstaven l med streck","Latin small letter l with stroke":"Latinska lilla bokstaven l med streck","Latin capital letter n with acute":"Den latinska huvudbokstaven n med akut","Latin small letter n with acute":"Den latinska lilla bokstaven n med akut","Latin capital letter n with cedilla":"Den latinska storbokstaven n med cedilla","Latin small letter n with cedilla":"Den latinska lilla bokstaven n med cedilla","Latin capital letter n with caron":"Den latinska huvudbokstaven n med caron","Latin small letter n with caron":"Den latinska lilla bokstaven n med caron","Latin small letter n preceded by apostrophe":"Den latinska lilla bokstaven n föregÃ¥s av en apostrof","Latin capital letter eng":"Latinsk stor bokstav eng","Latin small letter eng":"Latin liten bokstav eng","Latin capital letter o with macron":"Den latinska storbokstaven o med makron","Latin small letter o with macron":"Den latinska lilla bokstaven o med makron","Latin capital letter o with breve":"Den latinska storbokstaven o med breve","Latin small letter o with breve":"Den latinska lilla bokstaven o med breve","Latin capital letter o with double acute":"Latinsk huvudbokstav o med dubbel akut","Latin small letter o with double acute":"Den latinska lilla bokstaven o med dubbel spets","Latin capital ligature oe":"Latinsk huvudboksligatur oe","Latin small ligature oe":"Latin liten ligatur oe","Latin capital letter r with acute":"Latinsk huvudbokstav r med akut","Latin small letter r with acute":"Den latinska lilla bokstaven r med akut","Latin capital letter r with cedilla":"Den latinska storbokstaven r med cedilla","Latin small letter r with cedilla":"Den latinska lilla bokstaven r med cedilla","Latin capital letter r with caron":"Latinsk huvudstadbokstav r med caron","Latin small letter r with caron":"Den latinska lilla bokstaven r med caron","Latin capital letter s with acute":"Latinskt huvudbrev s med akut","Latin small letter s with acute":"Den latinska lilla bokstaven s med akut","Latin capital letter s with circumflex":"Den latinska storbokstaven s med circumflex","Latin small letter s with circumflex":"Latinska smÃ¥ bokstäver s med circumflex","Latin capital letter s with cedilla":"Latinsk huvudbokstav s med cedilla","Latin small letter s with cedilla":"Latinska smÃ¥ bokstäver s med cedilla","Latin capital letter s with caron":"Latin stor bokstav s med caron","Latin small letter s with caron":"Latinska smÃ¥ brev s med caron","Latin capital letter t with cedilla":"Den latinska storbokstaven t med cedilla","Latin small letter t with cedilla":"Den latinska lilla bokstaven t med cedilla","Latin capital letter t with caron":"Den latinska storbokstaven t med caron","Latin small letter t with caron":"Den latinska lilla bokstaven t med caron","Latin capital letter t with stroke":"Latin stor bokstav t med streck","Latin small letter t with stroke":"Latin liten bokstav t med streck","Latin capital letter u with tilde":"Den latinska storbokstaven u med tilde","Latin small letter u with tilde":"Den latinska lilla bokstaven u med tilde","Latin capital letter u with macron":"Den latinska storbokstaven u med makron","Latin small letter u with macron":"Den latinska lilla bokstaven u med makron","Latin capital letter u with breve":"Den latinska storbokstaven u med breve","Latin small letter u with breve":"Den latinska lilla bokstaven u med breve","Latin capital letter u with ring above":"Latinsk versalbokstav u med ring ovanför","Latin small letter u with ring above":"Latin liten bokstav u med ring ovanför","Latin capital letter u with double acute":"Den latinska storbokstaven u med dubbel spets","Latin small letter u with double acute":"Den latinska lilla bokstaven u med dubbel spets","Latin capital letter u with ogonek":"Den latinska storbokstaven u med ogonek","Latin small letter u with ogonek":"Den latinska lilla bokstaven u med ogonek","Latin capital letter w with circumflex":"Den latinska storbokstaven w med omljud","Latin small letter w with circumflex":"Den latinska lilla bokstaven w med omljud","Latin capital letter y with circumflex":"Den latinska versalbokstaven y med circumflex","Latin small letter y with circumflex":"Den latinska lilla bokstaven y med circumflex","Latin capital letter y with diaeresis":"Den latinska storbokstaven y med diaeresis","Latin capital letter z with acute":"Den latinska storbokstaven z med akut","Latin small letter z with acute":"Den latinska lilla bokstaven z med akut","Latin capital letter z with dot above":"Latinsk versalbokstav z med punkt ovanför","Latin small letter z with dot above":"Den latinska lilla bokstaven z med en punkt ovanför","Latin capital letter z with caron":"Den latinska storbokstaven z med caron","Latin small letter z with caron":"Den latinska lilla bokstaven z med caron","Latin small letter long s":"Latin liten bokstav lÃ¥ng s","Less-than sign":"Mindre än-tecken","Greater-than sign":"Större än-tecken","Less-than or equal to":"Mindre än eller lika med","Greater-than or equal to":"Större än eller lika med","En dash":"Ett streck","Em dash":"Em streck",Macron:"Macron",Overline:"Överlinje","Degree sign":"Gradbeteckning","Minus sign":"Minustecken","Plus-minus sign":"Plustecken","Division sign":"Tecken pÃ¥ en avdelning","Fraction slash":"Fraktion snedstreck","Multiplication sign":"Multiplikationstecken","Latin small letter f with hook":"Latin liten bokstav f med krok",Integral:"Integrerad","N-ary summation":"N-ständig summering",Infinity:"Oändlighet","Square root":"Kvadratrot","Tilde operator":"Tilde-operatör","Approximately equal to":"Ungefär lika med","Almost equal to":"Nästan lika med","Not equal to":"Inte lika med","Identical to":"Identisk med","Element of":"Element av","Not an element of":"Inte en del av","Contains as member":"InnehÃ¥ller som medlem","N-ary product":"N-ary produkt","Logical and":"Logisk och","Logical or":"Logisk eller","Not sign":"Inte underteckna",Intersection:"Korsning",Union:"Unionen","Partial differential":"Partiell differential","For all":"För alla","There exists":"Tom uppsättning","Empty set":"Tom uppsättning",Nabla:"Nabla","Asterisk operator":"Asteriskoperatör","Proportional to":"Proportionerligt till",Angle:"Vinkel","Vulgar fraction one quarter":"Vulgärfraktion en fjärdedel","Vulgar fraction one half":"Vulgärfraktion hälften","Vulgar fraction three quarters":"Vulgärfraktion tre fjärdedelar","Single left-pointing angle quotation mark":"Enbart vänsterpekande vinkelhängetecken","Single right-pointing angle quotation mark":"Enbart högerpekande vinkelstämplat citationstecken","Left-pointing double angle quotation mark":"Vänsterpekande dubbelt vinklat citationstecken","Right-pointing double angle quotation mark":"Högerpekande dubbelt vinklat citationstecken","Left single quotation mark":"Vänster enkelt citationstecken","Right single quotation mark":"Höger enkelt citationstecken","Left double quotation mark":"Vänster dubbelt citationstecken","Right double quotation mark":"Höger dubbelt citationstecken","Single low-9 quotation mark":"Enstaka lÃ¥g-9 citationstecken","Double low-9 quotation mark":"Dubbla lÃ¥g-9 citationstecken","Inverted exclamation mark":"Inverterat utropstecken","Inverted question mark":"Inverterat frÃ¥getecken","Two dot leader":"TvÃ¥ punkts ledare","Horizontal ellipsis":"Horisontell ellips","Double dagger":"Dubbel dolk","Per mille sign":"Per mille sign","Per ten thousand sign":"Per tiotusen tecken","Double exclamation mark":"Dubbelt utropstecken","Question exclamation mark":"FrÃ¥ga utropstecken","Exclamation question mark":"Utrop frÃ¥getecken","Double question mark":"Dubbelt frÃ¥getecken","Copyright sign":"Upphovsrättstecken","Registered sign":"Registrerat tecken","Trade mark sign":"Varumärkesskylt","Section sign":"Sektionsskylt","Paragraph sign":"Paragraftecken","Reversed paragraph sign":"Omvänt paragraftecken","Character categories":"Karaktärskategorier",Styles:"Stilar","Multiple styles":"Flera stilar","Block styles":"Blockstilar","Text styles":"Texttyper","Insert table":"Lägg in tabell","Header column":"Rubrikkolumn","Insert column left":"Infoga kolumn till vänster","Insert column right":"Infoga kolumn till höger","Delete column":"Ta bort kolumn","Select column":"Välj kolumn",Column:"Kolumn","Header row":"Rubrikrad","Insert row below":"Infoga rad nedanför","Insert row above":"Infoga rad ovanför","Delete row":"Ta bort rad","Select row":"Välj rad",Row:"Rad","Merge cell up":"Sammanfoga celler uppÃ¥t","Merge cell right":"Sammanfoga celler Ã¥t höger","Merge cell down":"Sammanfoga celler nerÃ¥t","Merge cell left":"Sammanfoga celler Ã¥t vänster","Split cell vertically":"Dela cell vertikalt","Split cell horizontally":"Dela cell horisontellt","Merge cells":"Sammanfoga celler","Table toolbar":"Tabellverktygsfält","Table properties":"Tabellegenskaper","Cell properties":"Cellegenskaper",Border:"Kant",Style:"Stil",Width:"Bredd",Height:"Höjd",Color:"Färg",Background:"Bakgrund",Padding:"Marginal",Dimensions:"MÃ¥tt","Table cell text alignment":"Textjustering i tabellcell",Alignment:"Justering","Horizontal text alignment toolbar":"Verktygsfält för horisontell textjustering","Vertical text alignment toolbar":"Verktygsfält för vertikal textjustering","Table alignment toolbar":"Verktygsfält för tabelljustering",None:"Inget",Solid:"Enfärgad",Dotted:"Prickig",Dashed:"Streckad",Double:"Dubbel",Groove:"SkÃ¥ra",Ridge:"Kant",Inset:"Infälld",Outset:"Utfälld","Align cell text to the left":"Vänsterjustera celltext","Align cell text to the center":"Centrera celltext","Align cell text to the right":"Högerjustera celltext","Justify cell text":"Anpassa celltext","Align cell text to the top":"Toppjustera celltext","Align cell text to the middle":"Centrera celltext","Align cell text to the bottom":"Bottenjustera celltext","Align table to the left":"Vänsterjustera tabell","Center table":"Centrera tabell","Align table to the right":"Högerjustera tabell","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Färgen är ogiltig. Testa \"#FF0000\" eller \"rgb(255,0,0)\" eller \"röd\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Värdet är ogiltigt. Testa \"10px\" eller \"2em\" eller helt enkelt \"2\".","Color picker":"Färgväljare","Toggle caption off":"SlÃ¥ av rubrik","Toggle caption on":"SlÃ¥ pÃ¥ rubrik","Enter table caption":"Ange tabellrubrik","Rich Text Editor":"Rich Text-editor","Editor editing area: %0":"Ordbehandlares redigeringsomrÃ¥de: %0","Edit block":"Redigera block","Click to edit block":"Klicka för att redigera blocket","Drag to move":"Dra för att flytta",Next:"Nästa",Previous:"FöregÃ¥ende","Editor toolbar":"Redigeringsverktygsfält","Dropdown toolbar":"Rullgardinsverktygsfält",Black:"Svart","Dim grey":"DunkelgrÃ¥",Grey:"GrÃ¥","Light grey":"LjusgrÃ¥",White:"Vit",Red:"Röd",Orange:"Orange",Yellow:"Gul","Light green":"Ljusgrön",Green:"Grön",Aquamarine:"Akvamarin",Turquoise:"Turkos","Light blue":"LjusblÃ¥",Blue:"BlÃ¥",Purple:"Lila","Editor block content toolbar":"Verktygsfält vid block av innehÃ¥ll","Editor contextual toolbar":"Ordbehandlarens kontextuella verktygsfält",HEX:"HEX",Accept:"Acceptera","No results found":"Inga resultat hittades","No searchable items":"Inga sökbara objekt","Editor dialog":"Ordbehandlardialog",Close:"Stäng",Undo:"Ã…ngra",Redo:"Gör om","Upload in progress":"Uppladdning pÃ¥gÃ¥r","Widget toolbar":"Widgetverktygsfält","Insert paragraph before block":"Infoga stycke före block","Insert paragraph after block":"Infoga stycke efter block","Press Enter to type after or press Shift + Enter to type before the widget":"Tryck pÃ¥ retur för att skriva efter eller pÃ¥ skift + retur för att skriva före widgeten.","Words: %0":"Ord: %0","Characters: %0":"Tecken: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['sv'] = d['sv'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Vänsterjustera","Align right":"Högerjustera","Align center":"Centrera",Justify:"Justera till marginaler","Text alignment":"Textjustering","Text alignment toolbar":"Verktygsfält för textjustering",Bold:"Fet",Italic:"Kursiv",Underline:"Understrykning",Code:"Kod",Strikethrough:"Genomstruken",Subscript:"Nedsänkta tecken",Superscript:"Upphöjda tecken","Block quote":"Blockcitat","Insert code block":"Infoga kodblock","Plain text":"Vanlig text",Cancel:"Avbryt",Clear:"Rensa","Remove color":"Ta bort färg","Restore default":"Ã…terställ standard",Save:"Spara","Show more items":"Visa fler objekt","%0 of %1":"%0 av %1","Cannot upload file:":"Kan inte ladda upp fil:","Rich Text Editor. Editing area: %0":"RTF-redigerare. RedigeringsomrÃ¥de: %0","Insert with file manager":"Infoga genom filhanteraren","Replace with file manager":"Ersätt genom filhanteraren","Insert image with file manager":"Infoga bild genom filhanteraren","Replace image with file manager":"Ersätt bild genom filhanteraren","Find and replace":"Hitta och ersätt","Find in text…":"Hitta i text ...",Find:"Hitta","Previous result":"FöregÃ¥ende träff","Next result":"Nästa träff",Replace:"Ersätt","Replace all":"Ersätt alla","Match case":"Matcha versaler","Whole words only":"Enbart hela ord","Replace with…":"Ersätt med ...","Text to find must not be empty.":"Text att hitta fÃ¥r inte vara tom.","Tip: Find some text first in order to replace it.":"Tips: Hitta nÃ¥gon text först för att ersätta den.","Advanced options":"Avancerade alternativ","Font Size":"Teckenstorlek",Tiny:"Mycket liten",Small:"Liten",Big:"Stor",Huge:"Enorm","Font Family":"Typsnitt",Default:"Standard","Font Color":"Teckenfärg","Font Background Color":"Tecknens bakgrundsfärg","Document colors":"Dokumentfärger",Paragraph:"Paragraf",Heading:"Rubrik","Choose heading":"Välj rubrik","Heading 1":"Rubrik 1","Heading 2":"Rubrik 2","Heading 3":"Rubrik 3","Heading 4":"Rubrik 4","Heading 5":"Rubrik 5","Heading 6":"Rubrik 6","Type your title":"Skriv in rubriken","Type or paste your content here.":"Skriv eller klistra in ditt innehÃ¥ll här.","Horizontal line":"Horisontell linje","HTML object":"HTML-objekt","Increase indent":"Öka indrag","Decrease indent":"Minska indrag",Unlink:"Ta bort länk",Link:"Länk","Link URL":"Länkens URL","Link image":"Länka bild","Edit link":"Redigera länk","Open link in new tab":"Öppna länk i ny flik","This link has no URL":"Denna länk saknar URL","Open in a new tab":"Öppna i en ny flik",Downloadable:"Nedladdningsbar","Numbered List":"Numrerad lista","Bulleted List":"Punktlista","To-do List":"Att-göra-lista","Bulleted list styles toolbar":"Verktygsfält för punktlistor","Numbered list styles toolbar":"Verktygsfält för numrerade listor","Toggle the disc list style":"Växla till disklisttypen","Toggle the circle list style":"Växla till cirkellisttypen","Toggle the square list style":"Växla till fyrkantslisttypen","Toggle the decimal list style":"Växla till decimallisttypen","Toggle the decimal with leading zero list style":"Växla till listtypen decimal-med-inledande-nolla","Toggle the lower–roman list style":"Växla till listtypen romerska gemener","Toggle the upper–roman list style":"Växla till listtypen romerska versaler","Toggle the lower–latin list style":"Växla till listtypen latinska gemener","Toggle the upper–latin list style":"Växla till listtypen latinska versaler ",Disc:"Disk",Circle:"Cirkel",Square:"Fyrkant",Decimal:"Decimal","Decimal with leading zero":"Decimal med inledande nolla","Lower–roman":"Romerska gemener","Upper-roman":"Romerska versaler","Lower-latin":"Latinska gemener","Upper-latin":"Latinska versaler","List properties":"Listegenskaper","Start at":"Börja pÃ¥","Start index must be greater than 0.":"Startindex mÃ¥ste vara större än 0.","Reversed order":"Byt riktning","Remove Format":"Radera formatering","Select all":"Välj alla","Show blocks":"Visa block",Source:"Källa","Special characters":"Specialtecken",All:"Alla",Arrows:"Pilar",Currency:"Valuta",Latin:"Latinska",Mathematical:"Matematiska",Text:"Text","leftwards simple arrow":"enkel vänsterpil","rightwards simple arrow":"enkel högerpil","upwards simple arrow":"enkel uppÃ¥tpil","downwards simple arrow":"enkel nedÃ¥tpil","leftwards double arrow":"dubbelpil Ã¥t vänster","rightwards double arrow":"dubbelpil Ã¥t höger","upwards double arrow":"dubbelpil uppÃ¥t","downwards double arrow":"dubbelpil nedÃ¥t","leftwards dashed arrow":"streckad pil Ã¥t vänster","rightwards dashed arrow":"streckad pil Ã¥t höger","upwards dashed arrow":"streckad pil uppÃ¥t","downwards dashed arrow":"streckad pil nedÃ¥t","leftwards arrow to bar":"pil Ã¥t vänster till baren","rightwards arrow to bar":"pil Ã¥t höger till bar","upwards arrow to bar":"uppÃ¥triktad pil till streck","downwards arrow to bar":"pil nedÃ¥t för att sätta en bar","up down arrow with base":"upp ner pil med bas","back with leftwards arrow above":"tillbaka med pil Ã¥t vänster ovanför","end with leftwards arrow above":"avsluta med en pil Ã¥t vänster ovanför","on with exclamation mark with left right arrow above":"pÃ¥ med utropstecken med vänster högerpil ovanför","soon with rightwards arrow above":"snart med högerpilen ovan","top with upwards arrow above":"överst med en uppÃ¥triktad pil ovanför","Dollar sign":"Dollartecken","Euro sign":"Euro-skylt","Yen sign":"Yen-tecken","Pound sign":"Pundskyltning","Cent sign":"Cent-tecken","Euro-currency sign":"Tecken pÃ¥ euro-valuta","Colon sign":"Colon-tecken","Cruzeiro sign":"Kryssningsskylt","French franc sign":"Franska franc tecken","Lira sign":"Lira-tecken","Currency sign":"Valutateknik","Bitcoin sign":"Bitcoin-tecken","Mill sign":"Kvarnskylt","Naira sign":"Naira-tecken","Peseta sign":"Peseta-tecken","Rupee sign":"Tecken pÃ¥ rupier","Won sign":"Vunnit tecken","New sheqel sign":"Ny sheqel-skylt","Dong sign":"Dong-tecken","Kip sign":"Kip-tecken","Tugrik sign":"Tugrik-tecken","Drachma sign":"Drachma tecken","German penny sign":"Tyska penny-tecken","Peso sign":"Peso-tecken","Guarani sign":"Guarani-tecken","Austral sign":"Australisk skylt","Hryvnia sign":"Hryvnia tecken","Cedi sign":"Cedi-tecken","Livre tournois sign":"Turneringens bokskylt","Spesmilo sign":"Spesmilo skylt","Tenge sign":"Tenge-tecken","Indian rupee sign":"Indisk rupie tecken","Turkish lira sign":"Turkiska liran tecken","Nordic mark sign":"Nordiskt märke tecken","Manat sign":"Manat-tecken","Ruble sign":"Rubel tecken","Latin capital letter a with macron":"Den latinska storbokstaven a med makron","Latin small letter a with macron":"Latin liten bokstav a med makron","Latin capital letter a with breve":"Den latinska storbokstaven a med breve","Latin small letter a with breve":"Den latinska lilla bokstaven a med breve","Latin capital letter a with ogonek":"Den latinska huvudbokstaven a med ogonek","Latin small letter a with ogonek":"Den latinska lilla bokstaven a med ogonek","Latin capital letter c with acute":"Den latinska storbokstaven c med akut","Latin small letter c with acute":"Den latinska lilla bokstaven c med akut","Latin capital letter c with circumflex":"Den latinska storbokstaven c med omljud","Latin small letter c with circumflex":"Den latinska lilla bokstaven c med circumflex","Latin capital letter c with dot above":"Latinsk huvudbokstav c med punkt ovan","Latin small letter c with dot above":"Den latinska lilla bokstaven c med en punkt ovanför","Latin capital letter c with caron":"Den latinska storbokstaven c med caron","Latin small letter c with caron":"Den latinska lilla bokstaven c med caron","Latin capital letter d with caron":"Latin stor bokstav d med caron","Latin small letter d with caron":"Latin liten bokstav d med caron","Latin capital letter d with stroke":"Latin stor bokstav d med streck","Latin small letter d with stroke":"Latin liten bokstav d med streck","Latin capital letter e with macron":"Latinskt huvudstadbrev e med macron","Latin small letter e with macron":"Den latinska lilla bokstaven e med makron","Latin capital letter e with breve":"Den latinska storbokstaven e med breve","Latin small letter e with breve":"Den latinska lilla bokstaven e med breve","Latin capital letter e with dot above":"Latinsk huvudbokstav e med punkt ovan","Latin small letter e with dot above":"Den latinska lilla bokstaven e med en punkt ovanför","Latin capital letter e with ogonek":"Den latinska storbokstaven e med ogonek","Latin small letter e with ogonek":"Den latinska lilla bokstaven e med ogonek","Latin capital letter e with caron":"Latin stor bokstav e med caron","Latin small letter e with caron":"Den latinska lilla bokstaven e med caron","Latin capital letter g with circumflex":"Den latinska storbokstaven g med omljud","Latin small letter g with circumflex":"Den latinska lilla bokstaven g med omljud","Latin capital letter g with breve":"Den latinska storbokstaven g med breve","Latin small letter g with breve":"Den latinska lilla bokstaven g med breve","Latin capital letter g with dot above":"Latinsk huvudbokstav g med punkt ovan","Latin small letter g with dot above":"Den latinska lilla bokstaven g med en punkt ovanför","Latin capital letter g with cedilla":"Den latinska storbokstaven g med cedilla","Latin small letter g with cedilla":"Den latinska lilla bokstaven g med cedilla","Latin capital letter h with circumflex":"Latinsk huvudbokstav h med circumflex","Latin small letter h with circumflex":"Den latinska lilla bokstaven h med omljud","Latin capital letter h with stroke":"Latin stor bokstav h med streck","Latin small letter h with stroke":"Latin liten bokstav h med streck","Latin capital letter i with tilde":"Den latinska storbokstaven i med tilde","Latin small letter i with tilde":"Den latinska lilla bokstaven i med tilde","Latin capital letter i with macron":"Den latinska storbokstaven i med makron","Latin small letter i with macron":"Den latinska lilla bokstaven i med makron","Latin capital letter i with breve":"Den latinska storbokstaven i med breve","Latin small letter i with breve":"Den latinska lilla bokstaven i med breve","Latin capital letter i with ogonek":"Den latinska storbokstaven i med ogonek","Latin small letter i with ogonek":"Den latinska lilla bokstaven i med ogonek","Latin capital letter i with dot above":"Latinsk stor bokstav i med prick ovanför","Latin small letter dotless i":"latinsk liten bokstav utan punkt i","Latin capital ligature ij":"Latinisk huvudbokstavsligatur ij","Latin small ligature ij":"latinsk liten ligatur ij","Latin capital letter j with circumflex":"Den latinska storbokstaven j med omljud","Latin small letter j with circumflex":"Den latinska lilla bokstaven j med circumflex","Latin capital letter k with cedilla":"Den latinska storbokstaven k med cedilla","Latin small letter k with cedilla":"Den latinska lilla bokstaven k med cedilla","Latin small letter kra":"Den latinska lilla bokstaven kra","Latin capital letter l with acute":"Den latinska storbokstaven l med akut","Latin small letter l with acute":"Den latinska lilla bokstaven l med akut","Latin capital letter l with cedilla":"Den latinska storbokstaven l med cedilla","Latin small letter l with cedilla":"Den latinska lilla bokstaven l med cedilla","Latin capital letter l with caron":"Latin stor bokstav l med caron","Latin small letter l with caron":"Den latinska lilla bokstaven l med caron","Latin capital letter l with middle dot":"Latinsk huvudbokstav l med mittpunkt","Latin small letter l with middle dot":"Latinsk liten bokstav l med mittpunkt","Latin capital letter l with stroke":"Latinska huvudbokstaven l med streck","Latin small letter l with stroke":"Latinska lilla bokstaven l med streck","Latin capital letter n with acute":"Den latinska huvudbokstaven n med akut","Latin small letter n with acute":"Den latinska lilla bokstaven n med akut","Latin capital letter n with cedilla":"Den latinska storbokstaven n med cedilla","Latin small letter n with cedilla":"Den latinska lilla bokstaven n med cedilla","Latin capital letter n with caron":"Den latinska huvudbokstaven n med caron","Latin small letter n with caron":"Den latinska lilla bokstaven n med caron","Latin small letter n preceded by apostrophe":"Den latinska lilla bokstaven n föregÃ¥s av en apostrof","Latin capital letter eng":"Latinsk stor bokstav eng","Latin small letter eng":"Latin liten bokstav eng","Latin capital letter o with macron":"Den latinska storbokstaven o med makron","Latin small letter o with macron":"Den latinska lilla bokstaven o med makron","Latin capital letter o with breve":"Den latinska storbokstaven o med breve","Latin small letter o with breve":"Den latinska lilla bokstaven o med breve","Latin capital letter o with double acute":"Latinsk huvudbokstav o med dubbel akut","Latin small letter o with double acute":"Den latinska lilla bokstaven o med dubbel spets","Latin capital ligature oe":"Latinsk huvudboksligatur oe","Latin small ligature oe":"Latin liten ligatur oe","Latin capital letter r with acute":"Latinsk huvudbokstav r med akut","Latin small letter r with acute":"Den latinska lilla bokstaven r med akut","Latin capital letter r with cedilla":"Den latinska storbokstaven r med cedilla","Latin small letter r with cedilla":"Den latinska lilla bokstaven r med cedilla","Latin capital letter r with caron":"Latinsk huvudstadbokstav r med caron","Latin small letter r with caron":"Den latinska lilla bokstaven r med caron","Latin capital letter s with acute":"Latinskt huvudbrev s med akut","Latin small letter s with acute":"Den latinska lilla bokstaven s med akut","Latin capital letter s with circumflex":"Den latinska storbokstaven s med circumflex","Latin small letter s with circumflex":"Latinska smÃ¥ bokstäver s med circumflex","Latin capital letter s with cedilla":"Latinsk huvudbokstav s med cedilla","Latin small letter s with cedilla":"Latinska smÃ¥ bokstäver s med cedilla","Latin capital letter s with caron":"Latin stor bokstav s med caron","Latin small letter s with caron":"Latinska smÃ¥ brev s med caron","Latin capital letter t with cedilla":"Den latinska storbokstaven t med cedilla","Latin small letter t with cedilla":"Den latinska lilla bokstaven t med cedilla","Latin capital letter t with caron":"Den latinska storbokstaven t med caron","Latin small letter t with caron":"Den latinska lilla bokstaven t med caron","Latin capital letter t with stroke":"Latin stor bokstav t med streck","Latin small letter t with stroke":"Latin liten bokstav t med streck","Latin capital letter u with tilde":"Den latinska storbokstaven u med tilde","Latin small letter u with tilde":"Den latinska lilla bokstaven u med tilde","Latin capital letter u with macron":"Den latinska storbokstaven u med makron","Latin small letter u with macron":"Den latinska lilla bokstaven u med makron","Latin capital letter u with breve":"Den latinska storbokstaven u med breve","Latin small letter u with breve":"Den latinska lilla bokstaven u med breve","Latin capital letter u with ring above":"Latinsk versalbokstav u med ring ovanför","Latin small letter u with ring above":"Latin liten bokstav u med ring ovanför","Latin capital letter u with double acute":"Den latinska storbokstaven u med dubbel spets","Latin small letter u with double acute":"Den latinska lilla bokstaven u med dubbel spets","Latin capital letter u with ogonek":"Den latinska storbokstaven u med ogonek","Latin small letter u with ogonek":"Den latinska lilla bokstaven u med ogonek","Latin capital letter w with circumflex":"Den latinska storbokstaven w med omljud","Latin small letter w with circumflex":"Den latinska lilla bokstaven w med omljud","Latin capital letter y with circumflex":"Den latinska versalbokstaven y med circumflex","Latin small letter y with circumflex":"Den latinska lilla bokstaven y med circumflex","Latin capital letter y with diaeresis":"Den latinska storbokstaven y med diaeresis","Latin capital letter z with acute":"Den latinska storbokstaven z med akut","Latin small letter z with acute":"Den latinska lilla bokstaven z med akut","Latin capital letter z with dot above":"Latinsk versalbokstav z med punkt ovanför","Latin small letter z with dot above":"Den latinska lilla bokstaven z med en punkt ovanför","Latin capital letter z with caron":"Den latinska storbokstaven z med caron","Latin small letter z with caron":"Den latinska lilla bokstaven z med caron","Latin small letter long s":"Latin liten bokstav lÃ¥ng s","Less-than sign":"Mindre än-tecken","Greater-than sign":"Större än-tecken","Less-than or equal to":"Mindre än eller lika med","Greater-than or equal to":"Större än eller lika med","En dash":"Ett streck","Em dash":"Em streck",Macron:"Macron",Overline:"Överlinje","Degree sign":"Gradbeteckning","Minus sign":"Minustecken","Plus-minus sign":"Plustecken","Division sign":"Tecken pÃ¥ en avdelning","Fraction slash":"Fraktion snedstreck","Multiplication sign":"Multiplikationstecken","Latin small letter f with hook":"Latin liten bokstav f med krok",Integral:"Integrerad","N-ary summation":"N-ständig summering",Infinity:"Oändlighet","Square root":"Kvadratrot","Tilde operator":"Tilde-operatör","Approximately equal to":"Ungefär lika med","Almost equal to":"Nästan lika med","Not equal to":"Inte lika med","Identical to":"Identisk med","Element of":"Element av","Not an element of":"Inte en del av","Contains as member":"InnehÃ¥ller som medlem","N-ary product":"N-ary produkt","Logical and":"Logisk och","Logical or":"Logisk eller","Not sign":"Inte underteckna",Intersection:"Korsning",Union:"Unionen","Partial differential":"Partiell differential","For all":"För alla","There exists":"Tom uppsättning","Empty set":"Tom uppsättning",Nabla:"Nabla","Asterisk operator":"Asteriskoperatör","Proportional to":"Proportionerligt till",Angle:"Vinkel","Vulgar fraction one quarter":"Vulgärfraktion en fjärdedel","Vulgar fraction one half":"Vulgärfraktion hälften","Vulgar fraction three quarters":"Vulgärfraktion tre fjärdedelar","Single left-pointing angle quotation mark":"Enbart vänsterpekande vinkelhängetecken","Single right-pointing angle quotation mark":"Enbart högerpekande vinkelstämplat citationstecken","Left-pointing double angle quotation mark":"Vänsterpekande dubbelt vinklat citationstecken","Right-pointing double angle quotation mark":"Högerpekande dubbelt vinklat citationstecken","Left single quotation mark":"Vänster enkelt citationstecken","Right single quotation mark":"Höger enkelt citationstecken","Left double quotation mark":"Vänster dubbelt citationstecken","Right double quotation mark":"Höger dubbelt citationstecken","Single low-9 quotation mark":"Enstaka lÃ¥g-9 citationstecken","Double low-9 quotation mark":"Dubbla lÃ¥g-9 citationstecken","Inverted exclamation mark":"Inverterat utropstecken","Inverted question mark":"Inverterat frÃ¥getecken","Two dot leader":"TvÃ¥ punkts ledare","Horizontal ellipsis":"Horisontell ellips","Double dagger":"Dubbel dolk","Per mille sign":"Per mille sign","Per ten thousand sign":"Per tiotusen tecken","Double exclamation mark":"Dubbelt utropstecken","Question exclamation mark":"FrÃ¥ga utropstecken","Exclamation question mark":"Utrop frÃ¥getecken","Double question mark":"Dubbelt frÃ¥getecken","Copyright sign":"Upphovsrättstecken","Registered sign":"Registrerat tecken","Trade mark sign":"Varumärkesskylt","Section sign":"Sektionsskylt","Paragraph sign":"Paragraftecken","Reversed paragraph sign":"Omvänt paragraftecken","Character categories":"Karaktärskategorier",Styles:"Stilar","Multiple styles":"Flera stilar","Block styles":"Blockstilar","Text styles":"Texttyper","Insert table":"Lägg in tabell","Header column":"Rubrikkolumn","Insert column left":"Infoga kolumn till vänster","Insert column right":"Infoga kolumn till höger","Delete column":"Ta bort kolumn","Select column":"Välj kolumn",Column:"Kolumn","Header row":"Rubrikrad","Insert row below":"Infoga rad nedanför","Insert row above":"Infoga rad ovanför","Delete row":"Ta bort rad","Select row":"Välj rad",Row:"Rad","Merge cell up":"Sammanfoga celler uppÃ¥t","Merge cell right":"Sammanfoga celler Ã¥t höger","Merge cell down":"Sammanfoga celler nerÃ¥t","Merge cell left":"Sammanfoga celler Ã¥t vänster","Split cell vertically":"Dela cell vertikalt","Split cell horizontally":"Dela cell horisontellt","Merge cells":"Sammanfoga celler","Table toolbar":"Tabellverktygsfält","Table properties":"Tabellegenskaper","Cell properties":"Cellegenskaper",Border:"Kant",Style:"Stil",Width:"Bredd",Height:"Höjd",Color:"Färg",Background:"Bakgrund",Padding:"Marginal",Dimensions:"MÃ¥tt","Table cell text alignment":"Textjustering i tabellcell",Alignment:"Justering","Horizontal text alignment toolbar":"Verktygsfält för horisontell textjustering","Vertical text alignment toolbar":"Verktygsfält för vertikal textjustering","Table alignment toolbar":"Verktygsfält för tabelljustering",None:"Inget",Solid:"Enfärgad",Dotted:"Prickig",Dashed:"Streckad",Double:"Dubbel",Groove:"SkÃ¥ra",Ridge:"Kant",Inset:"Infälld",Outset:"Utfälld","Align cell text to the left":"Vänsterjustera celltext","Align cell text to the center":"Centrera celltext","Align cell text to the right":"Högerjustera celltext","Justify cell text":"Anpassa celltext","Align cell text to the top":"Toppjustera celltext","Align cell text to the middle":"Centrera celltext","Align cell text to the bottom":"Bottenjustera celltext","Align table to the left":"Vänsterjustera tabell","Center table":"Centrera tabell","Align table to the right":"Högerjustera tabell","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Färgen är ogiltig. Testa \"#FF0000\" eller \"rgb(255,0,0)\" eller \"röd\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Värdet är ogiltigt. Testa \"10px\" eller \"2em\" eller helt enkelt \"2\".","Color picker":"Färgväljare","Toggle caption off":"SlÃ¥ av rubrik","Toggle caption on":"SlÃ¥ pÃ¥ rubrik","Enter table caption":"Ange tabellrubrik","Rich Text Editor":"Rich Text-editor","Editor editing area: %0":"Ordbehandlares redigeringsomrÃ¥de: %0","Edit block":"Redigera block","Click to edit block":"Klicka för att redigera blocket","Drag to move":"Dra för att flytta",Next:"Nästa",Previous:"FöregÃ¥ende","Editor toolbar":"Redigeringsverktygsfält","Dropdown toolbar":"Rullgardinsverktygsfält",Black:"Svart","Dim grey":"DunkelgrÃ¥",Grey:"GrÃ¥","Light grey":"LjusgrÃ¥",White:"Vit",Red:"Röd",Orange:"Orange",Yellow:"Gul","Light green":"Ljusgrön",Green:"Grön",Aquamarine:"Akvamarin",Turquoise:"Turkos","Light blue":"LjusblÃ¥",Blue:"BlÃ¥",Purple:"Lila","Editor block content toolbar":"Verktygsfält vid block av innehÃ¥ll","Editor contextual toolbar":"Ordbehandlarens kontextuella verktygsfält",HEX:"HEX",Accept:"Acceptera","No results found":"Inga resultat hittades","No searchable items":"Inga sökbara objekt","Editor dialog":"Ordbehandlardialog",Close:"Stäng",Undo:"Ã…ngra",Redo:"Gör om","Upload in progress":"Uppladdning pÃ¥gÃ¥r","Widget toolbar":"Widgetverktygsfält","Insert paragraph before block":"Infoga stycke före block","Insert paragraph after block":"Infoga stycke efter block","Press Enter to type after or press Shift + Enter to type before the widget":"Tryck pÃ¥ retur för att skriva efter eller pÃ¥ skift + retur för att skriva före widgeten.","Words: %0":"Ord: %0","Characters: %0":"Tecken: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/th.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/th.js index b1393aae2de6895c8c699d72e8535c1beb13ebc5..6d8cf8623d7e191876f8ba055c0fc1e67622692e 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/th.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/th.js @@ -1 +1 @@ -(function(d){ const l = d['th'] = d['th'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"จัดชิดซ้าย","Align right":"จัดชิดขวา","Align center":"จัดà¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡",Justify:"จัด(ขà¸à¸š)","Text alignment":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วาม","Text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วาม",Bold:"ตัวหนา",Italic:"ตัวเà¸à¸µà¸¢à¸‡",Underline:"ขีดเส้นใต้",Code:"โค้ด",Strikethrough:"ขีดทับ",Subscript:"ตัวห้à¸à¸¢",Superscript:"ตัวยà¸","Block quote":"คำพูดบล็à¸à¸","Insert code block":"เพิ่มโค้ดบล็à¸à¸","Plain text":"ข้à¸à¸„วามธรรมดา",Cancel:"ยà¸à¹€à¸¥à¸´à¸",Clear:"ล้าง","Remove color":"ลบสี","Restore default":"คืนค่าเริ่มต้น",Save:"บันทึà¸","Show more items":"à¹à¸ªà¸”งรายà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡","%0 of %1":"%0 จาภ%1","Cannot upload file:":"ไม่สามารถà¸à¸±à¸›à¹‚หลดไฟล์ได้:","Rich Text Editor. Editing area: %0":"ตัวà¹à¸à¹‰à¹„ข Rich Text พื้นที่à¹à¸à¹‰à¹„ข: %0","Insert with file manager":"à¹à¸—รà¸à¸”้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Replace with file manager":"à¹à¸—นที่ด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Insert image with file manager":"à¹à¸—รà¸à¸ าพด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Replace image with file manager":"à¹à¸—นที่ภาพด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Find and replace":"ค้นหาà¹à¸¥à¸°à¹à¸—นที่","Find in text…":"ค้นหาในข้à¸à¸„วาม...",Find:"ค้นหา","Previous result":"ผลลัพธ์à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰","Next result":"ผลลัพธ์ถัดไป",Replace:"à¹à¸—นที่","Replace all":"à¹à¸—นที่ทั้งหมด","Match case":"ตัวใหà¸à¹ˆ-เล็ภตรงà¸à¸±à¸™","Whole words only":"ตรงà¸à¸±à¸™à¸—ุà¸à¸•à¸±à¸§à¸à¸±à¸à¸©à¸£","Replace with…":"à¹à¸—นที่ด้วย...","Text to find must not be empty.":"ข้à¸à¸„วามที่จะค้นหาต้à¸à¸‡à¹„ม่ว่างเปล่า","Tip: Find some text first in order to replace it.":"เคล็ดลับ: ค้นหาข้à¸à¸„วามบางà¸à¸¢à¹ˆà¸²à¸‡à¸à¹ˆà¸à¸™à¸ˆà¸¶à¸‡à¸ˆà¸°à¹à¸—นที่ได้","Advanced options":"ตัวเลืà¸à¸à¸‚ั้นสูง",Paragraph:"ย่à¸à¸«à¸™à¹‰à¸²",Heading:"หัวข้à¸","Choose heading":"เลืà¸à¸à¸‚นาดหัวข้à¸","Heading 1":"หัวข้à¸à¸‚นาด 1","Heading 2":"หัวข้ภ2","Heading 3":"หัวข้ภ3","Heading 4":"หัวข้ภ4","Heading 5":"หัวข้ภ5","Heading 6":"หัวข้ภ6","Type your title":"พิมพ์ชื่à¸à¹€à¸£à¸·à¹ˆà¸à¸‡à¸‚à¸à¸‡à¸„ุณ","Type or paste your content here.":"พิมพ์หรืà¸à¸§à¸²à¸‡à¹€à¸™à¸·à¹‰à¸à¸«à¸²à¸‚à¸à¸‡à¸„ุณที่นี่","Horizontal line":"เส้นà¹à¸™à¸§à¸™à¸à¸™","HTML object":"วัตถุ HTML","Increase indent":"เพิ่มà¸à¸²à¸£à¹€à¸¢à¸·à¹‰à¸à¸‡","Decrease indent":"ลดà¸à¸²à¸£à¹€à¸¢à¸·à¹‰à¸à¸‡",Unlink:"ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¸¥à¸´à¸‡à¸à¹Œ",Link:"ลิงà¸à¹Œ","Link URL":"ลิงà¸à¹Œ URL","Link image":"ลิงà¸à¹Œà¸ าพ","Edit link":"à¹à¸à¹‰à¹„ขลิงà¸à¹Œ","Open link in new tab":"เปิดลิงà¸à¹Œà¹ƒà¸™à¹à¸—็บใหม่","This link has no URL":"ลิงà¸à¹Œà¸™à¸µà¹‰à¹„ม่มี URL","Open in a new tab":"เปิดในà¹à¸—็บใหม่",Downloadable:"ที่สามารถดาวน์โหลดได้","Numbered List":"รายà¸à¸²à¸£à¸¥à¸³à¸”ับเลข","Bulleted List":"รายà¸à¸²à¸£à¸ªà¸±à¸à¸¥à¸±à¸à¸©à¸“์à¹à¸ªà¸”งหัวข้à¸à¸¢à¹ˆà¸à¸¢","To-do List":"รายà¸à¸²à¸£à¸ªà¸´à¹ˆà¸‡à¸—ี่จะทำ","Bulleted list styles toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸±à¸à¸¥à¸±à¸à¸©à¸“์à¹à¸ªà¸”งหัวข้à¸à¸¢à¹ˆà¸à¸¢","Numbered list styles toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¹à¸šà¸šà¸•à¸±à¸§à¹€à¸¥à¸‚","Toggle the disc list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸”ิสà¸à¹Œ","Toggle the circle list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸§à¸‡à¸à¸¥à¸¡","Toggle the square list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸µà¹ˆà¹€à¸«à¸¥à¸µà¹ˆà¸¢à¸¡","Toggle the decimal list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸—ศนิยม","Toggle the decimal with leading zero list style":"สลับทศนิยมด้วยรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸¨à¸¹à¸™à¸¢à¹Œà¸™à¸³à¸«à¸™à¹‰à¸²","Toggle the lower–roman list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์เล็à¸","Toggle the upper–roman list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์ใหà¸à¹ˆ","Toggle the lower–latin list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Toggle the upper–latin list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ",Disc:"ดิสà¸à¹Œ",Circle:"วงà¸à¸¥à¸¡",Square:"สี่เหลี่ยม",Decimal:"ทศนิยม","Decimal with leading zero":"ทศนิยมที่มีศูนย์นำหน้า","Lower–roman":"à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์เล็à¸","Upper-roman":"à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์ใหà¸à¹ˆ","Lower-latin":"à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Upper-latin":"à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","List properties":"คุณสมบัติขà¸à¸‡à¸£à¸²à¸¢à¸à¸²à¸£","Start at":"เริ่มต้นที่","Start index must be greater than 0.":"ดัชนีเริ่มต้นต้à¸à¸‡à¸¡à¸²à¸à¸à¸§à¹ˆà¸² 0","Reversed order":"ลำดับที่ย้à¸à¸™à¸à¸¥à¸±à¸š","Remove Format":"ลบรูปà¹à¸šà¸š","Select all":"เลืà¸à¸à¸—ั้งหมด","Show blocks":"à¹à¸ªà¸”งบล็à¸à¸",Source:"ซà¸à¸£à¹Œà¸ª","Special characters":"à¸à¸±à¸à¸‚ระพิเศษ",All:"ทั้งหมด",Arrows:"ลูà¸à¸¨à¸£",Currency:"สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™",Latin:"ละติน",Mathematical:"คณิตศาสตร์",Text:"ข้à¸à¸„วาม","leftwards simple arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸˜à¸£à¸£à¸¡à¸”า","rightwards simple arrow":"ลูà¸à¸¨à¸£à¸‚วาธรรมดา","upwards simple arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นธรรมดา","downwards simple arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¸˜à¸£à¸£à¸¡à¸”า","leftwards double arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸„ู่","rightwards double arrow":"ลูà¸à¸¨à¸£à¸‚วาคู่","upwards double arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นคู่","downwards double arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¸„ู่","leftwards dashed arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¹€à¸ªà¹‰à¸™à¸›à¸£à¸°","rightwards dashed arrow":"ลูà¸à¸¨à¸£à¸‚วาเส้นประ","upwards dashed arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นเส้นประ","downwards dashed arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¹€à¸ªà¹‰à¸™à¸›à¸£à¸°","leftwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‹à¹‰à¸²à¸¢à¸Šà¸™à¸‚ีด","rightwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‚วาชนขีด","upwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‚ึ้นชนขีด","downwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸¥à¸‡à¸Šà¸™à¸‚ีด","up down arrow with base":"ลูà¸à¸¨à¸£à¸‚ึ้นลงมีà¸à¸²à¸™","back with leftwards arrow above":"ย้à¸à¸™à¸à¸¥à¸±à¸šà¸¡à¸µà¸¥à¸¹à¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚้างบน","end with leftwards arrow above":"สิ้นสุดมีลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚้างบน","on with exclamation mark with left right arrow above":"เปิดมีà¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸¡à¸µà¸¥à¸¹à¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚วาข้างบน","soon with rightwards arrow above":"เร็ว ๆ นี้มีลูà¸à¸¨à¸£à¸‚วาข้างบน","top with upwards arrow above":"บนสุดมีลูà¸à¸¨à¸£à¸‚ึ้นข้างบน","Dollar sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดà¸à¸¥à¸¥à¸²à¸£à¹Œ","Euro sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ยูโร","Yen sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เยน","Pound sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ปà¸à¸™à¸”์","Cent sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เซนต์","Euro-currency sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™à¸¢à¸¹à¹‚ร","Colon sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ทวิภาค","Cruzeiro sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ครูเซโร","French franc sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ฟรังà¸à¹Œà¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª","Lira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลีรา","Currency sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™","Bitcoin sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์บิตคà¸à¸¢à¸™à¹Œ","Mill sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มิลล์","Naira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ไนรา","Peseta sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ปีเซตา","Rupee sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์รูปี","Won sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์วà¸à¸™","New sheqel sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์นิวเชเà¸à¸¥","Dong sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดง","Kip sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸µà¸š","Tugrik sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ทูà¸à¸£à¸µà¸","Drachma sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดรัà¸à¸¡à¸²","German penny sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เพนนีเยà¸à¸£à¸¡à¸±à¸™","Peso sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เปโซ","Guarani sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸§à¸²à¸£à¸²à¸™à¸µ","Austral sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸à¸ªà¸•à¸£à¸±à¸¥","Hryvnia sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ฮริฟเนีย","Cedi sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เซดี","Livre tournois sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลิฟร์ ทัวร์นัวส์","Spesmilo sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สเปสมิโล","Tenge sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เทงเจ","Indian rupee sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸´à¸™à¹€à¸”ียรูปี","Turkish lira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลีราตุรà¸à¸µ","Nordic mark sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาร์à¸à¸™à¸à¸£à¹Œà¸”ิà¸","Manat sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มานัต","Ruble sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์รูเบิล","Latin capital letter a with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter a with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter a with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter a with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter a with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter a with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter c with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter c with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter c with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter c with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter c with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter c with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter c with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter c with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter d with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter d with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter d with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter d with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์เล็à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter e with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter e with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter e with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter e with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter e with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter e with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter e with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter e with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter e with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter e with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¹€à¸¥à¹‡à¸à¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin capital letter g with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter g with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter g with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter g with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter g with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter g with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter g with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter g with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter h with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter h with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter h with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter h with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter i with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸—ิลด์","Latin small letter i with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸—ิลด์","Latin capital letter i with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter i with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter i with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter i with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter i with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter i with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter i with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter dotless i":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¹„ม่มีจุดตัวพิมพ์เล็à¸","Latin capital ligature ij":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”ไà¸à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small ligature ij":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”ไà¸à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter j with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter j with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter k with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸„ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter k with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸„ตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter kra":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸„ราตัวพิมพ์เล็à¸","Latin capital letter l with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter l with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter l with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter l with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter l with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter l with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter l with middle dot":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”à¸à¸¥à¸²à¸‡","Latin small letter l with middle dot":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”à¸à¸¥à¸²à¸‡","Latin capital letter l with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter l with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter n with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter n with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter n with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter n with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter n with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter n with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter n preceded by apostrophe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸™à¸³à¸«à¸™à¹‰à¸²à¸”้วยà¸à¸°à¸žà¸à¸ªà¸—รà¸à¸Ÿà¸µ","Latin capital letter eng":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸±à¸‡à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small letter eng":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸±à¸‡à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter o with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter o with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter o with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter o with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter o with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin small letter o with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin capital ligature oe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”โà¸à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small ligature oe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”โà¸à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter r with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter r with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter r with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter r with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter r with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter r with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter s with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter s with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter s with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter s with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter s with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter s with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter s with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter s with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter t with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter t with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter t with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter t with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter t with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter t with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter u with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸—ิลด์","Latin small letter u with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸—ิลด์","Latin capital letter u with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter u with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter u with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter u with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter u with ring above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹à¸«à¸§à¸™à¸‚้างบน","Latin small letter u with ring above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹à¸«à¸§à¸™à¸‚้างบน","Latin capital letter u with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin small letter u with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin capital letter u with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter u with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter w with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ับเบิลยูตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter w with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ับเบิลยูตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter y with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter y with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter y with diaeresis":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹„ดà¸à¸²à¹€à¸£à¸‹à¸´à¸ª","Latin capital letter z with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter z with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter z with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter z with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter z with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter z with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter long s":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸¥à¹‡à¸à¹€à¸à¸ªà¸¢à¸²à¸§","Less-than sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์น้à¸à¸¢à¸à¸§à¹ˆà¸²","Greater-than sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาà¸à¸à¸§à¹ˆà¸²","Less-than or equal to":"น้à¸à¸¢à¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸à¹€à¸—่าà¸à¸±à¸š","Greater-than or equal to":"มาà¸à¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸à¹€à¸—่าà¸à¸±à¸š","En dash":"ขีด","Em dash":"ขีดยาว",Macron:"มาครà¸à¸™",Overline:"ขีดบน","Degree sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸‡à¸¨à¸²","Minus sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลบ","Plus-minus sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์บวà¸à¸¥à¸š","Division sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์หาร","Fraction slash":"ขีดà¹à¸šà¹ˆà¸‡","Multiplication sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์คูณ","Latin small letter f with hook":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Ÿà¹€à¸¥à¹‡à¸à¸¡à¸µà¸•à¸°à¸‚à¸",Integral:"à¸à¸´à¸™à¸—ิà¸à¸£à¸±à¸¥","N-ary summation":"ผลรวมเà¸à¹‡à¸™à¹€à¸£à¸¢à¹Œ",Infinity:"à¸à¸™à¸±à¸™à¸•à¹Œ","Square root":"ราà¸à¸—ี่สà¸à¸‡","Tilde operator":"ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¸—ิลด์","Approximately equal to":"ประมาณเท่าà¸à¸±à¸š","Almost equal to":"เà¸à¸·à¸à¸šà¹€à¸—่าà¸à¸±à¸š","Not equal to":"ไม่เท่าà¸à¸±à¸š","Identical to":"เหมืà¸à¸™à¸à¸±à¸š","Element of":"à¸à¸‡à¸„์ประà¸à¸à¸šà¸‚à¸à¸‡","Not an element of":"ไม่ใช่à¸à¸‡à¸„์ประà¸à¸à¸šà¸‚à¸à¸‡","Contains as member":"มีเป็นสมาชิà¸","N-ary product":"ผลคูณเà¸à¹‡à¸™à¹€à¸£à¸¢à¹Œ","Logical and":"ตรรà¸à¸°à¹à¸¥à¸°","Logical or":"ตรรà¸à¸°à¸«à¸£à¸·à¸","Not sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ไม่ใช่",Intersection:"à¸à¸´à¸™à¹€à¸•à¸à¸£à¹Œà¹€à¸‹à¸à¸Šà¸±à¸™",Union:"ยูเนียน","Partial differential":"à¸à¸™à¸¸à¸žà¸±à¸™à¸˜à¹Œà¸¢à¹ˆà¸à¸¢","For all":"สำหรับทั้งหมด","There exists":"มีà¸à¸¢à¸¹à¹ˆ","Empty set":"เซตว่าง",Nabla:"นาบลา","Asterisk operator":"ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¸”à¸à¸à¸ˆà¸±à¸™","Proportional to":"สัดส่วนà¸à¸±à¸š",Angle:"มุม","Vulgar fraction one quarter":"เศษหนึ่งส่วนสี่","Vulgar fraction one half":"เศษหนึ่งส่วนสà¸à¸‡","Vulgar fraction three quarters":"เศษหนึ่งส่วนสาม","Single left-pointing angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวเà¸à¸µà¸¢à¸‡à¸‹à¹‰à¸²à¸¢","Single right-pointing angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวเà¸à¸µà¸¢à¸‡à¸‚วา","Left-pointing double angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่เà¸à¸µà¸¢à¸‡à¸‹à¹‰à¸²à¸¢","Right-pointing double angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่เà¸à¸µà¸¢à¸‡à¸‚วา","Left single quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวด้านซ้าย","Right single quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวด้านขวา","Left double quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่ด้านซ้าย","Right double quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่ด้านขวา","Single low-9 quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวมีหัวด้านล่าง","Double low-9 quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่มีหัวด้านล่าง","Inverted exclamation mark":"à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸à¸¥à¸±à¸šà¸«à¸±à¸§","Inverted question mark":"ปรัศนีà¸à¸¥à¸±à¸šà¸«à¸±à¸§","Two dot leader":"สà¸à¸‡à¸ˆà¸¸à¸”นำ","Horizontal ellipsis":"จุดไข่ปลาà¹à¸™à¸§à¸™à¸à¸™","Double dagger":"à¸à¸£à¸´à¸Šà¸‹à¹‰à¸à¸™","Per mille sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ต่à¸à¸žà¸±à¸™","Per ten thousand sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ต่à¸à¸«à¸¡à¸·à¹ˆà¸™","Double exclamation mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸„ู่","Question exclamation mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸›à¸£à¸±à¸¨à¸™à¸µà¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œ","Exclamation question mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸›à¸£à¸±à¸¨à¸™à¸µ","Double question mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸›à¸£à¸±à¸¨à¸™à¸µà¸„ู่","Copyright sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลิขสิทธิ์","Registered sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์จดทะเบียน","Trade mark sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸²à¸£à¸„้า","Section sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาตรา","Paragraph sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ย่à¸à¸«à¸™à¹‰à¸²","Reversed paragraph sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ย่à¸à¸«à¸™à¹‰à¸²à¸à¸¥à¸±à¸šà¸«à¸±à¸§","Character categories":"หมวดหมู่à¸à¸±à¸à¸‚ระ",Styles:"รูปà¹à¸šà¸š","Multiple styles":"มีหลายรูปà¹à¸šà¸š","Block styles":"รูปà¹à¸šà¸šà¸šà¸¥à¹‡à¸à¸","Text styles":"รูปà¹à¸šà¸šà¸‚้à¸à¸„วาม","Insert table":"à¹à¸—รà¸à¸•à¸²à¸£à¸²à¸‡","Header column":"หัวข้à¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œ","Insert column left":"à¹à¸—รà¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œà¸—างซ้าย","Insert column right":"à¹à¸—รà¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œà¸—างขวา","Delete column":"ลบคà¸à¸¥à¸±à¸¡à¸™à¹Œ","Select column":"เลืà¸à¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œ",Column:"คà¸à¸¥à¸±à¸¡à¸™à¹Œ","Header row":"ส่วนหัวà¹à¸–ว","Insert row below":"à¹à¸—รà¸à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸”้านล่าง","Insert row above":"à¹à¸—รà¸à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸”้านบน","Delete row":"ลบà¹à¸–ว","Select row":"เลืà¸à¸à¹à¸–ว",Row:"à¹à¸–ว","Merge cell up":"ผสานเซลล์ด้านบน","Merge cell right":"ผสานเซลล์ด้านขวา","Merge cell down":"ผสานเซลล์ด้านล่าง","Merge cell left":"ผสานเซลล์ด้านซ้าย","Split cell vertically":"à¹à¸¢à¸à¹€à¸‹à¸¥à¸¥à¹Œà¹à¸™à¸§à¸•à¸±à¹‰à¸‡","Split cell horizontally":"à¹à¸¢à¸à¹€à¸‹à¸¥à¸¥à¹Œà¹à¸™à¸§à¸™à¸à¸™","Merge cells":"ผสานเซลล์","Table toolbar":"เครื่à¸à¸‡à¸¡à¸·à¸à¸•à¸²à¸£à¸²à¸‡","Table properties":"คุณสมบัติขà¸à¸‡à¸•à¸²à¸£à¸²à¸‡","Cell properties":"คุณสมบัติขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œ",Border:"เส้นขà¸à¸š",Style:"รูปà¹à¸šà¸š",Width:"ความà¸à¸§à¹‰à¸²à¸‡",Height:"ความสูง",Color:"สี",Background:"พื้นหลัง",Padding:"à¸à¸²à¸£à¹€à¸ªà¸£à¸´à¸¡à¹€à¸•à¹‡à¸¡",Dimensions:"ขนาด","Table cell text alignment":"à¸à¸²à¸£à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸•à¸²à¸£à¸²à¸‡",Alignment:"à¸à¸²à¸£à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡","Horizontal text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามในà¹à¸™à¸§à¸™à¸à¸™","Vertical text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามà¹à¸™à¸§à¸•à¸±à¹‰à¸‡","Table alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡",None:"ไม่มี",Solid:"เส้นทึบ",Dotted:"เส้นไข่ปลา",Dashed:"เส้นประ",Double:"คู่",Groove:"ร่à¸à¸‡",Ridge:"สัน",Inset:"ยุบ",Outset:"นูน","Align cell text to the left":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ซ้าย","Align cell text to the center":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹„ว้à¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡","Align cell text to the right":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ขวา","Justify cell text":"จัดขà¸à¸šà¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹ƒà¸«à¹‰à¸à¸£à¸°à¸ˆà¸²à¸¢à¹€à¸•à¹‡à¸¡à¹à¸™à¸§","Align cell text to the top":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ด้านบน","Align cell text to the middle":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹„ว้à¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡","Align cell text to the bottom":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ด้านล่าง","Align table to the left":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¸Šà¸´à¸”ด้านซ้าย","Center table":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¹„ว้ตรงà¸à¸¥à¸²à¸‡","Align table to the right":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¸Šà¸´à¸”ด้านขวา","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"สีไม่ถูà¸à¸•à¹‰à¸à¸‡ ลà¸à¸‡ \"#FF0000\" หรืภ\"rgb(255,0,0)\" หรืภ\"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ค่าไม่ถูà¸à¸•à¹‰à¸à¸‡ ลà¸à¸‡ \"10px\" หรืภ\"2em\" หรืà¸à¹à¸„่เพียง \"2\"","Color picker":"เครื่à¸à¸‡à¸¡à¸·à¸à¹€à¸¥à¸·à¸à¸à¸ªà¸µ","Toggle caption off":"ปิดคำà¸à¸˜à¸´à¸šà¸²à¸¢à¸ าพ","Toggle caption on":"เปิดคำà¸à¸˜à¸´à¸šà¸²à¸¢à¸ าพ","Enter table caption":"ป้à¸à¸™à¸„ำบรรยายตาราง","Rich Text Editor":"โปรà¹à¸à¸£à¸¡à¹à¸à¹‰à¹„ข Rich Text","Editor editing area: %0":"พื้นที่à¹à¸à¹‰à¹„ขขà¸à¸‡à¸•à¸±à¸§à¹à¸à¹‰à¹„ข: %0","Edit block":"à¹à¸à¹‰à¹„ขบล็à¸à¸","Click to edit block":"คลิà¸à¹€à¸žà¸·à¹ˆà¸à¹à¸à¹‰à¹„ขบล็à¸à¸","Drag to move":"ลาà¸à¹€à¸žà¸·à¹ˆà¸à¸¢à¹‰à¸²à¸¢",Next:"ถัดไป",Previous:"à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²","Editor toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ข","Dropdown toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸šà¸šà¹€à¸¥à¸·à¹ˆà¸à¸™à¸¥à¸‡",Black:"สีดำ","Dim grey":"สีเทาเข้ม",Grey:"สีเทา","Light grey":"สีเทาà¸à¹ˆà¸à¸™",White:"สีขาว",Red:"สีà¹à¸”ง",Orange:"สีส้ม",Yellow:"สีเหลืà¸à¸‡","Light green":"สีเขียวà¸à¹ˆà¸à¸™",Green:"สีเขียว",Aquamarine:"พลà¸à¸¢à¸ªà¸µà¸Ÿà¹‰à¸²",Turquoise:"สีเขียวขุ่น","Light blue":"สีฟ้า",Blue:"สีน้ำเงิน",Purple:"สีม่วง","Editor block content toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ขบล็à¸à¸à¹€à¸™à¸·à¹‰à¸à¸«à¸²","Editor contextual toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ขข้à¸à¸„วาม",HEX:"HEX",Accept:"ยà¸à¸¡à¸£à¸±à¸š","No results found":"ไม่พบผลลัพธ์","No searchable items":"ไม่มีรายà¸à¸²à¸£à¸—ี่สามารถค้นหาได้","Editor dialog":"à¸à¸²à¸£à¸ªà¸™à¸—นาขà¸à¸‡à¸šà¸£à¸£à¸“าธิà¸à¸²à¸£",Close:"ปิด",Undo:"ย้à¸à¸™à¸à¸¥à¸±à¸š",Redo:"ทำซ้ำ","Upload in progress":"à¸à¸³à¸¥à¸±à¸‡à¸”ำเนินà¸à¸²à¸£à¸à¸±à¸›à¹‚หลด","Widget toolbar":"à¹à¸–มเครื่à¸à¸‡à¸¡à¸·à¸à¸§à¸´à¸”เจ็ต","Insert paragraph before block":"à¹à¸—รà¸à¸¢à¹ˆà¸à¸«à¸™à¹‰à¸²à¸à¹ˆà¸à¸™à¸šà¸¥à¹‡à¸à¸","Insert paragraph after block":"à¹à¸—รà¸à¸¢à¹ˆà¸à¸«à¸™à¹‰à¸²à¸«à¸¥à¸±à¸‡à¸šà¸¥à¹‡à¸à¸","Press Enter to type after or press Shift + Enter to type before the widget":"à¸à¸” Enter เพื่à¸à¸žà¸´à¸¡à¸žà¹Œà¸«à¸¥à¸±à¸‡à¸ˆà¸²à¸ หรืà¸à¸à¸” Shift + Enter เพื่à¸à¸žà¸´à¸¡à¸žà¹Œà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸§à¸´à¸”เจ็ต","Words: %0":"คำ: %0","Characters: %0":"ตัวà¸à¸±à¸à¸©à¸£: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['th'] = d['th'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"จัดชิดซ้าย","Align right":"จัดชิดขวา","Align center":"จัดà¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡",Justify:"จัด(ขà¸à¸š)","Text alignment":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วาม","Text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วาม",Bold:"ตัวหนา",Italic:"ตัวเà¸à¸µà¸¢à¸‡",Underline:"ขีดเส้นใต้",Code:"โค้ด",Strikethrough:"ขีดทับ",Subscript:"ตัวห้à¸à¸¢",Superscript:"ตัวยà¸","Block quote":"คำพูดบล็à¸à¸","Insert code block":"เพิ่มโค้ดบล็à¸à¸","Plain text":"ข้à¸à¸„วามธรรมดา",Cancel:"ยà¸à¹€à¸¥à¸´à¸",Clear:"ล้าง","Remove color":"ลบสี","Restore default":"คืนค่าเริ่มต้น",Save:"บันทึà¸","Show more items":"à¹à¸ªà¸”งรายà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡","%0 of %1":"%0 จาภ%1","Cannot upload file:":"ไม่สามารถà¸à¸±à¸›à¹‚หลดไฟล์ได้:","Rich Text Editor. Editing area: %0":"ตัวà¹à¸à¹‰à¹„ข Rich Text พื้นที่à¹à¸à¹‰à¹„ข: %0","Insert with file manager":"à¹à¸—รà¸à¸”้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Replace with file manager":"à¹à¸—นที่ด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Insert image with file manager":"à¹à¸—รà¸à¸ าพด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Replace image with file manager":"à¹à¸—นที่ภาพด้วยตัวจัดà¸à¸²à¸£à¹„ฟล์","Find and replace":"ค้นหาà¹à¸¥à¸°à¹à¸—นที่","Find in text…":"ค้นหาในข้à¸à¸„วาม...",Find:"ค้นหา","Previous result":"ผลลัพธ์à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰","Next result":"ผลลัพธ์ถัดไป",Replace:"à¹à¸—นที่","Replace all":"à¹à¸—นที่ทั้งหมด","Match case":"ตัวใหà¸à¹ˆ-เล็ภตรงà¸à¸±à¸™","Whole words only":"ตรงà¸à¸±à¸™à¸—ุà¸à¸•à¸±à¸§à¸à¸±à¸à¸©à¸£","Replace with…":"à¹à¸—นที่ด้วย...","Text to find must not be empty.":"ข้à¸à¸„วามที่จะค้นหาต้à¸à¸‡à¹„ม่ว่างเปล่า","Tip: Find some text first in order to replace it.":"เคล็ดลับ: ค้นหาข้à¸à¸„วามบางà¸à¸¢à¹ˆà¸²à¸‡à¸à¹ˆà¸à¸™à¸ˆà¸¶à¸‡à¸ˆà¸°à¹à¸—นที่ได้","Advanced options":"ตัวเลืà¸à¸à¸‚ั้นสูง","Font Size":"ขนาดข้à¸à¸„วาม",Tiny:"เล็à¸à¸¡à¸²à¸",Small:"เล็à¸",Big:"ใหà¸à¹ˆ",Huge:"ใหà¸à¹ˆà¸¡à¸²à¸","Font Family":"à¹à¸šà¸šà¸à¸±à¸à¸©à¸£",Default:"ค่าเริ่มต้น","Font Color":"สีข้à¸à¸„วาม","Font Background Color":"สีพื้นหลังข้à¸à¸„วาม","Document colors":"สีเà¸à¸à¸ªà¸²à¸£",Paragraph:"ย่à¸à¸«à¸™à¹‰à¸²",Heading:"หัวข้à¸","Choose heading":"เลืà¸à¸à¸‚นาดหัวข้à¸","Heading 1":"หัวข้à¸à¸‚นาด 1","Heading 2":"หัวข้ภ2","Heading 3":"หัวข้ภ3","Heading 4":"หัวข้ภ4","Heading 5":"หัวข้ภ5","Heading 6":"หัวข้ภ6","Type your title":"พิมพ์ชื่à¸à¹€à¸£à¸·à¹ˆà¸à¸‡à¸‚à¸à¸‡à¸„ุณ","Type or paste your content here.":"พิมพ์หรืà¸à¸§à¸²à¸‡à¹€à¸™à¸·à¹‰à¸à¸«à¸²à¸‚à¸à¸‡à¸„ุณที่นี่","Horizontal line":"เส้นà¹à¸™à¸§à¸™à¸à¸™","HTML object":"วัตถุ HTML","Increase indent":"เพิ่มà¸à¸²à¸£à¹€à¸¢à¸·à¹‰à¸à¸‡","Decrease indent":"ลดà¸à¸²à¸£à¹€à¸¢à¸·à¹‰à¸à¸‡",Unlink:"ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¸¥à¸´à¸‡à¸à¹Œ",Link:"ลิงà¸à¹Œ","Link URL":"ลิงà¸à¹Œ URL","Link image":"ลิงà¸à¹Œà¸ าพ","Edit link":"à¹à¸à¹‰à¹„ขลิงà¸à¹Œ","Open link in new tab":"เปิดลิงà¸à¹Œà¹ƒà¸™à¹à¸—็บใหม่","This link has no URL":"ลิงà¸à¹Œà¸™à¸µà¹‰à¹„ม่มี URL","Open in a new tab":"เปิดในà¹à¸—็บใหม่",Downloadable:"ที่สามารถดาวน์โหลดได้","Numbered List":"รายà¸à¸²à¸£à¸¥à¸³à¸”ับเลข","Bulleted List":"รายà¸à¸²à¸£à¸ªà¸±à¸à¸¥à¸±à¸à¸©à¸“์à¹à¸ªà¸”งหัวข้à¸à¸¢à¹ˆà¸à¸¢","To-do List":"รายà¸à¸²à¸£à¸ªà¸´à¹ˆà¸‡à¸—ี่จะทำ","Bulleted list styles toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸±à¸à¸¥à¸±à¸à¸©à¸“์à¹à¸ªà¸”งหัวข้à¸à¸¢à¹ˆà¸à¸¢","Numbered list styles toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¹à¸šà¸šà¸•à¸±à¸§à¹€à¸¥à¸‚","Toggle the disc list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸”ิสà¸à¹Œ","Toggle the circle list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸§à¸‡à¸à¸¥à¸¡","Toggle the square list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸µà¹ˆà¹€à¸«à¸¥à¸µà¹ˆà¸¢à¸¡","Toggle the decimal list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸—ศนิยม","Toggle the decimal with leading zero list style":"สลับทศนิยมด้วยรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸¨à¸¹à¸™à¸¢à¹Œà¸™à¸³à¸«à¸™à¹‰à¸²","Toggle the lower–roman list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์เล็à¸","Toggle the upper–roman list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์ใหà¸à¹ˆ","Toggle the lower–latin list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Toggle the upper–latin list style":"สลับรูปà¹à¸šà¸šà¸£à¸²à¸¢à¸à¸²à¸£à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ",Disc:"ดิสà¸à¹Œ",Circle:"วงà¸à¸¥à¸¡",Square:"สี่เหลี่ยม",Decimal:"ทศนิยม","Decimal with leading zero":"ทศนิยมที่มีศูนย์นำหน้า","Lower–roman":"à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์เล็à¸","Upper-roman":"à¸à¸±à¸à¸©à¸£à¹‚รมันตัวพิมพ์ใหà¸à¹ˆ","Lower-latin":"à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Upper-latin":"à¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","List properties":"คุณสมบัติขà¸à¸‡à¸£à¸²à¸¢à¸à¸²à¸£","Start at":"เริ่มต้นที่","Start index must be greater than 0.":"ดัชนีเริ่มต้นต้à¸à¸‡à¸¡à¸²à¸à¸à¸§à¹ˆà¸² 0","Reversed order":"ลำดับที่ย้à¸à¸™à¸à¸¥à¸±à¸š","Remove Format":"ลบรูปà¹à¸šà¸š","Select all":"เลืà¸à¸à¸—ั้งหมด","Show blocks":"à¹à¸ªà¸”งบล็à¸à¸",Source:"ซà¸à¸£à¹Œà¸ª","Special characters":"à¸à¸±à¸à¸‚ระพิเศษ",All:"ทั้งหมด",Arrows:"ลูà¸à¸¨à¸£",Currency:"สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™",Latin:"ละติน",Mathematical:"คณิตศาสตร์",Text:"ข้à¸à¸„วาม","leftwards simple arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸˜à¸£à¸£à¸¡à¸”า","rightwards simple arrow":"ลูà¸à¸¨à¸£à¸‚วาธรรมดา","upwards simple arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นธรรมดา","downwards simple arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¸˜à¸£à¸£à¸¡à¸”า","leftwards double arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸„ู่","rightwards double arrow":"ลูà¸à¸¨à¸£à¸‚วาคู่","upwards double arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นคู่","downwards double arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¸„ู่","leftwards dashed arrow":"ลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¹€à¸ªà¹‰à¸™à¸›à¸£à¸°","rightwards dashed arrow":"ลูà¸à¸¨à¸£à¸‚วาเส้นประ","upwards dashed arrow":"ลูà¸à¸¨à¸£à¸‚ึ้นเส้นประ","downwards dashed arrow":"ลูà¸à¸¨à¸£à¸¥à¸‡à¹€à¸ªà¹‰à¸™à¸›à¸£à¸°","leftwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‹à¹‰à¸²à¸¢à¸Šà¸™à¸‚ีด","rightwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‚วาชนขีด","upwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸‚ึ้นชนขีด","downwards arrow to bar":"ลูà¸à¸¨à¸£à¸Šà¸µà¹‰à¸¥à¸‡à¸Šà¸™à¸‚ีด","up down arrow with base":"ลูà¸à¸¨à¸£à¸‚ึ้นลงมีà¸à¸²à¸™","back with leftwards arrow above":"ย้à¸à¸™à¸à¸¥à¸±à¸šà¸¡à¸µà¸¥à¸¹à¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚้างบน","end with leftwards arrow above":"สิ้นสุดมีลูà¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚้างบน","on with exclamation mark with left right arrow above":"เปิดมีà¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸¡à¸µà¸¥à¸¹à¸à¸¨à¸£à¸‹à¹‰à¸²à¸¢à¸‚วาข้างบน","soon with rightwards arrow above":"เร็ว ๆ นี้มีลูà¸à¸¨à¸£à¸‚วาข้างบน","top with upwards arrow above":"บนสุดมีลูà¸à¸¨à¸£à¸‚ึ้นข้างบน","Dollar sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดà¸à¸¥à¸¥à¸²à¸£à¹Œ","Euro sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ยูโร","Yen sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เยน","Pound sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ปà¸à¸™à¸”์","Cent sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เซนต์","Euro-currency sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™à¸¢à¸¹à¹‚ร","Colon sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ทวิภาค","Cruzeiro sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ครูเซโร","French franc sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ฟรังà¸à¹Œà¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª","Lira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลีรา","Currency sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สà¸à¸¸à¸¥à¹€à¸‡à¸´à¸™","Bitcoin sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์บิตคà¸à¸¢à¸™à¹Œ","Mill sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มิลล์","Naira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ไนรา","Peseta sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ปีเซตา","Rupee sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์รูปี","Won sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์วà¸à¸™","New sheqel sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์นิวเชเà¸à¸¥","Dong sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดง","Kip sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸µà¸š","Tugrik sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ทูà¸à¸£à¸µà¸","Drachma sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ดรัà¸à¸¡à¸²","German penny sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เพนนีเยà¸à¸£à¸¡à¸±à¸™","Peso sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เปโซ","Guarani sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸§à¸²à¸£à¸²à¸™à¸µ","Austral sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸à¸ªà¸•à¸£à¸±à¸¥","Hryvnia sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ฮริฟเนีย","Cedi sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เซดี","Livre tournois sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลิฟร์ ทัวร์นัวส์","Spesmilo sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์สเปสมิโล","Tenge sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เทงเจ","Indian rupee sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸´à¸™à¹€à¸”ียรูปี","Turkish lira sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลีราตุรà¸à¸µ","Nordic mark sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาร์à¸à¸™à¸à¸£à¹Œà¸”ิà¸","Manat sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มานัต","Ruble sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์รูเบิล","Latin capital letter a with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter a with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter a with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter a with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter a with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter a with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter c with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter c with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter c with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter c with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter c with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter c with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter c with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter c with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸‹à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter d with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter d with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter d with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter d with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ีตัวพิมพ์เล็à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter e with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter e with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter e with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter e with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter e with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter e with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter e with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter e with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter e with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter e with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸µà¸•à¸±à¸§à¹€à¸¥à¹‡à¸à¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin capital letter g with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter g with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter g with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter g with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter g with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter g with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter g with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter g with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸ˆà¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter h with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter h with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter h with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter h with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Šà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter i with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸—ิลด์","Latin small letter i with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸—ิลด์","Latin capital letter i with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter i with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter i with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter i with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter i with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter i with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter i with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter dotless i":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹„à¸à¹„ม่มีจุดตัวพิมพ์เล็à¸","Latin capital ligature ij":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”ไà¸à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small ligature ij":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”ไà¸à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter j with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter j with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸ˆà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter k with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸„ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter k with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸„ตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter kra":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸„ราตัวพิมพ์เล็à¸","Latin capital letter l with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter l with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter l with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter l with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter l with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter l with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter l with middle dot":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”à¸à¸¥à¸²à¸‡","Latin small letter l with middle dot":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ˆà¸¸à¸”à¸à¸¥à¸²à¸‡","Latin capital letter l with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter l with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸¥à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter n with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter n with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter n with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter n with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter n with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter n with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter n preceded by apostrophe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¹‡à¸™à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸™à¸³à¸«à¸™à¹‰à¸²à¸”้วยà¸à¸°à¸žà¸à¸ªà¸—รà¸à¸Ÿà¸µ","Latin capital letter eng":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸±à¸‡à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small letter eng":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸±à¸‡à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter o with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter o with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter o with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter o with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter o with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin small letter o with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹‚à¸à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin capital ligature oe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”โà¸à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ","Latin small ligature oe":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸à¸”โà¸à¸à¸µà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸","Latin capital letter r with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter r with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter r with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter r with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter r with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter r with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸à¸²à¸£à¹Œà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter s with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter s with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter s with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter s with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter s with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter s with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter s with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter s with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸ªà¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter t with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin small letter t with cedilla":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸”ีลลา","Latin capital letter t with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter t with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin capital letter t with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ªà¹‚ตรà¸","Latin small letter t with stroke":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸—ีตัวพิมพ์เล็à¸à¸¡à¸µà¸ªà¹‚ตรà¸","Latin capital letter u with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸—ิลด์","Latin small letter u with tilde":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸—ิลด์","Latin capital letter u with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin small letter u with macron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸¡à¸²à¸„รà¸à¸™","Latin capital letter u with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin small letter u with breve":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸šà¸£à¸Ÿ","Latin capital letter u with ring above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹à¸«à¸§à¸™à¸‚้างบน","Latin small letter u with ring above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹à¸«à¸§à¸™à¸‚้างบน","Latin capital letter u with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin small letter u with double acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¸”ับเบิลà¸à¸°à¸„ิวต์","Latin capital letter u with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin small letter u with ogonek":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸¢à¸¹à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹‚à¸à¹‚à¸à¹€à¸™à¸","Latin capital letter w with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ับเบิลยูตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter w with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸”ับเบิลยูตัวพิมพ์เล็à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter y with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin small letter y with circumflex":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹€à¸¥à¹‡à¸à¸¡à¸µà¹€à¸‹à¸à¸£à¹Œà¸„ัมเฟล็à¸à¸‹à¹Œ","Latin capital letter y with diaeresis":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¸§à¸²à¸¢à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆà¸¡à¸µà¹„ดà¸à¸²à¹€à¸£à¸‹à¸´à¸ª","Latin capital letter z with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸à¸°à¸„ิวต์","Latin small letter z with acute":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸à¸°à¸„ิวต์","Latin capital letter z with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin small letter z with dot above":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸ˆà¸¸à¸”ข้างบน","Latin capital letter z with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์ใหà¸à¹ˆà¸¡à¸µà¸„ารà¸à¸™","Latin small letter z with caron":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹à¸‹à¸”ตัวพิมพ์เล็à¸à¸¡à¸µà¸„ารà¸à¸™","Latin small letter long s":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸¥à¹‡à¸à¹€à¸à¸ªà¸¢à¸²à¸§","Less-than sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์น้à¸à¸¢à¸à¸§à¹ˆà¸²","Greater-than sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาà¸à¸à¸§à¹ˆà¸²","Less-than or equal to":"น้à¸à¸¢à¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸à¹€à¸—่าà¸à¸±à¸š","Greater-than or equal to":"มาà¸à¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸à¹€à¸—่าà¸à¸±à¸š","En dash":"ขีด","Em dash":"ขีดยาว",Macron:"มาครà¸à¸™",Overline:"ขีดบน","Degree sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์à¸à¸‡à¸¨à¸²","Minus sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลบ","Plus-minus sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์บวà¸à¸¥à¸š","Division sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์หาร","Fraction slash":"ขีดà¹à¸šà¹ˆà¸‡","Multiplication sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์คูณ","Latin small letter f with hook":"ตัวà¸à¸±à¸à¸©à¸£à¸¥à¸²à¸•à¸´à¸™à¹€à¸à¸Ÿà¹€à¸¥à¹‡à¸à¸¡à¸µà¸•à¸°à¸‚à¸",Integral:"à¸à¸´à¸™à¸—ิà¸à¸£à¸±à¸¥","N-ary summation":"ผลรวมเà¸à¹‡à¸™à¹€à¸£à¸¢à¹Œ",Infinity:"à¸à¸™à¸±à¸™à¸•à¹Œ","Square root":"ราà¸à¸—ี่สà¸à¸‡","Tilde operator":"ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¸—ิลด์","Approximately equal to":"ประมาณเท่าà¸à¸±à¸š","Almost equal to":"เà¸à¸·à¸à¸šà¹€à¸—่าà¸à¸±à¸š","Not equal to":"ไม่เท่าà¸à¸±à¸š","Identical to":"เหมืà¸à¸™à¸à¸±à¸š","Element of":"à¸à¸‡à¸„์ประà¸à¸à¸šà¸‚à¸à¸‡","Not an element of":"ไม่ใช่à¸à¸‡à¸„์ประà¸à¸à¸šà¸‚à¸à¸‡","Contains as member":"มีเป็นสมาชิà¸","N-ary product":"ผลคูณเà¸à¹‡à¸™à¹€à¸£à¸¢à¹Œ","Logical and":"ตรรà¸à¸°à¹à¸¥à¸°","Logical or":"ตรรà¸à¸°à¸«à¸£à¸·à¸","Not sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ไม่ใช่",Intersection:"à¸à¸´à¸™à¹€à¸•à¸à¸£à¹Œà¹€à¸‹à¸à¸Šà¸±à¸™",Union:"ยูเนียน","Partial differential":"à¸à¸™à¸¸à¸žà¸±à¸™à¸˜à¹Œà¸¢à¹ˆà¸à¸¢","For all":"สำหรับทั้งหมด","There exists":"มีà¸à¸¢à¸¹à¹ˆ","Empty set":"เซตว่าง",Nabla:"นาบลา","Asterisk operator":"ตัวปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£à¸”à¸à¸à¸ˆà¸±à¸™","Proportional to":"สัดส่วนà¸à¸±à¸š",Angle:"มุม","Vulgar fraction one quarter":"เศษหนึ่งส่วนสี่","Vulgar fraction one half":"เศษหนึ่งส่วนสà¸à¸‡","Vulgar fraction three quarters":"เศษหนึ่งส่วนสาม","Single left-pointing angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวเà¸à¸µà¸¢à¸‡à¸‹à¹‰à¸²à¸¢","Single right-pointing angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวเà¸à¸µà¸¢à¸‡à¸‚วา","Left-pointing double angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่เà¸à¸µà¸¢à¸‡à¸‹à¹‰à¸²à¸¢","Right-pointing double angle quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่เà¸à¸µà¸¢à¸‡à¸‚วา","Left single quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวด้านซ้าย","Right single quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวด้านขวา","Left double quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่ด้านซ้าย","Right double quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่ด้านขวา","Single low-9 quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸”ี่ยวมีหัวด้านล่าง","Double low-9 quotation mark":"à¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨à¸„ู่มีหัวด้านล่าง","Inverted exclamation mark":"à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸à¸¥à¸±à¸šà¸«à¸±à¸§","Inverted question mark":"ปรัศนีà¸à¸¥à¸±à¸šà¸«à¸±à¸§","Two dot leader":"สà¸à¸‡à¸ˆà¸¸à¸”นำ","Horizontal ellipsis":"จุดไข่ปลาà¹à¸™à¸§à¸™à¸à¸™","Double dagger":"à¸à¸£à¸´à¸Šà¸‹à¹‰à¸à¸™","Per mille sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ต่à¸à¸žà¸±à¸™","Per ten thousand sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ต่à¸à¸«à¸¡à¸·à¹ˆà¸™","Double exclamation mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸„ู่","Question exclamation mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸›à¸£à¸±à¸¨à¸™à¸µà¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œ","Exclamation question mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œà¸›à¸£à¸±à¸¨à¸™à¸µ","Double question mark":"เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸›à¸£à¸±à¸¨à¸™à¸µà¸„ู่","Copyright sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ลิขสิทธิ์","Registered sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์จดทะเบียน","Trade mark sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์เครื่à¸à¸‡à¸«à¸¡à¸²à¸¢à¸à¸²à¸£à¸„้า","Section sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์มาตรา","Paragraph sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ย่à¸à¸«à¸™à¹‰à¸²","Reversed paragraph sign":"สัà¸à¸¥à¸±à¸à¸©à¸“์ย่à¸à¸«à¸™à¹‰à¸²à¸à¸¥à¸±à¸šà¸«à¸±à¸§","Character categories":"หมวดหมู่à¸à¸±à¸à¸‚ระ",Styles:"รูปà¹à¸šà¸š","Multiple styles":"มีหลายรูปà¹à¸šà¸š","Block styles":"รูปà¹à¸šà¸šà¸šà¸¥à¹‡à¸à¸","Text styles":"รูปà¹à¸šà¸šà¸‚้à¸à¸„วาม","Insert table":"à¹à¸—รà¸à¸•à¸²à¸£à¸²à¸‡","Header column":"หัวข้à¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œ","Insert column left":"à¹à¸—รà¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œà¸—างซ้าย","Insert column right":"à¹à¸—รà¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œà¸—างขวา","Delete column":"ลบคà¸à¸¥à¸±à¸¡à¸™à¹Œ","Select column":"เลืà¸à¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œ",Column:"คà¸à¸¥à¸±à¸¡à¸™à¹Œ","Header row":"ส่วนหัวà¹à¸–ว","Insert row below":"à¹à¸—รà¸à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸”้านล่าง","Insert row above":"à¹à¸—รà¸à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸”้านบน","Delete row":"ลบà¹à¸–ว","Select row":"เลืà¸à¸à¹à¸–ว",Row:"à¹à¸–ว","Merge cell up":"ผสานเซลล์ด้านบน","Merge cell right":"ผสานเซลล์ด้านขวา","Merge cell down":"ผสานเซลล์ด้านล่าง","Merge cell left":"ผสานเซลล์ด้านซ้าย","Split cell vertically":"à¹à¸¢à¸à¹€à¸‹à¸¥à¸¥à¹Œà¹à¸™à¸§à¸•à¸±à¹‰à¸‡","Split cell horizontally":"à¹à¸¢à¸à¹€à¸‹à¸¥à¸¥à¹Œà¹à¸™à¸§à¸™à¸à¸™","Merge cells":"ผสานเซลล์","Table toolbar":"เครื่à¸à¸‡à¸¡à¸·à¸à¸•à¸²à¸£à¸²à¸‡","Table properties":"คุณสมบัติขà¸à¸‡à¸•à¸²à¸£à¸²à¸‡","Cell properties":"คุณสมบัติขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œ",Border:"เส้นขà¸à¸š",Style:"รูปà¹à¸šà¸š",Width:"ความà¸à¸§à¹‰à¸²à¸‡",Height:"ความสูง",Color:"สี",Background:"พื้นหลัง",Padding:"à¸à¸²à¸£à¹€à¸ªà¸£à¸´à¸¡à¹€à¸•à¹‡à¸¡",Dimensions:"ขนาด","Table cell text alignment":"à¸à¸²à¸£à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸•à¸²à¸£à¸²à¸‡",Alignment:"à¸à¸²à¸£à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡","Horizontal text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามในà¹à¸™à¸§à¸™à¸à¸™","Vertical text alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามà¹à¸™à¸§à¸•à¸±à¹‰à¸‡","Table alignment toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¸ˆà¸±à¸”ตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡",None:"ไม่มี",Solid:"เส้นทึบ",Dotted:"เส้นไข่ปลา",Dashed:"เส้นประ",Double:"คู่",Groove:"ร่à¸à¸‡",Ridge:"สัน",Inset:"ยุบ",Outset:"นูน","Align cell text to the left":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ซ้าย","Align cell text to the center":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹„ว้à¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡","Align cell text to the right":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ขวา","Justify cell text":"จัดขà¸à¸šà¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹ƒà¸«à¹‰à¸à¸£à¸°à¸ˆà¸²à¸¢à¹€à¸•à¹‡à¸¡à¹à¸™à¸§","Align cell text to the top":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ด้านบน","Align cell text to the middle":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¹„ว้à¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡","Align cell text to the bottom":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸‚้à¸à¸„วามขà¸à¸‡à¹€à¸‹à¸¥à¸¥à¹Œà¸Šà¸´à¸”ด้านล่าง","Align table to the left":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¸Šà¸´à¸”ด้านซ้าย","Center table":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¹„ว้ตรงà¸à¸¥à¸²à¸‡","Align table to the right":"จัดตำà¹à¸«à¸™à¹ˆà¸‡à¸•à¸²à¸£à¸²à¸‡à¸Šà¸´à¸”ด้านขวา","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"สีไม่ถูà¸à¸•à¹‰à¸à¸‡ ลà¸à¸‡ \"#FF0000\" หรืภ\"rgb(255,0,0)\" หรืภ\"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"ค่าไม่ถูà¸à¸•à¹‰à¸à¸‡ ลà¸à¸‡ \"10px\" หรืภ\"2em\" หรืà¸à¹à¸„่เพียง \"2\"","Color picker":"เครื่à¸à¸‡à¸¡à¸·à¸à¹€à¸¥à¸·à¸à¸à¸ªà¸µ","Toggle caption off":"ปิดคำà¸à¸˜à¸´à¸šà¸²à¸¢à¸ าพ","Toggle caption on":"เปิดคำà¸à¸˜à¸´à¸šà¸²à¸¢à¸ าพ","Enter table caption":"ป้à¸à¸™à¸„ำบรรยายตาราง","Rich Text Editor":"โปรà¹à¸à¸£à¸¡à¹à¸à¹‰à¹„ข Rich Text","Editor editing area: %0":"พื้นที่à¹à¸à¹‰à¹„ขขà¸à¸‡à¸•à¸±à¸§à¹à¸à¹‰à¹„ข: %0","Edit block":"à¹à¸à¹‰à¹„ขบล็à¸à¸","Click to edit block":"คลิà¸à¹€à¸žà¸·à¹ˆà¸à¹à¸à¹‰à¹„ขบล็à¸à¸","Drag to move":"ลาà¸à¹€à¸žà¸·à¹ˆà¸à¸¢à¹‰à¸²à¸¢",Next:"ถัดไป",Previous:"à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²","Editor toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ข","Dropdown toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸šà¸šà¹€à¸¥à¸·à¹ˆà¸à¸™à¸¥à¸‡",Black:"สีดำ","Dim grey":"สีเทาเข้ม",Grey:"สีเทา","Light grey":"สีเทาà¸à¹ˆà¸à¸™",White:"สีขาว",Red:"สีà¹à¸”ง",Orange:"สีส้ม",Yellow:"สีเหลืà¸à¸‡","Light green":"สีเขียวà¸à¹ˆà¸à¸™",Green:"สีเขียว",Aquamarine:"พลà¸à¸¢à¸ªà¸µà¸Ÿà¹‰à¸²",Turquoise:"สีเขียวขุ่น","Light blue":"สีฟ้า",Blue:"สีน้ำเงิน",Purple:"สีม่วง","Editor block content toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ขบล็à¸à¸à¹€à¸™à¸·à¹‰à¸à¸«à¸²","Editor contextual toolbar":"à¹à¸–บเครื่à¸à¸‡à¸¡à¸·à¸à¹à¸à¹‰à¹„ขข้à¸à¸„วาม",HEX:"HEX",Accept:"ยà¸à¸¡à¸£à¸±à¸š","No results found":"ไม่พบผลลัพธ์","No searchable items":"ไม่มีรายà¸à¸²à¸£à¸—ี่สามารถค้นหาได้","Editor dialog":"à¸à¸²à¸£à¸ªà¸™à¸—นาขà¸à¸‡à¸šà¸£à¸£à¸“าธิà¸à¸²à¸£",Close:"ปิด",Undo:"ย้à¸à¸™à¸à¸¥à¸±à¸š",Redo:"ทำซ้ำ","Upload in progress":"à¸à¸³à¸¥à¸±à¸‡à¸”ำเนินà¸à¸²à¸£à¸à¸±à¸›à¹‚หลด","Widget toolbar":"à¹à¸–มเครื่à¸à¸‡à¸¡à¸·à¸à¸§à¸´à¸”เจ็ต","Insert paragraph before block":"à¹à¸—รà¸à¸¢à¹ˆà¸à¸«à¸™à¹‰à¸²à¸à¹ˆà¸à¸™à¸šà¸¥à¹‡à¸à¸","Insert paragraph after block":"à¹à¸—รà¸à¸¢à¹ˆà¸à¸«à¸™à¹‰à¸²à¸«à¸¥à¸±à¸‡à¸šà¸¥à¹‡à¸à¸","Press Enter to type after or press Shift + Enter to type before the widget":"à¸à¸” Enter เพื่à¸à¸žà¸´à¸¡à¸žà¹Œà¸«à¸¥à¸±à¸‡à¸ˆà¸²à¸ หรืà¸à¸à¸” Shift + Enter เพื่à¸à¸žà¸´à¸¡à¸žà¹Œà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸§à¸´à¸”เจ็ต","Words: %0":"คำ: %0","Characters: %0":"ตัวà¸à¸±à¸à¸©à¸£: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tk.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tk.js index da4d8e6976961c0dd50ee31f5693d9a01024fbbb..78db062b97520055593f47e39399fed7fbc39c0c 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tk.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tk.js @@ -1 +1 @@ -(function(d){ const l = d['tk'] = d['tk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Çepe deňleÅŸdiriň","Align right":"Saga deňleÅŸdiriň","Align center":"Merkeze deňleÅŸdir",Justify:"Akla","Text alignment":"Tekstiň deňleÅŸdirilmegi","Text alignment toolbar":"Teksti deňleÅŸdirmek gurallar paneli",Bold:"Galyň",Italic:"Italik",Underline:"AÅŸagy çyzykly",Code:"Kod",Strikethrough:"Ãœsti çyzykly",Subscript:"AÅŸaky ýazgy",Superscript:"Ãœst ýazgy","Block quote":"Sitata blokirläň","Insert code block":"Kod blogyna goýuň","Plain text":"Düz tekst",Cancel:"Ãatyr",Clear:"","Remove color":"Reňki aýyryň","Restore default":"",Save:"Saklaň","Show more items":"Has köp zady görkeziň","%0 of %1":"%1-iň %0-i","Cannot upload file:":"Faýl ýükläp bolmady:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Abzas",Heading:"SözbaÅŸy","Choose heading":"SözbaÅŸy saýlaň","Heading 1":"SözbaÅŸy 1","Heading 2":"SözbaÅŸy 2","Heading 3":"SözbaÅŸy 3","Heading 4":"SözbaÅŸy 4","Heading 5":"SözbaÅŸy 5","Heading 6":"SözbaÅŸy 6","Type your title":"SözbaÅŸyny ýazyň","Type or paste your content here.":"Mazmunyňyzy ÅŸu ýere ýazyň ýa-da goýuň.","Horizontal line":"Gorizontal çyzyk","Increase indent":"Indent köpeltmek","Decrease indent":"Indent peseltmek",Unlink:"BaglanyÅŸygy aýyr",Link:"BaglanyÅŸyk","Link URL":"URL baglanyÅŸygy","Link image":"Surat baglanyÅŸygy","Edit link":"BaglanyÅŸygy üýtget","Open link in new tab":"Täze goýmada baglanyÅŸyk açyň","This link has no URL":"Bu baglanyÅŸykda URL ýok","Open in a new tab":"Täze goýmada açyň",Downloadable:"Göçürip alyp bolýar","Numbered List":"Sanly sanaw","Bulleted List":"Bullet sanawy","To-do List":"Edilmeli iÅŸleriň sanawy","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formaty aýyryň","Select all":"Ählisini saýla","Special characters":"Ãörite nyÅŸanlar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"çepe tarap goÅŸa ok","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"Iki nokat nyÅŸany","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"Tablisa goýuň","Header column":"SözbaÅŸy sütüni","Insert column left":"Sütüni çepe goýuň","Insert column right":"Sütüni saga goýuň","Delete column":"Sütüni pozuň","Select column":"Sütün saýlaň",Column:"Sütün","Header row":"SözbaÅŸy hatary","Insert row below":"Hatary aÅŸak goýuň","Insert row above":"Hatary ýokaryk goýuň","Delete row":"Setiri poz","Select row":"Setir saýlaň",Row:"Setir","Merge cell up":"Öýjügi ýokary birleÅŸdiriň","Merge cell right":"Öýjügi saga birleÅŸdiriň","Merge cell down":"Öýjügi aÅŸak birleÅŸdiriň","Merge cell left":"Öýjügi çepe birleÅŸdiriň","Split cell vertically":"Öýjügi dikligine bölüň","Split cell horizontally":"Öýjügi keseligine bölüň","Merge cells":"Öýjükleri birleÅŸdiriň","Table toolbar":"Tablisa gurallar paneli","Table properties":"Tablisa aýratynlyklary","Cell properties":"Öýjük aýratynlyklary",Border:"Serhet",Style:"Stil",Width:"Ini",Height:"Boý",Color:"Reňk",Background:"Arka",Padding:"Padding",Dimensions:"Ölçegleri","Table cell text alignment":"Tablisa öýjükleriniň tekstini deňleÅŸdirmek",Alignment:"DeňleÅŸdirmek","Horizontal text alignment toolbar":"Kese tekst tekizlemek gurallar paneli","Vertical text alignment toolbar":"Dik tekst tekizlemek gurallar paneli","Table alignment toolbar":"Tablisa deňleÅŸdirmek gurallar paneli",None:"Hiç",Solid:"Gaty",Dotted:"Nokatly",Dashed:"Çyzykly",Double:"GoÅŸa",Groove:"Groove",Ridge:"Kertik",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Öýjük tekstini çepe deňleÅŸdiriň","Align cell text to the center":"Öýjük tekstini merkeze deňleÅŸdiriň","Align cell text to the right":"Öýjük tekstini saga deňleÅŸdiriň","Justify cell text":"Öýjük tekstini esaslandyryň","Align cell text to the top":"Öýjük tekstini ýokarsyna deňleÅŸdiriň","Align cell text to the middle":"Öýjük tekstini ortasyna deňleÅŸdiriň","Align cell text to the bottom":"Öýjük tekstini aÅŸagyna deňleÅŸdiriň","Align table to the left":"Tablisany çepe deňleÅŸdiriň","Center table":"Tablisany merkezleÅŸdiriň","Align table to the right":"Tablisany sag tarapa deňleÅŸdiriň","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Reňki nädogry \"#FF0000\" ýa-da \"rgb(255,0,0)\" ýa-da \"gyzyl\" barlap görüň.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Baha nädogry \"10px\" ýa-da \"2em\" ýa-da diňe \"2\" barlap görüň.","Color picker":"Reňk saýlaýjy","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Baý Tekst Redaktory","Editor editing area: %0":"","Edit block":"Bloky redaktirläň","Click to edit block":"","Drag to move":"",Next:"Indiki",Previous:"Öňki","Editor toolbar":"Redaktor gurallar paneli","Dropdown toolbar":"Açylýan gurallar paneli",Black:"Gara","Dim grey":"Goýy çal",Grey:"Çal","Light grey":"Açyk çal",White:"Ak",Red:"Gyzyl",Orange:"MämiÅŸi",Yellow:"Sary","Light green":"Açyk ýaÅŸyl",Green:"ÃaÅŸyl",Aquamarine:"Akuamarin",Turquoise:"Turkuaz","Light blue":"Açyk gök",Blue:"Gök",Purple:"Gyrmyzy","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Yza gaýtar",Redo:"Öňe gaýtar","Upload in progress":"Ãüklemek dowam edýär","Widget toolbar":"Widget gurallar paneli","Insert paragraph before block":"Blokdan öň abzas goýuň","Insert paragraph after block":"Blokdan soň abzas goýuň","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Sözler: %0","Characters: %0":"NyÅŸanlar: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['tk'] = d['tk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Çepe deňleÅŸdiriň","Align right":"Saga deňleÅŸdiriň","Align center":"Merkeze deňleÅŸdir",Justify:"Akla","Text alignment":"Tekstiň deňleÅŸdirilmegi","Text alignment toolbar":"Teksti deňleÅŸdirmek gurallar paneli",Bold:"Galyň",Italic:"Italik",Underline:"AÅŸagy çyzykly",Code:"Kod",Strikethrough:"Ãœsti çyzykly",Subscript:"AÅŸaky ýazgy",Superscript:"Ãœst ýazgy","Block quote":"Sitata blokirläň","Insert code block":"Kod blogyna goýuň","Plain text":"Düz tekst",Cancel:"Ãatyr",Clear:"","Remove color":"Reňki aýyryň","Restore default":"",Save:"Saklaň","Show more items":"Has köp zady görkeziň","%0 of %1":"%1-iň %0-i","Cannot upload file:":"Faýl ýükläp bolmady:","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Åžrift ölçegi",Tiny:"Kiçijik",Small:"Kiçi",Big:"Uly",Huge:"Ägirt","Font Family":"Åžrift maÅŸgalasy",Default:"Bellenen","Font Color":"Åžriftiň reňki","Font Background Color":"Åžriftiň fon reňki","Document colors":"Resminamanyň reňkleri",Paragraph:"Abzas",Heading:"SözbaÅŸy","Choose heading":"SözbaÅŸy saýlaň","Heading 1":"SözbaÅŸy 1","Heading 2":"SözbaÅŸy 2","Heading 3":"SözbaÅŸy 3","Heading 4":"SözbaÅŸy 4","Heading 5":"SözbaÅŸy 5","Heading 6":"SözbaÅŸy 6","Type your title":"SözbaÅŸyny ýazyň","Type or paste your content here.":"Mazmunyňyzy ÅŸu ýere ýazyň ýa-da goýuň.","Horizontal line":"Gorizontal çyzyk","Increase indent":"Indent köpeltmek","Decrease indent":"Indent peseltmek",Unlink:"BaglanyÅŸygy aýyr",Link:"BaglanyÅŸyk","Link URL":"URL baglanyÅŸygy","Link image":"Surat baglanyÅŸygy","Edit link":"BaglanyÅŸygy üýtget","Open link in new tab":"Täze goýmada baglanyÅŸyk açyň","This link has no URL":"Bu baglanyÅŸykda URL ýok","Open in a new tab":"Täze goýmada açyň",Downloadable:"Göçürip alyp bolýar","Numbered List":"Sanly sanaw","Bulleted List":"Bullet sanawy","To-do List":"Edilmeli iÅŸleriň sanawy","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formaty aýyryň","Select all":"Ählisini saýla","Special characters":"Ãörite nyÅŸanlar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"çepe tarap goÅŸa ok","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"Iki nokat nyÅŸany","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"","Insert table":"Tablisa goýuň","Header column":"SözbaÅŸy sütüni","Insert column left":"Sütüni çepe goýuň","Insert column right":"Sütüni saga goýuň","Delete column":"Sütüni pozuň","Select column":"Sütün saýlaň",Column:"Sütün","Header row":"SözbaÅŸy hatary","Insert row below":"Hatary aÅŸak goýuň","Insert row above":"Hatary ýokaryk goýuň","Delete row":"Setiri poz","Select row":"Setir saýlaň",Row:"Setir","Merge cell up":"Öýjügi ýokary birleÅŸdiriň","Merge cell right":"Öýjügi saga birleÅŸdiriň","Merge cell down":"Öýjügi aÅŸak birleÅŸdiriň","Merge cell left":"Öýjügi çepe birleÅŸdiriň","Split cell vertically":"Öýjügi dikligine bölüň","Split cell horizontally":"Öýjügi keseligine bölüň","Merge cells":"Öýjükleri birleÅŸdiriň","Table toolbar":"Tablisa gurallar paneli","Table properties":"Tablisa aýratynlyklary","Cell properties":"Öýjük aýratynlyklary",Border:"Serhet",Style:"Stil",Width:"Ini",Height:"Boý",Color:"Reňk",Background:"Arka",Padding:"Padding",Dimensions:"Ölçegleri","Table cell text alignment":"Tablisa öýjükleriniň tekstini deňleÅŸdirmek",Alignment:"DeňleÅŸdirmek","Horizontal text alignment toolbar":"Kese tekst tekizlemek gurallar paneli","Vertical text alignment toolbar":"Dik tekst tekizlemek gurallar paneli","Table alignment toolbar":"Tablisa deňleÅŸdirmek gurallar paneli",None:"Hiç",Solid:"Gaty",Dotted:"Nokatly",Dashed:"Çyzykly",Double:"GoÅŸa",Groove:"Groove",Ridge:"Kertik",Inset:"Inset",Outset:"Outset","Align cell text to the left":"Öýjük tekstini çepe deňleÅŸdiriň","Align cell text to the center":"Öýjük tekstini merkeze deňleÅŸdiriň","Align cell text to the right":"Öýjük tekstini saga deňleÅŸdiriň","Justify cell text":"Öýjük tekstini esaslandyryň","Align cell text to the top":"Öýjük tekstini ýokarsyna deňleÅŸdiriň","Align cell text to the middle":"Öýjük tekstini ortasyna deňleÅŸdiriň","Align cell text to the bottom":"Öýjük tekstini aÅŸagyna deňleÅŸdiriň","Align table to the left":"Tablisany çepe deňleÅŸdiriň","Center table":"Tablisany merkezleÅŸdiriň","Align table to the right":"Tablisany sag tarapa deňleÅŸdiriň","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Reňki nädogry \"#FF0000\" ýa-da \"rgb(255,0,0)\" ýa-da \"gyzyl\" barlap görüň.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Baha nädogry \"10px\" ýa-da \"2em\" ýa-da diňe \"2\" barlap görüň.","Color picker":"Reňk saýlaýjy","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Baý Tekst Redaktory","Editor editing area: %0":"","Edit block":"Bloky redaktirläň","Click to edit block":"","Drag to move":"",Next:"Indiki",Previous:"Öňki","Editor toolbar":"Redaktor gurallar paneli","Dropdown toolbar":"Açylýan gurallar paneli",Black:"Gara","Dim grey":"Goýy çal",Grey:"Çal","Light grey":"Açyk çal",White:"Ak",Red:"Gyzyl",Orange:"MämiÅŸi",Yellow:"Sary","Light green":"Açyk ýaÅŸyl",Green:"ÃaÅŸyl",Aquamarine:"Akuamarin",Turquoise:"Turkuaz","Light blue":"Açyk gök",Blue:"Gök",Purple:"Gyrmyzy","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Yza gaýtar",Redo:"Öňe gaýtar","Upload in progress":"Ãüklemek dowam edýär","Widget toolbar":"Widget gurallar paneli","Insert paragraph before block":"Blokdan öň abzas goýuň","Insert paragraph after block":"Blokdan soň abzas goýuň","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"Sözler: %0","Characters: %0":"NyÅŸanlar: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tr.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tr.js index 603e322498bad3a15c04915f783fd1120242756a..289e9b5d49606e6e04ba0e5395f945cd210b4f15 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tr.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/tr.js @@ -1 +1 @@ -(function(d){ const l = d['tr'] = d['tr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Sola hizala","Align right":"SaÄŸa hizala","Align center":"Ortala",Justify:"Ä°ki yana yasla","Text alignment":"Yazı hizalama","Text alignment toolbar":"Yazı Hizlama Araç ÇubuÄŸu",Bold:"Kalın",Italic:"Ä°talik",Underline:"Altı Çizgili",Code:"Kod",Strikethrough:"Ãœstü çizili",Subscript:"Alt Simge",Superscript:"Ãœst Simge","Block quote":"Alıntı","Insert code block":"Kod bloÄŸu ekle","Plain text":"Düz metin",Cancel:"Ä°ptal",Clear:"Temizle","Remove color":"Rengi Sil","Restore default":"Varsayılanı geri yükle",Save:"Kaydet","Show more items":"Daha fazla öğe göster","%0 of %1":"%0/%1","Cannot upload file:":"Dosya yüklenemedi:","Rich Text Editor. Editing area: %0":"Zengin Metin Editörü.Düzenleme alanı: %0","Insert with file manager":"Dosya yöneticisiyle ekle","Replace with file manager":"Dosya yöneticisiyle deÄŸiÅŸtirin","Insert image with file manager":"Dosya yöneticisiyle görüntü ekleyin","Replace image with file manager":"Resmi dosya yöneticisiyle deÄŸiÅŸtir","Find and replace":"Bul ve deÄŸiÅŸtir","Find in text…":"Metinde bul...",Find:"Bul","Previous result":"Önceki sonuç","Next result":"Sonraki sonuç",Replace:"DeÄŸiÅŸtir","Replace all":"Hepsini deÄŸiÅŸtir","Match case":"Büyük küçük harfe duyarlı","Whole words only":"Sadece bütün kelimeler","Replace with…":"Åžununla deÄŸiÅŸtir...","Text to find must not be empty.":"Bulunacak metin boÅŸ bırakılmamalıdır.","Tip: Find some text first in order to replace it.":"Ä°pucu: DeÄŸiÅŸtirmek için önce bir metin bul.","Advanced options":"GeliÅŸmiÅŸ seçenekler",Paragraph:"Paragraf",Heading:"BaÅŸlık","Choose heading":"BaÅŸlık tipi seç","Heading 1":"1. Seviye BaÅŸlık","Heading 2":"2. Seviye BaÅŸlık","Heading 3":"3. Seviye BaÅŸlık","Heading 4":"4. Seviye BaÅŸlık","Heading 5":"5. Seviye BaÅŸlık","Heading 6":"6. Seviye BaÅŸlık","Type your title":"BaÅŸlığınızı yazınız","Type or paste your content here.":"İçeriÄŸinizi buraya yapıştırın yada yazın.","Horizontal line":"Yatay çiizgi","HTML object":"HTML nesnesi","Increase indent":"Girintiyi arttır","Decrease indent":"Girintiyi azalt",Unlink:"BaÄŸlantıyı kaldır",Link:"BaÄŸlantı","Link URL":"BaÄŸlantı Adresi","Link image":"Resim baÄŸlantısı","Edit link":"BaÄŸlantıyı deÄŸiÅŸtir","Open link in new tab":"Yeni sekmede aç","This link has no URL":"BaÄŸlantı adresi yok","Open in a new tab":"Yeni sekmede aç",Downloadable:"Ä°ndirilebilir","Numbered List":"Numaralı Liste","Bulleted List":"Simgeli Liste","To-do List":"Yapılacaklar Listesi","Bulleted list styles toolbar":"Madde iÅŸaretli liste stilleri araç çubuÄŸu","Numbered list styles toolbar":"Numaralandırılmış liste stilleri araç çubuÄŸu","Toggle the disc list style":"Disk liste stilini deÄŸiÅŸtir","Toggle the circle list style":"Çember liste stilini deÄŸiÅŸtir","Toggle the square list style":"Kare liste stilini deÄŸiÅŸtir","Toggle the decimal list style":"Ondalık liste stilini deÄŸiÅŸtir","Toggle the decimal with leading zero list style":"0'la baÅŸlayan ondalık liste stilini deÄŸiÅŸtir","Toggle the lower–roman list style":"Küçük Roma rakamları liste stilini deÄŸiÅŸtir","Toggle the upper–roman list style":"Büyük Roma rakamları liste stilini deÄŸiÅŸtir","Toggle the lower–latin list style":"Küçük Latin harfleri liste stilini deÄŸiÅŸtir","Toggle the upper–latin list style":"Büyük Latin harfleri liste stilini deÄŸiÅŸtir",Disc:"Disk",Circle:"Çember",Square:"Kare",Decimal:"Ondalık","Decimal with leading zero":"0'la baÅŸlayan ondalık","Lower–roman":"Küçük Roma rakamları","Upper-roman":"Büyük Roma rakamları","Lower-latin":"Küçük Latin harfleri","Upper-latin":"Büyük Latin harfleri","List properties":"Liste özellikleri","Start at":"Åžununla baÅŸla","Start index must be greater than 0.":"BaÅŸlangıç dizini 0'dan büyük olmalıdır.","Reversed order":"Ters sıralama","Remove Format":"Biçimlendirmeyi Kaldır","Select all":"Hepsini seç","Show blocks":"Blokları göster",Source:"Kaynak","Special characters":"Özel karakterler",All:"Tümü",Arrows:"Oklar",Currency:"Para Birimi",Latin:"Latince",Mathematical:"Matematiksel",Text:"Metin","leftwards simple arrow":"sola doÄŸru basit ok","rightwards simple arrow":"saÄŸa doÄŸru basit ok","upwards simple arrow":"yukarı doÄŸru basit ok","downwards simple arrow":"aÅŸağı doÄŸru basit ok","leftwards double arrow":"sola çift ok","rightwards double arrow":"saÄŸa çift ok","upwards double arrow":"yukarı çift ok","downwards double arrow":"aÅŸağı çift ok","leftwards dashed arrow":"sola kesik çizgili ok","rightwards dashed arrow":"saÄŸa kesik çizgili ok","upwards dashed arrow":"yukarı doÄŸru kesik ok","downwards dashed arrow":"aÅŸağı doÄŸru kesik ok","leftwards arrow to bar":"sola ok çubuÄŸu","rightwards arrow to bar":"saÄŸa ok çubuÄŸu","upwards arrow to bar":"yukarı ok çubuÄŸu","downwards arrow to bar":"aÅŸağı ok çubuÄŸu","up down arrow with base":"taban ile yukarı aÅŸağı ok","back with leftwards arrow above":"geri sol ok yukarıda","end with leftwards arrow above":"sona sol ok yukarıda","on with exclamation mark with left right arrow above":"üzerinde sol saÄŸ ok bulunan ünlem iÅŸaretiyle","soon with rightwards arrow above":"yakında saÄŸ ok ile","top with upwards arrow above":"en üst yukarı oku","Dollar sign":"Dolar iÅŸareti","Euro sign":"Avro iÅŸareti","Yen sign":"Yen iÅŸareti","Pound sign":"Sterlin iÅŸareti","Cent sign":"KuruÅŸ iÅŸareti","Euro-currency sign":"Avro para birimi simgesi","Colon sign":"Ä°ki nokta üst üste iÅŸareti","Cruzeiro sign":"Cruzeiro iÅŸareti","French franc sign":"Fransız Frangı iÅŸareti","Lira sign":"Lira iÅŸareti","Currency sign":"Para birimi iÅŸareti","Bitcoin sign":"Bitcoin iÅŸareti","Mill sign":"Mill iÅŸareti","Naira sign":"Naira iÅŸareti","Peseta sign":"Peseta iÅŸareti","Rupee sign":"Rupi iÅŸareti","Won sign":"Kazanılan iÅŸaret","New sheqel sign":"Yeni ÅŸekel iÅŸareti","Dong sign":"Dong iÅŸareti","Kip sign":"Kip iÅŸareti","Tugrik sign":"Tugrik iÅŸareti","Drachma sign":"Drahmisi iÅŸareti","German penny sign":"Alman kuruÅŸ iÅŸareti","Peso sign":"Peso iÅŸareti","Guarani sign":"Guarani iÅŸareti","Austral sign":"Austral iÅŸareti","Hryvnia sign":"Grivnası iÅŸareti","Cedi sign":"Cedi iÅŸareti","Livre tournois sign":"Livre tournois iÅŸareti","Spesmilo sign":"Spesmilo iÅŸareti","Tenge sign":"Tenge iÅŸareti","Indian rupee sign":"Hint Rupisi iÅŸareti","Turkish lira sign":"Türk Lirası iÅŸareti","Nordic mark sign":"Ä°skandinav iÅŸareti","Manat sign":"Manat iÅŸareti","Ruble sign":"Ruble iÅŸareti","Latin capital letter a with macron":"Ãœstü çizili büyük a harfi","Latin small letter a with macron":"Ãœstü çizili küçük a harfi","Latin capital letter a with breve":"Ãœstü yuvarlak büyük a harfi","Latin small letter a with breve":"Ãœstü yuvarlak küçük a harfi","Latin capital letter a with ogonek":"Altı kuyruklu iÅŸaretli büyük a harfi","Latin small letter a with ogonek":"Altı kuyruklu iÅŸaretli küçük a harfi","Latin capital letter c with acute":"Ãœzeri tırnaklı büyük c harfi","Latin small letter c with acute":"Ãœzeri tırnaklı küçük c harfi","Latin capital letter c with circumflex":"Ãœzeri ÅŸapkalı büyük c harfi","Latin small letter c with circumflex":"Ãœzeri ÅŸapkalı küçük c harfi","Latin capital letter c with dot above":"Ãœstü noktalı büyük c harfi","Latin small letter c with dot above":"Ãœstü noktalı küçük c harfi","Latin capital letter c with caron":"Ãœstü ters ÅŸapkalı büyük c harfi","Latin small letter c with caron":"Ãœstü ters ÅŸapkalı küçük c harfi","Latin capital letter d with caron":"Ãœstü ters ÅŸapkalı büyük d harfi","Latin small letter d with caron":"Ãœstü ters ÅŸapkalı küçük d harfi","Latin capital letter d with stroke":"Ortası çizgili büyük d harfi","Latin small letter d with stroke":"Ortası çizgili küçük d harfi","Latin capital letter e with macron":"Ãœstü çizili büyük e harfi","Latin small letter e with macron":"Ãœstü çizili küçük e harfi","Latin capital letter e with breve":"Ãœstü ters ÅŸapkalı büyük e harfi","Latin small letter e with breve":"Ãœstü ters ÅŸapkalı küçük e harfi","Latin capital letter e with dot above":"Ãœstü noktalı büyük e harfi","Latin small letter e with dot above":"Ãœstü noktalı küçük e harfi","Latin capital letter e with ogonek":"Altı kuyruklu büyük e harfi","Latin small letter e with ogonek":"Altı kuyruklu küçük e harfi","Latin capital letter e with caron":"Ãœstü ters ÅŸapkalı büyük e harfi","Latin small letter e with caron":"Ãœstü ters ÅŸapkalı küçük e harfi","Latin capital letter g with circumflex":"Ãœzeri ÅŸapkalı büyük g harfi","Latin small letter g with circumflex":"Ãœzeri ÅŸapkalı küçük g harfi","Latin capital letter g with breve":"Ãœstü ters ÅŸapkalı büyük g harfi","Latin small letter g with breve":"Ãœstü ters ÅŸapkalı küçük g harfi","Latin capital letter g with dot above":"Ãœstü noktalı büyük g harfi","Latin small letter g with dot above":"Ãœstü noktalı küçük g harfi","Latin capital letter g with cedilla":"Altı kuyruklu büyük g harfi","Latin small letter g with cedilla":"Altı kuyruklu küçük g harfi","Latin capital letter h with circumflex":"Ãœzeri ÅŸapkalı büyük h harfi","Latin small letter h with circumflex":"Ãœzeri ÅŸapkalı küçük g harfi","Latin capital letter h with stroke":"Ãœst kısmı çizgili büyük h harfi","Latin small letter h with stroke":"Ãœst kısmı çizgili küçük h harfi","Latin capital letter i with tilde":"Ãœstü tilda iÅŸaretli büyük i harfi","Latin small letter i with tilde":"Ãœstü tilda iÅŸaretli küçük i harfi","Latin capital letter i with macron":"Ãœstü çizili büyük i harfi","Latin small letter i with macron":"Ãœstü çizili küçük i harfi","Latin capital letter i with breve":"Ãœstü ters ÅŸapkalı büyük i harfi","Latin small letter i with breve":"Ãœstü ters ÅŸapkalı küçük i harfi","Latin capital letter i with ogonek":"Altı kuyruklu büyük i harfi","Latin small letter i with ogonek":"Altı kuyruklu küçük i harfi","Latin capital letter i with dot above":"Ãœstü noktalı büyük i harfi","Latin small letter dotless i":"Noktası küçük i harfi","Latin capital ligature ij":"Büyük ij harfi","Latin small ligature ij":"Küçük ij harfi","Latin capital letter j with circumflex":"Ãœzeri ÅŸapkalı büyük j harfi","Latin small letter j with circumflex":"Ãœzeri ÅŸapkalı küçük j harfi","Latin capital letter k with cedilla":"Altı kuyruklu büyük k harfi","Latin small letter k with cedilla":"Altı kuyruklu küçük k harfi","Latin small letter kra":"Küçük küt k harfi","Latin capital letter l with acute":"Ãœzeri tırnaklı büyük L harfi","Latin small letter l with acute":"Ãœzeri tırnaklı küçük L harfi","Latin capital letter l with cedilla":"Altı kuyruklu büyük L harfi","Latin small letter l with cedilla":"Altı kuyruklu küçük L harfi","Latin capital letter l with caron":"Ãœstü ters ÅŸapkalı büyük L harfi","Latin small letter l with caron":"Ãœstü ters ÅŸapkalı küçük L harfi","Latin capital letter l with middle dot":"Ortası noktalı büyük L harfi","Latin small letter l with middle dot":"Ortası noktalı küçük L harfi","Latin capital letter l with stroke":"Ãœst kısmı çizgili büyük L harfi","Latin small letter l with stroke":"Ãœst kısmı çizgili küçük L harfi","Latin capital letter n with acute":"Ãœzeri tırnaklı büyük n harfi","Latin small letter n with acute":"Ãœzeri tırnaklı küçük n harfi","Latin capital letter n with cedilla":"Altı kuyruklu büyük n harfi","Latin small letter n with cedilla":"Altı kuyruklu küçük n harfi","Latin capital letter n with caron":"Ãœstü ters ÅŸapkalı büyük n harfi","Latin small letter n with caron":"Ãœstü ters ÅŸapkalı küçük n harfi","Latin small letter n preceded by apostrophe":"Önden apostrof küçük n harfi","Latin capital letter eng":"Alttan kuyruklu büyük n harfi","Latin small letter eng":"Alttan kuyruklu küçük n harfi","Latin capital letter o with macron":"Ãœstü çizili büyük o harfi","Latin small letter o with macron":"Ãœstü çizili küçük o harfi","Latin capital letter o with breve":"Ãœstü ters ÅŸapkalı büyük o harfi","Latin small letter o with breve":"Ãœstü ters ÅŸapkalı küçük o harfi","Latin capital letter o with double acute":"Ãœstü çift tırnaklı büyük o harfi","Latin small letter o with double acute":"Ãœstü çift tırnaklı küçük o harfi","Latin capital ligature oe":"Büyük yunan OE harfi","Latin small ligature oe":"Küçük yunan OE harfi","Latin capital letter r with acute":"Ãœzeri tırnaklı büyük r harfi","Latin small letter r with acute":"Ãœzeri tırnaklı küçük r harfi","Latin capital letter r with cedilla":"Altı kuyruklu büyük r harfi","Latin small letter r with cedilla":"Altı kuyruklu küçük r harfi","Latin capital letter r with caron":"Ãœstü ters ÅŸapkalı büyük r harfi","Latin small letter r with caron":"Ãœstü ters ÅŸapkalı küçük r harfi","Latin capital letter s with acute":"Ãœzeri tırnaklı büyük s harfi","Latin small letter s with acute":"Ãœzeri tırnaklı küçük s harfi","Latin capital letter s with circumflex":"Ãœzeri ÅŸapkalı büyük s harfi","Latin small letter s with circumflex":"Ãœzeri ÅŸapkalı küçük s harfi","Latin capital letter s with cedilla":"Altı kuyruklu büyük s harfi","Latin small letter s with cedilla":"Altı kuyruklu küçük s harfi","Latin capital letter s with caron":"Ãœstü ters ÅŸapkalı büyük s harfi","Latin small letter s with caron":"Ãœstü ters ÅŸapkalı küçük s harfi","Latin capital letter t with cedilla":"Altı kuyruklu büyük t harfi","Latin small letter t with cedilla":"Altı kuyruklu küçük t harfi","Latin capital letter t with caron":"Ãœstü ters ÅŸapkalı büyük t harfi","Latin small letter t with caron":"Ãœstü ters ÅŸapkalı küçük t harfi","Latin capital letter t with stroke":"Ãœst kısmı çizgili büyük t harfi","Latin small letter t with stroke":"Ãœst kısmı çizgili küçük t harfi","Latin capital letter u with tilde":"Ãœstü tildalı büyük u harfi","Latin small letter u with tilde":"Ãœstü tildalı küçük u harfi","Latin capital letter u with macron":"Ãœstü çizili büyük u harfi","Latin small letter u with macron":"Ãœstü çizili küçük u harfi","Latin capital letter u with breve":"Ãœstü ters ÅŸapkalı büyük u harfi","Latin small letter u with breve":"Ãœstü ters ÅŸapkalı küçük u harfi","Latin capital letter u with ring above":"Ãœstü derece iÅŸaretli büyük u harfi","Latin small letter u with ring above":"Ãœstü derece iÅŸaretli küçük u harfi","Latin capital letter u with double acute":"Ãœstü çift tırnaklı büyük u harfi","Latin small letter u with double acute":"Ãœstü çift tırnaklı küçük u harfi","Latin capital letter u with ogonek":"Altı kuyruklu büyük u harfi","Latin small letter u with ogonek":"Altı kuyruklu küçük u harfi","Latin capital letter w with circumflex":"Ãœzeri ÅŸapkalı büyük w harfi","Latin small letter w with circumflex":"Ãœzeri ÅŸapkalı küçük w harfi","Latin capital letter y with circumflex":"Ãœzeri ÅŸapkalı büyük y harfi","Latin small letter y with circumflex":"Ãœzeri ÅŸapkalı küçük y harfi","Latin capital letter y with diaeresis":"Ãœstü çift noktalı büyük y harfi","Latin capital letter z with acute":"Ãœzeri tırnaklı büyük z harfi","Latin small letter z with acute":"Ãœzeri tırnaklı küçük z harfi","Latin capital letter z with dot above":"Ãœstü noktalı büyük z harfi","Latin small letter z with dot above":"Ãœstü noktalı küçük z harfi","Latin capital letter z with caron":"Ãœstü ters ÅŸapkalı büyük z harfi","Latin small letter z with caron":"Ãœstü ters ÅŸapkalı küçük z harfi","Latin small letter long s":"Uzun küçük s harfi","Less-than sign":"Küçüktür iÅŸareti","Greater-than sign":"Büyüktür iÅŸareti","Less-than or equal to":"Küçük veya eÅŸit","Greater-than or equal to":"Büyük veya eÅŸit","En dash":"Çizgi","Em dash":"Uzun çizgi",Macron:"Uzatma iÅŸareti",Overline:"Ãœstü çizili","Degree sign":"Derece iÅŸareti","Minus sign":"Eksi iÅŸareti","Plus-minus sign":"Artı eksi iÅŸareti","Division sign":"Bölme iÅŸareti","Fraction slash":"Kesir eÄŸik çizgi","Multiplication sign":"Çarpma iÅŸareti","Latin small letter f with hook":"Latince küçük f harfi",Integral:"Ä°ntegral","N-ary summation":"N-ary toplamı",Infinity:"Sonsuzluk","Square root":"Kare kök","Tilde operator":"Tilde operatörü","Approximately equal to":"Yaklaşık olarak eÅŸit","Almost equal to":"Neredeyse eÅŸit","Not equal to":"EÅŸit deÄŸil","Identical to":"Benzeri","Element of":"Öğesi","Not an element of":"Onun öğesi deÄŸil","Contains as member":"Ãœye olarak içerir","N-ary product":"N-ary ürünü","Logical and":"Mantıksal VE","Logical or":"Mantıksal VEYA","Not sign":"Ä°mzalanmamış",Intersection:"KesiÅŸim",Union:"BirleÅŸik","Partial differential":"Kısmi diferansiyel","For all":"Hepsi için","There exists":"Var","Empty set":"BoÅŸ küme",Nabla:"Nabla","Asterisk operator":"Yıldız operatörü","Proportional to":"Orantılı",Angle:"Açı","Vulgar fraction one quarter":"Kaba kesir bir çeyrek","Vulgar fraction one half":"Kaba kesir bir buçuk","Vulgar fraction three quarters":"Kaba bölüm dörtte üç","Single left-pointing angle quotation mark":"Tek sola dönük açı tırnak iÅŸareti","Single right-pointing angle quotation mark":"SaÄŸa bakan tek açılı tırnak iÅŸareti","Left-pointing double angle quotation mark":"Sola dönük çift açılı tırnak iÅŸareti","Right-pointing double angle quotation mark":"SaÄŸa bakan çift açılı tırnak iÅŸareti","Left single quotation mark":"Sol tek tırnak iÅŸareti","Right single quotation mark":"SaÄŸ tek tırnak iÅŸareti","Left double quotation mark":"Sol çift tırnak iÅŸareti","Right double quotation mark":"SaÄŸ çift tırnak iÅŸareti","Single low-9 quotation mark":"Tek düşük 9 tırnak iÅŸareti","Double low-9 quotation mark":"Çift düşük 9 tırnak iÅŸareti","Inverted exclamation mark":"Ters ünlem iÅŸareti","Inverted question mark":"Ters soru iÅŸareti","Two dot leader":"Öncelikli iki nokta","Horizontal ellipsis":"Yatay elips","Double dagger":"Çift hançer","Per mille sign":"Bin iÅŸareti için","Per ten thousand sign":"Her on bine göre iÅŸareti","Double exclamation mark":"Çift ünlem iÅŸareti","Question exclamation mark":"Soru ünlem iÅŸareti","Exclamation question mark":"Ãœnlem soru iÅŸareti","Double question mark":"Çift soru iÅŸareti","Copyright sign":"Telif hakkı iÅŸareti","Registered sign":"Kayıtlı iÅŸareti","Trade mark sign":"Ticari marka iÅŸareti","Section sign":"Bölüm iÅŸareti","Paragraph sign":"Paragraf iÅŸareti","Reversed paragraph sign":"Ters paragraf iÅŸareti","Character categories":"Karakter kategorileri",Styles:"Stiller","Multiple styles":"Birden fazla stil","Block styles":"Blok stilleri","Text styles":"Metin stilleri","Insert table":"Tablo Ekle","Header column":"BaÅŸlık kolonu","Insert column left":"Sola kolon ekle","Insert column right":"SaÄŸa kolon ekle","Delete column":"Kolonu sil","Select column":"Kolon seç",Column:"Kolon","Header row":"BaÅŸlık satırı","Insert row below":"Alta satır ekle","Insert row above":"Ãœste satır ekle","Delete row":"Satırı sil","Select row":"Satır seç",Row:"Satır","Merge cell up":"Yukarı doÄŸru birleÅŸtir","Merge cell right":"SaÄŸa doÄŸru birleÅŸtir","Merge cell down":"AÅŸağıya doÄŸru birleÅŸtir","Merge cell left":"Sola doÄŸru birleÅŸtir","Split cell vertically":"Hücreyi dikey böl","Split cell horizontally":"Hücreyi yatay böl","Merge cells":"Hücreleri birleÅŸtir","Table toolbar":"Tablo araç çubuÄŸu","Table properties":"Tablo özellikleri","Cell properties":"Hücre özellikleri",Border:"Kenar",Style:"Stil",Width:"GeniÅŸlik",Height:"Yükseklik",Color:"Renk",Background:"Arkaplan",Padding:"İç boÅŸluk",Dimensions:"Ölçüler","Table cell text alignment":"Tablo hücresi metin hizalaması",Alignment:"Hizalama","Horizontal text alignment toolbar":"Yatay metin hizalama araç çubuÄŸu","Vertical text alignment toolbar":"Dikey metin hizalama araç çubuÄŸu","Table alignment toolbar":"Tablo hizalama araç çubuÄŸu",None:"Yok",Solid:"Dolu",Dotted:"Noktalı",Dashed:"Kesik çizgili",Double:"Çift",Groove:"Yiv",Ridge:"Yükselti",Inset:"İçe",Outset:"Dışarıya","Align cell text to the left":"Hücre içindeki metnini sola hizala","Align cell text to the center":"Hücre içindeki metnini ortaya hizalama","Align cell text to the right":"Hücre içindeki metnini saÄŸa hizala","Justify cell text":"Hücre içindeki metini iki yana yasla","Align cell text to the top":"Hücre içindeki metni üste hizala","Align cell text to the middle":"Hücre içindeki metni ortaya hizala","Align cell text to the bottom":"Hücre içindeki metni alta hizala","Align table to the left":"Tabloyu sola hizala","Center table":"Tabloyu ortala","Align table to the right":"Tabloyu saÄŸa hizala","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Geçersiz renk. \"#FF0000\" veya \"rgb(255,0,0)\" veya \"red\" deneyin.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Geçersiz deÄŸer. \"10px\" veya \"2em\" veya sadece \"2\" deneyin.","Color picker":"Renk seçici","Toggle caption off":"Açıklamayı kapat","Toggle caption on":"Açıklamayı aç","Enter table caption":"Tablo açıklaması gir","Rich Text Editor":"Zengin İçerik Editörü","Editor editing area: %0":"Editör düzenleme alanı: %0","Edit block":"BloÄŸu Düzenle","Click to edit block":"BloÄŸu düzenlemek için tıkla","Drag to move":"Taşımak için sürükle",Next:"Sonraki",Previous:"Önceki","Editor toolbar":"Düzenleme araç çubuÄŸu","Dropdown toolbar":"Açılır araç çubuÄŸu",Black:"Siyah","Dim grey":"Koyu Gri",Grey:"Gri","Light grey":"Açık Gri",White:"Beyaz",Red:"Kırmızı",Orange:"Turuncu",Yellow:"Sarı","Light green":"Açık YeÅŸil",Green:"YeÅŸil",Aquamarine:"Su YeÅŸili",Turquoise:"Turkuaz","Light blue":"Açık Mavi",Blue:"Mavi",Purple:"Mor","Editor block content toolbar":"Düzenleyici engelleme içerik araç çubuÄŸu","Editor contextual toolbar":"Düzenleyici içeriksel araç çubuÄŸu",HEX:"ONALTILIK",Accept:"Kabul et","No results found":"Sonuç bulunamadı","No searchable items":"Aranabilir öge yok","Editor dialog":"Düzenleyici iletiÅŸim kutusu",Close:"Kapat",Undo:"Geri al",Redo:"Tekrar yap","Upload in progress":"Yükleme iÅŸlemi devam ediyor","Widget toolbar":"BileÅŸen araç çubuÄŸu","Insert paragraph before block":"Bloktan önce paragraf ekle","Insert paragraph after block":"Bloktan sonra paragraf ekle","Press Enter to type after or press Shift + Enter to type before the widget":"Görsel bileÅŸenden sonra yazmak için Enter'a basın ya da görsel bileÅŸenden önce yazmak için Shift + Enter'a basın","Words: %0":"Kelimeler: %0","Characters: %0":"Karakterler: %0"} );l.getPluralForm=function(n){return (n > 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['tr'] = d['tr'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Sola hizala","Align right":"SaÄŸa hizala","Align center":"Ortala",Justify:"Ä°ki yana yasla","Text alignment":"Yazı hizalama","Text alignment toolbar":"Yazı Hizlama Araç ÇubuÄŸu",Bold:"Kalın",Italic:"Ä°talik",Underline:"Altı Çizgili",Code:"Kod",Strikethrough:"Ãœstü çizili",Subscript:"Alt Simge",Superscript:"Ãœst Simge","Block quote":"Alıntı","Insert code block":"Kod bloÄŸu ekle","Plain text":"Düz metin",Cancel:"Ä°ptal",Clear:"Temizle","Remove color":"Rengi Sil","Restore default":"Varsayılanı geri yükle",Save:"Kaydet","Show more items":"Daha fazla öğe göster","%0 of %1":"%0/%1","Cannot upload file:":"Dosya yüklenemedi:","Rich Text Editor. Editing area: %0":"Zengin Metin Editörü.Düzenleme alanı: %0","Insert with file manager":"Dosya yöneticisiyle ekle","Replace with file manager":"Dosya yöneticisiyle deÄŸiÅŸtirin","Insert image with file manager":"Dosya yöneticisiyle görüntü ekleyin","Replace image with file manager":"Resmi dosya yöneticisiyle deÄŸiÅŸtir","Find and replace":"Bul ve deÄŸiÅŸtir","Find in text…":"Metinde bul...",Find:"Bul","Previous result":"Önceki sonuç","Next result":"Sonraki sonuç",Replace:"DeÄŸiÅŸtir","Replace all":"Hepsini deÄŸiÅŸtir","Match case":"Büyük küçük harfe duyarlı","Whole words only":"Sadece bütün kelimeler","Replace with…":"Åžununla deÄŸiÅŸtir...","Text to find must not be empty.":"Bulunacak metin boÅŸ bırakılmamalıdır.","Tip: Find some text first in order to replace it.":"Ä°pucu: DeÄŸiÅŸtirmek için önce bir metin bul.","Advanced options":"GeliÅŸmiÅŸ seçenekler","Font Size":"Yazı Boyutu",Tiny:"Çok Küçük",Small:"Küçük",Big:"Büyük",Huge:"Çok Büyük","Font Family":"Yazı Tipi Ailesi",Default:"Varsayılan","Font Color":"Yazı Tipi Rengi","Font Background Color":"Yazı Tipi Arkaplan Rengi","Document colors":"Belge Rengi",Paragraph:"Paragraf",Heading:"BaÅŸlık","Choose heading":"BaÅŸlık tipi seç","Heading 1":"1. Seviye BaÅŸlık","Heading 2":"2. Seviye BaÅŸlık","Heading 3":"3. Seviye BaÅŸlık","Heading 4":"4. Seviye BaÅŸlık","Heading 5":"5. Seviye BaÅŸlık","Heading 6":"6. Seviye BaÅŸlık","Type your title":"BaÅŸlığınızı yazınız","Type or paste your content here.":"İçeriÄŸinizi buraya yapıştırın yada yazın.","Horizontal line":"Yatay çiizgi","HTML object":"HTML nesnesi","Increase indent":"Girintiyi arttır","Decrease indent":"Girintiyi azalt",Unlink:"BaÄŸlantıyı kaldır",Link:"BaÄŸlantı","Link URL":"BaÄŸlantı Adresi","Link image":"Resim baÄŸlantısı","Edit link":"BaÄŸlantıyı deÄŸiÅŸtir","Open link in new tab":"Yeni sekmede aç","This link has no URL":"BaÄŸlantı adresi yok","Open in a new tab":"Yeni sekmede aç",Downloadable:"Ä°ndirilebilir","Numbered List":"Numaralı Liste","Bulleted List":"Simgeli Liste","To-do List":"Yapılacaklar Listesi","Bulleted list styles toolbar":"Madde iÅŸaretli liste stilleri araç çubuÄŸu","Numbered list styles toolbar":"Numaralandırılmış liste stilleri araç çubuÄŸu","Toggle the disc list style":"Disk liste stilini deÄŸiÅŸtir","Toggle the circle list style":"Çember liste stilini deÄŸiÅŸtir","Toggle the square list style":"Kare liste stilini deÄŸiÅŸtir","Toggle the decimal list style":"Ondalık liste stilini deÄŸiÅŸtir","Toggle the decimal with leading zero list style":"0'la baÅŸlayan ondalık liste stilini deÄŸiÅŸtir","Toggle the lower–roman list style":"Küçük Roma rakamları liste stilini deÄŸiÅŸtir","Toggle the upper–roman list style":"Büyük Roma rakamları liste stilini deÄŸiÅŸtir","Toggle the lower–latin list style":"Küçük Latin harfleri liste stilini deÄŸiÅŸtir","Toggle the upper–latin list style":"Büyük Latin harfleri liste stilini deÄŸiÅŸtir",Disc:"Disk",Circle:"Çember",Square:"Kare",Decimal:"Ondalık","Decimal with leading zero":"0'la baÅŸlayan ondalık","Lower–roman":"Küçük Roma rakamları","Upper-roman":"Büyük Roma rakamları","Lower-latin":"Küçük Latin harfleri","Upper-latin":"Büyük Latin harfleri","List properties":"Liste özellikleri","Start at":"Åžununla baÅŸla","Start index must be greater than 0.":"BaÅŸlangıç dizini 0'dan büyük olmalıdır.","Reversed order":"Ters sıralama","Remove Format":"Biçimlendirmeyi Kaldır","Select all":"Hepsini seç","Show blocks":"Blokları göster",Source:"Kaynak","Special characters":"Özel karakterler",All:"Tümü",Arrows:"Oklar",Currency:"Para Birimi",Latin:"Latince",Mathematical:"Matematiksel",Text:"Metin","leftwards simple arrow":"sola doÄŸru basit ok","rightwards simple arrow":"saÄŸa doÄŸru basit ok","upwards simple arrow":"yukarı doÄŸru basit ok","downwards simple arrow":"aÅŸağı doÄŸru basit ok","leftwards double arrow":"sola çift ok","rightwards double arrow":"saÄŸa çift ok","upwards double arrow":"yukarı çift ok","downwards double arrow":"aÅŸağı çift ok","leftwards dashed arrow":"sola kesik çizgili ok","rightwards dashed arrow":"saÄŸa kesik çizgili ok","upwards dashed arrow":"yukarı doÄŸru kesik ok","downwards dashed arrow":"aÅŸağı doÄŸru kesik ok","leftwards arrow to bar":"sola ok çubuÄŸu","rightwards arrow to bar":"saÄŸa ok çubuÄŸu","upwards arrow to bar":"yukarı ok çubuÄŸu","downwards arrow to bar":"aÅŸağı ok çubuÄŸu","up down arrow with base":"taban ile yukarı aÅŸağı ok","back with leftwards arrow above":"geri sol ok yukarıda","end with leftwards arrow above":"sona sol ok yukarıda","on with exclamation mark with left right arrow above":"üzerinde sol saÄŸ ok bulunan ünlem iÅŸaretiyle","soon with rightwards arrow above":"yakında saÄŸ ok ile","top with upwards arrow above":"en üst yukarı oku","Dollar sign":"Dolar iÅŸareti","Euro sign":"Avro iÅŸareti","Yen sign":"Yen iÅŸareti","Pound sign":"Sterlin iÅŸareti","Cent sign":"KuruÅŸ iÅŸareti","Euro-currency sign":"Avro para birimi simgesi","Colon sign":"Ä°ki nokta üst üste iÅŸareti","Cruzeiro sign":"Cruzeiro iÅŸareti","French franc sign":"Fransız Frangı iÅŸareti","Lira sign":"Lira iÅŸareti","Currency sign":"Para birimi iÅŸareti","Bitcoin sign":"Bitcoin iÅŸareti","Mill sign":"Mill iÅŸareti","Naira sign":"Naira iÅŸareti","Peseta sign":"Peseta iÅŸareti","Rupee sign":"Rupi iÅŸareti","Won sign":"Kazanılan iÅŸaret","New sheqel sign":"Yeni ÅŸekel iÅŸareti","Dong sign":"Dong iÅŸareti","Kip sign":"Kip iÅŸareti","Tugrik sign":"Tugrik iÅŸareti","Drachma sign":"Drahmisi iÅŸareti","German penny sign":"Alman kuruÅŸ iÅŸareti","Peso sign":"Peso iÅŸareti","Guarani sign":"Guarani iÅŸareti","Austral sign":"Austral iÅŸareti","Hryvnia sign":"Grivnası iÅŸareti","Cedi sign":"Cedi iÅŸareti","Livre tournois sign":"Livre tournois iÅŸareti","Spesmilo sign":"Spesmilo iÅŸareti","Tenge sign":"Tenge iÅŸareti","Indian rupee sign":"Hint Rupisi iÅŸareti","Turkish lira sign":"Türk Lirası iÅŸareti","Nordic mark sign":"Ä°skandinav iÅŸareti","Manat sign":"Manat iÅŸareti","Ruble sign":"Ruble iÅŸareti","Latin capital letter a with macron":"Ãœstü çizili büyük a harfi","Latin small letter a with macron":"Ãœstü çizili küçük a harfi","Latin capital letter a with breve":"Ãœstü yuvarlak büyük a harfi","Latin small letter a with breve":"Ãœstü yuvarlak küçük a harfi","Latin capital letter a with ogonek":"Altı kuyruklu iÅŸaretli büyük a harfi","Latin small letter a with ogonek":"Altı kuyruklu iÅŸaretli küçük a harfi","Latin capital letter c with acute":"Ãœzeri tırnaklı büyük c harfi","Latin small letter c with acute":"Ãœzeri tırnaklı küçük c harfi","Latin capital letter c with circumflex":"Ãœzeri ÅŸapkalı büyük c harfi","Latin small letter c with circumflex":"Ãœzeri ÅŸapkalı küçük c harfi","Latin capital letter c with dot above":"Ãœstü noktalı büyük c harfi","Latin small letter c with dot above":"Ãœstü noktalı küçük c harfi","Latin capital letter c with caron":"Ãœstü ters ÅŸapkalı büyük c harfi","Latin small letter c with caron":"Ãœstü ters ÅŸapkalı küçük c harfi","Latin capital letter d with caron":"Ãœstü ters ÅŸapkalı büyük d harfi","Latin small letter d with caron":"Ãœstü ters ÅŸapkalı küçük d harfi","Latin capital letter d with stroke":"Ortası çizgili büyük d harfi","Latin small letter d with stroke":"Ortası çizgili küçük d harfi","Latin capital letter e with macron":"Ãœstü çizili büyük e harfi","Latin small letter e with macron":"Ãœstü çizili küçük e harfi","Latin capital letter e with breve":"Ãœstü ters ÅŸapkalı büyük e harfi","Latin small letter e with breve":"Ãœstü ters ÅŸapkalı küçük e harfi","Latin capital letter e with dot above":"Ãœstü noktalı büyük e harfi","Latin small letter e with dot above":"Ãœstü noktalı küçük e harfi","Latin capital letter e with ogonek":"Altı kuyruklu büyük e harfi","Latin small letter e with ogonek":"Altı kuyruklu küçük e harfi","Latin capital letter e with caron":"Ãœstü ters ÅŸapkalı büyük e harfi","Latin small letter e with caron":"Ãœstü ters ÅŸapkalı küçük e harfi","Latin capital letter g with circumflex":"Ãœzeri ÅŸapkalı büyük g harfi","Latin small letter g with circumflex":"Ãœzeri ÅŸapkalı küçük g harfi","Latin capital letter g with breve":"Ãœstü ters ÅŸapkalı büyük g harfi","Latin small letter g with breve":"Ãœstü ters ÅŸapkalı küçük g harfi","Latin capital letter g with dot above":"Ãœstü noktalı büyük g harfi","Latin small letter g with dot above":"Ãœstü noktalı küçük g harfi","Latin capital letter g with cedilla":"Altı kuyruklu büyük g harfi","Latin small letter g with cedilla":"Altı kuyruklu küçük g harfi","Latin capital letter h with circumflex":"Ãœzeri ÅŸapkalı büyük h harfi","Latin small letter h with circumflex":"Ãœzeri ÅŸapkalı küçük g harfi","Latin capital letter h with stroke":"Ãœst kısmı çizgili büyük h harfi","Latin small letter h with stroke":"Ãœst kısmı çizgili küçük h harfi","Latin capital letter i with tilde":"Ãœstü tilda iÅŸaretli büyük i harfi","Latin small letter i with tilde":"Ãœstü tilda iÅŸaretli küçük i harfi","Latin capital letter i with macron":"Ãœstü çizili büyük i harfi","Latin small letter i with macron":"Ãœstü çizili küçük i harfi","Latin capital letter i with breve":"Ãœstü ters ÅŸapkalı büyük i harfi","Latin small letter i with breve":"Ãœstü ters ÅŸapkalı küçük i harfi","Latin capital letter i with ogonek":"Altı kuyruklu büyük i harfi","Latin small letter i with ogonek":"Altı kuyruklu küçük i harfi","Latin capital letter i with dot above":"Ãœstü noktalı büyük i harfi","Latin small letter dotless i":"Noktası küçük i harfi","Latin capital ligature ij":"Büyük ij harfi","Latin small ligature ij":"Küçük ij harfi","Latin capital letter j with circumflex":"Ãœzeri ÅŸapkalı büyük j harfi","Latin small letter j with circumflex":"Ãœzeri ÅŸapkalı küçük j harfi","Latin capital letter k with cedilla":"Altı kuyruklu büyük k harfi","Latin small letter k with cedilla":"Altı kuyruklu küçük k harfi","Latin small letter kra":"Küçük küt k harfi","Latin capital letter l with acute":"Ãœzeri tırnaklı büyük L harfi","Latin small letter l with acute":"Ãœzeri tırnaklı küçük L harfi","Latin capital letter l with cedilla":"Altı kuyruklu büyük L harfi","Latin small letter l with cedilla":"Altı kuyruklu küçük L harfi","Latin capital letter l with caron":"Ãœstü ters ÅŸapkalı büyük L harfi","Latin small letter l with caron":"Ãœstü ters ÅŸapkalı küçük L harfi","Latin capital letter l with middle dot":"Ortası noktalı büyük L harfi","Latin small letter l with middle dot":"Ortası noktalı küçük L harfi","Latin capital letter l with stroke":"Ãœst kısmı çizgili büyük L harfi","Latin small letter l with stroke":"Ãœst kısmı çizgili küçük L harfi","Latin capital letter n with acute":"Ãœzeri tırnaklı büyük n harfi","Latin small letter n with acute":"Ãœzeri tırnaklı küçük n harfi","Latin capital letter n with cedilla":"Altı kuyruklu büyük n harfi","Latin small letter n with cedilla":"Altı kuyruklu küçük n harfi","Latin capital letter n with caron":"Ãœstü ters ÅŸapkalı büyük n harfi","Latin small letter n with caron":"Ãœstü ters ÅŸapkalı küçük n harfi","Latin small letter n preceded by apostrophe":"Önden apostrof küçük n harfi","Latin capital letter eng":"Alttan kuyruklu büyük n harfi","Latin small letter eng":"Alttan kuyruklu küçük n harfi","Latin capital letter o with macron":"Ãœstü çizili büyük o harfi","Latin small letter o with macron":"Ãœstü çizili küçük o harfi","Latin capital letter o with breve":"Ãœstü ters ÅŸapkalı büyük o harfi","Latin small letter o with breve":"Ãœstü ters ÅŸapkalı küçük o harfi","Latin capital letter o with double acute":"Ãœstü çift tırnaklı büyük o harfi","Latin small letter o with double acute":"Ãœstü çift tırnaklı küçük o harfi","Latin capital ligature oe":"Büyük yunan OE harfi","Latin small ligature oe":"Küçük yunan OE harfi","Latin capital letter r with acute":"Ãœzeri tırnaklı büyük r harfi","Latin small letter r with acute":"Ãœzeri tırnaklı küçük r harfi","Latin capital letter r with cedilla":"Altı kuyruklu büyük r harfi","Latin small letter r with cedilla":"Altı kuyruklu küçük r harfi","Latin capital letter r with caron":"Ãœstü ters ÅŸapkalı büyük r harfi","Latin small letter r with caron":"Ãœstü ters ÅŸapkalı küçük r harfi","Latin capital letter s with acute":"Ãœzeri tırnaklı büyük s harfi","Latin small letter s with acute":"Ãœzeri tırnaklı küçük s harfi","Latin capital letter s with circumflex":"Ãœzeri ÅŸapkalı büyük s harfi","Latin small letter s with circumflex":"Ãœzeri ÅŸapkalı küçük s harfi","Latin capital letter s with cedilla":"Altı kuyruklu büyük s harfi","Latin small letter s with cedilla":"Altı kuyruklu küçük s harfi","Latin capital letter s with caron":"Ãœstü ters ÅŸapkalı büyük s harfi","Latin small letter s with caron":"Ãœstü ters ÅŸapkalı küçük s harfi","Latin capital letter t with cedilla":"Altı kuyruklu büyük t harfi","Latin small letter t with cedilla":"Altı kuyruklu küçük t harfi","Latin capital letter t with caron":"Ãœstü ters ÅŸapkalı büyük t harfi","Latin small letter t with caron":"Ãœstü ters ÅŸapkalı küçük t harfi","Latin capital letter t with stroke":"Ãœst kısmı çizgili büyük t harfi","Latin small letter t with stroke":"Ãœst kısmı çizgili küçük t harfi","Latin capital letter u with tilde":"Ãœstü tildalı büyük u harfi","Latin small letter u with tilde":"Ãœstü tildalı küçük u harfi","Latin capital letter u with macron":"Ãœstü çizili büyük u harfi","Latin small letter u with macron":"Ãœstü çizili küçük u harfi","Latin capital letter u with breve":"Ãœstü ters ÅŸapkalı büyük u harfi","Latin small letter u with breve":"Ãœstü ters ÅŸapkalı küçük u harfi","Latin capital letter u with ring above":"Ãœstü derece iÅŸaretli büyük u harfi","Latin small letter u with ring above":"Ãœstü derece iÅŸaretli küçük u harfi","Latin capital letter u with double acute":"Ãœstü çift tırnaklı büyük u harfi","Latin small letter u with double acute":"Ãœstü çift tırnaklı küçük u harfi","Latin capital letter u with ogonek":"Altı kuyruklu büyük u harfi","Latin small letter u with ogonek":"Altı kuyruklu küçük u harfi","Latin capital letter w with circumflex":"Ãœzeri ÅŸapkalı büyük w harfi","Latin small letter w with circumflex":"Ãœzeri ÅŸapkalı küçük w harfi","Latin capital letter y with circumflex":"Ãœzeri ÅŸapkalı büyük y harfi","Latin small letter y with circumflex":"Ãœzeri ÅŸapkalı küçük y harfi","Latin capital letter y with diaeresis":"Ãœstü çift noktalı büyük y harfi","Latin capital letter z with acute":"Ãœzeri tırnaklı büyük z harfi","Latin small letter z with acute":"Ãœzeri tırnaklı küçük z harfi","Latin capital letter z with dot above":"Ãœstü noktalı büyük z harfi","Latin small letter z with dot above":"Ãœstü noktalı küçük z harfi","Latin capital letter z with caron":"Ãœstü ters ÅŸapkalı büyük z harfi","Latin small letter z with caron":"Ãœstü ters ÅŸapkalı küçük z harfi","Latin small letter long s":"Uzun küçük s harfi","Less-than sign":"Küçüktür iÅŸareti","Greater-than sign":"Büyüktür iÅŸareti","Less-than or equal to":"Küçük veya eÅŸit","Greater-than or equal to":"Büyük veya eÅŸit","En dash":"Çizgi","Em dash":"Uzun çizgi",Macron:"Uzatma iÅŸareti",Overline:"Ãœstü çizili","Degree sign":"Derece iÅŸareti","Minus sign":"Eksi iÅŸareti","Plus-minus sign":"Artı eksi iÅŸareti","Division sign":"Bölme iÅŸareti","Fraction slash":"Kesir eÄŸik çizgi","Multiplication sign":"Çarpma iÅŸareti","Latin small letter f with hook":"Latince küçük f harfi",Integral:"Ä°ntegral","N-ary summation":"N-ary toplamı",Infinity:"Sonsuzluk","Square root":"Kare kök","Tilde operator":"Tilde operatörü","Approximately equal to":"Yaklaşık olarak eÅŸit","Almost equal to":"Neredeyse eÅŸit","Not equal to":"EÅŸit deÄŸil","Identical to":"Benzeri","Element of":"Öğesi","Not an element of":"Onun öğesi deÄŸil","Contains as member":"Ãœye olarak içerir","N-ary product":"N-ary ürünü","Logical and":"Mantıksal VE","Logical or":"Mantıksal VEYA","Not sign":"Ä°mzalanmamış",Intersection:"KesiÅŸim",Union:"BirleÅŸik","Partial differential":"Kısmi diferansiyel","For all":"Hepsi için","There exists":"Var","Empty set":"BoÅŸ küme",Nabla:"Nabla","Asterisk operator":"Yıldız operatörü","Proportional to":"Orantılı",Angle:"Açı","Vulgar fraction one quarter":"Kaba kesir bir çeyrek","Vulgar fraction one half":"Kaba kesir bir buçuk","Vulgar fraction three quarters":"Kaba bölüm dörtte üç","Single left-pointing angle quotation mark":"Tek sola dönük açı tırnak iÅŸareti","Single right-pointing angle quotation mark":"SaÄŸa bakan tek açılı tırnak iÅŸareti","Left-pointing double angle quotation mark":"Sola dönük çift açılı tırnak iÅŸareti","Right-pointing double angle quotation mark":"SaÄŸa bakan çift açılı tırnak iÅŸareti","Left single quotation mark":"Sol tek tırnak iÅŸareti","Right single quotation mark":"SaÄŸ tek tırnak iÅŸareti","Left double quotation mark":"Sol çift tırnak iÅŸareti","Right double quotation mark":"SaÄŸ çift tırnak iÅŸareti","Single low-9 quotation mark":"Tek düşük 9 tırnak iÅŸareti","Double low-9 quotation mark":"Çift düşük 9 tırnak iÅŸareti","Inverted exclamation mark":"Ters ünlem iÅŸareti","Inverted question mark":"Ters soru iÅŸareti","Two dot leader":"Öncelikli iki nokta","Horizontal ellipsis":"Yatay elips","Double dagger":"Çift hançer","Per mille sign":"Bin iÅŸareti için","Per ten thousand sign":"Her on bine göre iÅŸareti","Double exclamation mark":"Çift ünlem iÅŸareti","Question exclamation mark":"Soru ünlem iÅŸareti","Exclamation question mark":"Ãœnlem soru iÅŸareti","Double question mark":"Çift soru iÅŸareti","Copyright sign":"Telif hakkı iÅŸareti","Registered sign":"Kayıtlı iÅŸareti","Trade mark sign":"Ticari marka iÅŸareti","Section sign":"Bölüm iÅŸareti","Paragraph sign":"Paragraf iÅŸareti","Reversed paragraph sign":"Ters paragraf iÅŸareti","Character categories":"Karakter kategorileri",Styles:"Stiller","Multiple styles":"Birden fazla stil","Block styles":"Blok stilleri","Text styles":"Metin stilleri","Insert table":"Tablo Ekle","Header column":"BaÅŸlık kolonu","Insert column left":"Sola kolon ekle","Insert column right":"SaÄŸa kolon ekle","Delete column":"Kolonu sil","Select column":"Kolon seç",Column:"Kolon","Header row":"BaÅŸlık satırı","Insert row below":"Alta satır ekle","Insert row above":"Ãœste satır ekle","Delete row":"Satırı sil","Select row":"Satır seç",Row:"Satır","Merge cell up":"Yukarı doÄŸru birleÅŸtir","Merge cell right":"SaÄŸa doÄŸru birleÅŸtir","Merge cell down":"AÅŸağıya doÄŸru birleÅŸtir","Merge cell left":"Sola doÄŸru birleÅŸtir","Split cell vertically":"Hücreyi dikey böl","Split cell horizontally":"Hücreyi yatay böl","Merge cells":"Hücreleri birleÅŸtir","Table toolbar":"Tablo araç çubuÄŸu","Table properties":"Tablo özellikleri","Cell properties":"Hücre özellikleri",Border:"Kenar",Style:"Stil",Width:"GeniÅŸlik",Height:"Yükseklik",Color:"Renk",Background:"Arkaplan",Padding:"İç boÅŸluk",Dimensions:"Ölçüler","Table cell text alignment":"Tablo hücresi metin hizalaması",Alignment:"Hizalama","Horizontal text alignment toolbar":"Yatay metin hizalama araç çubuÄŸu","Vertical text alignment toolbar":"Dikey metin hizalama araç çubuÄŸu","Table alignment toolbar":"Tablo hizalama araç çubuÄŸu",None:"Yok",Solid:"Dolu",Dotted:"Noktalı",Dashed:"Kesik çizgili",Double:"Çift",Groove:"Yiv",Ridge:"Yükselti",Inset:"İçe",Outset:"Dışarıya","Align cell text to the left":"Hücre içindeki metnini sola hizala","Align cell text to the center":"Hücre içindeki metnini ortaya hizalama","Align cell text to the right":"Hücre içindeki metnini saÄŸa hizala","Justify cell text":"Hücre içindeki metini iki yana yasla","Align cell text to the top":"Hücre içindeki metni üste hizala","Align cell text to the middle":"Hücre içindeki metni ortaya hizala","Align cell text to the bottom":"Hücre içindeki metni alta hizala","Align table to the left":"Tabloyu sola hizala","Center table":"Tabloyu ortala","Align table to the right":"Tabloyu saÄŸa hizala","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Geçersiz renk. \"#FF0000\" veya \"rgb(255,0,0)\" veya \"red\" deneyin.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Geçersiz deÄŸer. \"10px\" veya \"2em\" veya sadece \"2\" deneyin.","Color picker":"Renk seçici","Toggle caption off":"Açıklamayı kapat","Toggle caption on":"Açıklamayı aç","Enter table caption":"Tablo açıklaması gir","Rich Text Editor":"Zengin İçerik Editörü","Editor editing area: %0":"Editör düzenleme alanı: %0","Edit block":"BloÄŸu Düzenle","Click to edit block":"BloÄŸu düzenlemek için tıkla","Drag to move":"Taşımak için sürükle",Next:"Sonraki",Previous:"Önceki","Editor toolbar":"Düzenleme araç çubuÄŸu","Dropdown toolbar":"Açılır araç çubuÄŸu",Black:"Siyah","Dim grey":"Koyu Gri",Grey:"Gri","Light grey":"Açık Gri",White:"Beyaz",Red:"Kırmızı",Orange:"Turuncu",Yellow:"Sarı","Light green":"Açık YeÅŸil",Green:"YeÅŸil",Aquamarine:"Su YeÅŸili",Turquoise:"Turkuaz","Light blue":"Açık Mavi",Blue:"Mavi",Purple:"Mor","Editor block content toolbar":"Düzenleyici engelleme içerik araç çubuÄŸu","Editor contextual toolbar":"Düzenleyici içeriksel araç çubuÄŸu",HEX:"ONALTILIK",Accept:"Kabul et","No results found":"Sonuç bulunamadı","No searchable items":"Aranabilir öge yok","Editor dialog":"Düzenleyici iletiÅŸim kutusu",Close:"Kapat",Undo:"Geri al",Redo:"Tekrar yap","Upload in progress":"Yükleme iÅŸlemi devam ediyor","Widget toolbar":"BileÅŸen araç çubuÄŸu","Insert paragraph before block":"Bloktan önce paragraf ekle","Insert paragraph after block":"Bloktan sonra paragraf ekle","Press Enter to type after or press Shift + Enter to type before the widget":"Görsel bileÅŸenden sonra yazmak için Enter'a basın ya da görsel bileÅŸenden önce yazmak için Shift + Enter'a basın","Words: %0":"Kelimeler: %0","Characters: %0":"Karakterler: %0"} );l.getPluralForm=function(n){return (n > 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ug.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ug.js index 2c8e73637427cf1bfea72a58273aeaf39ae99270..a74aabf13efc5e663fdf0b5c83c09175a56029d6 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ug.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ug.js @@ -1 +1 @@ -(function(d){ const l = d['ug'] = d['ug'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"سولغا توغرىلاش","Align right":"ئوÚغا توغرىلاش","Align center":"ئوتتۇرىغا توغرىلاش",Justify:"Ø¦ÙˆÚ Ø³ÙˆÙ„Ø¯Ù‰Ù† توغرىلا","Text alignment":"تÛكىست توغرىلاش","Text alignment toolbar":"تÛكىست توغرىلاش قورالبالدىقى",Bold:"توم",Italic:"يانتۇ",Underline:"ئاستى سىزىق",Code:"كود",Strikethrough:"ئۆچۈرۈش سىزىقى",Subscript:"ئاستبەلگە",Superscript:"ئۈستبەلگە","Block quote":"نەقىل","Insert code block":"كود بۆلىكى قىستۇر","Plain text":"ساپ تÛكىست",Cancel:"ۋاز ÙƒÛ•Ú†",Clear:"تازىلا","Remove color":"رەÚنى چىقىرىۋەت","Restore default":"ÙƒÛ†Úۈلدىكىگە قايتۇر",Save:"ساقلا","Show more items":"تÛخىمۇ ÙƒÛ†Ù¾ تۈرنى كۆرسەت","%0 of %1":"%0 / %1","Cannot upload file:":"يۈكلەشكە بولمايدىغان ھۆججەت:","Rich Text Editor. Editing area: %0":"مول تÛكىست تەھرىرلىگۈچ. تەھرىرلەش رايونى: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"ئىزدە Û‹Û• ئالماشتۇر","Find in text…":"تÛكىستتىن ئىزدە…",Find:"ئىزدە","Previous result":"ئالدىنقى نەتىجە","Next result":"ÙƒÛيىنكى نەتىجە",Replace:"ئالماشتۇر","Replace all":"ھەممىنى ئالماشتۇر","Match case":"Ú†ÙˆÚ ÙƒÙ‰Ú†Ù‰Ùƒ ھەرپنى پەرقلەندۈر","Whole words only":"سۆزلا","Replace with…":"ئالماشتۇرۇلۇدىغىنى…","Text to find must not be empty.":"ئىزدەيدىغان تÛكىست بوش قالدۇرۇلمايدۇ.","Tip: Find some text first in order to replace it.":"ئەسكەرتىش: ئاۋال ئىزدەپ ئاندىن ئالماشتۇرىدۇ.","Advanced options":"",Paragraph:"ئابزاس",Heading:"ماۋزۇ","Choose heading":"ماۋزۇ تاللاش","Heading 1":"ماۋزۇ 1","Heading 2":"ماۋزۇ 2","Heading 3":"ماۋزۇ 3","Heading 4":"ماۋزۇ 4","Heading 5":"ماۋزۇ 5","Heading 6":"ماۋزۇ 6","Type your title":"ماۋزۇ كىرگۈزۈلىدۇ","Type or paste your content here.":"مەزمۇن بۇ جايغا كىرگۈزۈلىدۇ ياكى چاپلىنىدۇ.","Horizontal line":"توغرىسىغا سىزىق","HTML object":"HTML جىسىم","Increase indent":"تارايتىشنى ئاشۇر","Decrease indent":"تارايتىشنى ÙƒÛمەيت",Unlink:"ئۇلانمىنى ئۈزۈش",Link:"ئۇلانما","Link URL":"ئۇلاش ئادىرسى","Link image":"ئۇلانما سۈرەت","Edit link":"ئۇلانما تەھرىر","Open link in new tab":"ئۇلانمىنى ÙŠÛÚÙ‰ بەتكۈچتە ئاچ","This link has no URL":"بۇ Ø¦Û‡Ù„Ø§Ù†Ù…Ù‰Ù†Ù‰Ú ØªÙˆØ± ئادرÛسى يوق","Open in a new tab":"ÙŠÛÚÙ‰ بەتكۈچتە ئاچ",Downloadable:"چۈشۈرۈشچان","Numbered List":"نومۇرلۇق تىزىملىك","Bulleted List":"بەلگە تىزىملىك","To-do List":"ئىش تىزىمى","Bulleted list styles toolbar":"تۈر بەلگە تىزىمى ئۇسلۇبىدىكى قورال بالداق","Numbered list styles toolbar":"تۈر نومۇرى تىزىمى ئۇسلۇبىدىكى قورال بالداق","Toggle the disc list style":"ئۇيۇل چەمبەر تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the circle list style":"بوش چەمبەر تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the square list style":"ئۇيۇل كۋادرات تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the decimal list style":"ئونلۇق سان تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the decimal with leading zero list style":"Ù†Û†Ù„ بىلەن باشلانغان ئونلۇق سان تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the lower–roman list style":"كىچىك رىم رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the upper–roman list style":"Ú†ÙˆÚ Ø±Ù‰Ù… رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the lower–latin list style":"كىچىك لاتىن رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the upper–latin list style":"Ú†ÙˆÚ Ù„Ø§ØªÙ‰Ù† رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر",Disc:"ئۇيۇل چەمبەر",Circle:"چەمبەر",Square:"چاسا",Decimal:"ئونلۇق كەسىر","Decimal with leading zero":"Ù†Û†Ù„ بىلەن باشلانغان ئونلۇق كەسىر","Lower–roman":"كىچىك رىم رەقىمى","Upper-roman":"Ú†ÙˆÚ Ø±Ù‰Ù… رەقىمى","Lower-latin":"كىچىك لاتىن رەقىمى","Upper-latin":"Ú†ÙˆÚ Ù„Ø§ØªÙ‰Ù† رەقىمى","List properties":"تىزىم خاسلىقى","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"پىچىمنى چىقىرىۋەت","Select all":"ھەممىنى تاللا","Show blocks":"بۆلەكلەرنى كۆرسەت",Source:"مەنبە",Styles:"ئۇسلۇب","Multiple styles":"ÙƒÛ†Ù¾ ئۇسلۇب","Block styles":"بۆلەك ئۇسلۇبى","Text styles":"تÛكىست ئۇسلۇبى","Insert table":"جەدۋەل قىستۇر","Header column":"","Insert column left":"","Insert column right":"","Delete column":"","Select column":"",Column:"","Header row":"","Insert row below":"","Insert row above":"","Delete row":"","Select row":"",Row:"","Merge cell up":"","Merge cell right":"","Merge cell down":"","Merge cell left":"","Split cell vertically":"","Split cell horizontally":"","Merge cells":"","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"تÛكىست تەھرىرلىگۈچ","Editor editing area: %0":"تەھرىرلىگۈچ تەھرىرلەش رايونى: %0","Edit block":"بۆلەك تەھرىر","Click to edit block":"Ú†Ûكىلسە بۆلەك تەھرىرلىنىدۇ","Drag to move":"يۆتكەشتە سۆرىلىدۇ",Next:"ÙƒÛيىنكى",Previous:"ئالدىنقى","Editor toolbar":"تەھرىرلىگۈچ قورال بالداق","Dropdown toolbar":"سىرىلما قورال بالداق",Black:"قارا","Dim grey":"سۇس كۈلرەÚ",Grey:"كۈلرەÚ","Light grey":"ئوچۇق كۈلرەÚ",White:"ئاق",Red:"قىزىل",Orange:"قىزغۇچ سÛرىق",Yellow:"سÛرىق","Light green":"ئوچۇق ÙŠÛشىل",Green:"ÙŠÛشىل",Aquamarine:"دÛÚىز كۆكى",Turquoise:"","Light blue":"ئوچۇق ÙƒÛ†Ùƒ",Blue:"ÙƒÛ†Ùƒ",Purple:"بىنەپشە","Editor block content toolbar":"تەھرىرلىگۈچ بۆلىكى مەزمۇن قورال بالداق","Editor contextual toolbar":"تەھرىرلىگۈچ مەزمۇن قورال بالداق",HEX:"",Accept:"قوشۇل","No results found":"Ú¾Ûچقانداق نەتىجە تÛپىلمىدى","No searchable items":"ئىزدىگۈدەك تۈر يوق","Editor dialog":"",Close:"",Undo:"ÙŠÛنىۋÛلىش",Redo:"تەكرارلاش","Upload in progress":"يۈكلىنىۋاتىدۇ","Words: %0":"سۆز: %0","Characters: %0":"ھەرپ: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ug'] = d['ug'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"سولغا توغرىلاش","Align right":"ئوÚغا توغرىلاش","Align center":"ئوتتۇرىغا توغرىلاش",Justify:"Ø¦ÙˆÚ Ø³ÙˆÙ„Ø¯Ù‰Ù† توغرىلا","Text alignment":"تÛكىست توغرىلاش","Text alignment toolbar":"تÛكىست توغرىلاش قورالبالدىقى",Bold:"توم",Italic:"يانتۇ",Underline:"ئاستى سىزىق",Code:"كود",Strikethrough:"ئۆچۈرۈش سىزىقى",Subscript:"ئاستبەلگە",Superscript:"ئۈستبەلگە","Block quote":"نەقىل","Insert code block":"كود بۆلىكى قىستۇر","Plain text":"ساپ تÛكىست",Cancel:"ۋاز ÙƒÛ•Ú†",Clear:"تازىلا","Remove color":"رەÚنى چىقىرىۋەت","Restore default":"ÙƒÛ†Úۈلدىكىگە قايتۇر",Save:"ساقلا","Show more items":"تÛخىمۇ ÙƒÛ†Ù¾ تۈرنى كۆرسەت","%0 of %1":"%0 / %1","Cannot upload file:":"يۈكلەشكە بولمايدىغان ھۆججەت:","Rich Text Editor. Editing area: %0":"مول تÛكىست تەھرىرلىگۈچ. تەھرىرلەش رايونى: %0","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"ئىزدە Û‹Û• ئالماشتۇر","Find in text…":"تÛكىستتىن ئىزدە…",Find:"ئىزدە","Previous result":"ئالدىنقى نەتىجە","Next result":"ÙƒÛيىنكى نەتىجە",Replace:"ئالماشتۇر","Replace all":"ھەممىنى ئالماشتۇر","Match case":"Ú†ÙˆÚ ÙƒÙ‰Ú†Ù‰Ùƒ ھەرپنى پەرقلەندۈر","Whole words only":"سۆزلا","Replace with…":"ئالماشتۇرۇلۇدىغىنى…","Text to find must not be empty.":"ئىزدەيدىغان تÛكىست بوش قالدۇرۇلمايدۇ.","Tip: Find some text first in order to replace it.":"ئەسكەرتىش: ئاۋال ئىزدەپ ئاندىن ئالماشتۇرىدۇ.","Advanced options":"","Font Size":"خەت Ú†ÙˆÚلۇقى",Tiny:"Ø¦Û•Ú ÙƒÙ‰Ú†Ù‰Ùƒ",Small:"كىچىك",Big:"Ú†ÙˆÚ",Huge:"زور","Font Family":"خەت نۇسخىسى",Default:"سۈكۈتتىكى","Font Color":"خەت رەÚÚ¯Ù‰","Font Background Color":"خەت تەگلىك رەÚÚ¯Ù‰","Document colors":"پۈتۈك رەÚÚ¯Ù‰",Paragraph:"ئابزاس",Heading:"ماۋزۇ","Choose heading":"ماۋزۇ تاللاش","Heading 1":"ماۋزۇ 1","Heading 2":"ماۋزۇ 2","Heading 3":"ماۋزۇ 3","Heading 4":"ماۋزۇ 4","Heading 5":"ماۋزۇ 5","Heading 6":"ماۋزۇ 6","Type your title":"ماۋزۇ كىرگۈزۈلىدۇ","Type or paste your content here.":"مەزمۇن بۇ جايغا كىرگۈزۈلىدۇ ياكى چاپلىنىدۇ.","Horizontal line":"توغرىسىغا سىزىق","HTML object":"HTML جىسىم","Increase indent":"تارايتىشنى ئاشۇر","Decrease indent":"تارايتىشنى ÙƒÛمەيت",Unlink:"ئۇلانمىنى ئۈزۈش",Link:"ئۇلانما","Link URL":"ئۇلاش ئادىرسى","Link image":"ئۇلانما سۈرەت","Edit link":"ئۇلانما تەھرىر","Open link in new tab":"ئۇلانمىنى ÙŠÛÚÙ‰ بەتكۈچتە ئاچ","This link has no URL":"بۇ Ø¦Û‡Ù„Ø§Ù†Ù…Ù‰Ù†Ù‰Ú ØªÙˆØ± ئادرÛسى يوق","Open in a new tab":"ÙŠÛÚÙ‰ بەتكۈچتە ئاچ",Downloadable:"چۈشۈرۈشچان","Numbered List":"نومۇرلۇق تىزىملىك","Bulleted List":"بەلگە تىزىملىك","To-do List":"ئىش تىزىمى","Bulleted list styles toolbar":"تۈر بەلگە تىزىمى ئۇسلۇبىدىكى قورال بالداق","Numbered list styles toolbar":"تۈر نومۇرى تىزىمى ئۇسلۇبىدىكى قورال بالداق","Toggle the disc list style":"ئۇيۇل چەمبەر تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the circle list style":"بوش چەمبەر تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the square list style":"ئۇيۇل كۋادرات تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the decimal list style":"ئونلۇق سان تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the decimal with leading zero list style":"Ù†Û†Ù„ بىلەن باشلانغان ئونلۇق سان تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the lower–roman list style":"كىچىك رىم رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the upper–roman list style":"Ú†ÙˆÚ Ø±Ù‰Ù… رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the lower–latin list style":"كىچىك لاتىن رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر","Toggle the upper–latin list style":"Ú†ÙˆÚ Ù„Ø§ØªÙ‰Ù† رەقىمى تىزىم ئۇسلۇبىغا ئالماشتۇر",Disc:"ئۇيۇل چەمبەر",Circle:"چەمبەر",Square:"چاسا",Decimal:"ئونلۇق كەسىر","Decimal with leading zero":"Ù†Û†Ù„ بىلەن باشلانغان ئونلۇق كەسىر","Lower–roman":"كىچىك رىم رەقىمى","Upper-roman":"Ú†ÙˆÚ Ø±Ù‰Ù… رەقىمى","Lower-latin":"كىچىك لاتىن رەقىمى","Upper-latin":"Ú†ÙˆÚ Ù„Ø§ØªÙ‰Ù† رەقىمى","List properties":"تىزىم خاسلىقى","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"پىچىمنى چىقىرىۋەت","Select all":"ھەممىنى تاللا","Show blocks":"بۆلەكلەرنى كۆرسەت",Source:"مەنبە",Styles:"ئۇسلۇب","Multiple styles":"ÙƒÛ†Ù¾ ئۇسلۇب","Block styles":"بۆلەك ئۇسلۇبى","Text styles":"تÛكىست ئۇسلۇبى","Insert table":"جەدۋەل قىستۇر","Header column":"","Insert column left":"","Insert column right":"","Delete column":"","Select column":"",Column:"","Header row":"","Insert row below":"","Insert row above":"","Delete row":"","Select row":"",Row:"","Merge cell up":"","Merge cell right":"","Merge cell down":"","Merge cell left":"","Split cell vertically":"","Split cell horizontally":"","Merge cells":"","Table toolbar":"","Table properties":"","Cell properties":"",Border:"",Style:"",Width:"",Height:"",Color:"",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"",Dashed:"",Double:"",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"تÛكىست تەھرىرلىگۈچ","Editor editing area: %0":"تەھرىرلىگۈچ تەھرىرلەش رايونى: %0","Edit block":"بۆلەك تەھرىر","Click to edit block":"Ú†Ûكىلسە بۆلەك تەھرىرلىنىدۇ","Drag to move":"يۆتكەشتە سۆرىلىدۇ",Next:"ÙƒÛيىنكى",Previous:"ئالدىنقى","Editor toolbar":"تەھرىرلىگۈچ قورال بالداق","Dropdown toolbar":"سىرىلما قورال بالداق",Black:"قارا","Dim grey":"سۇس كۈلرەÚ",Grey:"كۈلرەÚ","Light grey":"ئوچۇق كۈلرەÚ",White:"ئاق",Red:"قىزىل",Orange:"قىزغۇچ سÛرىق",Yellow:"سÛرىق","Light green":"ئوچۇق ÙŠÛشىل",Green:"ÙŠÛشىل",Aquamarine:"دÛÚىز كۆكى",Turquoise:"","Light blue":"ئوچۇق ÙƒÛ†Ùƒ",Blue:"ÙƒÛ†Ùƒ",Purple:"بىنەپشە","Editor block content toolbar":"تەھرىرلىگۈچ بۆلىكى مەزمۇن قورال بالداق","Editor contextual toolbar":"تەھرىرلىگۈچ مەزمۇن قورال بالداق",HEX:"",Accept:"قوشۇل","No results found":"Ú¾Ûچقانداق نەتىجە تÛپىلمىدى","No searchable items":"ئىزدىگۈدەك تۈر يوق","Editor dialog":"",Close:"",Undo:"ÙŠÛنىۋÛلىش",Redo:"تەكرارلاش","Upload in progress":"يۈكلىنىۋاتىدۇ","Words: %0":"سۆز: %0","Characters: %0":"ھەرپ: %0"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uk.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uk.js index 936add80d5bcb136de7c8c59eadc30259e82f206..46e42e6d2b4c0c910d9dc268fe1a0cd12ea66b6e 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uk.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uk.js @@ -1 +1 @@ -(function(d){ const l = d['uk'] = d['uk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"По лівому краю","Align right":"По правому краю","Align center":"По центру",Justify:"По ширині","Text alignment":"Ð’Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту","Text alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту",Bold:"Жирний",Italic:"КурÑив",Underline:"ПідкреÑлений",Code:"Код",Strikethrough:"ЗакреÑлений",Subscript:"Ðижній індекÑ",Superscript:"Верхній індекÑ","Block quote":"Цитата","Insert code block":"Ð’Ñтавте блок коду","Plain text":"ПроÑтий текÑÑ‚",Cancel:"Відміна",Clear:"ОчиÑтити","Remove color":"Видалити колір","Restore default":"Відновити за замовчуваннÑм",Save:"Зберегти","Show more items":"Показати більше","%0 of %1":"%0 із %1","Cannot upload file:":"Ðеможливо завантажити файл:","Rich Text Editor. Editing area: %0":"Редактор Rich Text. ОблаÑÑ‚ÑŒ редагуваннÑ: %0","Insert with file manager":"Ð’Ñтавити за допомогою файлового менеджера","Replace with file manager":"Замінити за допомогою файлового менеджера","Insert image with file manager":"Ð’Ñтавити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° допомогою файлового менеджера","Replace image with file manager":"Замінити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° допомогою файлового менеджера","Find and replace":"Знайти та замінити","Find in text…":"Знайти в текÑті…",Find:"Знайти","Previous result":"Попередній результат","Next result":"ÐаÑтупний результат",Replace:"Замінити","Replace all":"Замінити вÑе","Match case":"Врахувати регіÑÑ‚Ñ€","Whole words only":"Тільки цілі Ñлова","Replace with…":"Замінити…","Text to find must not be empty.":"ТекÑÑ‚ Ð´Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ не повинен бути порожнім.","Tip: Find some text first in order to replace it.":"Порада: Ñпочатку знайдіть текÑÑ‚, щоб замінити його.","Advanced options":"Розширені опції",Paragraph:"Параграф",Heading:"Заголовок","Choose heading":"Оберіть заголовок","Heading 1":"Заголовок 1","Heading 2":"Заголовок 2","Heading 3":"Заголовок 3","Heading 4":"Заголовок 4","Heading 5":"Заголовок 5","Heading 6":"Заголовок 6","Type your title":"Введіть назву","Type or paste your content here.":"Введіть або вÑтавте Ñвій вміÑÑ‚ тут.","Horizontal line":"Горизонтальна лініÑ","HTML object":"HTML об'єкт","Increase indent":"Збільшити відÑтуп","Decrease indent":"Зменшити відÑтуп",Unlink:"Видалити поÑиланнÑ",Link:"ПоÑиланнÑ","Link URL":"URL поÑиланнÑ","Link image":"ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ","Edit link":"Редагувати поÑиланнÑ","Open link in new tab":"Відкрити поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñƒ новій вкладці","This link has no URL":"Це поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ðµ має URL","Open in a new tab":"Вікрити у новій вкладці",Downloadable:"Завантажувальне","Numbered List":"Ðумерований ÑпиÑок","Bulleted List":"Маркерний ÑпиÑок","To-do List":"СпиÑок Ñправ","Bulleted list styles toolbar":"Панель маркерних ÑпиÑків","Numbered list styles toolbar":"Панель нумерованих ÑпиÑків","Toggle the disc list style":"Перемкнути диÑковий Ñтиль ÑпиÑку ","Toggle the circle list style":"Перемкнути круговий Ñтиль ÑпиÑку","Toggle the square list style":"Перемкнути квадратний Ñтиль ÑпиÑку","Toggle the decimal list style":"Перемкнути деÑÑтковий Ñтиль ÑпиÑку","Toggle the decimal with leading zero list style":"Перемкнути деÑÑтковий Ñтиль ÑпиÑку з нулем на початку","Toggle the lower–roman list style":"Перемкнути нижньо-римÑький Ñтиль ÑпиÑку","Toggle the upper–roman list style":"Перемкнути верхньо-римÑький Ñтиль ÑпиÑку","Toggle the lower–latin list style":"Перемкнути нижній латинÑький Ñтиль ÑпиÑку","Toggle the upper–latin list style":"Перемкнути верхній латинÑький Ñтиль ÑпиÑку",Disc:"Круг",Circle:"Коло",Square:"Квадрат",Decimal:"Цифри","Decimal with leading zero":"Цифри із провідним нулем","Lower–roman":"Ðижньо-римÑький","Upper-roman":"Верхньо-римÑький","Lower-latin":"Ðижній латинÑький","Upper-latin":"Верхній латинÑький ","List properties":"СпиÑок влаÑтивоÑтей","Start at":"Початок при","Start index must be greater than 0.":"Початковий Ñ–Ð½Ð´ÐµÐºÑ Ð¼Ð°Ñ” бути більше 0.","Reversed order":"Зворотний порÑдок","Remove Format":"Видалити форматуваннÑ","Select all":"Вибрати вÑе","Show blocks":"Показати блоки",Source:"Джерело","Special characters":"Спеціальні Ñимволи",All:"УÑÑ–",Arrows:"Стрілки",Currency:"Валюта",Latin:"ЛатинÑькі",Mathematical:"Математичні",Text:"ТекÑÑ‚","leftwards simple arrow":"проÑта Ñтрілка вліво","rightwards simple arrow":"проÑта Ñтрілка вправо","upwards simple arrow":"проÑта Ñтрілка вгору","downwards simple arrow":"проÑта Ñтрілка вниз","leftwards double arrow":"подвійна Ñтрілка вліво","rightwards double arrow":"подвійна Ñтрілка вправо","upwards double arrow":"подвійна Ñтрілка вгору","downwards double arrow":"подвійна Ñтрілка вниз","leftwards dashed arrow":"пунктирна Ñтрілка вліво","rightwards dashed arrow":"пунктирна Ñтрілка вправо","upwards dashed arrow":"пунктирна Ñтрілка вгору","downwards dashed arrow":"пунктирна Ñтрілка вниз","leftwards arrow to bar":"Ñтрілка вліво до блоку","rightwards arrow to bar":"Ñтрілка вправо до блоку","upwards arrow to bar":"Ñтрілка вгору до блоку","downwards arrow to bar":"Ñтрілка вниз до блоку","up down arrow with base":"Ñтрілка вгору-вниз із оÑновою","back with leftwards arrow above":"back зі Ñтрілкою вліво зверху","end with leftwards arrow above":"end зі Ñтрілкою вліво зверху","on with exclamation mark with left right arrow above":"on зі знаком оклику зі Ñтрілкою вліво-вправо зверху","soon with rightwards arrow above":"soon зі Ñтрілкою вправо зверху","top with upwards arrow above":"top зі Ñтрілкою вгору зверху","Dollar sign":"Символ долара","Euro sign":"Символ євро","Yen sign":"Символ єни","Pound sign":"Символ фунта","Cent sign":"Символ цента","Euro-currency sign":"Символ євровалюти","Colon sign":"Символ двокрапки","Cruzeiro sign":"Символ крузейро","French franc sign":"Символ французького франка","Lira sign":"Символ ліри","Currency sign":"Символ валюти","Bitcoin sign":"Символ біткоїна","Mill sign":"Символ мільйона","Naira sign":"Символ найри","Peseta sign":"Символ пеÑети","Rupee sign":"Символ рупії","Won sign":"Символ вони","New sheqel sign":"Символ нового шекелÑ","Dong sign":"Символ донга","Kip sign":"Символ кіпа","Tugrik sign":"Символ тугрика","Drachma sign":"Символ драхми","German penny sign":"Символ німецького пенні","Peso sign":"Символ пеÑо","Guarani sign":"Символ гуарані","Austral sign":"Символ ауÑтрала","Hryvnia sign":"Символ гривні","Cedi sign":"Символ Ñеді","Livre tournois sign":"Символ турÑького лівру","Spesmilo sign":"Символ ÑпеÑміло","Tenge sign":"Символ тенге","Indian rupee sign":"Символ індійÑької рупії","Turkish lira sign":"Символ турецької ліри","Nordic mark sign":"Символ нордичної марки","Manat sign":"Символ маната","Ruble sign":"Символ рублÑ","Latin capital letter a with macron":"ЛатинÑька велика літера а зі знаком довготи","Latin small letter a with macron":"ЛатинÑька мала літера а зі знаком довготи","Latin capital letter a with breve":"ЛатинÑька велика літера а з бревіÑом","Latin small letter a with breve":"ЛатинÑька мала літера а з бревіÑом","Latin capital letter a with ogonek":"ЛатинÑька велика літера а з хвоÑтиком","Latin small letter a with ogonek":"ЛатинÑька мала літера а з хвоÑтиком","Latin capital letter c with acute":"ЛатинÑька велика літера Ñ Ð· гоÑтрим наголоÑом","Latin small letter c with acute":"ЛатинÑька мала літера Ñ Ð· гоÑтрим наголоÑом","Latin capital letter c with circumflex":"ЛатинÑька велика літера Ñ Ð· дашком","Latin small letter c with circumflex":"ЛатинÑька мала літера Ñ Ð· дашком","Latin capital letter c with dot above":"ЛатинÑька велика літера Ñ Ð· крапкою згори","Latin small letter c with dot above":"ЛатинÑька мала літера Ñ Ð· крапкою згори","Latin capital letter c with caron":"ЛатинÑька велика літера Ñ Ð· пташкою","Latin small letter c with caron":"ЛатинÑька мала літера Ñ Ð· пташкою","Latin capital letter d with caron":"ЛатинÑька велика літера d з пташкою","Latin small letter d with caron":"ЛатинÑька мала літера d з пташкою","Latin capital letter d with stroke":"ЛатинÑька велика літера d з риÑкою","Latin small letter d with stroke":"ЛатинÑька мала літера d з риÑкою","Latin capital letter e with macron":"ЛатинÑька велика літера е зі знаком довготи","Latin small letter e with macron":"ЛатинÑька мала літера е зі знаком довготи","Latin capital letter e with breve":"ЛатинÑька велика літера е з бревіÑом","Latin small letter e with breve":"ЛатинÑька мала літера е з бревіÑом","Latin capital letter e with dot above":"ЛатинÑька велика літера е з крапкою вгорі","Latin small letter e with dot above":"ЛатинÑька мала літера е з крапкою вгорі","Latin capital letter e with ogonek":"ЛатинÑька велика літера е з хвоÑтиком","Latin small letter e with ogonek":"ЛатинÑька мала літера е з хвоÑтиком","Latin capital letter e with caron":"ЛатинÑька велика літера е з пташкою","Latin small letter e with caron":"ЛатинÑька мала літера е з пташкою","Latin capital letter g with circumflex":"ЛатинÑька велика літера g з дашком","Latin small letter g with circumflex":"ЛатинÑька мала літера g з дашком","Latin capital letter g with breve":"ЛатинÑька велика літера g з бревіÑом","Latin small letter g with breve":"ЛатинÑька мала літера g з бревіÑом","Latin capital letter g with dot above":"ЛатинÑька велика літера g з крапкою вгорі","Latin small letter g with dot above":"ЛатинÑька мала літера g з крапкою вгорі","Latin capital letter g with cedilla":"ЛатинÑька велика літера g з Ñедилем","Latin small letter g with cedilla":"ЛатинÑька мала літера g з Ñедилем","Latin capital letter h with circumflex":"ЛатинÑька велика літера h з дашком","Latin small letter h with circumflex":"ЛатинÑька мала літера h з дашком","Latin capital letter h with stroke":"ЛатинÑька велика літера h з риÑкою","Latin small letter h with stroke":"ЛатинÑька мала літера h з риÑкою","Latin capital letter i with tilde":"ЛатинÑька велика літера Ñ– з тильдою","Latin small letter i with tilde":"ЛатинÑька мала літера Ñ– з тильдою","Latin capital letter i with macron":"ЛатинÑька велика літера Ñ– зі знаком довготи","Latin small letter i with macron":"ЛатинÑька мала літера Ñ– зі знаком довготи","Latin capital letter i with breve":"ЛатинÑька велика літера Ñ– з бревіÑом","Latin small letter i with breve":"ЛатинÑька мала літера Ñ– з бревіÑом","Latin capital letter i with ogonek":"ЛатинÑька велика літера Ñ– з пташкою","Latin small letter i with ogonek":"ЛатинÑька мала літера Ñ– з пташкою","Latin capital letter i with dot above":"ЛатинÑька велика літера Ñ– з крапкою вгорі","Latin small letter dotless i":"ЛатинÑька мала літера Ñ– без крапки","Latin capital ligature ij":"ЛатинÑька велика лігатура ij","Latin small ligature ij":"ЛатинÑька мала лігатура ij","Latin capital letter j with circumflex":"ЛатинÑька велика літера j з дашком","Latin small letter j with circumflex":"ЛатинÑька мала літера j з дашком","Latin capital letter k with cedilla":"ЛатинÑька велика літера k з Ñедилем","Latin small letter k with cedilla":"ЛатинÑька мала літера k з Ñедилем","Latin small letter kra":"ЛатинÑька мала літера kra","Latin capital letter l with acute":"ЛатинÑька велика літера l з гоÑтрим наголоÑом","Latin small letter l with acute":"ЛатинÑька мала літера l з гоÑтрим наголоÑом","Latin capital letter l with cedilla":"ЛатинÑька велика літера l із Ñедилем","Latin small letter l with cedilla":"ЛатинÑька мала літера l із Ñедилем","Latin capital letter l with caron":"ЛатинÑька велика літера l із пташкою","Latin small letter l with caron":"ЛатинÑька мала літера l із пташкою","Latin capital letter l with middle dot":"ЛатинÑька велика літера l з Ñередньою крапкою","Latin small letter l with middle dot":"ЛатинÑька мала літера l з Ñередньою крапкою","Latin capital letter l with stroke":"ЛатинÑька велика літера l з риÑкою","Latin small letter l with stroke":"ЛатинÑька мала літера l з риÑкою","Latin capital letter n with acute":"ЛатинÑька велика літера n з гоÑтрим наголоÑом","Latin small letter n with acute":"ЛатинÑька мала літера n з гоÑтрим наголоÑом","Latin capital letter n with cedilla":"ЛатинÑька велика літера n із Ñедилем","Latin small letter n with cedilla":"ЛатинÑька мала літера n із Ñедилем","Latin capital letter n with caron":"ЛатинÑька велика літера n із пташкою","Latin small letter n with caron":"ЛатинÑька мала літера n із пташкою","Latin small letter n preceded by apostrophe":"ЛатинÑька мала літера n з апоÑтрофом","Latin capital letter eng":"ЛатинÑькі великі літери eng","Latin small letter eng":"ЛатинÑькі малі літери eng","Latin capital letter o with macron":"ЛатинÑька велика літера о зі знаком довготи","Latin small letter o with macron":"ЛатинÑька мала літера о зі знаком довготи","Latin capital letter o with breve":"ЛатинÑька велика літера о з бревіÑом","Latin small letter o with breve":"ЛатинÑька мала літера о з бревіÑом","Latin capital letter o with double acute":"ЛатинÑька велика літера о з подвійним наголоÑом","Latin small letter o with double acute":"ЛатинÑька мала літера о з подвійним наголоÑом","Latin capital ligature oe":"ЛатинÑька велика лігатура ое","Latin small ligature oe":"ЛатинÑька мала лігатура ое","Latin capital letter r with acute":"ЛатинÑька велика літера r з гоÑтрим наголоÑом","Latin small letter r with acute":"ЛатинÑька мала літера r з гоÑтрим наголоÑом","Latin capital letter r with cedilla":"ЛатинÑька велика літера r із Ñедилем","Latin small letter r with cedilla":"ЛатинÑька мала літера r із Ñедилем","Latin capital letter r with caron":"ЛатинÑька велика літера r із пташкою","Latin small letter r with caron":"ЛатинÑька мала літера r із пташкою","Latin capital letter s with acute":"ЛатинÑька велика літера s із гоÑтрим наголоÑом","Latin small letter s with acute":"ЛатинÑька мала літера s із гоÑтрим наголоÑом ","Latin capital letter s with circumflex":"ЛатинÑька велика літера s із дашком","Latin small letter s with circumflex":"ЛатинÑька мала літера s із дашком","Latin capital letter s with cedilla":"ЛатинÑька велика літера s із Ñедилем","Latin small letter s with cedilla":"ЛатинÑька мала літера s із Ñедилем","Latin capital letter s with caron":"ЛатинÑька велика літера s із пташкою","Latin small letter s with caron":"ЛатинÑька мала літера s із пташкою","Latin capital letter t with cedilla":"ЛатинÑька велика літера t із Ñедилем","Latin small letter t with cedilla":"ЛатинÑька мала літера t із Ñедилем","Latin capital letter t with caron":"ЛатинÑька велика літера t із пташкою","Latin small letter t with caron":"ЛатинÑька мала літера t із пташкою","Latin capital letter t with stroke":"ЛатинÑька велика літера t із риÑкою","Latin small letter t with stroke":"ЛатинÑька мала літера t із риÑкою","Latin capital letter u with tilde":"ЛатинÑька велика літера u із тильдою","Latin small letter u with tilde":"ЛатинÑька мала літера u із тильдою","Latin capital letter u with macron":"ЛатинÑька велика літера u зі знаком довготи","Latin small letter u with macron":"ЛатинÑька мала літера u зі знаком довготи","Latin capital letter u with breve":"ЛатинÑька велика літера u із бревіÑом","Latin small letter u with breve":"ЛатинÑька мала літера u із бревіÑом","Latin capital letter u with ring above":"ЛатинÑька велика літера u із кільцем вгорі","Latin small letter u with ring above":"ЛатинÑька мала літера u із кільцем вгорі","Latin capital letter u with double acute":"ЛатинÑька велика літера u із подвійним наголоÑом","Latin small letter u with double acute":"ЛатинÑька мала літера uіз подвійним наголоÑом","Latin capital letter u with ogonek":"ЛатинÑька велика літера u з хвоÑтиком","Latin small letter u with ogonek":"ЛатинÑька мала літера u з хвоÑтиком","Latin capital letter w with circumflex":"ЛатинÑька велика літера w із дашком","Latin small letter w with circumflex":"ЛатинÑька мала літера w із дашком","Latin capital letter y with circumflex":"ЛатинÑька велика літера y із дашком","Latin small letter y with circumflex":"ЛатинÑька мала літера y із дашком","Latin capital letter y with diaeresis":"ЛатинÑька велика літера y з умлÑутом","Latin capital letter z with acute":"ЛатинÑька велика літера z з гоÑтрим наголоÑом","Latin small letter z with acute":"ЛатинÑька мала літера z з гоÑтрим наголоÑом","Latin capital letter z with dot above":"ЛатинÑька велика літера z з крапкою вгорі","Latin small letter z with dot above":"ЛатинÑька мала літера z з крапкою вгорі","Latin capital letter z with caron":"ЛатинÑька велика літера z з пташкою","Latin small letter z with caron":"ЛатинÑька мала літера z з пташкою","Latin small letter long s":"ЛатинÑька мала літера довга s","Less-than sign":"Знак менше","Greater-than sign":"Знак більше","Less-than or equal to":"Менше або дорівнює","Greater-than or equal to":"Більше або дорівнює","En dash":"Тире","Em dash":"Довге тире",Macron:"Знак довготи",Overline:"РиÑка згори","Degree sign":"Знак ÑтупенÑ","Minus sign":"Знак мінуÑ","Plus-minus sign":"Знак плюÑ-мінуÑ","Division sign":"Знак діленнÑ","Fraction slash":"РиÑка дробу","Multiplication sign":"Знак множеннÑ","Latin small letter f with hook":"ЛатинÑька мала літера f з гачком",Integral:"Інтеграл","N-ary summation":"Сигма",Infinity:"ÐеÑкінченніÑÑ‚ÑŒ","Square root":"Квадратний корінь","Tilde operator":"Оператор тильди","Approximately equal to":"Приблизно дорівнює","Almost equal to":"Майже дорівнює","Not equal to":"Ðе дорівнює","Identical to":"Ідентичне до","Element of":"Елемент","Not an element of":"Ðе елемент","Contains as member":"МіÑтить Ñк елемент","N-ary product":"Пі","Logical and":"Логічний Ñполучник and","Logical or":"Логічний Ñполучник or","Not sign":"Знак не",Intersection:"Перетин",Union:"Юніон","Partial differential":"ЧаÑтинні похідні","For all":"Ð”Ð»Ñ Ð²ÑÑ–Ñ…","There exists":"Там Ñ–Ñнує","Empty set":"Порожній набір",Nabla:"Ðабла","Asterisk operator":"Оператор зірочка","Proportional to":"Пропорційно до",Angle:"Кут","Vulgar fraction one quarter":"Звичайний дріб одна четверта","Vulgar fraction one half":"Звичайний дріб одна друга","Vulgar fraction three quarters":"Звичайний дріб три четвертих","Single left-pointing angle quotation mark":"Одинарна лівоÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½Ñ ÐºÑƒÑ‚Ð¾Ð²Ð° лапка","Single right-pointing angle quotation mark":"Одинарна правоÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½Ñ ÐºÑƒÑ‚Ð¾Ð²Ð° лапка","Left-pointing double angle quotation mark":"Подвійні лівоÑторонні кутові лапки","Right-pointing double angle quotation mark":"Подвійні правоÑторонні кутові лапки","Left single quotation mark":"Одинарна ліва лапка","Right single quotation mark":"Одинарна права лапка","Left double quotation mark":"Подвійні ліві лапки","Right double quotation mark":"Подвійні праві лапки","Single low-9 quotation mark":"Одинарна Ð½Ð¸Ð¶Ð½Ñ Ð»Ð°Ð¿ÐºÐ°","Double low-9 quotation mark":"Подвійні нижні лапки","Inverted exclamation mark":"Перевернутий знак оклику","Inverted question mark":"Перевернутий знак питаннÑ","Two dot leader":"Лідер із двох крапок","Horizontal ellipsis":"Горизонтальний еліпÑ","Double dagger":"Подвійний хреÑтик","Per mille sign":"Знак проміле","Per ten thousand sign":"Знак на деÑÑÑ‚ÑŒ тиÑÑч","Double exclamation mark":"Подвійний знак оклику","Question exclamation mark":"Знак Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ñ– знак оклику","Exclamation question mark":"Знак оклику Ñ– знак питаннÑ","Double question mark":"Подвійний знак питаннÑ","Copyright sign":"Знак авторÑького права","Registered sign":"Знак реєÑтрації","Trade mark sign":"Знак торгової марки","Section sign":"Знак розділу","Paragraph sign":"Знак абзацу","Reversed paragraph sign":"Перевернутий знак абзацу","Character categories":"Категорії Ñимволів",Styles:"Стилі","Multiple styles":"Кілька Ñтилів","Block styles":"Стилі блоку","Text styles":"Стилі текÑту","Insert table":"Ð’Ñтавити таблицю","Header column":"Заголовок ÑтовпцÑ","Insert column left":"Ð’Ñтавити Ñтовпець зліва","Insert column right":"Ð’Ñтавити Ñтовпець Ñправа","Delete column":"Видалити Ñтовпець","Select column":"Виберіть Ñтовпчик",Column:"Стовпець","Header row":"Заголовок Ñ€Ñдка","Insert row below":"Ð’Ñтавити Ñ€Ñдок зверху","Insert row above":"Ð’Ñтавити Ñ€Ñдок знизу","Delete row":"Видалити Ñ€Ñдок","Select row":"Виберіть Ñ€Ñдок",Row:"Ð Ñдок","Merge cell up":"Поєднати комірки вгору","Merge cell right":"Поєднати комірки праворуч","Merge cell down":"Поєднати комірки внизу","Merge cell left":"Поєднати комірки ліворуч","Split cell vertically":"Розділити комірки вертикально","Split cell horizontally":"Розділити комірки горизонтально","Merge cells":"Поєднати комірки","Table toolbar":"Панель інÑтрументів таблиці","Table properties":"ВлаÑтивоÑÑ‚Ñ– таблиці","Cell properties":"ВлаÑтивоÑÑ‚Ñ– комірок",Border:"Межа",Style:"Стиль",Width:"Ширина",Height:"ВиÑота",Color:"Колір",Background:"Фон",Padding:"ЗаповненнÑ",Dimensions:"Розміри","Table cell text alignment":"Ð’Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту комірки",Alignment:"ВирівнюваннÑ","Horizontal text alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ текÑту","Vertical text alignment toolbar":"Панель інÑтрументів вертикального Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту","Table alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ–",None:"Ðе вказано",Solid:"Суцільний",Dotted:"Точкова",Dashed:"Пунктирна",Double:"Подвійна",Groove:"ЖолобчаÑта",Ridge:"РебриÑта",Inset:"Угнута",Outset:"Випукла","Align cell text to the left":"ВирівнÑти текÑÑ‚ по лівому краю","Align cell text to the center":"ВирівнÑти текÑÑ‚ по центру","Align cell text to the right":"ВирівнÑти текÑÑ‚ по правому краю","Justify cell text":"ВирівнÑти текÑÑ‚ по ширині ","Align cell text to the top":"ВирівнÑти текÑÑ‚ комірки по верху ","Align cell text to the middle":"ВирівнÑти текÑÑ‚ комірки по Ñередині","Align cell text to the bottom":"ВирівнÑти текÑÑ‚ комірки по низу","Align table to the left":"ВирівнÑти таблицю по лівому краю","Center table":"Відцентрувати таблицю","Align table to the right":"ВирівнÑти таблицю по правому краю ","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Колір недійÑний. Спробуйте \"#FF0000\" або \"rgb(255,0,0)\" або \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ´Ñ–Ð¹Ñне. Спробуйте \"10px\" або \"2em\" або проÑто \"2\"","Color picker":"Вибір кольору","Toggle caption off":"Вимкнути підпиÑ","Toggle caption on":"Увімкнути підпиÑ","Enter table caption":"Введіть Ð¿Ñ–Ð´Ð¿Ð¸Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ–","Rich Text Editor":"Розширений текÑтовий редактор","Editor editing area: %0":"ОблаÑÑ‚ÑŒ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð°: %0","Edit block":"Редагувати блок","Click to edit block":"Клацніть, щоб редагувати блок","Drag to move":"ПотÑгніть, щоб переміÑтити",Next:"ÐаÑтупний",Previous:"Попередній","Editor toolbar":"Панель інÑтрументів редактора","Dropdown toolbar":"Випадаюча панель інÑтрументів",Black:"Чорний","Dim grey":"Темно-Ñірий",Grey:"Сірий","Light grey":"Світло-Ñірий",White:"Білий",Red:"Червоний",Orange:"Помаранчевий",Yellow:"Жовтий","Light green":"Світло-зелений",Green:"Зелений",Aquamarine:"Ðквамариновий",Turquoise:"Бірюзовий","Light blue":"Світло-Ñиній",Blue:"Синій",Purple:"Фіолетовий","Editor block content toolbar":"Панель інÑтрументів вміÑту блоку редактора","Editor contextual toolbar":"КонтекÑтна панель інÑтрументів редактора",HEX:"ШіÑтнадцÑтковий",Accept:"ПрийнÑти","No results found":"Ðічого не знайдено","No searchable items":"Ðемає шуканих об'єктів","Editor dialog":"Діалогове вікно редактора",Close:"Закрити",Undo:"Відміна",Redo:"Повтор","Upload in progress":"ВиконуєтьÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ","Widget toolbar":"Панель інÑтрументів віджетів","Insert paragraph before block":"Додати абзац перед блоком","Insert paragraph after block":"Додати абзац піÑÐ»Ñ Ð±Ð»Ð¾ÐºÐ°","Press Enter to type after or press Shift + Enter to type before the widget":"ÐатиÑніть Enter, щоб друкувати піÑÐ»Ñ Ð°Ð±Ð¾ натиÑніть Shift + Enter, щоб друкувати перед віджетом","Words: %0":"Слова: %0","Characters: %0":"Символи: %0"} );l.getPluralForm=function(n){return (n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['uk'] = d['uk'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"По лівому краю","Align right":"По правому краю","Align center":"По центру",Justify:"По ширині","Text alignment":"Ð’Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту","Text alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту",Bold:"Жирний",Italic:"КурÑив",Underline:"ПідкреÑлений",Code:"Код",Strikethrough:"ЗакреÑлений",Subscript:"Ðижній індекÑ",Superscript:"Верхній індекÑ","Block quote":"Цитата","Insert code block":"Ð’Ñтавте блок коду","Plain text":"ПроÑтий текÑÑ‚",Cancel:"Відміна",Clear:"ОчиÑтити","Remove color":"Видалити колір","Restore default":"Відновити за замовчуваннÑм",Save:"Зберегти","Show more items":"Показати більше","%0 of %1":"%0 із %1","Cannot upload file:":"Ðеможливо завантажити файл:","Rich Text Editor. Editing area: %0":"Редактор Rich Text. ОблаÑÑ‚ÑŒ редагуваннÑ: %0","Insert with file manager":"Ð’Ñтавити за допомогою файлового менеджера","Replace with file manager":"Замінити за допомогою файлового менеджера","Insert image with file manager":"Ð’Ñтавити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° допомогою файлового менеджера","Replace image with file manager":"Замінити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° допомогою файлового менеджера","Find and replace":"Знайти та замінити","Find in text…":"Знайти в текÑті…",Find:"Знайти","Previous result":"Попередній результат","Next result":"ÐаÑтупний результат",Replace:"Замінити","Replace all":"Замінити вÑе","Match case":"Врахувати регіÑÑ‚Ñ€","Whole words only":"Тільки цілі Ñлова","Replace with…":"Замінити…","Text to find must not be empty.":"ТекÑÑ‚ Ð´Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ не повинен бути порожнім.","Tip: Find some text first in order to replace it.":"Порада: Ñпочатку знайдіть текÑÑ‚, щоб замінити його.","Advanced options":"Розширені опції","Font Size":"Розмір шрифту",Tiny:"Крихітний",Small:"Маленький",Big:"Великий",Huge:"Величезний","Font Family":"СімейÑтво шрифтів",Default:"За замовчуваннÑм","Font Color":"Колір шрифту","Font Background Color":"Колір тла шрифту","Document colors":"Кольори документу",Paragraph:"Параграф",Heading:"Заголовок","Choose heading":"Оберіть заголовок","Heading 1":"Заголовок 1","Heading 2":"Заголовок 2","Heading 3":"Заголовок 3","Heading 4":"Заголовок 4","Heading 5":"Заголовок 5","Heading 6":"Заголовок 6","Type your title":"Введіть назву","Type or paste your content here.":"Введіть або вÑтавте Ñвій вміÑÑ‚ тут.","Horizontal line":"Горизонтальна лініÑ","HTML object":"HTML об'єкт","Increase indent":"Збільшити відÑтуп","Decrease indent":"Зменшити відÑтуп",Unlink:"Видалити поÑиланнÑ",Link:"ПоÑиланнÑ","Link URL":"URL поÑиланнÑ","Link image":"ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ","Edit link":"Редагувати поÑиланнÑ","Open link in new tab":"Відкрити поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñƒ новій вкладці","This link has no URL":"Це поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ðµ має URL","Open in a new tab":"Вікрити у новій вкладці",Downloadable:"Завантажувальне","Numbered List":"Ðумерований ÑпиÑок","Bulleted List":"Маркерний ÑпиÑок","To-do List":"СпиÑок Ñправ","Bulleted list styles toolbar":"Панель маркерних ÑпиÑків","Numbered list styles toolbar":"Панель нумерованих ÑпиÑків","Toggle the disc list style":"Перемкнути диÑковий Ñтиль ÑпиÑку ","Toggle the circle list style":"Перемкнути круговий Ñтиль ÑпиÑку","Toggle the square list style":"Перемкнути квадратний Ñтиль ÑпиÑку","Toggle the decimal list style":"Перемкнути деÑÑтковий Ñтиль ÑпиÑку","Toggle the decimal with leading zero list style":"Перемкнути деÑÑтковий Ñтиль ÑпиÑку з нулем на початку","Toggle the lower–roman list style":"Перемкнути нижньо-римÑький Ñтиль ÑпиÑку","Toggle the upper–roman list style":"Перемкнути верхньо-римÑький Ñтиль ÑпиÑку","Toggle the lower–latin list style":"Перемкнути нижній латинÑький Ñтиль ÑпиÑку","Toggle the upper–latin list style":"Перемкнути верхній латинÑький Ñтиль ÑпиÑку",Disc:"Круг",Circle:"Коло",Square:"Квадрат",Decimal:"Цифри","Decimal with leading zero":"Цифри із провідним нулем","Lower–roman":"Ðижньо-римÑький","Upper-roman":"Верхньо-римÑький","Lower-latin":"Ðижній латинÑький","Upper-latin":"Верхній латинÑький ","List properties":"СпиÑок влаÑтивоÑтей","Start at":"Початок при","Start index must be greater than 0.":"Початковий Ñ–Ð½Ð´ÐµÐºÑ Ð¼Ð°Ñ” бути більше 0.","Reversed order":"Зворотний порÑдок","Remove Format":"Видалити форматуваннÑ","Select all":"Вибрати вÑе","Show blocks":"Показати блоки",Source:"Джерело","Special characters":"Спеціальні Ñимволи",All:"УÑÑ–",Arrows:"Стрілки",Currency:"Валюта",Latin:"ЛатинÑькі",Mathematical:"Математичні",Text:"ТекÑÑ‚","leftwards simple arrow":"проÑта Ñтрілка вліво","rightwards simple arrow":"проÑта Ñтрілка вправо","upwards simple arrow":"проÑта Ñтрілка вгору","downwards simple arrow":"проÑта Ñтрілка вниз","leftwards double arrow":"подвійна Ñтрілка вліво","rightwards double arrow":"подвійна Ñтрілка вправо","upwards double arrow":"подвійна Ñтрілка вгору","downwards double arrow":"подвійна Ñтрілка вниз","leftwards dashed arrow":"пунктирна Ñтрілка вліво","rightwards dashed arrow":"пунктирна Ñтрілка вправо","upwards dashed arrow":"пунктирна Ñтрілка вгору","downwards dashed arrow":"пунктирна Ñтрілка вниз","leftwards arrow to bar":"Ñтрілка вліво до блоку","rightwards arrow to bar":"Ñтрілка вправо до блоку","upwards arrow to bar":"Ñтрілка вгору до блоку","downwards arrow to bar":"Ñтрілка вниз до блоку","up down arrow with base":"Ñтрілка вгору-вниз із оÑновою","back with leftwards arrow above":"back зі Ñтрілкою вліво зверху","end with leftwards arrow above":"end зі Ñтрілкою вліво зверху","on with exclamation mark with left right arrow above":"on зі знаком оклику зі Ñтрілкою вліво-вправо зверху","soon with rightwards arrow above":"soon зі Ñтрілкою вправо зверху","top with upwards arrow above":"top зі Ñтрілкою вгору зверху","Dollar sign":"Символ долара","Euro sign":"Символ євро","Yen sign":"Символ єни","Pound sign":"Символ фунта","Cent sign":"Символ цента","Euro-currency sign":"Символ євровалюти","Colon sign":"Символ двокрапки","Cruzeiro sign":"Символ крузейро","French franc sign":"Символ французького франка","Lira sign":"Символ ліри","Currency sign":"Символ валюти","Bitcoin sign":"Символ біткоїна","Mill sign":"Символ мільйона","Naira sign":"Символ найри","Peseta sign":"Символ пеÑети","Rupee sign":"Символ рупії","Won sign":"Символ вони","New sheqel sign":"Символ нового шекелÑ","Dong sign":"Символ донга","Kip sign":"Символ кіпа","Tugrik sign":"Символ тугрика","Drachma sign":"Символ драхми","German penny sign":"Символ німецького пенні","Peso sign":"Символ пеÑо","Guarani sign":"Символ гуарані","Austral sign":"Символ ауÑтрала","Hryvnia sign":"Символ гривні","Cedi sign":"Символ Ñеді","Livre tournois sign":"Символ турÑького лівру","Spesmilo sign":"Символ ÑпеÑміло","Tenge sign":"Символ тенге","Indian rupee sign":"Символ індійÑької рупії","Turkish lira sign":"Символ турецької ліри","Nordic mark sign":"Символ нордичної марки","Manat sign":"Символ маната","Ruble sign":"Символ рублÑ","Latin capital letter a with macron":"ЛатинÑька велика літера а зі знаком довготи","Latin small letter a with macron":"ЛатинÑька мала літера а зі знаком довготи","Latin capital letter a with breve":"ЛатинÑька велика літера а з бревіÑом","Latin small letter a with breve":"ЛатинÑька мала літера а з бревіÑом","Latin capital letter a with ogonek":"ЛатинÑька велика літера а з хвоÑтиком","Latin small letter a with ogonek":"ЛатинÑька мала літера а з хвоÑтиком","Latin capital letter c with acute":"ЛатинÑька велика літера Ñ Ð· гоÑтрим наголоÑом","Latin small letter c with acute":"ЛатинÑька мала літера Ñ Ð· гоÑтрим наголоÑом","Latin capital letter c with circumflex":"ЛатинÑька велика літера Ñ Ð· дашком","Latin small letter c with circumflex":"ЛатинÑька мала літера Ñ Ð· дашком","Latin capital letter c with dot above":"ЛатинÑька велика літера Ñ Ð· крапкою згори","Latin small letter c with dot above":"ЛатинÑька мала літера Ñ Ð· крапкою згори","Latin capital letter c with caron":"ЛатинÑька велика літера Ñ Ð· пташкою","Latin small letter c with caron":"ЛатинÑька мала літера Ñ Ð· пташкою","Latin capital letter d with caron":"ЛатинÑька велика літера d з пташкою","Latin small letter d with caron":"ЛатинÑька мала літера d з пташкою","Latin capital letter d with stroke":"ЛатинÑька велика літера d з риÑкою","Latin small letter d with stroke":"ЛатинÑька мала літера d з риÑкою","Latin capital letter e with macron":"ЛатинÑька велика літера е зі знаком довготи","Latin small letter e with macron":"ЛатинÑька мала літера е зі знаком довготи","Latin capital letter e with breve":"ЛатинÑька велика літера е з бревіÑом","Latin small letter e with breve":"ЛатинÑька мала літера е з бревіÑом","Latin capital letter e with dot above":"ЛатинÑька велика літера е з крапкою вгорі","Latin small letter e with dot above":"ЛатинÑька мала літера е з крапкою вгорі","Latin capital letter e with ogonek":"ЛатинÑька велика літера е з хвоÑтиком","Latin small letter e with ogonek":"ЛатинÑька мала літера е з хвоÑтиком","Latin capital letter e with caron":"ЛатинÑька велика літера е з пташкою","Latin small letter e with caron":"ЛатинÑька мала літера е з пташкою","Latin capital letter g with circumflex":"ЛатинÑька велика літера g з дашком","Latin small letter g with circumflex":"ЛатинÑька мала літера g з дашком","Latin capital letter g with breve":"ЛатинÑька велика літера g з бревіÑом","Latin small letter g with breve":"ЛатинÑька мала літера g з бревіÑом","Latin capital letter g with dot above":"ЛатинÑька велика літера g з крапкою вгорі","Latin small letter g with dot above":"ЛатинÑька мала літера g з крапкою вгорі","Latin capital letter g with cedilla":"ЛатинÑька велика літера g з Ñедилем","Latin small letter g with cedilla":"ЛатинÑька мала літера g з Ñедилем","Latin capital letter h with circumflex":"ЛатинÑька велика літера h з дашком","Latin small letter h with circumflex":"ЛатинÑька мала літера h з дашком","Latin capital letter h with stroke":"ЛатинÑька велика літера h з риÑкою","Latin small letter h with stroke":"ЛатинÑька мала літера h з риÑкою","Latin capital letter i with tilde":"ЛатинÑька велика літера Ñ– з тильдою","Latin small letter i with tilde":"ЛатинÑька мала літера Ñ– з тильдою","Latin capital letter i with macron":"ЛатинÑька велика літера Ñ– зі знаком довготи","Latin small letter i with macron":"ЛатинÑька мала літера Ñ– зі знаком довготи","Latin capital letter i with breve":"ЛатинÑька велика літера Ñ– з бревіÑом","Latin small letter i with breve":"ЛатинÑька мала літера Ñ– з бревіÑом","Latin capital letter i with ogonek":"ЛатинÑька велика літера Ñ– з пташкою","Latin small letter i with ogonek":"ЛатинÑька мала літера Ñ– з пташкою","Latin capital letter i with dot above":"ЛатинÑька велика літера Ñ– з крапкою вгорі","Latin small letter dotless i":"ЛатинÑька мала літера Ñ– без крапки","Latin capital ligature ij":"ЛатинÑька велика лігатура ij","Latin small ligature ij":"ЛатинÑька мала лігатура ij","Latin capital letter j with circumflex":"ЛатинÑька велика літера j з дашком","Latin small letter j with circumflex":"ЛатинÑька мала літера j з дашком","Latin capital letter k with cedilla":"ЛатинÑька велика літера k з Ñедилем","Latin small letter k with cedilla":"ЛатинÑька мала літера k з Ñедилем","Latin small letter kra":"ЛатинÑька мала літера kra","Latin capital letter l with acute":"ЛатинÑька велика літера l з гоÑтрим наголоÑом","Latin small letter l with acute":"ЛатинÑька мала літера l з гоÑтрим наголоÑом","Latin capital letter l with cedilla":"ЛатинÑька велика літера l із Ñедилем","Latin small letter l with cedilla":"ЛатинÑька мала літера l із Ñедилем","Latin capital letter l with caron":"ЛатинÑька велика літера l із пташкою","Latin small letter l with caron":"ЛатинÑька мала літера l із пташкою","Latin capital letter l with middle dot":"ЛатинÑька велика літера l з Ñередньою крапкою","Latin small letter l with middle dot":"ЛатинÑька мала літера l з Ñередньою крапкою","Latin capital letter l with stroke":"ЛатинÑька велика літера l з риÑкою","Latin small letter l with stroke":"ЛатинÑька мала літера l з риÑкою","Latin capital letter n with acute":"ЛатинÑька велика літера n з гоÑтрим наголоÑом","Latin small letter n with acute":"ЛатинÑька мала літера n з гоÑтрим наголоÑом","Latin capital letter n with cedilla":"ЛатинÑька велика літера n із Ñедилем","Latin small letter n with cedilla":"ЛатинÑька мала літера n із Ñедилем","Latin capital letter n with caron":"ЛатинÑька велика літера n із пташкою","Latin small letter n with caron":"ЛатинÑька мала літера n із пташкою","Latin small letter n preceded by apostrophe":"ЛатинÑька мала літера n з апоÑтрофом","Latin capital letter eng":"ЛатинÑькі великі літери eng","Latin small letter eng":"ЛатинÑькі малі літери eng","Latin capital letter o with macron":"ЛатинÑька велика літера о зі знаком довготи","Latin small letter o with macron":"ЛатинÑька мала літера о зі знаком довготи","Latin capital letter o with breve":"ЛатинÑька велика літера о з бревіÑом","Latin small letter o with breve":"ЛатинÑька мала літера о з бревіÑом","Latin capital letter o with double acute":"ЛатинÑька велика літера о з подвійним наголоÑом","Latin small letter o with double acute":"ЛатинÑька мала літера о з подвійним наголоÑом","Latin capital ligature oe":"ЛатинÑька велика лігатура ое","Latin small ligature oe":"ЛатинÑька мала лігатура ое","Latin capital letter r with acute":"ЛатинÑька велика літера r з гоÑтрим наголоÑом","Latin small letter r with acute":"ЛатинÑька мала літера r з гоÑтрим наголоÑом","Latin capital letter r with cedilla":"ЛатинÑька велика літера r із Ñедилем","Latin small letter r with cedilla":"ЛатинÑька мала літера r із Ñедилем","Latin capital letter r with caron":"ЛатинÑька велика літера r із пташкою","Latin small letter r with caron":"ЛатинÑька мала літера r із пташкою","Latin capital letter s with acute":"ЛатинÑька велика літера s із гоÑтрим наголоÑом","Latin small letter s with acute":"ЛатинÑька мала літера s із гоÑтрим наголоÑом ","Latin capital letter s with circumflex":"ЛатинÑька велика літера s із дашком","Latin small letter s with circumflex":"ЛатинÑька мала літера s із дашком","Latin capital letter s with cedilla":"ЛатинÑька велика літера s із Ñедилем","Latin small letter s with cedilla":"ЛатинÑька мала літера s із Ñедилем","Latin capital letter s with caron":"ЛатинÑька велика літера s із пташкою","Latin small letter s with caron":"ЛатинÑька мала літера s із пташкою","Latin capital letter t with cedilla":"ЛатинÑька велика літера t із Ñедилем","Latin small letter t with cedilla":"ЛатинÑька мала літера t із Ñедилем","Latin capital letter t with caron":"ЛатинÑька велика літера t із пташкою","Latin small letter t with caron":"ЛатинÑька мала літера t із пташкою","Latin capital letter t with stroke":"ЛатинÑька велика літера t із риÑкою","Latin small letter t with stroke":"ЛатинÑька мала літера t із риÑкою","Latin capital letter u with tilde":"ЛатинÑька велика літера u із тильдою","Latin small letter u with tilde":"ЛатинÑька мала літера u із тильдою","Latin capital letter u with macron":"ЛатинÑька велика літера u зі знаком довготи","Latin small letter u with macron":"ЛатинÑька мала літера u зі знаком довготи","Latin capital letter u with breve":"ЛатинÑька велика літера u із бревіÑом","Latin small letter u with breve":"ЛатинÑька мала літера u із бревіÑом","Latin capital letter u with ring above":"ЛатинÑька велика літера u із кільцем вгорі","Latin small letter u with ring above":"ЛатинÑька мала літера u із кільцем вгорі","Latin capital letter u with double acute":"ЛатинÑька велика літера u із подвійним наголоÑом","Latin small letter u with double acute":"ЛатинÑька мала літера uіз подвійним наголоÑом","Latin capital letter u with ogonek":"ЛатинÑька велика літера u з хвоÑтиком","Latin small letter u with ogonek":"ЛатинÑька мала літера u з хвоÑтиком","Latin capital letter w with circumflex":"ЛатинÑька велика літера w із дашком","Latin small letter w with circumflex":"ЛатинÑька мала літера w із дашком","Latin capital letter y with circumflex":"ЛатинÑька велика літера y із дашком","Latin small letter y with circumflex":"ЛатинÑька мала літера y із дашком","Latin capital letter y with diaeresis":"ЛатинÑька велика літера y з умлÑутом","Latin capital letter z with acute":"ЛатинÑька велика літера z з гоÑтрим наголоÑом","Latin small letter z with acute":"ЛатинÑька мала літера z з гоÑтрим наголоÑом","Latin capital letter z with dot above":"ЛатинÑька велика літера z з крапкою вгорі","Latin small letter z with dot above":"ЛатинÑька мала літера z з крапкою вгорі","Latin capital letter z with caron":"ЛатинÑька велика літера z з пташкою","Latin small letter z with caron":"ЛатинÑька мала літера z з пташкою","Latin small letter long s":"ЛатинÑька мала літера довга s","Less-than sign":"Знак менше","Greater-than sign":"Знак більше","Less-than or equal to":"Менше або дорівнює","Greater-than or equal to":"Більше або дорівнює","En dash":"Тире","Em dash":"Довге тире",Macron:"Знак довготи",Overline:"РиÑка згори","Degree sign":"Знак ÑтупенÑ","Minus sign":"Знак мінуÑ","Plus-minus sign":"Знак плюÑ-мінуÑ","Division sign":"Знак діленнÑ","Fraction slash":"РиÑка дробу","Multiplication sign":"Знак множеннÑ","Latin small letter f with hook":"ЛатинÑька мала літера f з гачком",Integral:"Інтеграл","N-ary summation":"Сигма",Infinity:"ÐеÑкінченніÑÑ‚ÑŒ","Square root":"Квадратний корінь","Tilde operator":"Оператор тильди","Approximately equal to":"Приблизно дорівнює","Almost equal to":"Майже дорівнює","Not equal to":"Ðе дорівнює","Identical to":"Ідентичне до","Element of":"Елемент","Not an element of":"Ðе елемент","Contains as member":"МіÑтить Ñк елемент","N-ary product":"Пі","Logical and":"Логічний Ñполучник and","Logical or":"Логічний Ñполучник or","Not sign":"Знак не",Intersection:"Перетин",Union:"Юніон","Partial differential":"ЧаÑтинні похідні","For all":"Ð”Ð»Ñ Ð²ÑÑ–Ñ…","There exists":"Там Ñ–Ñнує","Empty set":"Порожній набір",Nabla:"Ðабла","Asterisk operator":"Оператор зірочка","Proportional to":"Пропорційно до",Angle:"Кут","Vulgar fraction one quarter":"Звичайний дріб одна четверта","Vulgar fraction one half":"Звичайний дріб одна друга","Vulgar fraction three quarters":"Звичайний дріб три четвертих","Single left-pointing angle quotation mark":"Одинарна лівоÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½Ñ ÐºÑƒÑ‚Ð¾Ð²Ð° лапка","Single right-pointing angle quotation mark":"Одинарна правоÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½Ñ ÐºÑƒÑ‚Ð¾Ð²Ð° лапка","Left-pointing double angle quotation mark":"Подвійні лівоÑторонні кутові лапки","Right-pointing double angle quotation mark":"Подвійні правоÑторонні кутові лапки","Left single quotation mark":"Одинарна ліва лапка","Right single quotation mark":"Одинарна права лапка","Left double quotation mark":"Подвійні ліві лапки","Right double quotation mark":"Подвійні праві лапки","Single low-9 quotation mark":"Одинарна Ð½Ð¸Ð¶Ð½Ñ Ð»Ð°Ð¿ÐºÐ°","Double low-9 quotation mark":"Подвійні нижні лапки","Inverted exclamation mark":"Перевернутий знак оклику","Inverted question mark":"Перевернутий знак питаннÑ","Two dot leader":"Лідер із двох крапок","Horizontal ellipsis":"Горизонтальний еліпÑ","Double dagger":"Подвійний хреÑтик","Per mille sign":"Знак проміле","Per ten thousand sign":"Знак на деÑÑÑ‚ÑŒ тиÑÑч","Double exclamation mark":"Подвійний знак оклику","Question exclamation mark":"Знак Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ñ– знак оклику","Exclamation question mark":"Знак оклику Ñ– знак питаннÑ","Double question mark":"Подвійний знак питаннÑ","Copyright sign":"Знак авторÑького права","Registered sign":"Знак реєÑтрації","Trade mark sign":"Знак торгової марки","Section sign":"Знак розділу","Paragraph sign":"Знак абзацу","Reversed paragraph sign":"Перевернутий знак абзацу","Character categories":"Категорії Ñимволів",Styles:"Стилі","Multiple styles":"Кілька Ñтилів","Block styles":"Стилі блоку","Text styles":"Стилі текÑту","Insert table":"Ð’Ñтавити таблицю","Header column":"Заголовок ÑтовпцÑ","Insert column left":"Ð’Ñтавити Ñтовпець зліва","Insert column right":"Ð’Ñтавити Ñтовпець Ñправа","Delete column":"Видалити Ñтовпець","Select column":"Виберіть Ñтовпчик",Column:"Стовпець","Header row":"Заголовок Ñ€Ñдка","Insert row below":"Ð’Ñтавити Ñ€Ñдок зверху","Insert row above":"Ð’Ñтавити Ñ€Ñдок знизу","Delete row":"Видалити Ñ€Ñдок","Select row":"Виберіть Ñ€Ñдок",Row:"Ð Ñдок","Merge cell up":"Поєднати комірки вгору","Merge cell right":"Поєднати комірки праворуч","Merge cell down":"Поєднати комірки внизу","Merge cell left":"Поєднати комірки ліворуч","Split cell vertically":"Розділити комірки вертикально","Split cell horizontally":"Розділити комірки горизонтально","Merge cells":"Поєднати комірки","Table toolbar":"Панель інÑтрументів таблиці","Table properties":"ВлаÑтивоÑÑ‚Ñ– таблиці","Cell properties":"ВлаÑтивоÑÑ‚Ñ– комірок",Border:"Межа",Style:"Стиль",Width:"Ширина",Height:"ВиÑота",Color:"Колір",Background:"Фон",Padding:"ЗаповненнÑ",Dimensions:"Розміри","Table cell text alignment":"Ð’Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту комірки",Alignment:"ВирівнюваннÑ","Horizontal text alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ текÑту","Vertical text alignment toolbar":"Панель інÑтрументів вертикального Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту","Table alignment toolbar":"Панель інÑтрументів Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ–",None:"Ðе вказано",Solid:"Суцільний",Dotted:"Точкова",Dashed:"Пунктирна",Double:"Подвійна",Groove:"ЖолобчаÑта",Ridge:"РебриÑта",Inset:"Угнута",Outset:"Випукла","Align cell text to the left":"ВирівнÑти текÑÑ‚ по лівому краю","Align cell text to the center":"ВирівнÑти текÑÑ‚ по центру","Align cell text to the right":"ВирівнÑти текÑÑ‚ по правому краю","Justify cell text":"ВирівнÑти текÑÑ‚ по ширині ","Align cell text to the top":"ВирівнÑти текÑÑ‚ комірки по верху ","Align cell text to the middle":"ВирівнÑти текÑÑ‚ комірки по Ñередині","Align cell text to the bottom":"ВирівнÑти текÑÑ‚ комірки по низу","Align table to the left":"ВирівнÑти таблицю по лівому краю","Center table":"Відцентрувати таблицю","Align table to the right":"ВирівнÑти таблицю по правому краю ","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Колір недійÑний. Спробуйте \"#FF0000\" або \"rgb(255,0,0)\" або \"red\"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ´Ñ–Ð¹Ñне. Спробуйте \"10px\" або \"2em\" або проÑто \"2\"","Color picker":"Вибір кольору","Toggle caption off":"Вимкнути підпиÑ","Toggle caption on":"Увімкнути підпиÑ","Enter table caption":"Введіть Ð¿Ñ–Ð´Ð¿Ð¸Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ–","Rich Text Editor":"Розширений текÑтовий редактор","Editor editing area: %0":"ОблаÑÑ‚ÑŒ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð°: %0","Edit block":"Редагувати блок","Click to edit block":"Клацніть, щоб редагувати блок","Drag to move":"ПотÑгніть, щоб переміÑтити",Next:"ÐаÑтупний",Previous:"Попередній","Editor toolbar":"Панель інÑтрументів редактора","Dropdown toolbar":"Випадаюча панель інÑтрументів",Black:"Чорний","Dim grey":"Темно-Ñірий",Grey:"Сірий","Light grey":"Світло-Ñірий",White:"Білий",Red:"Червоний",Orange:"Помаранчевий",Yellow:"Жовтий","Light green":"Світло-зелений",Green:"Зелений",Aquamarine:"Ðквамариновий",Turquoise:"Бірюзовий","Light blue":"Світло-Ñиній",Blue:"Синій",Purple:"Фіолетовий","Editor block content toolbar":"Панель інÑтрументів вміÑту блоку редактора","Editor contextual toolbar":"КонтекÑтна панель інÑтрументів редактора",HEX:"ШіÑтнадцÑтковий",Accept:"ПрийнÑти","No results found":"Ðічого не знайдено","No searchable items":"Ðемає шуканих об'єктів","Editor dialog":"Діалогове вікно редактора",Close:"Закрити",Undo:"Відміна",Redo:"Повтор","Upload in progress":"ВиконуєтьÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ","Widget toolbar":"Панель інÑтрументів віджетів","Insert paragraph before block":"Додати абзац перед блоком","Insert paragraph after block":"Додати абзац піÑÐ»Ñ Ð±Ð»Ð¾ÐºÐ°","Press Enter to type after or press Shift + Enter to type before the widget":"ÐатиÑніть Enter, щоб друкувати піÑÐ»Ñ Ð°Ð±Ð¾ натиÑніть Shift + Enter, щоб друкувати перед віджетом","Words: %0":"Слова: %0","Characters: %0":"Символи: %0"} );l.getPluralForm=function(n){return (n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ur.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ur.js index 17406beaee503fb71b7dbf74d5c0cee5d2120e77..648844560a840c47f0b379ef32ab3609a9495dc3 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ur.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/ur.js @@ -1 +1 @@ -(function(d){ const l = d['ur'] = d['ur'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"بائیں سیدھ","Align right":"دائیں سیدھ","Align center":"درمیانی سیدھ",Justify:"برابر سیدھ","Text alignment":"متن Ú©ÛŒ سیدھ","Text alignment toolbar":"Ø®Ø§Ù†Û Ø¢Ù„Ø§Øª برائے سیدھ",Bold:"جلّی",Italic:"ترچھا",Underline:"ترچھا",Code:"Ú©ÙˆÚˆ",Strikethrough:"خط کشیدÛ",Subscript:"زير نوشت",Superscript:"بالا نوشت","Block quote":"Ø®Ø§Ù†Û Ø§Ù‚ØªØ¨Ø§Ø³","Insert code block":"Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کیرں","Plain text":"Ø³Ø§Ø¯Û Ù…ØªÙ†",Cancel:"منسوخ",Clear:"","Remove color":"رنگ Øذ٠کریں","Restore default":"Ø·Û’ Ø´Ø¯Û Ø¨Øال",Save:"Ù…ØÙوظ","Show more items":"مزید مواد Ú©ÛŒ نمائش کریں","%0 of %1":"0% میں سے 1%","Cannot upload file:":"Ùائل اپلوڈ Ù†Ûیں ÛÙˆ سکی:","Rich Text Editor. Editing area: %0":"خانۂ ترمیم۔ علاقۂ ترمیم 0%","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"تلاش Ùˆ تبدیل","Find in text…":"متن میں تلاش۔۔۔",Find:"تلاش","Previous result":"Ú¯Ø²Ø´ØªÛ Ù†ØªÛŒØ¬Û","Next result":"اگلا نتیجÛ",Replace:"بدل دیں","Replace all":"تمام بدل دیں","Match case":"بڑے چھوٹے Øرو٠کا خیال رکھیں","Whole words only":"صر٠الÙاظ","Replace with…":"اور اس سے تبدیل کریں...","Text to find must not be empty.":"تلاش Ú©Û’ لیے متن خالی Ù†Ûیں Ûونا چاÛیے۔","Tip: Find some text first in order to replace it.":"نکتÛ: تبدیل کرنے Ú©Û’ لیے Ù¾ÛÙ„Û’ متن Ú©Ùˆ تلاش کریں۔","Advanced options":"",Paragraph:"پیرا",Heading:"سرخی","Choose heading":"سرخی منتخب کریں","Heading 1":"سرخی 1","Heading 2":"سرخی 2","Heading 3":"سرخی 3","Heading 4":"سرخی 4","Heading 5":"سرخی 5","Heading 6":"سرخی 6","Type your title":"عنوان ٹایپ کریں","Type or paste your content here.":"اپنا مواد ÛŒÛاں ٹایپ یا چسپاں کریں.","Horizontal line":"اÙÙ‚ÛŒ خط","HTML object":"ایچ Ù¹ÛŒ ایم ایل آبجیکٹ","Increase indent":"ØØ§Ø´ÛŒÛ Ø¨Ú‘Ú¾Ø§Ø¦ÛŒÚº","Decrease indent":"ØØ§Ø´ÛŒÛ Ú¯Ú¾Ù¹Ø§Ø¦ÛŒÚº",Unlink:"ربط Øذ٠کریں",Link:"ربط","Link URL":"ربط کا یو آر ایل","Link image":"","Edit link":"ربط Ú©ÛŒ تدوین","Open link in new tab":"نئے ٹیب میں کھولیں","This link has no URL":"ربط کا کوئی یو آر ایل Ù†Ûیں","Open in a new tab":"نئی ٹیب کھولیں",Downloadable:"ڈاؤنلوڈ ÛÙˆ سکتا ÛÛ’","Numbered List":"Ûندسی ÙÛرست","Bulleted List":"غیر Ûندسی ÙÛرست","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Ùارمیٹ Ûٹائیں","Select all":"سب منتخب کریں",Source:"مآخذ","Special characters":"",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"Ø¹Ù„Ø§Ù…ØªÙ Ø¯Ø±Ø§Ú†Ù…Û ","German penny sign":"علامت جرمن پینی","Peso sign":"علامت٠پیسو","Guarani sign":"علامت٠گوارانی","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"انڈین Ø±ÙˆÙ¾ÛŒÛ Ú©ÛŒ علامت","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"",Styles:"انداز","Multiple styles":"متعدد انداز","Block styles":"Ø®Ø§Ù†Û Ú©Û’ انداز","Text styles":"متن Ú©Û’ انداز","Insert table":"جدول داخل کریں","Header column":"سر ستون","Insert column left":"بائیں جانب کالم بنائیں","Insert column right":"دائیں جانب کالم بنائیں","Delete column":"ستون Øذ٠کریں","Select column":"",Column:"ستون","Header row":"سر قطار","Insert row below":"قطار زیریں نصب کریں","Insert row above":"قطار بالا نصب کریں","Delete row":"قطار Øذ٠کریں","Select row":"",Row:"قطار","Merge cell up":"سیل اوپر یکجا کریں","Merge cell right":"سیل دائیں طر٠یکجا کریں","Merge cell down":"سیل Ù†Ú†Ù„ÛŒ طر٠یکجا کریں","Merge cell left":"سیل بائیں طر٠یکجا کریں","Split cell vertically":"سیل Ú©ÛŒ عمودی تقسیم","Split cell horizontally":"سیل Ú©ÛŒ اÙÙ‚ÛŒ تقسیم","Merge cells":"سیل یکجا کریں","Table toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے جدول","Table properties":"","Cell properties":"",Border:"ØاشیÛ",Style:"",Width:"چوڑائی",Height:"اونچائی",Color:"رنگ",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"Ù†Ù‚Ø·Û Ø¯Ø§Ø±",Dashed:"Ù‚Ø·Ø¹Û Ø¯Ø§Ø±",Double:"دو گنا",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"خانۂ ترمیم","Editor editing area: %0":"Ø±Ù‚Ø¨Û Ø®Ø§Ù†Û‚ ترمیم: 0%","Edit block":"Ø®Ø§Ù†Û Ú©ÛŒ تدوین","Click to edit block":"","Drag to move":"",Next:"اگلا",Previous:"پچھلا","Editor toolbar":"ایڈیٹر Ø¢Ù„Û Ø¬Ø§Øª","Dropdown toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے ÙÛرست ",Black:"سیاÛ","Dim grey":"پھیکا سرمئی",Grey:"سرمئی","Light grey":"Ûلکا سرمئی",White:"سÙید",Red:"سرخ",Orange:"نارنجی",Yellow:"پیلا","Light green":"Ûلکا سبز",Green:"سبز",Aquamarine:"نیلگوں بلور",Turquoise:"Ùیروزی","Light blue":"Ûلکا نیلا",Blue:"نیلا",Purple:"ارغوانی","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"رد ترمیم",Redo:"پھر سے کریں","Upload in progress":"آپلوڈ جاری ÛÛ’","Widget toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے وجٹ","Insert paragraph before block":"پیراگرا٠سے Ù¾ÛÙ„Û’ Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کریں","Insert paragraph after block":"پیراگرا٠کے بعد Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کریں","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"الÙاظ: 0%","Characters: %0":"ØروÙ: 0%"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['ur'] = d['ur'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"بائیں سیدھ","Align right":"دائیں سیدھ","Align center":"درمیانی سیدھ",Justify:"برابر سیدھ","Text alignment":"متن Ú©ÛŒ سیدھ","Text alignment toolbar":"Ø®Ø§Ù†Û Ø¢Ù„Ø§Øª برائے سیدھ",Bold:"جلّی",Italic:"ترچھا",Underline:"ترچھا",Code:"Ú©ÙˆÚˆ",Strikethrough:"خط کشیدÛ",Subscript:"زير نوشت",Superscript:"بالا نوشت","Block quote":"Ø®Ø§Ù†Û Ø§Ù‚ØªØ¨Ø§Ø³","Insert code block":"Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کیرں","Plain text":"Ø³Ø§Ø¯Û Ù…ØªÙ†",Cancel:"منسوخ",Clear:"","Remove color":"رنگ Øذ٠کریں","Restore default":"Ø·Û’ Ø´Ø¯Û Ø¨Øال",Save:"Ù…ØÙوظ","Show more items":"مزید مواد Ú©ÛŒ نمائش کریں","%0 of %1":"0% میں سے 1%","Cannot upload file:":"Ùائل اپلوڈ Ù†Ûیں ÛÙˆ سکی:","Rich Text Editor. Editing area: %0":"خانۂ ترمیم۔ علاقۂ ترمیم 0%","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Find and replace":"تلاش Ùˆ تبدیل","Find in text…":"متن میں تلاش۔۔۔",Find:"تلاش","Previous result":"Ú¯Ø²Ø´ØªÛ Ù†ØªÛŒØ¬Û","Next result":"اگلا نتیجÛ",Replace:"بدل دیں","Replace all":"تمام بدل دیں","Match case":"بڑے چھوٹے Øرو٠کا خیال رکھیں","Whole words only":"صر٠الÙاظ","Replace with…":"اور اس سے تبدیل کریں...","Text to find must not be empty.":"تلاش Ú©Û’ لیے متن خالی Ù†Ûیں Ûونا چاÛیے۔","Tip: Find some text first in order to replace it.":"نکتÛ: تبدیل کرنے Ú©Û’ لیے Ù¾ÛÙ„Û’ متن Ú©Ùˆ تلاش کریں۔","Advanced options":"","Font Size":"Ùانٹ کا Øجم",Tiny:"ننھا",Small:"چھوٹا",Big:"بڑا",Huge:"جسيم","Font Family":"Ùانٹ خاندان",Default:"Ø·Û’ شدÛ","Font Color":"Ùانٹ کا رنگ","Font Background Color":"Ùانٹ Ú©Û’ پس منظر کا رنگ","Document colors":"دستاویز Ú©Û’ رنگ",Paragraph:"پیرا",Heading:"سرخی","Choose heading":"سرخی منتخب کریں","Heading 1":"سرخی 1","Heading 2":"سرخی 2","Heading 3":"سرخی 3","Heading 4":"سرخی 4","Heading 5":"سرخی 5","Heading 6":"سرخی 6","Type your title":"عنوان ٹایپ کریں","Type or paste your content here.":"اپنا مواد ÛŒÛاں ٹایپ یا چسپاں کریں.","Horizontal line":"اÙÙ‚ÛŒ خط","HTML object":"ایچ Ù¹ÛŒ ایم ایل آبجیکٹ","Increase indent":"ØØ§Ø´ÛŒÛ Ø¨Ú‘Ú¾Ø§Ø¦ÛŒÚº","Decrease indent":"ØØ§Ø´ÛŒÛ Ú¯Ú¾Ù¹Ø§Ø¦ÛŒÚº",Unlink:"ربط Øذ٠کریں",Link:"ربط","Link URL":"ربط کا یو آر ایل","Link image":"","Edit link":"ربط Ú©ÛŒ تدوین","Open link in new tab":"نئے ٹیب میں کھولیں","This link has no URL":"ربط کا کوئی یو آر ایل Ù†Ûیں","Open in a new tab":"نئی ٹیب کھولیں",Downloadable:"ڈاؤنلوڈ ÛÙˆ سکتا ÛÛ’","Numbered List":"Ûندسی ÙÛرست","Bulleted List":"غیر Ûندسی ÙÛرست","To-do List":"","Bulleted list styles toolbar":"","Numbered list styles toolbar":"","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"",Circle:"",Square:"",Decimal:"","Decimal with leading zero":"","Lower–roman":"","Upper-roman":"","Lower-latin":"","Upper-latin":"","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Ùارمیٹ Ûٹائیں","Select all":"سب منتخب کریں",Source:"مآخذ","Special characters":"",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"Ø¹Ù„Ø§Ù…ØªÙ Ø¯Ø±Ø§Ú†Ù…Û ","German penny sign":"علامت جرمن پینی","Peso sign":"علامت٠پیسو","Guarani sign":"علامت٠گوارانی","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"انڈین Ø±ÙˆÙ¾ÛŒÛ Ú©ÛŒ علامت","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"",Styles:"انداز","Multiple styles":"متعدد انداز","Block styles":"Ø®Ø§Ù†Û Ú©Û’ انداز","Text styles":"متن Ú©Û’ انداز","Insert table":"جدول داخل کریں","Header column":"سر ستون","Insert column left":"بائیں جانب کالم بنائیں","Insert column right":"دائیں جانب کالم بنائیں","Delete column":"ستون Øذ٠کریں","Select column":"",Column:"ستون","Header row":"سر قطار","Insert row below":"قطار زیریں نصب کریں","Insert row above":"قطار بالا نصب کریں","Delete row":"قطار Øذ٠کریں","Select row":"",Row:"قطار","Merge cell up":"سیل اوپر یکجا کریں","Merge cell right":"سیل دائیں طر٠یکجا کریں","Merge cell down":"سیل Ù†Ú†Ù„ÛŒ طر٠یکجا کریں","Merge cell left":"سیل بائیں طر٠یکجا کریں","Split cell vertically":"سیل Ú©ÛŒ عمودی تقسیم","Split cell horizontally":"سیل Ú©ÛŒ اÙÙ‚ÛŒ تقسیم","Merge cells":"سیل یکجا کریں","Table toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے جدول","Table properties":"","Cell properties":"",Border:"ØاشیÛ",Style:"",Width:"چوڑائی",Height:"اونچائی",Color:"رنگ",Background:"",Padding:"",Dimensions:"","Table cell text alignment":"",Alignment:"","Horizontal text alignment toolbar":"","Vertical text alignment toolbar":"","Table alignment toolbar":"",None:"",Solid:"",Dotted:"Ù†Ù‚Ø·Û Ø¯Ø§Ø±",Dashed:"Ù‚Ø·Ø¹Û Ø¯Ø§Ø±",Double:"دو گنا",Groove:"",Ridge:"",Inset:"",Outset:"","Align cell text to the left":"","Align cell text to the center":"","Align cell text to the right":"","Justify cell text":"","Align cell text to the top":"","Align cell text to the middle":"","Align cell text to the bottom":"","Align table to the left":"","Center table":"","Align table to the right":"","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"","Color picker":"","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"خانۂ ترمیم","Editor editing area: %0":"Ø±Ù‚Ø¨Û Ø®Ø§Ù†Û‚ ترمیم: 0%","Edit block":"Ø®Ø§Ù†Û Ú©ÛŒ تدوین","Click to edit block":"","Drag to move":"",Next:"اگلا",Previous:"پچھلا","Editor toolbar":"ایڈیٹر Ø¢Ù„Û Ø¬Ø§Øª","Dropdown toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے ÙÛرست ",Black:"سیاÛ","Dim grey":"پھیکا سرمئی",Grey:"سرمئی","Light grey":"Ûلکا سرمئی",White:"سÙید",Red:"سرخ",Orange:"نارنجی",Yellow:"پیلا","Light green":"Ûلکا سبز",Green:"سبز",Aquamarine:"نیلگوں بلور",Turquoise:"Ùیروزی","Light blue":"Ûلکا نیلا",Blue:"نیلا",Purple:"ارغوانی","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"رد ترمیم",Redo:"پھر سے کریں","Upload in progress":"آپلوڈ جاری ÛÛ’","Widget toolbar":"Ø¢Ù„Û Ø¬Ø§Øª برائے وجٹ","Insert paragraph before block":"پیراگرا٠سے Ù¾ÛÙ„Û’ Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کریں","Insert paragraph after block":"پیراگرا٠کے بعد Ú©ÙˆÚˆ Ø®Ø§Ù†Û Ù†ØµØ¨ کریں","Press Enter to type after or press Shift + Enter to type before the widget":"","Words: %0":"الÙاظ: 0%","Characters: %0":"ØروÙ: 0%"} );l.getPluralForm=function(n){return (n != 1);};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uz.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uz.js index 19a1f1d8daf44a3881141eea97613d00f7e32987..0f0321381e694696ce76566d12e1bb4cf2c77069 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uz.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/uz.js @@ -1 +1 @@ -(function(d){ const l = d['uz'] = d['uz'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Chap tomonda tekislash","Align right":"O'ng tomonda tekislash","Align center":"O'rtada tekislash",Justify:"Kengligi bo'yicha tekislash","Text alignment":"Matnni tekislash","Text alignment toolbar":"Tekislash",Bold:"Qalin",Italic:"Kursiv",Underline:"Tagi chizilgan",Code:"Manba kodi",Strikethrough:"Chizilgan",Subscript:"Pastki yozuv",Superscript:"Yuqori yozuv","Block quote":"Iqtibos","Insert code block":"Kodni kiritish","Plain text":"Oddiy matn",Cancel:"Bekor qilish",Clear:"O'chirish","Remove color":"Rangni olib tashlash","Restore default":"",Save:"Saqlash","Show more items":"","%0 of %1":"","Cannot upload file:":"","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"",Paragraph:"Paragraf",Heading:"Uslub","Choose heading":"Uslubni tanlash","Heading 1":"Sarlavha 1","Heading 2":"Sarlavha 2","Heading 3":"Sarlavha 3","Heading 4":"Sarlavha 4","Heading 5":"Sarlavha 5","Heading 6":"Sarlavha 6","Type your title":"Sarlavhani kiriting","Type or paste your content here.":"Matningizni shu yerga kiriting yoki joylashtiring","Horizontal line":"Gorizontal chiziq","Increase indent":"chekinishni oshirish","Decrease indent":"chekinishni kamaytirish",Unlink:"Havolani olib tashlash",Link:"Havola","Link URL":"\"Havola URL","Link image":"Rasmga havola","Edit link":"Havolani tahrirlash","Open link in new tab":"Havolani yangi oynada ochish","This link has no URL":"Bu havola uchun URL oÊ»rnatilmagan","Open in a new tab":"Yangi oynada oching",Downloadable:"Yuklab olinadigan","Numbered List":"Raqamlangan ro'yxat","Bulleted List":"Belgilangan roÊ»yxat","To-do List":"","Bulleted list styles toolbar":"Belgilangan ro'yxat uslublari","Numbered list styles toolbar":"Raqamlangan ro'yxat uslublari","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"Disk",Circle:"Doira",Square:"Kvadrat",Decimal:"O'nlik","Decimal with leading zero":"Boshlovchi nol bilan oÊ»nlik","Lower–roman":"Kichik rim","Upper-roman":"Katta rim","Lower-latin":"Kichik lotincha","Upper-latin":"Katta lotincha","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatlashni olib tashlash","Select all":"Hammasini tanlash","Special characters":"Maxsus belgilar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"Kategoriyalar","Insert table":"Jadvalni kiritish","Header column":"Ustun sarlavhalari","Insert column left":"Ustunni chapga kiritish","Insert column right":"Ustunni o'ngga kiritish","Delete column":"Ustunni o'chirish","Select column":"Ustunni tanlash",Column:"Ustun","Header row":"Sarlavhalar satri","Insert row below":"Pastga qatorni kiritish","Insert row above":"Yuqoriga qatorni kiritish","Delete row":"Satrni o'chirish","Select row":"Satrni tanlang",Row:"Satr","Merge cell up":"Yuqoridagi katak bilan birlashtirish","Merge cell right":"O'ngdagi katakcha bilan birlashtirish","Merge cell down":"Pastdagi katak bilan birlashtirish","Merge cell left":"Chapdagi katakcha bilan birlashtirish","Split cell vertically":"Hujayrani vertikal ravishda ajratish","Split cell horizontally":"Hujayrani gorizontal ravishda ajratish","Merge cells":"Hujayralarni birlashtirish","Table toolbar":"Jadval asboblar paneli","Table properties":"Jadvalning xususiyatlari","Cell properties":"Hujayra xususiyatlari",Border:"Chegara",Style:"Uslub",Width:"Kengligi",Height:"Balandligi",Color:"Rang",Background:"Fon",Padding:"Chekinish",Dimensions:"O'lchamlar","Table cell text alignment":"Jadval katakchasidagi matnni tekislash",Alignment:"Tekislash","Horizontal text alignment toolbar":"Matnni gorizontal tekislash asboblar paneli","Vertical text alignment toolbar":"Vertikal matnni tekislash asboblar paneli","Table alignment toolbar":"Jadvalni tekislash asboblar paneli",None:"Yo'q",Solid:"Qattiq",Dotted:"Nuqta",Dashed:"Nuqtali",Double:"Ikkitalik",Groove:"Yivli",Ridge:"Qirrali",Inset:"Tushkunlikka tushgan",Outset:"Qavariq","Align cell text to the left":"Matnni chapga tekislash","Align cell text to the center":"Matnni markazga tekislash","Align cell text to the right":"Matnni o'ngga tekislash","Justify cell text":"Matnni kenglikka tekislash","Align cell text to the top":"Hujayra matnini tepaga tekislash","Align cell text to the middle":"Hujayra matnini markazga tekislash","Align cell text to the bottom":"Hujayra matnini pastga tekislash","Align table to the left":"Jadvalni chap tomonga tekislash","Center table":"Jadvalni markazga tekislash","Align table to the right":"Jadvalni o'ngga tekislash","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Noto'g'ri rang. \\ \"# FF0000 \\\" yoki \\ \"rgb (255,0,0) \\\" yoki \\ \"red \\\" ni sinab ko'ring.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Noto'g'ri qiymat. \\ \"10px \\\" yoki \\ \"2em \\\" yoki shunchaki \\ \"2 \\\" ni sinab ko'ring.","Color picker":"Rang tanlash","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Tahrirlovchi","Editor editing area: %0":"","Edit block":"Blokni tahrirlash","Click to edit block":"","Drag to move":"",Next:"Keyingi",Previous:"Oldingi","Editor toolbar":"Tahrirlovchi asboblar paneli","Dropdown toolbar":"Ochiladigan asboblar paneli",Black:"Qora","Dim grey":"To'q kulrang",Grey:"Kulrang","Light grey":"Och kulrang",White:"Oq",Red:"Qizil",Orange:"To'q sariq",Yellow:"Sariq","Light green":"Och yashil",Green:"Yashil",Aquamarine:"Akuamarin",Turquoise:"Turkuaz","Light blue":"Moviy",Blue:"Ko'k",Purple:"Siyohrang","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Bekor qilish",Redo:"Takrorlash","Upload in progress":"Yuklanmoqda","Widget toolbar":"Vidjet asboblar paneli","Insert paragraph before block":"Blokdan oldin paragrafni kiritish","Insert paragraph after block":"Ð’blokdan keyin paragraf qo'yish","Press Enter to type after or press Shift + Enter to type before the widget":""} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['uz'] = d['uz'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Chap tomonda tekislash","Align right":"O'ng tomonda tekislash","Align center":"O'rtada tekislash",Justify:"Kengligi bo'yicha tekislash","Text alignment":"Matnni tekislash","Text alignment toolbar":"Tekislash",Bold:"Qalin",Italic:"Kursiv",Underline:"Tagi chizilgan",Code:"Manba kodi",Strikethrough:"Chizilgan",Subscript:"Pastki yozuv",Superscript:"Yuqori yozuv","Block quote":"Iqtibos","Insert code block":"Kodni kiritish","Plain text":"Oddiy matn",Cancel:"Bekor qilish",Clear:"O'chirish","Remove color":"Rangni olib tashlash","Restore default":"",Save:"Saqlash","Show more items":"","%0 of %1":"","Cannot upload file:":"","Rich Text Editor. Editing area: %0":"","Insert with file manager":"","Replace with file manager":"","Insert image with file manager":"","Replace image with file manager":"","Font Size":"Shrift hajmi",Tiny:"Juda kichik",Small:"Kichik",Big:"Katta",Huge:"Juda katta","Font Family":"Shriftlar oilasi",Default:"Standart","Font Color":"Shrift rangi","Font Background Color":"Fon rangi","Document colors":"Sahifa rangi",Paragraph:"Paragraf",Heading:"Uslub","Choose heading":"Uslubni tanlash","Heading 1":"Sarlavha 1","Heading 2":"Sarlavha 2","Heading 3":"Sarlavha 3","Heading 4":"Sarlavha 4","Heading 5":"Sarlavha 5","Heading 6":"Sarlavha 6","Type your title":"Sarlavhani kiriting","Type or paste your content here.":"Matningizni shu yerga kiriting yoki joylashtiring","Horizontal line":"Gorizontal chiziq","Increase indent":"chekinishni oshirish","Decrease indent":"chekinishni kamaytirish",Unlink:"Havolani olib tashlash",Link:"Havola","Link URL":"\"Havola URL","Link image":"Rasmga havola","Edit link":"Havolani tahrirlash","Open link in new tab":"Havolani yangi oynada ochish","This link has no URL":"Bu havola uchun URL oÊ»rnatilmagan","Open in a new tab":"Yangi oynada oching",Downloadable:"Yuklab olinadigan","Numbered List":"Raqamlangan ro'yxat","Bulleted List":"Belgilangan roÊ»yxat","To-do List":"","Bulleted list styles toolbar":"Belgilangan ro'yxat uslublari","Numbered list styles toolbar":"Raqamlangan ro'yxat uslublari","Toggle the disc list style":"","Toggle the circle list style":"","Toggle the square list style":"","Toggle the decimal list style":"","Toggle the decimal with leading zero list style":"","Toggle the lower–roman list style":"","Toggle the upper–roman list style":"","Toggle the lower–latin list style":"","Toggle the upper–latin list style":"",Disc:"Disk",Circle:"Doira",Square:"Kvadrat",Decimal:"O'nlik","Decimal with leading zero":"Boshlovchi nol bilan oÊ»nlik","Lower–roman":"Kichik rim","Upper-roman":"Katta rim","Lower-latin":"Kichik lotincha","Upper-latin":"Katta lotincha","List properties":"","Start at":"","Start index must be greater than 0.":"","Reversed order":"","Remove Format":"Formatlashni olib tashlash","Select all":"Hammasini tanlash","Special characters":"Maxsus belgilar",All:"",Arrows:"",Currency:"",Latin:"",Mathematical:"",Text:"","leftwards simple arrow":"","rightwards simple arrow":"","upwards simple arrow":"","downwards simple arrow":"","leftwards double arrow":"","rightwards double arrow":"","upwards double arrow":"","downwards double arrow":"","leftwards dashed arrow":"","rightwards dashed arrow":"","upwards dashed arrow":"","downwards dashed arrow":"","leftwards arrow to bar":"","rightwards arrow to bar":"","upwards arrow to bar":"","downwards arrow to bar":"","up down arrow with base":"","back with leftwards arrow above":"","end with leftwards arrow above":"","on with exclamation mark with left right arrow above":"","soon with rightwards arrow above":"","top with upwards arrow above":"","Dollar sign":"","Euro sign":"","Yen sign":"","Pound sign":"","Cent sign":"","Euro-currency sign":"","Colon sign":"","Cruzeiro sign":"","French franc sign":"","Lira sign":"","Currency sign":"","Bitcoin sign":"","Mill sign":"","Naira sign":"","Peseta sign":"","Rupee sign":"","Won sign":"","New sheqel sign":"","Dong sign":"","Kip sign":"","Tugrik sign":"","Drachma sign":"","German penny sign":"","Peso sign":"","Guarani sign":"","Austral sign":"","Hryvnia sign":"","Cedi sign":"","Livre tournois sign":"","Spesmilo sign":"","Tenge sign":"","Indian rupee sign":"","Turkish lira sign":"","Nordic mark sign":"","Manat sign":"","Ruble sign":"","Latin capital letter a with macron":"","Latin small letter a with macron":"","Latin capital letter a with breve":"","Latin small letter a with breve":"","Latin capital letter a with ogonek":"","Latin small letter a with ogonek":"","Latin capital letter c with acute":"","Latin small letter c with acute":"","Latin capital letter c with circumflex":"","Latin small letter c with circumflex":"","Latin capital letter c with dot above":"","Latin small letter c with dot above":"","Latin capital letter c with caron":"","Latin small letter c with caron":"","Latin capital letter d with caron":"","Latin small letter d with caron":"","Latin capital letter d with stroke":"","Latin small letter d with stroke":"","Latin capital letter e with macron":"","Latin small letter e with macron":"","Latin capital letter e with breve":"","Latin small letter e with breve":"","Latin capital letter e with dot above":"","Latin small letter e with dot above":"","Latin capital letter e with ogonek":"","Latin small letter e with ogonek":"","Latin capital letter e with caron":"","Latin small letter e with caron":"","Latin capital letter g with circumflex":"","Latin small letter g with circumflex":"","Latin capital letter g with breve":"","Latin small letter g with breve":"","Latin capital letter g with dot above":"","Latin small letter g with dot above":"","Latin capital letter g with cedilla":"","Latin small letter g with cedilla":"","Latin capital letter h with circumflex":"","Latin small letter h with circumflex":"","Latin capital letter h with stroke":"","Latin small letter h with stroke":"","Latin capital letter i with tilde":"","Latin small letter i with tilde":"","Latin capital letter i with macron":"","Latin small letter i with macron":"","Latin capital letter i with breve":"","Latin small letter i with breve":"","Latin capital letter i with ogonek":"","Latin small letter i with ogonek":"","Latin capital letter i with dot above":"","Latin small letter dotless i":"","Latin capital ligature ij":"","Latin small ligature ij":"","Latin capital letter j with circumflex":"","Latin small letter j with circumflex":"","Latin capital letter k with cedilla":"","Latin small letter k with cedilla":"","Latin small letter kra":"","Latin capital letter l with acute":"","Latin small letter l with acute":"","Latin capital letter l with cedilla":"","Latin small letter l with cedilla":"","Latin capital letter l with caron":"","Latin small letter l with caron":"","Latin capital letter l with middle dot":"","Latin small letter l with middle dot":"","Latin capital letter l with stroke":"","Latin small letter l with stroke":"","Latin capital letter n with acute":"","Latin small letter n with acute":"","Latin capital letter n with cedilla":"","Latin small letter n with cedilla":"","Latin capital letter n with caron":"","Latin small letter n with caron":"","Latin small letter n preceded by apostrophe":"","Latin capital letter eng":"","Latin small letter eng":"","Latin capital letter o with macron":"","Latin small letter o with macron":"","Latin capital letter o with breve":"","Latin small letter o with breve":"","Latin capital letter o with double acute":"","Latin small letter o with double acute":"","Latin capital ligature oe":"","Latin small ligature oe":"","Latin capital letter r with acute":"","Latin small letter r with acute":"","Latin capital letter r with cedilla":"","Latin small letter r with cedilla":"","Latin capital letter r with caron":"","Latin small letter r with caron":"","Latin capital letter s with acute":"","Latin small letter s with acute":"","Latin capital letter s with circumflex":"","Latin small letter s with circumflex":"","Latin capital letter s with cedilla":"","Latin small letter s with cedilla":"","Latin capital letter s with caron":"","Latin small letter s with caron":"","Latin capital letter t with cedilla":"","Latin small letter t with cedilla":"","Latin capital letter t with caron":"","Latin small letter t with caron":"","Latin capital letter t with stroke":"","Latin small letter t with stroke":"","Latin capital letter u with tilde":"","Latin small letter u with tilde":"","Latin capital letter u with macron":"","Latin small letter u with macron":"","Latin capital letter u with breve":"","Latin small letter u with breve":"","Latin capital letter u with ring above":"","Latin small letter u with ring above":"","Latin capital letter u with double acute":"","Latin small letter u with double acute":"","Latin capital letter u with ogonek":"","Latin small letter u with ogonek":"","Latin capital letter w with circumflex":"","Latin small letter w with circumflex":"","Latin capital letter y with circumflex":"","Latin small letter y with circumflex":"","Latin capital letter y with diaeresis":"","Latin capital letter z with acute":"","Latin small letter z with acute":"","Latin capital letter z with dot above":"","Latin small letter z with dot above":"","Latin capital letter z with caron":"","Latin small letter z with caron":"","Latin small letter long s":"","Less-than sign":"","Greater-than sign":"","Less-than or equal to":"","Greater-than or equal to":"","En dash":"","Em dash":"",Macron:"",Overline:"","Degree sign":"","Minus sign":"","Plus-minus sign":"","Division sign":"","Fraction slash":"","Multiplication sign":"","Latin small letter f with hook":"",Integral:"","N-ary summation":"",Infinity:"","Square root":"","Tilde operator":"","Approximately equal to":"","Almost equal to":"","Not equal to":"","Identical to":"","Element of":"","Not an element of":"","Contains as member":"","N-ary product":"","Logical and":"","Logical or":"","Not sign":"",Intersection:"",Union:"","Partial differential":"","For all":"","There exists":"","Empty set":"",Nabla:"","Asterisk operator":"","Proportional to":"",Angle:"","Vulgar fraction one quarter":"","Vulgar fraction one half":"","Vulgar fraction three quarters":"","Single left-pointing angle quotation mark":"","Single right-pointing angle quotation mark":"","Left-pointing double angle quotation mark":"","Right-pointing double angle quotation mark":"","Left single quotation mark":"","Right single quotation mark":"","Left double quotation mark":"","Right double quotation mark":"","Single low-9 quotation mark":"","Double low-9 quotation mark":"","Inverted exclamation mark":"","Inverted question mark":"","Two dot leader":"","Horizontal ellipsis":"","Double dagger":"","Per mille sign":"","Per ten thousand sign":"","Double exclamation mark":"","Question exclamation mark":"","Exclamation question mark":"","Double question mark":"","Copyright sign":"","Registered sign":"","Trade mark sign":"","Section sign":"","Paragraph sign":"","Reversed paragraph sign":"","Character categories":"Kategoriyalar","Insert table":"Jadvalni kiritish","Header column":"Ustun sarlavhalari","Insert column left":"Ustunni chapga kiritish","Insert column right":"Ustunni o'ngga kiritish","Delete column":"Ustunni o'chirish","Select column":"Ustunni tanlash",Column:"Ustun","Header row":"Sarlavhalar satri","Insert row below":"Pastga qatorni kiritish","Insert row above":"Yuqoriga qatorni kiritish","Delete row":"Satrni o'chirish","Select row":"Satrni tanlang",Row:"Satr","Merge cell up":"Yuqoridagi katak bilan birlashtirish","Merge cell right":"O'ngdagi katakcha bilan birlashtirish","Merge cell down":"Pastdagi katak bilan birlashtirish","Merge cell left":"Chapdagi katakcha bilan birlashtirish","Split cell vertically":"Hujayrani vertikal ravishda ajratish","Split cell horizontally":"Hujayrani gorizontal ravishda ajratish","Merge cells":"Hujayralarni birlashtirish","Table toolbar":"Jadval asboblar paneli","Table properties":"Jadvalning xususiyatlari","Cell properties":"Hujayra xususiyatlari",Border:"Chegara",Style:"Uslub",Width:"Kengligi",Height:"Balandligi",Color:"Rang",Background:"Fon",Padding:"Chekinish",Dimensions:"O'lchamlar","Table cell text alignment":"Jadval katakchasidagi matnni tekislash",Alignment:"Tekislash","Horizontal text alignment toolbar":"Matnni gorizontal tekislash asboblar paneli","Vertical text alignment toolbar":"Vertikal matnni tekislash asboblar paneli","Table alignment toolbar":"Jadvalni tekislash asboblar paneli",None:"Yo'q",Solid:"Qattiq",Dotted:"Nuqta",Dashed:"Nuqtali",Double:"Ikkitalik",Groove:"Yivli",Ridge:"Qirrali",Inset:"Tushkunlikka tushgan",Outset:"Qavariq","Align cell text to the left":"Matnni chapga tekislash","Align cell text to the center":"Matnni markazga tekislash","Align cell text to the right":"Matnni o'ngga tekislash","Justify cell text":"Matnni kenglikka tekislash","Align cell text to the top":"Hujayra matnini tepaga tekislash","Align cell text to the middle":"Hujayra matnini markazga tekislash","Align cell text to the bottom":"Hujayra matnini pastga tekislash","Align table to the left":"Jadvalni chap tomonga tekislash","Center table":"Jadvalni markazga tekislash","Align table to the right":"Jadvalni o'ngga tekislash","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Noto'g'ri rang. \\ \"# FF0000 \\\" yoki \\ \"rgb (255,0,0) \\\" yoki \\ \"red \\\" ni sinab ko'ring.","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Noto'g'ri qiymat. \\ \"10px \\\" yoki \\ \"2em \\\" yoki shunchaki \\ \"2 \\\" ni sinab ko'ring.","Color picker":"Rang tanlash","Toggle caption off":"","Toggle caption on":"","Enter table caption":"","Rich Text Editor":"Tahrirlovchi","Editor editing area: %0":"","Edit block":"Blokni tahrirlash","Click to edit block":"","Drag to move":"",Next:"Keyingi",Previous:"Oldingi","Editor toolbar":"Tahrirlovchi asboblar paneli","Dropdown toolbar":"Ochiladigan asboblar paneli",Black:"Qora","Dim grey":"To'q kulrang",Grey:"Kulrang","Light grey":"Och kulrang",White:"Oq",Red:"Qizil",Orange:"To'q sariq",Yellow:"Sariq","Light green":"Och yashil",Green:"Yashil",Aquamarine:"Akuamarin",Turquoise:"Turkuaz","Light blue":"Moviy",Blue:"Ko'k",Purple:"Siyohrang","Editor block content toolbar":"","Editor contextual toolbar":"",HEX:"",Accept:"","No results found":"","No searchable items":"","Editor dialog":"",Close:"",Undo:"Bekor qilish",Redo:"Takrorlash","Upload in progress":"Yuklanmoqda","Widget toolbar":"Vidjet asboblar paneli","Insert paragraph before block":"Blokdan oldin paragrafni kiritish","Insert paragraph after block":"Ð’blokdan keyin paragraf qo'yish","Press Enter to type after or press Shift + Enter to type before the widget":""} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/vi.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/vi.js index d09914b6042821ba93685e366d86df5657ccab05..64358c39e7e54df06f7a4e8b4553841aa501e0b2 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/vi.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/vi.js @@ -1 +1 @@ -(function(d){ const l = d['vi'] = d['vi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Canh trái","Align right":"Canh phải","Align center":"Canh giữa",Justify:"Canh Ä‘á»u","Text alignment":"Căn chỉnh văn bản","Text alignment toolbar":"Thanh công cụ canh chữ",Bold:"Äáºm",Italic:"Nghiêng",Underline:"Gạch dÆ°á»›i",Code:"Code",Strikethrough:"Gạch ngang",Subscript:"Chữ nhá» dÆ°á»›i",Superscript:"Chữ nhá» trên","Block quote":"TrÃch dẫn","Insert code block":"Chèn khối mã","Plain text":"Văn bản thuần",Cancel:"Hủy",Clear:"Xóa","Remove color":"Xóa mà u","Restore default":"Khôi phục giá trị mặc định",Save:"LÆ°u","Show more items":"Xem thêm","%0 of %1":"%0 đến %1","Cannot upload file:":"Không thể tải file:","Rich Text Editor. Editing area: %0":"Trình chỉnh sá»a Văn bản dạng RTF. Vùng chỉnh sá»a: %0","Insert with file manager":"Chèn bằng trình quản lý táºp tin","Replace with file manager":"Thay thế bằng trình quản lý táºp tin","Insert image with file manager":"Chèn hình ảnh bằng trình quản lý táºp tin","Replace image with file manager":"Thay thế hình ảnh bằng trình quản lý táºp tin","Find and replace":"Tìm và thay thế","Find in text…":"Tìm trong văn bản...",Find:"Tìm","Previous result":"Kết quả trÆ°á»›c","Next result":"Kết quả tiếp theo",Replace:"Thay thế","Replace all":"Thay thế tất cả","Match case":"Khá»›p chữ hoa/chữ thÆ°á»ng","Whole words only":"Chỉ toà n bá»™ từ","Replace with…":"Thay thế bằng...","Text to find must not be empty.":"Không được để trống trÆ°á»ng văn bản cần tìm.","Tip: Find some text first in order to replace it.":"Mẹo: Tìm má»™t Ä‘oạn văn bản trÆ°á»›c để thay thế.","Advanced options":"Tùy chá»n nâng cao",Paragraph:"Äoạn văn",Heading:"Tiêu Ä‘á»","Choose heading":"Chá»n tiêu Ä‘á»","Heading 1":"Tiêu Ä‘á» 1","Heading 2":"Tiêu Ä‘á» 2","Heading 3":"Tiêu Ä‘á» 3","Heading 4":"Tiêu Ä‘á» 4","Heading 5":"Tiêu Ä‘á» 5","Heading 6":"Tiêu Ä‘á» 6","Type your title":"Nháºp tá»±a Ä‘á»","Type or paste your content here.":"Nháºp hoặc dán ná»™i dung tại đây","Horizontal line":"ÄÆ°á»ng ngang","HTML object":"Äối tượng HTML","Increase indent":"Tăng lá»","Decrease indent":"Giảm lá»",Unlink:"Bá» liên kết",Link:"Chèn liên kết","Link URL":"ÄÆ°á»ng dẫn liên kết","Link image":"Liên kết của ảnh","Edit link":"Sá»a liên kết","Open link in new tab":"Mở liên kết","This link has no URL":"Liên kết không có Ä‘Æ°á»ng dẫn","Open in a new tab":"Mở trên tab má»›i",Downloadable:"Có thể tải vá»","Numbered List":"Danh sách đánh số","Bulleted List":"Danh sách đánh ký hiệu","To-do List":"Danh sách cần là m","Bulleted list styles toolbar":"Thanh công cụ kiểu danh sách có dấu đầu dòng","Numbered list styles toolbar":"Thanh công cụ kiểu danh sách được đánh số","Toggle the disc list style":"Báºt/tắt kiểu danh sách dạng Ä‘Ä©a","Toggle the circle list style":"Báºt/tắt kiểu danh sách dạng vòng tròn","Toggle the square list style":"Báºt/tắt kiểu danh sách dạng vuông","Toggle the decimal list style":"Báºt/tắt kiểu danh sách dạng tháºp phân","Toggle the decimal with leading zero list style":"Báºt/tắt kiểu danh sách dạng tháºp phân bắt đầu bằng số 0","Toggle the lower–roman list style":"Báºt/tắt kiểu danh sách chữ số La Mã viết thÆ°á»ng","Toggle the upper–roman list style":"Báºt/tắt kiểu danh sách chữ số La Mã viết hoa","Toggle the lower–latin list style":"Báºt/tắt kiểu danh sách chữ cái Latinh viết thÆ°á»ng","Toggle the upper–latin list style":"Báºt/tắt kiểu danh sách chữ cái Latinh viết hoa",Disc:"ÄÄ©a",Circle:"Tròn",Square:"Vuông",Decimal:"Tháºp phân","Decimal with leading zero":"Tháºp phân bắt đầu bằng số 0","Lower–roman":"Chữ số La Mã viết thÆ°á»ng","Upper-roman":"Chữ số La Mã viết hoa","Lower-latin":"Chữ cái Latinh viết thÆ°á»ng","Upper-latin":"Chữ cái Latinh viết hoa","List properties":"Thuá»™c tÃnh danh sách","Start at":"Bắt đầu tại","Start index must be greater than 0.":"Chỉ mục bắt đầu phải lá»›n hÆ¡n 0.","Reversed order":"Thứ tá»± đảo ngược","Remove Format":"Xóa định dang","Select all":"Chá»n tất cả","Show blocks":"Hiện các khối",Source:"Nguồn","Special characters":"Các ký tá»± đặc biệt",All:"Tất cả",Arrows:"MÅ©i tên",Currency:"Tiá»n tệ",Latin:"Latin",Mathematical:"Toán há»c",Text:"Văn bản","leftwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ sang trái","rightwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ sang phải","upwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ lên trên","downwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ xuống dÆ°á»›i","leftwards double arrow":"mÅ©i tên kép hÆ°á»›ng sang trái","rightwards double arrow":"mÅ©i tên kép hÆ°á»›ng sang phải","upwards double arrow":"mÅ©i tên kép hÆ°á»›ng lên","downwards double arrow":"mÅ©i tên kép hÆ°á»›ng xuống","leftwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng sang trái","rightwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng sang phải","upwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng lên","downwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng xuống","leftwards arrow to bar":"mÅ©i tên hÆ°á»›ng sang trái vá» phÃa thanh","rightwards arrow to bar":"mÅ©i tên hÆ°á»›ng sang phải vá» phÃa thanh","upwards arrow to bar":"mÅ©i tên hÆ°á»›ng lên trên vá» phÃa thanh","downwards arrow to bar":"mÅ©i tên hÆ°á»›ng xuống dÆ°á»›i vá» phÃa thanh","up down arrow with base":"mÅ©i tên lên xuống có đế","back with leftwards arrow above":"back vá»›i mÅ©i tên hÆ°á»›ng sang trái ở trên","end with leftwards arrow above":"end vá»›i mÅ©i tên hÆ°á»›ng sang trái ở trên","on with exclamation mark with left right arrow above":"on vá»›i dấu chấm than và mÅ©i tên trái phải ở trên","soon with rightwards arrow above":"soon vá»›i mÅ©i tên hÆ°á»›ng sang phải ở trên","top with upwards arrow above":"top vá»›i mÅ©i tên hÆ°á»›ng lên ở trên","Dollar sign":"Ký hiệu Äô la","Euro sign":"Ký hiệu Euro","Yen sign":"Ký hiệu Yên Nháºt","Pound sign":"Ký hiệu Bảng Anh","Cent sign":"Ký hiệu Cent","Euro-currency sign":"Ký hiệu tiá»n tệ Euro","Colon sign":"Ký hiệu Colon","Cruzeiro sign":"Ký hiệu Cruzeiro","French franc sign":"Ký hiệu franc Pháp","Lira sign":"Ký hiệu Lira","Currency sign":"Ký hiệu tiá»n tệ","Bitcoin sign":"Ký hiệu Bitcoin","Mill sign":"Ký hiệu Mill","Naira sign":"Ký hiệu Naira","Peseta sign":"Ký hiệu Peseta","Rupee sign":"Ký hiệu Rupee","Won sign":"Ký hiệu Won","New sheqel sign":"Ký hiệu Shekel má»›i","Dong sign":"Ký hiệu Äồng","Kip sign":"Ký hiệu Kip","Tugrik sign":"Ký hiệu Tögrög","Drachma sign":"Ký hiệu Drachma","German penny sign":"Ký hiệu penny Äức","Peso sign":"Ký hiệu Peso","Guarani sign":"Ký hiệu Guarani","Austral sign":"Ký hiệu Austral","Hryvnia sign":"Ký hiệu Hryvnia","Cedi sign":"Ký hiệu Cedi","Livre tournois sign":"Ký hiệu Livre tournois","Spesmilo sign":"Ký hiệu Spesmilo","Tenge sign":"Ký hiệu Tenge","Indian rupee sign":"Ký hiệu rupee Ấn Äá»™","Turkish lira sign":"Ký hiệu lira Thổ NhÄ© Kỳ","Nordic mark sign":"Ký hiệu Mác Bắc Âu","Manat sign":"Ký hiệu Manat","Ruble sign":"Ký hiệu Rúp","Latin capital letter a with macron":"Chữ cái Latinh a viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter a with macron":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter a with breve":"Chữ cái Latinh a viết hoa vá»›i dấu trăng","Latin small letter a with breve":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter a with ogonek":"Chữ cái Latinh a viết hoa vá»›i dấu ogonek","Latin small letter a with ogonek":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter c with acute":"Chữ cái Latinh c viết hoa vá»›i dấu sắc","Latin small letter c with acute":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter c with circumflex":"Chữ cái Latinh c viết hoa vá»›i dấu mÅ©","Latin small letter c with circumflex":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter c with dot above":"Chữ cái Latinh c viết hoa vá»›i dấu chấm ở trên","Latin small letter c with dot above":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter c with caron":"Chữ cái Latinh c viết hoa vá»›i dấu mÅ© ngược","Latin small letter c with caron":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter d with caron":"Chữ cái Latinh d viết hoa vá»›i dấu mÅ© ngược","Latin small letter d with caron":"Chữ cái Latinh d viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter d with stroke":"Chữ cái Latinh d viết hoa vá»›i dấu gạch ngang","Latin small letter d with stroke":"Chữ cái Latinh d viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter e with macron":"Chữ cái Latinh e viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter e with macron":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter e with breve":"Chữ cái Latinh e viết hoa vá»›i dấu trăng","Latin small letter e with breve":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter e with dot above":"Chữ cái Latinh e viết hoa vá»›i dấu chấm ở trên","Latin small letter e with dot above":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter e with ogonek":"Chữ cái Latinh e viết hoa vá»›i dấu ogonek","Latin small letter e with ogonek":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter e with caron":"Chữ cái Latinh e viết hoa vá»›i dấu mÅ© ngược","Latin small letter e with caron":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter g with circumflex":"Chữ cái Latinh g viết hoa vá»›i dấu mÅ©","Latin small letter g with circumflex":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter g with breve":"Chữ cái Latinh g viết hoa vá»›i dấu trăng","Latin small letter g with breve":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter g with dot above":"Chữ cái Latinh g viết hoa vá»›i dấu chấm ở trên","Latin small letter g with dot above":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter g with cedilla":"Chữ cái Latinh g viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter g with cedilla":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter h with circumflex":"Chữ cái Latinh h viết hoa vá»›i dấu mÅ©","Latin small letter h with circumflex":"Chữ cái Latinh h viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter h with stroke":"Chữ cái Latinh h viết hoa vá»›i dấu gạch ngang","Latin small letter h with stroke":"Chữ cái Latinh h viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter i with tilde":"Chữ cái Latinh i viết hoa vá»›i dấu ngã","Latin small letter i with tilde":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu ngã","Latin capital letter i with macron":"Chữ cái Latinh i viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter i with macron":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter i with breve":"Chữ cái Latinh i viết hoa vá»›i dấu trăng","Latin small letter i with breve":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter i with ogonek":"Chữ cái Latinh i viết hoa vá»›i dấu ogonek","Latin small letter i with ogonek":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter i with dot above":"Chữ cái Latinh i viết hoa vá»›i dấu chấm ở trên","Latin small letter dotless i":"Chữ cái Latinh i viết thÆ°á»ng không dấu chấm","Latin capital ligature ij":"Chữ ghép Latinh ij viết hoa","Latin small ligature ij":"Chữ ghép Latinh ij viết thÆ°á»ng","Latin capital letter j with circumflex":"Chữ cái Latinh j viết hoa vá»›i dấu mÅ©","Latin small letter j with circumflex":"Chữ cái Latinh j viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter k with cedilla":"Chữ cái Latinh k viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter k with cedilla":"Chữ cái Latinh k viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter kra":"Chữ cái Latinh k viết thÆ°á»ng","Latin capital letter l with acute":"Chữ cái Latinh l viết hoa vá»›i dấu sắc","Latin small letter l with acute":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter l with cedilla":"Chữ cái Latinh l viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter l with cedilla":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter l with caron":"Chữ cái Latinh l viết hoa vá»›i dấu mÅ© ngược","Latin small letter l with caron":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter l with middle dot":"Chữ cái Latinh l viết hoa vá»›i dấu chấm ở giữa","Latin small letter l with middle dot":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu chấm ở giữa","Latin capital letter l with stroke":"Chữ cái Latinh l viết hoa vá»›i dấu gạch ngang","Latin small letter l with stroke":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter n with acute":"Chữ cái Latinh n viết hoa vá»›i dấu sắc","Latin small letter n with acute":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter n with cedilla":"Chữ cái Latinh n viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter n with cedilla":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter n with caron":"Chữ cái Latinh n viết hoa vá»›i dấu mÅ© ngược","Latin small letter n with caron":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin small letter n preceded by apostrophe":"Chữ cái Latinh n viết thÆ°á»ng có dấu viết lược đứng trÆ°á»›c","Latin capital letter eng":"Chữ cái Latinh ÅŠ viết hoa","Latin small letter eng":"Chữ cái Latinh Å‹ viết thÆ°á»ng","Latin capital letter o with macron":"Chữ cái Latinh o viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter o with macron":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter o with breve":"Chữ cái Latinh o viết hoa vá»›i dấu trăng","Latin small letter o with breve":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter o with double acute":"Chữ cái Latinh o viết hoa vá»›i dấu sắc kép","Latin small letter o with double acute":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu sắc kép","Latin capital ligature oe":"Chữ ghép Latinh oe viết hoa","Latin small ligature oe":"Chữ ghép Latinh oe viết thÆ°á»ng","Latin capital letter r with acute":"Chữ cái Latinh r viết hoa vá»›i dấu sắc","Latin small letter r with acute":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter r with cedilla":"Chữ cái Latinh r viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter r with cedilla":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter r with caron":"Chữ cái Latinh r viết hoa vá»›i dấu mÅ© ngược","Latin small letter r with caron":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter s with acute":"Chữ cái Latinh s viết hoa vá»›i dấu sắc","Latin small letter s with acute":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter s with circumflex":"Chữ cái Latinh s viết hoa vá»›i dấu mÅ©","Latin small letter s with circumflex":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter s with cedilla":"Chữ cái Latinh s viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter s with cedilla":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter s with caron":"Chữ cái Latinh s viết hoa vá»›i dấu mÅ© ngược","Latin small letter s with caron":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter t with cedilla":"Chữ cái Latinh t viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter t with cedilla":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter t with caron":"Chữ cái Latinh t viết hoa vá»›i dấu mÅ© ngược","Latin small letter t with caron":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter t with stroke":"Chữ cái Latinh t viết hoa vá»›i dấu gạch ngang","Latin small letter t with stroke":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter u with tilde":"Chữ cái Latinh u viết hoa vá»›i dấu ngã","Latin small letter u with tilde":"Chữ cái Latinh u viết hoa vá»›i dấu ngã","Latin capital letter u with macron":"Chữ cái Latinh u viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter u with macron":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter u with breve":"Chữ cái Latinh u viết hoa vá»›i dấu trăng","Latin small letter u with breve":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter u with ring above":"Chữ cái Latinh u viết hoa vá»›i vòng tròn ở trên","Latin small letter u with ring above":"Chữ cái Latinh u viết thÆ°á»ng vá»›i vòng tròn ở trên","Latin capital letter u with double acute":"Chữ cái Latinh u viết hoa vá»›i dấu sắc kép","Latin small letter u with double acute":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu sắc kép","Latin capital letter u with ogonek":"Chữ cái Latinh u viết hoa vá»›i dấu ogonek","Latin small letter u with ogonek":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter w with circumflex":"Chữ cái Latinh w viết hoa vá»›i dấu mÅ©","Latin small letter w with circumflex":"Chữ cái Latinh w viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter y with circumflex":"Chữ cái Latinh y viết hoa vá»›i dấu mÅ©","Latin small letter y with circumflex":"Chữ cái Latinh y viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter y with diaeresis":"Chữ cái Latinh y viết hoa vá»›i dấu tách đôi","Latin capital letter z with acute":"Chữ cái Latinh z viết hoa vá»›i dấu sắc","Latin small letter z with acute":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter z with dot above":"Chữ cái Latinh z viết hoa vá»›i dấu chấm ở trên","Latin small letter z with dot above":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter z with caron":"Chữ cái Latinh z viết hoa vá»›i dấu mÅ© ngược","Latin small letter z with caron":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin small letter long s":"Chữ cái Latinh s dà i viết thÆ°á»ng","Less-than sign":"Ký hiệu nhá» hÆ¡n","Greater-than sign":"Ký hiệu lá»›n hÆ¡n","Less-than or equal to":"Nhá» hÆ¡n hoặc bằng","Greater-than or equal to":"Lá»›n hÆ¡n hoặc bằng","En dash":"Gạch ngang ngắn","Em dash":"Gạch ngang dà i",Macron:"Dấu trÆ°á»ng âm",Overline:"Gạch trên","Degree sign":"Ký hiệu Ä‘á»™","Minus sign":"Ký hiệu trừ","Plus-minus sign":"Ký hiệu cá»™ng-trừ","Division sign":"Ký hiệu chia","Fraction slash":"Dấu gạch chéo phân số","Multiplication sign":"Ký hiệu nhân","Latin small letter f with hook":"Chữ cái Latinh f viết thÆ°á»ng vá»›i móc",Integral:"TÃch phân","N-ary summation":"Phép tổng n số nguyên",Infinity:"Vô cá»±c","Square root":"Căn báºc hai","Tilde operator":"Toán tá» dấu ngã","Approximately equal to":"Xấp xỉ bằng","Almost equal to":"Gần bằng","Not equal to":"Không bằng","Identical to":"TÆ°Æ¡ng Ä‘Æ°Æ¡ng","Element of":"Thuá»™c","Not an element of":"Không thuá»™c","Contains as member":"Chứa","N-ary product":"TÃch n số nguyên","Logical and":"Và logic","Logical or":"Hoặc logic","Not sign":"Không",Intersection:"Giao",Union:"Hợp","Partial differential":"Vi phân riêng phần","For all":"Vá»›i má»i","There exists":"Tồn tại","Empty set":"Táºp hợp rá»—ng",Nabla:"Nabla","Asterisk operator":"Toán tá» dấu hoa thị","Proportional to":"TÆ°Æ¡ng ứng vá»›i",Angle:"Góc","Vulgar fraction one quarter":"Phân số thÆ°á»ng má»™t phần tÆ°","Vulgar fraction one half":"Phân số thÆ°á»ng má»™t phần hai","Vulgar fraction three quarters":"Phân số thÆ°á»ng ba phần tÆ°","Single left-pointing angle quotation mark":"Dấu nháy Ä‘Æ¡n dạng góc chỉ sang bên trái","Single right-pointing angle quotation mark":"Dấu nháy Ä‘Æ¡n dạng góc chỉ sang bên phải","Left-pointing double angle quotation mark":"Dấu nháy kép dạng góc chỉ sang bên trái","Right-pointing double angle quotation mark":"Dấu nháy kép dạng góc chỉ sang bên phải","Left single quotation mark":"Dấu nháy Ä‘Æ¡n bên trái","Right single quotation mark":"Dấu nháy Ä‘Æ¡n bên phải","Left double quotation mark":"Dấu nháy kép bên trái","Right double quotation mark":"Dấu nháy kép bên phải","Single low-9 quotation mark":"Dấu nháy Ä‘Æ¡n kiểu low-9","Double low-9 quotation mark":"Dấu nháy kép kiểu low-9","Inverted exclamation mark":"Dấu chấm than ngược","Inverted question mark":"Dấu há»i ngược","Two dot leader":"Hà ng hai dấu chấm","Horizontal ellipsis":"Dấu chấm lá»ng ngang","Double dagger":"Dấu chữ tháºp kép","Per mille sign":"Ký hiệu phần nghìn","Per ten thousand sign":"Ký hiệu phần vạn","Double exclamation mark":"Dấu chấm than kép","Question exclamation mark":"Dấu chấm há»i và chấm than","Exclamation question mark":"Dấu chấm than và chấm há»i","Double question mark":"Dấu chấm há»i kép","Copyright sign":"Ký hiệu bản quyá»n","Registered sign":"Ký hiệu đăng ký thÆ°Æ¡ng hiệu","Trade mark sign":"Ký hiệu thÆ°Æ¡ng hiệu","Section sign":"Ký hiệu phân Ä‘oạn","Paragraph sign":"Ký hiệu Ä‘oạn văn","Reversed paragraph sign":"Ký hiệu Ä‘oạn văn đảo ngược","Character categories":"Danh mục ký tá»±",Styles:"Kiểu","Multiple styles":"Nhiá»u kiểu","Block styles":"Kiểu của khối","Text styles":"Kiểu văn bản","Insert table":"Tạo bảng","Header column":"Tiêu Ä‘á» cá»™t","Insert column left":"Thêm cá»™t và o bên trái","Insert column right":"Thêm cá»™t và o bên phải","Delete column":"Xoá cá»™t","Select column":"Chá»n cá»™t",Column:"Cá»™t","Header row":"Tiêu Ä‘á» hà ng","Insert row below":"Thêm hà ng ở dÆ°á»›i","Insert row above":"Thêm hà ng phÃa trên","Delete row":"Xoá hà ng","Select row":"Chá»n hà ng",Row:"Hà ng","Merge cell up":"Sát nháºp ô lên trên","Merge cell right":"Sát nháºp ô qua phải","Merge cell down":"Sát nháºp ô xuống dÆ°á»›i","Merge cell left":"Sát nháºp ô qua trái","Split cell vertically":"Tách ô theo chiá»u dá»c","Split cell horizontally":"Tách ô theo chiá»u ngang","Merge cells":"Sát nháºp ô","Table toolbar":"Thanh công cụ bảng","Table properties":"Thuá»™c tÃnh của bảng","Cell properties":"Thuá»™c tÃnh của ô",Border:"Viá»n",Style:"Kiểu",Width:"Rá»™ng",Height:"Cao",Color:"Mà u",Background:"Mà u ná»n",Padding:"Cách lá»",Dimensions:"KÃch thÆ°á»›c","Table cell text alignment":"Căn lá» văn bản trong ô",Alignment:"Căn lá»","Horizontal text alignment toolbar":"Thanh công cụ căn chỉnh văn bản theo chiá»u ngang","Vertical text alignment toolbar":"Thanh công cụ căn chỉnh văn bản theo chiá»u dá»c","Table alignment toolbar":"Thanh công cụ căn chỉnh bảng",None:"Không có kiểu nà o",Solid:"Dạng nét liá»n",Dotted:"Dạng chấm",Dashed:"Dạng Ä‘Æ°á»ng đứt nét",Double:"Dạng nét đôi",Groove:"Dạng Ä‘Æ°á»ng rãnh",Ridge:"Dạng gá»",Inset:"Dạng chìm",Outset:"Dạng nổi","Align cell text to the left":"Căn chỉnh văn bản trong ô vá» bên trái","Align cell text to the center":"Căn chỉnh văn bản trong ô và o chÃnh giữa","Align cell text to the right":"Căn chỉnh văn bản trong ô vá» bên phải","Justify cell text":"Căn Ä‘á»u văn bản trong ô","Align cell text to the top":"Căn chỉnh văn bản trong ô lên trên cùng","Align cell text to the middle":"Căn chỉnh văn bản trong ô và o giữa","Align cell text to the bottom":"Căn chỉnh văn bản trong ô xuống dÆ°á»›i cùng","Align table to the left":"Căn chỉnh bảng vá» phÃa bên trái","Center table":"Căn chỉnh bảng và o chÃnh giữa","Align table to the right":"Căn chỉnh bảng vá» phÃa bên phải","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Mà u nà y không hợp lệ. Hãy thá» \"#FF0000\" hoặc \"rgb(255,0,0)\" hoặc \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Giá trị nà y không hợp lệ. Hãy thá» \"10px\" hoặc \"2em\" hoặc chỉ \"2\".","Color picker":"Bá»™ chá»n mà u","Toggle caption off":"Ẩn chú thÃch","Toggle caption on":"Hiện chú thÃch","Enter table caption":"Nháºp chú thÃch cho bảng","Rich Text Editor":"Trình soạn thảo văn bản","Editor editing area: %0":"Vùng chỉnh sá»a của trình chỉnh sá»a: %0","Edit block":"Chỉnh sá»a Ä‘oạn","Click to edit block":"Nhấp để sá»a khối","Drag to move":"Kéo để di chuyển",Next:"Tiếp theo",Previous:"Quay lại","Editor toolbar":"Thanh công cụ biên táºp","Dropdown toolbar":"Thanh công cụ danh mục",Black:"Äen","Dim grey":"Xám má»",Grey:"Xám","Light grey":"Xám nhạt",White:"Trắng",Red:"Äá»",Orange:"Cam",Yellow:"Và ng","Light green":"Xanh lá nhạt",Green:"Xanh lá",Aquamarine:"Xanh ngá»c biển",Turquoise:"Xanh ngá»c bÃch","Light blue":"Xanh dÆ°Æ¡ng",Blue:"Xanh biển",Purple:"TÃm","Editor block content toolbar":"Thanh công cụ chỉnh sá»a khối ná»™i dung","Editor contextual toolbar":"Thanh công cụ chỉnh sá»a theo ngữ cảnh",HEX:"HEX",Accept:"Chấp nháºn","No results found":"Không tìm thấy kết quả","No searchable items":"Không có mục nà o tìm kiếm được","Editor dialog":"Há»™p thoại trình biên táºp",Close:"Äóng",Undo:"Hoà n tác",Redo:"Tiếp tục","Upload in progress":"Äang tải lên","Widget toolbar":"Thanh công cụ tiện Ãch","Insert paragraph before block":"Chèn Ä‘oạn trÆ°á»›c khối","Insert paragraph after block":"Chèn Ä‘oạn sau khối","Press Enter to type after or press Shift + Enter to type before the widget":"Nhấn Enter để nháºp và o sau hoặc nhấn Shift + Enter để nháºp và o trÆ°á»›c tiện Ãch","Words: %0":"Số chữ: %0","Characters: %0":"Số ký tá»±: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['vi'] = d['vi'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"Canh trái","Align right":"Canh phải","Align center":"Canh giữa",Justify:"Canh Ä‘á»u","Text alignment":"Căn chỉnh văn bản","Text alignment toolbar":"Thanh công cụ canh chữ",Bold:"Äáºm",Italic:"Nghiêng",Underline:"Gạch dÆ°á»›i",Code:"Code",Strikethrough:"Gạch ngang",Subscript:"Chữ nhá» dÆ°á»›i",Superscript:"Chữ nhá» trên","Block quote":"TrÃch dẫn","Insert code block":"Chèn khối mã","Plain text":"Văn bản thuần",Cancel:"Hủy",Clear:"Xóa","Remove color":"Xóa mà u","Restore default":"Khôi phục giá trị mặc định",Save:"LÆ°u","Show more items":"Xem thêm","%0 of %1":"%0 đến %1","Cannot upload file:":"Không thể tải file:","Rich Text Editor. Editing area: %0":"Trình chỉnh sá»a Văn bản dạng RTF. Vùng chỉnh sá»a: %0","Insert with file manager":"Chèn bằng trình quản lý táºp tin","Replace with file manager":"Thay thế bằng trình quản lý táºp tin","Insert image with file manager":"Chèn hình ảnh bằng trình quản lý táºp tin","Replace image with file manager":"Thay thế hình ảnh bằng trình quản lý táºp tin","Find and replace":"Tìm và thay thế","Find in text…":"Tìm trong văn bản...",Find:"Tìm","Previous result":"Kết quả trÆ°á»›c","Next result":"Kết quả tiếp theo",Replace:"Thay thế","Replace all":"Thay thế tất cả","Match case":"Khá»›p chữ hoa/chữ thÆ°á»ng","Whole words only":"Chỉ toà n bá»™ từ","Replace with…":"Thay thế bằng...","Text to find must not be empty.":"Không được để trống trÆ°á»ng văn bản cần tìm.","Tip: Find some text first in order to replace it.":"Mẹo: Tìm má»™t Ä‘oạn văn bản trÆ°á»›c để thay thế.","Advanced options":"Tùy chá»n nâng cao","Font Size":"Cỡ chữ",Tiny:"Bé",Small:"Nhá»",Big:"Lá»›n",Huge:"Khổng lồ","Font Family":"Há» chữ",Default:"Mặc định","Font Color":"Mà u chữ","Font Background Color":"Mà u ná»n chữ","Document colors":"Mà u văn bản",Paragraph:"Äoạn văn",Heading:"Tiêu Ä‘á»","Choose heading":"Chá»n tiêu Ä‘á»","Heading 1":"Tiêu Ä‘á» 1","Heading 2":"Tiêu Ä‘á» 2","Heading 3":"Tiêu Ä‘á» 3","Heading 4":"Tiêu Ä‘á» 4","Heading 5":"Tiêu Ä‘á» 5","Heading 6":"Tiêu Ä‘á» 6","Type your title":"Nháºp tá»±a Ä‘á»","Type or paste your content here.":"Nháºp hoặc dán ná»™i dung tại đây","Horizontal line":"ÄÆ°á»ng ngang","HTML object":"Äối tượng HTML","Increase indent":"Tăng lá»","Decrease indent":"Giảm lá»",Unlink:"Bá» liên kết",Link:"Chèn liên kết","Link URL":"ÄÆ°á»ng dẫn liên kết","Link image":"Liên kết của ảnh","Edit link":"Sá»a liên kết","Open link in new tab":"Mở liên kết","This link has no URL":"Liên kết không có Ä‘Æ°á»ng dẫn","Open in a new tab":"Mở trên tab má»›i",Downloadable:"Có thể tải vá»","Numbered List":"Danh sách đánh số","Bulleted List":"Danh sách đánh ký hiệu","To-do List":"Danh sách cần là m","Bulleted list styles toolbar":"Thanh công cụ kiểu danh sách có dấu đầu dòng","Numbered list styles toolbar":"Thanh công cụ kiểu danh sách được đánh số","Toggle the disc list style":"Báºt/tắt kiểu danh sách dạng Ä‘Ä©a","Toggle the circle list style":"Báºt/tắt kiểu danh sách dạng vòng tròn","Toggle the square list style":"Báºt/tắt kiểu danh sách dạng vuông","Toggle the decimal list style":"Báºt/tắt kiểu danh sách dạng tháºp phân","Toggle the decimal with leading zero list style":"Báºt/tắt kiểu danh sách dạng tháºp phân bắt đầu bằng số 0","Toggle the lower–roman list style":"Báºt/tắt kiểu danh sách chữ số La Mã viết thÆ°á»ng","Toggle the upper–roman list style":"Báºt/tắt kiểu danh sách chữ số La Mã viết hoa","Toggle the lower–latin list style":"Báºt/tắt kiểu danh sách chữ cái Latinh viết thÆ°á»ng","Toggle the upper–latin list style":"Báºt/tắt kiểu danh sách chữ cái Latinh viết hoa",Disc:"ÄÄ©a",Circle:"Tròn",Square:"Vuông",Decimal:"Tháºp phân","Decimal with leading zero":"Tháºp phân bắt đầu bằng số 0","Lower–roman":"Chữ số La Mã viết thÆ°á»ng","Upper-roman":"Chữ số La Mã viết hoa","Lower-latin":"Chữ cái Latinh viết thÆ°á»ng","Upper-latin":"Chữ cái Latinh viết hoa","List properties":"Thuá»™c tÃnh danh sách","Start at":"Bắt đầu tại","Start index must be greater than 0.":"Chỉ mục bắt đầu phải lá»›n hÆ¡n 0.","Reversed order":"Thứ tá»± đảo ngược","Remove Format":"Xóa định dang","Select all":"Chá»n tất cả","Show blocks":"Hiện các khối",Source:"Nguồn","Special characters":"Các ký tá»± đặc biệt",All:"Tất cả",Arrows:"MÅ©i tên",Currency:"Tiá»n tệ",Latin:"Latin",Mathematical:"Toán há»c",Text:"Văn bản","leftwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ sang trái","rightwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ sang phải","upwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ lên trên","downwards simple arrow":"mÅ©i tên Ä‘Æ¡n giản chỉ xuống dÆ°á»›i","leftwards double arrow":"mÅ©i tên kép hÆ°á»›ng sang trái","rightwards double arrow":"mÅ©i tên kép hÆ°á»›ng sang phải","upwards double arrow":"mÅ©i tên kép hÆ°á»›ng lên","downwards double arrow":"mÅ©i tên kép hÆ°á»›ng xuống","leftwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng sang trái","rightwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng sang phải","upwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng lên","downwards dashed arrow":"mÅ©i tên đứt nét hÆ°á»›ng xuống","leftwards arrow to bar":"mÅ©i tên hÆ°á»›ng sang trái vá» phÃa thanh","rightwards arrow to bar":"mÅ©i tên hÆ°á»›ng sang phải vá» phÃa thanh","upwards arrow to bar":"mÅ©i tên hÆ°á»›ng lên trên vá» phÃa thanh","downwards arrow to bar":"mÅ©i tên hÆ°á»›ng xuống dÆ°á»›i vá» phÃa thanh","up down arrow with base":"mÅ©i tên lên xuống có đế","back with leftwards arrow above":"back vá»›i mÅ©i tên hÆ°á»›ng sang trái ở trên","end with leftwards arrow above":"end vá»›i mÅ©i tên hÆ°á»›ng sang trái ở trên","on with exclamation mark with left right arrow above":"on vá»›i dấu chấm than và mÅ©i tên trái phải ở trên","soon with rightwards arrow above":"soon vá»›i mÅ©i tên hÆ°á»›ng sang phải ở trên","top with upwards arrow above":"top vá»›i mÅ©i tên hÆ°á»›ng lên ở trên","Dollar sign":"Ký hiệu Äô la","Euro sign":"Ký hiệu Euro","Yen sign":"Ký hiệu Yên Nháºt","Pound sign":"Ký hiệu Bảng Anh","Cent sign":"Ký hiệu Cent","Euro-currency sign":"Ký hiệu tiá»n tệ Euro","Colon sign":"Ký hiệu Colon","Cruzeiro sign":"Ký hiệu Cruzeiro","French franc sign":"Ký hiệu franc Pháp","Lira sign":"Ký hiệu Lira","Currency sign":"Ký hiệu tiá»n tệ","Bitcoin sign":"Ký hiệu Bitcoin","Mill sign":"Ký hiệu Mill","Naira sign":"Ký hiệu Naira","Peseta sign":"Ký hiệu Peseta","Rupee sign":"Ký hiệu Rupee","Won sign":"Ký hiệu Won","New sheqel sign":"Ký hiệu Shekel má»›i","Dong sign":"Ký hiệu Äồng","Kip sign":"Ký hiệu Kip","Tugrik sign":"Ký hiệu Tögrög","Drachma sign":"Ký hiệu Drachma","German penny sign":"Ký hiệu penny Äức","Peso sign":"Ký hiệu Peso","Guarani sign":"Ký hiệu Guarani","Austral sign":"Ký hiệu Austral","Hryvnia sign":"Ký hiệu Hryvnia","Cedi sign":"Ký hiệu Cedi","Livre tournois sign":"Ký hiệu Livre tournois","Spesmilo sign":"Ký hiệu Spesmilo","Tenge sign":"Ký hiệu Tenge","Indian rupee sign":"Ký hiệu rupee Ấn Äá»™","Turkish lira sign":"Ký hiệu lira Thổ NhÄ© Kỳ","Nordic mark sign":"Ký hiệu Mác Bắc Âu","Manat sign":"Ký hiệu Manat","Ruble sign":"Ký hiệu Rúp","Latin capital letter a with macron":"Chữ cái Latinh a viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter a with macron":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter a with breve":"Chữ cái Latinh a viết hoa vá»›i dấu trăng","Latin small letter a with breve":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter a with ogonek":"Chữ cái Latinh a viết hoa vá»›i dấu ogonek","Latin small letter a with ogonek":"Chữ cái Latinh a viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter c with acute":"Chữ cái Latinh c viết hoa vá»›i dấu sắc","Latin small letter c with acute":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter c with circumflex":"Chữ cái Latinh c viết hoa vá»›i dấu mÅ©","Latin small letter c with circumflex":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter c with dot above":"Chữ cái Latinh c viết hoa vá»›i dấu chấm ở trên","Latin small letter c with dot above":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter c with caron":"Chữ cái Latinh c viết hoa vá»›i dấu mÅ© ngược","Latin small letter c with caron":"Chữ cái Latinh c viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter d with caron":"Chữ cái Latinh d viết hoa vá»›i dấu mÅ© ngược","Latin small letter d with caron":"Chữ cái Latinh d viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter d with stroke":"Chữ cái Latinh d viết hoa vá»›i dấu gạch ngang","Latin small letter d with stroke":"Chữ cái Latinh d viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter e with macron":"Chữ cái Latinh e viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter e with macron":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter e with breve":"Chữ cái Latinh e viết hoa vá»›i dấu trăng","Latin small letter e with breve":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter e with dot above":"Chữ cái Latinh e viết hoa vá»›i dấu chấm ở trên","Latin small letter e with dot above":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter e with ogonek":"Chữ cái Latinh e viết hoa vá»›i dấu ogonek","Latin small letter e with ogonek":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter e with caron":"Chữ cái Latinh e viết hoa vá»›i dấu mÅ© ngược","Latin small letter e with caron":"Chữ cái Latinh e viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter g with circumflex":"Chữ cái Latinh g viết hoa vá»›i dấu mÅ©","Latin small letter g with circumflex":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter g with breve":"Chữ cái Latinh g viết hoa vá»›i dấu trăng","Latin small letter g with breve":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter g with dot above":"Chữ cái Latinh g viết hoa vá»›i dấu chấm ở trên","Latin small letter g with dot above":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter g with cedilla":"Chữ cái Latinh g viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter g with cedilla":"Chữ cái Latinh g viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter h with circumflex":"Chữ cái Latinh h viết hoa vá»›i dấu mÅ©","Latin small letter h with circumflex":"Chữ cái Latinh h viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter h with stroke":"Chữ cái Latinh h viết hoa vá»›i dấu gạch ngang","Latin small letter h with stroke":"Chữ cái Latinh h viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter i with tilde":"Chữ cái Latinh i viết hoa vá»›i dấu ngã","Latin small letter i with tilde":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu ngã","Latin capital letter i with macron":"Chữ cái Latinh i viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter i with macron":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter i with breve":"Chữ cái Latinh i viết hoa vá»›i dấu trăng","Latin small letter i with breve":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter i with ogonek":"Chữ cái Latinh i viết hoa vá»›i dấu ogonek","Latin small letter i with ogonek":"Chữ cái Latinh i viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter i with dot above":"Chữ cái Latinh i viết hoa vá»›i dấu chấm ở trên","Latin small letter dotless i":"Chữ cái Latinh i viết thÆ°á»ng không dấu chấm","Latin capital ligature ij":"Chữ ghép Latinh ij viết hoa","Latin small ligature ij":"Chữ ghép Latinh ij viết thÆ°á»ng","Latin capital letter j with circumflex":"Chữ cái Latinh j viết hoa vá»›i dấu mÅ©","Latin small letter j with circumflex":"Chữ cái Latinh j viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter k with cedilla":"Chữ cái Latinh k viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter k with cedilla":"Chữ cái Latinh k viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter kra":"Chữ cái Latinh k viết thÆ°á»ng","Latin capital letter l with acute":"Chữ cái Latinh l viết hoa vá»›i dấu sắc","Latin small letter l with acute":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter l with cedilla":"Chữ cái Latinh l viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter l with cedilla":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter l with caron":"Chữ cái Latinh l viết hoa vá»›i dấu mÅ© ngược","Latin small letter l with caron":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter l with middle dot":"Chữ cái Latinh l viết hoa vá»›i dấu chấm ở giữa","Latin small letter l with middle dot":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu chấm ở giữa","Latin capital letter l with stroke":"Chữ cái Latinh l viết hoa vá»›i dấu gạch ngang","Latin small letter l with stroke":"Chữ cái Latinh l viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter n with acute":"Chữ cái Latinh n viết hoa vá»›i dấu sắc","Latin small letter n with acute":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter n with cedilla":"Chữ cái Latinh n viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter n with cedilla":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter n with caron":"Chữ cái Latinh n viết hoa vá»›i dấu mÅ© ngược","Latin small letter n with caron":"Chữ cái Latinh n viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin small letter n preceded by apostrophe":"Chữ cái Latinh n viết thÆ°á»ng có dấu viết lược đứng trÆ°á»›c","Latin capital letter eng":"Chữ cái Latinh ÅŠ viết hoa","Latin small letter eng":"Chữ cái Latinh Å‹ viết thÆ°á»ng","Latin capital letter o with macron":"Chữ cái Latinh o viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter o with macron":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter o with breve":"Chữ cái Latinh o viết hoa vá»›i dấu trăng","Latin small letter o with breve":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter o with double acute":"Chữ cái Latinh o viết hoa vá»›i dấu sắc kép","Latin small letter o with double acute":"Chữ cái Latinh o viết thÆ°á»ng vá»›i dấu sắc kép","Latin capital ligature oe":"Chữ ghép Latinh oe viết hoa","Latin small ligature oe":"Chữ ghép Latinh oe viết thÆ°á»ng","Latin capital letter r with acute":"Chữ cái Latinh r viết hoa vá»›i dấu sắc","Latin small letter r with acute":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter r with cedilla":"Chữ cái Latinh r viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter r with cedilla":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter r with caron":"Chữ cái Latinh r viết hoa vá»›i dấu mÅ© ngược","Latin small letter r with caron":"Chữ cái Latinh r viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter s with acute":"Chữ cái Latinh s viết hoa vá»›i dấu sắc","Latin small letter s with acute":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter s with circumflex":"Chữ cái Latinh s viết hoa vá»›i dấu mÅ©","Latin small letter s with circumflex":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter s with cedilla":"Chữ cái Latinh s viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter s with cedilla":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter s with caron":"Chữ cái Latinh s viết hoa vá»›i dấu mÅ© ngược","Latin small letter s with caron":"Chữ cái Latinh s viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter t with cedilla":"Chữ cái Latinh t viết hoa vá»›i dấu móc dÆ°á»›i","Latin small letter t with cedilla":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu móc dÆ°á»›i","Latin capital letter t with caron":"Chữ cái Latinh t viết hoa vá»›i dấu mÅ© ngược","Latin small letter t with caron":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin capital letter t with stroke":"Chữ cái Latinh t viết hoa vá»›i dấu gạch ngang","Latin small letter t with stroke":"Chữ cái Latinh t viết thÆ°á»ng vá»›i dấu gạch ngang","Latin capital letter u with tilde":"Chữ cái Latinh u viết hoa vá»›i dấu ngã","Latin small letter u with tilde":"Chữ cái Latinh u viết hoa vá»›i dấu ngã","Latin capital letter u with macron":"Chữ cái Latinh u viết hoa vá»›i dấu trÆ°á»ng âm","Latin small letter u with macron":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu trÆ°á»ng âm","Latin capital letter u with breve":"Chữ cái Latinh u viết hoa vá»›i dấu trăng","Latin small letter u with breve":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu trăng","Latin capital letter u with ring above":"Chữ cái Latinh u viết hoa vá»›i vòng tròn ở trên","Latin small letter u with ring above":"Chữ cái Latinh u viết thÆ°á»ng vá»›i vòng tròn ở trên","Latin capital letter u with double acute":"Chữ cái Latinh u viết hoa vá»›i dấu sắc kép","Latin small letter u with double acute":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu sắc kép","Latin capital letter u with ogonek":"Chữ cái Latinh u viết hoa vá»›i dấu ogonek","Latin small letter u with ogonek":"Chữ cái Latinh u viết thÆ°á»ng vá»›i dấu ogonek","Latin capital letter w with circumflex":"Chữ cái Latinh w viết hoa vá»›i dấu mÅ©","Latin small letter w with circumflex":"Chữ cái Latinh w viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter y with circumflex":"Chữ cái Latinh y viết hoa vá»›i dấu mÅ©","Latin small letter y with circumflex":"Chữ cái Latinh y viết thÆ°á»ng vá»›i dấu mÅ©","Latin capital letter y with diaeresis":"Chữ cái Latinh y viết hoa vá»›i dấu tách đôi","Latin capital letter z with acute":"Chữ cái Latinh z viết hoa vá»›i dấu sắc","Latin small letter z with acute":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu sắc","Latin capital letter z with dot above":"Chữ cái Latinh z viết hoa vá»›i dấu chấm ở trên","Latin small letter z with dot above":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu chấm ở trên","Latin capital letter z with caron":"Chữ cái Latinh z viết hoa vá»›i dấu mÅ© ngược","Latin small letter z with caron":"Chữ cái Latinh z viết thÆ°á»ng vá»›i dấu mÅ© ngược","Latin small letter long s":"Chữ cái Latinh s dà i viết thÆ°á»ng","Less-than sign":"Ký hiệu nhá» hÆ¡n","Greater-than sign":"Ký hiệu lá»›n hÆ¡n","Less-than or equal to":"Nhá» hÆ¡n hoặc bằng","Greater-than or equal to":"Lá»›n hÆ¡n hoặc bằng","En dash":"Gạch ngang ngắn","Em dash":"Gạch ngang dà i",Macron:"Dấu trÆ°á»ng âm",Overline:"Gạch trên","Degree sign":"Ký hiệu Ä‘á»™","Minus sign":"Ký hiệu trừ","Plus-minus sign":"Ký hiệu cá»™ng-trừ","Division sign":"Ký hiệu chia","Fraction slash":"Dấu gạch chéo phân số","Multiplication sign":"Ký hiệu nhân","Latin small letter f with hook":"Chữ cái Latinh f viết thÆ°á»ng vá»›i móc",Integral:"TÃch phân","N-ary summation":"Phép tổng n số nguyên",Infinity:"Vô cá»±c","Square root":"Căn báºc hai","Tilde operator":"Toán tá» dấu ngã","Approximately equal to":"Xấp xỉ bằng","Almost equal to":"Gần bằng","Not equal to":"Không bằng","Identical to":"TÆ°Æ¡ng Ä‘Æ°Æ¡ng","Element of":"Thuá»™c","Not an element of":"Không thuá»™c","Contains as member":"Chứa","N-ary product":"TÃch n số nguyên","Logical and":"Và logic","Logical or":"Hoặc logic","Not sign":"Không",Intersection:"Giao",Union:"Hợp","Partial differential":"Vi phân riêng phần","For all":"Vá»›i má»i","There exists":"Tồn tại","Empty set":"Táºp hợp rá»—ng",Nabla:"Nabla","Asterisk operator":"Toán tá» dấu hoa thị","Proportional to":"TÆ°Æ¡ng ứng vá»›i",Angle:"Góc","Vulgar fraction one quarter":"Phân số thÆ°á»ng má»™t phần tÆ°","Vulgar fraction one half":"Phân số thÆ°á»ng má»™t phần hai","Vulgar fraction three quarters":"Phân số thÆ°á»ng ba phần tÆ°","Single left-pointing angle quotation mark":"Dấu nháy Ä‘Æ¡n dạng góc chỉ sang bên trái","Single right-pointing angle quotation mark":"Dấu nháy Ä‘Æ¡n dạng góc chỉ sang bên phải","Left-pointing double angle quotation mark":"Dấu nháy kép dạng góc chỉ sang bên trái","Right-pointing double angle quotation mark":"Dấu nháy kép dạng góc chỉ sang bên phải","Left single quotation mark":"Dấu nháy Ä‘Æ¡n bên trái","Right single quotation mark":"Dấu nháy Ä‘Æ¡n bên phải","Left double quotation mark":"Dấu nháy kép bên trái","Right double quotation mark":"Dấu nháy kép bên phải","Single low-9 quotation mark":"Dấu nháy Ä‘Æ¡n kiểu low-9","Double low-9 quotation mark":"Dấu nháy kép kiểu low-9","Inverted exclamation mark":"Dấu chấm than ngược","Inverted question mark":"Dấu há»i ngược","Two dot leader":"Hà ng hai dấu chấm","Horizontal ellipsis":"Dấu chấm lá»ng ngang","Double dagger":"Dấu chữ tháºp kép","Per mille sign":"Ký hiệu phần nghìn","Per ten thousand sign":"Ký hiệu phần vạn","Double exclamation mark":"Dấu chấm than kép","Question exclamation mark":"Dấu chấm há»i và chấm than","Exclamation question mark":"Dấu chấm than và chấm há»i","Double question mark":"Dấu chấm há»i kép","Copyright sign":"Ký hiệu bản quyá»n","Registered sign":"Ký hiệu đăng ký thÆ°Æ¡ng hiệu","Trade mark sign":"Ký hiệu thÆ°Æ¡ng hiệu","Section sign":"Ký hiệu phân Ä‘oạn","Paragraph sign":"Ký hiệu Ä‘oạn văn","Reversed paragraph sign":"Ký hiệu Ä‘oạn văn đảo ngược","Character categories":"Danh mục ký tá»±",Styles:"Kiểu","Multiple styles":"Nhiá»u kiểu","Block styles":"Kiểu của khối","Text styles":"Kiểu văn bản","Insert table":"Tạo bảng","Header column":"Tiêu Ä‘á» cá»™t","Insert column left":"Thêm cá»™t và o bên trái","Insert column right":"Thêm cá»™t và o bên phải","Delete column":"Xoá cá»™t","Select column":"Chá»n cá»™t",Column:"Cá»™t","Header row":"Tiêu Ä‘á» hà ng","Insert row below":"Thêm hà ng ở dÆ°á»›i","Insert row above":"Thêm hà ng phÃa trên","Delete row":"Xoá hà ng","Select row":"Chá»n hà ng",Row:"Hà ng","Merge cell up":"Sát nháºp ô lên trên","Merge cell right":"Sát nháºp ô qua phải","Merge cell down":"Sát nháºp ô xuống dÆ°á»›i","Merge cell left":"Sát nháºp ô qua trái","Split cell vertically":"Tách ô theo chiá»u dá»c","Split cell horizontally":"Tách ô theo chiá»u ngang","Merge cells":"Sát nháºp ô","Table toolbar":"Thanh công cụ bảng","Table properties":"Thuá»™c tÃnh của bảng","Cell properties":"Thuá»™c tÃnh của ô",Border:"Viá»n",Style:"Kiểu",Width:"Rá»™ng",Height:"Cao",Color:"Mà u",Background:"Mà u ná»n",Padding:"Cách lá»",Dimensions:"KÃch thÆ°á»›c","Table cell text alignment":"Căn lá» văn bản trong ô",Alignment:"Căn lá»","Horizontal text alignment toolbar":"Thanh công cụ căn chỉnh văn bản theo chiá»u ngang","Vertical text alignment toolbar":"Thanh công cụ căn chỉnh văn bản theo chiá»u dá»c","Table alignment toolbar":"Thanh công cụ căn chỉnh bảng",None:"Không có kiểu nà o",Solid:"Dạng nét liá»n",Dotted:"Dạng chấm",Dashed:"Dạng Ä‘Æ°á»ng đứt nét",Double:"Dạng nét đôi",Groove:"Dạng Ä‘Æ°á»ng rãnh",Ridge:"Dạng gá»",Inset:"Dạng chìm",Outset:"Dạng nổi","Align cell text to the left":"Căn chỉnh văn bản trong ô vá» bên trái","Align cell text to the center":"Căn chỉnh văn bản trong ô và o chÃnh giữa","Align cell text to the right":"Căn chỉnh văn bản trong ô vá» bên phải","Justify cell text":"Căn Ä‘á»u văn bản trong ô","Align cell text to the top":"Căn chỉnh văn bản trong ô lên trên cùng","Align cell text to the middle":"Căn chỉnh văn bản trong ô và o giữa","Align cell text to the bottom":"Căn chỉnh văn bản trong ô xuống dÆ°á»›i cùng","Align table to the left":"Căn chỉnh bảng vá» phÃa bên trái","Center table":"Căn chỉnh bảng và o chÃnh giữa","Align table to the right":"Căn chỉnh bảng vá» phÃa bên phải","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"Mà u nà y không hợp lệ. Hãy thá» \"#FF0000\" hoặc \"rgb(255,0,0)\" hoặc \"red\".","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"Giá trị nà y không hợp lệ. Hãy thá» \"10px\" hoặc \"2em\" hoặc chỉ \"2\".","Color picker":"Bá»™ chá»n mà u","Toggle caption off":"Ẩn chú thÃch","Toggle caption on":"Hiện chú thÃch","Enter table caption":"Nháºp chú thÃch cho bảng","Rich Text Editor":"Trình soạn thảo văn bản","Editor editing area: %0":"Vùng chỉnh sá»a của trình chỉnh sá»a: %0","Edit block":"Chỉnh sá»a Ä‘oạn","Click to edit block":"Nhấp để sá»a khối","Drag to move":"Kéo để di chuyển",Next:"Tiếp theo",Previous:"Quay lại","Editor toolbar":"Thanh công cụ biên táºp","Dropdown toolbar":"Thanh công cụ danh mục",Black:"Äen","Dim grey":"Xám má»",Grey:"Xám","Light grey":"Xám nhạt",White:"Trắng",Red:"Äá»",Orange:"Cam",Yellow:"Và ng","Light green":"Xanh lá nhạt",Green:"Xanh lá",Aquamarine:"Xanh ngá»c biển",Turquoise:"Xanh ngá»c bÃch","Light blue":"Xanh dÆ°Æ¡ng",Blue:"Xanh biển",Purple:"TÃm","Editor block content toolbar":"Thanh công cụ chỉnh sá»a khối ná»™i dung","Editor contextual toolbar":"Thanh công cụ chỉnh sá»a theo ngữ cảnh",HEX:"HEX",Accept:"Chấp nháºn","No results found":"Không tìm thấy kết quả","No searchable items":"Không có mục nà o tìm kiếm được","Editor dialog":"Há»™p thoại trình biên táºp",Close:"Äóng",Undo:"Hoà n tác",Redo:"Tiếp tục","Upload in progress":"Äang tải lên","Widget toolbar":"Thanh công cụ tiện Ãch","Insert paragraph before block":"Chèn Ä‘oạn trÆ°á»›c khối","Insert paragraph after block":"Chèn Ä‘oạn sau khối","Press Enter to type after or press Shift + Enter to type before the widget":"Nhấn Enter để nháºp và o sau hoặc nhấn Shift + Enter để nháºp và o trÆ°á»›c tiện Ãch","Words: %0":"Số chữ: %0","Characters: %0":"Số ký tá»±: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh-cn.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh-cn.js index 22f7e668d7d6a2c899b623b1ca3e6ea71f1caeb2..b2bd8080743137dbc0b1bfb30a1bf49bb91c6a3d 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh-cn.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh-cn.js @@ -1 +1 @@ -(function(d){ const l = d['zh-cn'] = d['zh-cn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"左对é½","Align right":"å³å¯¹é½","Align center":"å±…ä¸å¯¹é½",Justify:"两端对é½","Text alignment":"对é½","Text alignment toolbar":"对é½å·¥å…·æ ",Bold:"åŠ ç²—",Italic:"倾斜",Underline:"下划线",Code:"代ç ",Strikethrough:"åˆ é™¤çº¿",Subscript:"ä¸‹æ ‡",Superscript:"ä¸Šæ ‡","Block quote":"å—引用","Insert code block":"æ’入代ç å—","Plain text":"纯文本",Cancel:"å–消",Clear:"清除","Remove color":"移除颜色","Restore default":"æ¢å¤é»˜è®¤",Save:"ä¿å˜","Show more items":"显示更多","%0 of %1":"第 %0 æ¥ï¼Œå…± %1 æ¥","Cannot upload file:":"æ— æ³•ä¸Šä¼ çš„æ–‡ä»¶ï¼š","Rich Text Editor. Editing area: %0":"富文本编辑器。编辑区域:%0","Insert with file manager":"使用文件管ç†å™¨æ’å…¥","Replace with file manager":"使用文件管ç†å™¨æ›¿æ¢","Insert image with file manager":"使用文件管ç†å™¨æ’入图片","Replace image with file manager":"使用文件管ç†å™¨æ›¿æ¢å›¾ç‰‡","Find and replace":"查找和替æ¢","Find in text…":"查找的文本",Find:"查找","Previous result":"上一个匹é…项","Next result":"下一个匹é…项",Replace:"替æ¢","Replace all":"全部替æ¢","Match case":"区分大å°å†™","Whole words only":"å•è¯","Replace with…":"替æ¢çš„文本","Text to find must not be empty.":"查找的文本ä¸å¯ä¸ºç©º","Tip: Find some text first in order to replace it.":"æ示:先查找文本å†æ›¿æ¢","Advanced options":"高级选项",Paragraph:"段è½",Heading:"æ ‡é¢˜","Choose heading":"æ ‡é¢˜ç±»åž‹","Heading 1":"æ ‡é¢˜ 1","Heading 2":"æ ‡é¢˜ 2","Heading 3":"æ ‡é¢˜ 3","Heading 4":"æ ‡é¢˜ 4","Heading 5":"æ ‡é¢˜ 5","Heading 6":"æ ‡é¢˜ 6","Type your title":"è¾“å…¥æ ‡é¢˜","Type or paste your content here.":"在这里输入或粘贴内容","Horizontal line":"水平线","HTML object":"HTML对象","Increase indent":"å¢žåŠ ç¼©è¿›","Decrease indent":"å‡å°‘缩进",Unlink:"å–消超链接",Link:"超链接","Link URL":"链接网å€","Link image":"链接图片","Edit link":"修改链接","Open link in new tab":"åœ¨æ–°æ ‡ç¾é¡µä¸æ‰“开链接","This link has no URL":"æ¤é“¾æŽ¥æ²¡æœ‰è®¾ç½®ç½‘å€","Open in a new tab":"åœ¨æ–°æ ‡ç¾é¡µä¸æ‰“å¼€",Downloadable:"å¯ä¸‹è½½","Numbered List":"项目编å·åˆ—表","Bulleted List":"项目符å·åˆ—表","To-do List":"待办列表","Bulleted list styles toolbar":"项目符å·åˆ—è¡¨æ ·å¼å·¥å…·æ¡","Numbered list styles toolbar":"项目编å·åˆ—è¡¨æ ·å¼å·¥å…·æ¡","Toggle the disc list style":"切æ¢å®žå¿ƒåŽŸç‚¹åˆ—è¡¨æ ·å¼","Toggle the circle list style":"切æ¢ç©ºå¿ƒåŽŸç‚¹åˆ—è¡¨æ ·å¼","Toggle the square list style":"切æ¢å®žå¿ƒæ–¹å—åˆ—è¡¨æ ·å¼","Toggle the decimal list style":"切æ¢é˜¿æ‹‰ä¼¯æ•°å—åˆ—è¡¨æ ·å¼","Toggle the decimal with leading zero list style":"切æ¢å‰å¯¼é›¶é˜¿æ‹‰ä¼¯æ•°å—åˆ—è¡¨æ ·å¼","Toggle the lower–roman list style":"切æ¢å°å†™ç½—马数å—åˆ—è¡¨æ ·å¼","Toggle the upper–roman list style":"切æ¢å¤§å†™ç½—马数å—åˆ—è¡¨æ ·å¼","Toggle the lower–latin list style":"切æ¢å°å†™æ‹‰ä¸å—æ¯åˆ—è¡¨æ ·å¼","Toggle the upper–latin list style":"切æ¢å¤§å†™æ‹‰ä¸å—æ¯åˆ—è¡¨æ ·å¼",Disc:"实心圆点",Circle:"空心圆点",Square:"实心方å—",Decimal:"阿拉伯数å—","Decimal with leading zero":"å‰å¯¼é›¶é˜¿æ‹‰ä¼¯æ•°å—","Lower–roman":"å°å†™ç½—马数å—","Upper-roman":"大写罗马数å—","Lower-latin":"å°å†™æ‹‰ä¸å—æ¯","Upper-latin":"大写拉ä¸å—æ¯","List properties":"列表属性","Start at":"起始编å·","Start index must be greater than 0.":"起始编å·å¿…须大于0。","Reversed order":"顺åºå转","Remove Format":"ç§»é™¤æ ¼å¼","Select all":"全选","Show blocks":"显示区å—",Source:"æºä»£ç ","Special characters":"特殊å—符",All:"全部",Arrows:"ç®å¤´",Currency:"è´§å¸",Latin:"拉ä¸æ–‡",Mathematical:"æ•°å¦",Text:"文本","leftwards simple arrow":"å‘左简å•ç®å¤´","rightwards simple arrow":"å‘å³ç®€å•ç®å¤´","upwards simple arrow":"å‘上简å•ç®å¤´","downwards simple arrow":"å‘下简å•ç®å¤´","leftwards double arrow":"å‘å·¦åŒç®å¤´","rightwards double arrow":"å‘å³åŒç®å¤´","upwards double arrow":"å‘上åŒç®å¤´","downwards double arrow":"å‘下åŒç®å¤´","leftwards dashed arrow":"å‘左虚线ç®å¤´","rightwards dashed arrow":"å‘å³è™šçº¿ç®å¤´","upwards dashed arrow":"å‘上虚线ç®å¤´","downwards dashed arrow":"å‘下虚线ç®å¤´","leftwards arrow to bar":"头部带æ çš„å‘å·¦ç®å¤´","rightwards arrow to bar":"头部带æ çš„å‘å³ç®å¤´","upwards arrow to bar":"头部带æ çš„å‘上ç®å¤´","downwards arrow to bar":"头部带æ çš„å‘下ç®å¤´","up down arrow with base":"处于基线的上下ç®å¤´","back with leftwards arrow above":"带有backæ ‡è¯†çš„å‘å·¦ç®å¤´","end with leftwards arrow above":"带有endæ ‡è¯†çš„å‘å·¦ç®å¤´","on with exclamation mark with left right arrow above":"带有NOï¼æ ‡è¯†çš„å·¦å³åŒå‘ç®å¤´","soon with rightwards arrow above":"带有soonæ ‡è¯†çš„å‘å³ç®å¤´","top with upwards arrow above":"带有topæ ‡è¯†çš„å‘上ç®å¤´","Dollar sign":"美元符å·","Euro sign":"欧元符å·","Yen sign":"日元符å·","Pound sign":"英镑符å·","Cent sign":"分å¸ç¬¦å·","Euro-currency sign":"欧元货å¸ç¬¦å·","Colon sign":"科朗符å·","Cruzeiro sign":"å…‹é²å¡žç½—符å·","French franc sign":"法国法郎符å·","Lira sign":"里拉符å·","Currency sign":"è´§å¸ç¬¦å·","Bitcoin sign":"比特å¸ç¬¦å·","Mill sign":"密尔符å·","Naira sign":"奈拉符å·","Peseta sign":"比塞塔符å·","Rupee sign":"å¢æ¯”符å·","Won sign":"韩元符å·","New sheqel sign":"新谢克尔符å·","Dong sign":"越å—盾符å·","Kip sign":" 基普符å·","Tugrik sign":"å›¾æ ¼é‡Œå…‹ç¬¦å·","Drachma sign":"德拉克马符å·","German penny sign":"德国便士符å·","Peso sign":"比索符å·","Guarani sign":"瓜拉尼货å¸ç¬¦å·","Austral sign":"澳大利亚货å¸ç¬¦å·","Hryvnia sign":"戈里夫纳符å·","Cedi sign":"塞地符å·","Livre tournois sign":"里弗尔符å·","Spesmilo sign":"斯佩斯米洛符å·","Tenge sign":"åšæˆˆç¬¦å·","Indian rupee sign":"å°åº¦å¢æ¯”符å·","Turkish lira sign":"土耳其里拉符å·","Nordic mark sign":"北欧马克å¾ç¬¦å·","Manat sign":"马纳特符å·","Ruble sign":"ä¿„ç½—æ–¯å¢å¸ƒ","Latin capital letter a with macron":"带长音符的大写拉ä¸å—æ¯a","Latin small letter a with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter a with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯a","Latin small letter a with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter a with ogonek":"带å尾形符的大写拉ä¸å—æ¯a","Latin small letter a with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter c with acute":"带é”音符的大写拉ä¸å—æ¯c","Latin small letter c with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with circumflex":"带扬抑符的大写拉ä¸å—æ¯c","Latin small letter c with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with dot above":"带上点的大写拉ä¸å—æ¯c","Latin small letter c with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with caron":"带抑扬符的大写拉ä¸å—æ¯c","Latin small letter c with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter d with caron":"带抑扬符的大写拉ä¸å—æ¯d","Latin small letter d with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯d","Latin capital letter d with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯d","Latin small letter d with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯d","Latin capital letter e with macron":"带长音符的大写拉ä¸å—æ¯e","Latin small letter e with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯e","Latin small letter e with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with dot above":"带上点的大写拉ä¸å—æ¯e","Latin small letter e with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with ogonek":"带å尾形符的大写拉ä¸å—æ¯e","Latin small letter e with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with caron":"带抑扬符的大写拉ä¸å—æ¯e","Latin small letter e with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter g with circumflex":"带扬抑符的大写拉ä¸å—æ¯g","Latin small letter g with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯g","Latin small letter g with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with dot above":"带上点的大写拉ä¸å—æ¯g","Latin small letter g with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with cedilla":"带软音符的大写拉ä¸å—æ¯g","Latin small letter g with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter h with circumflex":"带扬抑符的大写拉ä¸å—æ¯h","Latin small letter h with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯h","Latin capital letter h with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯h","Latin small letter h with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯h","Latin capital letter i with tilde":"带è…化符的大写拉ä¸å—æ¯i","Latin small letter i with tilde":"带è…化符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with macron":"带长音符的大写拉ä¸å—æ¯i","Latin small letter i with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯i","Latin small letter i with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with ogonek":"带å尾形符的大写拉ä¸å—æ¯i","Latin small letter i with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with dot above":"带上点的大写拉ä¸å—æ¯i","Latin small letter dotless i":"没有点的å°å†™æ‹‰ä¸å—æ¯i","Latin capital ligature ij":"大写拉ä¸è¿žå—符ij","Latin small ligature ij":"å°å†™æ‹‰ä¸è¿žå—符ij","Latin capital letter j with circumflex":"带扬抑符的大写拉ä¸å—æ¯j","Latin small letter j with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯j","Latin capital letter k with cedilla":"带软音符的大写拉ä¸å—æ¯k","Latin small letter k with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯k","Latin small letter kra":"å°å†™æ‹‰ä¸å—æ¯kra","Latin capital letter l with acute":"带é”音符的大写拉ä¸å—æ¯l","Latin small letter l with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with cedilla":"带软音符的大写拉ä¸å—æ¯l","Latin small letter l with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with caron":"带抑扬符的大写拉ä¸å—æ¯l","Latin small letter l with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with middle dot":"带ä¸ç‚¹çš„大写拉ä¸å—æ¯l","Latin small letter l with middle dot":"带ä¸ç‚¹çš„å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯l","Latin small letter l with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter n with acute":"带é”音符的大写拉ä¸å—æ¯n","Latin small letter n with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter n with cedilla":"带软音符的大写拉ä¸å—æ¯n","Latin small letter n with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter n with caron":"带抑扬符的大写拉ä¸å—æ¯n","Latin small letter n with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯n","Latin small letter n preceded by apostrophe":"å† ä»¥æ’‡å·çš„å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter eng":"大写拉ä¸å—æ¯eng","Latin small letter eng":"å°å†™æ‹‰ä¸å—æ¯eng","Latin capital letter o with macron":"带长音符的大写拉ä¸å—æ¯o","Latin small letter o with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯o","Latin capital letter o with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯o","Latin small letter o with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯o","Latin capital letter o with double acute":"带åŒé”音符的大写拉ä¸å—æ¯o","Latin small letter o with double acute":"带åŒé”音符的å°å†™æ‹‰ä¸å—æ¯o","Latin capital ligature oe":"大写拉ä¸è¿žå—符oe","Latin small ligature oe":"å°å†™æ‹‰ä¸è¿žå—符oe","Latin capital letter r with acute":"带é”音符的大写拉ä¸å—æ¯r","Latin small letter r with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter r with cedilla":"带软音符的大写拉ä¸å—æ¯r","Latin small letter r with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter r with caron":"带抑扬符的大写拉ä¸å—æ¯r","Latin small letter r with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter s with acute":"带é”音符的大写拉ä¸å—æ¯s","Latin small letter s with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with circumflex":"带扬抑符的大写拉ä¸å—æ¯s","Latin small letter s with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with cedilla":"带软音符的大写拉ä¸å—æ¯s","Latin small letter s with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with caron":"带抑扬符的大写拉ä¸å—æ¯s","Latin small letter s with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter t with cedilla":"带软音符的大写拉ä¸å—æ¯t","Latin small letter t with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter t with caron":"带抑扬符的大写拉ä¸å—æ¯t","Latin small letter t with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter t with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯t","Latin small letter t with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter u with tilde":"带è…化符的大写拉ä¸å—æ¯u","Latin small letter u with tilde":"带è…化符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with macron":"带长音符的大写拉ä¸å—æ¯u","Latin small letter u with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯u","Latin small letter u with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with ring above":"带上圆圈的大写拉ä¸å—æ¯u","Latin small letter u with ring above":"带上圆圈的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with double acute":"带åŒé”音符的大写拉ä¸å—æ¯u","Latin small letter u with double acute":"带åŒé”音符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with ogonek":"带å尾形符的大写拉ä¸å—æ¯u","Latin small letter u with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter w with circumflex":"带扬抑符的大写拉ä¸å—æ¯w","Latin small letter w with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯w","Latin capital letter y with circumflex":"带扬抑符的大写拉ä¸å—æ¯y","Latin small letter y with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯y","Latin capital letter y with diaeresis":"带分音符的大写拉ä¸å—æ¯y","Latin capital letter z with acute":"带é”音符的大写拉ä¸å—æ¯z","Latin small letter z with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯z","Latin capital letter z with dot above":"带上点的大写拉ä¸å—æ¯z","Latin small letter z with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯z","Latin capital letter z with caron":"带抑扬符的大写拉ä¸å—æ¯z","Latin small letter z with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯z","Latin small letter long s":"å°å†™æ‹‰ä¸å—æ¯é•¿s","Less-than sign":"å°äºŽå·","Greater-than sign":"大于å·","Less-than or equal to":"å°äºŽç‰äºŽ","Greater-than or equal to":"大于ç‰äºŽ","En dash":"çŸç ´æŠ˜å·","Em dash":"é•¿ç ´æŠ˜å·",Macron:"长音符å·",Overline:"上划线","Degree sign":"度数符å·","Minus sign":"è´Ÿå·","Plus-minus sign":"æ£è´Ÿå·","Division sign":"除å·","Fraction slash":"分数斜线","Multiplication sign":"称å·","Latin small letter f with hook":"带钩的拉ä¸æ–‡å°å†™å—æ¯ F",Integral:"积分","N-ary summation":"N 元求和",Infinity:"æ— ç©·å¤§","Square root":"å¹³æ–¹æ ¹","Tilde operator":"波浪线è¿ç®—符","Approximately equal to":"è¿‘ä¼¼ç‰äºŽ","Almost equal to":"约ç‰äºŽ","Not equal to":"ä¸ç‰äºŽ","Identical to":"æ’ç‰äºŽ","Element of":"属于","Not an element of":"ä¸å±žäºŽ","Contains as member":"包å«","N-ary product":"N 元乘积","Logical and":"逻辑与","Logical or":"逻辑或","Not sign":"éž",Intersection:"交集",Union:"并集","Partial differential":"å微分","For all":"对于全部","There exists":"å˜åœ¨","Empty set":"空集",Nabla:"劈形算符","Asterisk operator":"星å·è¿ç®—符","Proportional to":"比例",Angle:"角","Vulgar fraction one quarter":"普通分数四分之一","Vulgar fraction one half":"普通分数二分之一","Vulgar fraction three quarters":"普通分数四分之三","Single left-pointing angle quotation mark":"å•å·¦å°–括å·","Single right-pointing angle quotation mark":"å•å³å°–括å·","Left-pointing double angle quotation mark":"åŒå·¦å°–括å·","Right-pointing double angle quotation mark":"åŒå³å°–括å·","Left single quotation mark":"å·¦å•å¼•å·","Right single quotation mark":"å³å•å¼•å·","Left double quotation mark":"å·¦åŒå¼•å·","Right double quotation mark":"å³åŒå¼•å·","Single low-9 quotation mark":"低ä½åŽå•å¼•å·","Double low-9 quotation mark":"低ä½åŽåŒå¼•å·","Inverted exclamation mark":"åæ„Ÿå¹å·","Inverted question mark":"åé—®å·","Two dot leader":"二点å‰å¯¼ç¬¦","Horizontal ellipsis":"çœç•¥å·","Double dagger":"åŒå‰‘å·","Per mille sign":"åƒåˆ†å·","Per ten thousand sign":"万分å·","Double exclamation mark":"åŒå¹å·","Question exclamation mark":"疑问感å¹å·","Exclamation question mark":"æ„Ÿå¹ç–‘é—®å·","Double question mark":"åŒé—®å·","Copyright sign":"版æƒç¬¦å·","Registered sign":"æ³¨å†Œå•†æ ‡","Trade mark sign":"å•†æ ‡ç¬¦å·","Section sign":"èŠ‚æ ‡è®°","Paragraph sign":"段è½ç¬¦å·","Reversed paragraph sign":"åå‘段è½ç¬¦å·","Character categories":"å—符类别",Styles:"æ ·å¼","Multiple styles":"å¤šæ ·å¼","Block styles":"å—çº§æ ·å¼","Text styles":"æ–‡æœ¬æ ·å¼","Insert table":"æ’å…¥è¡¨æ ¼","Header column":"æ ‡é¢˜åˆ—","Insert column left":"左侧æ’入列","Insert column right":"å³ä¾§æ’入列","Delete column":"åˆ é™¤æœ¬åˆ—","Select column":"选择列",Column:"列","Header row":"æ ‡é¢˜è¡Œ","Insert row below":"在下é¢æ’入一行","Insert row above":"在上é¢æ’入一行","Delete row":"åˆ é™¤æœ¬è¡Œ","Select row":"选择行",Row:"è¡Œ","Merge cell up":"å‘上åˆå¹¶å•å…ƒæ ¼","Merge cell right":"å‘å³åˆå¹¶å•å…ƒæ ¼","Merge cell down":"å‘下åˆå¹¶å•å…ƒæ ¼","Merge cell left":"å‘å·¦åˆå¹¶å•å…ƒæ ¼","Split cell vertically":"纵å‘拆分å•å…ƒæ ¼","Split cell horizontally":"横å‘拆分å•å…ƒæ ¼","Merge cells":"åˆå¹¶å•å…ƒæ ¼","Table toolbar":"è¡¨æ ¼å·¥å…·æ ","Table properties":"è¡¨æ ¼å±žæ€§","Cell properties":"å•å…ƒæ ¼å±žæ€§",Border:"边框",Style:"æ ·å¼",Width:"宽度",Height:"高度",Color:"颜色",Background:"背景",Padding:"内边è·",Dimensions:"尺寸","Table cell text alignment":"è¡¨æ ¼å•å…ƒæ ¼ä¸çš„文本水平对é½",Alignment:"对é½","Horizontal text alignment toolbar":"水平文本对é½å·¥å…·æ ","Vertical text alignment toolbar":"垂直文本对é½å·¥å…·æ ","Table alignment toolbar":"è¡¨æ ¼å¯¹é½å·¥å…·æ ",None:"æ— ",Solid:"实线",Dotted:"点状虚线",Dashed:"虚线",Double:"åŒçº¿",Groove:"凹槽边框",Ridge:"垄状边框",Inset:"凹边框",Outset:"凸边框","Align cell text to the left":"使å•å…ƒæ ¼æ–‡æœ¬å·¦å¯¹é½","Align cell text to the center":"使å•å…ƒæ ¼æ–‡æœ¬æ°´å¹³å±…ä¸","Align cell text to the right":"使å•å…ƒæ ¼æ–‡æœ¬å³å¯¹é½","Justify cell text":"对é½å•å…ƒæ ¼æ–‡æœ¬","Align cell text to the top":"使å•å…ƒæ ¼æ–‡æœ¬å¯¹é½åˆ°é¡¶éƒ¨","Align cell text to the middle":"使å•å…ƒæ ¼æ–‡æœ¬åž‚ç›´å±…ä¸","Align cell text to the bottom":"使å•å…ƒæ ¼æ–‡æœ¬å¯¹é½åˆ°åº•éƒ¨","Align table to the left":"ä½¿è¡¨æ ¼å·¦å¯¹é½","Center table":"è¡¨æ ¼å±…ä¸","Align table to the right":"ä½¿è¡¨æ ¼å³å¯¹é½","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"é¢œè‰²æ— æ•ˆã€‚å°è¯•ä½¿ç”¨\"#FF0000\"ã€\"rgb(255,0,0)\"或者\"red\"。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"æ— æ•ˆå€¼ã€‚å°è¯•ä½¿ç”¨â€œ10pxâ€ã€â€œ2exâ€æˆ–者åªå†™â€œ2â€ã€‚","Color picker":"颜色选择器","Toggle caption off":"å…³é—è¡¨æ ‡é¢˜","Toggle caption on":"æ‰“å¼€è¡¨æ ‡é¢˜","Enter table caption":"è¾“å…¥è¡¨æ ‡é¢˜","Rich Text Editor":"富文本编辑器","Editor editing area: %0":"编辑器编辑区域:%0","Edit block":"编辑框","Click to edit block":"å•å‡»ä»¥ç¼–辑å—","Drag to move":"拖拽以移动",Next:"下一æ¥",Previous:"上一æ¥","Editor toolbar":"编辑器工具æ ","Dropdown toolbar":"下拉工具æ ",Black:"黑色","Dim grey":"æš—ç°è‰²",Grey:"ç°è‰²","Light grey":"æµ…ç°è‰²",White:"白色",Red:"红色",Orange:"橙色",Yellow:"黄色","Light green":"浅绿色",Green:"绿色",Aquamarine:"æµ·è“色",Turquoise:"é’色","Light blue":"æµ…è“色",Blue:"è“色",Purple:"紫色","Editor block content toolbar":"编辑器å—内容工具æ ","Editor contextual toolbar":"编辑器上下文工具æ ",HEX:"åå…进制",Accept:"接å—","No results found":"未找到结果","No searchable items":"没有å¯æœç´¢çš„项目","Editor dialog":"编辑器对è¯æ¡†",Close:"å…³é—",Undo:"撤销",Redo:"é‡åš","Upload in progress":"æ£åœ¨ä¸Šä¼ ","Widget toolbar":"å°éƒ¨ä»¶å·¥å…·æ ","Insert paragraph before block":"在å‰é¢æ’入段è½","Insert paragraph after block":"在åŽé¢æ’入段è½","Press Enter to type after or press Shift + Enter to type before the widget":"按下“Enterâ€é”®ï¼Œåœ¨å°ç»„件åŽè¾“入;按下“Shift+Enterâ€é”®ï¼Œåœ¨å°ç»„件å‰è¾“å…¥","Words: %0":"å•è¯æ•°ï¼š%0","Characters: %0":"å—符数:%0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['zh-cn'] = d['zh-cn'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"左对é½","Align right":"å³å¯¹é½","Align center":"å±…ä¸å¯¹é½",Justify:"两端对é½","Text alignment":"对é½","Text alignment toolbar":"对é½å·¥å…·æ ",Bold:"åŠ ç²—",Italic:"倾斜",Underline:"下划线",Code:"代ç ",Strikethrough:"åˆ é™¤çº¿",Subscript:"ä¸‹æ ‡",Superscript:"ä¸Šæ ‡","Block quote":"å—引用","Insert code block":"æ’入代ç å—","Plain text":"纯文本",Cancel:"å–消",Clear:"清除","Remove color":"移除颜色","Restore default":"æ¢å¤é»˜è®¤",Save:"ä¿å˜","Show more items":"显示更多","%0 of %1":"第 %0 æ¥ï¼Œå…± %1 æ¥","Cannot upload file:":"æ— æ³•ä¸Šä¼ çš„æ–‡ä»¶ï¼š","Rich Text Editor. Editing area: %0":"富文本编辑器。编辑区域:%0","Insert with file manager":"使用文件管ç†å™¨æ’å…¥","Replace with file manager":"使用文件管ç†å™¨æ›¿æ¢","Insert image with file manager":"使用文件管ç†å™¨æ’入图片","Replace image with file manager":"使用文件管ç†å™¨æ›¿æ¢å›¾ç‰‡","Find and replace":"查找和替æ¢","Find in text…":"查找的文本",Find:"查找","Previous result":"上一个匹é…项","Next result":"下一个匹é…项",Replace:"替æ¢","Replace all":"全部替æ¢","Match case":"区分大å°å†™","Whole words only":"å•è¯","Replace with…":"替æ¢çš„文本","Text to find must not be empty.":"查找的文本ä¸å¯ä¸ºç©º","Tip: Find some text first in order to replace it.":"æ示:先查找文本å†æ›¿æ¢","Advanced options":"高级选项","Font Size":"å—体大å°",Tiny:"æžå°",Small:"å°",Big:"大",Huge:"æžå¤§","Font Family":"å—体",Default:"默认","Font Color":"å—体颜色","Font Background Color":"å—体背景色","Document colors":"文档ä¸çš„颜色",Paragraph:"段è½",Heading:"æ ‡é¢˜","Choose heading":"æ ‡é¢˜ç±»åž‹","Heading 1":"æ ‡é¢˜ 1","Heading 2":"æ ‡é¢˜ 2","Heading 3":"æ ‡é¢˜ 3","Heading 4":"æ ‡é¢˜ 4","Heading 5":"æ ‡é¢˜ 5","Heading 6":"æ ‡é¢˜ 6","Type your title":"è¾“å…¥æ ‡é¢˜","Type or paste your content here.":"在这里输入或粘贴内容","Horizontal line":"水平线","HTML object":"HTML对象","Increase indent":"å¢žåŠ ç¼©è¿›","Decrease indent":"å‡å°‘缩进",Unlink:"å–消超链接",Link:"超链接","Link URL":"链接网å€","Link image":"链接图片","Edit link":"修改链接","Open link in new tab":"åœ¨æ–°æ ‡ç¾é¡µä¸æ‰“开链接","This link has no URL":"æ¤é“¾æŽ¥æ²¡æœ‰è®¾ç½®ç½‘å€","Open in a new tab":"åœ¨æ–°æ ‡ç¾é¡µä¸æ‰“å¼€",Downloadable:"å¯ä¸‹è½½","Numbered List":"项目编å·åˆ—表","Bulleted List":"项目符å·åˆ—表","To-do List":"待办列表","Bulleted list styles toolbar":"项目符å·åˆ—è¡¨æ ·å¼å·¥å…·æ¡","Numbered list styles toolbar":"项目编å·åˆ—è¡¨æ ·å¼å·¥å…·æ¡","Toggle the disc list style":"切æ¢å®žå¿ƒåŽŸç‚¹åˆ—è¡¨æ ·å¼","Toggle the circle list style":"切æ¢ç©ºå¿ƒåŽŸç‚¹åˆ—è¡¨æ ·å¼","Toggle the square list style":"切æ¢å®žå¿ƒæ–¹å—åˆ—è¡¨æ ·å¼","Toggle the decimal list style":"切æ¢é˜¿æ‹‰ä¼¯æ•°å—åˆ—è¡¨æ ·å¼","Toggle the decimal with leading zero list style":"切æ¢å‰å¯¼é›¶é˜¿æ‹‰ä¼¯æ•°å—åˆ—è¡¨æ ·å¼","Toggle the lower–roman list style":"切æ¢å°å†™ç½—马数å—åˆ—è¡¨æ ·å¼","Toggle the upper–roman list style":"切æ¢å¤§å†™ç½—马数å—åˆ—è¡¨æ ·å¼","Toggle the lower–latin list style":"切æ¢å°å†™æ‹‰ä¸å—æ¯åˆ—è¡¨æ ·å¼","Toggle the upper–latin list style":"切æ¢å¤§å†™æ‹‰ä¸å—æ¯åˆ—è¡¨æ ·å¼",Disc:"实心圆点",Circle:"空心圆点",Square:"实心方å—",Decimal:"阿拉伯数å—","Decimal with leading zero":"å‰å¯¼é›¶é˜¿æ‹‰ä¼¯æ•°å—","Lower–roman":"å°å†™ç½—马数å—","Upper-roman":"大写罗马数å—","Lower-latin":"å°å†™æ‹‰ä¸å—æ¯","Upper-latin":"大写拉ä¸å—æ¯","List properties":"列表属性","Start at":"起始编å·","Start index must be greater than 0.":"起始编å·å¿…须大于0。","Reversed order":"顺åºå转","Remove Format":"ç§»é™¤æ ¼å¼","Select all":"全选","Show blocks":"显示区å—",Source:"æºä»£ç ","Special characters":"特殊å—符",All:"全部",Arrows:"ç®å¤´",Currency:"è´§å¸",Latin:"拉ä¸æ–‡",Mathematical:"æ•°å¦",Text:"文本","leftwards simple arrow":"å‘左简å•ç®å¤´","rightwards simple arrow":"å‘å³ç®€å•ç®å¤´","upwards simple arrow":"å‘上简å•ç®å¤´","downwards simple arrow":"å‘下简å•ç®å¤´","leftwards double arrow":"å‘å·¦åŒç®å¤´","rightwards double arrow":"å‘å³åŒç®å¤´","upwards double arrow":"å‘上åŒç®å¤´","downwards double arrow":"å‘下åŒç®å¤´","leftwards dashed arrow":"å‘左虚线ç®å¤´","rightwards dashed arrow":"å‘å³è™šçº¿ç®å¤´","upwards dashed arrow":"å‘上虚线ç®å¤´","downwards dashed arrow":"å‘下虚线ç®å¤´","leftwards arrow to bar":"头部带æ çš„å‘å·¦ç®å¤´","rightwards arrow to bar":"头部带æ çš„å‘å³ç®å¤´","upwards arrow to bar":"头部带æ çš„å‘上ç®å¤´","downwards arrow to bar":"头部带æ çš„å‘下ç®å¤´","up down arrow with base":"处于基线的上下ç®å¤´","back with leftwards arrow above":"带有backæ ‡è¯†çš„å‘å·¦ç®å¤´","end with leftwards arrow above":"带有endæ ‡è¯†çš„å‘å·¦ç®å¤´","on with exclamation mark with left right arrow above":"带有NOï¼æ ‡è¯†çš„å·¦å³åŒå‘ç®å¤´","soon with rightwards arrow above":"带有soonæ ‡è¯†çš„å‘å³ç®å¤´","top with upwards arrow above":"带有topæ ‡è¯†çš„å‘上ç®å¤´","Dollar sign":"美元符å·","Euro sign":"欧元符å·","Yen sign":"日元符å·","Pound sign":"英镑符å·","Cent sign":"分å¸ç¬¦å·","Euro-currency sign":"欧元货å¸ç¬¦å·","Colon sign":"科朗符å·","Cruzeiro sign":"å…‹é²å¡žç½—符å·","French franc sign":"法国法郎符å·","Lira sign":"里拉符å·","Currency sign":"è´§å¸ç¬¦å·","Bitcoin sign":"比特å¸ç¬¦å·","Mill sign":"密尔符å·","Naira sign":"奈拉符å·","Peseta sign":"比塞塔符å·","Rupee sign":"å¢æ¯”符å·","Won sign":"韩元符å·","New sheqel sign":"新谢克尔符å·","Dong sign":"越å—盾符å·","Kip sign":" 基普符å·","Tugrik sign":"å›¾æ ¼é‡Œå…‹ç¬¦å·","Drachma sign":"德拉克马符å·","German penny sign":"德国便士符å·","Peso sign":"比索符å·","Guarani sign":"瓜拉尼货å¸ç¬¦å·","Austral sign":"澳大利亚货å¸ç¬¦å·","Hryvnia sign":"戈里夫纳符å·","Cedi sign":"塞地符å·","Livre tournois sign":"里弗尔符å·","Spesmilo sign":"斯佩斯米洛符å·","Tenge sign":"åšæˆˆç¬¦å·","Indian rupee sign":"å°åº¦å¢æ¯”符å·","Turkish lira sign":"土耳其里拉符å·","Nordic mark sign":"北欧马克å¾ç¬¦å·","Manat sign":"马纳特符å·","Ruble sign":"ä¿„ç½—æ–¯å¢å¸ƒ","Latin capital letter a with macron":"带长音符的大写拉ä¸å—æ¯a","Latin small letter a with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter a with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯a","Latin small letter a with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter a with ogonek":"带å尾形符的大写拉ä¸å—æ¯a","Latin small letter a with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯a","Latin capital letter c with acute":"带é”音符的大写拉ä¸å—æ¯c","Latin small letter c with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with circumflex":"带扬抑符的大写拉ä¸å—æ¯c","Latin small letter c with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with dot above":"带上点的大写拉ä¸å—æ¯c","Latin small letter c with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter c with caron":"带抑扬符的大写拉ä¸å—æ¯c","Latin small letter c with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯c","Latin capital letter d with caron":"带抑扬符的大写拉ä¸å—æ¯d","Latin small letter d with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯d","Latin capital letter d with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯d","Latin small letter d with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯d","Latin capital letter e with macron":"带长音符的大写拉ä¸å—æ¯e","Latin small letter e with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯e","Latin small letter e with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with dot above":"带上点的大写拉ä¸å—æ¯e","Latin small letter e with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with ogonek":"带å尾形符的大写拉ä¸å—æ¯e","Latin small letter e with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter e with caron":"带抑扬符的大写拉ä¸å—æ¯e","Latin small letter e with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯e","Latin capital letter g with circumflex":"带扬抑符的大写拉ä¸å—æ¯g","Latin small letter g with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯g","Latin small letter g with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with dot above":"带上点的大写拉ä¸å—æ¯g","Latin small letter g with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter g with cedilla":"带软音符的大写拉ä¸å—æ¯g","Latin small letter g with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯g","Latin capital letter h with circumflex":"带扬抑符的大写拉ä¸å—æ¯h","Latin small letter h with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯h","Latin capital letter h with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯h","Latin small letter h with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯h","Latin capital letter i with tilde":"带è…化符的大写拉ä¸å—æ¯i","Latin small letter i with tilde":"带è…化符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with macron":"带长音符的大写拉ä¸å—æ¯i","Latin small letter i with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯i","Latin small letter i with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with ogonek":"带å尾形符的大写拉ä¸å—æ¯i","Latin small letter i with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯i","Latin capital letter i with dot above":"带上点的大写拉ä¸å—æ¯i","Latin small letter dotless i":"没有点的å°å†™æ‹‰ä¸å—æ¯i","Latin capital ligature ij":"大写拉ä¸è¿žå—符ij","Latin small ligature ij":"å°å†™æ‹‰ä¸è¿žå—符ij","Latin capital letter j with circumflex":"带扬抑符的大写拉ä¸å—æ¯j","Latin small letter j with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯j","Latin capital letter k with cedilla":"带软音符的大写拉ä¸å—æ¯k","Latin small letter k with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯k","Latin small letter kra":"å°å†™æ‹‰ä¸å—æ¯kra","Latin capital letter l with acute":"带é”音符的大写拉ä¸å—æ¯l","Latin small letter l with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with cedilla":"带软音符的大写拉ä¸å—æ¯l","Latin small letter l with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with caron":"带抑扬符的大写拉ä¸å—æ¯l","Latin small letter l with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with middle dot":"带ä¸ç‚¹çš„大写拉ä¸å—æ¯l","Latin small letter l with middle dot":"带ä¸ç‚¹çš„å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter l with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯l","Latin small letter l with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯l","Latin capital letter n with acute":"带é”音符的大写拉ä¸å—æ¯n","Latin small letter n with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter n with cedilla":"带软音符的大写拉ä¸å—æ¯n","Latin small letter n with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter n with caron":"带抑扬符的大写拉ä¸å—æ¯n","Latin small letter n with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯n","Latin small letter n preceded by apostrophe":"å† ä»¥æ’‡å·çš„å°å†™æ‹‰ä¸å—æ¯n","Latin capital letter eng":"大写拉ä¸å—æ¯eng","Latin small letter eng":"å°å†™æ‹‰ä¸å—æ¯eng","Latin capital letter o with macron":"带长音符的大写拉ä¸å—æ¯o","Latin small letter o with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯o","Latin capital letter o with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯o","Latin small letter o with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯o","Latin capital letter o with double acute":"带åŒé”音符的大写拉ä¸å—æ¯o","Latin small letter o with double acute":"带åŒé”音符的å°å†™æ‹‰ä¸å—æ¯o","Latin capital ligature oe":"大写拉ä¸è¿žå—符oe","Latin small ligature oe":"å°å†™æ‹‰ä¸è¿žå—符oe","Latin capital letter r with acute":"带é”音符的大写拉ä¸å—æ¯r","Latin small letter r with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter r with cedilla":"带软音符的大写拉ä¸å—æ¯r","Latin small letter r with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter r with caron":"带抑扬符的大写拉ä¸å—æ¯r","Latin small letter r with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯r","Latin capital letter s with acute":"带é”音符的大写拉ä¸å—æ¯s","Latin small letter s with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with circumflex":"带扬抑符的大写拉ä¸å—æ¯s","Latin small letter s with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with cedilla":"带软音符的大写拉ä¸å—æ¯s","Latin small letter s with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter s with caron":"带抑扬符的大写拉ä¸å—æ¯s","Latin small letter s with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯s","Latin capital letter t with cedilla":"带软音符的大写拉ä¸å—æ¯t","Latin small letter t with cedilla":"带软音符的å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter t with caron":"带抑扬符的大写拉ä¸å—æ¯t","Latin small letter t with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter t with stroke":"å¸¦åˆ èŠ‚çº¿çš„å¤§å†™æ‹‰ä¸å—æ¯t","Latin small letter t with stroke":"å¸¦åˆ èŠ‚çº¿çš„å°å†™æ‹‰ä¸å—æ¯t","Latin capital letter u with tilde":"带è…化符的大写拉ä¸å—æ¯u","Latin small letter u with tilde":"带è…化符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with macron":"带长音符的大写拉ä¸å—æ¯u","Latin small letter u with macron":"带长音符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with breve":"带çŸéŸ³ç¬¦çš„大写拉ä¸å—æ¯u","Latin small letter u with breve":"带çŸéŸ³ç¬¦çš„å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with ring above":"带上圆圈的大写拉ä¸å—æ¯u","Latin small letter u with ring above":"带上圆圈的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with double acute":"带åŒé”音符的大写拉ä¸å—æ¯u","Latin small letter u with double acute":"带åŒé”音符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter u with ogonek":"带å尾形符的大写拉ä¸å—æ¯u","Latin small letter u with ogonek":"带å尾形符的å°å†™æ‹‰ä¸å—æ¯u","Latin capital letter w with circumflex":"带扬抑符的大写拉ä¸å—æ¯w","Latin small letter w with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯w","Latin capital letter y with circumflex":"带扬抑符的大写拉ä¸å—æ¯y","Latin small letter y with circumflex":"带扬抑符的å°å†™æ‹‰ä¸å—æ¯y","Latin capital letter y with diaeresis":"带分音符的大写拉ä¸å—æ¯y","Latin capital letter z with acute":"带é”音符的大写拉ä¸å—æ¯z","Latin small letter z with acute":"带é”音符的å°å†™æ‹‰ä¸å—æ¯z","Latin capital letter z with dot above":"带上点的大写拉ä¸å—æ¯z","Latin small letter z with dot above":"带上点的å°å†™æ‹‰ä¸å—æ¯z","Latin capital letter z with caron":"带抑扬符的大写拉ä¸å—æ¯z","Latin small letter z with caron":"带抑扬符的å°å†™æ‹‰ä¸å—æ¯z","Latin small letter long s":"å°å†™æ‹‰ä¸å—æ¯é•¿s","Less-than sign":"å°äºŽå·","Greater-than sign":"大于å·","Less-than or equal to":"å°äºŽç‰äºŽ","Greater-than or equal to":"大于ç‰äºŽ","En dash":"çŸç ´æŠ˜å·","Em dash":"é•¿ç ´æŠ˜å·",Macron:"长音符å·",Overline:"上划线","Degree sign":"度数符å·","Minus sign":"è´Ÿå·","Plus-minus sign":"æ£è´Ÿå·","Division sign":"除å·","Fraction slash":"分数斜线","Multiplication sign":"称å·","Latin small letter f with hook":"带钩的拉ä¸æ–‡å°å†™å—æ¯ F",Integral:"积分","N-ary summation":"N 元求和",Infinity:"æ— ç©·å¤§","Square root":"å¹³æ–¹æ ¹","Tilde operator":"波浪线è¿ç®—符","Approximately equal to":"è¿‘ä¼¼ç‰äºŽ","Almost equal to":"约ç‰äºŽ","Not equal to":"ä¸ç‰äºŽ","Identical to":"æ’ç‰äºŽ","Element of":"属于","Not an element of":"ä¸å±žäºŽ","Contains as member":"包å«","N-ary product":"N 元乘积","Logical and":"逻辑与","Logical or":"逻辑或","Not sign":"éž",Intersection:"交集",Union:"并集","Partial differential":"å微分","For all":"对于全部","There exists":"å˜åœ¨","Empty set":"空集",Nabla:"劈形算符","Asterisk operator":"星å·è¿ç®—符","Proportional to":"比例",Angle:"角","Vulgar fraction one quarter":"普通分数四分之一","Vulgar fraction one half":"普通分数二分之一","Vulgar fraction three quarters":"普通分数四分之三","Single left-pointing angle quotation mark":"å•å·¦å°–括å·","Single right-pointing angle quotation mark":"å•å³å°–括å·","Left-pointing double angle quotation mark":"åŒå·¦å°–括å·","Right-pointing double angle quotation mark":"åŒå³å°–括å·","Left single quotation mark":"å·¦å•å¼•å·","Right single quotation mark":"å³å•å¼•å·","Left double quotation mark":"å·¦åŒå¼•å·","Right double quotation mark":"å³åŒå¼•å·","Single low-9 quotation mark":"低ä½åŽå•å¼•å·","Double low-9 quotation mark":"低ä½åŽåŒå¼•å·","Inverted exclamation mark":"åæ„Ÿå¹å·","Inverted question mark":"åé—®å·","Two dot leader":"二点å‰å¯¼ç¬¦","Horizontal ellipsis":"çœç•¥å·","Double dagger":"åŒå‰‘å·","Per mille sign":"åƒåˆ†å·","Per ten thousand sign":"万分å·","Double exclamation mark":"åŒå¹å·","Question exclamation mark":"疑问感å¹å·","Exclamation question mark":"æ„Ÿå¹ç–‘é—®å·","Double question mark":"åŒé—®å·","Copyright sign":"版æƒç¬¦å·","Registered sign":"æ³¨å†Œå•†æ ‡","Trade mark sign":"å•†æ ‡ç¬¦å·","Section sign":"èŠ‚æ ‡è®°","Paragraph sign":"段è½ç¬¦å·","Reversed paragraph sign":"åå‘段è½ç¬¦å·","Character categories":"å—符类别",Styles:"æ ·å¼","Multiple styles":"å¤šæ ·å¼","Block styles":"å—çº§æ ·å¼","Text styles":"æ–‡æœ¬æ ·å¼","Insert table":"æ’å…¥è¡¨æ ¼","Header column":"æ ‡é¢˜åˆ—","Insert column left":"左侧æ’入列","Insert column right":"å³ä¾§æ’入列","Delete column":"åˆ é™¤æœ¬åˆ—","Select column":"选择列",Column:"列","Header row":"æ ‡é¢˜è¡Œ","Insert row below":"在下é¢æ’入一行","Insert row above":"在上é¢æ’入一行","Delete row":"åˆ é™¤æœ¬è¡Œ","Select row":"选择行",Row:"è¡Œ","Merge cell up":"å‘上åˆå¹¶å•å…ƒæ ¼","Merge cell right":"å‘å³åˆå¹¶å•å…ƒæ ¼","Merge cell down":"å‘下åˆå¹¶å•å…ƒæ ¼","Merge cell left":"å‘å·¦åˆå¹¶å•å…ƒæ ¼","Split cell vertically":"纵å‘拆分å•å…ƒæ ¼","Split cell horizontally":"横å‘拆分å•å…ƒæ ¼","Merge cells":"åˆå¹¶å•å…ƒæ ¼","Table toolbar":"è¡¨æ ¼å·¥å…·æ ","Table properties":"è¡¨æ ¼å±žæ€§","Cell properties":"å•å…ƒæ ¼å±žæ€§",Border:"边框",Style:"æ ·å¼",Width:"宽度",Height:"高度",Color:"颜色",Background:"背景",Padding:"内边è·",Dimensions:"尺寸","Table cell text alignment":"è¡¨æ ¼å•å…ƒæ ¼ä¸çš„文本水平对é½",Alignment:"对é½","Horizontal text alignment toolbar":"水平文本对é½å·¥å…·æ ","Vertical text alignment toolbar":"垂直文本对é½å·¥å…·æ ","Table alignment toolbar":"è¡¨æ ¼å¯¹é½å·¥å…·æ ",None:"æ— ",Solid:"实线",Dotted:"点状虚线",Dashed:"虚线",Double:"åŒçº¿",Groove:"凹槽边框",Ridge:"垄状边框",Inset:"凹边框",Outset:"凸边框","Align cell text to the left":"使å•å…ƒæ ¼æ–‡æœ¬å·¦å¯¹é½","Align cell text to the center":"使å•å…ƒæ ¼æ–‡æœ¬æ°´å¹³å±…ä¸","Align cell text to the right":"使å•å…ƒæ ¼æ–‡æœ¬å³å¯¹é½","Justify cell text":"对é½å•å…ƒæ ¼æ–‡æœ¬","Align cell text to the top":"使å•å…ƒæ ¼æ–‡æœ¬å¯¹é½åˆ°é¡¶éƒ¨","Align cell text to the middle":"使å•å…ƒæ ¼æ–‡æœ¬åž‚ç›´å±…ä¸","Align cell text to the bottom":"使å•å…ƒæ ¼æ–‡æœ¬å¯¹é½åˆ°åº•éƒ¨","Align table to the left":"ä½¿è¡¨æ ¼å·¦å¯¹é½","Center table":"è¡¨æ ¼å±…ä¸","Align table to the right":"ä½¿è¡¨æ ¼å³å¯¹é½","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"é¢œè‰²æ— æ•ˆã€‚å°è¯•ä½¿ç”¨\"#FF0000\"ã€\"rgb(255,0,0)\"或者\"red\"。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"æ— æ•ˆå€¼ã€‚å°è¯•ä½¿ç”¨â€œ10pxâ€ã€â€œ2exâ€æˆ–者åªå†™â€œ2â€ã€‚","Color picker":"颜色选择器","Toggle caption off":"å…³é—è¡¨æ ‡é¢˜","Toggle caption on":"æ‰“å¼€è¡¨æ ‡é¢˜","Enter table caption":"è¾“å…¥è¡¨æ ‡é¢˜","Rich Text Editor":"富文本编辑器","Editor editing area: %0":"编辑器编辑区域:%0","Edit block":"编辑框","Click to edit block":"å•å‡»ä»¥ç¼–辑å—","Drag to move":"拖拽以移动",Next:"下一æ¥",Previous:"上一æ¥","Editor toolbar":"编辑器工具æ ","Dropdown toolbar":"下拉工具æ ",Black:"黑色","Dim grey":"æš—ç°è‰²",Grey:"ç°è‰²","Light grey":"æµ…ç°è‰²",White:"白色",Red:"红色",Orange:"橙色",Yellow:"黄色","Light green":"浅绿色",Green:"绿色",Aquamarine:"æµ·è“色",Turquoise:"é’色","Light blue":"æµ…è“色",Blue:"è“色",Purple:"紫色","Editor block content toolbar":"编辑器å—内容工具æ ","Editor contextual toolbar":"编辑器上下文工具æ ",HEX:"åå…进制",Accept:"接å—","No results found":"未找到结果","No searchable items":"没有å¯æœç´¢çš„项目","Editor dialog":"编辑器对è¯æ¡†",Close:"å…³é—",Undo:"撤销",Redo:"é‡åš","Upload in progress":"æ£åœ¨ä¸Šä¼ ","Widget toolbar":"å°éƒ¨ä»¶å·¥å…·æ ","Insert paragraph before block":"在å‰é¢æ’入段è½","Insert paragraph after block":"在åŽé¢æ’入段è½","Press Enter to type after or press Shift + Enter to type before the widget":"按下“Enterâ€é”®ï¼Œåœ¨å°ç»„件åŽè¾“入;按下“Shift+Enterâ€é”®ï¼Œåœ¨å°ç»„件å‰è¾“å…¥","Words: %0":"å•è¯æ•°ï¼š%0","Characters: %0":"å—符数:%0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file diff --git a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh.js b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh.js index c5ed313d9118d02278fa5def80b198fd88cbe679..8eec4cccfad2af425a59d0988dbb6e3ef97ca4d6 100644 --- a/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh.js +++ b/typo3/sysext/rte_ckeditor/Resources/Public/Contrib/translations/zh.js @@ -1 +1 @@ -(function(d){ const l = d['zh'] = d['zh'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"é å·¦å°é½Š","Align right":"é å³å°é½Š","Align center":"ç½®ä¸å°é½Š",Justify:"å·¦å³å°é½Š","Text alignment":"æ–‡å—å°é½Š","Text alignment toolbar":"æ–‡å—å°é½Š",Bold:"ç²—é«”",Italic:"斜體",Underline:"底線",Code:"代碼",Strikethrough:"刪除線",Subscript:"下標",Superscript:"上標","Block quote":"段è½å¼•ç”¨","Insert code block":"æ’入程å¼ç¢¼å€å¡Š","Plain text":"純文å—",Cancel:"å–消",Clear:"清除","Remove color":"移除é¡è‰²","Restore default":"é‡è¨è‡³é è¨å€¼",Save:"儲å˜","Show more items":"顯示更多","%0 of %1":"%0/%1","Cannot upload file:":"無法上傳檔案:","Rich Text Editor. Editing area: %0":"RTF 編輯器。編輯å€ï¼š%0","Insert with file manager":"使用檔案管ç†å“¡æ’å…¥","Replace with file manager":"使用檔案管ç†å“¡æ›¿æ›","Insert image with file manager":"使用檔案管ç†å“¡æ’入圖片","Replace image with file manager":"使用檔案管ç†å“¡æ›¿æ›åœ–片","Find and replace":"尋找和å–代","Find in text…":"在文本ä¸å°‹æ‰¾",Find:"尋找","Previous result":"å‰ä¸€å€‹çµæžœ","Next result":"後一個çµæžœ",Replace:"å–代","Replace all":"全部å–代","Match case":"大å°å¯«éœ€ç›¸ç¬¦","Whole words only":"僅全å—拼寫","Replace with…":"以…替代","Text to find must not be empty.":"ä¸èƒ½æŸ¥æ‰¾ç©ºå—串","Tip: Find some text first in order to replace it.":"æ示:先查找å—串å†å–代","Advanced options":"進階é¸é …",Paragraph:"段è½",Heading:"標題","Choose heading":"é¸å–標題","Heading 1":"標題 1","Heading 2":"標題 2","Heading 3":"標題 3","Heading 4":"標題 4","Heading 5":"標題 5","Heading 6":"標題 6","Type your title":"è¼¸å…¥ä½ çš„æ¨™é¡Œ","Type or paste your content here.":"在æ¤è¼¸å…¥æˆ–è²¼ä¸Šä½ çš„å…§å®¹ã€‚","Horizontal line":"水平線","HTML object":"HTML 物件","Increase indent":"å¢žåŠ ç¸®æŽ’","Decrease indent":"減少縮排",Unlink:"移除連çµ",Link:"連çµ","Link URL":"連çµË™ URL","Link image":"圖片連çµ","Edit link":"編輯連çµ","Open link in new tab":"在新視窗開啟連çµ","This link has no URL":"æ¤é€£çµæ²’有URL","Open in a new tab":"在新視窗開啟",Downloadable:"å¯ä¸‹è¼‰","Numbered List":"有åºæ¸…å–®","Bulleted List":"符號清單","To-do List":"代辦清單","Bulleted list styles toolbar":"ç„¡åºæ¸…單工具列","Numbered list styles toolbar":"有åºæ¸…單工具列","Toggle the disc list style":"切æ›ç‚ºå¯¦å¿ƒåœ“點標示","Toggle the circle list style":"切æ›ç‚ºç©ºå¿ƒåœ“點標示","Toggle the square list style":"切æ›ç‚ºæ–¹å½¢æ¨™ç¤º","Toggle the decimal list style":"切æ›ç‚ºæ•¸å—標示","Toggle the decimal with leading zero list style":"切æ›ç‚º0é–‹é 的數å—標示","Toggle the lower–roman list style":"切æ›ç‚ºå°å¯«ç¾…馬數å—標示","Toggle the upper–roman list style":"切æ›ç‚ºå¤§å¯«ç¾…馬數å—標示","Toggle the lower–latin list style":"切æ›ç‚ºå°å¯«æ‹‰ä¸æ–‡å—標示","Toggle the upper–latin list style":"切æ›ç‚ºå¤§å¯«æ‹‰ä¸æ–‡å—標示",Disc:"實心圓點",Circle:"空心圓點",Square:"方形",Decimal:"數å—","Decimal with leading zero":"0é–‹é 的數å—","Lower–roman":"å°å¯«ç¾…馬數å—","Upper-roman":"大寫羅馬數å—","Lower-latin":"å°å¯«æ‹‰ä¸å—æ¯","Upper-latin":"大寫拉ä¸å—æ¯","List properties":"清單屬性","Start at":"起始於","Start index must be greater than 0.":"èµ·å§‹ç´¢å¼•é ˆå¤§æ–¼ 0。","Reversed order":"åè½‰é †åº","Remove Format":"ç§»é™¤æ ¼å¼","Select all":"é¸å–全部","Show blocks":"顯示å€å¡Š",Source:"原始碼","Special characters":"特殊å—å…ƒ",All:"所有",Arrows:"ç®é ",Currency:"貨幣",Latin:"拉ä¸å—æ¯",Mathematical:"數å¸",Text:"æ–‡å—","leftwards simple arrow":"å‘左簡單ç®è™Ÿ","rightwards simple arrow":"å‘å³ç°¡å–®ç®è™Ÿ","upwards simple arrow":"å‘上簡單ç®è™Ÿ","downwards simple arrow":"å‘下簡單ç®è™Ÿ","leftwards double arrow":"å‘左雙ç®é ","rightwards double arrow":"å‘å³é›™ç®é ","upwards double arrow":"å‘上雙ç®é ","downwards double arrow":"å‘下雙ç®é ","leftwards dashed arrow":"å‘左虛線ç®é ","rightwards dashed arrow":"å‘å³è™›ç·šç®é ","upwards dashed arrow":"å‘上虛線ç®é ","downwards dashed arrow":"å‘下虛線ç®é ","leftwards arrow to bar":"å‘å·¦åœæ¢ç®é ","rightwards arrow to bar":"å‘å³åœæ¢ç®é ","upwards arrow to bar":"å‘上åœæ¢ç®é ","downwards arrow to bar":"å‘下åœæ¢ç®é ","up down arrow with base":"有底線的上下ç®è™Ÿ","back with leftwards arrow above":"Back 上方有å‘å·¦ç®è™Ÿ","end with leftwards arrow above":"End 上方有å‘å·¦ç®è™Ÿ","on with exclamation mark with left right arrow above":"帶驚嘆號的 On 上方有左å³é›™å‘ç®è™Ÿ","soon with rightwards arrow above":"Soon 上方有å‘å³ç®è™Ÿ","top with upwards arrow above":"Top 上方有å‘上ç®è™Ÿ","Dollar sign":"貨幣符號","Euro sign":"æ元符號","Yen sign":"日圓符號","Pound sign":"英鎊符號","Cent sign":"美分符號","Euro-currency sign":"æ元貨幣符號","Colon sign":"冒號","Cruzeiro sign":"å…‹é¯è–©å¤šç¬¦è™Ÿ","French franc sign":"法國法郎符號","Lira sign":"里拉符號","Currency sign":"貨幣符號","Bitcoin sign":"比特幣符號","Mill sign":"密爾符號","Naira sign":"奈åŠåˆ©äºžå¥ˆæ‹‰ç¬¦è™Ÿ","Peseta sign":"比塞塔符號","Rupee sign":"å°åº¦ç›§æ¯”符號","Won sign":"圜符號","New sheqel sign":"æ–°è¬å…‹çˆ¾ç¬¦è™Ÿ","Dong sign":"盾符號","Kip sign":"基普符號","Tugrik sign":"åœ–æ ¼é‡Œå…‹ç¬¦è™Ÿ","Drachma sign":"得拉克馬符號","German penny sign":"德國便士符號","Peso sign":"披索符號","Guarani sign":"瓜拉尼符號","Austral sign":"奧斯特拉爾符號","Hryvnia sign":"赫ä¼å°¼äºžç¬¦è™Ÿ","Cedi sign":"塞地符號","Livre tournois sign":"里弗爾法鎊符號","Spesmilo sign":"Spesmilo 貨幣符號","Tenge sign":"å‹˜å¯ŸåŠ å¹£ç¬¦è™Ÿ","Indian rupee sign":"å°åº¦ç›§æ¯”符號","Turkish lira sign":"土耳其里拉符號","Nordic mark sign":"日耳曼馬克符號","Manat sign":"馬ç´ç‰¹ç¬¦è™Ÿ","Ruble sign":"盧布符號","Latin capital letter a with macron":"拉ä¸å¤§å¯«å—æ¯ A 帶長音符號","Latin small letter a with macron":"拉ä¸å°å¯«å—æ¯ a 帶長音符號","Latin capital letter a with breve":"拉ä¸å¤§å¯«å—æ¯ A 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter a with breve":"拉ä¸å°å¯«å—æ¯ a 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter a with ogonek":"拉ä¸å¤§å¯«å—æ¯ A 帶 Ogonek","Latin small letter a with ogonek":"拉ä¸å°å¯«å—æ¯ a 帶 Ogonek","Latin capital letter c with acute":"拉ä¸å¤§å¯«å—æ¯ C 帶尖音符號","Latin small letter c with acute":"拉ä¸å°å¯«å—æ¯ c 帶尖音符號","Latin capital letter c with circumflex":"拉ä¸å¤§å¯«å—æ¯ C 帶抑æšç¬¦è™Ÿ","Latin small letter c with circumflex":"拉ä¸å°å¯«å—æ¯ c 帶抑æšç¬¦è™Ÿ","Latin capital letter c with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ C","Latin small letter c with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ c","Latin capital letter c with caron":"拉ä¸å¤§å¯«å—æ¯ C 帶上勾符號","Latin small letter c with caron":"拉ä¸å°å¯«å—æ¯ c 帶上勾符號","Latin capital letter d with caron":"拉ä¸å¤§å¯«å—æ¯ D 帶上勾符號","Latin small letter d with caron":"拉ä¸å°å¯«å—æ¯ d 帶上勾符號","Latin capital letter d with stroke":"拉ä¸å¤§å¯«å—æ¯ D 帶粗線符號","Latin small letter d with stroke":"拉ä¸å°å¯«å—æ¯ d 帶粗線符號","Latin capital letter e with macron":"拉ä¸å¤§å¯«å—æ¯ E 帶長音符號","Latin small letter e with macron":"拉ä¸å°å¯«å—æ¯ e 帶長音符號","Latin capital letter e with breve":"拉ä¸å¤§å¯«å—æ¯ E 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter e with breve":"拉ä¸å°å¯«å—æ¯ e 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter e with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ E","Latin small letter e with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ e","Latin capital letter e with ogonek":"拉ä¸å¤§å¯«å—æ¯ E 帶 Ogonek","Latin small letter e with ogonek":"拉ä¸å°å¯«å—æ¯ e 帶 Ogonek","Latin capital letter e with caron":"拉ä¸å¤§å¯«å—æ¯ E 帶上勾符號","Latin small letter e with caron":"拉ä¸å°å¯«å—æ¯ e 帶上勾符號","Latin capital letter g with circumflex":"拉ä¸å¤§å¯«å—æ¯ G 帶抑æšç¬¦è™Ÿ","Latin small letter g with circumflex":"拉ä¸å°å¯«å—æ¯ g 帶抑æšç¬¦è™Ÿ","Latin capital letter g with breve":"拉ä¸å¤§å¯«å—æ¯ G 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter g with breve":"拉ä¸å°å¯«å—æ¯ g 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter g with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ G","Latin small letter g with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ g","Latin capital letter g with cedilla":"拉ä¸å¤§å¯«å—æ¯ G 帶下尾符號","Latin small letter g with cedilla":"拉ä¸å°å¯«å—æ¯ g 帶下尾符號","Latin capital letter h with circumflex":"拉ä¸å¤§å¯«å—æ¯ H 帶抑æšç¬¦è™Ÿ","Latin small letter h with circumflex":"拉ä¸å°å¯«å—æ¯ h 帶抑æšç¬¦è™Ÿ","Latin capital letter h with stroke":"拉ä¸å¤§å¯«å—æ¯ H 帶粗線符號","Latin small letter h with stroke":"拉ä¸å°å¯«å—æ¯ h 帶粗線符號","Latin capital letter i with tilde":"拉ä¸å¤§å¯«å—æ¯ I 帶波狀符號","Latin small letter i with tilde":"拉ä¸å°å¯«å—æ¯ i 帶波狀符號","Latin capital letter i with macron":"拉ä¸å¤§å¯«å—æ¯ I 帶長音符號","Latin small letter i with macron":"拉ä¸å°å¯«å—æ¯ i 帶長音符號","Latin capital letter i with breve":"拉ä¸å¤§å¯«å—æ¯ I 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter i with breve":"拉ä¸å°å¯«å—æ¯ i 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter i with ogonek":"拉ä¸å¤§å¯«å—æ¯ I 帶 Ogonek","Latin small letter i with ogonek":"拉ä¸å°å¯«å—æ¯ i 帶 Ogonek","Latin capital letter i with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ I","Latin small letter dotless i":"拉ä¸å°å¯«å—æ¯ç„¡é»ž I","Latin capital ligature ij":"拉ä¸å¤§å¯«é€£å— IJ","Latin small ligature ij":"拉ä¸å°å¯«é€£å— ij","Latin capital letter j with circumflex":"拉ä¸å¤§å¯«å—æ¯ J 帶抑æšç¬¦è™Ÿ","Latin small letter j with circumflex":"拉ä¸å°å¯«å—æ¯ j 帶抑æšç¬¦è™Ÿ","Latin capital letter k with cedilla":"拉ä¸å¤§å¯«å—æ¯ K 帶下尾符號","Latin small letter k with cedilla":"拉ä¸å°å¯«å—æ¯ k 帶下尾符號","Latin small letter kra":"拉ä¸å°å¯«å—æ¯ kra","Latin capital letter l with acute":"拉ä¸å¤§å¯«å—æ¯ L 帶尖音符號","Latin small letter l with acute":"拉ä¸å°å¯«å—æ¯ l 帶尖音符號","Latin capital letter l with cedilla":"拉ä¸å¤§å¯«å—æ¯ L 帶下尾符號","Latin small letter l with cedilla":"拉ä¸å°å¯«å—æ¯ l 帶下尾符號","Latin capital letter l with caron":"拉ä¸å¤§å¯«å—æ¯ L 帶上勾符號","Latin small letter l with caron":"拉ä¸å°å¯«å—æ¯ l 帶上勾符號","Latin capital letter l with middle dot":"ä¸é–“一點的拉ä¸å¤§å¯«å—æ¯ L","Latin small letter l with middle dot":"ä¸é–“一點的拉ä¸å°å¯«å—æ¯ l","Latin capital letter l with stroke":"拉ä¸å¤§å¯«å—æ¯ L 帶粗線符號","Latin small letter l with stroke":"拉ä¸å°å¯«å—æ¯ l 帶粗線符號","Latin capital letter n with acute":"拉ä¸å¤§å¯«å—æ¯ N 帶尖音符號","Latin small letter n with acute":"拉ä¸å°å¯«å—æ¯ n 帶尖音符號","Latin capital letter n with cedilla":"拉ä¸å¤§å¯«å—æ¯ N 帶下尾符號","Latin small letter n with cedilla":"拉ä¸å°å¯«å—æ¯ n 帶下尾符號","Latin capital letter n with caron":"拉ä¸å¤§å¯«å—æ¯ N 帶上勾符號","Latin small letter n with caron":"拉ä¸å°å¯«å—æ¯ n 帶上勾符號","Latin small letter n preceded by apostrophe":"å‰æœ‰æ’‡è™Ÿçš„拉ä¸å°å¯«å—æ¯ n","Latin capital letter eng":"拉ä¸å¤§å¯«å—æ¯ Eng","Latin small letter eng":"拉ä¸å°å¯«å—æ¯ Eng","Latin capital letter o with macron":"拉ä¸å¤§å¯«å—æ¯ O 帶長音符號","Latin small letter o with macron":"拉ä¸å°å¯«å—æ¯ o 帶長音符號","Latin capital letter o with breve":"拉ä¸å¤§å¯«å—æ¯ O 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter o with breve":"拉ä¸å°å¯«å—æ¯ o 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter o with double acute":"拉ä¸å¤§å¯«å—æ¯ O 帶雙尖音符號","Latin small letter o with double acute":"拉ä¸å°å¯«å—æ¯ o 帶雙尖音符號","Latin capital ligature oe":"拉ä¸å¤§å¯«é€£å— OE","Latin small ligature oe":"拉ä¸å°å¯«é€£å— oe","Latin capital letter r with acute":"拉ä¸å¤§å¯«å—æ¯ R 帶尖音符號","Latin small letter r with acute":"拉ä¸å°å¯«å—æ¯ r 帶尖音符號","Latin capital letter r with cedilla":"拉ä¸å¤§å¯«å—æ¯ R 帶下尾符號","Latin small letter r with cedilla":"拉ä¸å°å¯«å—æ¯ r 帶下尾符號","Latin capital letter r with caron":"拉ä¸å¤§å¯«å—æ¯ R 帶上勾符號","Latin small letter r with caron":"拉ä¸å°å¯«å—æ¯ r 帶上勾符號","Latin capital letter s with acute":"拉ä¸å¤§å¯«å—æ¯ S 帶尖音符號","Latin small letter s with acute":"拉ä¸å°å¯«å—æ¯ s 帶尖音符號","Latin capital letter s with circumflex":"拉ä¸å¤§å¯«å—æ¯ S 帶抑æšç¬¦è™Ÿ","Latin small letter s with circumflex":"拉ä¸å°å¯«å—æ¯ s 帶抑æšç¬¦è™Ÿ","Latin capital letter s with cedilla":"拉ä¸å¤§å¯«å—æ¯ S 帶下尾符號","Latin small letter s with cedilla":"拉ä¸å°å¯«å—æ¯ s 帶下尾符號","Latin capital letter s with caron":"拉ä¸å¤§å¯«å—æ¯ S 帶上勾符號","Latin small letter s with caron":"拉ä¸å°å¯«å—æ¯ s 帶上勾符號","Latin capital letter t with cedilla":"拉ä¸å¤§å¯«å—æ¯ T 帶下尾符號","Latin small letter t with cedilla":"拉ä¸å°å¯«å—æ¯ t 帶下尾符號","Latin capital letter t with caron":"拉ä¸å¤§å¯«å—æ¯ T 帶上勾符號","Latin small letter t with caron":"拉ä¸å°å¯«å—æ¯ t 帶上勾符號","Latin capital letter t with stroke":"拉ä¸å¤§å¯«å—æ¯ T 帶粗線符號","Latin small letter t with stroke":"拉ä¸å°å¯«å—æ¯ t 帶粗線符號","Latin capital letter u with tilde":"拉ä¸å¤§å¯«å—æ¯ U 帶波狀符號","Latin small letter u with tilde":"拉ä¸å°å¯«å—æ¯ u 帶波狀符號","Latin capital letter u with macron":"拉ä¸å¤§å¯«å—æ¯ U 帶長音符號","Latin small letter u with macron":"拉ä¸å°å¯«å—æ¯ u 帶長音符號","Latin capital letter u with breve":"拉ä¸å¤§å¯«å—æ¯ U 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter u with breve":"拉ä¸å°å¯«å—æ¯ u 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter u with ring above":"拉ä¸å¤§å¯«å—æ¯ U 帶上圓圈","Latin small letter u with ring above":"拉ä¸å°å¯«å—æ¯ u 帶上圓圈","Latin capital letter u with double acute":"拉ä¸å¤§å¯«å—æ¯ U 帶雙尖音符號","Latin small letter u with double acute":"拉ä¸å°å¯«å—æ¯ u 帶雙尖音符號","Latin capital letter u with ogonek":"拉ä¸å¤§å¯«å—æ¯ U 帶 Ogonek","Latin small letter u with ogonek":"拉ä¸å°å¯«å—æ¯ u 帶 Ogonek","Latin capital letter w with circumflex":"拉ä¸å¤§å¯«å—æ¯ W 帶抑æšç¬¦è™Ÿ","Latin small letter w with circumflex":"拉ä¸å°å¯«å—æ¯ w 帶抑æšç¬¦è™Ÿ","Latin capital letter y with circumflex":"拉ä¸å¤§å¯«å—æ¯ Y 帶抑æšç¬¦è™Ÿ","Latin small letter y with circumflex":"拉ä¸å°å¯«å—æ¯ y 帶抑æšç¬¦è™Ÿ","Latin capital letter y with diaeresis":"拉ä¸å¤§å¯«å—æ¯ Y 帶分音符號","Latin capital letter z with acute":"拉ä¸å¤§å¯«å—æ¯ Z 帶尖音符號","Latin small letter z with acute":"拉ä¸å°å¯«å—æ¯ z 帶尖音符號","Latin capital letter z with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ Z","Latin small letter z with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ z","Latin capital letter z with caron":"拉ä¸å¤§å¯«å—æ¯ Z 帶上勾符號","Latin small letter z with caron":"拉ä¸å°å¯«å—æ¯ z 帶上勾符號","Latin small letter long s":"拉ä¸å°å¯«å—æ¯é•· s","Less-than sign":"å°æ–¼ç¬¦è™Ÿ","Greater-than sign":"大於符號","Less-than or equal to":"å°æ–¼æˆ–ç‰æ–¼","Greater-than or equal to":"大於或ç‰æ–¼","En dash":"çŸç ´æŠ˜è™Ÿ","Em dash":"é•·ç ´æŠ˜è™Ÿ",Macron:"長音符號",Overline:"é ‚ç·š","Degree sign":"度符號","Minus sign":"減號","Plus-minus sign":"åŠ æ¸›ç¬¦è™Ÿ","Division sign":"除號","Fraction slash":"分數斜線","Multiplication sign":"乘號","Latin small letter f with hook":"帶鉤的拉ä¸å°å¯«å—æ¯ f",Integral:"ç©åˆ†","N-ary summation":"N 元總åˆ",Infinity:"ç„¡é™","Square root":"å¹³æ–¹æ ¹","Tilde operator":"波狀符號é‹ç®—å","Approximately equal to":"ç´„ç‰æ–¼","Almost equal to":"幾乎ç‰æ–¼","Not equal to":"ä¸ç‰æ–¼","Identical to":"æ†ç‰æ–¼","Element of":"屬於","Not an element of":"ä¸å±¬æ–¼","Contains as member":"包å«","N-ary product":"N 元乘ç©","Logical and":"é‚輯 And","Logical or":"é‚輯 Or","Not sign":"Not 符號",Intersection:"交集",Union:"è¯é›†","Partial differential":"å微分","For all":"å°æ–¼æ‰€æœ‰","There exists":"å˜åœ¨","Empty set":"空集åˆ",Nabla:"倒三角算å","Asterisk operator":"星號é‹ç®—å","Proportional to":"æ£æ¯”æ–¼",Angle:"角度","Vulgar fraction one quarter":"普通分數四分之一","Vulgar fraction one half":"普通分數二分之一","Vulgar fraction three quarters":"普通分數四分之三","Single left-pointing angle quotation mark":"單左尖角括號","Single right-pointing angle quotation mark":"å–®å³å°–角括號","Left-pointing double angle quotation mark":"左尖雙角括號","Right-pointing double angle quotation mark":"å³å°–雙角括號","Left single quotation mark":"左單引號","Right single quotation mark":"å³å–®å¼•è™Ÿ","Left double quotation mark":"左雙引號","Right double quotation mark":"å³é›™å¼•è™Ÿ","Single low-9 quotation mark":"單下 9 形引號","Double low-9 quotation mark":"雙下 9 形引號","Inverted exclamation mark":"倒驚嘆號","Inverted question mark":"倒å•è™Ÿ","Two dot leader":"兩點å‰ç½®å—å…ƒ","Horizontal ellipsis":"æ°´å¹³çœç•¥ç¬¦è™Ÿ","Double dagger":"é›™åŠè¨»é‡‹ç¬¦è™Ÿ","Per mille sign":"åƒåˆ†è™Ÿ","Per ten thousand sign":"è¬åˆ†è™Ÿ","Double exclamation mark":"雙驚嘆號","Question exclamation mark":"ç–‘å•é©šå˜†è™Ÿ","Exclamation question mark":"驚嘆疑å•è™Ÿ","Double question mark":"é›™å•è™Ÿ","Copyright sign":"版權符號","Registered sign":"註冊商標符號","Trade mark sign":"商標符號","Section sign":"ç« ç¯€ç¬¦è™Ÿ","Paragraph sign":"段è½ç¬¦è™Ÿ","Reversed paragraph sign":"å段è½ç¬¦è™Ÿ","Character categories":"å—元類別",Styles:"樣å¼","Multiple styles":"多é‡æ¨£å¼","Block styles":"å€å¡Šæ¨£å¼","Text styles":"æ–‡å—樣å¼","Insert table":"æ’å…¥è¡¨æ ¼","Header column":"標題欄","Insert column left":"æ’入左方欄","Insert column right":"æ’å…¥å³æ–¹æ¬„","Delete column":"刪除欄","Select column":"é¸æ“‡æ¬„",Column:"欄","Header row":"標題列","Insert row below":"æ’入下方列","Insert row above":"æ’入上方列","Delete row":"刪除列","Select row":"é¸æ“‡åˆ—",Row:"列","Merge cell up":"åˆä½µä¸Šæ–¹å„²å˜æ ¼","Merge cell right":"åˆä½µå³æ–¹å„²å˜æ ¼","Merge cell down":"åˆä½µä¸‹æ–¹å„²å˜æ ¼","Merge cell left":"åˆä½µå·¦æ–¹å„²å˜æ ¼","Split cell vertically":"垂直分割儲å˜æ ¼","Split cell horizontally":"水平分割儲å˜æ ¼","Merge cells":"åˆä½µå„²å˜æ ¼","Table toolbar":"è¡¨æ ¼å·¥å…·","Table properties":"è¡¨æ ¼å±¬æ€§","Cell properties":"儲å˜æ ¼å±¬æ€§",Border:"邊框",Style:"樣å¼",Width:"寬度",Height:"高度",Color:"æ–‡å—é¡è‰²",Background:"背景é¡è‰²",Padding:"儲å˜æ ¼ç•™ç™½",Dimensions:"尺寸","Table cell text alignment":"儲å˜æ ¼æ–‡å—å°é½Š",Alignment:"å°é½Š","Horizontal text alignment toolbar":"æ°´å¹³å°é½Š","Vertical text alignment toolbar":"åž‚ç›´å°é½Š","Table alignment toolbar":"è¡¨æ ¼å°é½Š",None:"ç„¡",Solid:"實線",Dotted:"點線",Dashed:"虛線",Double:"雙線",Groove:"內凹線",Ridge:"凸起線",Inset:"內邊線",Outset:"外框線","Align cell text to the left":"é å·¦å°é½Š","Align cell text to the center":"ç½®ä¸å°é½Š","Align cell text to the right":"é å³å°é½Š","Justify cell text":"分散å°é½Š","Align cell text to the top":"å‘上å°é½Š","Align cell text to the middle":"ç½®ä¸å°é½Š","Align cell text to the bottom":"å‘下å°é½Š","Align table to the left":"é å·¦å°é½Š","Center table":"ç½®ä¸å°é½Š","Align table to the right":"é å³å°é½Š","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"é¡è‰²ä»£ç¢¼éŒ¯èª¤ã€‚試試看 \"#FF0000\" 或 \"rgb(255, 0, 0)\" 或 \"red\"。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"尺寸代碼錯誤。試試看 \"10px\" 或 \"2em\" 或簡單寫 \"2\"。","Color picker":"é¡è‰²é¸æ“‡","Toggle caption off":"關閉表標題","Toggle caption on":"開啟表標題","Enter table caption":"輸入表標題","Rich Text Editor":"富文本編輯器","Editor editing area: %0":"編輯器編輯å€ï¼š%0","Edit block":"編輯å€å¡Š","Click to edit block":"點擊來編輯å€å¡Š","Drag to move":"拖曳來移動",Next:"下一",Previous:"上一","Editor toolbar":"編輯器工具","Dropdown toolbar":"下拉é¸å–®",Black:"黑色","Dim grey":"æ·¡ç°è‰²",Grey:"ç°è‰²","Light grey":"亮ç°è‰²",White:"白色",Red:"紅色",Orange:"橘色",Yellow:"黃色","Light green":"äº®ç¶ è‰²",Green:"ç¶ è‰²",Aquamarine:"æ·ºç¶ è‰²",Turquoise:"è—ç¶ è‰²","Light blue":"亮è—色",Blue:"è—色",Purple:"紫色","Editor block content toolbar":"編輯器å€å¡Šå…§å®¹å·¥å…·åˆ—","Editor contextual toolbar":"編輯器關è¯å¼å·¥å…·åˆ—",HEX:"åå…進ä½",Accept:"接å—","No results found":"找ä¸åˆ°çµæžœ","No searchable items":"沒有å¯æœå°‹çš„é …ç›®","Editor dialog":"編輯工具å°è©±æ¡†",Close:"關閉",Undo:"å–消",Redo:"é‡åš","Upload in progress":"æ£åœ¨ä¸Šå‚³","Widget toolbar":"å°å·¥å…·","Insert paragraph before block":"在這個å€å¡Šå‰é¢æ’入一個段è½","Insert paragraph after block":"在這個å€å¡Šå¾Œé¢æ’入一個段è½","Press Enter to type after or press Shift + Enter to type before the widget":"按下 Enter 在å°å·¥å…·å¾Œè¼¸å…¥ï¼Œæˆ–按下 Shift + Enter 在å°å·¥å…·å‰è¼¸å…¥","Words: %0":"å—數: %0","Characters: %0":"å—元數: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file +(function(d){ const l = d['zh'] = d['zh'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Align left":"é å·¦å°é½Š","Align right":"é å³å°é½Š","Align center":"ç½®ä¸å°é½Š",Justify:"å·¦å³å°é½Š","Text alignment":"æ–‡å—å°é½Š","Text alignment toolbar":"æ–‡å—å°é½Š",Bold:"ç²—é«”",Italic:"斜體",Underline:"底線",Code:"代碼",Strikethrough:"刪除線",Subscript:"下標",Superscript:"上標","Block quote":"段è½å¼•ç”¨","Insert code block":"æ’入程å¼ç¢¼å€å¡Š","Plain text":"純文å—",Cancel:"å–消",Clear:"清除","Remove color":"移除é¡è‰²","Restore default":"é‡è¨è‡³é è¨å€¼",Save:"儲å˜","Show more items":"顯示更多","%0 of %1":"%0/%1","Cannot upload file:":"無法上傳檔案:","Rich Text Editor. Editing area: %0":"RTF 編輯器。編輯å€ï¼š%0","Insert with file manager":"使用檔案管ç†å“¡æ’å…¥","Replace with file manager":"使用檔案管ç†å“¡æ›¿æ›","Insert image with file manager":"使用檔案管ç†å“¡æ’入圖片","Replace image with file manager":"使用檔案管ç†å“¡æ›¿æ›åœ–片","Find and replace":"尋找和å–代","Find in text…":"在文本ä¸å°‹æ‰¾",Find:"尋找","Previous result":"å‰ä¸€å€‹çµæžœ","Next result":"後一個çµæžœ",Replace:"å–代","Replace all":"全部å–代","Match case":"大å°å¯«éœ€ç›¸ç¬¦","Whole words only":"僅全å—拼寫","Replace with…":"以…替代","Text to find must not be empty.":"ä¸èƒ½æŸ¥æ‰¾ç©ºå—串","Tip: Find some text first in order to replace it.":"æ示:先查找å—串å†å–代","Advanced options":"進階é¸é …","Font Size":"å—體大å°",Tiny:"特å°",Small:"å°",Big:"大",Huge:"特大","Font Family":"å—åž‹",Default:"é è¨","Font Color":"å—é«”é¡è‰²","Font Background Color":"å‰æ™¯é¡è‰²","Document colors":"文件é¡è‰²",Paragraph:"段è½",Heading:"標題","Choose heading":"é¸å–標題","Heading 1":"標題 1","Heading 2":"標題 2","Heading 3":"標題 3","Heading 4":"標題 4","Heading 5":"標題 5","Heading 6":"標題 6","Type your title":"è¼¸å…¥ä½ çš„æ¨™é¡Œ","Type or paste your content here.":"在æ¤è¼¸å…¥æˆ–è²¼ä¸Šä½ çš„å…§å®¹ã€‚","Horizontal line":"水平線","HTML object":"HTML 物件","Increase indent":"å¢žåŠ ç¸®æŽ’","Decrease indent":"減少縮排",Unlink:"移除連çµ",Link:"連çµ","Link URL":"連çµË™ URL","Link image":"圖片連çµ","Edit link":"編輯連çµ","Open link in new tab":"在新視窗開啟連çµ","This link has no URL":"æ¤é€£çµæ²’有URL","Open in a new tab":"在新視窗開啟",Downloadable:"å¯ä¸‹è¼‰","Numbered List":"有åºæ¸…å–®","Bulleted List":"符號清單","To-do List":"代辦清單","Bulleted list styles toolbar":"ç„¡åºæ¸…單工具列","Numbered list styles toolbar":"有åºæ¸…單工具列","Toggle the disc list style":"切æ›ç‚ºå¯¦å¿ƒåœ“點標示","Toggle the circle list style":"切æ›ç‚ºç©ºå¿ƒåœ“點標示","Toggle the square list style":"切æ›ç‚ºæ–¹å½¢æ¨™ç¤º","Toggle the decimal list style":"切æ›ç‚ºæ•¸å—標示","Toggle the decimal with leading zero list style":"切æ›ç‚º0é–‹é 的數å—標示","Toggle the lower–roman list style":"切æ›ç‚ºå°å¯«ç¾…馬數å—標示","Toggle the upper–roman list style":"切æ›ç‚ºå¤§å¯«ç¾…馬數å—標示","Toggle the lower–latin list style":"切æ›ç‚ºå°å¯«æ‹‰ä¸æ–‡å—標示","Toggle the upper–latin list style":"切æ›ç‚ºå¤§å¯«æ‹‰ä¸æ–‡å—標示",Disc:"實心圓點",Circle:"空心圓點",Square:"方形",Decimal:"數å—","Decimal with leading zero":"0é–‹é 的數å—","Lower–roman":"å°å¯«ç¾…馬數å—","Upper-roman":"大寫羅馬數å—","Lower-latin":"å°å¯«æ‹‰ä¸å—æ¯","Upper-latin":"大寫拉ä¸å—æ¯","List properties":"清單屬性","Start at":"起始於","Start index must be greater than 0.":"èµ·å§‹ç´¢å¼•é ˆå¤§æ–¼ 0。","Reversed order":"åè½‰é †åº","Remove Format":"ç§»é™¤æ ¼å¼","Select all":"é¸å–全部","Show blocks":"顯示å€å¡Š",Source:"原始碼","Special characters":"特殊å—å…ƒ",All:"所有",Arrows:"ç®é ",Currency:"貨幣",Latin:"拉ä¸å—æ¯",Mathematical:"數å¸",Text:"æ–‡å—","leftwards simple arrow":"å‘左簡單ç®è™Ÿ","rightwards simple arrow":"å‘å³ç°¡å–®ç®è™Ÿ","upwards simple arrow":"å‘上簡單ç®è™Ÿ","downwards simple arrow":"å‘下簡單ç®è™Ÿ","leftwards double arrow":"å‘左雙ç®é ","rightwards double arrow":"å‘å³é›™ç®é ","upwards double arrow":"å‘上雙ç®é ","downwards double arrow":"å‘下雙ç®é ","leftwards dashed arrow":"å‘左虛線ç®é ","rightwards dashed arrow":"å‘å³è™›ç·šç®é ","upwards dashed arrow":"å‘上虛線ç®é ","downwards dashed arrow":"å‘下虛線ç®é ","leftwards arrow to bar":"å‘å·¦åœæ¢ç®é ","rightwards arrow to bar":"å‘å³åœæ¢ç®é ","upwards arrow to bar":"å‘上åœæ¢ç®é ","downwards arrow to bar":"å‘下åœæ¢ç®é ","up down arrow with base":"有底線的上下ç®è™Ÿ","back with leftwards arrow above":"Back 上方有å‘å·¦ç®è™Ÿ","end with leftwards arrow above":"End 上方有å‘å·¦ç®è™Ÿ","on with exclamation mark with left right arrow above":"帶驚嘆號的 On 上方有左å³é›™å‘ç®è™Ÿ","soon with rightwards arrow above":"Soon 上方有å‘å³ç®è™Ÿ","top with upwards arrow above":"Top 上方有å‘上ç®è™Ÿ","Dollar sign":"貨幣符號","Euro sign":"æ元符號","Yen sign":"日圓符號","Pound sign":"英鎊符號","Cent sign":"美分符號","Euro-currency sign":"æ元貨幣符號","Colon sign":"冒號","Cruzeiro sign":"å…‹é¯è–©å¤šç¬¦è™Ÿ","French franc sign":"法國法郎符號","Lira sign":"里拉符號","Currency sign":"貨幣符號","Bitcoin sign":"比特幣符號","Mill sign":"密爾符號","Naira sign":"奈åŠåˆ©äºžå¥ˆæ‹‰ç¬¦è™Ÿ","Peseta sign":"比塞塔符號","Rupee sign":"å°åº¦ç›§æ¯”符號","Won sign":"圜符號","New sheqel sign":"æ–°è¬å…‹çˆ¾ç¬¦è™Ÿ","Dong sign":"盾符號","Kip sign":"基普符號","Tugrik sign":"åœ–æ ¼é‡Œå…‹ç¬¦è™Ÿ","Drachma sign":"得拉克馬符號","German penny sign":"德國便士符號","Peso sign":"披索符號","Guarani sign":"瓜拉尼符號","Austral sign":"奧斯特拉爾符號","Hryvnia sign":"赫ä¼å°¼äºžç¬¦è™Ÿ","Cedi sign":"塞地符號","Livre tournois sign":"里弗爾法鎊符號","Spesmilo sign":"Spesmilo 貨幣符號","Tenge sign":"å‹˜å¯ŸåŠ å¹£ç¬¦è™Ÿ","Indian rupee sign":"å°åº¦ç›§æ¯”符號","Turkish lira sign":"土耳其里拉符號","Nordic mark sign":"日耳曼馬克符號","Manat sign":"馬ç´ç‰¹ç¬¦è™Ÿ","Ruble sign":"盧布符號","Latin capital letter a with macron":"拉ä¸å¤§å¯«å—æ¯ A 帶長音符號","Latin small letter a with macron":"拉ä¸å°å¯«å—æ¯ a 帶長音符號","Latin capital letter a with breve":"拉ä¸å¤§å¯«å—æ¯ A 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter a with breve":"拉ä¸å°å¯«å—æ¯ a 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter a with ogonek":"拉ä¸å¤§å¯«å—æ¯ A 帶 Ogonek","Latin small letter a with ogonek":"拉ä¸å°å¯«å—æ¯ a 帶 Ogonek","Latin capital letter c with acute":"拉ä¸å¤§å¯«å—æ¯ C 帶尖音符號","Latin small letter c with acute":"拉ä¸å°å¯«å—æ¯ c 帶尖音符號","Latin capital letter c with circumflex":"拉ä¸å¤§å¯«å—æ¯ C 帶抑æšç¬¦è™Ÿ","Latin small letter c with circumflex":"拉ä¸å°å¯«å—æ¯ c 帶抑æšç¬¦è™Ÿ","Latin capital letter c with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ C","Latin small letter c with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ c","Latin capital letter c with caron":"拉ä¸å¤§å¯«å—æ¯ C 帶上勾符號","Latin small letter c with caron":"拉ä¸å°å¯«å—æ¯ c 帶上勾符號","Latin capital letter d with caron":"拉ä¸å¤§å¯«å—æ¯ D 帶上勾符號","Latin small letter d with caron":"拉ä¸å°å¯«å—æ¯ d 帶上勾符號","Latin capital letter d with stroke":"拉ä¸å¤§å¯«å—æ¯ D 帶粗線符號","Latin small letter d with stroke":"拉ä¸å°å¯«å—æ¯ d 帶粗線符號","Latin capital letter e with macron":"拉ä¸å¤§å¯«å—æ¯ E 帶長音符號","Latin small letter e with macron":"拉ä¸å°å¯«å—æ¯ e 帶長音符號","Latin capital letter e with breve":"拉ä¸å¤§å¯«å—æ¯ E 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter e with breve":"拉ä¸å°å¯«å—æ¯ e 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter e with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ E","Latin small letter e with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ e","Latin capital letter e with ogonek":"拉ä¸å¤§å¯«å—æ¯ E 帶 Ogonek","Latin small letter e with ogonek":"拉ä¸å°å¯«å—æ¯ e 帶 Ogonek","Latin capital letter e with caron":"拉ä¸å¤§å¯«å—æ¯ E 帶上勾符號","Latin small letter e with caron":"拉ä¸å°å¯«å—æ¯ e 帶上勾符號","Latin capital letter g with circumflex":"拉ä¸å¤§å¯«å—æ¯ G 帶抑æšç¬¦è™Ÿ","Latin small letter g with circumflex":"拉ä¸å°å¯«å—æ¯ g 帶抑æšç¬¦è™Ÿ","Latin capital letter g with breve":"拉ä¸å¤§å¯«å—æ¯ G 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter g with breve":"拉ä¸å°å¯«å—æ¯ g 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter g with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ G","Latin small letter g with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ g","Latin capital letter g with cedilla":"拉ä¸å¤§å¯«å—æ¯ G 帶下尾符號","Latin small letter g with cedilla":"拉ä¸å°å¯«å—æ¯ g 帶下尾符號","Latin capital letter h with circumflex":"拉ä¸å¤§å¯«å—æ¯ H 帶抑æšç¬¦è™Ÿ","Latin small letter h with circumflex":"拉ä¸å°å¯«å—æ¯ h 帶抑æšç¬¦è™Ÿ","Latin capital letter h with stroke":"拉ä¸å¤§å¯«å—æ¯ H 帶粗線符號","Latin small letter h with stroke":"拉ä¸å°å¯«å—æ¯ h 帶粗線符號","Latin capital letter i with tilde":"拉ä¸å¤§å¯«å—æ¯ I 帶波狀符號","Latin small letter i with tilde":"拉ä¸å°å¯«å—æ¯ i 帶波狀符號","Latin capital letter i with macron":"拉ä¸å¤§å¯«å—æ¯ I 帶長音符號","Latin small letter i with macron":"拉ä¸å°å¯«å—æ¯ i 帶長音符號","Latin capital letter i with breve":"拉ä¸å¤§å¯«å—æ¯ I 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter i with breve":"拉ä¸å°å¯«å—æ¯ i 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter i with ogonek":"拉ä¸å¤§å¯«å—æ¯ I 帶 Ogonek","Latin small letter i with ogonek":"拉ä¸å°å¯«å—æ¯ i 帶 Ogonek","Latin capital letter i with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ I","Latin small letter dotless i":"拉ä¸å°å¯«å—æ¯ç„¡é»ž I","Latin capital ligature ij":"拉ä¸å¤§å¯«é€£å— IJ","Latin small ligature ij":"拉ä¸å°å¯«é€£å— ij","Latin capital letter j with circumflex":"拉ä¸å¤§å¯«å—æ¯ J 帶抑æšç¬¦è™Ÿ","Latin small letter j with circumflex":"拉ä¸å°å¯«å—æ¯ j 帶抑æšç¬¦è™Ÿ","Latin capital letter k with cedilla":"拉ä¸å¤§å¯«å—æ¯ K 帶下尾符號","Latin small letter k with cedilla":"拉ä¸å°å¯«å—æ¯ k 帶下尾符號","Latin small letter kra":"拉ä¸å°å¯«å—æ¯ kra","Latin capital letter l with acute":"拉ä¸å¤§å¯«å—æ¯ L 帶尖音符號","Latin small letter l with acute":"拉ä¸å°å¯«å—æ¯ l 帶尖音符號","Latin capital letter l with cedilla":"拉ä¸å¤§å¯«å—æ¯ L 帶下尾符號","Latin small letter l with cedilla":"拉ä¸å°å¯«å—æ¯ l 帶下尾符號","Latin capital letter l with caron":"拉ä¸å¤§å¯«å—æ¯ L 帶上勾符號","Latin small letter l with caron":"拉ä¸å°å¯«å—æ¯ l 帶上勾符號","Latin capital letter l with middle dot":"ä¸é–“一點的拉ä¸å¤§å¯«å—æ¯ L","Latin small letter l with middle dot":"ä¸é–“一點的拉ä¸å°å¯«å—æ¯ l","Latin capital letter l with stroke":"拉ä¸å¤§å¯«å—æ¯ L 帶粗線符號","Latin small letter l with stroke":"拉ä¸å°å¯«å—æ¯ l 帶粗線符號","Latin capital letter n with acute":"拉ä¸å¤§å¯«å—æ¯ N 帶尖音符號","Latin small letter n with acute":"拉ä¸å°å¯«å—æ¯ n 帶尖音符號","Latin capital letter n with cedilla":"拉ä¸å¤§å¯«å—æ¯ N 帶下尾符號","Latin small letter n with cedilla":"拉ä¸å°å¯«å—æ¯ n 帶下尾符號","Latin capital letter n with caron":"拉ä¸å¤§å¯«å—æ¯ N 帶上勾符號","Latin small letter n with caron":"拉ä¸å°å¯«å—æ¯ n 帶上勾符號","Latin small letter n preceded by apostrophe":"å‰æœ‰æ’‡è™Ÿçš„拉ä¸å°å¯«å—æ¯ n","Latin capital letter eng":"拉ä¸å¤§å¯«å—æ¯ Eng","Latin small letter eng":"拉ä¸å°å¯«å—æ¯ Eng","Latin capital letter o with macron":"拉ä¸å¤§å¯«å—æ¯ O 帶長音符號","Latin small letter o with macron":"拉ä¸å°å¯«å—æ¯ o 帶長音符號","Latin capital letter o with breve":"拉ä¸å¤§å¯«å—æ¯ O 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter o with breve":"拉ä¸å°å¯«å—æ¯ o 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter o with double acute":"拉ä¸å¤§å¯«å—æ¯ O 帶雙尖音符號","Latin small letter o with double acute":"拉ä¸å°å¯«å—æ¯ o 帶雙尖音符號","Latin capital ligature oe":"拉ä¸å¤§å¯«é€£å— OE","Latin small ligature oe":"拉ä¸å°å¯«é€£å— oe","Latin capital letter r with acute":"拉ä¸å¤§å¯«å—æ¯ R 帶尖音符號","Latin small letter r with acute":"拉ä¸å°å¯«å—æ¯ r 帶尖音符號","Latin capital letter r with cedilla":"拉ä¸å¤§å¯«å—æ¯ R 帶下尾符號","Latin small letter r with cedilla":"拉ä¸å°å¯«å—æ¯ r 帶下尾符號","Latin capital letter r with caron":"拉ä¸å¤§å¯«å—æ¯ R 帶上勾符號","Latin small letter r with caron":"拉ä¸å°å¯«å—æ¯ r 帶上勾符號","Latin capital letter s with acute":"拉ä¸å¤§å¯«å—æ¯ S 帶尖音符號","Latin small letter s with acute":"拉ä¸å°å¯«å—æ¯ s 帶尖音符號","Latin capital letter s with circumflex":"拉ä¸å¤§å¯«å—æ¯ S 帶抑æšç¬¦è™Ÿ","Latin small letter s with circumflex":"拉ä¸å°å¯«å—æ¯ s 帶抑æšç¬¦è™Ÿ","Latin capital letter s with cedilla":"拉ä¸å¤§å¯«å—æ¯ S 帶下尾符號","Latin small letter s with cedilla":"拉ä¸å°å¯«å—æ¯ s 帶下尾符號","Latin capital letter s with caron":"拉ä¸å¤§å¯«å—æ¯ S 帶上勾符號","Latin small letter s with caron":"拉ä¸å°å¯«å—æ¯ s 帶上勾符號","Latin capital letter t with cedilla":"拉ä¸å¤§å¯«å—æ¯ T 帶下尾符號","Latin small letter t with cedilla":"拉ä¸å°å¯«å—æ¯ t 帶下尾符號","Latin capital letter t with caron":"拉ä¸å¤§å¯«å—æ¯ T 帶上勾符號","Latin small letter t with caron":"拉ä¸å°å¯«å—æ¯ t 帶上勾符號","Latin capital letter t with stroke":"拉ä¸å¤§å¯«å—æ¯ T 帶粗線符號","Latin small letter t with stroke":"拉ä¸å°å¯«å—æ¯ t 帶粗線符號","Latin capital letter u with tilde":"拉ä¸å¤§å¯«å—æ¯ U 帶波狀符號","Latin small letter u with tilde":"拉ä¸å°å¯«å—æ¯ u 帶波狀符號","Latin capital letter u with macron":"拉ä¸å¤§å¯«å—æ¯ U 帶長音符號","Latin small letter u with macron":"拉ä¸å°å¯«å—æ¯ u 帶長音符號","Latin capital letter u with breve":"拉ä¸å¤§å¯«å—æ¯ U 帶çŸéŸ³ç¬¦è™Ÿ","Latin small letter u with breve":"拉ä¸å°å¯«å—æ¯ u 帶çŸéŸ³ç¬¦è™Ÿ","Latin capital letter u with ring above":"拉ä¸å¤§å¯«å—æ¯ U 帶上圓圈","Latin small letter u with ring above":"拉ä¸å°å¯«å—æ¯ u 帶上圓圈","Latin capital letter u with double acute":"拉ä¸å¤§å¯«å—æ¯ U 帶雙尖音符號","Latin small letter u with double acute":"拉ä¸å°å¯«å—æ¯ u 帶雙尖音符號","Latin capital letter u with ogonek":"拉ä¸å¤§å¯«å—æ¯ U 帶 Ogonek","Latin small letter u with ogonek":"拉ä¸å°å¯«å—æ¯ u 帶 Ogonek","Latin capital letter w with circumflex":"拉ä¸å¤§å¯«å—æ¯ W 帶抑æšç¬¦è™Ÿ","Latin small letter w with circumflex":"拉ä¸å°å¯«å—æ¯ w 帶抑æšç¬¦è™Ÿ","Latin capital letter y with circumflex":"拉ä¸å¤§å¯«å—æ¯ Y 帶抑æšç¬¦è™Ÿ","Latin small letter y with circumflex":"拉ä¸å°å¯«å—æ¯ y 帶抑æšç¬¦è™Ÿ","Latin capital letter y with diaeresis":"拉ä¸å¤§å¯«å—æ¯ Y 帶分音符號","Latin capital letter z with acute":"拉ä¸å¤§å¯«å—æ¯ Z 帶尖音符號","Latin small letter z with acute":"拉ä¸å°å¯«å—æ¯ z 帶尖音符號","Latin capital letter z with dot above":"上有一點的拉ä¸å¤§å¯«å—æ¯ Z","Latin small letter z with dot above":"上有一點的拉ä¸å°å¯«å—æ¯ z","Latin capital letter z with caron":"拉ä¸å¤§å¯«å—æ¯ Z 帶上勾符號","Latin small letter z with caron":"拉ä¸å°å¯«å—æ¯ z 帶上勾符號","Latin small letter long s":"拉ä¸å°å¯«å—æ¯é•· s","Less-than sign":"å°æ–¼ç¬¦è™Ÿ","Greater-than sign":"大於符號","Less-than or equal to":"å°æ–¼æˆ–ç‰æ–¼","Greater-than or equal to":"大於或ç‰æ–¼","En dash":"çŸç ´æŠ˜è™Ÿ","Em dash":"é•·ç ´æŠ˜è™Ÿ",Macron:"長音符號",Overline:"é ‚ç·š","Degree sign":"度符號","Minus sign":"減號","Plus-minus sign":"åŠ æ¸›ç¬¦è™Ÿ","Division sign":"除號","Fraction slash":"分數斜線","Multiplication sign":"乘號","Latin small letter f with hook":"帶鉤的拉ä¸å°å¯«å—æ¯ f",Integral:"ç©åˆ†","N-ary summation":"N 元總åˆ",Infinity:"ç„¡é™","Square root":"å¹³æ–¹æ ¹","Tilde operator":"波狀符號é‹ç®—å","Approximately equal to":"ç´„ç‰æ–¼","Almost equal to":"幾乎ç‰æ–¼","Not equal to":"ä¸ç‰æ–¼","Identical to":"æ†ç‰æ–¼","Element of":"屬於","Not an element of":"ä¸å±¬æ–¼","Contains as member":"包å«","N-ary product":"N 元乘ç©","Logical and":"é‚輯 And","Logical or":"é‚輯 Or","Not sign":"Not 符號",Intersection:"交集",Union:"è¯é›†","Partial differential":"å微分","For all":"å°æ–¼æ‰€æœ‰","There exists":"å˜åœ¨","Empty set":"空集åˆ",Nabla:"倒三角算å","Asterisk operator":"星號é‹ç®—å","Proportional to":"æ£æ¯”æ–¼",Angle:"角度","Vulgar fraction one quarter":"普通分數四分之一","Vulgar fraction one half":"普通分數二分之一","Vulgar fraction three quarters":"普通分數四分之三","Single left-pointing angle quotation mark":"單左尖角括號","Single right-pointing angle quotation mark":"å–®å³å°–角括號","Left-pointing double angle quotation mark":"左尖雙角括號","Right-pointing double angle quotation mark":"å³å°–雙角括號","Left single quotation mark":"左單引號","Right single quotation mark":"å³å–®å¼•è™Ÿ","Left double quotation mark":"左雙引號","Right double quotation mark":"å³é›™å¼•è™Ÿ","Single low-9 quotation mark":"單下 9 形引號","Double low-9 quotation mark":"雙下 9 形引號","Inverted exclamation mark":"倒驚嘆號","Inverted question mark":"倒å•è™Ÿ","Two dot leader":"兩點å‰ç½®å—å…ƒ","Horizontal ellipsis":"æ°´å¹³çœç•¥ç¬¦è™Ÿ","Double dagger":"é›™åŠè¨»é‡‹ç¬¦è™Ÿ","Per mille sign":"åƒåˆ†è™Ÿ","Per ten thousand sign":"è¬åˆ†è™Ÿ","Double exclamation mark":"雙驚嘆號","Question exclamation mark":"ç–‘å•é©šå˜†è™Ÿ","Exclamation question mark":"驚嘆疑å•è™Ÿ","Double question mark":"é›™å•è™Ÿ","Copyright sign":"版權符號","Registered sign":"註冊商標符號","Trade mark sign":"商標符號","Section sign":"ç« ç¯€ç¬¦è™Ÿ","Paragraph sign":"段è½ç¬¦è™Ÿ","Reversed paragraph sign":"å段è½ç¬¦è™Ÿ","Character categories":"å—元類別",Styles:"樣å¼","Multiple styles":"多é‡æ¨£å¼","Block styles":"å€å¡Šæ¨£å¼","Text styles":"æ–‡å—樣å¼","Insert table":"æ’å…¥è¡¨æ ¼","Header column":"標題欄","Insert column left":"æ’入左方欄","Insert column right":"æ’å…¥å³æ–¹æ¬„","Delete column":"刪除欄","Select column":"é¸æ“‡æ¬„",Column:"欄","Header row":"標題列","Insert row below":"æ’入下方列","Insert row above":"æ’入上方列","Delete row":"刪除列","Select row":"é¸æ“‡åˆ—",Row:"列","Merge cell up":"åˆä½µä¸Šæ–¹å„²å˜æ ¼","Merge cell right":"åˆä½µå³æ–¹å„²å˜æ ¼","Merge cell down":"åˆä½µä¸‹æ–¹å„²å˜æ ¼","Merge cell left":"åˆä½µå·¦æ–¹å„²å˜æ ¼","Split cell vertically":"垂直分割儲å˜æ ¼","Split cell horizontally":"水平分割儲å˜æ ¼","Merge cells":"åˆä½µå„²å˜æ ¼","Table toolbar":"è¡¨æ ¼å·¥å…·","Table properties":"è¡¨æ ¼å±¬æ€§","Cell properties":"儲å˜æ ¼å±¬æ€§",Border:"邊框",Style:"樣å¼",Width:"寬度",Height:"高度",Color:"æ–‡å—é¡è‰²",Background:"背景é¡è‰²",Padding:"儲å˜æ ¼ç•™ç™½",Dimensions:"尺寸","Table cell text alignment":"儲å˜æ ¼æ–‡å—å°é½Š",Alignment:"å°é½Š","Horizontal text alignment toolbar":"æ°´å¹³å°é½Š","Vertical text alignment toolbar":"åž‚ç›´å°é½Š","Table alignment toolbar":"è¡¨æ ¼å°é½Š",None:"ç„¡",Solid:"實線",Dotted:"點線",Dashed:"虛線",Double:"雙線",Groove:"內凹線",Ridge:"凸起線",Inset:"內邊線",Outset:"外框線","Align cell text to the left":"é å·¦å°é½Š","Align cell text to the center":"ç½®ä¸å°é½Š","Align cell text to the right":"é å³å°é½Š","Justify cell text":"分散å°é½Š","Align cell text to the top":"å‘上å°é½Š","Align cell text to the middle":"ç½®ä¸å°é½Š","Align cell text to the bottom":"å‘下å°é½Š","Align table to the left":"é å·¦å°é½Š","Center table":"ç½®ä¸å°é½Š","Align table to the right":"é å³å°é½Š","The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\".":"é¡è‰²ä»£ç¢¼éŒ¯èª¤ã€‚試試看 \"#FF0000\" 或 \"rgb(255, 0, 0)\" 或 \"red\"。","The value is invalid. Try \"10px\" or \"2em\" or simply \"2\".":"尺寸代碼錯誤。試試看 \"10px\" 或 \"2em\" 或簡單寫 \"2\"。","Color picker":"é¡è‰²é¸æ“‡","Toggle caption off":"關閉表標題","Toggle caption on":"開啟表標題","Enter table caption":"輸入表標題","Rich Text Editor":"富文本編輯器","Editor editing area: %0":"編輯器編輯å€ï¼š%0","Edit block":"編輯å€å¡Š","Click to edit block":"點擊來編輯å€å¡Š","Drag to move":"拖曳來移動",Next:"下一",Previous:"上一","Editor toolbar":"編輯器工具","Dropdown toolbar":"下拉é¸å–®",Black:"黑色","Dim grey":"æ·¡ç°è‰²",Grey:"ç°è‰²","Light grey":"亮ç°è‰²",White:"白色",Red:"紅色",Orange:"橘色",Yellow:"黃色","Light green":"äº®ç¶ è‰²",Green:"ç¶ è‰²",Aquamarine:"æ·ºç¶ è‰²",Turquoise:"è—ç¶ è‰²","Light blue":"亮è—色",Blue:"è—色",Purple:"紫色","Editor block content toolbar":"編輯器å€å¡Šå…§å®¹å·¥å…·åˆ—","Editor contextual toolbar":"編輯器關è¯å¼å·¥å…·åˆ—",HEX:"åå…進ä½",Accept:"接å—","No results found":"找ä¸åˆ°çµæžœ","No searchable items":"沒有å¯æœå°‹çš„é …ç›®","Editor dialog":"編輯工具å°è©±æ¡†",Close:"關閉",Undo:"å–消",Redo:"é‡åš","Upload in progress":"æ£åœ¨ä¸Šå‚³","Widget toolbar":"å°å·¥å…·","Insert paragraph before block":"在這個å€å¡Šå‰é¢æ’入一個段è½","Insert paragraph after block":"在這個å€å¡Šå¾Œé¢æ’入一個段è½","Press Enter to type after or press Shift + Enter to type before the widget":"按下 Enter 在å°å·¥å…·å¾Œè¼¸å…¥ï¼Œæˆ–按下 Shift + Enter 在å°å·¥å…·å‰è¼¸å…¥","Words: %0":"å—數: %0","Characters: %0":"å—元數: %0"} );l.getPluralForm=function(n){return 0;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); \ No newline at end of file