From 10454b58985d423ba1430844652ff38609e0445a Mon Sep 17 00:00:00 2001 From: LogansUA Date: Mon, 18 Apr 2016 09:28:10 +0300 Subject: [PATCH 01/43] Change getting request service --- Twig/Extension/StfalconTinymceExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index fb716edc..59095bbf 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -127,7 +127,7 @@ public function tinymceInit($options = array()) // If the language is not set in the config... if (!isset($config['language']) || empty($config['language'])) { // get it from the request - $config['language'] = $this->container->get('request_stack')->getCurrentRequest()->getLocale(); + $config['language'] = $this->container->get('request')->getLocale(); } $config['language'] = LocaleHelper::getLanguage($config['language']); From 7f5e753165a01ebaf8d6a8efb737144ff22db63c Mon Sep 17 00:00:00 2001 From: Jim Seconde Date: Thu, 28 Apr 2016 12:38:21 +0100 Subject: [PATCH 02/43] Small tweak to readme to reflect Symfony moving console to /bin/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b4db420..7ec37fee 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ $ php composer.phar require stfalcon/tinymce-bundle='X.Y' ### The bundle needs to copy the resources necessary to the web folder. You can use the command below: ``` -$ php app/console assets:install web/ +$ php bin/console assets:install web/ ``` ## Include in template From c7f170de56dfe8ce5326ffec298a0f595554e1e4 Mon Sep 17 00:00:00 2001 From: LogansUA Date: Wed, 18 May 2016 18:01:08 +0300 Subject: [PATCH 03/43] Manage file_picker_callback option --- Twig/Extension/StfalconTinymceExtension.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index fb716edc..87506ef0 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -166,10 +166,12 @@ public function tinymceInit($options = array()) $tinymceConfiguration = preg_replace( array( '/"file_browser_callback":"([^"]+)"\s*/', + '/"file_picker_callback":"([^"]+)"\s*/', '/"paste_preprocess":"([^"]+)"\s*/', ), array( 'file_browser_callback:$1', + 'file_picker_callback:$1', '"paste_preprocess":$1', ), json_encode($config) From e008597ec7baaa56ac11693fca3eb62b239b5005 Mon Sep 17 00:00:00 2001 From: Den Date: Tue, 27 Sep 2016 18:04:51 +0300 Subject: [PATCH 04/43] Update StfalconTinymceExtension.php --- Twig/Extension/StfalconTinymceExtension.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index f5793046..a3dc75d1 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -151,7 +151,10 @@ public function tinymceInit($options = array()) foreach ($config['theme'] as $themeName => $themeOptions) { if (isset($themeOptions['content_css'])) { // As there may be multiple CSS Files specified we need to parse each of them individually - $cssFiles = explode(',', $themeOptions['content_css']); + $cssFiles = $themeOptions['content_css']; + if (!is_array($themeOptions['content_css'])) { + $cssFiles = explode(',', $themeOptions['content_css']); + } foreach ($cssFiles as $idx => $file) { $cssFiles[$idx] = $this->getAssetsUrl(trim($file)); // we trim to be sure we get the file without spaces. From 1e6d72020952d8494369721b6bf13475fd420bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20W=C4=85tor?= Date: Tue, 16 Jun 2020 09:44:12 +0200 Subject: [PATCH 05/43] Upgrade to TinyMCE 5.3.2 --- .idea/.gitignore | 8 + .idea/codestream.xml | 6 + .idea/inspectionProfiles/Project_Default.xml | 11 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/php.xml | 4 + .idea/tinymce-bundle.iml | 12 + .idea/vcs.xml | 6 + Helper/LocaleHelper.php | 1 + Resources/public/js/init.standard.js | 32 +- Resources/public/vendor/tinymce/changelog.txt | 2269 +++-- .../vendor/tinymce/icons/default/icons.min.js | 1 + .../vendor/tinymce/jquery.tinymce.min.js | 93 +- Resources/public/vendor/tinymce/langs/ar.js | 180 - .../public/vendor/tinymce/langs/ar_SA.js | 180 - Resources/public/vendor/tinymce/langs/az.js | 194 - Resources/public/vendor/tinymce/langs/be.js | 197 - .../public/vendor/tinymce/langs/bg_BG.js | 197 - .../public/vendor/tinymce/langs/bn_BD.js | 179 - Resources/public/vendor/tinymce/langs/bs.js | 196 - Resources/public/vendor/tinymce/langs/ca.js | 197 - Resources/public/vendor/tinymce/langs/cs.js | 197 - Resources/public/vendor/tinymce/langs/cy.js | 179 - Resources/public/vendor/tinymce/langs/da.js | 197 - Resources/public/vendor/tinymce/langs/de.js | 197 - .../public/vendor/tinymce/langs/de_AT.js | 197 - Resources/public/vendor/tinymce/langs/dv.js | 192 - Resources/public/vendor/tinymce/langs/el.js | 197 - .../public/vendor/tinymce/langs/en_CA.js | 191 - .../public/vendor/tinymce/langs/en_GB.js | 179 - Resources/public/vendor/tinymce/langs/es.js | 197 - Resources/public/vendor/tinymce/langs/et.js | 179 - Resources/public/vendor/tinymce/langs/eu.js | 191 - Resources/public/vendor/tinymce/langs/fa.js | 180 - .../public/vendor/tinymce/langs/fa_IR.js | 113 - Resources/public/vendor/tinymce/langs/fi.js | 194 - Resources/public/vendor/tinymce/langs/fo.js | 179 - .../public/vendor/tinymce/langs/fr_FR.js | 197 - Resources/public/vendor/tinymce/langs/gd.js | 179 - Resources/public/vendor/tinymce/langs/gl.js | 191 - .../public/vendor/tinymce/langs/he_IL.js | 180 - Resources/public/vendor/tinymce/langs/hr.js | 179 - .../public/vendor/tinymce/langs/hu_HU.js | 197 - Resources/public/vendor/tinymce/langs/hy.js | 190 - Resources/public/vendor/tinymce/langs/id.js | 186 - .../public/vendor/tinymce/langs/is_IS.js | 179 - Resources/public/vendor/tinymce/langs/it.js | 197 - Resources/public/vendor/tinymce/langs/ja.js | 197 - .../public/vendor/tinymce/langs/ka_GE.js | 179 - Resources/public/vendor/tinymce/langs/kk.js | 179 - .../public/vendor/tinymce/langs/km_KH.js | 197 - .../public/vendor/tinymce/langs/ko_KR.js | 186 - Resources/public/vendor/tinymce/langs/lb.js | 180 - Resources/public/vendor/tinymce/langs/lt.js | 186 - Resources/public/vendor/tinymce/langs/lv.js | 197 - Resources/public/vendor/tinymce/langs/ml.js | 179 - .../public/vendor/tinymce/langs/ml_IN.js | 179 - .../public/vendor/tinymce/langs/mn_MN.js | 179 - .../public/vendor/tinymce/langs/nb_NO.js | 197 - Resources/public/vendor/tinymce/langs/nl.js | 197 - Resources/public/vendor/tinymce/langs/pl.js | 191 - .../public/vendor/tinymce/langs/pt_BR.js | 191 - .../public/vendor/tinymce/langs/pt_PT.js | 197 - Resources/public/vendor/tinymce/langs/ro.js | 197 - Resources/public/vendor/tinymce/langs/ru.js | 197 - .../public/vendor/tinymce/langs/si_LK.js | 179 - Resources/public/vendor/tinymce/langs/sk.js | 197 - .../public/vendor/tinymce/langs/sl_SI.js | 179 - Resources/public/vendor/tinymce/langs/sr.js | 179 - .../public/vendor/tinymce/langs/sv_SE.js | 197 - Resources/public/vendor/tinymce/langs/ta.js | 197 - .../public/vendor/tinymce/langs/ta_IN.js | 197 - Resources/public/vendor/tinymce/langs/tg.js | 191 - .../public/vendor/tinymce/langs/th_TH.js | 179 - .../public/vendor/tinymce/langs/tr_TR.js | 192 - Resources/public/vendor/tinymce/langs/tt.js | 197 - Resources/public/vendor/tinymce/langs/ug.js | 189 - Resources/public/vendor/tinymce/langs/uk.js | 197 - .../public/vendor/tinymce/langs/uk_UA.js | 191 - Resources/public/vendor/tinymce/langs/vi.js | 179 - .../public/vendor/tinymce/langs/vi_VN.js | 197 - .../public/vendor/tinymce/langs/zh_CN.js | 197 - .../public/vendor/tinymce/langs/zh_TW.js | 186 - Resources/public/vendor/tinymce/license.txt | 12 +- .../tinymce/plugins/advlist/plugin.min.js | 10 +- .../tinymce/plugins/anchor/plugin.min.js | 10 +- .../tinymce/plugins/autolink/plugin.min.js | 10 +- .../tinymce/plugins/autoresize/plugin.min.js | 10 +- .../tinymce/plugins/autosave/plugin.min.js | 10 +- .../tinymce/plugins/bbcode/plugin.min.js | 10 +- .../tinymce/plugins/charmap/plugin.min.js | 10 +- .../vendor/tinymce/plugins/code/plugin.min.js | 10 +- .../tinymce/plugins/codesample/plugin.min.js | 9 + .../tinymce/plugins/colorpicker/plugin.min.js | 10 +- .../tinymce/plugins/contextmenu/plugin.min.js | 10 +- .../plugins/directionality/plugin.min.js | 10 +- .../plugins/emoticons/img/smiley-cool.gif | Bin 354 -> 0 bytes .../plugins/emoticons/img/smiley-cry.gif | Bin 329 -> 0 bytes .../emoticons/img/smiley-embarassed.gif | Bin 331 -> 0 bytes .../emoticons/img/smiley-foot-in-mouth.gif | Bin 342 -> 0 bytes .../plugins/emoticons/img/smiley-frown.gif | Bin 340 -> 0 bytes .../plugins/emoticons/img/smiley-innocent.gif | Bin 336 -> 0 bytes .../plugins/emoticons/img/smiley-kiss.gif | Bin 338 -> 0 bytes .../plugins/emoticons/img/smiley-laughing.gif | Bin 343 -> 0 bytes .../emoticons/img/smiley-money-mouth.gif | Bin 321 -> 0 bytes .../plugins/emoticons/img/smiley-sealed.gif | Bin 323 -> 0 bytes .../plugins/emoticons/img/smiley-smile.gif | Bin 344 -> 0 bytes .../emoticons/img/smiley-surprised.gif | Bin 338 -> 0 bytes .../emoticons/img/smiley-tongue-out.gif | Bin 328 -> 0 bytes .../emoticons/img/smiley-undecided.gif | Bin 337 -> 0 bytes .../plugins/emoticons/img/smiley-wink.gif | Bin 350 -> 0 bytes .../plugins/emoticons/img/smiley-yell.gif | Bin 336 -> 0 bytes .../tinymce/plugins/emoticons/js/emojis.js | 9015 +++++++++++++++++ .../plugins/emoticons/js/emojis.min.js | 2 + .../tinymce/plugins/emoticons/plugin.min.js | 10 +- .../tinymce/plugins/example/dialog.html | 8 - .../tinymce/plugins/example/plugin.min.js | 1 - .../plugins/example_dependency/plugin.min.js | 1 - .../tinymce/plugins/fullpage/plugin.min.js | 10 +- .../tinymce/plugins/fullscreen/plugin.min.js | 10 +- .../vendor/tinymce/plugins/help/plugin.min.js | 9 + .../vendor/tinymce/plugins/hr/plugin.min.js | 10 +- .../tinymce/plugins/image/plugin.min.js | 10 +- .../tinymce/plugins/imagetools/plugin.min.js | 9 + .../tinymce/plugins/importcss/plugin.min.js | 10 +- .../plugins/insertdatetime/plugin.min.js | 10 +- .../tinymce/plugins/layer/plugin.min.js | 1 - .../plugins/legacyoutput/plugin.min.js | 10 +- .../vendor/tinymce/plugins/link/plugin.min.js | 10 +- .../tinymce/plugins/lists/plugin.min.js | 10 +- .../tinymce/plugins/media/moxieplayer.swf | Bin 20017 -> 0 bytes .../tinymce/plugins/media/plugin.min.js | 10 +- .../tinymce/plugins/nonbreaking/plugin.min.js | 10 +- .../tinymce/plugins/noneditable/plugin.min.js | 10 +- .../tinymce/plugins/pagebreak/plugin.min.js | 10 +- .../tinymce/plugins/paste/plugin.min.js | 10 +- .../tinymce/plugins/preview/plugin.min.js | 10 +- .../tinymce/plugins/print/plugin.min.js | 10 +- .../tinymce/plugins/quickbars/plugin.min.js | 9 + .../vendor/tinymce/plugins/save/plugin.min.js | 10 +- .../plugins/searchreplace/plugin.min.js | 10 +- .../plugins/spellchecker/plugin.min.js | 10 +- .../tinymce/plugins/tabfocus/plugin.min.js | 10 +- .../tinymce/plugins/table/plugin.min.js | 10 +- .../tinymce/plugins/template/plugin.min.js | 10 +- .../tinymce/plugins/textcolor/plugin.min.js | 10 +- .../tinymce/plugins/textpattern/plugin.min.js | 10 +- .../vendor/tinymce/plugins/toc/plugin.min.js | 9 + .../plugins/visualblocks/css/visualblocks.css | 135 - .../plugins/visualblocks/plugin.min.js | 10 +- .../tinymce/plugins/visualchars/plugin.min.js | 10 +- .../tinymce/plugins/wordcount/plugin.min.js | 10 +- .../skins/content/dark/content.min.css | 7 + .../skins/content/default/content.min.css | 7 + .../skins/content/document/content.min.css | 7 + .../skins/content/writer/content.min.css | 7 + .../skins/lightgray/content.inline.min.css | 1 - .../tinymce/skins/lightgray/content.min.css | 1 - .../tinymce/skins/lightgray/fonts/readme.md | 1 - .../lightgray/fonts/tinymce-small.dev.svg | 175 - .../skins/lightgray/fonts/tinymce-small.eot | Bin 10316 -> 0 bytes .../skins/lightgray/fonts/tinymce-small.svg | 62 - .../skins/lightgray/fonts/tinymce-small.ttf | Bin 10128 -> 0 bytes .../skins/lightgray/fonts/tinymce-small.woff | Bin 7848 -> 0 bytes .../skins/lightgray/fonts/tinymce.dev.svg | 153 - .../tinymce/skins/lightgray/fonts/tinymce.eot | Bin 10024 -> 0 bytes .../tinymce/skins/lightgray/fonts/tinymce.svg | 63 - .../tinymce/skins/lightgray/fonts/tinymce.ttf | Bin 9860 -> 0 bytes .../skins/lightgray/fonts/tinymce.woff | Bin 7664 -> 0 bytes .../tinymce/skins/lightgray/img/anchor.gif | Bin 53 -> 0 bytes .../tinymce/skins/lightgray/img/loader.gif | Bin 2608 -> 0 bytes .../tinymce/skins/lightgray/img/object.gif | Bin 152 -> 0 bytes .../tinymce/skins/lightgray/img/trans.gif | Bin 43 -> 0 bytes .../tinymce/skins/lightgray/skin.ie7.min.css | 1 - .../tinymce/skins/lightgray/skin.min.css | 1 - .../ui/oxide-dark/content.inline.min.css | 7 + .../skins/ui/oxide-dark/content.min.css | 7 + .../ui/oxide-dark/content.mobile.min.css | 7 + .../ui/oxide-dark/fonts/tinymce-mobile.woff | Bin 0 -> 4624 bytes .../tinymce/skins/ui/oxide-dark/skin.min.css | 7 + .../skins/ui/oxide-dark/skin.mobile.min.css | 7 + .../skins/ui/oxide/content.inline.min.css | 7 + .../tinymce/skins/ui/oxide/content.min.css | 7 + .../skins/ui/oxide/content.mobile.min.css | 7 + .../skins/ui/oxide/fonts/tinymce-mobile.woff | Bin 0 -> 4624 bytes .../tinymce/skins/ui/oxide/skin.min.css | 7 + .../skins/ui/oxide/skin.mobile.min.css | 7 + .../vendor/tinymce/themes/mobile/theme.min.js | 9 + .../vendor/tinymce/themes/modern/theme.min.js | 1 - .../vendor/tinymce/themes/silver/theme.min.js | 9 + .../vendor/tinymce/tinymce.jquery.min.js | 10 - .../public/vendor/tinymce/tinymce.min.js | 20 +- composer.json | 2 +- 193 files changed, 11314 insertions(+), 14539 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/codestream.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/tinymce-bundle.iml create mode 100644 .idea/vcs.xml create mode 100644 Resources/public/vendor/tinymce/icons/default/icons.min.js delete mode 100644 Resources/public/vendor/tinymce/langs/ar.js delete mode 100644 Resources/public/vendor/tinymce/langs/ar_SA.js delete mode 100644 Resources/public/vendor/tinymce/langs/az.js delete mode 100644 Resources/public/vendor/tinymce/langs/be.js delete mode 100644 Resources/public/vendor/tinymce/langs/bg_BG.js delete mode 100644 Resources/public/vendor/tinymce/langs/bn_BD.js delete mode 100644 Resources/public/vendor/tinymce/langs/bs.js delete mode 100644 Resources/public/vendor/tinymce/langs/ca.js delete mode 100644 Resources/public/vendor/tinymce/langs/cs.js delete mode 100644 Resources/public/vendor/tinymce/langs/cy.js delete mode 100644 Resources/public/vendor/tinymce/langs/da.js delete mode 100644 Resources/public/vendor/tinymce/langs/de.js delete mode 100644 Resources/public/vendor/tinymce/langs/de_AT.js delete mode 100644 Resources/public/vendor/tinymce/langs/dv.js delete mode 100644 Resources/public/vendor/tinymce/langs/el.js delete mode 100644 Resources/public/vendor/tinymce/langs/en_CA.js delete mode 100644 Resources/public/vendor/tinymce/langs/en_GB.js delete mode 100644 Resources/public/vendor/tinymce/langs/es.js delete mode 100644 Resources/public/vendor/tinymce/langs/et.js delete mode 100644 Resources/public/vendor/tinymce/langs/eu.js delete mode 100644 Resources/public/vendor/tinymce/langs/fa.js delete mode 100644 Resources/public/vendor/tinymce/langs/fa_IR.js delete mode 100644 Resources/public/vendor/tinymce/langs/fi.js delete mode 100644 Resources/public/vendor/tinymce/langs/fo.js delete mode 100644 Resources/public/vendor/tinymce/langs/fr_FR.js delete mode 100644 Resources/public/vendor/tinymce/langs/gd.js delete mode 100644 Resources/public/vendor/tinymce/langs/gl.js delete mode 100644 Resources/public/vendor/tinymce/langs/he_IL.js delete mode 100644 Resources/public/vendor/tinymce/langs/hr.js delete mode 100644 Resources/public/vendor/tinymce/langs/hu_HU.js delete mode 100644 Resources/public/vendor/tinymce/langs/hy.js delete mode 100644 Resources/public/vendor/tinymce/langs/id.js delete mode 100644 Resources/public/vendor/tinymce/langs/is_IS.js delete mode 100644 Resources/public/vendor/tinymce/langs/it.js delete mode 100644 Resources/public/vendor/tinymce/langs/ja.js delete mode 100644 Resources/public/vendor/tinymce/langs/ka_GE.js delete mode 100644 Resources/public/vendor/tinymce/langs/kk.js delete mode 100644 Resources/public/vendor/tinymce/langs/km_KH.js delete mode 100644 Resources/public/vendor/tinymce/langs/ko_KR.js delete mode 100644 Resources/public/vendor/tinymce/langs/lb.js delete mode 100644 Resources/public/vendor/tinymce/langs/lt.js delete mode 100644 Resources/public/vendor/tinymce/langs/lv.js delete mode 100644 Resources/public/vendor/tinymce/langs/ml.js delete mode 100644 Resources/public/vendor/tinymce/langs/ml_IN.js delete mode 100644 Resources/public/vendor/tinymce/langs/mn_MN.js delete mode 100644 Resources/public/vendor/tinymce/langs/nb_NO.js delete mode 100644 Resources/public/vendor/tinymce/langs/nl.js delete mode 100644 Resources/public/vendor/tinymce/langs/pl.js delete mode 100644 Resources/public/vendor/tinymce/langs/pt_BR.js delete mode 100644 Resources/public/vendor/tinymce/langs/pt_PT.js delete mode 100644 Resources/public/vendor/tinymce/langs/ro.js delete mode 100644 Resources/public/vendor/tinymce/langs/ru.js delete mode 100644 Resources/public/vendor/tinymce/langs/si_LK.js delete mode 100644 Resources/public/vendor/tinymce/langs/sk.js delete mode 100644 Resources/public/vendor/tinymce/langs/sl_SI.js delete mode 100644 Resources/public/vendor/tinymce/langs/sr.js delete mode 100644 Resources/public/vendor/tinymce/langs/sv_SE.js delete mode 100644 Resources/public/vendor/tinymce/langs/ta.js delete mode 100644 Resources/public/vendor/tinymce/langs/ta_IN.js delete mode 100644 Resources/public/vendor/tinymce/langs/tg.js delete mode 100644 Resources/public/vendor/tinymce/langs/th_TH.js delete mode 100644 Resources/public/vendor/tinymce/langs/tr_TR.js delete mode 100644 Resources/public/vendor/tinymce/langs/tt.js delete mode 100644 Resources/public/vendor/tinymce/langs/ug.js delete mode 100644 Resources/public/vendor/tinymce/langs/uk.js delete mode 100644 Resources/public/vendor/tinymce/langs/uk_UA.js delete mode 100644 Resources/public/vendor/tinymce/langs/vi.js delete mode 100644 Resources/public/vendor/tinymce/langs/vi_VN.js delete mode 100644 Resources/public/vendor/tinymce/langs/zh_CN.js delete mode 100644 Resources/public/vendor/tinymce/langs/zh_TW.js create mode 100644 Resources/public/vendor/tinymce/plugins/codesample/plugin.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-cool.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-cry.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-embarassed.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-frown.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-innocent.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-kiss.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-laughing.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-money-mouth.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-sealed.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-smile.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-surprised.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-tongue-out.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-undecided.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-wink.gif delete mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-yell.gif create mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/js/emojis.js create mode 100644 Resources/public/vendor/tinymce/plugins/emoticons/js/emojis.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/example/dialog.html delete mode 100644 Resources/public/vendor/tinymce/plugins/example/plugin.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/example_dependency/plugin.min.js create mode 100644 Resources/public/vendor/tinymce/plugins/help/plugin.min.js create mode 100644 Resources/public/vendor/tinymce/plugins/imagetools/plugin.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/layer/plugin.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/media/moxieplayer.swf create mode 100644 Resources/public/vendor/tinymce/plugins/quickbars/plugin.min.js create mode 100644 Resources/public/vendor/tinymce/plugins/toc/plugin.min.js delete mode 100644 Resources/public/vendor/tinymce/plugins/visualblocks/css/visualblocks.css create mode 100644 Resources/public/vendor/tinymce/skins/content/dark/content.min.css create mode 100644 Resources/public/vendor/tinymce/skins/content/default/content.min.css create mode 100644 Resources/public/vendor/tinymce/skins/content/document/content.min.css create mode 100644 Resources/public/vendor/tinymce/skins/content/writer/content.min.css delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/content.inline.min.css delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/content.min.css delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/readme.md delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce-small.dev.svg delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce-small.eot delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce-small.svg delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce-small.ttf delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce-small.woff delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce.dev.svg delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce.eot delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce.svg delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce.ttf delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/fonts/tinymce.woff delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/img/anchor.gif delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/img/loader.gif delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/img/object.gif delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/img/trans.gif delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/skin.ie7.min.css delete mode 100644 Resources/public/vendor/tinymce/skins/lightgray/skin.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/content.inline.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/content.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/content.mobile.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/skin.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide-dark/skin.mobile.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/content.inline.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/content.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/content.mobile.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/skin.min.css create mode 100644 Resources/public/vendor/tinymce/skins/ui/oxide/skin.mobile.min.css create mode 100644 Resources/public/vendor/tinymce/themes/mobile/theme.min.js delete mode 100644 Resources/public/vendor/tinymce/themes/modern/theme.min.js create mode 100644 Resources/public/vendor/tinymce/themes/silver/theme.min.js delete mode 100644 Resources/public/vendor/tinymce/tinymce.jquery.min.js diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..73f69e09 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codestream.xml b/.idea/codestream.xml new file mode 100644 index 00000000..0f82eaef --- /dev/null +++ b/.idea/codestream.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..6d094786 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,11 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..28a804d8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..5082ad0e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 00000000..cd67c36e --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/tinymce-bundle.iml b/.idea/tinymce-bundle.iml new file mode 100644 index 00000000..2398303a --- /dev/null +++ b/.idea/tinymce-bundle.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Helper/LocaleHelper.php b/Helper/LocaleHelper.php index 2c75f10b..ca6f9c46 100644 --- a/Helper/LocaleHelper.php +++ b/Helper/LocaleHelper.php @@ -21,6 +21,7 @@ class LocaleHelper 'tr' => 'tr_TR', 'tw' => 'zh_TW', 'uk' => 'uk_UA', + 'pl' => 'pl_PL', ); /** diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 23bf32f0..2d6bc2da 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -8,13 +8,13 @@ function initTinyMCE(options) { if (typeof options == 'undefined') options = stfalcon_tinymce_config; // Load when DOM is ready domready(function() { - var i, t = tinymce.editors, textareas = []; + let i, t = tinymce.editors, textareas = []; for (i in t) { if (t.hasOwnProperty(i)) t[i].remove(); } switch (options.selector.substring(0, 1)) { case "#": - var _t = document.getElementById(options.selector.substring(1)); + const _t = document.getElementById(options.selector.substring(1)); if (_t) textareas.push(_t); break; case ".": @@ -27,14 +27,14 @@ function initTinyMCE(options) { return false; } - var externalPlugins = []; + let externalPlugins = []; // Load external plugins if (typeof options.external_plugins == 'object') { - for (var pluginId in options.external_plugins) { + for (const pluginId in options.external_plugins) { if (!options.external_plugins.hasOwnProperty(pluginId)) { continue; } - var opts = options.external_plugins[pluginId], + const opts = options.external_plugins[pluginId], url = opts.url || null; if (url) { externalPlugins.push({ @@ -48,48 +48,48 @@ function initTinyMCE(options) { for (i = 0; i < textareas.length; i++) { // Get editor's theme from the textarea data - var theme = textareas[i].getAttribute("data-theme") || 'simple'; + const theme = textareas[i].getAttribute("data-theme") || 'simple'; // Get selected theme options - var settings = (typeof options.theme[theme] != 'undefined') + let settings = (typeof options.theme[theme] != 'undefined') ? options.theme[theme] : options.theme['simple']; settings.external_plugins = settings.external_plugins || {}; - for (var p = 0; p < externalPlugins.length; p++) { + for (let p = 0; p < externalPlugins.length; p++) { settings.external_plugins[externalPlugins[p]['id']] = externalPlugins[p]['url']; } // workaround for an incompatibility with html5-validation if (textareas[i].getAttribute("required") !== '') { textareas[i].removeAttribute("required") } - var textAreaId = textareas[i].getAttribute('id'); + const textAreaId = textareas[i].getAttribute('id'); if (textAreaId === '' || textAreaId === null) { textareas[i].setAttribute("id", "tinymce_" + Math.random().toString(36).substr(2)); } // Add custom buttons to current editor if (typeof options.tinymce_buttons == 'object') { settings.setup = function(editor) { - for (var buttonId in options.tinymce_buttons) { + for (const buttonId in options.tinymce_buttons) { if (!options.tinymce_buttons.hasOwnProperty(buttonId)) continue; // Some tricky function to isolate variables values (function(id, opts) { opts.onclick = function() { - var callback = window['tinymce_button_' + id]; + const callback = window['tinymce_button_' + id]; if (typeof callback == 'function') { callback(editor); } else { alert('You have to create callback function: "tinymce_button_' + id + '"'); } } - editor.addButton(id, opts); + editor.ui.registry.addButton(id, opts); })(buttonId, clone(options.tinymce_buttons[buttonId])); } //Init Event if (options.use_callback_tinymce_init) { editor.on('init', function() { - var callback = window['callback_tinymce_init']; + const callback = window['callback_tinymce_init']; if (typeof callback == 'function') { callback(editor); } else { @@ -114,10 +114,10 @@ function initTinyMCE(options) { * @param node */ function getElementsByClassName(classname, node) { - var elements = document.getElementsByTagName(node), + let elements = document.getElementsByTagName(node), array = [], re = new RegExp('\\b' + classname + '\\b'); - for (var i = 0, j = elements.length; i < j; i++) { + for (let i = 0, j = elements.length; i < j; i++) { if (re.test(elements[i].className)) array.push(elements[i]); } return array; @@ -132,7 +132,7 @@ function clone(o) { if (!o || "object" !== typeof o) { return o; } - var c = "function" === typeof o.pop ? [] : {}, p, v; + let c = "function" === typeof o.pop ? [] : {}, p, v; for (p in o) { if (o.hasOwnProperty(p)) { v = o[p]; diff --git a/Resources/public/vendor/tinymce/changelog.txt b/Resources/public/vendor/tinymce/changelog.txt index cba0afaf..e5fe6b6b 100644 --- a/Resources/public/vendor/tinymce/changelog.txt +++ b/Resources/public/vendor/tinymce/changelog.txt @@ -1,676 +1,1603 @@ +Version 5.3.2 (2020-06-10) + Fixed a regression introduced in 5.3.0, where `images_dataimg_filter` was no-longer called #TINY-6086 +Version 5.3.1 (2020-05-27) + Fixed the image upload error alert also incorrectly closing the image dialog #TINY-6020 + Fixed editor content scrolling incorrectly on focus in Firefox by reverting default content CSS html and body heights added in 5.3.0 #TINY-6019 +Version 5.3.0 (2020-05-21) + Added html and body height styles to the default oxide content CSS #TINY-5978 + Added `uploadUri` and `blobInfo` to the data returned by `editor.uploadImages()` #TINY-4579 + Added a new function to the `BlobCache` API to lookup a blob based on the base64 data and mime type #TINY-5988 + Added the ability to search and replace within a selection #TINY-4549 + Added the ability to set the list start position for ordered lists and added new `lists` context menu item #TINY-3915 + Added `icon` as an optional config option to the toggle menu item API #TINY-3345 + Added `auto` mode for `toolbar_location` which positions the toolbar and menu bar at the bottom if there is no space at the top #TINY-3161 + Changed the default `toolbar_location` to `auto` #TINY-3161 + Changed toggle menu items and choice menu items to have a dedicated icon with the checkmark displayed on the far right side of the menu item #TINY-3345 + Changed the `link`, `image`, and `paste` plugins to use Promises to reduce the bundle size #TINY-4710 + Changed the default icons to be lazy loaded during initialization #TINY-4729 + Changed the parsing of content so base64 encoded urls are converted to blob urls #TINY-4727 + Changed context toolbars so they concatenate when more than one is suitable for the current selection #TINY-4495 + Changed inline style element formats (strong, b, em, i, u, strike) to convert to a span on format removal if a `style` or `class` attribute is present #TINY-4741 + Fixed the `selection.setContent()` API not running parser filters #TINY-4002 + Fixed formats incorrectly applied or removed when table cells were selected #TINY-4709 + Fixed the `quickimage` button not restricting the file types to images #TINY-4715 + Fixed search and replace ignoring text in nested contenteditable elements #TINY-5967 + Fixed resize handlers displaying in the wrong location sometimes for remote images #TINY-4732 + Fixed table picker breaking in Firefox on low zoom levels #TINY-4728 + Fixed issue with loading or pasting contents with large base64 encoded images on Safari #TINY-4715 + Fixed supplementary special characters being truncated when inserted into the editor. Patch contributed by mlitwin. #TINY-4791 + Fixed toolbar buttons not set to disabled when the editor is in readonly mode #TINY-4592 + Fixed the editor selection incorrectly changing when removing caret format containers #TINY-3438 + Fixed bug where title, width, and height would be set to empty string values when updating an image and removing those attributes using the image dialog #TINY-4786 + Fixed `ObjectResized` event firing when an object wasn't resized #TINY-4161 + Fixed `ObjectResized` and `ObjectResizeStart` events incorrectly fired when adding or removing table rows and columns #TINY-4829 + Fixed the placeholder not hiding when pasting content into the editor #TINY-4828 + Fixed an issue where the editor would fail to load if local storage was disabled #TINY-5935 + Fixed an issue where an uploaded image would reuse a cached image with a different mime type #TINY-5988 + Fixed bug where toolbars and dialogs would not show if the body element was replaced (e.g. with Turbolinks). Patch contributed by spohlenz #GH-5653 + Fixed an issue where multiple formats would be removed when removing a single format at the end of lines or on empty lines #TINY-1170 + Fixed zero-width spaces incorrectly included in the `wordcount` plugin character count #TINY-5991 + Fixed a regression introduced in 5.2.0 whereby the desktop `toolbar_mode` setting would incorrectly override the mobile default setting #TINY-5998 + Fixed an issue where deleting all content in a single cell table would delete the entire table #TINY-1044 +Version 5.2.2 (2020-04-23) + Fixed an issue where anchors could not be inserted on empty lines #TINY-2788 + Fixed text decorations (underline, strikethrough) not consistently inheriting the text color #TINY-4757 + Fixed `format` menu alignment buttons inconsistently applying to images #TINY-4057 + Fixed the floating toolbar drawer height collapsing when the editor is rendered in modal dialogs or floating containers #TINY-4837 + Fixed `media` embed content not processing safely in some cases #TINY-4857 +Version 5.2.1 (2020-03-25) + Fixed the "is decorative" checkbox in the image dialog clearing after certain dialog events #FOAM-11 + Fixed possible uncaught exception when a `style` attribute is removed using a content filter on `setContent` #TINY-4742 + Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher #TINY-3862 + Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher #TINY-4160 + Fixed the floating toolbar drawer disconnecting from the toolbar when adding content in inline mode #TINY-4725 #TINY-4765 + Fixed `readonly` mode not returning the appropriate boolean value #TINY-3948 + Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently #TINY-4564 + Fixed the editor incorrectly stealing focus during initialization in Microsoft Internet Explorer #TINY-4697 + Fixed dialogs stealing focus when opening an alert or confirm dialog using an `onAction` callback #TINY-4014 + Fixed inline dialogs incorrectly closing when clicking on an opened alert or confirm dialog #TINY-4012 + Fixed the context toolbar overlapping the menu bar and toolbar #TINY-4586 + Fixed notification and inline dialog positioning issues when using `toolbar_location: 'bottom'` #TINY-4586 + Fixed the `colorinput` popup appearing offscreen on mobile devices #TINY-4711 + Fixed special characters not being found when searching by "whole words only" #TINY-4522 + Fixed an issue where dragging images could cause them to be duplicated #TINY-4195 + Fixed context toolbars activating without the editor having focus #TINY-4754 + Fixed an issue where removing the background color of text did not always work #TINY-4770 + Fixed an issue where new rows and columns in a table did not retain the style of the previous row or column #TINY-4788 +Version 5.2.0 (2020-02-13) + Added the ability to apply formats to spaces #TINY-4200 + Added new `toolbar_location` setting to allow for positioning the menu and toolbar at the bottom of the editor #TINY-4210 + Added new `toolbar_groups` setting to allow a custom floating toolbar group to be added to the toolbar when using `floating` toolbar mode #TINY-4229 + Added new `link_default_protocol` setting to `link` and `autolink` plugin to allow a protocol to be used by default #TINY-3328 + Added new `placeholder` setting to allow a placeholder to be shown when the editor is empty #TINY-3917 + Added new `tinymce.dom.TextSeeker` API to allow searching text across different DOM nodes #TINY-4200 + Added a drop shadow below the toolbar while in sticky mode and introduced Oxide variables to customize it when creating a custom skin #TINY-4343 + Added `quickbars_image_toolbar` setting to allow for the image quickbar to be turned off #TINY-4398 + Added iframe and img `loading` attribute to the default schema. Patch contributed by ataylor32. #GH-5112 + Added new `getNodeFilters`/`getAttributeFilters` functions to the `editor.serializer` instance #TINY-4344 + Added new `a11y_advanced_options` setting to allow additional accessibility options to be added #FOAM-11 + Added new accessibility options and behaviours to the image dialog using `a11y_advanced_options` #FOAM-11 + Added the ability to use the window `PrismJS` instance for the `codesample` plugin instead of the bundled version to allow for styling custom languages #TINY-4504 + Added error message events that fire when a resource loading error occurs #TINY-4509 + Changed the default schema to disallow `onchange` for select elements #TINY-4614 + Changed default `toolbar_mode` value from false to `wrap`. The value false has been deprecated #TINY-4617 + Changed `toolbar_drawer` setting to `toolbar_mode`. `toolbar_drawer` has been deprecated #TINY-4416 + Changed iframe mode to set selection on content init if selection doesn't exist #TINY-4139 + Changed table related icons to align them with the visual style of the other icons #TINY-4341 + Changed and improved the visual appearance of the color input field #TINY-2917 + Changed fake caret container to use `forced_root_block` when possible #TINY-4190 + Changed the `requireLangPack` API to wait until the plugin has been loaded before loading the language pack #TINY-3716 + Changed the formatter so `style_formats` are registered before the initial content is loaded into the editor #TINY-4238 + Changed media plugin to use https protocol for media urls by default #TINY-4577 + Changed the parser to treat CDATA nodes as bogus HTML comments to match the HTML parsing spec. A new `preserve_cdata` setting has been added to preserve CDATA nodes if required #TINY-4625 + Fixed incorrect parsing of malformed/bogus HTML comments #TINY-4625 + Fixed `quickbars` selection toolbar appearing on non-editable elements #TINY-4359 + Fixed bug with alignment toolbar buttons sometimes not changing state correctly #TINY-4139 + Fixed the `codesample` toolbar button not toggling when selecting code samples other than HTML #TINY-4504 + Fixed content incorrectly scrolling to the top or bottom when pressing enter if when the content was already in view #TINY-4162 + Fixed `scrollIntoView` potentially hiding elements behind the toolbar #TINY-4162 + Fixed editor not respecting the `resize_img_proportional` setting due to legacy code #TINY-4236 + Fixed flickering floating toolbar drawer in inline mode #TINY-4210 + Fixed an issue where the template plugin dialog would be indefinitely blocked on a failed template load #TINY-2766 + Fixed the `mscontrolselect` event not being unbound on IE/Edge #TINY-4196 + Fixed Confirm dialog footer buttons so only the "Yes" button is highlighted #TINY-4310 + Fixed `file_picker_callback` functionality for Image, Link and Media plugins #TINY-4163 + Fixed issue where floating toolbar drawer sometimes would break if the editor is resized while the drawer is open #TINY-4439 + Fixed incorrect `external_plugins` loading error message #TINY-4503 + Fixed resize handler was not hidden for ARIA purposes. Patch contributed by Parent5446. #GH-5195 + Fixed an issue where content could be lost if a misspelled word was selected and spellchecking was disabled #TINY-3899 + Fixed validation errors in the CSS where certain properties had the wrong default value #TINY-4491 + Fixed an issue where forced root block attributes were not applied when removing a list #TINY-4272 + Fixed an issue where the element path isn't being cleared when there are no parents #TINY-4412 + Fixed an issue where width and height in svg icons containing `rect` elements were overridden by the CSS reset #TINY-4408 + Fixed an issue where uploading images with `images_reuse_filename` enabled and that included a query parameter would generate an invalid URL #TINY-4638 + Fixed the `closeButton` property not working when opening notifications #TINY-4674 + Fixed keyboard flicker when opening a context menu on mobile #TINY-4540 + Fixed issue where plus icon svg contained strokes #TINY-4681 +Version 5.1.6 (2020-01-28) + Fixed `readonly` mode not blocking all clicked links #TINY-4572 + Fixed legacy font sizes being calculated inconsistently for the `FontSize` query command value #TINY-4555 + Fixed changing a tables row from `Header` to `Body` incorrectly moving the row to the bottom of the table #TINY-4593 + Fixed the context menu not showing in certain cases with hybrid devices #TINY-4569 + Fixed the context menu opening in the wrong location when the target is the editor body #TINY-4568 + Fixed the `image` plugin not respecting the `automatic_uploads` setting when uploading local images #TINY-4287 + Fixed security issue related to parsing HTML comments and CDATA #TINY-4544 +Version 5.1.5 (2019-12-19) + Fixed the UI not working with hybrid devices that accept both touch and mouse events #TNY-4521 + Fixed the `charmap` dialog initially focusing the first tab of the dialog instead of the search input field #TINY-4342 + Fixed an exception being raised when inserting content if the caret was directly before or after a `contenteditable="false"` element #TINY-4528 + Fixed a bug with pasting image URLs when paste as text is enabled #TINY-4523 +Version 5.1.4 (2019-12-11) + Fixed dialog contents disappearing when clicking a checkbox for right-to-left languages #TINY-4518 + Fixed the `legacyoutput` plugin registering legacy formats after editior initialization, causing legacy content to be stripped on the initial load #TINY-4447 + Fixed search and replace not cycling through results when searching using special characters #TINY-4506 + Fixed the `visualchars` plugin converting HTML-like text to DOM elements in certain cases #TINY-4507 + Fixed an issue with the `paste` plugin not sanitizing content in some cases #TINY-4510 + Fixed HTML comments incorrectly being parsed in certain cases #TINY-4511 +Version 5.1.3 (2019-12-04) + Fixed sticky toolbar not undocking when fullscreen mode is activated #TINY-4390 + Fixed the "Current Window" target not applying when updating links using the link dialog #TINY-4063 + Fixed disabled menu items not highlighting when focused #TINY-4339 + Fixed touch events passing through dialog collection items to the content underneath on Android devices #TINY-4431 + Fixed keyboard navigation of the Help dialog's Keyboard Navigation tab #TINY-4391 + Fixed search and replace dialog disappearing when finding offscreen matches on iOS devices #TINY-4350 + Fixed performance issues where sticky toolbar was jumping while scrolling on slower browsers #TINY-4475 +Version 5.1.2 (2019-11-19) + Fixed desktop touch devices using `mobile` configuration overrides #TINY-4345 + Fixed unable to disable the new scrolling toolbar feature #TINY-4345 + Fixed touch events passing through any pop-up items to the content underneath on Android devices #TINY-4367 + Fixed the table selector handles throwing JavaScript exceptions for non-table selections #TINY-4338 + Fixed `cut` operations not removing selected content on Android devices when the `paste` plugin is enabled #TINY-4362 + Fixed inline toolbar not constrained to the window width by default #TINY-4314 + Fixed context toolbar split button chevrons pointing right when they should be pointing down #TINY-4257 + Fixed unable to access the dialog footer in tabbed dialogs on small screens #TINY-4360 + Fixed mobile table selectors were hard to select with touch by increasing the size #TINY-4366 + Fixed mobile table selectors moving when moving outside the editor #TINY-4366 + Fixed inline toolbars collapsing when using sliding toolbars #TINY-4389 + Fixed block textpatterns not treating NBSPs as spaces #TINY-4378 + Fixed backspace not merging blocks when the last element in the preceding block was a `contenteditable="false"` element #TINY-4235 + Fixed toolbar buttons that only contain text labels overlapping on mobile devices #TINY-4395 + Fixed quickbars quickimage picker not working on mobile #TINY-4377 + Fixed fullscreen not resizing in an iOS WKWebView component #TINY-4413 +Version 5.1.1 (2019-10-28) + Fixed font formats containing spaces being wrapped in `"` entities instead of single quotes #TINY-4275 + Fixed alert and confirm dialogs losing focus when clicked #TINY-4248 + Fixed clicking outside a modal dialog focusing on the document body #TINY-4249 + Fixed the context toolbar not hiding when scrolled out of view #TINY-4265 +Version 5.1.0 (2019-10-17) + Added touch selector handles for table selections on touch devices #TINY-4097 + Added border width field to Table Cell dialog #TINY-4028 + Added touch event listener to media plugin to make embeds playable #TINY-4093 + Added oxide styling options to notifications and tweaked the default variables #TINY-4153 + Added additional padding to split button chevrons on touch devices, to make them easier to interact with #TINY-4223 + Added new platform detection functions to `Env` and deprecated older detection properties #TINY-4184 + Added `inputMode` config field to specify inputmode attribute of `input` dialog components #TINY-4062 + Added new `inputMode` property to relevant plugins/dialogs #TINY-4102 + Added new `toolbar_sticky` setting to allow the iframe menubar/toolbar to stick to the top of the window when scrolling #TINY-3982 + Changed default setting for `toolbar_drawer` to `floating` #TINY-3634 + Changed mobile phones to use the `silver` theme by default #TINY-3634 + Changed some editor settings to default to `false` on touch devices: + - `menubar`(phones only) #TINY-4077 + - `table_grid` #TINY-4075 + - `resize` #TINY-4157 + - `object_resizing` #TINY-4157 + Changed toolbars and context toolbars to sidescroll on mobile #TINY-3894 #TINY-4107 + Changed context menus to render as horizontal menus on touch devices #TINY-4107 + Changed the editor to use the `VisualViewport` API of the browser where possible #TINY-4078 + Changed visualblocks toolbar button icon and renamed `paragraph` icon to `visualchars` #TINY-4074 + Changed Oxide default for `@toolbar-button-chevron-color` to follow toolbar button icon color #TINY-4153 + Changed the `urlinput` dialog component to use the `url` type attribute #TINY-4102 + Fixed Safari desktop visual viewport fires resize on fullscreen breaking the restore function #TINY-3976 + Fixed scroll issues on mobile devices #TINY-3976 + Fixed context toolbar unable to refresh position on iOS12 #TINY-4107 + Fixed ctrl+left click not opening links on readonly mode and the preview dialog #TINY-4138 + Fixed Slider UI component not firing `onChange` event on touch devices #TINY-4092 + Fixed notifications overlapping instead of stacking #TINY-3478 + Fixed inline dialogs positioning incorrectly when the page is scrolled #TINY-4018 + Fixed inline dialogs and menus not repositioning when resizing #TINY-3227 + Fixed inline toolbar incorrectly stretching to the full width when a width value was provided #TINY-4066 + Fixed menu chevrons color to follow the menu text color #TINY-4153 + Fixed table menu selection grid from staying black when using dark skins, now follows border color #TINY-4153 + Fixed Oxide using the wrong text color variable for menubar button focused state #TINY-4146 + Fixed the autoresize plugin not keeping the selection in view when resizing #TINY-4094 + Fixed textpattern plugin throwing exceptions when using `forced_root_block: false` #TINY-4172 + Fixed missing CSS fill styles for toolbar button icon active state #TINY-4147 + Fixed an issue where the editor selection could end up inside a short ended element (such as `br`) #TINY-3999 + Fixed browser selection being lost in inline mode when opening split dropdowns #TINY-4197 + Fixed backspace throwing an exception when using `forced_root_block: false` #TINY-4099 + Fixed floating toolbar drawer expanding outside the bounds of the editor #TINY-3941 + Fixed the autocompleter not activating immediately after a `br` or `contenteditable=false` element #TINY-4194 + Fixed an issue where the autocompleter would incorrectly close on IE 11 in certain edge cases #TINY-4205 +Version 5.0.16 (2019-09-24) + Added new `referrer_policy` setting to add the `referrerpolicy` attribute when loading scripts or stylesheets #TINY-3978 + Added a slight background color to dialog tab links when focused to aid keyboard navigation #TINY-3877 + Fixed media poster value not updating on change #TINY-4013 + Fixed openlink was not registered as a toolbar button #TINY-4024 + Fixed failing to initialize if a script tag was used inside a SVG #TINY-4087 + Fixed double top border showing on toolbar without menubar when toolbar_drawer is enabled #TINY-4118 + Fixed unable to drag inline dialogs to the bottom of the screen when scrolled #TINY-4154 + Fixed notifications appearing on top of the toolbar when scrolled in inline mode #TINY-4159 + Fixed notifications displaying incorrectly on IE 11 #TINY-4169 +Version 5.0.15 (2019-09-02) + Added a dark `content_css` skin to go with the dark UI skin #TINY-3743 + Changed the enabled state on toolbar buttons so they don't get the hover effect #TINY-3974 + Fixed missing CSS active state on toolbar buttons #TINY-3966 + Fixed `onChange` callback not firing for the colorinput dialog component #TINY-3968 + Fixed context toolbars not showing in fullscreen mode #TINY-4023 +Version 5.0.14 (2019-08-19) + Added an API to reload the autocompleter menu with additional fetch metadata #MENTIONS-17 + Fixed missing toolbar button border styling options #TINY-3965 + Fixed image upload progress notification closing before the upload is complete #TINY-3963 + Fixed inline dialogs not closing on escape when no dialog component is in focus #TINY-3936 + Fixed plugins not being filtered when defaulting to mobile on phones #TINY-3537 + Fixed toolbar more drawer showing the content behind it when transitioning between opened and closed states #TINY-3878 + Fixed focus not returning to the dialog after pressing the "Replace all" button in the search and replace dialog #TINY-3961 + Removed Oxide variable `@menubar-select-disabled-border-color` and replaced it with `@menubar-select-disabled-border` #TINY-3965 +Version 5.0.13 (2019-08-06) + Changed modal dialogs to prevent dragging by default and added new `draggable_modal` setting to restore dragging #TINY-3873 + Changed the nonbreaking plugin to insert nbsp characters wrapped in spans to aid in filtering. This can be disabled using the `nonbreaking_wrap` setting #TINY-3647 + Changed backspace behaviour in lists to outdent nested list items when the cursor is at the start of the list item #TINY-3651 + Fixed sidebar growing beyond editor bounds in IE 11 #TINY-3937 + Fixed issue with being unable to keyboard navigate disabled toolbar buttons #TINY-3350 + Fixed issues with backspace and delete in nested contenteditable true and false elements #TINY-3868 + Fixed issue with losing keyboard navigation in dialogs due to disabled buttons #TINY-3914 + Fixed `MouseEvent.mozPressure is deprecated` warning in Firefox #TINY-3919 + Fixed `default_link_target` not being respected when `target_list` is disabled #TINY-3757 + Fixed mobile plugin filter to only apply to the mobile theme, rather than all mobile platforms #TINY-3405 + Fixed focus switching to another editor during mode changes #TINY-3852 + Fixed an exception being thrown when clicking on an uninitialized inline editor #TINY-3925 + Fixed unable to keyboard navigate to dialog menu buttons #TINY-3933 + Fixed dialogs being able to be dragged outside the window viewport #TINY-3787 + Fixed inline dialogs appearing above modal dialogs #TINY-3932 +Version 5.0.12 (2019-07-18) + Added ability to utilize UI dialog panels inside other panels #TINY-3305 + Added help dialog tab explaining keyboard navigation of the editor #TINY-3603 + Changed the "Find and Replace" design to an inline dialog #TINY-3054 + Fixed issue where autolink spacebar event was not being fired on Edge #TINY-3891 + Fixed table selection missing the background color #TINY-3892 + Fixed removing shortcuts not working for function keys #TINY-3871 + Fixed non-descriptive UI component type names #TINY-3349 + Fixed UI registry components rendering as the wrong type when manually specifying a different type #TINY-3385 + Fixed an issue where dialog checkbox, input, selectbox, textarea and urlinput components couldn't be disabled #TINY-3708 + Fixed the context toolbar not using viable screen space in inline/distraction free mode #TINY-3717 + Fixed the context toolbar overlapping the toolbar in various conditions #TINY-3205 + Fixed IE11 edge case where items were being inserted into the wrong location #TINY-3884 +Version 5.0.11 (2019-07-04) + Fixed packaging errors caused by a rollup treeshaking bug (https://github.com/rollup/rollup/issues/2970) #TINY-3866 + Fixed the customeditor component not able to get data from the dialog api #TINY-3866 + Fixed collection component tooltips not being translated #TINY-3855 +Version 5.0.10 (2019-07-02) + Added support for all HTML color formats in `color_map` setting #TINY-3837 + Changed backspace key handling to outdent content in appropriate circumstances #TINY-3685 + Changed default palette for forecolor and backcolor to include some lighter colors suitable for highlights #TINY-2865 + Changed the search and replace plugin to cycle through results #TINY-3800 + Fixed inconsistent types causing some properties to be unable to be used in dialog components #TINY-3778 + Fixed an issue in the Oxide skin where dialog content like outlines and shadows were clipped because of overflow hidden #TINY-3566 + Fixed the search and replace plugin not resetting state when changing the search query #TINY-3800 + Fixed backspace in lists not creating an undo level #TINY-3814 + Fixed the editor to cancel loading in quirks mode where the UI is not supported #TINY-3391 + Fixed applying fonts not working when the name contained spaces and numbers #TINY-3801 + Fixed so that initial content is retained when initializing on list items #TINY-3796 + Fixed inefficient font name and font size current value lookup during rendering #TINY-3813 + Fixed mobile font copied into the wrong folder for the oxide-dark skin #TINY-3816 + Fixed an issue where resizing the width of tables would produce inaccurate results #TINY-3827 + Fixed a memory leak in the Silver theme #TINY-3797 + Fixed alert and confirm dialogs using incorrect markup causing inconsistent padding #TINY-3835 + Fixed an issue in the Table plugin with `table_responsive_width` not enforcing units when resizing #TINY-3790 + Fixed leading, trailing and sequential spaces being lost when pasting plain text #TINY-3726 + Fixed exception being thrown when creating relative URIs #TINY-3851 + Fixed focus is no longer set to the editor content during mode changes unless the editor already had focus #TINY-3852 +Version 5.0.9 (2019-06-26) + Fixed print plugin not working in Firefox #TINY-3834 +Version 5.0.8 (2019-06-18) + Added back support for multiple toolbars #TINY-2195 + Added support for .m4a files to the media plugin #TINY-3750 + Added new base_url and suffix editor init options #TINY-3681 + Fixed incorrect padding for select boxes with visible values #TINY-3780 + Fixed selection incorrectly changing when programmatically setting selection on contenteditable false elements #TINY-3766 + Fixed sidebar background being transparent #TINY-3727 + Fixed the build to remove duplicate iife wrappers #TINY-3689 + Fixed bogus autocompleter span appearing in content when the autocompleter menu is shown #TINY-3752 + Fixed toolbar font size select not working with legacyoutput plugin #TINY-2921 + Fixed the legacyoutput plugin incorrectly aligning images #TINY-3660 + Fixed remove color not working when using the legacyoutput plugin #TINY-3756 + Fixed the font size menu applying incorrect sizes when using the legacyoutput plugin #TINY-3773 + Fixed scrollIntoView not working when the parent window was out of view #TINY-3663 + Fixed the print plugin printing from the wrong window in IE11 #TINY-3762 + Fixed content CSS loaded over CORS not loading in the preview plugin with content_css_cors enabled #TINY-3769 + Fixed the link plugin missing the default "None" option for link list #TINY-3738 + Fixed small dot visible with menubar and toolbar disabled in inline mode #TINY-3623 + Fixed space key properly inserts a nbsp before/after block elements #TINY-3745 + Fixed native context menu not showing with images in IE11 #TINY-3392 + Fixed inconsistent browser context menu image selection #TINY-3789 +Version 5.0.7 (2019-06-05) + Added new toolbar button and menu item for inserting tables via dialog #TINY-3636 + Added new API for adding/removing/changing tabs in the Help dialog #TINY-3535 + Added highlighting of matched text in autocompleter items #TINY-3687 + Added the ability for autocompleters to work with matches that include spaces #TINY-3704 + Added new `imagetools_fetch_image` callback to allow custom implementations for cors loading of images #TINY-3658 + Added `'http'` and `https` options to `link_assume_external_targets` to prepend `http://` or `https://` prefixes when URL does not contain a protocol prefix. Patch contributed by francoisfreitag. #GH-4335 + Changed annotations navigation to work the same as inline boundaries #TINY-3396 + Changed tabpanel API by adding a `name` field and changing relevant methods to use it #TINY-3535 + Fixed text color not updating all color buttons when choosing a color #TINY-3602 + Fixed the autocompleter not working with fragmented text #TINY-3459 + Fixed the autosave plugin no longer overwrites window.onbeforeunload #TINY-3688 + Fixed infinite loop in the paste plugin when IE11 takes a long time to process paste events. Patch contributed by lRawd. #GH-4987 + Fixed image handle locations when using `fixed_toolbar_container`. Patch contributed by t00. #GH-4966 + Fixed the autoresize plugin not firing `ResizeEditor` events #TINY-3587 + Fixed editor in fullscreen mode not extending to the bottom of the screen #TINY-3701 + Fixed list removal when pressing backspace after the start of the list item #TINY-3697 + Fixed autocomplete not triggering from compositionend events #TINY-3711 + Fixed `file_picker_callback` could not set the caption field on the insert image dialog #TINY-3172 + Fixed the autocompleter menu showing up after a selection had been made #TINY-3718 + Fixed an exception being thrown when a file or number input has focus during initialization. Patch contributed by t00 #GH-2194 +Version 5.0.6 (2019-05-22) + Added `icons_url` editor settings to enable icon packs to be loaded from a custom url #TINY-3585 + Added `image_uploadtab` editor setting to control the visibility of the upload tab in the image dialog #TINY-3606 + Added new api endpoints to the wordcount plugin and improved character count logic #TINY-3578 + Changed plugin, language and icon loading errors to log in the console instead of a notification #TINY-3585 + Fixed the textpattern plugin not working with fragmented text #TINY-3089 + Fixed various toolbar drawer accessibility issues and added an animation #TINY-3554 + Fixed issues with selection and ui components when toggling readonly mode #TINY-3592 + Fixed so readonly mode works with inline editors #TINY-3592 + Fixed docked inline toolbar positioning when scrolled #TINY-3621 + Fixed initial value not being set on bespoke select in quickbars and toolbar drawer #TINY-3591 + Fixed so that nbsp entities aren't trimmed in white-space: pre-line elements #TINY-3642 + Fixed `mceInsertLink` command inserting spaces instead of url encoded characters #GH-4990 + Fixed text content floating on top of dialogs in IE11 #TINY-3640 +Version 5.0.5 (2019-05-09) + Added menu items to match the forecolor/backcolor toolbar buttons #TINY-2878 + Added default directionality based on the configured language #TINY-2621 + Added styles, icons and tests for rtl mode #TINY-2621 + Fixed autoresize not working with floating elements or when media elements finished loading #TINY-3545 + Fixed incorrect vertical caret positioning in IE 11 #TINY-3188 + Fixed submenu anchoring hiding overflowed content #TINY-3564 + Removed unused and hidden validation icons to avoid displaying phantom tooltips #TINY-2329 +Version 5.0.4 (2019-04-23) + Added back URL dialog functionality, which is now available via `editor.windowManager.openUrl()` #TINY-3382 + Added the missing throbber functionality when calling `editor.setProgressState(true)` #TINY-3453 + Added function to reset the editor content and undo/dirty state via `editor.resetContent()` #TINY-3435 + Added the ability to set menu buttons as active #TINY-3274 + Added `editor.mode` API, featuring a custom editor mode API #TINY-3406 + Added better styling to floating toolbar drawer #TINY-3479 + Added the new premium plugins to the Help dialog plugins tab #TINY-3496 + Added the linkchecker context menu items to the default configuration #TINY-3543 + Fixed image context menu items showing on placeholder images #TINY-3280 + Fixed dialog labels and text color contrast within notifications/alert banners to satisfy WCAG 4.5:1 contrast ratio for accessibility #TINY-3351 + Fixed selectbox and colorpicker items not being translated #TINY-3546 + Fixed toolbar drawer sliding mode to correctly focus the editor when tabbing via keyboard navigation #TINY-3533 + Fixed positioning of the styleselect menu in iOS while using the mobile theme #TINY-3505 + Fixed the menubutton `onSetup` callback to be correctly executed when rendering the menu buttons #TINY-3547 + Fixed `default_link_target` setting to be correctly utilized when creating a link #TINY-3508 + Fixed colorpicker floating marginally outside its container #TINY-3026 + Fixed disabled menu items displaying as active when hovered #TINY-3027 + Removed redundant mobile wrapper #TINY-3480 +Version 5.0.3 (2019-03-19) + Changed empty nested-menu items within the style formats menu to be disabled or hidden if the value of `style_formats_autohide` is `true` #TINY-3310 + Changed the entire phrase 'Powered by Tiny' in the status bar to be a link instead of just the word 'Tiny' #TINY-3366 + Changed `formatselect`, `styleselect` and `align` menus to use the `mceToggleFormat` command internally #TINY-3428 + Fixed toolbar keyboard navigation to work as expected when `toolbar_drawer` is configured #TINY-3432 + Fixed text direction buttons to display the correct pressed state in selections that have no explicit `dir` property #TINY-3138 + Fixed the mobile editor to clean up properly when removed #TINY-3445 + Fixed quickbar toolbars to add an empty box to the screen when it is set to `false` #TINY-3439 + Fixed an issue where pressing the **Delete/Backspace** key at the edge of tables was creating incorrect selections #TINY-3371 + Fixed an issue where dialog collection items (emoticon and special character dialogs) couldn't be selected with touch devices #TINY-3444 + Fixed a type error introduced in TinyMCE version 5.0.2 when calling `editor.getContent()` with nested bookmarks #TINY-3400 + Fixed an issue that prevented default icons from being overridden #TINY-3449 + Fixed an issue where **Home/End** keys wouldn't move the caret correctly before or after `contenteditable=false` inline elements #TINY-2995 + Fixed styles to be preserved in IE 11 when editing via the `fullpage` plugin #TINY-3464 + Fixed the `link` plugin context toolbar missing the open link button #TINY-3461 + Fixed inconsistent dialog component spacing #TINY-3436 +Version 5.0.2 (2019-03-05) + Added presentation and document presets to `htmlpanel` dialog component #TINY-2694 + Added missing fixed_toolbar_container setting has been reimplemented in the Silver theme #TINY-2712 + Added a new toolbar setting `toolbar_drawer` that moves toolbar groups which overflow the editor width into either a `sliding` or `floating` toolbar section #TINY-2874 + Updated the build process to include package lock files in the dev distribution archive #TINY-2870 + Fixed inline dialogs did not have aria attributes #TINY-2694 + Fixed default icons are now available in the UI registry, allowing use outside of toolbar buttons #TINY-3307 + Fixed a memory leak related to select toolbar items #TINY-2874 + Fixed a memory leak due to format changed listeners that were never unbound #TINY-3191 + Fixed an issue where content may have been lost when using permanent bookmarks #TINY-3400 + Fixed the quicklink toolbar button not rendering in the quickbars plugin #TINY-3125 + Fixed an issue where menus were generating invalid HTML in some cases #TINY-3323 + Fixed an issue that could cause the mobile theme to show a blank white screen when the editor was inside an `overflow:hidden` element #TINY-3407 + Fixed mobile theme using a transparent background and not taking up the full width on iOS #TINY-3414 + Fixed the template plugin dialog missing the description field #TINY-3337 + Fixed input dialog components using an invalid default type attribute #TINY-3424 + Fixed an issue where backspace/delete keys after/before pagebreak elements wouldn't move the caret #TINY-3097 + Fixed an issue in the table plugin where menu items and toolbar buttons weren't showing correctly based on the selection #TINY-3423 + Fixed inconsistent button focus styles in Firefox #TINY-3377 + Fixed the resize icon floating left when all status bar elements were disabled #TINY-3340 + Fixed the resize handle to not show in fullscreen mode #TINY-3404 +Version 5.0.1 (2019-02-21) + Removed paste as text notification banner and paste_plaintext_inform setting #POW-102 + Fixed an issue where adding links to images would replace the image with text #TINY-3356 + Fixed an issue where the inline editor could use fractional pixels for positioning #TINY-3202 + Fixed an issue where uploading non-image files in the Image Plugin upload tab threw an error. #TINY-3244 + Added H1-H6 toggle button registration to the silver theme #TINY-3070 + Fixed an issue in the media plugin that was causing the source url and height/width to be lost in certain circumstances #TINY-2858 + Fixed an issue with the Context Toolbar not being removed when clicking outside of the editor #TINY-2804 + Fixed an issue where clicking 'Remove link' wouldn't remove the link in certain circumstances #TINY-3199 + Added code sample toolbar button will now toggle on when the cursor is in a code section #TINY-3040 + Fixed an issue where the media plugin would fail when parsing dialog data #TINY-3218 + Fixed an issue where retrieving the selected content as text didn't create newlines #TINY-3197 + Fixed incorrect keyboard shortcuts in the Help dialog for Windows #TINY-3292 + Fixed an issue where JSON serialization could produce invalid JSON #TINY-3281 + Fixed production CSS including references to source maps #TINY-3920 + Fixed development CSS was not included in the development zip #TINY-3920 + Fixed the autocompleter matches predicate not matching on the start of words by default #TINY-3306 + Added new settings to the emoticons plugin to allow additional emoticons to be added #TINY-3088 + Fixed an issue where the page could be scrolled with modal dialogs open #TINY-2252 + Fixed an issue where autocomplete menus would show an icon margin when no items had icons #TINY-3329 + Fixed an issue in the quickbars plugin where images incorrectly showed the text selection toolbar #TINY-3338 + Fixed an issue that caused the inline editor to fail to render when the target element already had focus #TINY-3353 +Version 5.0.0 (2019-02-04) + Full documentation for the version 5 features and changes is available at https://www.tiny.cloud/docs/release-notes/ + + Changes since RC2: + Fixed an issue where tab panel heights weren't sizing properly on smaller screens and weren't updating on resize #TINY-3242 + Added links and registered names with * to denote premium plugins in Plugins tab of Help dialog #TINY-3223 + Changed Tiny 5 mobile skin to look more uniform with desktop #TINY-2650 + Fixed image tools not having any padding between the label and slider #TINY-3220 + Blacklisted table, th and td as inline editor target #TINY-717 + Fixed context toolbar toggle buttons not showing the correct state #TINY-3022 + Fixed missing separators in the spellchecker context menu between the suggestions and actions #TINY-3217 + Fixed notification icon positioning in alert banners #TINY-2196 + Fixed a typo in the word count plugin name #TINY-3062 + Fixed charmap and emoticons dialogs not having a primary button #TINY-3233 + Fixed an issue where resizing wouldn't work correctly depending on the box-sizing model #TINY-3278 +Version 5.0.0-rc-2 (2019-01-22) + Fixed the link dialog such that it will now retain class attributes when updating links #TINY-2825 + Added screen reader accessibility for sidebar and statusbar #TINY-2699 + Updated Emoticons and Charmap dialogs to be screen reader accessible #TINY-2693 + Fixed "Find and replace" not showing in the "Edit" menu by default #TINY-3061 + Updated the textpattern plugin to properly support nested patterns and to allow running a command with a value for a pattern with a start and an end #TINY-2991 + Removed unnecessary 'flex' and unused 'colspan' properties from the new dialog APIs #TINY-2973 + Changed checkboxes to use a boolean for its state, instead of a string #TINY-2848 + Fixed dropdown buttons missing the 'type' attribute, which could cause forms to be incorrectly submitted #TINY-2826 + Fixed emoticon and charmap search not returning expected results in certain cases #TINY-3084 + Changed formatting menus so they are registered and made the align toolbar button use an icon instead of text #TINY-2880 + Fixed blank rel_list values throwing an exception in the link plugin #TINY-3149 +Version 5.0.0-rc-1 (2019-01-08) + Updated the font select dropdown logic to try to detect the system font stack and show "System Font" as the font name #TINY-2710 + Fixed readonly mode not fully disabling editing content #TINY-2287 + Updated the autocompleter to only show when it has matched items #TINY-2350 + Added editor settings functionality to specify title attributes for toolbar groups #TINY-2690 + Added icons instead of button text to improve Search and Replace dialog footer appearance #TINY-2654 + Added `tox-dialog__table` instead of `mce-table-striped` class to enhance Help dialog appearance #TINY-2360 + Added title attribute to iframes so, screen readers can announce iframe labels #TINY-2692 + Updated SizeInput labels to "Height" and "Width" instead of Dimensions #TINY-2833 + Fixed accessibility issues with the font select, font size, style select and format select toolbar dropdowns #TINY-2713 + Fixed accessibility issues with split dropdowns #TINY-2697 + Added a wordcount menu item, that defaults to appearing in the tools menu #TINY-2877 + Fixed the legacyoutput plugin to be compatible with TinyMCE 5.0 #TINY-2301 + Updated the build process to minify and generate ASCII only output for the emoticons database #TINY-2744 + Fixed icons not showing correctly in the autocompleter popup #TINY-3029 + Fixed an issue where preview wouldn't show anything in Edge under certain circumstances #TINY-3035 + Fixed the height being incorrectly calculated for the autoresize plugin #TINY-2807 +Version 5.0.0-beta-1 (2018-11-30) + Changed the name of the "inlite" plugin to "quickbars" #TINY-2831 + Fixed an inline mode issue where the save plugin upon saving can cause content loss #TINY-2659 + Changed the background color icon to highlight background icon #TINY-2258 + Added a new `addNestedMenuItem()` UI registry function and changed all nested menu items to use the new registry functions #TINY-2230 + Changed Help dialog to be accessible to screen readers #TINY-2687 + Changed the color swatch to save selected custom colors to local storage for use across sessions #TINY-2722 + Added title attribute to color swatch colors #TINY-2669 + Added anchorbar component to anchor inline toolbar dialogs to instead of the toolbar #TINY-2040 + Added support for toolbar and toolbar array config options to be squashed into a single toolbar and not create multiple toolbars #TINY-2195 + Added error handling for when forced_root_block config option is set to true #TINY-2261 + Added functionality for the removed_menuitems config option #TINY-2184 + Fixed an issue in IE 11 where calling selection.getContent() would return an empty string when the editor didn't have focus #TINY-2325 + Added the ability to use a string to reference menu items in menu buttons and submenu items #TINY-2253 + Removed compat3x plugin #TINY-2815 + Changed `WindowManager` API - methods `getParams`, `setParams` and `getWindows`, and the legacy `windows` property, have been removed. `alert` and `confirm` dialogs are no longer tracked in the window list. #TINY-2603 +Version 5.0.0-preview-4 (2018-11-12) + Fixed distraction free plugin #AP-470 + Removed the tox-custom-editor class that was added to the wrapping element of codemirror #TINY-2211 + Fixed contents of the input field being selected on focus instead of just recieving an outline highlight #AP-464 + Added width and height placeholder text to image and media dialog dimensions input #AP-296 + Fixed styling issues with dialogs and menus in IE 11 #AP-456 + Fixed custom style format control not honoring custom formats #AP-393 + Fixed context menu not appearing when clicking an image with a caption #AP-382 + Fixed directionality of UI when using an RTL language #AP-423 + Fixed page responsiveness with multiple inline editors #AP-430 + Added the ability to keyboard navigate through menus, toolbars, sidebar and the status bar sequentially #AP-381 + Fixed empty toolbar groups appearing through invalid configuration of the `toolbar` property #AP-450 + Fixed text not being retained when updating links through the link dialog #AP-293 + Added translation capability back to the editor's UI #AP-282 + Fixed edit image context menu, context toolbar and toolbar items being incorrectly enabled when selecting invalid images #AP-323 + Fixed emoji type ahead being shown when typing URLs #AP-366 + Fixed toolbar configuration properties incorrectly expecting string arrays instead of strings #AP-342 + Changed the editor resize handle so that it should be disabled when the autoresize plugin is turned on #AP-424 + Fixed the block formatting toolbar item not showing a "Formatting" title when there is no selection #AP-321 + Fixed clicking disabled toolbar buttons hiding the toolbar in inline mode #AP-380 + Fixed `EditorResize` event not being fired upon editor resize #AP-327 + Fixed tables losing styles when updating through the dialog #AP-368 + Fixed context toolbar positioning to be more consistent near the edges of the editor #AP-318 + Added `label` component type for dialogs to group components under a label + Fixed table of contents plugin now works with v5 toolbar APIs correctly #AP-347 + Fixed the `link_context_toolbar` configuration not disabling the context toolbar #AP-458 + Fixed the link context toolbar showing incorrect relative links #AP-435 + Fixed the alignment of the icon in alert banner dialog components #TINY-2220 + Changed UI text for microcopy improvements #TINY-2281 + Fixed the visual blocks and visual char menu options not displaying their toggled state #TINY-2238 + Fixed the editor not displaying as fullscreen when toggled #TINY-2237 +Version 5.0.0-preview-3 (2018-10-18) + Changed editor layout to use modern CSS properties over manually calculating dimensions #AP-324 + Changed `autoresize_min_height` and `autoresize_max_height` configurations to `min_height` and `max_height` #AP-324 + Fixed bugs with editor width jumping when resizing and the iframe not resizing to smaller than 150px in height #AP-324 + Fixed mobile theme bug that prevented the editor from loading #AP-404 + Fixed long toolbar groups extending outside of the editor instead of wrapping + Changed `Whole word` label in Search and Replace dialog to `Find whole words only` #AP-387 + Fixed dialog titles so they are now proper case #AP-384 + Fixed color picker default to be #000000 instead of #ff00ff #AP-216 + Fixed "match case" option on the Find and Replace dialog is no longer selected by default #AP-298 + Fixed vertical alignment of toolbar icons #DES-134 + Fixed toolbar icons not appearing on IE11 #DES-133 +Version 5.0.0-preview-2 (2018-10-10) + Changed configuration of color options has been simplified to `color_map`, `color_cols`, and `custom_colors` #AP-328 + Added swatch is now shown for colorinput fields, instead of the colorpicker directly #AP-328 + Removed `colorpicker` plugin, it is now in the theme #AP-328 + Removed `textcolor` plugin, it is now in the theme #AP-328 + Fixed styleselect not updating the displayed item as the cursor moved #AP-388 + Changed `height` configuration to apply to the editor frame (including menubar, toolbar, status bar) instead of the content area #AP-324 + Added fontformats and fontsizes menu items #AP-390 + Fixed preview iframe not expanding to the dialog size #AP-252 + Fixed 'meta' shortcuts not translated into platform-specific text #AP-270 + Fixed tabbed dialogs (Charmap and Emoticons) shrinking when no search results returned + Fixed a bug where alert banner icons were not retrieved from icon pack. #AP-330 + Fixed component styles to flex so they fill large dialogs. #AP-252 + Fixed editor flashing unstyled during load (still in progress). #AP-349 +Version 5.0.0-preview-1 (2018-10-01) + Developer preview 1 + Initial list of features and changes is available at https://tiny.cloud/docs-preview/release-notes/new-features/ +Version 4.9.3 (2019-01-31) + Added a visualchars_default_state setting to the Visualchars Plugin. Patch contributed by mat3e. + Fixed a bug where scrolling on a page with more than one editor would cause a ResizeWindow event to fire. #TINY-3247 + Fixed a bug where if a plugin threw an error during initialisation the whole editor would fail to load. #TINY-3243 + Fixed a bug where getContent would include bogus elements when valid_elements setting was set up in a specific way. #TINY-3213 + Fixed a bug where only a few function key names could be used when creating keyboard shortcuts. #TINY-3146 + Fixed a bug where it wasn't possible to enter spaces into an editor after pressing shift+enter. #TINY-3099 + Fixed a bug where no caret would be rendered after backspacing to a contenteditable false element. #TINY-2998 + Fixed a bug where deletion to/from indented lists would leave list fragments in the editor. #TINY-2981 +Version 4.9.2 (2018-12-17) + Fixed a bug with pressing the space key on IE 11 would result in nbsp characters being inserted between words at the end of a block. #TINY-2996 + Fixed a bug where character composition using quote and space on US International keyboards would produce a space instead of a quote. #TINY-2999 + Fixed a bug where remove format wouldn't remove the inner most inline element in some situations. #TINY-2982 + Fixed a bug where outdenting an list item would affect attributes on other list items within the same list. #TINY-2971 + Fixed a bug where the DomParser filters wouldn't be applied for elements created when parsing invalid html. #TINY-2978 + Fixed a bug where setProgressState wouldn't automatically close floating ui elements like menus. #TINY-2896 + Fixed a bug where it wasn't possible to navigate out of a figcaption element using the arrow keys. #TINY-2894 + Fixed a bug where enter key before an image inside a link would remove the image. #TINY-2780 +Version 4.9.1 (2018-12-04) + Added functionality to insert html to the replacement feature of the Textpattern Plugin. #TINY-2839 + Fixed a bug where `editor.selection.getContent({format: 'text'})` didn't work as expected in IE11 on an unfocused editor. #TINY-2862 + Fixed a bug in the Textpattern Plugin where the editor would get an incorrect selection after inserting a text pattern on Safari. #TINY-2838 + Fixed a bug where the space bar didn't work correctly in editors with the forced_root_block setting set to false. #TINY-2816 +Version 4.9.0 (2018-11-27) + Added a replace feature to the Textpattern Plugin. #TINY-1908 + Added functionality to the Lists Plugin that improves the indentation logic. #TINY-1790 + Fixed a bug where it wasn't possible to delete/backspace when the caret was between a contentEditable=false element and a BR. #TINY-2372 + Fixed a bug where copying table cells without a text selection would fail to copy anything. #TINY-1789 + Implemented missing `autosave_restore_when_empty` functionality in the Autosave Plugin. Patch contributed by gzzo. #GH-4447 + Reduced insertion of unnecessary nonbreaking spaces in the editor. #TINY-1879 +Version 4.8.5 (2018-10-30) + Added a content_css_cors setting to the editor that adds the crossorigin="anonymous" attribute to link tags added by the StyleSheetLoader. #TINY-1909 + Fixed a bug where trying to remove formatting with a collapsed selection range would throw an exception. #GH-4636 + Fixed a bug in the image plugin that caused updating figures to split contenteditable elements. #GH-4563 + Fixed a bug that was causing incorrect viewport calculations for fixed position UI elements. #TINY-1897 + Fixed a bug where inline formatting would cause the delete key to do nothing. #TINY-1900 +Version 4.8.4 (2018-10-23) + Added support for the HTML5 `main` element. #TINY-1877 + Changed the keyboard shortcut to move focus to contextual toolbars to Ctrl+F9. #TINY-1812 + Fixed a bug where content css could not be loaded from another domain. #TINY-1891 + Fixed a bug on FireFox where the cursor would get stuck between two contenteditable false inline elements located inside of the same block element divided by a BR. #TINY-1878 + Fixed a bug with the insertContent method where nonbreaking spaces would be inserted incorrectly. #TINY-1868 + Fixed a bug where the toolbar of the inline editor would not be visible in some scenarios. #TINY-1862 + Fixed a bug where removing the editor while more than one notification was open would throw an error. #TINY-1845 + Fixed a bug where the menubutton would be rendered on top of the menu if the viewport didn't have enough height. #TINY-1678 + Fixed a bug with the annotations api where annotating collapsed selections caused problems. #TBS-2449 + Fixed a bug where wbr elements were being transformed into whitespace when using the Paste Plugin's paste as text setting. #GH-4638 + Fixed a bug where the Search and Replace didn't replace spaces correctly. #GH-4632 + Fixed a bug with sublist items not persisting selection. #GH-4628 + Fixed a bug with mceInsertRawHTML command not working as expected. #GH-4625 +Version 4.8.3 (2018-09-13) + Fixed a bug where the Wordcount Plugin didn't correctly count words within tables on IE11. #TINY-1770 + Fixed a bug where it wasn't possible to move the caret out of a table on IE11 and Firefox. #TINY-1682 + Fixed a bug where merging empty blocks didn't work as expected, sometimes causing content to be deleted. #TINY-1781 + Fixed a bug where the Textcolor Plugin didn't show the correct current color. #TINY-1810 + Fixed a bug where clear formatting with a collapsed selection would sometimes clear formatting from more content than expected. #TINY-1813 #TINY-1821 + Fixed a bug with the Table Plugin where it wasn't possible to keyboard navigate to the caption. #TINY-1818 +Version 4.8.2 (2018-08-09) + Moved annotator from "experimental" to "annotator" object on editor. #TBS-2398 + Improved the multiclick normalization across browsers. #TINY-1788 + Fixed a bug where running getSelectedBlocks with a collapsed selection between block elements would produce incorrect results. #TINY-1787 + Fixed a bug where the ScriptLoaders loadScript method would not work as expected in FireFox when loaded on the same page as a ShadowDOM polyfill. #TINY-1786 + Removed reference to ShadowDOM event.path as Blink based browsers now support event.composedPath. #TINY-1785 + Fixed a bug where a reference to localStorage would throw an "access denied" error in IE11 with strict security settings. #TINY-1782 + Fixed a bug where pasting using the toolbar button on an inline editor in IE11 would cause a looping behaviour. #TINY-1768 +Version 4.8.1 (2018-07-26) + Fixed a bug where the content of inline editors was being cleaned on every call of `editor.save()`. #TINY-1783 + Fixed a bug where the arrow of the Inlite Theme toolbar was being rendered incorrectly in RTL mode. #TINY-1776 + Fixed a bug with the Paste Plugin where pasting after inline contenteditable false elements moved the caret to the end of the line. #TINY-1758 +Version 4.8.0 (2018-06-27) + Added new "experimental" object in editor, with initial Annotator API. #TBS-2374 + Fixed a bug where deleting paragraphs inside of table cells would delete the whole table cell. #TINY-1759 + Fixed a bug in the Table Plugin where removing row height set on the row properties dialog did not update the table. #TINY-1730 + Fixed a bug with the font select toolbar item didn't update correctly. #TINY-1683 + Fixed a bug where all bogus elements would not be deleted when removing an inline editor. #TINY-1669 +Version 4.7.13 (2018-05-16) + Fixed a bug where Edge 17 wouldn't be able to select images or tables. #TINY-1679 + Fixed issue where whitespace wasn't preserved when the editor was initialized on pre elements. #TINY-1649 + Fixed a bug with the fontselect dropdowns throwing an error if the editor was hidden in Firefox. #TINY-1664 + Fixed a bug where it wasn't possible to merge table cells on IE 11. #TINY-1671 + Fixed a bug where textcolor wasn't applying properly on IE 11 in some situations. #TINY-1663 + Fixed a bug where the justifyfull command state wasn't working correctly. #TINY-1677 + Fixed a bug where the styles wasn't updated correctly when resizing some tables. #TINY-1668 + Added missing code menu item from the default menu config. #TINY-1648 + Added new align button for combining the separate align buttons into a menu button. #TINY-1652 +Version 4.7.12 (2018-05-03) + Added an option to filter out image svg data urls. + Added support for html5 details and summary elements. + Changed so the mce-abs-layout-item css rule targets html instead of body. Patch contributed by nazar-pc. + Fixed a bug where the "read" step on the mobile theme was still present on android mobile browsers. + Fixed a bug where all images in the editor document would reload on any editor change. + Fixed a bug with the Table Plugin where ObjectResized event wasn't being triggered on column resize. + Fixed so the selection is set to the first suitable caret position after editor.setContent called. + Fixed so links with xlink:href attributes are filtered correctly to prevent XSS. + Fixed a bug on IE11 where pasting content into an inline editor initialized on a heading element would create new editable elements. + Fixed a bug where readonly mode would not work as expected when the editor contained contentEditable=true elements. + Fixed a bug where the Link Plugin would throw an error when used together with the webcomponents polyfill. Patch contributed by 4esnog. + Fixed a bug where the "Powered by TinyMCE" branding link would break on XHTML pages. Patch contributed by tistre. + Fixed a bug where the same id would be used in the blobcache for all pasted images. Patch contributed by thorn0. +Version 4.7.11 (2018-04-11) + Added a new imagetools_credentials_hosts option to the Imagetools Plugin. + Fixed a bug where toggling a list containing empty LIs would throw an error. Patch contributed by bradleyke. + Fixed a bug where applying block styles to a text with the caret at the end of the paragraph would select all text in the paragraph. + Fixed a bug where toggling on the Spellchecker Plugin would trigger isDirty on the editor. + Fixed a bug where it was possible to enter content into selection bookmark spans. + Fixed a bug where if a non paragraph block was configured in forced_root_block the editor.getContent method would return incorrect values with an empty editor. + Fixed a bug where dropdown menu panels stayed open and fixed in position when dragging dialog windows. + Fixed a bug where it wasn't possible to extend table cells with the space button in Safari. + Fixed a bug where the setupeditor event would thrown an error when using the Compat3x Plugin. + Fixed a bug where an error was thrown in FontInfo when called on a detached element. +Version 4.7.10 (2018-04-03) + Removed the "read" step from the mobile theme. + Added normalization of triple clicks across browsers in the editor. + Added a `hasFocus` method to the editor that checks if the editor has focus. + Added correct icon to the Nonbreaking Plugin menu item. + Fixed so the `getContent`/`setContent` methods work even if the editor is not initialized. + Fixed a bug with the Media Plugin where query strings were being stripped from youtube links. + Fixed a bug where image styles were changed/removed when opening and closing the Image Plugin dialog. + Fixed a bug in the Table Plugin where some table cell styles were not correctly added to the content html. + Fixed a bug in the Spellchecker Plugin where it wasn't possible to change the spellchecker language. + Fixed so the the unlink action in the Link Plugin has a menu item and can be added to the contextmenu. + Fixed a bug where it wasn't possible to keyboard navigate to the start of an inline element on a new line within the same block element. + Fixed a bug with the Text Color Plugin where if used with an inline editor located at the bottom of the screen the colorpicker could appear off screen. + Fixed a bug with the UndoManager where undo levels were being added for nbzwsp characters. + Fixed a bug with the Table Plugin where the caret would sometimes be lost when keyboard navigating up through a table. + Fixed a bug where FontInfo.getFontFamily would throw an error when called on a removed editor. + Fixed a bug in Firefox where undo levels were not being added correctly for some specific operations. + Fixed a bug where initializing an inline editor inside of a table would make the whole table resizeable. + Fixed a bug where the fake cursor that appears next to tables on Firefox was positioned incorrectly when switching to fullscreen. + Fixed a bug where zwsp's weren't trimmed from the output from `editor.getContent({ format: 'text' })`. + Fixed a bug where the fontsizeselect/fontselect toolbar items showed the body info rather than the first possible caret position info on init. + Fixed a bug where it wasn't possible to select all content if the editor only contained an inline boundary element. + Fixed a bug where `content_css` urls with query strings wasn't working. + Fixed a bug in the Table Plugin where some table row styles were removed when changing other styles in the row properties dialog. +Version 4.7.9 (2018-02-27) + Fixed a bug where the editor target element didn't get the correct style when removing the editor. +Version 4.7.8 (2018-02-26) + Fixed an issue with the Help Plugin where the menuitem name wasn't lowercase. + Fixed an issue on MacOS where text and bold text did not have the same line-height in the autocomplete dropdown in the Link Plugin dialog. + Fixed a bug where the "paste as text" option in the Paste Plugin didn't work. + Fixed a bug where dialog list boxes didn't get positioned correctly in documents with scroll. + Fixed a bug where the Inlite Theme didn't use the Table Plugin api to insert correct tables. + Fixed a bug where the Inlite Theme panel didn't hide on blur in a correct way. + Fixed a bug where placing the cursor before a table in Firefox would scroll to the bottom of the table. + Fixed a bug where selecting partial text in table cells with rowspans and deleting would produce faulty tables. + Fixed a bug where the Preview Plugin didn't work on Safari due to sandbox security. + Fixed a bug where table cell selection using the keyboard threw an error. + Fixed so the font size and font family doesn't toggle the text but only sets the selected format on the selected text. + Fixed so the built-in spellchecking on Chrome and Safari creates an undo level when replacing words. +Version 4.7.7 (2018-02-19) + Added a border style selector to the advanced tab of the Image Plugin. + Added better controls for default table inserted by the Table Plugin. + Added new `table_responsive_width` option to the Table Plugin that controls whether to use pixel or percentage widths. + Fixed a bug where the Link Plugin text didn't update when a URL was pasted using the context menu. + Fixed a bug with the Spellchecker Plugin where using "Add to dictionary" in the context menu threw an error. + Fixed a bug in the Media Plugin where the preview node for iframes got default width and height attributes that interfered with width/height styles. + Fixed a bug where backslashes were being added to some font family names in Firefox in the fontselect toolbar item. + Fixed a bug where errors would be thrown when trying to remove an editor that had not yet been fully initialized. + Fixed a bug where the Imagetools Plugin didn't update the images atomically. + Fixed a bug where the Fullscreen Plugin was throwing errors when being used on an inline editor. + Fixed a bug where drop down menus weren't positioned correctly in inline editors on scroll. + Fixed a bug with a semicolon missing at the end of the bundled javascript files. + Fixed a bug in the Table Plugin with cursor navigation inside of tables where the cursor would sometimes jump into an incorrect table cells. + Fixed a bug where indenting a table that is a list item using the "Increase indent" button would create a nested table. + Fixed a bug where text nodes containing only whitespace were being wrapped by paragraph elements. + Fixed a bug where whitespace was being inserted after br tags inside of paragraph tags. + Fixed a bug where converting an indented paragraph to a list item would cause the list item to have extra padding. + Fixed a bug where Copy/Paste in an editor with a lot of content would cause the editor to scroll to the top of the content in IE11. + Fixed a bug with a memory leak in the DragHelper. Path contributed by ben-mckernan. + Fixed a bug where the advanced tab in the Media Plugin was being shown even if it didn't contain anything. Patch contributed by gabrieeel. + Fixed an outdated eventname in the EventUtils. Patch contributed by nazar-pc. + Fixed an issue where the Json.parse function would throw an error when being used on a page with strict CSP settings. + Fixed so you can place the curser before and after table elements within the editor in Firefox and Edge/IE. +Version 4.7.6 (2018-01-29) + Fixed a bug in the jquery integration where it threw an error saying that "global is not defined". + Fixed a bug where deleting a table cell whose previous sibling was set to contenteditable false would create a corrupted table. + Fixed a bug where highlighting text in an unfocused editor did not work correctly in IE11/Edge. + Fixed a bug where the table resize handles were not being repositioned when activating the Fullscreen Plugin. + Fixed a bug where the Imagetools Plugin dialog didn't honor editor RTL settings. + Fixed a bug where block elements weren't being merged correctly if you deleted from after a contenteditable false element to the beginning of another block element. + Fixed a bug where TinyMCE didn't work with module loaders like webpack. +Version 4.7.5 (2018-01-22) + Fixed bug with the Codesample Plugin where it wasn't possible to edit codesamples when the editor was in inline mode. + Fixed bug where focusing on the status bar broke the keyboard navigation functionality. + Fixed bug where an error would be thrown on Edge by the Table Plugin when pasting using the PowerPaste Plugin. + Fixed bug in the Table Plugin where selecting row border style from the dropdown menu in advanced row properties would throw an error. + Fixed bug with icons being rendered incorrectly on Chrome on Mac OS. + Fixed bug in the Textcolor Plugin where the font color and background color buttons wouldn't trigger an ExecCommand event. + Fixed bug in the Link Plugin where the url field wasn't forced LTR. + Fixed bug where the Nonbreaking Plugin incorrectly inserted spaces into tables. + Fixed bug with the inline theme where the toolbar wasn't repositioned on window resize. +Version 4.7.4 (2017-12-05) + Fixed bug in the Nonbreaking Plugin where the nonbreaking_force_tab setting was being ignored. + Fixed bug in the Table Plugin where changing row height incorrectly converted column widths to pixels. + Fixed bug in the Table Plugin on Edge and IE11 where resizing the last column after resizing the table would cause invalid column heights. + Fixed bug in the Table Plugin where keyboard navigation was not normalized between browsers. + Fixed bug in the Table Plugin where the colorpicker button would show even without defining the colorpicker_callback. + Fixed bug in the Table Plugin where it wasn't possible to set the cell background color. + Fixed bug where Firefox would throw an error when intialising an editor on an element that is hidden or not yet added to the DOM. + Fixed bug where Firefox would throw an error when intialising an editor inside of a hidden iframe. +Version 4.7.3 (2017-11-23) + Added functionality to open the Codesample Plugin dialog when double clicking on a codesample. Patch contributed by dakuzen. + Fixed bug where undo/redo didn't work correctly with some formats and caret positions. + Fixed bug where the color picker didn't show up in Table Plugin dialogs. + Fixed bug where it wasn't possible to change the width of a table through the Table Plugin dialog. + Fixed bug where the Charmap Plugin couldn't insert some special characters. + Fixed bug where editing a newly inserted link would not actually edit the link but insert a new link next to it. + Fixed bug where deleting all content in a table cell made it impossible to place the caret into it. + Fixed bug where the vertical alignment field in the Table Plugin cell properties dialog didn't do anything. + Fixed bug where an image with a caption showed two sets of resize handles in IE11. + Fixed bug where pressing the enter button inside of an h1 with contenteditable set to true would sometimes produce a p tag. + Fixed bug with backspace not working as expected before a noneditable element. + Fixed bug where operating on tables with invalid rowspans would cause an error to be thrown. + Fixed so a real base64 representation of the image is available on the blobInfo that the images_upload_handler gets called with. + Fixed so the image upload tab is available when the images_upload_handler is defined (and not only when the images_upload_url is defined). +Version 4.7.2 (2017-11-07) + Added newly rewritten Table Plugin. + Added support for attributes with colon in valid_elements and addValidElements. + Added support for dailymotion short url in the Media Plugin. Patch contributed by maat8. + Added support for converting to half pt when converting font size from px to pt. Patch contributed by danny6514. + Added support for location hash to the Autosave plugin to make it work better with SPAs using hash routing. + Added support for merging table cells when pasting a table into another table. + Changed so the language packs are only loaded once. Patch contributed by 0xor1. + Simplified the css for inline boundaries selection by switching to an attribute selector. + Fixed bug where an error would be thrown on editor initialization if the window.getSelection() returned null. + Fixed bug where holding down control or alt keys made the keyboard navigation inside an inline boundary not work as expected. + Fixed bug where applying formats in IE11 produced extra, empty paragraphs in the editor. + Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly. + Fixed bug where removing an inline editor removed the element that the editor had been initialized on. + Fixed bug where setting the selection to the end of an editable container caused some formatting problems. + Fixed bug where an error would be thrown sometimes when an editor was removed because of the selection bookmark was being stored asynchronously. + Fixed a bug where an editor initialized on an empty list did not contain any valid cursor positions. + Fixed a bug with the Context Menu Plugin and webkit browsers on Mac where right-clicking inside a table would produce an incorrect selection. + Fixed bug where the Image Plugin constrain proportions setting wasn't working as expected. + Fixed bug where deleting the last character in a span with decorations produced an incorrect element when typing. + Fixed bug where focusing on inline editors made the toolbar flicker when moving between elements quickly. + Fixed bug where the selection would be stored incorrectly in inline editors when the mouseup event was fired outside the editor body. + Fixed bug where toggling bold at the end of an inline boundary would toggle off the whole word. + Fixed bug where setting the skin to false would not stop the loading of some skin css files. + Fixed bug in mobile theme where pinch-to-zoom would break after exiting the editor. + Fixed bug where sublists of a fully selected list would not be switched correctly when changing list style. + Fixed bug where inserting media by source would break the UndoManager. + Fixed bug where inserting some content into the editor with a specific selection would replace some content incorrectly. + Fixed bug where selecting all content with ctrl+a in IE11 caused problems with untoggling some formatting. + Fixed bug where the Search and Replace Plugin left some marker spans in the editor when undoing and redoing after replacing some content. + Fixed bug where the editor would not get a scrollbar when using the Fullscreen and Autoresize plugins together. + Fixed bug where the font selector would stop working correctly after selecting fonts three times. + Fixed so pressing the enter key inside of an inline boundary inserts a br after the inline boundary element. + Fixed a bug where it wasn't possible to use tab navigation inside of a table that was inside of a list. + Fixed bug where end_container_on_empty_block would incorrectly remove elements. + Fixed bug where content_styles weren't added to the Preview Plugin iframe. + Fixed so the beforeSetContent/beforeGetContent events are preventable. + Fixed bug where changing height value in Table Plugin advanced tab didn't do anything. + Fixed bug where it wasn't possible to remove formatting from content in beginning of table cell. +Version 4.7.1 (2017-10-09) + Fixed bug where theme set to false on an inline editor produced an extra div element after the target element. + Fixed bug where the editor drag icon was misaligned with the branding set to false. + Fixed bug where doubled menu items were not being removed as expected with the removed_menuitems setting. + Fixed bug where the Table of contents plugin threw an error when initialized. + Fixed bug where it wasn't possible to add inline formats to text selected right to left. + Fixed bug where the paste from plain text mode did not work as expected. + Fixed so the style previews do not set color and background color when selected. + Fixed bug where the Autolink plugin didn't work as expected with some formats applied on an empty editor. + Fixed bug where the Textpattern plugin were throwing errors on some patterns. + Fixed bug where the Save plugin saved all editors instead of only the active editor. Patch contributed by dannoe. +Version 4.7.0 (2017-10-03) + Added new mobile ui that is specifically designed for mobile devices. + Updated the default skin to be more modern and white since white is preferred by most implementations. + Restructured the default menus to be more similar to common office suites like Google Docs. + Fixed so theme can be set to false on both inline and iframe editor modes. + Fixed bug where inline editor would add/remove the visualblocks css multiple times. + Fixed bug where selection wouldn't be properly restored when editor lost focus and commands where invoked. + Fixed bug where toc plugin would generate id:s for headers even though a toc wasn't inserted into the content. + Fixed bug where is wasn't possible to drag/drop contents within the editor if paste_data_images where set to true. + Fixed bug where getParam and close in WindowManager would get the first opened window instead of the last opened window. + Fixed bug where delete would delete between cells inside a table in Firefox. +Version 4.6.7 (2017-09-18) + Fixed bug where paste wasn't working in IOS. + Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly. + Fixed bug where inserting a list in a table caused the cell to expand in height. + Fixed bug where pressing enter in a list located inside of a table deleted list items instead of inserting new list item. + Fixed bug where copy and pasting table cells produced inconsistent results. + Fixed bug where initializing an editor with an ID of 'length' would throw an exception. + Fixed bug where it was possible to split a non merged table cell. + Fixed bug where copy and pasting a list with a very specific selection into another list would produce a nested list. + Fixed bug where copy and pasting ordered lists sometimes produced unordered lists. + Fixed bug where padded elements inside other elements would be treated as empty. + Added some missing translations to Image, Link and Help plugins. + Fixed so you can resize images inside a figure element. + Fixed bug where an inline TinyMCE editor initialized on a table did not set selection on load in Chrome. + Fixed the positioning of the inlite toolbar when the target element wasn't big enough to fit the toolbar. +Version 4.6.6 (2017-08-30) + Fixed so that notifications wrap long text content instead of bleeding outside the notification element. + Fixed so the content_style css is added after the skin and custom stylesheets. + Fixed bug where it wasn't possible to remove a table with the Cut button. + Fixed bug where the center format wasn't getting the same font size as the other formats in the format preview. + Fixed bug where the wordcount plugin wasn't counting hyphenated words correctly. + Fixed bug where all content pasted into the editor was added to the end of the editor. + Fixed bug where enter keydown on list item selection only deleted content and didn't create a new line. + Fixed bug where destroying the editor while the content css was still loading caused error notifications on Firefox. + Fixed bug where undoing cut operation in IE11 left some unwanted html in the editor content. + Fixed bug where enter keydown would throw an error in IE11. + Fixed bug where duplicate instances of an editor were added to the editors array when using the createEditor API. + Fixed bug where the formatter applied formats on the wrong content when spellchecker was activated. + Fixed bug where switching formats would reset font size on child nodes. + Fixed bug where the table caption element weren't always the first descendant to the table tag. + Fixed bug where pasting some content into the editor on chrome some newlines were removed. + Fixed bug where it wasn't possible to remove a list if a list item was a table element. + Fixed bug where copy/pasting partial selections of tables wouldn't produce a proper table. + Fixed bug where the searchreplace plugin could not find consecutive spaces. + Fixed bug where background color wasn't applied correctly on some partially selected contents. +Version 4.6.5 (2017-08-02) + Added new inline_boundaries_selector that allows you to specify the elements that should have boundaries. + Added new local upload feature this allows the user to upload images directly from the image dialog. + Added a new api for providing meta data for plugins. It will show up in the help dialog if it's provided. + Fixed so that the notifications created by the notification manager are more screen reader accessible. + Fixed bug where changing the list format on multiple selected lists didn't change all of the lists. + Fixed bug where the nonbreaking plugin would insert multiple undo levels when pressing the tab key. + Fixed bug where delete/backspace wouldn't render a caret when all editor contents where deleted. + Fixed bug where delete/backspace wouldn't render a caret if the deleted element was a single contentEditable false element. + Fixed bug where the wordcount plugin wouldn't count words correctly if word where typed after applying a style format. + Fixed bug where the wordcount plugin would count mathematical formulas as multiple words for example 1+1=2. + Fixed bug where formatting of triple clicked blocks on Chrome/Safari would result in styles being added outside the visual selection. + Fixed bug where paste would add the contents to the end of the editor area when inline mode was used. + Fixed bug where toggling off bold formatting on text entered in a new paragraph would add an extra line break. + Fixed bug where autolink plugin would only produce a link on every other consecutive link on Firefox. + Fixed bug where it wasn't possible to select all contents if the content only had one pre element. + Fixed bug where sizzle would produce lagging behavior on some sites due to repaints caused by feature detection. + Fixed bug where toggling off inline formats wouldn't include the space on selected contents with leading or trailing spaces. + Fixed bug where the cut operation in UI wouldn't work in Chrome. + Fixed bug where some legacy editor initialization logic would throw exceptions about editor settings not being defined. + Fixed bug where it wasn't possible to apply text color to links if they where part of a non collapsed selection. + Fixed bug where an exception would be thrown if the user selected a video element and then moved the focus outside the editor. + Fixed bug where list operations didn't work if there where block elements inside the list items. + Fixed bug where applying block formats to lists wrapped in block elements would apply to all elements in that wrapped block. +Version 4.6.4 (2017-06-13) + Fixed bug where the editor would move the caret when clicking on the scrollbar next to a content editable false block. + Fixed bug where the text color select dropdowns wasn't placed correctly when they didn't fit the width of the screen. + Fixed bug where the default editor line height wasn't working for mixed font size contents. + Fixed bug where the content css files for inline editors were loaded multiple times for multiple editor instances. + Fixed bug where the initial value of the font size/font family dropdowns wasn't displayed. + Fixed bug where the I18n api was not supporting arrays as the translation replacement values. + Fixed bug where chrome would display "The given range isn't in document." errors for invalid ranges passed to setRng. + Fixed bug where the compat3x plugin wasn't working since the global tinymce references wasn't resolved correctly. + Fixed bug where the preview plugin wasn't encoding the base url passed into the iframe contents producing a xss bug. + Fixed bug where the dom parser/serializer wasn't handling some special elements like noframes, title and xmp. + Fixed bug where the dom parser/serializer wasn't handling cdata sections with comments inside. + Fixed bug where the editor would scroll to the top of the editable area if a dialog was closed in inline mode. + Fixed bug where the link dialog would not display the right rel value if rel_list was configured. + Fixed bug where the context menu would select images on some platforms but not others. + Fixed bug where the filenames of images were not retained on dragged and drop into the editor from the desktop. + Fixed bug where the paste plugin would misrepresent newlines when pasting plain text and having forced_root_block configured. + Fixed so that the error messages for the imagetools plugin is more human readable. + Fixed so the internal validate setting for the parser/serializer can't be set from editor initialization settings. +Version 4.6.3 (2017-05-30) + Fixed bug where the arrow keys didn't work correctly when navigating on nested inline boundary elements. + Fixed bug where delete/backspace didn't work correctly on nested inline boundary elements. + Fixed bug where image editing didn't work on subsequent edits of the same image. + Fixed bug where charmap descriptions wouldn't properly wrap if they exceeded the width of the box. + Fixed bug where the default image upload handler only accepted 200 as a valid http status code. + Fixed so rel on target=_blank links gets forced with only noopener instead of both noopener and noreferrer. +Version 4.6.2 (2017-05-23) + Fixed bug where the SaxParser would run out of memory on very large documents. + Fixed bug with formatting like font size wasn't applied to del elements. + Fixed bug where various api calls would be throwing exceptions if they where invoked on a removed editor instance. + Fixed bug where the branding position would be incorrect if the editor was inside a hidden tab and then later showed. + Fixed bug where the color levels feature in the imagetools dialog wasn't working properly. + Fixed bug where imagetools dialog wouldn't pre-load images from CORS domains, before trying to prepare them for editing. + Fixed bug where the tab key would move the caret to the next table cell if being pressed inside a list inside a table. + Fixed bug where the cut/copy operations would loose parent context like the current format etc. + Fixed bug with format preview not working on invalid elements excluded by valid_elements. + Fixed bug where blocks would be merged in incorrect order on backspace/delete. + Fixed bug where zero length text nodes would cause issues with the undo logic if there where iframes present. + Fixed bug where the font size/family select lists would throw errors if the first node was a comment. + Fixed bug with csp having to allow local script evaluation since it was used to detect global scope. + Fixed bug where CSP required a relaxed option for javascript: URLs in unsupported legacy browsers. + Fixed bug where a fake caret would be rendered for td with the contenteditable=false. + Fixed bug where typing would be blocked on IE 11 when within a nested contenteditable=true/false structure. +Version 4.6.1 (2017-05-10) + Added configuration option to list plugin to disable tab indentation. + Fixed bug where format change on very specific content could cause the selection to change. + Fixed bug where TinyMCE could not be lazyloaded through jquery integration. + Fixed bug where entities in style attributes weren't decoded correctly on paste in webkit. + Fixed bug where fontsize_formats option had been renamed incorrectly. + Fixed bug with broken backspace/delete behaviour between contenteditable=false blocks. + Fixed bug where it wasn't possible to backspace to the previous line with the inline boundaries functionality turned on. + Fixed bug where is wasn't possible to move caret left and right around a linked image with the inline boundaries functionality turned on. + Fixed bug where pressing enter after/before hr element threw exception. Patch contributed bradleyke. + Fixed so the CSS in the visualblocks plugin doesn't overwrite background color. Patch contributed by Christian Rank. + Fixed bug where multibyte characters weren't encoded correctly. Patch contributed by James Tarkenton. + Fixed bug where shift-click to select within contenteditable=true fields wasn't working. +Version 4.6.0 (2017-05-04) + Dropped support for IE 8-10 due to market share and lack of support from Microsoft. See tinymce docs for details. + Added an inline boundary caret position feature that makes it easier to type at the beginning/end of links/code elements. + Added a help plugin that adds a button and a dialog showing the editor shortcuts and loaded plugins. + Added an inline_boundaries option that allows you to disable the inline boundary feature if it's not desired. + Added a new ScrollIntoView event that allows you to override the default scroll to element behavior. + Added role and aria- attributes as valid elements in the default valid elements config. + Added new internal flag for PastePreProcess/PastePostProcess this is useful to know if the paste was coming from an external source. + Added new ignore function to UndoManager this works similar to transact except that it doesn't add an undo level by default. + Fixed so that urls gets retained for images when being edited. This url is then passed on to the upload handler. + Fixed so that the editors would be initialized on readyState interactive instead of complete. + Fixed so that the init event of the editor gets fired once all contentCSS files have been properly loaded. + Fixed so that width/height of the editor gets taken from the textarea element if it's explicitly specified in styles. + Fixed so that keep_styles set to false no longer clones class/style from the previous paragraph on enter. + Fixed so that the default line-height is 1.2em to avoid zwnbsp characters from producing text rendering glitches on Windows. + Fixed so that loading errors of content css gets presented by a notification message. + Fixed so figure image elements can be linked when selected this wraps the figure image in a anchor element. + Fixed bug where it wasn't possible to copy/paste rows with colspans by using the table copy/paste feature. + Fixed bug where the protect setting wasn't properly applied to header/footer parts when using the fullpage plugin. + Fixed bug where custom formats that specified upper case element names where not applied correctly. + Fixed bug where some screen readers weren't reading buttons due to an aria specific fix for IE 8. + Fixed bug where cut wasn't working correctly on iOS due to it's clipboard API not working correctly. + Fixed bug where Edge would paste div elements instead of paragraphs when pasting plain text. + Fixed bug where the textpattern plugin wasn't dealing with trailing punctuations correctly. + Fixed bug where image editing would some times change the image format from jpg to png. + Fixed bug where some UI elements could be inserted into the toolbar even if they where not registered. + Fixed bug where it was possible to click the TD instead of the character in the character map and that caused an exception. + Fixed bug where the font size/font family dropdowns would sometimes show an incorrect value due to css not being loaded in time. + Fixed bug with the media plugin inserting undefined instead of retaining size when media_dimensions was set to false. + Fixed bug with deleting images when forced_root_blocks where set to false. + Fixed bug where input focus wasn't properly handled on nested content editable elements. + Fixed bug where Chrome/Firefox would throw an exception when selecting images due to recent change of setBaseAndExtent support. + Fixed bug where malformed blobs would throw exceptions now they are simply ignored. + Fixed bug where backspace/delete wouldn't work properly in some cases where all contents was selected in WebKit. + Fixed bug with Angular producing errors since it was expecting events objects to be patched with their custom properties. + Fixed bug where the formatter would apply formatting to spellchecker errors now all bogus elements are excluded. + Fixed bug with backspace/delete inside table caption elements wouldn't behave properly on IE 11. + Fixed bug where typing after a contenteditable false inline element could move the caret to the end of that element. + Fixed bug where backspace before/after contenteditable false blocks wouldn't properly remove the right element. + Fixed bug where backspace before/after contenteditable false inline elements wouldn't properly empty the current block element. + Fixed bug where vertical caret navigation with a custom line-height would sometimes match incorrect positions. + Fixed bug with paste on Edge where character encoding wasn't handled properly due to a browser bug. + Fixed bug with paste on Edge where extra fragment data was inserted into the contents when pasting. + Fixed bug with pasting contents when having a whole block element selected on WebKit could cause WebKit spans to appear. + Fixed bug where the visualchars plugin wasn't working correctly showing invisible nbsp characters. + Fixed bug where browsers would hang if you tried to load some malformed html contents. + Fixed bug where the init call promise wouldn't resolve if the specified selector didn't find any matching elements. + Fixed bug where the Schema isValidChild function was case sensitive. +Version 4.5.3 (2017-02-01) + Added keyboard navigation for menu buttons when the menu is in focus. + Added api to the list plugin for setting custom classes/attributes on lists. + Added validation for the anchor plugin input field according to W3C id naming specifications. + Fixed bug where media placeholders were removed after resize with the forced_root_block setting set to false. + Fixed bug where deleting selections with similar sibling nodes sometimes deleted the whole document. + Fixed bug with inlite theme where several toolbars would appear scrolling when more than one instance of the editor was in use. + Fixed bug where the editor would throw error with the fontselect plugin on hidden editor instances in Firefox. + Fixed bug where the background color would not stretch to the font size. + Fixed bug where font size would be removed when changing background color. + Fixed bug where the undomanager trimmed away whitespace between nodes on undo/redo. + Fixed bug where media_dimensions=false in media plugin caused the editor to throw an error. + Fixed bug where IE was producing font/u elements within links on paste. + Fixed bug where some button tooltips were broken when compat3x was in use. + Fixed bug where backspace/delete/typeover would remove the caption element. + Fixed bug where powerspell failed to function when compat3x was enabled. + Fixed bug where it wasn't possible to apply sub/sup on text with large font size. + Fixed bug where pre tags with spaces weren't treated as content. + Fixed bug where Meta+A would select the entire document instead of all contents in nested ce=true elements. +Version 4.5.2 (2017-01-04) + Added missing keyboard shortcut description for the underline menu item in the format menu. + Fixed bug where external blob urls wasn't properly handled by editor upload logic. Patch contributed by David Oviedo. + Fixed bug where urls wasn't treated as a single word by the wordcount plugin. + Fixed bug where nbsp characters wasn't treated as word delimiters by the wordcount plugin. + Fixed bug where editor instance wasn't properly passed to the format preview logic. Patch contributed by NullQuery. + Fixed bug where the fake caret wasn't hidden when you moved selection to a cE=false element. + Fixed bug where it wasn't possible to edit existing code sample blocks. + Fixed bug where it wasn't possible to delete editor contents if the selection included an empty block. + Fixed bug where the formatter wasn't expanding words on some international characters. Patch contributed by Martin Larochelle. + Fixed bug where the open link feature wasn't working correctly on IE 11. + Fixed bug where enter before/after a cE=false block wouldn't properly padd the paragraph with an br element. + Fixed so font size and font family select boxes always displays a value by using the runtime style as a fallback. + Fixed so missing plugins will be logged to console as warnings rather than halting the initialization of the editor. + Fixed so splitbuttons become normal buttons in advlist plugin if styles are empty. Patch contributed by René Schleusner. + Fixed so you can multi insert rows/cols by selecting table cells and using insert rows/columns. +Version 4.5.1 (2016-12-07) + Fixed bug where the lists plugin wouldn't initialize without the advlist plugins if served from cdn. + Fixed bug where selectors with "*" would cause the style format preview to throw an error. + Fixed bug with toggling lists off on lists with empty list items would throw an error. + Fixed bug where editing images would produce non existing blob uris. + Fixed bug where the offscreen toc selection would be treated as the real toc element. + Fixed bug where the aria level attribute for element path would have an incorrect start index. + Fixed bug where the offscreen selection of cE=false that where very wide would be shown onscreen. Patch contributed by Steven Bufton. + Fixed so the default_link_target gets applied to links created by the autolink plugin. + Fixed so that the name attribute gets removed by the anchor plugin if editing anchors. +Version 4.5.0 (2016-11-23) + Added new toc plugin allows you to insert table of contents based on editor headings. + Added new auto complete menu to all url fields. Adds history, link to anchors etc. + Added new sidebar api that allows you to add custom sidebar panels and buttons to toggle these. + Added new insert menu button that allows you to have multiple insert functions under the same menu button. + Added new open link feature to ctrl+click, alt+enter and context menu. + Added new media_embed_handler option to allow the media plugin to be populated with custom embeds. + Added new support for editing transparent images using the image tools dialog. + Added new images_reuse_filename option to allow filenames of images to be retained for upload. + Added new security feature where links with target="_blank" will by default get rel="noopener noreferrer". + Added new allow_unsafe_link_target to allow you to opt-out of the target="_blank" security feature. + Added new style_formats_autohide option to automatically hide styles based on context. + Added new codesample_content_css option to specify where the code sample prism css is loaded from. + Added new support for Japanese/Chinese word count following the unicode standards on this. + Added new fragmented undo levels this dramatically reduces flicker on contents with iframes. + Added new live previews for complex elements like table or lists. + Fixed bug where it wasn't possible to properly tab between controls in a dialog with a disabled form item control. + Fixed bug where firefox would generate a rectangle on elements produced after/before a cE=false elements. + Fixed bug with advlist plugin not switching list element format properly in some edge cases. + Fixed bug where col/rowspans wasn't correctly computed by the table plugin in some cases. + Fixed bug where the table plugin would thrown an error if object_resizing was disabled. + Fixed bug where some invalid markup would cause issues when running in XHTML mode. Patch contributed by Charles Bourasseau. + Fixed bug where the fullscreen class wouldn't be removed properly when closing dialogs. + Fixed bug where the PastePlainTextToggle event wasn't fired by the paste plugin when the state changed. + Fixed bug where table the row type wasn't properly updated in table row dialog. Patch contributed by Matthias Balmer. + Fixed bug where select all and cut wouldn't place caret focus back to the editor in WebKit. Patch contributed by Daniel Jalkut. + Fixed bug where applying cell/row properties to multiple cells/rows would reset other unchanged properties. + Fixed bug where some elements in the schema would have redundant/incorrect children. + Fixed bug where selector and target options would cause issues if used together. + Fixed bug where drag/drop of images from desktop on chrome would thrown an error. + Fixed bug where cut on WebKit/Blink wouldn't add an undo level. + Fixed bug where IE 11 would scroll to the cE=false elements when they where selected. + Fixed bug where keys like F5 wouldn't work when a cE=false element was selected. + Fixed bug where the undo manager wouldn't stop the typing state when commands where executed. + Fixed bug where unlink on wrapped links wouldn't work properly. + Fixed bug with drag/drop of images on WebKit where the image would be deleted form the source editor. + Fixed bug where the visual characters mode would be disabled when contents was extracted from the editor. + Fixed bug where some browsers would toggle of formats applied to the caret when clicking in the editor toolbar. + Fixed bug where the custom theme function wasn't working correctly. + Fixed bug where image option for custom buttons required you to have icon specified as well. + Fixed bug where the context menu and contextual toolbars would be visible at the same time and sometimes overlapping. + Fixed bug where the noneditable plugin would double wrap elements when using the noneditable_regexp option. + Fixed bug where tables would get padding instead of margin when you used the indent button. + Fixed bug where the charmap plugin wouldn't properly insert non breaking spaces. + Fixed bug where the color previews in color input boxes wasn't properly updated. + Fixed bug where the list items of previous lists wasn't merged in the right order. + Fixed bug where it wasn't possible to drag/drop inline-block cE=false elements on IE 11. + Fixed bug where some table cell merges would produce incorrect rowspan/colspan. + Fixed so the font size of the editor defaults to 14px instead of 11px this can be overridden by custom css. + Fixed so wordcount is debounced to reduce cpu hogging on larger texts. + Fixed so tinymce global gets properly exported as a module when used with some module bundlers. + Fixed so it's possible to specify what css properties you want to preview on specific formats. + Fixed so anchors are contentEditable=false while within the editor. + Fixed so selected contents gets wrapped in a inline code element by the codesample plugin. + Fixed so conditional comments gets properly stripped independent of case. Patch contributed by Georgii Dolzhykov. + Fixed so some escaped css sequences gets properly handled. Patch contributed by Georgii Dolzhykov. + Fixed so notifications with the same message doesn't get displayed at the same time. + Fixed so F10 can be used as an alternative key to focus to the toolbar. + Fixed various api documentation issues and typos. + Removed layer plugin since it wasn't really ported from 3.x and there doesn't seem to be much use for it. + Removed moxieplayer.swf from the media plugin since it wasn't used by the media plugin. + Removed format state from the advlist plugin to be more consistent with common word processors. +Version 4.4.3 (2016-09-01) + Fixed bug where copy would produce an exception on Chrome. + Fixed bug where deleting lists on IE 11 would merge in correct text nodes. + Fixed bug where deleting partial lists with indentation wouldn't cause proper normalization. +Version 4.4.2 (2016-08-25) + Added new importcss_exclusive option to disable unique selectors per group. + Added new group specific selector_converter option to importcss plugin. + Added new codesample_languages option to apply custom languages to codesample plugin. + Added new codesample_dialog_width/codesample_dialog_height options. + Fixed bug where fullscreen button had an incorrect keyboard shortcut. + Fixed bug where backspace/delete wouldn't work correctly from a block to a cE=false element. + Fixed bug where smartpaste wasn't detecting links with special characters in them like tilde. + Fixed bug where the editor wouldn't get proper focus if you clicked on a cE=false element. + Fixed bug where it wasn't possible to copy/paste table rows that had merged cells. + Fixed bug where merging cells could some times produce invalid col/rowspan attibute values. + Fixed bug where getBody would sometimes thrown an exception now it just returns null if the iframe is clobbered. + Fixed bug where drag/drop of cE=false element wasn't properly constrained to viewport. + Fixed bug where contextmenu on Mac would collapse any selection to a caret. + Fixed bug where rtl mode wasn't rendered properly when loading a language pack with the rtl flag. + Fixed bug where Kamer word bounderies would be stripped from contents. + Fixed bug where lists would sometimes render two dots or numbers on the same line. + Fixed bug where the skin_url wasn't used by the inlite theme. + Fixed so data attributes are ignored when comparing formats in the formatter. + Fixed so it's possible to disable inline toolbars in the inlite theme. + Fixed so template dialog gets resized if it doesn't fit the window viewport. +Version 4.4.1 (2016-07-26) + Added smart_paste option to paste plugin to allow disabling the paste behavior if needed. + Fixed bug where png urls wasn't properly detected by the smart paste logic. + Fixed bug where the element path wasn't working properly when multiple editor instances where used. + Fixed bug with creating lists out of multiple paragraphs would just create one list item instead of multiple. + Fixed bug where scroll position wasn't properly handled by the inlite theme to place the toolbar properly. + Fixed bug where multiple instances of the editor using the inlite theme didn't render the toolbar properly. + Fixed bug where the shortcut label for fullscreen mode didn't match the actual shortcut key. + Fixed bug where it wasn't possible to select cE=false blocks using touch devices on for example iOS. + Fixed bug where it was possible to select the child image within a cE=false on IE 11. + Fixed so inserts of html containing lists doesn't merge with any existing lists unless it's a paste operation. +Version 4.4.0 (2016-06-30) + Added new inlite theme this is a more lightweight inline UI. + Added smarter paste logic that auto detects urls in the clipboard and inserts images/links based on that. + Added a better image resize algorithm for better image quality in the imagetools plugin. + Fixed bug where it wasn't possible to drag/dropping cE=false elements on FF. + Fixed bug where backspace/delete before/after a cE=false block would produce a new paragraph. + Fixed bug where list style type css property wasn't preserved when indenting lists. + Fixed bug where merging of lists where done even if the list style type was different. + Fixed bug where the image_dataimg_filter function wasn't used when pasting images. + Fixed bug where nested editable within a non editable element would cause scroll on focus in Chrome. + Fixed so invalid targets for inline mode is blocked on initialization. We only support elements that can have children. +Version 4.3.13 (2016-06-08) + Added characters with a diacritical mark to charmap plugin. Patch contributed by Dominik Schilling. + Added better error handling if the image proxy service would produce errors. + Fixed issue with pasting list items into list items would produce nested list rather than a merged list. + Fixed bug where table selection could get stuck in selection mode for inline editors. + Fixed bug where it was possible to place the caret inside the resize grid elements. + Fixed bug where it wasn't possible to place in elements horizontally adjacent cE=false blocks. + Fixed bug where multiple notifications wouldn't be properly placed on screen. + Fixed bug where multiple editor instance of the same id could be produces in some specific integrations. +Version 4.3.12 (2016-05-10) + Fixed bug where focus calls couldn't be made inside the editors PostRender event handler. + Fixed bug where some translations wouldn't work as expected due to a bug in editor.translate. + Fixed bug where the node change event could fire with a node out side the root of the editor. + Fixed bug where Chrome wouldn't properly present the keyboard paste clipboard details when paste was clicked. + Fixed bug where merged cells in tables couldn't be selected from right to left. + Fixed bug where insert row wouldn't properly update a merged cells rowspan property. + Fixed bug where the color input boxes preview field wasn't properly set on initialization. + Fixed bug where IME composition inside table cells wouldn't work as expected on IE 11. + Fixed so all shadow dom support is under and experimental flag due to flaky browser support. +Version 4.3.11 (2016-04-25) + Fixed bug where it wasn't possible to insert empty blocks though the API unless they where padded. + Fixed bug where you couldn't type the Euro character on Windows. + Fixed bug where backspace/delete from a cE=false element to a text block didn't work properly. + Fixed bug where the text color default grid would render incorrectly. + Fixed bug where the codesample plugin wouldn't load the css in the editor for multiple editors. + Fixed so the codesample plugin textarea gets focused by default. +Version 4.3.10 (2016-04-12) + Fixed bug where the key "y" on WebKit couldn't be entered due to conflict with keycode for F10 on keypress. +Version 4.3.9 (2016-04-12) + Added support for focusing the contextual toolbars using keyboard. + Added keyboard support for slider UI controls. You can no increase/decrease using arrow keys. + Added url pattern matching for Dailymotion to media plugin. Patch contributed by Bertrand Darbon. + Added body_class to template plugin preview. Patch contributed by Milen Petrinski. + Added options to better override textcolor pickers with custom colors. Patch contributed by Xavier Boubert. + Added visual arrows to inline contextual toolbars so that they point to the element being active. + Fixed so toolbars for tables or other larger elements get better positioned below the scrollable viewport. + Fixed bug where it was possible to click links inside cE=false blocks. + Fixed bug where event targets wasn't properly handled in Safari Technical Preview. + Fixed bug where drag/drop text in FF 45 would make the editor caret invisible. + Fixed bug where the remove state wasn't properly set on editor instances when detected as clobbered. + Fixed bug where offscreen selection of some cE=false elements would render onscreen. Patch contributed by Steven Bufton + Fixed bug where enter would clone styles out side the root on editors inside a span. Patch contributed by ChristophKaser. + Fixed bug where drag/drop of images into the editor didn't work correctly in FF. + Fixed so the first item in panels for the imagetools dialog gets proper keyboard focus. + Changed the Meta+Shift+F shortcut to Ctrl+Shift+F since Czech, Slovak, Polish languages used the first one for input. +Version 4.3.8 (2016-03-15) + Fixed bug where inserting HR at the end of a block element would produce an extra empty block. + Fixed bug where links would be clickable when readonly mode was enabled. + Fixed bug where the formatter would normalize to the wrong node on very specific content. + Fixed bug where some nested list items couldn't be indented properly. + Fixed bug where links where clickable in the preview dialog. + Fixed so the alt attribute doesn't get padded with an empty value by default. + Fixed so nested alignment works more correctly. You will now alter the alignment to the closest block parent. +Version 4.3.7 (2016-03-02) + Fixed bug where incorrect icons would be rendered for imagetools edit and color levels. + Fixed bug where navigation using arrow keys inside a SelectBox didn't move up/down. + Fixed bug where the visualblocks plugin would render borders round internal UI elements. +Version 4.3.6 (2016-03-01) + Added new paste_remember_plaintext_info option to allow a global disable of the plain text mode notification. + Added new PastePlainTextToggle event that fires when plain text mode toggles on/off. + Fixed bug where it wasn't possible to select media elements since the drag logic would snap it to mouse cursor. + Fixed bug where it was hard to place the caret inside nested cE=true elements when the outer cE=false element was focused. + Fixed bug where editors wouldn't properly initialize if both selector and mode where used. + Fixed bug where IME input inside table cells would switch the IME off. + Fixed bug where selection inside the first table cell would cause the whole table cell to get selected. + Fixed bug where error handling of images being uploaded wouldn't properly handle faulty statuses. + Fixed bug where inserting contents before a HR would cause an exception to be thrown. + Fixed bug where copy/paste of Excel data would be inserted as an image. + Fixed caret position issues with copy/paste of inline block cE=false elements. + Fixed issues with various menu item focus bugs in Chrome. Where the focused menu bar item wasn't properly blurred. + Fixed so the notifications have a solid background since it would be hard to read if there where text under it. + Fixed so notifications gets animated similar to the ones used by dialogs. + Fixed so larger images that gets pasted is handled better. + Fixed so the window close button is more uniform on various platform and also increased it's hit area. +Version 4.3.5 (2016-02-11) + Npm version bump due to package not being fully updated. +Version 4.3.4 (2016-02-11) + Added new OpenWindow/CloseWindow events that gets fired when windows open/close. + Added new NewCell/NewRow events that gets fired when table cells/rows are created. + Added new Promise return value to tinymce.init makes it easier to handle initialization. + Removed the jQuery version the jQuery plugin is now moved into the main package. + Removed jscs from build process since eslint can now handle code style checking. + Fixed various bugs with drag/drop of contentEditable:false elements. + Fixed bug where deleting of very specific nested list items would result in an odd list. + Fixed bug where lists would get merged with adjacent lists outside the editable inline root. + Fixed bug where MS Edge would crash when closing a dialog then clicking a menu item. + Fixed bug where table cell selection would add undo levels. + Fixed bug where table cell selection wasn't removed when inline editor where removed. + Fixed bug where table cell selection wouldn't work properly on nested tables. + Fixed bug where table merge menu would be available when merging between thead and tbody. + Fixed bug where table row/column resize wouldn't get properly removed when the editor was removed. + Fixed bug where Chrome would scroll to the editor if there where a empty hash value in document url. + Fixed bug where the cache suffix wouldn't work correctly with the importcss plugin. + Fixed bug where selection wouldn't work properly on MS Edge on Windows Phone 10. + Fixed so adjacent pre blocks gets joined into one pre block since that seems like the user intent. + Fixed so events gets properly dispatched in shadow dom. Patch provided by Nazar Mokrynskyi. +Version 4.3.3 (2016-01-14) + Added new table_resize_bars configuration setting. This setting allows you to disable the table resize bars. + Added new beforeInitialize event to tinymce.util.XHR lets you modify XHR properties before open. Patch contributed by Brent Clintel. + Added new autolink_pattern setting to autolink plugin. Enables you to override the default autolink formats. Patch contributed by Ben Tiedt. + Added new charmap option that lets you override the default charmap of the charmap plugin. + Added new charmap_append option that lets you add new characters to the default charmap of the charmap plugin. + Added new insertCustomChar event that gets fired when a character is inserted by the charmap plugin. + Fixed bug where table cells started with a superfluous   in IE10+. + Fixed bug where table plugin would retain all BR tags when cells were merged. + Fixed bug where media plugin would strip underscores from youtube urls. + Fixed bug where IME input would fail on IE 11 if you typed within a table. + Fixed bug where double click selection of a word would remove the space before the word on insert contents. + Fixed bug where table plugin would produce exceptions when hovering tables with invalid structure. + Fixed bug where fullscreen wouldn't scroll back to it's original position when untoggled. + Fixed so the template plugins templates setting can be a function that gets a callback that can provide templates. +Version 4.3.2 (2015-12-14) + Fixed bug where the resize bars for table cells were not affected by the object_resizing property. + Fixed bug where the contextual table toolbar would appear incorrectly if TinyMCE was initialized inline inside a table. + Fixed bug where resizing table cells did not fire a node change event or add an undo level. + Fixed bug where double click selection of text on IE 11 wouldn't work properly. + Fixed bug where codesample plugin would incorrectly produce br elements inside code elements. + Fixed bug where media plugin would strip dashes from youtube urls. + Fixed bug where it was possible to move the caret into the table resize bars. + Fixed bug where drag/drop into a cE=false element was possible on IE. +Version 4.3.1 (2015-11-30) + Fixed so it's possible to disable the table inline toolbar by setting it to false or an empty string. + Fixed bug where it wasn't possible to resize some tables using the drag handles. + Fixed bug where unique id:s would clash for multiple editor instances and cE=false selections. + Fixed bug where the same plugin could be initialized multiple times. + Fixed bug where the table inline toolbars would be displayed at the same time as the image toolbars. + Fixed bug where the table selection rect wouldn't be removed when selecting another control element. +Version 4.3.0 (2015-11-23) + Added new table column/row resize support. Makes it a lot more easy to resize the columns/rows in a table. + Added new table inline toolbar. Makes it easier to for example add new rows or columns to a table. + Added new notification API. Lets you display floating notifications to the end user. + Added new codesample plugin that lets you insert syntax highlighted pre elements into the editor. + Added new image_caption to images. Lets you create images with captions using a HTML5 figure/figcaption elements. + Added new live previews of embeded videos. Lets you play the video right inside the editor. + Added new setDirty method and "dirty" event to the editor. Makes it easier to track the dirty state change. + Added new setMode method to Editor instances that lets you dynamically switch between design/readonly. + Added new core support for contentEditable=false elements within the editor overrides the browsers broken behavior. + Rewrote the noneditable plugin to use the new contentEditable false core logic. + Fixed so the dirty state doesn't set to false automatically when the undo index is set to 0. + Fixed the Selection.placeCaretAt so it works better on IE when the coordinate is between paragraphs. + Fixed bug where data-mce-bogus="all" element contents where counted by the word count plugin. + Fixed bug where contentEditable=false elements would be indented by the indent buttons. + Fixed bug where images within contentEditable=false would be selected in WebKit on mouse click. + Fixed bug in DOMUntils split method where the replacement parameter wouldn't work on specific cases. + Fixed bug where the importcss plugin would import classes from the skin content css file. + Fixed so all button variants have a wrapping span for it's text to make it easier to skin. + Fixed so it's easier to exit pre block using the arrow keys. + Fixed bug where listboxes with fix widths didn't render correctly. +Version 4.2.8 (2015-11-13) + Fixed bug where it was possible to delete tables as the inline root element if all columns where selected. + Fixed bug where the UI buttons active state wasn't properly updated due to recent refactoring of that logic. +Version 4.2.7 (2015-10-27) + Fixed bug where backspace/delete would remove all formats on the last paragraph character in WebKit/Blink. + Fixed bug where backspace within a inline format element with a bogus caret container would move the caret. + Fixed bug where backspace/delete on selected table cells wouldn't add an undo level. + Fixed bug where script tags embedded within the editor could sometimes get a mce- prefix prepended to them + Fixed bug where validate: false option could produce an error to be thrown from the Serialization step. + Fixed bug where inline editing of a table as the root element could let the user delete that table. + Fixed bug where inline editing of a table as the root element wouldn't properly handle enter key. + Fixed bug where inline editing of a table as the root element would normalize the selection incorrectly. + Fixed bug where inline editing of a list as the root element could let the user delete that list. + Fixed bug where inline editing of a list as the root element could let the user split that list. + Fixed bug where resize handles would be rendered on editable root elements such as table. +Version 4.2.6 (2015-09-28) + Added capability to set request headers when using XHRs. + Added capability to upload local images automatically default delay is set to 30 seconds after editing images. + Added commands ids mceEditImage, mceAchor and mceMedia to be avaiable from execCommand. + Added Edge browser to saucelabs grunt task. Patch contributed by John-David Dalton. + Fixed bug where blob uris not produced by tinymce would produce HTML invalid markup. + Fixed bug where selection of contents of a nearly empty editor in Edge would sometimes fail. + Fixed bug where color styles woudln't be retained on copy/paste in Blink/Webkit. + Fixed bug where the table plugin would throw an error when inserting rows after a child table. + Fixed bug where the template plugin wouldn't handle functions as variable replacements. + Fixed bug where undo/redo sometimes wouldn't work properly when applying formatting collapsed ranges. + Fixed bug where shift+delete wouldn't do a cut operation on Blink/WebKit. + Fixed bug where cut action wouldn't properly store the before selection bookmark for the undo level. + Fixed bug where backspace in side an empty list element on IE would loose editor focus. + Fixed bug where the save plugin wouldn't enable the buttons when a change occurred. + Fixed bug where Edge wouldn't initialize the editor if a document.domain was specified. + Fixed bug where enter key before nested images would sometimes not properly expand the previous block. + Fixed bug where the inline toolbars wouldn't get properly hidden when blurring the editor instance. + Fixed bug where Edge would paste Chinese characters on some Windows 10 installations. + Fixed bug where IME would loose focus on IE 11 due to the double trailing br bug fix. + Fixed bug where the proxy url in imagetools was incorrect. Patch contributed by Wong Ho Wang. +Version 4.2.5 (2015-08-31) + Added fullscreen capability to embedded youtube and vimeo videos. + Fixed bug where the uploadImages call didn't work on IE 10. + Fixed bug where image place holders would be uploaded by uploadImages call. + Fixed bug where images marked with bogus would be uploaded by the uploadImages call. + Fixed bug where multiple calls to uploadImages would result in decreased performance. + Fixed bug where pagebreaks were editable to imagetools patch contributed by Rasmus Wallin. + Fixed bug where the element path could cause too much recursion exception. + Fixed bug for domains containing ".min". Patch contributed by Loïc Février. + Fixed so validation of external links to accept a number after www. Patch contributed by Victor Carvalho. + Fixed so the charmap is exposed though execCommand. Patch contributed by Matthew Will. + Fixed so that the image uploads are concurrent for improved performance. + Fixed various grammar problems in inline documentation. Patches provided by nikolas. +Version 4.2.4 (2015-08-17) + Added picture as a valid element to the HTML 5 schema. Patch contributed by Adam Taylor. + Fixed bug where contents would be duplicated on drag/drop within the same editor. + Fixed bug where floating/alignment of images on Edge wouldn't work properly. + Fixed bug where it wasn't possible to drag images on IE 11. + Fixed bug where image selection on Edge would sometimes fail. + Fixed bug where contextual toolbars icons wasn't rendered properly when using the toolbar_items_size. + Fixed bug where searchreplace dialog doesn't get prefilled with the selected text. + Fixed bug where fragmented matches wouldn't get properly replaced by the searchreplace plugin. + Fixed bug where enter key wouldn't place the caret if was after a trailing space within an inline element. + Fixed bug where the autolink plugin could produce multiple links for the same text on Gecko. + Fixed bug where EditorUpload could sometimes throw an exception if the blob wasn't found. + Fixed xss issues with media plugin not properly filtering out some script attributes. +Version 4.2.3 (2015-07-30) + Fixed bug where image selection wasn't possible on Edge due to incompatible setBaseAndExtend API. + Fixed bug where image blobs urls where not properly destroyed by the imagetools plugin. + Fixed bug where keyboard shortcuts wasn't working correctly on IE 8. + Fixed skin issue where the borders of panels where not visible on IE 8. +Version 4.2.2 (2015-07-22) + Fixed bug where float panels were not being hidden on inline editor blur when fixed_toolbar_container config option was in use. + Fixed bug where combobox states wasn't properly updated if contents where updated without keyboard. + Fixed bug where pasting into textbox or combobox would move the caret to the end of text. + Fixed bug where removal of bogus span elements before block elements would remove whitespace between nodes. + Fixed bug where repositioning of inline toolbars where async and producing errors if the editor was removed from DOM to early. Patch by iseulde. + Fixed bug where element path wasn't working correctly. Patch contributed by iseulde. + Fixed bug where menus wasn't rendered correctly when custom images where added to a menu. Patch contributed by Naim Hammadi. +Version 4.2.1 (2015-06-29) + Fixed bug where back/forward buttons in the browser would render blob images as broken images. + Fixed bug where Firefox would throw regexp to big error when replacing huge base64 chunks. + Fixed bug rendering issues with resize and context toolbars not being placed properly until next animation frame. + Fixed bug where the rendering of the image while cropping would some times not be centered correctly. + Fixed bug where listbox items with submenus would me selected as active. + Fixed bug where context menu where throwing an error when rendering. + Fixed bug where resize both option wasn't working due to resent addClass API change. Patch contributed by Jogai. + Fixed bug where a hideAll call for container rendered inline toolbars would throw an error. + Fixed bug where onclick event handler on combobox could cause issues if element.id was a function by some polluting libraries. + Fixed bug where listboxes wouldn't get proper selected sub menu item when using link_list or image_list. + Fixed so the UI controls are as wide as 4.1.x to avoid wrapping controls in toolbars. + Fixed so the imagetools dialog is adaptive for smaller screen sizes. +Version 4.2.0 (2015-06-25) + Added new flat default skin to make the UI more modern. + Added new imagetools plugin, lets you crop/resize and apply filters to images. + Added new contextual toolbars support to the API lets you add floating toolbars for specific CSS selectors. + Added new promise feature fill as tinymce.util.Promise. + Added new built in image upload feature lets you upload any base64 encoded image within the editor as files. + Fixed bug where resize handles would appear in the right position in the wrong editor when switching between resizable content in different inline editors. + Fixed bug where tables would not be inserted in inline mode due to previous float panel fix. + Fixed bug where floating panels would remain open when focus was lost on inline editors. + Fixed bug where cut command on Chrome would thrown a browser security exception. + Fixed bug where IE 11 sometimes would report an incorrect size for images in the image dialog. + Fixed bug where it wasn't possible to remove inline formatting at the end of block elements. + Fixed bug where it wasn't possible to delete table cell contents when cell selection was vertical. + Fixed bug where table cell wasn't emptied from block elements if delete/backspace where pressed in empty cell. + Fixed bug where cmd+shift+arrow didn't work correctly on Firefox mac when selecting to start/end of line. + Fixed bug where removal of bogus elements would sometimes remove whitespace between nodes. + Fixed bug where the resize handles wasn't updated when the main window was resized. + Fixed so script elements gets removed by default to prevent possible XSS issues in default config implementations. + Fixed so the UI doesn't need manual reflows when using non native layout managers. + Fixed so base64 encoded images doesn't slow down the editor on modern browsers while editing. + Fixed so all UI elements uses touch events to improve mobile device support. + Removed the touch click quirks patch for iOS since it did more harm than good. + Removed the non proportional resize handles since. Unproportional resize can still be done by holding the shift key. +Version 4.1.10 (2015-05-05) + Fixed bug where plugins loaded with compat3x would sometimes throw errors when loading using the jQuery version. + Fixed bug where extra empty paragraphs would get deleted in WebKit/Blink due to recent Quriks fix. + Fixed bug where the editor wouldn't work properly on IE 12 due to some required browser sniffing. + Fixed bug where formatting shortcut keys where interfering with Mac OS X screenshot keys. + Fixed bug where the caret wouldn't move to the next/previous line boundary on Cmd+Left/Right on Gecko. + Fixed bug where it wasn't possible to remove formats from very specific nested contents. + Fixed bug where undo levels wasn't produced when typing letters using the shift or alt+ctrl modifiers. + Fixed bug where the dirty state wasn't properly updated when typing using the shift or alt+ctrl modifiers. + Fixed bug where an error would be thrown if an autofocused editor was destroyed quickly after its initialization. Patch provided by thorn0. + Fixed issue with dirty state not being properly updated on redo operation. + Fixed issue with entity decoder not handling incorrectly written numeric entities. + Fixed issue where some PI element values wouldn't be properly encoded. +Version 4.1.9 (2015-03-10) + Fixed bug where indentation wouldn't work properly for non list elements. + Fixed bug with image plugin not pulling the image dimensions out correctly if a custom document_base_url was used. + Fixed bug where ctrl+alt+[1-9] would conflict with the AltGr+[1-9] on Windows. New shortcuts is ctrl+shift+[1-9]. + Fixed bug with removing formatting on nodes in inline mode would sometimes include nodes outside the editor body. + Fixed bug where extra nbsp:s would be inserted when you replaced a word surrounded by spaces using insertContent. + Fixed bug with pasting from Google Docs would produce extra strong elements and line feeds. +Version 4.1.8 (2015-03-05) + Added new html5 sizes attribute to img elements used together with srcset. + Added new elementpath option that makes it possible to disable the element path but keep the statusbar. + Added new option table_style_by_css for the table plugin to set table styling with css rather than table attributes. + Added new link_assume_external_targets option to prompt the user to prepend http:// prefix if the supplied link does not contain a protocol prefix. + Added new image_prepend_url option to allow a custom base path/url to be added to images. + Added new table_appearance_options option to make it possible to disable some options. + Added new image_title option to make it possible to alter the title of the image, disabled by default. + Fixed bug where selection starting from out side of the body wouldn't produce a proper selection range on IE 11. + Fixed bug where pressing enter twice before a table moves the cursor in the table and causes a javascript error. + Fixed bug where advanced image styles were not respected. + Fixed bug where the less common Shift+Delete didn't produce a proper cut operation on WebKit browsers. + Fixed bug where image/media size constrain logic would produce NaN when handling non number values. + Fixed bug where internal classes where removed by the removeformat command. + Fixed bug with creating links table cell contents with a specific selection would throw a exceptions on WebKit/Blink. + Fixed bug where valid_classes option didn't work as expected according to docs. Patch provided by thorn0. + Fixed bug where jQuery plugin would patch the internal methods multiple times. Patch provided by Drew Martin. + Fixed bug where backspace key wouldn't delete the current selection of newly formatted content. + Fixed bug where type over of inline formatting elements wouldn't properly keep the format on WebKit/Blink. + Fixed bug where selection needed to be properly normalized on modern IE versions. + Fixed bug where Command+Backspace didn't properly delete the whole line of text but the previous word. + Fixed bug where UI active states wheren't properly updated on IE if you placed caret within the current range. + Fixed bug where delete/backspace on WebKit/Blink would remove span elements created by the user. + Fixed bug where delete/backspace would produce incorrect results when deleting between two text blocks with br elements. + Fixed bug where captions where removed when pasting from MS Office. + Fixed bug where lists plugin wouldn't properly remove fully selected nested lists. + Fixed bug where the ttf font used for icons would throw an warning message on Gecko on Mac OS X. + Fixed a bug where applying a color to text did not update the undo/redo history. + Fixed so shy entities gets displayed when using the visualchars plugin. + Fixed so removeformat removes ins/del by default since these might be used for strikethough. + Fixed so multiple language packs can be loaded and added to the global I18n data structure. + Fixed so transparent color selection gets treated as a normal color selection. Patch contributed by Alexander Hofbauer. + Fixed so it's possible to disable autoresize_overflow_padding, autoresize_bottom_margin options by setting them to false. + Fixed so the charmap plugin shows the description of the character in the dialog. Patch contributed by Jelle Hissink. + Removed address from the default list of block formats since it tends to be missused. + Fixed so the pre block format is called preformatted to make it more verbose. + Fixed so it's possible to context scope translation strings this isn't needed most of the time. + Fixed so the max length of the width/height input fields of the media dialog is 5 instead of 3. + Fixed so drag/dropped contents gets properly processed by paste plugin since it's basically a paste. Patch contributed by Greg Fairbanks. + Fixed so shortcut keys for headers is ctrl+alt+[1-9] instead of ctrl+[1-9] since these are for switching tabs in the browsers. + Fixed so "u" doesn't get converted into a span element by the legacy input filter. Since this is now a valid HTML5 element. + Fixed font families in order to provide appropriate web-safe fonts. +Version 4.1.7 (2014-11-27) + Added HTML5 schema support for srcset, source and picture. Patch contributed by mattheu. + Added new cache_suffix setting to enable cache busting by producing unique urls. + Added new paste_convert_word_fake_lists option to enable users to disable the fake lists convert logic. + Fixed so advlist style changes adds undo levels for each change. + Fixed bug where WebKit would sometimes produce an exception when the autolink plugin where looking for URLs. + Fixed bug where IE 7 wouldn't be rendered properly due to aggressive css compression. + Fixed bug where DomQuery wouldn't accept window as constructor element. + Fixed bug where the color picker in 3.x dialogs wouldn't work properly. Patch contributed by Callidior. + Fixed bug where the image plugin wouldn't respect the document_base_url. + Fixed bug where the jQuery plugin would fail to append to elements named array prototype names. +Version 4.1.6 (2014-10-08) + Fixed bug with clicking on the scrollbar of the iframe would cause a JS error to be thrown. + Fixed bug where null would produce an exception if you passed it to selection.setRng. + Fixed bug where Ctrl/Cmd+Tab would indent the current list item if you switched tabs in the browser. + Fixed bug where pasting empty cells from Excel would result in a broken table. + Fixed bug where it wasn't possible to switch back to default list style type. + Fixed issue where the select all quirk fix would fire for other modifiers than Ctrl/Cmd combinations. + Replaced jake with grunt since it is more mainstream and has better plugin support. +Version 4.1.5 (2014-09-09) + Fixed bug where sometimes the resize rectangles wouldn't properly render on images on WebKit/Blink. + Fixed bug in list plugin where delete/backspace would merge empty LI elements in lists incorrectly. + Fixed bug where empty list elements would result in empty LI elements without it's parent container. + Fixed bug where backspace in empty caret formatted element could produce an type error exception of Gecko. + Fixed bug where lists pasted from word with a custom start index above 9 wouldn't be properly handled. + Fixed bug where tabfocus plugin would tab out of the editor instance even if the default action was prevented. + Fixed bug where tabfocus wouldn't tab properly to other adjacent editor instances. + Fixed bug where the DOMUtils setStyles wouldn't properly removed or update the data-mce-style attribute. + Fixed bug where dialog select boxes would be placed incorrectly if document.body wasn't statically positioned. + Fixed bug where pasting would sometimes scroll to the top of page if the user was using the autoresize plugin. + Fixed bug where caret wouldn't be properly rendered by Chrome when clicking on the iframes documentElement. + Fixed so custom images for menubutton/splitbutton can be provided. Patch contributed by Naim Hammadi. + Fixed so the default action of windows closing can be prevented by blocking the default action of the close event. + Fixed so nodeChange and focus of the editor isn't automatically performed when opening sub dialogs. Version 4.1.4 (2014-08-21) - Added new media_filter_html option to media plugin that blocks any conditional comments, scripts etc within a video element. - Added new content_security_policy option allows you to set custom policy for iframe contents. Patch contributed by Francois Chagnon. - Fixed bug where activate/deactivate events wasn't firing properly when switching between editors. - Fixed bug where placing the caret on iOS was difficult due to a WebKit bug with touch events. - Fixed bug where the resize helper wouldn't render properly on older IE versions. - Fixed bug where resizing images inside tables on older IE versions would sometimes fail depending mouse position. - Fixed bug where editor.insertContent would produce an exception when inserting select/option elements. - Fixed bug where extra empty paragraphs would be produced if block elements where inserted inside span elements. - Fixed bug where the spellchecker menu item wouldn't be properly checked if spell checking was started before it was rendered. - Fixed bug where the DomQuery filter function wouldn't remove non elements from collection. - Fixed bug where document with custom document.domain wouldn't properly render the editor. - Fixed bug where IE 8 would throw exception when trying to enter invalid color values into colorboxes. - Fixed bug where undo manager could incorrectly add an extra undo level when custom resize handles was removed. - Fixed bug where it wouldn't be possible to alter cell properties properly on table cells on IE 8. - Fixed so the color picker button in table dialog isn't shown unless you include the colorpicker plugin or add your own custom color picker. - Fixed so activate/deactivate events fire when windowManager opens a window since. - Fixed so the table advtab options isn't separated by an underscore to normalize naming with image_advtab option. - Fixed so the table cell dialog has proper padding when the advanced tab in disabled. + Added new media_filter_html option to media plugin that blocks any conditional comments, scripts etc within a video element. + Added new content_security_policy option allows you to set custom policy for iframe contents. Patch contributed by Francois Chagnon. + Fixed bug where activate/deactivate events wasn't firing properly when switching between editors. + Fixed bug where placing the caret on iOS was difficult due to a WebKit bug with touch events. + Fixed bug where the resize helper wouldn't render properly on older IE versions. + Fixed bug where resizing images inside tables on older IE versions would sometimes fail depending mouse position. + Fixed bug where editor.insertContent would produce an exception when inserting select/option elements. + Fixed bug where extra empty paragraphs would be produced if block elements where inserted inside span elements. + Fixed bug where the spellchecker menu item wouldn't be properly checked if spell checking was started before it was rendered. + Fixed bug where the DomQuery filter function wouldn't remove non elements from collection. + Fixed bug where document with custom document.domain wouldn't properly render the editor. + Fixed bug where IE 8 would throw exception when trying to enter invalid color values into colorboxes. + Fixed bug where undo manager could incorrectly add an extra undo level when custom resize handles was removed. + Fixed bug where it wouldn't be possible to alter cell properties properly on table cells on IE 8. + Fixed so the color picker button in table dialog isn't shown unless you include the colorpicker plugin or add your own custom color picker. + Fixed so activate/deactivate events fire when windowManager opens a window since. + Fixed so the table advtab options isn't separated by an underscore to normalize naming with image_advtab option. + Fixed so the table cell dialog has proper padding when the advanced tab in disabled. Version 4.1.3 (2014-07-29) - Added event binding logic to tinymce.util.XHR making it possible to override headers and settings before any request is made. - Fixed bug where drag events wasn't fireing properly on older IE versions since the event handlers where bound to document. - Fixed bug where drag/dropping contents within the editor on IE would force the contents into plain text mode even if it was internal content. - Fixed bug where IE 7 wouldn't open menus properly due to a resize bug in the browser auto closing them immediately. - Fixed bug where the DOMUtils getPos logic wouldn't produce a valid coordinate inside the body if the body was positioned non static. - Fixed bug where the element path and format state wasn't properly updated if you had the wordcount plugin enabled. - Fixed bug where a comment at the beginning of source would produce an exception in the formatter logic. - Fixed bug where setAttrib/getAttrib on null would throw exception together with any hooked attributes like style. - Fixed bug where table sizes wasn't properly retained when copy/pasting on WebKit/Blink. - Fixed bug where WebKit/Blink would produce colors in RGB format instead of the forced HEX format when deleting contents. - Fixed bug where the width attribute wasn't updated on tables if you changed the size inside the table dialog. - Fixed bug where control selection wasn't properly handled when the caret was placed directly after an image. - Fixed bug where selecting the contents of table cells using the selection.select method wouldn't place the caret properly. - Fixed bug where the selection state for images wasn't removed when placing the caret right after an image on WebKit/Blink. - Fixed bug where all events wasn't properly unbound when and editor instance was removed or destroyed by some external innerHTML call. - Fixed bug where it wasn't possible or very hard to select images on iOS when the onscreen keyboard was visible. - Fixed so auto_focus can take a boolean argument this will auto focus the last initialized editor might be useful for single inits. - Fixed so word auto detect lists logic works better for faked lists that doesn't have specific markup. - Fixed so nodeChange gets fired on mouseup as it used to before 4.1.1 we optimized that event to fire less often. - Removed the finish menu item from spellchecker menu since it's redundant you can stop spellchecking by toggling menu item or button. + Added event binding logic to tinymce.util.XHR making it possible to override headers and settings before any request is made. + Fixed bug where drag events wasn't fireing properly on older IE versions since the event handlers where bound to document. + Fixed bug where drag/dropping contents within the editor on IE would force the contents into plain text mode even if it was internal content. + Fixed bug where IE 7 wouldn't open menus properly due to a resize bug in the browser auto closing them immediately. + Fixed bug where the DOMUtils getPos logic wouldn't produce a valid coordinate inside the body if the body was positioned non static. + Fixed bug where the element path and format state wasn't properly updated if you had the wordcount plugin enabled. + Fixed bug where a comment at the beginning of source would produce an exception in the formatter logic. + Fixed bug where setAttrib/getAttrib on null would throw exception together with any hooked attributes like style. + Fixed bug where table sizes wasn't properly retained when copy/pasting on WebKit/Blink. + Fixed bug where WebKit/Blink would produce colors in RGB format instead of the forced HEX format when deleting contents. + Fixed bug where the width attribute wasn't updated on tables if you changed the size inside the table dialog. + Fixed bug where control selection wasn't properly handled when the caret was placed directly after an image. + Fixed bug where selecting the contents of table cells using the selection.select method wouldn't place the caret properly. + Fixed bug where the selection state for images wasn't removed when placing the caret right after an image on WebKit/Blink. + Fixed bug where all events wasn't properly unbound when and editor instance was removed or destroyed by some external innerHTML call. + Fixed bug where it wasn't possible or very hard to select images on iOS when the onscreen keyboard was visible. + Fixed so auto_focus can take a boolean argument this will auto focus the last initialized editor might be useful for single inits. + Fixed so word auto detect lists logic works better for faked lists that doesn't have specific markup. + Fixed so nodeChange gets fired on mouseup as it used to before 4.1.1 we optimized that event to fire less often. + Removed the finish menu item from spellchecker menu since it's redundant you can stop spellchecking by toggling menu item or button. Version 4.1.2 (2014-07-15) - Added offset/grep to DomQuery class works basically the same as it's jQuery equivalent. - Fixed bug where backspace/delete or setContent with an empty string would remove header data when using the fullpage plugin. - Fixed bug where tinymce.remove with a selector not matching any editors would remove all editors. - Fixed bug where resizing of the editor didn't work since the theme was calling setStyles instead of setStyle. - Fixed bug where IE 7 would fail to append html fragments to iframe document when using DomQuery. - Fixed bug where the getStyle DOMUtils method would produce an exception if it was called with null as it's element. - Fixed bug where the paste plugin would remove the element if the none of the paste_webkit_styles rules matched the current style. - Fixed bug where contextmenu table items wouldn't work properly on IE since it would some times fire an incorrect selection change. - Fixed bug where the padding/border values wasn't used in the size calculation for the body size when using autoresize. Patch contributed by Matt Whelan. - Fixed bug where conditional word comments wouldn't be properly removed when pasting plain text. - Fixed bug where resizing would sometime fail on IE 11 when the mouseup occurred inside the resizable element. - Fixed so the iframe gets initialized without any inline event handlers for better CSP support. Patch contributed by Matt Whelan. - Fixed so the tinymce.dom.Sizzle is the latest version of sizzle this resolves the document context bug. + Added offset/grep to DomQuery class works basically the same as it's jQuery equivalent. + Fixed bug where backspace/delete or setContent with an empty string would remove header data when using the fullpage plugin. + Fixed bug where tinymce.remove with a selector not matching any editors would remove all editors. + Fixed bug where resizing of the editor didn't work since the theme was calling setStyles instead of setStyle. + Fixed bug where IE 7 would fail to append html fragments to iframe document when using DomQuery. + Fixed bug where the getStyle DOMUtils method would produce an exception if it was called with null as it's element. + Fixed bug where the paste plugin would remove the element if the none of the paste_webkit_styles rules matched the current style. + Fixed bug where contextmenu table items wouldn't work properly on IE since it would some times fire an incorrect selection change. + Fixed bug where the padding/border values wasn't used in the size calculation for the body size when using autoresize. Patch contributed by Matt Whelan. + Fixed bug where conditional word comments wouldn't be properly removed when pasting plain text. + Fixed bug where resizing would sometime fail on IE 11 when the mouseup occurred inside the resizable element. + Fixed so the iframe gets initialized without any inline event handlers for better CSP support. Patch contributed by Matt Whelan. + Fixed so the tinymce.dom.Sizzle is the latest version of sizzle this resolves the document context bug. Version 4.1.1 (2014-07-08) - Fixed bug where pasting plain text on some WebKit versions would result in an empty line. - Fixed bug where resizing images inside tables on IE 11 wouldn't work properly. - Fixed bug where IE 11 would sometimes throw "Invalid argument" exception when editor contents was set to an empty string. - Fixed bug where document.activeElement would throw exceptions on IE 9 when that element was hidden or removed from dom. - Fixed bug where WebKit/Blink sometimes produced br elements with the Apple-interchange-newline class. - Fixed bug where table cell selection wasn't properly removed when copy/pasting table cells. - Fixed bug where pasting nested list items from Word wouldn't produce proper semantic nested lists. - Fixed bug where right clicking using the contextmenu plugin on WebKit/Blink on Mac OS X would select the target current word or line. - Fixed bug where it wasn't possible to alter table cell properties on IE 8 using the context menu. - Fixed bug where the resize helper wouldn't be correctly positioned on older IE versions. - Fixed bug where fullpage plugin would produce an error if you didn't specify a doctype encoding. - Fixed bug where anchor plugin would get the name/id of the current element even if it wasn't anchor element. - Fixed bug where visual aids for tables wouldn't be properly disabled when changing the border size. - Fixed bug where some control selection events wasn't properly fired on older IE versions. - Fixed bug where table cell selection on older IE versions would prevent resizing of images. - Fixed bug with paste_data_images paste option not working properly on modern IE versions. - Fixed bug where custom elements with underscores in the name wasn't properly parsed/serialized. - Fixed bug where applying inline formats to nested list elements would produce an incorrect formatting result. - Fixed so it's possible to hide items from elements path by using preventDefault/stopPropagation. - Fixed so inline mode toolbar gets rendered right aligned if the editable element positioned to the documents right edge. - Fixed so empty inline elements inside empty block elements doesn't get removed if configured to be kept intact. - Fixed so DomQuery parentsUntil/prevUntil/nextUntil supports selectors/elements/filters etc. - Fixed so legacyoutput plugin overrides fontselect and fontsizeselect controls and handles font elements properly. + Fixed bug where pasting plain text on some WebKit versions would result in an empty line. + Fixed bug where resizing images inside tables on IE 11 wouldn't work properly. + Fixed bug where IE 11 would sometimes throw "Invalid argument" exception when editor contents was set to an empty string. + Fixed bug where document.activeElement would throw exceptions on IE 9 when that element was hidden or removed from dom. + Fixed bug where WebKit/Blink sometimes produced br elements with the Apple-interchange-newline class. + Fixed bug where table cell selection wasn't properly removed when copy/pasting table cells. + Fixed bug where pasting nested list items from Word wouldn't produce proper semantic nested lists. + Fixed bug where right clicking using the contextmenu plugin on WebKit/Blink on Mac OS X would select the target current word or line. + Fixed bug where it wasn't possible to alter table cell properties on IE 8 using the context menu. + Fixed bug where the resize helper wouldn't be correctly positioned on older IE versions. + Fixed bug where fullpage plugin would produce an error if you didn't specify a doctype encoding. + Fixed bug where anchor plugin would get the name/id of the current element even if it wasn't anchor element. + Fixed bug where visual aids for tables wouldn't be properly disabled when changing the border size. + Fixed bug where some control selection events wasn't properly fired on older IE versions. + Fixed bug where table cell selection on older IE versions would prevent resizing of images. + Fixed bug with paste_data_images paste option not working properly on modern IE versions. + Fixed bug where custom elements with underscores in the name wasn't properly parsed/serialized. + Fixed bug where applying inline formats to nested list elements would produce an incorrect formatting result. + Fixed so it's possible to hide items from elements path by using preventDefault/stopPropagation. + Fixed so inline mode toolbar gets rendered right aligned if the editable element positioned to the documents right edge. + Fixed so empty inline elements inside empty block elements doesn't get removed if configured to be kept intact. + Fixed so DomQuery parentsUntil/prevUntil/nextUntil supports selectors/elements/filters etc. + Fixed so legacyoutput plugin overrides fontselect and fontsizeselect controls and handles font elements properly. Version 4.1.0 (2014-06-18) - Added new file_picker_callback option to replace the old file_browser_callback the latter will still work though. - Added new custom colors to textcolor plugin will be displayed if a color picker is provided also shows the latest colors. - Added new color_picker_callback option to enable you to add custom color pickers to the editor. - Added new advanced tabs to table/cell/row dialogs to enable you to select colors for border/background. - Added new colorpicker plugin that lets you select colors from a hsv color picker. - Added new tinymce.util.Color class to handle color parsing and converting. - Added new colorpicker UI widget element lets you add a hsv color picker to any form/window. - Added new textpattern plugin that allows you to use markdown like text patterns to format contents. - Added new resize helper element that shows the current width & height while resizing. - Added new "once" method to Editor and EventDispatcher enables since callback execution events. - Added new jQuery like class under tinymce.dom.DomQuery it's exposed on editor instances (editor.$) and globally under (tinymce.$). - Fixed so the default resize method for images are proportional shift/ctrl can be used to make an unproportional size. - Fixed bug where the image_dimensions option of the image plugin would cause exceptions when it tried to update the size. - Fixed bug where table cell dialog class field wasn't properly updated when editing an a table cell with an existing class. - Fixed bug where Safari on Mac would produce webkit-fake-url for pasted images so these are now removed. - Fixed bug where the nodeChange event would get fired before the selection was changed when clicking inside the current selection range. - Fixed bug where valid_classes option would cause exception when it removed internal prefixed classes like mce-item-. - Fixed bug where backspace would cause navigation in IE 8 on an inline element and after a caret formatting was applied. - Fixed so placeholder images produced by the media plugin gets selected when inserted/edited. - Fixed so it's possible to drag in images when the paste_data_images option is enabled. Might be useful for mail clients. - Fixed so images doesn't get a width/height applied if the image_dimensions option is set to false useful for responsive contents. - Fixed so it's possible to pass in an optional arguments object for the nodeChanged function to be passed to all nodechange event listeners. - Fixed bug where media plugin embed code didn't update correctly. -Version 4.0.28 (2014-05-27) - Fixed critical issue with empty urls producing an exception when converted into absolute urls due to resent bug fix in tinymce.util.URI. -Version 4.0.27 (2014-05-27) - Added support for definition lists to lists plugin and enter key logic. This can now created by the format menu. - Added cmd option for the style_formats menu enables you to toggle commands on/off using the formats menu for example lists. - Added definition lists to visualblocks plugin so these are properly visualized like other list elements. - Added new paste_merge_formats option that reduces the number of nested text format elements produced on paste. Enabled by default. - Added better support for nested link_list/image_list menu items each item can now have a "menu" item with subitems. - Added "Add to Dictionary" support to spellchecker plugin when the backend tells that this feature is available. - Added new table_default_attributes/table_default_styles options patch contributed by Dan Villiom Podlaski Christiansen. - Added new table_class_list/table_cell_class_list/table_row_class_list options to table plugin. - Added new invalid_styles/valid_classes options to better control what gets returned for the style/class attribute. - Added new file_browser_callback_types option that allows you to specify where to display the picker based on dialog type. - Fixed so the selected state is properly handled on nested menu items in listboxes patch contributed by Jelle Kralt. - Fixed so the invisiblity css value for TinyMCE gets set to inherit instead of visible to better support dialog scripts like reveal. - Fixed bug where Gecko would remove anchors when pasting since the their default built in logic removes empty nodes. - Fixed bug where it wasn't possible to paste on Chrome Andoid since it doesn't properly support the Clipboard API yet. - Fixed bug where user defined type attribute value of text/javascript didn't get properly serialized. - Fixed bug where space in span elements would removed when the element was considered empty. - Fixed bug where the undo/redo button states didn't change if you removed all undo levels using undoManager.clear. - Fixed bug where unencoded links inside query strings or hash values would get processed by the relative urls logic. - Fixed bug where contextmenu would automatically close in inline editing mode on Firefox running on Mac. - Fixed bug where Gecko/IE would produce multiple BR elements when forced_root_block was set to false and a table was the last child of body. - Fixed bug where custom queryCommandState handlers didn't properly handle boolean states. - Fixed bug where auto closing float panels link menus wasn't automatically closed when the window was resized. - Fixed bug where the image plugin wouldn't update image dimensions when the current image was changed using the image_list select box. - Fixed bug with paste plugin not properly removing paste bin on Safari Mac when using the cmd+shift+v keyboard command. - Fixed bug where the paste plugin wouln't properly strip trailing br elements under very specific scenarios. - Fixed bug where enter key wouldn't properly place the caret on Gecko when pressing enter in a text block with a br ended line inside. - Fixed bug where Safari Mac shortcuts like Cmd+Opt+L didn't get passed through to the browser due to a Quirks fix. - Fixed so plain text mode works better when it converts rich text to plain text when pasting from for example Word. - Fixed so numeric keycodes can be used in the shortcut format enabling support for any key to be specified. - Fixed so table cells can be navigated with tab key and new rows gets automatically added when you are at the last cell. - Fixed bug where formatting before cursor gets removed when toggled off for continued content. -Version 4.0.26 (2014-05-06) - Fixed bug in media plugin where changing existing url did not use media regex patterns to create protocol neutral url. - Fixed bug where selection wasn't properly restored on IE 11 due to a browser bug with Element.contains. -Version 4.0.25 (2014-04-30) - Fixed bug where it wasn't possible to submit forms with editor instances on WebKit/Blink. -Version 4.0.24 (2014-04-30) - Added new event_root setting for inline editors. Lets you bind all editor events on a parent container. - Fixed bug where show/hide/isHidden didn't work properly for inline editor instances. - Fixed bug where preview plugin dialog didn't handle relative urls properly. - Fixed bug where the autolink plugin would remove the trailing space after an inserted link. - Fixed bug in paste plugin where pasting in a page with scrollbars would scroll to top of page in webkit browsers. - Fixed bug where the paste plugin on WebKit would remove styles from pasted source code with style attributes. - Fixed so image_list/link_list can be a function that allows custom async calls to populate these lists. -Version 4.0.23 (2014-04-24) - Added isSameOrigin method to tinymce.util.URI it handles default protocol port numbers better. Patch contributed by Matt Whelan. - Fixed bug where IE 11 would add br elements to the end of the editor body element each time it was shown/hidden. - Fixed bug where the autolink plugin would produce an index out of range exception for some very specific HTML. - Fixed bug where the charmap plugin wouldn't properly insert non breaking space characters when selected. - Fixed bug where pasting from Excel 2011 on Mac didn't produce a proper table when using the paste plugin. - Fixed bug where drag/dropping inside a table wouldn't properly end the table cell selection. - Fixed bug where drag/dropping images within tables on Safari on Mac wouldn't work properly. - Fixed bug where editors couldn't be re-initialized if they where externally destroyed. - Fixed bug where inline editors would produce a range index exception when clicking on buttons like bold. - Fixed bug where the preview plugin wouldn't properly handle non encoded upper UTF-8 characters. - Fixed so document.currentScript is used when detecting the current script location. Patch contributed by Mickael Desgranges. - Fixed issue with the paste_webkit_styles option so is disabled by default since it might produce a lot of extra styles. -Version 4.0.22 (2014-04-16) - Added lastLevel to BeforeAddUndo level event so it's easier to block undo level creation based. - Fixed so multiple list elements can be indented properly. Patch contributed by Dan Villiom Podlaski Christiansen. - Fixed bug where the selection would be at the wrong location sometimes for inline editor instances. - Fixed bug where drag/dropping content into an inline editor would fail on WebKit/Blink. - Fixed bug where table grid wouldn't work properly when the UI was rendered in for RTL mode. - Fixed bug where range normalization wouldn't handle mixed contentEditable nodes properly. - Fixed so the media plugin doesn't override the existing element rules you now need to manually whitelist non standard attributes. - Fixed so old language packs get properly loaded when the new longer language code format is used. - Fixed so all track changes junk such as comments, deletes etc gets removed when pasting from Word. - Fixed so non image data urls is blocked by default since they might contain scripts. - Fixed so it's possible to import styles from the current page stylesheets into an inline editor by using the importcss_file_filter. - Fixed bug where the spellchecker plugin wouldn't add undo levels for each suggestion replacement. - Reworked the default spellchecker RPC API to match the new PHP Spellchecker package. Fallback documented in the TinyMCE docs. -Version 4.0.21 (2014-04-01) - Added new getCssText method to formatter to get the preview css text value for a format to be used in UI. - Added new table_grid option that allows you to disable the table grid and use a dialog. - Added new image_description, image_dimensions options to image plugin. Patch contributed by Pat O'Neill. - Added new media_alt_source, media_poster, media_dimensions options to media plugin. Patch contributed by Pat O'Neill. - Added new ability to specify high/low dpi versions custom button images for retina displays. - Added new getWindows method to WindowManager makes it easier to control the currently opened windows. - Added new paste_webkit_styles option to paste plugin to control the styles that gets retained on WebKit. - Added preview of classes for the selectboxes used by the link_class_list/image_class_list options. - Added support for Sauce Labs browser testing using the new saucelabs-tests build target. - Added title input field to link dialog for a11y reasons can be disabled by using the link_title option. - Fixed so the toolbar option handles an array as input for multiple toolbar rows. - Fixed so the editor renders in XHTML mode apparently some people still use this rendering mode. - Fixed so icons gets rendered better on Firefox on Mac OS X by applying -moz-osx-font-smoothing. - Fixed so the auto detected external media sources produced protocol relative urls. Patch contributed by Pat O'Neill. - Fixed so it's possible to update the text of a button after it's been rendered to page DOM. - Fixed bug where iOS 7.1 Safari would open linked when images where inserted into links. - Fixed bug where IE 11 would scroll to the top of inline editable elements when applying formatting. - Fixed bug where tabindex on elements within the editor contents would cause issues on some browsers. - Fixed bug where link text wouldn't be properly updated in gecko if you changed an existing link. - Fixed bug where it wasn't possible to close dialogs with the escape key if the focus was inside a textbox. - Fixed bug where Gecko wouldn't paste rich text contents from Word or other similar word processors. - Fixed bug where binding events after the control had been rendered could fail to produce a valid delegate. - Fixed bug where IE 8 would throw and error when removing editors with a cross domain content_css setting. - Fixed bug where IE 9 wouldn't be able to select text after an editor instance with caret focus was removed. - Fixed bug where the autoresize plugin wouldn't resize the editor if you inserted huge images. - Fixed bug where multiple calls to the same init would produce extra editor instances. - Fixed bug where fullscreen toggle while having the autoresize plugin enabled wouldn't produce scrollbars. - Fixed so screen readers use a dialog instead of the grid for inserting tables. - Fixed so Office 365 Word contents gets filtered the same way as content from desktop Office. - Fixed so it's possible to override the root container for UI elements defaults to document.body. - Fixed bug where tabIndex is set to -1 on inline editable elements. It now keeps the existing tabIndex intact. - Fixed issue where the UndoManager transact method couldn't be nested since it only had one lock. - Fixed issue where headings/heading where labeled incorrectly as headers/header. -Version 4.0.20 (2014-03-18) - Fixed so all unit tests can be executed in a headless phantomjs instance for CI testing. - Fixed so directionality setting gets applied to the preview dialog as well as the editor body element. - Fixed a performance issue with the "is" method in DOMUtils. Patch contributed by Paul Bosselaar. - Fixed bug where paste plugin wouldn't paste plain text properly when pasting using browser menus. - Fixed bug where focusable SVG elements would throw an error since className isn't a proper string. - Fixed bug where the preview plugin didn't properly support the document_base_url setting. - Fixed bug where the focusedEditor wouldn't be set to null when that editor was removed. - Fixed bug where Gecko would throw an exception when editors where removed. - Fixed bug where the FocusManager wouldn't handle selection restoration properly on older IE versions. - Fixed bug where the searchreplace plugin would produce an exception on very specific multiple searches. - Fixed bug where some events wasn't properly unbound when all editors where removed from page. - Fixed bug where tapping links on iOS 7.1 would open the link instead of placing the caret inside. - Fixed bug where holding the finger down on iOS 7.1 would open the link/image callout menu. - Fixed so the jQuery plugin returns null when getting the the tinymce instance of an element before it's initialized. - Fixed so selection normalization gets executed more often to reduce incorrect UI states on Gecko. - Fixed so the default action of closing the window on a form submission can be prevented using "preventDefault". -Version 4.0.19 (2014-03-11) - Added support for CSS selector expressions in object_resizing option. Allows you to control what to resize. - Added addToTop compatibility to compat3x plugin enables more legacy 3.x plugins to work properly. - Fixed bug on IE where it wasn't possible to align images when they where floated left. - Fixed bug where the indent/outdent buttons was enabled though readonly mode was enabled. - Fixed bug where the nodeChanged event was fired when readonly mode was enabled. - Fixed bug where events like blur could be fired to editor instances that where manually removed on IE 11. - Fixed bug where IE 11 would move focus to menubar/toolbar when using the tab key in a form with an editor. - Fixed bug where drag/drop in Safari on Mac didn't work properly due to lack of support for modern dataTransfer object. - Fixed bug where the remove event wasn't properly executed when the editor instances where removed. - Fixed bug where the selection change handler on inline editors would fail if the editor instance was removed. -Version 4.0.18 (2014-02-27) - Fixed bug where images would get class false/undefined when initially created. -Version 4.0.17 (2014-02-26) - Added much better wai-aria accessibility support when it comes to keyboard navigation of complex UI controls. - Added dfn,code,samp,kbd,var,cite,mark,q elements to the default remove formats list. Patch contributed by Naim Hammadi. - Added var,cite,dfn,code,mark,q,sup,sub to the list of elements that gets cloned on enter. Patch contributed by Naim Hammadi. - Added new visual_anchor_class option to specify a custom class for inline anchors. Patch contributed by Naim Hammadi. - Added support for paste_data_images on WebKit/Blink when the user pastes image data. - Added support for highlighting the video icon when a video is added that produces an iframe. Patch contributed by monkeydiane. - Added image_class_list/link_class_list options to image/link dialogs to let the user select classes. - Fixed bug where the ObjectResizeStart event didn't get fired properly by the ControlSelection class. - Fixed bug where the autolink plugin would steal focus when loaded on IE 9+. - Fixed bug where the editor save method would remove the current selection when called on an inline editor. - Fixed bug where the formatter would merge span elements with parent bookmarks if an id format was used. - Fixed bug where WebKit/Blink browsers would scroll to the top of the editor when pasting into an empty element. - Fixed bug where removing the editor would cause an error about wrong document on IE 11 under specific circumstances. - Fixed bug where Gecko would place the caret at an incorrect location when using backspace. - Fixed bug where Gecko would throw "Wrong Document Error" for ranges that pointing to removed nodes. - Fixed bug where it wasn't possible to properly update the title and encoding properties in the fullpage plugin. - Fixed bug where paste plugin would produce an extra undo level on IE. - Fixed bug where the formatter would apply inline formatting outside the current word in if the selection was collapsed. - Fixed bug where it wasn't possible to delete tables on Chrome if you placed the selection within all the contents of the table. - Fixed bug where older IE versions wouldn't properly insert contents into table cells when editor focus was lost. - Fixed bug where older IE versions would fire focus/blur events even though the editor focus didn't change. - Fixed bug where IE 11 would add two trailing BR elements to the editor iframe body if the editor was hidden. - Fixed bug where the visualchars plugin wouldn't display non breaking spaces if they where inserted while the state was enabled. - Fixed bug where the wordcount plugin would be very slow some HTML where to much backtracking occurred. - Fixed so pagebreak elements in the editor breaks pages when printing. Patch contributed by penc. - Fixed so UndoManager events pass though the original event that created the undo level such as a keydown, blur etc. - Fixed so the inserttime button is callsed insertdatetime the same as the menu item and plugin name. - Fixed so the word count plugin handles counting properly on most languages on the planet. - Fixed bug where the auroreize plugin would throw an error if the editor was manually removed within a few seconds. - Fixed bug where the image dialog would get stuck if the src was removed. Patch contribued by monkeydiane. - Fixed bug where there is an extra br tag for IE 9/10 that isn't needed. Patch contributed by monkeydiane. - Fixed bug where drag/drop in a scrolled editor would fail since it didn't use clientX/clientY cordinates. Patch contributed by annettem. -Version 4.0.16 (2014-01-31) - Fixed bug where the editor wouldn't be properly rendered on IE 10 depending on the document.readyState. -Version 4.0.15 (2014-01-31) - Fixed bug where paste in inline mode would produce an exception if the contents was pasted inside non overflow element. -Version 4.0.14 (2014-01-30) - Fixed a bug in the image plugin where images couldn't be inserted if the image_advtab option wasn't set to true. -Version 4.0.13 (2014-01-30) - Added language selection menu to spellchecker button similar to the 3.x functionality. Patch contributed by threebytesfull. - Added new style_formats_merge option that enables you to append to the default formats instead of replaceing them. Patch contributed by PacificMorrowind. - Fixed bug where the DOMUtils getPos API function didn't properly handle the location of the root element. Patch contributed by Andrew Ozz. - Fixed bug where the spellchecker wouldn't properly place the spellchecker suggestions menu. Patch contributed by Andrew Ozz. - Fixed bug where the tabfocus plugin would prevent the user from suing Ctrl+Tab, Patch contributed by Andrew Ozz. - Fixed bug where table resize handles could sometimes be added to elements out side the editable inline element. - Fixed bug where the inline mode editor UI would render incorrectly when the stylesheets didn't finish loading on Chrome. - Fixed bug where IE 8 would insert the image outside the editor unless it was focused first. - Fixed bug where older IE versions would throw an exception on drag/drop since they don't support modern dataTransfer API. - Fixed bug where the blockquote button text wasn't properly translated since it had the wrong English key. - Fixed bug where the importcss plugin didn't import a.class rules properly as selector formats. - Fixed bug where the combobox control couldn't be disabled or set to a specific character size initially. - Fixed bug where the FormItem didn't inherit the disabled state from the control to be wrapped. - Fixed bug where adding a TinyMCE instance within a TinyMCE dialog wouldn't properly delegate the events. - Fixed bug where any overflow parent containers would automatically scroll to the left when pasting in Chrome. - Fixed bug where IE could throw an error when search/replacing contents due to an invalid selection being returned. - Fixed bug where WebKit would fire focus/blur events incorrectly if the editor was empty due to a WebKit focus bug. - Fixed bug where WebKit/Blink would scroll to the top of editor if the height was more than the viewport height. - Fixed bug where blurring and removing the editor could cause an exteption to be thrown by the FocusManager. - Fixed bug where the media plugin would override specified dimensions for url pattern matches. Patch contributed by penc. - Fixed bug where the autoresize plugin wouldn't take margins into account when calculating the body size. Patch contributed by lepoltj. - Fixed bug where the image plugin would throw errors some times on IE 8 when it preloaded the image to get it's dimensions. - Fixed bug where the image plugin wouldn't update the style if the user closed the dialog before focusing out. Patch contributed by jonparrott. - Fixed bug where bindOnReady in EventUtils wouldn't work properly for some edge cases on older IE versions. Patch contributed by Godefroy. - Fixed bug where image selector formats wasn't properly handled by the importcss plugin. - Fixed bug where the dirty state of the editor wasn't set when editing an existing link URL. - Fixed bug where it wasn't possible to prevent paste from happening by blocking the default behavior when the paste plugin was enabled. - Fixed bug where text to display in the insert/edit link dialog wouldn't be properly entity encoded. - Fixed bug where Safari 7 on Mac OS X would delete contents if you pressed Cmd+C since it passes out a charCode for the event. - Fixed bug where bound drop events inside inline editors would get fired on all editor instances instead of the specific instance. - Fixed bug where images outlined selection border would be clipped when the autoresize plugin was enabled. - Fixed bug where image dimension constrains proportions wouldn't work properly if you altered a value and immediately clicked the submit button. - Fixed so you don't need to set language option to false when specifying a custom language_url. - Fixed so the link dialog "text to display" field gets automatically hidden if the selection isn't text contents. Patch contributed by Godefroy. - Fixed so the none option for the target field in the link dialog gets excluded when specifiying the target_list config option. - Fixed so outline styles are displayed by default in the formats preview. Patch contributed by nhammadi. - Fixed so the max characters for width/height is more than 3 in the media and image dialogs. - Fixed so the old mceSpellCheck command toggles the spellchecker on/off. - Fixed so the setupeditor event is fired before the setup callback setting to ease up compatibility with 3.x. - Fixed so auto url link creation in IE 9+ is disabled by default and re-enabled by the autolink plugin. - Removed the custom scrollbars for WebKit since the default browser scrollbars looks a lot better now days. -Version 4.0.12 (2013-12-18) - Added new media_scripts option to the media plugin. This makes it possible to embed videos using script elements. - Fixed bug where WebKit/Blink would produce random span elements and styles when deleting contents inside the editor. - Fixed bug where WebKit/Blink would produce span elements out of link elements when they where removed by the unlink command. - Fixed bug where div block formats in inline mode where applied to all paragraphs within the editor. - Fixed bug where div blocks where marked as an active format in inline mode when doing non collapsed selections. - Fixed bug where the importcss plugin wouldn't append styles if the style_formats option was configured. - Fixed bug where the importcss plugin would import styles into groups multiple times for different format menus. - Fixed bug where the paste plugin wouldn't properly remove the paste bin element on IE if a tried to paste a file. - Fixed bug where selection normalization wouldn't properly handle cases where a range point was after a element node. - Fixed bug where the default time format for the inserttime split button wasn't the first item in the list. - Fixed bug where the default text for the formatselect control wasn't properly translated by the language pack. - Fixed bug where links would be inserted incorrectly when auto detecting absolute urls/emails links in inline mode. - Fixed bug where IE 11 would insert contents in the wrong order due to focus/blur async problems. - Fixed bug where pasting contents on IE sometimes would place the contents at the end of the editor. - Fixed so drag/drop on non IE browsers gets filtered by the paste plugin. IE doesn't have the necessary APIs. - Fixed so the paste plugin better detects Word 2007 contents not marked with -mso junk. - Fixed so image button isn't set to an active state when selecting control/media placeholder items. -Version 4.0.11 (2013-11-20) - Added the possibility to update button icon after it's been rendered. - Added new autosave_prefix option allows you to set the prefix for the local storage keys. - Added new pagebreak_split_block option to make it easier to split block elements with a page break. - Fixed bug where IE would some times produce font elements when typing out side the body root blocks. - Fixed bug where IE wouldn't properly use the configured root block element but instead use the a paragraph. - Fixed bug where IE would throw a stack overflow if control selections non images was made in inline mode. - Fixed bug where IE 8 would render an extra enter element if the contents of the editor was empty. - Fixed bug where the caret wasn't moved to the first suitable element when updating the source. - Fixed bug where protocol relative urls would be forced into http protocol. - Fixed bug where internal images with data urls such as video elements would be removed by the paste_data_images option. - Fixed bug where the autoresize plugin wouldn't properly resize the editor to initial contents some times. - Fixed bug where the templates dialog wouldn't be properly rendered on IE 7. - Fixed bug where updating styles in the advanced tab under the image dialog would remove the style attribute on cancel. - Fixed bug where tinymce.full.min.js bundle script wasn't detected when looking for the tinymce root path. - Fixed bug where the SaxParser would throw a malformed URI sequence for inproperly encoded uris. - Fixed bug where enabling table caption wouldn't properly render the caption element on IE 10 and below. - Fixed bug where the scrollbar would be placed to the left and on top of the text of menu items in RTL mode. - Fixed bug where Firefox on Mac OS X would navigate forward/backward on CMD+Arrow keys. - Fixed bug where fullscreen toggle on fixed sized editors wouldn't be properly full screened. - Fixed bug where the unlink button would remove all links from the body element in inline mode under running in IE. - Fixed bug where iOS wasn't able to place the caret inside an empty editor when clicking below the first line. - Fixed so internal document anchors in Word documents are retained when pasting using the paste from word feature. - Fixed so menu shortcuts gets rendered with the Apple command icon patch contributed by Andy Keller. - Fixed so the CSS compression of styles like "border" is a bit better for mixed values. - Fixed so the template_popup_width/template_popup_height option works properly in the template plugin. - Fixed so the languages parameter for AddOnManager.requireLangPack works the same way as for 3.x. - Fixed so the autosave plugin uses the current page path, query string and editor id as it's default prefix. - Fixed so the fullpage plugin adds/removes any link style sheets to the current iframe document. -Version 4.0.10 (2013-10-28) - Added new forced_root_block_attrs option that allows you to specify attributes for the root block. - Fixed bug where the custom resize handles didn't work properly on IE 11. - Fixed bug where the code plugin would select all contents in IE when content was updated. - Fixed bug where the scroll position wouldn't get applied to floating toolbars. - Fixed bug where focusing in/out of the editor would move the caret to the top of the editor on IE 11. - Fixed bug where the listboxes for link and image lists wasn't updated when the url/src was changed. - Fixed bug where selection bookmark elements would be visible in the elements path list. -Version 4.0.9 (2013-10-24) - Added support for external template files to template plugin just set the templates option to a URL with JSON data. - Added new allow_script_urls option. Enabled by default, trims all script urls from attributes. - Fixed bug where IE would sometimes throw a "Permission denied" error unless the Sizzle doc was properly removed. - Fixed bug where lists plugin would remove outer list items if inline editable element was within a LI parent. - Fixed bug where insert table grid widget would insert a table on item to large when using a RTL language pack. - Fixed bug where fullscreen mode wasn't rendering properly on IE 7. - Fixed bug where resize handlers wasn't moved correctly when scrolling inline editable elements. - Fixed bug where it wasn't possible to paste from Excel and possible other applications due to Clipboard API bugs in browsers. - Fixed bug where Shift+Ctrl+V didn't produce a plain text paste on IE. - Fixed bug where IE would sometimes move the selection to the a previous location. - Fixed bug where the editor wasn't properly scrolled to the content insert location in inline mode. - Fixed bug where some comments would be parsed as HTML by the SaxParser. - Fixed bug where WebKit/Blink would render tables incorrectly if unapplying formats when having multiple table cells selected. - Fixed bug where the paste_data_images option wouldn't strip all kinds of data images. - Fixed bug where the GridLayout didn't render items correctly if the contents overflowed the layout container. - Fixed bug where the Window wasn't properly positioned if the size of the button bar or title bar was wider than the contents. - Fixed bug where psuedo selectors for finding UI controls didn't work properly. - Fixed bug where resized splitbuttons would throw an exception if it didn't contain an icon. - Fixed bug where setContent would move focus into the editor even though it wasn't active. - Fixed bug where IE 11 would sometimes throw an "Invalid function" error when calling setActive on the body element. - Fixed bug where the importcss plugin would import styles from CSS files not present in the content_css array. - Fixed bug where the jQuery plugin will initialize the editors twice if the core was loaded using the script_url option. - Fixed various bugs and issues related to indentation of OL/UL list elements. - Fixed so IE 7 renders the classic mode buttons the same size as other browsers. - Fixed so document.readyState is checked when loading and initializing TinyMCE manually after page load. -Version 4.0.8 (2013-10-10) - Added RTL support so all of the UI is rendered right to left if a language pack has a _dir property set to rtl. - Fixed bug where layout managers wouldn't handle subpixel values properly. When for example the browser was zoomed in. - Fixed bug where the importcss plugin wouldn't import classes from local stylesheets with remote @import rules on Gecko. - Fixed bug where Arabic characters wouldn't be properly counted in wordcount plugin. - Fixed bug where submit event would still fire even if it was unbound on IE 10. Now the event is simply ignored. - Fixed bug where IE 11 would return border-image: none when getting style attributes with borders in them. - Fixed various UI rendering issues on older IE versions. - Fixed so readonly option renderes the editor in inline mode with all UI elements disabled and all events blocked. -Version 4.0.7 (2013-10-02) - Added new importcss_selector_filter option to importcss plugin. Makes it easier to select specific classes to import. - Added new importcss_groups option to importcss plugin. Enables you separate classes into menu groups based on filters. - Added new PastePreProcess/PastePostProcess events and reintroduced paste_preprocess/paste_postprocess paste options. - Added new paste_word_valid_elements option lets you control what elements gets pasted when pasting from Word. - Fixed so panelbutton is easier to use. It's now possible to set the panel contents to any container type. - Fixed so editor.destroy calls editor.remove so that both destroy and remove can be used to remove an editor instance. - Fixed so the searchreplace plugin doesn't move focus into the editor until you close the dialog. - Fixed so the searchreplace plugin search for next item if you hit enter inside the dialog. - Fixed so importcss_selector_converter callback is executed with the scope set to importcss plugin instance. - Fixed so the default selector converter function is exposed in importcss plugin. - Fixed issue with the tabpanel not expanding properly when the tabs where wider than the body of the panel. - Fixed issue with the menubar option producing a JS exception if set to true. - Fixed bug where closing a dialog with an opened listbox would cause errors if new dialogs where opened. - Fixed bug where hidden input elements wasn't removed when inline editor instances where removed. - Fixed bug where editors wouldn't initialize some times due to event logic not working correctly. - Fixed bug where pre elements woudl cause searchreplace and spellchecker plugins to mark incorrect locations. - Fixed bug where embed elements wouldn't be properly resized if they where configured in using the video_template_callback. - Fixed bug where paste from word would remove all BR elements since it was missing in the default paste_word_valid_elements. - Fixed bug where paste filtering wouldn't work properly on old WebKit installations pre Clipboard API. - Fixed bug where linebreaks would be removed by paste plugin on IE since it didn't properly detect Word contents. - Fixed bug where paste plugin would convert some Word paragraphs that looked like lists into lists. - Fixed bug where editors wasn't properly initialized if the document.domain is set to the same as the current domain on IE. - Fixed bug where an exception was thrown when removing an editor after opening the context menu multiple times. - Fixed bug where paste as plain text on Gecko would add extra BR elements when pasting paragraphs. -Version 4.0.6 (2013-09-12) - Added new compat3x plugin that makes it possible to load most 3.x plugins. Only available in the development package. - Added new skin_url option enables you to load local skins when using the CDN version. - Added new theme_url option enables you to load local themes when using the CDN version. - Added new importcss_file_filter option to importcss to enable users to specify what files to import from. - Added new template_preview_replace_values option to template plugin to add example data for variables. - Added image option support for addMenuItem calls. Enables you to provide a custom image for menu items. - Fixed bug where editor.insertContent wouldn't set format and selection type on events. - Fixed bug where inserting BR elements on IE 8 would thrown an exception when the range is at a empty text node. - Fixed bug where outdent of single LI element within another LI would produce an empty list element OL/UL. - Fixed bug where the bullist/numlist buttons wouldn't be deselected when deleting all contents. - Fixed bug where toggling an empty list item off wouldn't produce a new empty block element. - Fixed bug where it wasn't possible to apply lists to mixed text blocks and br lines. - Fixed bug where it wasn't possible to paste contents on iOS when the paste plugin was enabled. - Fixed bug where it wasn't possible to delete HR elements on Gecko. - Fixed bug where scrolling and refocusing using the mouse would place the caret incorrectly on IE. - Fixed bug where you needed to hit the empty paragraph to get editor focus in IE 11. - Fixed bug where activeEditor wasn't set to the correct editor when opening windows. - Fixed bug where dirty state wasn't set to false when undoing to the first undo level. - Fixed bug where pasting in inline mode on Safari on Mac wouldn't work properly. - Fixed bug where content_css wasn't loaded into the insert template dialog. - Fixed bug where setting the contents of the editor to non text contents would produce an incorrect selection range. - Fixed so code dialog height gets smaller that the viewport height if it doesn't fit. - Fixed so inline editable regions scroll when pressing enter/return. - Fixed so inline toolbar gets positioned correctly when inline element is within a scrollable container. - Fixed various memory leaks when removing editor instances dynamically. - Removed CSS for BR elements in visualblocks due to problems with Chrome and IE. -Version 4.0.5 (2013-08-27) - Added visuals for UL, LI and BR to visualblocks plugin. Patch contributed by Dan Ransom. - Added new autosave_restore_when_empty option to autosave plugin. Enabled by default. - Fixed bug where an exception was thrown when inserting images if valid_elements didn't include an ID for the image. - Fixed bug where the advlist plugin wouldn't properly render the splitbutton controls. - Fixed bug where visual blocks menu item wouldn't be marked checked when using the visualblocks_default_state option. - Fixed bug where save button in save plugin wouldn't get properly enabled when contents was changed. - Fixed bug where it was possible to insert images without any value for it's source attribute. - Fixed bug where altering image attributes wouldn't add a new undo level. - Fixed bug where import rules in CSS files wouldn't be properly imported by the importcss plugin. - Fixed bug where selectors could be imported multiple times. Producing duplicate formats. - Fixed bug where IE would throw exception if selection was changed while the editor was hidden. - Fixed so complex rules like .class:before doesn't get imported by default in the importcss plugin. - Fixed so it's possible to remove images by setting the src attribute to a blank value. - Fixed so the save_enablewhendirty setting in the save plugin is enabled by default. - Fixed so block formats drop down for classic mode can be translated properly using language packs. - Fixed so hr menu item and toolbar button gets the same translation string. - Fixed so bullet list toolbar button gets the correct translation from language packs. - Fixed issue with Chrome logging CSS warning about border styling for combo boxes. - Fixed issue with Chrome logging warnings about deprecated keyLocation property. - Fixed issue where custom_elements would not remove the some of the default rules when cloning rules from div and span. -Version 4.0.4 (2013-08-21) - Added new importcss plugin. Lets you auto import classes from CSS files similar to the 3.x behavior. - Fixed bug where resize handles would be positioned incorrectly when inline element parent was using position: relative. - Fixed bug where IE 8 would throw Unknown runtime error if the editor was placed within a P tag. - Fixed bug where removing empty lists wouldn't produce blocks or brs where the old list was in the DOM. - Fixed bug where IE 10 wouldn't properly initialize template dialog due to async loading issues. - Fixed bug where autosave wouldn't properly display the warning about content not being saved due to isDirty changes. - Fixed bug where it wouldn't be possible to type if a touchstart event was bound to the parent document. - Fixed bug where code dialog in code plugin wouldn't wouldn't add a proper undo level. - Fixed issue where resizing the editor in vertical mode would set the iframe width to a pixel value. - Fixed issue with naming of insertdatetime settings. All are now prefixed with the plugin name. - Fixed so an initial change event is fired when the user types the first character into the editor. - Fixed so swf gets mapped to object element in media plugin. Enables embedding of flash with alternative poster. -Version 4.0.3 (2013-08-08) - Added new code_dialog_width/code_dialog_height options to control code dialog size. - Added missing pastetext button that works the same way as the pastetext menu item. - Added missing smaller browse button for the classical smaller toolbars. - Fixed bug where input method would produce new lines when inserting contents to an empty editor. - Fixed bug where pasting single indented list items from Word would cause a JS exception. - Fixed bug where applying block formats inside list elements in inline mode would apply them to whole document. - Fixed bug where link editing in inline mode would cause exception on IE/WebKit. - Fixed bug where IE 10 wouldn't render the last button group properly in inline mode due to wrapping. - Fixed bug where localStorage initialization would fail on Firefox/Chrome with disabled support. - Fixed bug where image elements would get an __mce id when undo/redo:ing to a level with image changes. - Fixed bug where too long template names wouldn't fit the listbox in template plugin. - Fixed bug where alignment format options would be marked disabled when forced_root_block was set to false. - Fixed bug where UI listboxes such as fontsize, fontfamily wouldn't update properly when switching editors in inline mode. - Fixed bug where the formats select box would mark the editable container DIV as a applied format in inline mode. - Fixed bug where IE 7/8 would scroll to empty editors when initialized. - Fixed bug where IE 7/8 wouldn't display previews of format options. - Fixed bug where UI states wasn't properly updated after code was changed in the code dialog. - Fixed bug with setting contents in IE would select all contents within the editor. - Fixed so the undoManages transact function disables any other undo levels from being added while within the transaction. - Fixed so sub/sup elements gets removed when the Clear formatting action is executed. - Fixed so text/javascript type value get removed by default from script elements to match the HTML5 spec. -Version 4.0.2 (2013-07-18) - Fixed bug where formatting using menus or toolbars wasn't possible on Opera 12.15. - Fixed bug where IE 8 keyboard input would break after paste using the paste plugin. - Fixed bug where IE 8 would throw an error when populating image size in image dialog. - Fixed bug where image resizing wouldn't work properly on latest IE 10.0.9 version. - Fixed bug where focus wasn't moved to the hovered menu button in a menubar container. - Fixed bug where paste would produce an extra uneeded undo level on IE and Gecko. - Fixed so anchors gets listed in the link dialog as they where in TinyMCE 3.x. - Fixed so sub, sup and strike though gets passed through when pasting from Word. - Fixed so Ctrl+P can be used to print the current document. Patch contributed by jashua212. -Version 4.0.1 (2013-06-26) - Added new paste_as_text config option to force paste as plaintext mode. - Added new pastetext menu item that lets you toggle paste as plain text mode on/off. - Added new insertdatetime_element option to insertdatetime plugin. Enables HTML5 time element support. - Added new spellchecker_wordchar_pattern option to allow configuration of language specific characters. - Added new marker to formats menu displaying the formats used at the current selection/caret location. - Fixed bug where the position of the text color picker would be wrong if you switched to fullscreen. - Fixed bug where the link plugin would ask to add the mailto: prefix multiple times. - Fixed bug where list outdent operation could produce empty list elements on specific selections. - Fixed bug where element path wouldn't properly select parent elements on IE. - Fixed bug where IE would sometimes throw an exception when extrancting the current selection range. - Fixed bug where line feeds wasn't properly rendered in source view on IE. - Fixed bug where word count wouldn't be properly rendered on IE 7. - Fixed bug where menubuttons/listboxes would have an incorrect height on IE 7. - Fixed bug where browser spellchecking was enabled while editing inline on IE 10. - Fixed bug where spellchecker wouldn't properly find non English words. - Fixed bug where deactivating inline editor instances would force padding-top: 0 on page body. - Fixed bug where jQuery would initialize editors multiple times since it didn't check if the editor already existed. - Fixed bug where it wasn't possible to paste contents on IE 10 in modern UI mode when paste filtering was enabled. - Fixed bug where tabfocus plugin wouldn't work properly on inline editor instances. - Fixed bug where fullpage plugin would clear the existing HTML head if contents where inserted into the editor. - Fixed bug where deleting all table rows/columns in a table would cause an exception to be thrown on IE. - Fixed so color button panels gets toggled on/off when activated/deactivated. - Fixed so format menu items that can't be applied to the current selection gets disabled. - Fixed so the icon parameter for addButton isn't automatically filled if a button text is provided. - Fixed so image size fields gets updated when selecting a new image in the image dialog. - Fixed so it doesn't load any language pack if the language option is set to "en". - Fixed so ctrl+shift+z works as an alternative redo shortcut to match a common Mac OS X shortcut. - Fixed so it's not possible to drag/drop in images in Gecko by default when paste plugin is enabled. - Fixed so format menu item texts gets translated using the specified language pack. - Fixed so the image dialog title is the same as the insert/edit image button text. - Fixed so paste as plain text produces BR:s in PRE block and when forced_root_block is disabled. -Version 4.0 (2013-06-13) - Added new insertdate_dateformat, insertdate_timeformat and insertdate_formats options to insertdatetime. - Added new font_formats, fontsize_formats and block_formats options to configure fontselect, fontsizeselect and formatselect. - Added new table_clone_elements option to table plugin. Enables you to specify what elements to clone when adding columns/rows. - Added new auto detect logic for site and email urls in link plugin to match the logic found in 3.x. - Added new getParams/setParams to WindowManager to make it easier to handle params to iframe based dialogs. Contributed by Ryan Demmer. - Added new textcolor options that enables you to specify the colors you want to display. Contributed by Jennifer Arsenault. - Added new external file support for link_list and image_list options. The file format is a simple JSON file. - Added new "both" mode for the resize option. Enables resizing in both width and height. - Added new paste_data_images option that allows you to enable/disable paste of data images. - Added new fixed_toolbar_container option that allows you to add a fixed container for the inline toolbar. - Fixed so font name, font size and block format select boxes gets updated with the current format. - Fixed so the resizeTo/resizeBy methods for the theme are exposed as it as in 3.x. - Fixed so the textcolor controls are splitbuttons as in 3.x. Patch contributed by toxalot/jashua212. - Fixed bug where the theme content css wasn't loaded into the preview dialog. - Fixed bug where the template description in template dialog wouldn't display the text correctly. - Fixed bug where various UI elements wasn't properly removed when an editor instance was removed. - Fixed bug where editing links in inline mode would fail on WebKit. - Fixed bug where the pagebreak_separator option in the pagebreak plugin wasn't working properly. - Fixed bug where the child panels of the float panel in inline mode wasn't properly placed. - Fixed bug where the float panel children of windows wasn't position fixed. - Fixed bug where the size of the ok button was hardcoded, caused issues with i18n. - Fixed bug where single comment in editor would cause exceptions due to resolve path logic not detecting elements only. - Fixed bug where switching alignment of tables in dialogs wouldn't properly remove existing alignments. - Fixed bug where the table properties dialog would show columns/rows textboxes. - Fixed bug where jQuery wasn't used instead of Sizzle in the jQuery version of TinyMCE. - Fixed bug where setting resize option to false whouldn't properly render the word count. - Fixed bug where table row type change would produce multiple table section elements. - Fixed bug where table row type change on multiple rows would add them in incorrect order. - Fixed bug where fullscreen plugin would maximize the editor on resize after toggling it off. - Fixed bug where context menu would be position at an incorrect coordinate in inline mode. - Fixed bug where inserting lists in inline mode on IE would produce errors since the body would be converted. - Fixed bug where the body couldn't be styled properly in custom content_css files. - Fixed bug where template plugins menu item would override the image menu item. - Fixed bug where IE 7-8 would render the text inside inputs at the wrong vertical location. - Fixed bug where IE configured to IE 7 compatibility mode wouldn't render the icons properly. - Fixed bug where editor.focus wouldn't properly fire the focusin event on WebKit. - Fixed bug where some keyboard shortcuts wouldn't work on IE 8. - Fixed bug where the undo state wasn't updated until the end of a typing level. - Fixed bug where keyboard shortcuts on Mac OS wasn't working correctly. - Fixed bug where empty inline elements would be created when toggling formatting of in empty block. - Fixed bug where applying styles on WebKit would fail in inline mode if the user released the mouse button outside the body. - Fixed bug where the visual aids menu item wasn't selected if the editor was empty. - Fixed so the isDirty/isNotDirty states gets updated to true/false on save() and change events. - Fixed so skins have separate CSS files for inline and iframe mode. - Fixed so menus and tool tips gets constrained to the current viewport. - Fixed so an error is thrown if users load jQuery after the jQuery version of TinyMCE. - Fixed so the filetype for media dialog passes out media instead of image as file type. - Fixed so it's possible to disable the toolbar by setting it to false. - Fixed so autoresize plugin isn't initialized when the editor is in inline mode. - Fixed so the inline editing toolbar will be rendered below elements if it doesn't fit above it. -Version 4.0b3 (2013-05-15) - Added new optional advanced tab for image dialog with hspace, vspace, border and style. - Added new change event that gets fired when undo levels are added to editor instances. - Added new removed_menuitems option enables you to list menu items to remove from menus. - Added new external_plugins option enables you to specify external locations for plugins. - Added new language_url option enables you to specify an external location for the language pack. - Added new table toolbar control that displays a menu for inserting/editing menus. - Fixed bug where IE 10 wouldn't load files properly from cache. - Fixed bug where image dialog wouldn't properly remove width/height if blanked. - Fixed bug where all events wasn't properly unbound when editor instances where removed. - Fixed bug where data- attributes wasn't working properly in the SaxParser. - Fixed bug where Gecko wouldn't properly render broken images. - Fixed bug where Gecko wouldn't produce the same error dialog on paste as other browsers. - Fixed bug where is wasn't possible to prevent execCommands in beforeExecCommand event. - Fixed bug where the fullpage_hide_in_source_view option wasn't working in the fullpage plugin. - Fixed bug where the WindowManager close method wouldn't properly close the top most window. - Fixed bug where it wasn't possible to paste in IE 10 due to JS exception. - Fixed bug where tab key didn't move to the right child control in tabpanels. - Fixed bug where enter inside a form would focus the first button like control in TinyMCE. - Fixed bug where it would match scripts that looked like the tinymce base directory incorrectly. - Fixed bug where the spellchecker wouldn't properly toggle off the spellcheck mode if no errors where found. - Fixed bug in searchreplace plugin where it would remove all spans instead of the marker spans. - Fixed issue where selector wouldn't disable existing mode setting. - Fixed so it's easier to configure the menu and menubar. - Fixed so bodyId/bodyClass is applied to preview as it's done to the editor iframe. -Version 4.0b2 (2013-04-24) - Added new rel_list option to link plugin. Enables you to specify values for a rel drop down. - Added new target_list option to link plugin. Enables you to add to or disable the link targets. - Added new link_list option to link plugin. Enables you to specify a list of links to pick from. - Added new image_list option to image pluigin. Enables you to specify a list of images to pick from. - Added new textcolor plugin. This plugin holds the text color and text background color buttons. - Fixed bug where alignment of images wasn't working properly on Firefox. - Fixed bug where IE 8 would throw error when inserting a table. - Fixed bug where IE 8 wouldn't render the element path properly. - Fixed bug where old IE versions would render a red focus border. - Fixed bug where old IE versions would render a frameborder for iframes. - Fixed bug where WebKit wouldn't properly open the cell properties dialog on edge case selection. - Fixed bug where charmap wouldn't correctly render all characters in grid. - Fixed bug where link dialog wouldn't update the link text properly. - Fixed bug where the focus/blur states on inline editors wasn't handled correctly on IE. - Fixed bug where IE would throw "unknown error" exception sometimes in ForceBlocks logic. - Fixed bug where IE would't properly render disabled buttons in button groups. - Fixed bug where tab key wouldn't properly move to next input field in dialogs. - Fixed bug where resize handles for tables and images would appear at wrong positions on IE 8. - Fixed bug where dialogs would produce stack overflow if title was wider than content. - Fixed bug with table cell/row menu items being enabled even if no cell was selected. - Fixed so the text to display is after the URL field in the link dialog. - Fixed so the width setting applies to the editor panel in modern theme. - Fixed so it's easier to make custom icons for buttons using plain old images. -Version 4.0b1 (2013-04-11) - Added new node.js based build process used uglify, amdlc, jake etc. - Added new package.json to enable easy installation of dependent npm packages used for building. - Added new link, image, charmap, anchor, code, hr plugins since these are now moved out of the theme. - Rewrote all plugins and themes from scratch so they match the new UI framework. - Replaced all events to use the more common .on/off() methods instead of ..add/remove. - Rewrote the TinyMCE core to use AMD style modules. Gets compiled to an inline library using amdlc. - Rewrote all core logic to pass jshint rules. Each file has specific jshint rules. - Removed all IE6 specific logic since 4.x will no longer support such an old browser. - Reworked the file names and directory structure of the whole project to be more similar to other JS projects. - Replaced tinymce.util.Cookie with tinymce.util.LocalStorage. Fallback to userData for IE 7 native localStorage for the rest. - Replaced the old 3.x UI with a new modern UI framework. - Removed "simple" theme and added new "modern" theme. - Removed advhr, advimage, advlink, iespell, inlinepopups, xhtmlxtras and style plugins. - Updated Sizzle to the latest version. + Added new file_picker_callback option to replace the old file_browser_callback the latter will still work though. + Added new custom colors to textcolor plugin will be displayed if a color picker is provided also shows the latest colors. + Added new color_picker_callback option to enable you to add custom color pickers to the editor. + Added new advanced tabs to table/cell/row dialogs to enable you to select colors for border/background. + Added new colorpicker plugin that lets you select colors from a hsv color picker. + Added new tinymce.util.Color class to handle color parsing and converting. + Added new colorpicker UI widget element lets you add a hsv color picker to any form/window. + Added new textpattern plugin that allows you to use markdown like text patterns to format contents. + Added new resize helper element that shows the current width & height while resizing. + Added new "once" method to Editor and EventDispatcher enables since callback execution events. + Added new jQuery like class under tinymce.dom.DomQuery it's exposed on editor instances (editor.$) and globally under (tinymce.$). + Fixed so the default resize method for images are proportional shift/ctrl can be used to make an unproportional size. + Fixed bug where the image_dimensions option of the image plugin would cause exceptions when it tried to update the size. + Fixed bug where table cell dialog class field wasn't properly updated when editing an a table cell with an existing class. + Fixed bug where Safari on Mac would produce webkit-fake-url for pasted images so these are now removed. + Fixed bug where the nodeChange event would get fired before the selection was changed when clicking inside the current selection range. + Fixed bug where valid_classes option would cause exception when it removed internal prefixed classes like mce-item-. + Fixed bug where backspace would cause navigation in IE 8 on an inline element and after a caret formatting was applied. + Fixed so placeholder images produced by the media plugin gets selected when inserted/edited. + Fixed so it's possible to drag in images when the paste_data_images option is enabled. Might be useful for mail clients. + Fixed so images doesn't get a width/height applied if the image_dimensions option is set to false useful for responsive contents. + Fixed so it's possible to pass in an optional arguments object for the nodeChanged function to be passed to all nodechange event listeners. + Fixed bug where media plugin embed code didn't update correctly. diff --git a/Resources/public/vendor/tinymce/icons/default/icons.min.js b/Resources/public/vendor/tinymce/icons/default/icons.min.js new file mode 100644 index 00000000..101606a2 --- /dev/null +++ b/Resources/public/vendor/tinymce/icons/default/icons.min.js @@ -0,0 +1 @@ +tinymce.IconManager.add("default",{icons:{"accessibility-check":'',"action-next":'',"action-prev":'',"align-center":'',"align-justify":'',"align-left":'',"align-none":'',"align-right":'',"arrow-left":'',"arrow-right":'',bold:'',bookmark:'',"border-width":'',brightness:'',browse:'',cancel:'',"change-case":'',"character-count":'',"checklist-rtl":'',checklist:'',checkmark:'',"chevron-down":'',"chevron-left":'',"chevron-right":'',"chevron-up":'',close:'',"code-sample":'',"color-levels":'',"color-picker":'',"color-swatch-remove-color":'',"color-swatch":'',"comment-add":'',comment:'',contrast:'',copy:'',crop:'',cut:'',"document-properties":'',drag:'',duplicate:'',"edit-block":'',"edit-image":'',"embed-page":'',embed:'',emoji:'',fill:'',"flip-horizontally":'',"flip-vertically":'',"format-painter":'',format:'',fullscreen:'',gallery:'',gamma:'',help:'',"highlight-bg-color":'',home:'',"horizontal-rule":'',"image-options":'',image:'',indent:'',info:'',"insert-character":'',"insert-time":'',invert:'',italic:'',line:'',link:'',"list-bull-circle":'',"list-bull-default":'',"list-bull-square":'',"list-num-default-rtl":'',"list-num-default":'',"list-num-lower-alpha-rtl":'',"list-num-lower-alpha":'',"list-num-lower-greek-rtl":'',"list-num-lower-greek":'',"list-num-lower-roman-rtl":'',"list-num-lower-roman":'',"list-num-upper-alpha-rtl":'',"list-num-upper-alpha":'',"list-num-upper-roman-rtl":'',"list-num-upper-roman":'',lock:'',ltr:'',"more-drawer":'',"new-document":'',"new-tab":'',"non-breaking":'',notice:'',"ordered-list-rtl":'',"ordered-list":'',orientation:'',outdent:'',"page-break":'',paragraph:'',"paste-text":'',paste:'',"permanent-pen":'',plus:'',preferences:'',preview:'',print:'',quote:'',redo:'',reload:'',"remove-formatting":'',remove:'',"resize-handle":'',resize:'',"restore-draft":'',"rotate-left":'',"rotate-right":'',rtl:'',save:'',search:'',"select-all":'',selected:'',settings:'',sharpen:'',"sort-asc":'',"sort-dsc":'',sourcecode:'',"spell-check":'',"strike-through":'',subscript:'',superscript:'',"table-cell-properties":'',"table-cell-select-all":'',"table-cell-select-inner":'',"table-delete-column":'',"table-delete-row":'',"table-delete-table":'',"table-insert-column-after":'',"table-insert-column-before":'',"table-insert-row-above":'',"table-insert-row-after":'',"table-left-header":'',"table-merge-cells":'',"table-row-properties":'',"table-split-cells":'',"table-top-header":'',table:'',template:'',"temporary-placeholder":'',"text-color":'',toc:'',translate:'',underline:'',undo:'',unlink:'',unlock:'',"unordered-list":'',unselected:'',upload:'',user:'',visualblocks:'',visualchars:'',warning:'',"zoom-in":'',"zoom-out":''}}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/jquery.tinymce.min.js b/Resources/public/vendor/tinymce/jquery.tinymce.min.js index 17c44e6a..eb24fdd5 100644 --- a/Resources/public/vendor/tinymce/jquery.tinymce.min.js +++ b/Resources/public/vendor/tinymce/jquery.tinymce.min.js @@ -1 +1,92 @@ -!function(e){function t(){function t(e){"remove"===e&&this.each(function(e,t){var n=r(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=tinymce.get(t.id.replace(/_parent$/,""));n&&n.remove()})}function i(e){var n,i=this;if(null!=e)t.call(i),i.each(function(t,n){var i;(i=tinymce.get(n.id))&&i.setContent(e)});else if(i.length>0&&(n=tinymce.get(i[0].id)))return n.getContent()}function r(e){var t=null;return e&&e.id&&a.tinymce&&(t=tinymce.get(e.id)),t}function c(e){return!!(e&&e.length&&a.tinymce&&e.is(":tinymce"))}var o={};e.each(["text","html","val"],function(t,a){var u=o[a]=e.fn[a],s="text"===a;e.fn[a]=function(t){var a=this;if(!c(a))return u.apply(a,arguments);if(t!==n)return i.call(a.filter(":tinymce"),t),u.apply(a.not(":tinymce"),arguments),a;var o="",l=arguments;return(s?a:a.eq(0)).each(function(t,n){var i=r(n);o+=i?s?i.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):i.getContent({save:!0}):u.apply(e(n),l)}),o}}),e.each(["append","prepend"],function(t,i){var a=o[i]=e.fn[i],u="prepend"===i;e.fn[i]=function(e){var t=this;return c(t)?e!==n?(t.filter(":tinymce").each(function(t,n){var i=r(n);i&&i.setContent(u?e+i.getContent():i.getContent()+e)}),a.apply(t.not(":tinymce"),arguments),t):void 0:a.apply(t,arguments)}}),e.each(["remove","replaceWith","replaceAll","empty"],function(n,i){var r=o[i]=e.fn[i];e.fn[i]=function(){return t.call(this,i),r.apply(this,arguments)}}),o.attr=e.fn.attr,e.fn.attr=function(t,a){var u=this,s=arguments;if(!t||"value"!==t||!c(u))return a!==n?o.attr.apply(u,s):o.attr.apply(u,s);if(a!==n)return i.call(u.filter(":tinymce"),a),o.attr.apply(u.not(":tinymce"),s),u;var l=u[0],m=r(l);return m?m.getContent({save:!0}):o.attr.apply(e(l),s)}}var n,i,r=[],a=window;e.fn.tinymce=function(n){function c(){var i=[],r=0;l||(t(),l=!0),m.each(function(e,t){var a,c=t.id,o=n.oninit;c||(t.id=c=tinymce.DOM.uniqueId()),tinymce.get(c)||(a=new tinymce.Editor(c,n,tinymce.EditorManager),i.push(a),a.on("init",function(){var e,t=o;m.css("visibility",""),o&&++r==i.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:tinymce.resolve(t.replace(/\.\w+$/,"")),t=tinymce.resolve(t)),t.apply(e||tinymce,i))}))}),e.each(i,function(e,t){t.render()})}var o,u,s,l,m=this,p="";if(!m.length)return m;if(!n)return window.tinymce?tinymce.get(m[0].id):null;if(m.css("visibility","hidden"),a.tinymce||i||!(o=n.script_url))1===i?r.push(c):c();else{i=1,u=o.substring(0,o.lastIndexOf("/")),-1!=o.indexOf(".min")&&(p=".min"),a.tinymce=a.tinyMCEPreInit||{base:u,suffix:p},-1!=o.indexOf("gzip")&&(s=n.language||"en",o=o+(/\?/.test(o)?"&":"?")+"js=true&core=true&suffix="+escape(p)+"&themes="+escape(n.theme||"modern")+"&plugins="+escape(n.plugins||"")+"&languages="+(s||""),a.tinyMCE_GZ||(a.tinyMCE_GZ={start:function(){function t(e){tinymce.ScriptLoader.markDone(tinymce.baseURI.toAbsolute(e))}t("langs/"+s+".js"),t("themes/"+n.theme+"/theme"+p+".js"),t("themes/"+n.theme+"/langs/"+s+".js"),e.each(n.plugins.split(","),function(e,n){n&&(t("plugins/"+n+"/plugin"+p+".js"),t("plugins/"+n+"/langs/"+s+".js"))})},end:function(){}}));var f=document.createElement("script");f.type="text/javascript",f.onload=f.onreadystatechange=function(t){t=t||window.event,2===i||"load"!=t.type&&!/complete|loaded/.test(f.readyState)||(tinymce.dom.Event.domLoaded=1,i=2,n.script_loaded&&n.script_loaded(),c(),e.each(r,function(e,t){t()}))},f.src=o,document.body.appendChild(f)}return m},e.extend(e.expr[":"],{tinymce:function(e){return!!(e.id&&"tinymce"in window&&tinymce.get(e.id))}})}(jQuery); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + */ +/** + * Jquery integration plugin. + * + * @class tinymce.core.JqueryIntegration + * @private + */ +!function(){var f,c,u,p,d,s=[];d="undefined"!=typeof global?global:window,p=d.jQuery;var v=function(){ +// Reference to tinymce needs to be lazily evaluated since tinymce +// might be loaded through the compressor or other means +return d.tinymce};p.fn.tinymce=function(o){var e,t,i,l=this,r=""; +// No match then just ignore the call +if(!l.length)return l; +// Get editor instance +if(!o)return v()?v().get(l[0].id):null;l.css("visibility","hidden");// Hide textarea to avoid flicker +var n=function(){var a=[],c=0; +// Apply patches to the jQuery object, only once +u||(m(),u=!0), +// Create an editor instance for each matched node +l.each(function(e,t){var n,i=t.id,r=o.oninit; +// Generate unique id for target element if needed +i||(t.id=i=v().DOM.uniqueId()), +// Only init the editor once +v().get(i)||( +// Create editor instance and render it +n=v().createEditor(i,o),a.push(n),n.on("init",function(){var e,t=r;l.css("visibility",""), +// Run this if the oninit setting is defined +// this logic will fire the oninit callback ones each +// matched editor instance is initialized +r&&++c==a.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:v().resolve(t.replace(/\.\w+$/,"")),t=v().resolve(t)), +// Call the oninit function with the object +t.apply(e||v(),a))}))}), +// Render the editor instances in a separate loop since we +// need to have the full editors array used in the onInit calls +p.each(a,function(e,t){t.render()})}; +// Load TinyMCE on demand, if we need to +if(d.tinymce||c||!(e=o.script_url)) +// Delay the init call until tinymce is loaded +1===c?s.push(n):n();else{c=1,t=e.substring(0,e.lastIndexOf("/")), +// Check if it's a dev/src version they want to load then +// make sure that all plugins, themes etc are loaded in source mode as well +-1!=e.indexOf(".min")&&(r=".min"), +// Setup tinyMCEPreInit object this will later be used by the TinyMCE +// core script to locate other resources like CSS files, dialogs etc +// You can also predefined a tinyMCEPreInit object and then it will use that instead +d.tinymce=d.tinyMCEPreInit||{base:t,suffix:r}, +// url contains gzip then we assume it's a compressor +-1!=e.indexOf("gzip")&&(i=o.language||"en",e=e+(/\?/.test(e)?"&":"?")+"js=true&core=true&suffix="+escape(r)+"&themes="+escape(o.theme||"modern")+"&plugins="+escape(o.plugins||"")+"&languages="+(i||""), +// Check if compressor script is already loaded otherwise setup a basic one +d.tinyMCE_GZ||(d.tinyMCE_GZ={start:function(){var n=function(e){v().ScriptLoader.markDone(v().baseURI.toAbsolute(e))}; +// Add core languages +n("langs/"+i+".js"), +// Add themes with languages +n("themes/"+o.theme+"/theme"+r+".js"),n("themes/"+o.theme+"/langs/"+i+".js"), +// Add plugins with languages +p.each(o.plugins.split(","),function(e,t){t&&(n("plugins/"+t+"/plugin"+r+".js"),n("plugins/"+t+"/langs/"+i+".js"))})},end:function(){}}));var a=document.createElement("script");a.type="text/javascript",a.onload=a.onreadystatechange=function(e){e=e||window.event,2===c||"load"!=e.type&&!/complete|loaded/.test(a.readyState)||(v().dom.Event.domLoaded=1,c=2, +// Execute callback after mainscript has been loaded and before the initialization occurs +o.script_loaded&&o.script_loaded(),n(),p.each(s,function(e,t){t()}))},a.src=e,document.body.appendChild(a)}return l}, +// Add :tinymce pseudo selector this will select elements that has been converted into editor instances +// it's now possible to use things like $('*:tinymce') to get all TinyMCE bound elements. +p.extend(p.expr[":"],{tinymce:function(e){var t;return!!(e.id&&"tinymce"in d&&(t=v().get(e.id))&&t.editorManager===v())}}); +// This function patches internal jQuery functions so that if +// you for example remove an div element containing an editor it's +// automatically destroyed by the TinyMCE API +var m=function(){ +// Removes any child editor instances by looking for editor wrapper elements +var r=function(e){ +// If the function is remove +"remove"===e&&this.each(function(e,t){var n=l(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=v().get(t.id.replace(/_parent$/,""));n&&n.remove()})},o=function(i){var e,t=this; +// Handle set value +/*jshint eqnull:true */if(null!=i)r.call(t), +// Saves the contents before get/set value of textarea/div +t.each(function(e,t){var n;(n=v().get(t.id))&&n.setContent(i)});else if(0])*>/g,""):n.getContent({save:!0}):a.apply(p(t),r)}),i}}), +// Makes it possible to use $('#id').append("content"); to append contents to the TinyMCE editor iframe +p.each(["append","prepend"],function(e,t){var n=s[t]=p.fn[t],r="prepend"===t;p.fn[t]=function(i){var e=this;return u(e)?i!==f?("string"==typeof i&&e.filter(":tinymce").each(function(e,t){var n=l(t);n&&n.setContent(r?i+n.getContent():n.getContent()+i)}),n.apply(e.not(":tinymce"),arguments),e):void 0:n.apply(e,arguments)}}), +// Makes sure that the editor instance gets properly destroyed when the parent element is removed +p.each(["remove","replaceWith","replaceAll","empty"],function(e,t){var n=s[t]=p.fn[t];p.fn[t]=function(){return r.call(this,t),n.apply(this,arguments)}}),s.attr=p.fn.attr, +// Makes sure that $('#tinymce_id').attr('value') gets the editors current HTML contents +p.fn.attr=function(e,t){var n=this,i=arguments;if(!e||"value"!==e||!u(n))return s.attr.apply(n,i);if(t!==f)return o.call(n.filter(":tinymce"),t),s.attr.apply(n.not(":tinymce"),i),n;// return original set for chaining +var r=n[0],a=l(r);return a?a.getContent({save:!0}):s.attr.apply(p(r),i)}}}(); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ar.js b/Resources/public/vendor/tinymce/langs/ar.js deleted file mode 100644 index 913f2a6a..00000000 --- a/Resources/public/vendor/tinymce/langs/ar.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('ar',{ -"Cut": "\u0642\u0635", -"Header 2": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u062a\u0635\u0641\u062d\u0643 \u0644\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d Ctrl+X\/C\/V \u0628\u062f\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643.", -"Div": "Div", -"Paste": "\u0644\u0635\u0642", -"Close": "\u0625\u063a\u0644\u0627\u0642", -"Font Family": "\u0639\u0627\u0626\u0644\u0629 \u0627\u0644\u062e\u0637", -"Pre": "\u0628\u0627\u062f\u0626\u0629", -"Align right": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0644\u0644\u064a\u0645\u064a\u0646", -"New document": "\u0645\u0633\u062a\u0646\u062f \u062c\u062f\u064a\u062f", -"Blockquote": "\u0639\u0644\u0627\u0645\u0627\u062a \u0627\u0644\u0627\u0642\u062a\u0628\u0627\u0633", -"Numbered list": "\u062a\u0631\u0642\u064a\u0645", -"Increase indent": "\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", -"Formats": "\u0627\u0644\u062a\u0646\u0633\u064a\u0642\u0627\u062a", -"Headers": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646", -"Select all": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0643\u0644", -"Header 3": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 3", -"Blocks": "\u0627\u0644\u0623\u0642\u0633\u0627\u0645", -"Undo": "\u062a\u0631\u0627\u062c\u0639", -"Strikethrough": "\u064a\u062a\u0648\u0633\u0637 \u062e\u0637", -"Bullet list": "\u062a\u0639\u062f\u0627\u062f \u0646\u0642\u0637\u064a", -"Header 1": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 1", -"Superscript": "\u0645\u0631\u062a\u0641\u0639", -"Clear formatting": "\u0645\u0633\u062d \u0627\u0644\u062a\u0646\u0633\u064a\u0642", -"Font Sizes": "\u062d\u062c\u0645 \u0627\u0644\u062e\u0637", -"Subscript": "\u0645\u0646\u062e\u0641\u0636", -"Header 6": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 6", -"Redo": "\u0625\u0639\u0627\u062f\u0629", -"Paragraph": "\u0641\u0642\u0631\u0629", -"Ok": "\u0645\u0648\u0627\u0641\u0642", -"Bold": "\u063a\u0627\u0645\u0642", -"Code": "\u0643\u0648\u062f", -"Italic": "\u0645\u0627\u0626\u0644", -"Align center": "\u062a\u0648\u0633\u064a\u0637", -"Header 5": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 5", -"Decrease indent": "\u0625\u0646\u0642\u0627\u0635 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", -"Header 4": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0644\u0635\u0642 \u0645\u0646 \u062d\u0627\u0644\u064a\u0627 \u0628\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u0646\u0635 \u0627\u0644\u0639\u0627\u062f\u064a. \u0633\u064a\u062a\u0645\u0643\u0646 \u0627\u0644\u0622\u0646 \u0645\u0646 \u0644\u0635\u0642 \u0643\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0643\u0646\u0635 \u0639\u0627\u062f\u064a \u062d\u062a\u0649 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u0637\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631.", -"Underline": "\u062a\u0633\u0637\u064a\u0631", -"Cancel": "\u0625\u0644\u063a\u0627\u0621", -"Justify": "\u0636\u0628\u0637", -"Inline": "\u062e\u0644\u0627\u0644", -"Copy": "\u0646\u0633\u062e", -"Align left": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0644\u0644\u064a\u0633\u0627\u0631", -"Visual aids": "\u0627\u0644\u0645\u0639\u064a\u0646\u0627\u062a \u0627\u0644\u0628\u0635\u0631\u064a\u0629", -"Lower Greek": "\u062a\u0631\u0642\u064a\u0645 \u064a\u0648\u0646\u0627\u0646\u064a \u0635\u063a\u064a\u0631", -"Square": "\u0645\u0631\u0628\u0639", -"Default": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", -"Lower Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062e\u0631\u0641 \u0635\u063a\u064a\u0631\u0629", -"Circle": "\u062f\u0627\u0626\u0631\u0629", -"Disc": "\u0642\u0631\u0635", -"Upper Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629", -"Upper Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0643\u0628\u064a\u0631", -"Lower Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0635\u063a\u064a\u0631", -"Name": "\u0627\u0644\u0627\u0633\u0645", -"Anchor": "\u0645\u0631\u0633\u0627\u0629", -"You have unsaved changes are you sure you want to navigate away?": "\u0644\u062f\u064a\u0643 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0645 \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627 \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0639\u064a\u062f\u0627\u061f", -"Restore last draft": "\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0623\u062e\u0631 \u0645\u0633\u0648\u062f\u0629", -"Special character": "\u0631\u0645\u0632", -"Source code": "\u0634\u0641\u0631\u0629 \u0627\u0644\u0645\u0635\u062f\u0631", -"Right to left": "\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631", -"Left to right": "\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646", -"Emoticons": "\u0627\u0644\u0631\u0645\u0648\u0632", -"Robots": "\u0627\u0644\u0631\u0648\u0628\u0648\u062a\u0627\u062a", -"Document properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062a\u0646\u062f", -"Title": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", -"Keywords": "\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0628\u062d\u062b", -"Encoding": "\u0627\u0644\u062a\u0631\u0645\u064a\u0632", -"Description": "\u0627\u0644\u0648\u0635\u0641", -"Author": "\u0627\u0644\u0643\u0627\u062a\u0628", -"Fullscreen": "\u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", -"Horizontal line": "\u062e\u0637 \u0623\u0641\u0642\u064a", -"Horizontal space": "\u0645\u0633\u0627\u0641\u0629 \u0623\u0641\u0642\u064a\u0629", -"Insert\/edit image": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0635\u0648\u0631\u0629", -"General": "\u0639\u0627\u0645", -"Advanced": "\u062e\u0635\u0627\u0626\u0635 \u0645\u062a\u0642\u062f\u0645\u0647", -"Source": "\u0627\u0644\u0645\u0635\u062f\u0631", -"Border": "\u062d\u062f\u0648\u062f", -"Constrain proportions": "\u0627\u0644\u062a\u0646\u0627\u0633\u0628", -"Vertical space": "\u0645\u0633\u0627\u0641\u0629 \u0639\u0645\u0648\u062f\u064a\u0629", -"Image description": "\u0648\u0635\u0641 \u0627\u0644\u0635\u0648\u0631\u0629", -"Style": "\u0627\u0644\u0646\u0645\u0637 \/ \u0627\u0644\u0634\u0643\u0644", -"Dimensions": "\u0627\u0644\u0623\u0628\u0639\u0627\u062f", -"Insert image": "\u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0629", -"Insert date\/time": "\u0625\u062f\u0631\u0627\u062c \u062a\u0627\u0631\u064a\u062e\/\u0648\u0642\u062a", -"Remove link": "\u062d\u0630\u0641 \u0627\u0644\u0631\u0627\u0628\u0637", -"Url": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", -"Text to display": "\u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0639\u0631\u0636\u0647", -"Anchors": "\u0645\u0631\u0633\u0627\u0629", -"Insert link": "\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637", -"New window": "\u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629", -"None": "\u0628\u0644\u0627", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0646\u062a\u0648\u0642\u0639 \u0627\u0646\u0643 \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637 \u0644\u0645\u0648\u0642\u0639 \u062e\u0627\u0631\u062c\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u0646\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 http:\/\/ \u0644\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0627\u062f\u062e\u0644\u062a\u0647\u061f", -"Target": "\u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0647\u062f\u0641", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c\u0647 \u064a\u0634\u0627\u0628\u0647 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 mailto: \u0645\u0639\u062a\u0628\u0631\u0627\u064b \u0647\u0630\u0627 \u0627\u0644\u0631\u0627\u0628\u0637 \u0628\u0631\u064a\u062f\u0627 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0627\u064b\u061f", -"Insert\/edit link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0631\u0627\u0628\u0637", -"Insert\/edit video": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0641\u064a\u062f\u064a\u0648", -"Poster": "\u0645\u0644\u0635\u0642", -"Alternative source": "\u0645\u0635\u062f\u0631 \u0628\u062f\u064a\u0644", -"Paste your embed code below:": "\u0644\u0635\u0642 \u0643\u0648\u062f \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0647\u0646\u0627:", -"Insert video": "\u0625\u062f\u0631\u0627\u062c \u0641\u064a\u062f\u064a\u0648", -"Embed": "\u062a\u0636\u0645\u064a\u0646", -"Nonbreaking space": "\u0645\u0633\u0627\u0641\u0629 \u063a\u064a\u0631 \u0645\u0646\u0642\u0633\u0645\u0629", -"Page break": "\u0641\u0627\u0635\u0644 \u0644\u0644\u0635\u0641\u062d\u0629", -"Paste as text": "\u0644\u0635\u0642 \u0643\u0646\u0635", -"Preview": "\u0645\u0639\u0627\u064a\u0646\u0629", -"Print": "\u0637\u0628\u0627\u0639\u0629", -"Save": "\u062d\u0641\u0638", -"Could not find the specified string.": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629", -"Replace": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644", -"Next": "\u0627\u0644\u062a\u0627\u0644\u064a", -"Whole words": "\u0645\u0637\u0627\u0628\u0642\u0629 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0628\u0627\u0644\u0643\u0627\u0645\u0644", -"Find and replace": "\u0628\u062d\u062b \u0648\u0627\u0633\u062a\u0628\u062f\u0627\u0644", -"Replace with": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0628\u0640", -"Find": "\u0628\u062d\u062b", -"Replace all": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0643\u0644", -"Match case": "\u0645\u0637\u0627\u0628\u0642\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0623\u062d\u0631\u0641", -"Prev": "\u0627\u0644\u0633\u0627\u0628\u0642", -"Spellcheck": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a", -"Finish": "\u0627\u0646\u062a\u0647\u064a", -"Ignore all": "\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u0643\u0644", -"Ignore": "\u062a\u062c\u0627\u0647\u0644", -"Insert row before": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", -"Rows": "\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641", -"Height": "\u0627\u0631\u062a\u0641\u0627\u0639", -"Paste row after": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", -"Alignment": "\u0645\u062d\u0627\u0630\u0627\u0629", -"Column group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0639\u0645\u0648\u062f", -"Row": "\u0635\u0641", -"Insert column before": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0633\u0627\u0631", -"Split cell": "\u062a\u0642\u0633\u064a\u0645 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", -"Cell padding": "\u062a\u0628\u0627\u0639\u062f \u0627\u0644\u062e\u0644\u064a\u0629", -"Cell spacing": "\u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0628\u064a\u0646 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", -"Row type": "\u0646\u0648\u0639 \u0627\u0644\u0635\u0641", -"Insert table": "\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644", -"Body": "\u0647\u064a\u0643\u0644", -"Caption": "\u0634\u0631\u062d", -"Footer": "\u062a\u0630\u064a\u064a\u0644", -"Delete row": "\u062d\u0630\u0641 \u0635\u0641", -"Paste row before": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", -"Scope": "\u0627\u0644\u0645\u062c\u0627\u0644", -"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", -"Header cell": "\u0631\u0623\u0633 \u0627\u0644\u062e\u0644\u064a\u0629", -"Column": "\u0639\u0645\u0648\u062f", -"Cell": "\u062e\u0644\u064a\u0629", -"Header": "\u0627\u0644\u0631\u0623\u0633", -"Cell type": "\u0646\u0648\u0639 \u0627\u0644\u062e\u0644\u064a\u0629", -"Copy row": "\u0646\u0633\u062e \u0627\u0644\u0635\u0641", -"Row properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0635\u0641", -"Table properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062c\u062f\u0648\u0644", -"Row group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0635\u0641", -"Right": "\u064a\u0645\u064a\u0646", -"Insert column after": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0645\u064a\u0646", -"Cols": "\u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629", -"Insert row after": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", -"Width": "\u0639\u0631\u0636", -"Cell properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062e\u0644\u064a\u0629", -"Left": "\u064a\u0633\u0627\u0631", -"Cut row": "\u0642\u0635 \u0627\u0644\u0635\u0641", -"Delete column": "\u062d\u0630\u0641 \u0639\u0645\u0648\u062f", -"Center": "\u062a\u0648\u0633\u064a\u0637", -"Merge cells": "\u062f\u0645\u062c \u062e\u0644\u0627\u064a\u0627", -"Insert template": "\u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628", -"Templates": "\u0642\u0648\u0627\u0644\u0628", -"Background color": "\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629", -"Text color": "\u0644\u0648\u0646 \u0627\u0644\u0646\u0635", -"Show blocks": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0643\u062a\u0644", -"Show invisible characters": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0631\u0626\u064a\u0629", -"Words: {0}": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a:{0}", -"Insert": "\u0625\u062f\u0631\u0627\u062c", -"File": "\u0645\u0644\u0641", -"Edit": "\u062a\u062d\u0631\u064a\u0631", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-F9 \u0644\u0644\u0642\u0627\u0626\u0645\u0629. \u0627\u0636\u063a\u0637 ALT-F10 \u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0633\u0627\u0639\u062f\u0629", -"Tools": "\u0623\u062f\u0627\u0648\u0627\u062a", -"View": "\u0639\u0631\u0636", -"Table": "\u062c\u062f\u0648\u0644", -"Format": "\u062a\u0646\u0633\u064a\u0642", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ar_SA.js b/Resources/public/vendor/tinymce/langs/ar_SA.js deleted file mode 100644 index 9de8bff0..00000000 --- a/Resources/public/vendor/tinymce/langs/ar_SA.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('ar_SA',{ -"Cut": "\u0642\u0635", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u062a\u0635\u0641\u062d\u0643 \u0644\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d Ctrl+X\/C\/V \u0628\u062f\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643.", -"Div": "Div", -"Paste": "\u0644\u0635\u0642", -"Close": "\u0623\u063a\u0644\u0642", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "Align right", -"New document": "\u0645\u0644\u0641 \u062c\u062f\u064a\u062f", -"Blockquote": "Blockquote", -"Numbered list": "Numbered list", -"Increase indent": "Increase indent", -"Formats": "Formats", -"Headers": "Headers", -"Select all": "\u0623\u062e\u062a\u0631 \u0627\u0644\u0643\u0644", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "\u062a\u0631\u0627\u062c\u0639", -"Strikethrough": "Strikethrough", -"Bullet list": "Bullet list", -"Header 1": "Header 1", -"Superscript": "Superscript", -"Clear formatting": "Clear formatting", -"Font Sizes": "Font Sizes", -"Subscript": "Subscript", -"Header 6": "Header 6", -"Redo": "Redo", -"Paragraph": "Paragraph", -"Ok": "Ok", -"Bold": "Bold", -"Code": "Code", -"Italic": "Italic", -"Align center": "Align center", -"Header 5": "Header 5", -"Decrease indent": "Decrease indent", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "Underline", -"Cancel": "\u0625\u0644\u063a\u0627\u0621", -"Justify": "Justify", -"Inline": "Inline", -"Copy": "\u0646\u0633\u062e", -"Align left": "Align left", -"Visual aids": "Visual aids", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "\u0644\u062f\u064a\u0643 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0645 \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627 \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u061f", -"Restore last draft": "\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0623\u062e\u0631 \u0645\u0633\u0648\u062f\u0629", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0625\u0644\u064a \u0627\u0644\u064a\u0633\u0627\u0631", -"Left to right": "\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0625\u0644\u064a \u0627\u0644\u064a\u0645\u064a\u0646", -"Emoticons": "\u0627\u0644\u0631\u0645\u0648\u0632", -"Robots": "Robots", -"Document properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062a\u0646\u062f", -"Title": "\u0639\u0646\u0648\u0627\u0646", -"Keywords": "Keywords", -"Encoding": "\u062a\u0631\u0645\u064a\u0632", -"Description": "Description", -"Author": "\u0627\u0644\u0643\u0627\u062a\u0628", -"Fullscreen": "Fullscreen", -"Horizontal line": "\u062e\u0637 \u0623\u0641\u0642\u064a", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "\u0639\u0631\u0636", -"Print": "\u0637\u0628\u0627\u0639\u0629", -"Save": "\u062d\u0641\u0638", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background color", -"Text color": "Text color", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/az.js b/Resources/public/vendor/tinymce/langs/az.js deleted file mode 100644 index 5b1882c1..00000000 --- a/Resources/public/vendor/tinymce/langs/az.js +++ /dev/null @@ -1,194 +0,0 @@ -tinymce.addI18n('az',{ -"Cut": "K\u0259s", -"Heading 5": "Ba\u015fl\u0131q 5", -"Header 2": "Ba\u015fl\u0131q 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Sizin brauzeriniz m\u00fcbadil\u0259 buferin\u0259 birba\u015fa yolu d\u0259st\u0259kl\u0259mir. Z\u0259hm\u0259t olmasa, bunun yerin\u0259 klaviaturan\u0131n Ctrl+X\/C\/V d\u00fcym\u0259l\u0259rind\u0259n istifad\u0259 edin.", -"Heading 4": "Ba\u015fl\u0131q 4", -"Div": "Div", -"Heading 2": "Ba\u015fl\u0131q 2", -"Paste": "\u018flav\u0259 et", -"Close": "Ba\u011fla", -"Font Family": "Font stili", -"Pre": "Pre", -"Align right": "Sa\u011f t\u0259r\u0259f \u00fczr\u0259", -"New document": "Yeni s\u0259n\u0259d", -"Blockquote": "Sitat", -"Numbered list": "N\u00f6mr\u0259l\u0259nmi\u015f siyah\u0131", -"Heading 1": "Ba\u015fl\u0131q 1", -"Headings": "Ba\u015fl\u0131qlar", -"Increase indent": "Bo\u015flu\u011fu art\u0131r", -"Formats": "Formatlar", -"Headers": "Ba\u015fl\u0131qlar", -"Select all": "Ham\u0131s\u0131n\u0131 se\u00e7", -"Header 3": "Ba\u015fl\u0131q 3", -"Blocks": "Bloklar", -"Undo": "Geriy\u0259", -"Strikethrough": "Silinmi\u015f", -"Bullet list": "S\u0131ras\u0131z siyah\u0131", -"Header 1": "Ba\u015fl\u0131q 1", -"Superscript": "Yuxar\u0131 indeks", -"Clear formatting": "Format\u0131 t\u0259mizl\u0259", -"Font Sizes": "Font \u00f6l\u00e7\u00fcl\u0259ri", -"Subscript": "A\u015fa\u011f\u0131 indeks", -"Header 6": "Ba\u015fl\u0131q 6", -"Redo": "\u0130r\u0259li", -"Paragraph": "Paraqraf", -"Ok": "Oldu", -"Bold": "Qal\u0131n", -"Code": "Kod", -"Italic": "Maili", -"Align center": "M\u0259rk\u0259z \u00fczr\u0259", -"Header 5": "Ba\u015fl\u0131q 5", -"Heading 6": "Ba\u015fl\u0131q 6", -"Heading 3": "Ba\u015fl\u0131q 3", -"Decrease indent": "Bo\u015flu\u011fu azalt", -"Header 4": "Ba\u015fl\u0131q 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Hal-haz\u0131rda adi m\u0259tn rejimind\u0259 yerl\u0259\u015fdirilir. M\u0259zmun sad\u0259 m\u0259tn \u015f\u0259klind\u0259 yerl\u0259\u015fdiril\u0259c\u0259k, h\u0259l\u0259 bu se\u00e7imi d\u0259yi\u015fdirm\u0259.", -"Underline": "Alt x\u0259ttli", -"Cancel": "L\u0259\u011fv et", -"Justify": "H\u0259r iki t\u0259r\u0259f \u00fczr\u0259", -"Inline": "S\u0259tir i\u00e7i", -"Copy": "K\u00f6\u00e7\u00fcr", -"Align left": "Sol t\u0259r\u0259f \u00fczr\u0259", -"Visual aids": "Konturlar\u0131 g\u00f6st\u0259r", -"Lower Greek": "Ki\u00e7ik Yunan \u0259lifbas\u0131", -"Square": "Sah\u0259", -"Default": "\u018fvv\u0259ld\u0259n qurulmu\u015f", -"Lower Alpha": "Ki\u00e7ik Alfa \u0259lifbas\u0131", -"Circle": "Dair\u0259", -"Disc": "Disk", -"Upper Alpha": "B\u00f6y\u00fck Alfa \u0259lifbas\u0131", -"Upper Roman": "B\u00f6y\u00fck Roma \u0259lifbas\u0131", -"Lower Roman": "Ki\u00e7ik Roma \u0259lifbas\u0131", -"Name": "Ad", -"Anchor": "L\u00f6vb\u0259r", -"You have unsaved changes are you sure you want to navigate away?": "Sizd\u0259 yadda saxlan\u0131lmayan d\u0259yi\u015fiklikl\u0259r var \u0259minsiniz ki, getm\u0259k ist\u0259yirsiniz?", -"Restore last draft": "Son layih\u0259nin b\u0259rpas\u0131", -"Special character": "X\u00fcsusi simvollar", -"Source code": "M\u0259nb\u0259 kodu", -"Right to left": "Sa\u011fdan sola", -"Left to right": "Soldan sa\u011fa", -"Emoticons": "T\u0259b\u0259ss\u00fcml\u0259r", -"Robots": "Robotlar", -"Document properties": "S\u0259n\u0259din x\u00fcsusiyy\u0259tl\u0259ri", -"Title": "Ba\u015fl\u0131q", -"Keywords": "A\u00e7ar s\u00f6zl\u0259r", -"Encoding": "Kodla\u015fd\u0131rma", -"Description": "T\u0259sviri", -"Author": "M\u00fc\u0259llif", -"Fullscreen": "Tam ekran rejimi", -"Horizontal line": "Horizontal x\u0259tt", -"Horizontal space": "Horizontal sah\u0259", -"Insert\/edit image": "\u015e\u0259kilin \u0259lav\u0259\/redakt\u0259 edilm\u0259si", -"General": "\u00dcmumi", -"Advanced": "Geni\u015fl\u0259nmi\u015f", -"Source": "M\u0259nb\u0259", -"Border": "\u00c7\u0259r\u00e7iv\u0259", -"Constrain proportions": "Nisb\u0259tl\u0259rin saxlan\u0131lmas\u0131", -"Vertical space": "Vertikal sah\u0259", -"Image description": "\u015e\u0259kilin t\u0259sviri", -"Style": "Stil", -"Dimensions": "\u00d6l\u00e7\u00fcl\u0259r", -"Insert image": "\u015e\u0259kilin redakt\u0259 edilm\u0259si", -"Insert date\/time": "G\u00fcn\/tarix \u0259lav\u0259 et", -"Remove link": "Linki sil", -"Url": "Linkin \u00fcnvan\u0131", -"Text to display": "G\u00f6r\u00fcn\u0259n yaz\u0131n\u0131n t\u0259sviri", -"Anchors": "L\u00f6vb\u0259rl\u0259r", -"Insert link": "Linkin \u0259lav\u0259 edilm\u0259si", -"New window": "Yeni p\u0259nc\u0259r\u0259d\u0259 a\u00e7\u0131ls\u0131n", -"None": "Yoxdur", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Daxil etdiyiniz URL bir e-mail kimi g\u00f6r\u00fcn\u00fcr. \u018fg\u0259r t\u0259l\u0259b olunan mailto: prefix \u0259lav\u0259 etm\u0259k ist\u0259yirsiniz?", -"Target": "H\u0259d\u0259f", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Daxil etdiyiniz URL bir e-mail kimi g\u00f6r\u00fcn\u00fcr. \u018fg\u0259r t\u0259l\u0259b olunan mailto: prefix \u0259lav\u0259 etm\u0259k ist\u0259yirsiniz?", -"Insert\/edit link": "Linkin \u0259lav\u0259\/redakt\u0259 edilm\u0259si", -"Insert\/edit video": "Videonun \u0259lav\u0259\/redakt\u0259 edilm\u0259si", -"Poster": "Poster", -"Alternative source": "Alternativ m\u0259nb\u0259", -"Paste your embed code below:": "\u00d6z kodunuzu a\u015fa\u011f\u0131 \u0259lav\u0259 edin:", -"Insert video": "Videonun \u0259lav\u0259 edilm\u0259si", -"Embed": "\u018flav\u0259 etm\u0259k \u00fc\u00e7\u00fcn kod", -"Nonbreaking space": "Q\u0131r\u0131lmaz sah\u0259", -"Page break": "S\u0259hif\u0259nin q\u0131r\u0131lmas\u0131", -"Paste as text": "M\u0259tn kimi \u0259lav\u0259 et", -"Preview": "\u0130lkinbax\u0131\u015f", -"Print": "\u00c7ap et", -"Save": "Yadda saxla", -"Could not find the specified string.": "G\u00f6st\u0259ril\u0259n s\u0259tiri tapmaq olmur", -"Replace": "D\u0259yi\u015fdir", -"Next": "N\u00f6vb\u0259ti", -"Whole words": "Tam s\u00f6zl\u0259r", -"Find and replace": "Tap v\u0259 d\u0259yi\u015fdir", -"Replace with": "Bununla d\u0259yi\u015fdir", -"Find": "Tap", -"Replace all": "Ham\u0131s\u0131n\u0131 d\u0259yi\u015fdir", -"Match case": "Registri n\u0259z\u0259r\u0259 al", -"Prev": "\u018fvv\u0259lki", -"Spellcheck": "Orfoqrafiyan\u0131 yoxla", -"Finish": "Bitir", -"Ignore all": "Ham\u0131s\u0131n\u0131 iqnorla", -"Ignore": "\u0130qnorla", -"Insert row before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et", -"Rows": "S\u0259tirl\u0259r", -"Height": "H\u00fcnd\u00fcrl\u00fcy\u00fc", -"Paste row after": "Sonras\u0131na s\u0259tir \u0259lav\u0259 et", -"Alignment": "D\u00fczl\u0259ndirm\u0259", -"Column group": "S\u00fctunun qrupu", -"Row": "S\u0259tir", -"Insert column before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et", -"Split cell": "H\u00fccr\u0259l\u0259rin say\u0131", -"Cell padding": "H\u00fccr\u0259l\u0259rin sah\u0259l\u0259ri", -"Cell spacing": "H\u00fccr\u0259l\u0259rin aras\u0131nda m\u0259saf\u0259", -"Row type": "S\u0259tirin tipi", -"Insert table": "S\u0259tir \u0259lav\u0259 et", -"Body": "K\u00fctl\u0259", -"Caption": "Ba\u015flan\u011f\u0131c", -"Footer": "Son", -"Delete row": "S\u0259tiri sil", -"Paste row before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et", -"Scope": "Sfera", -"Delete table": "C\u0259dv\u0259li sil", -"H Align": "H D\u00fczl\u0259ndir", -"Top": "Yuxar\u0131", -"Header cell": "H\u00fccr\u0259nin ba\u015fl\u0131\u011f\u0131", -"Column": "S\u00fctun", -"Row group": "S\u0259tirin qrupu", -"Cell": "H\u00fccr\u0259", -"Middle": "Orta", -"Cell type": "H\u00fccr\u0259nin tipi", -"Copy row": "S\u0259tiri k\u00f6\u00e7\u00fcr", -"Row properties": "S\u0259tirin x\u00fcsusiyy\u0259tl\u0259ri", -"Table properties": "C\u0259dv\u0259lin x\u00fcsusiyy\u0259tl\u0259ri", -"Bottom": "A\u015fa\u011f\u0131", -"V Align": "V D\u00fczl\u0259ndir", -"Header": "Ba\u015fl\u0131q", -"Right": "Sa\u011f t\u0259r\u0259f \u00fczr\u0259", -"Insert column after": "\u018fvv\u0259lin\u0259 s\u00fctun \u0259lav\u0259 et", -"Cols": "S\u00fctunlar", -"Insert row after": "Sonras\u0131na s\u0259tir \u0259lav\u0259 et", -"Width": "Eni", -"Cell properties": "H\u00fccr\u0259nin x\u00fcsusiyy\u0259tl\u0259ri", -"Left": "Sol t\u0259r\u0259f \u00fczr\u0259", -"Cut row": "S\u0259tiri k\u0259s", -"Delete column": "S\u00fctunu sil", -"Center": "M\u0259rk\u0259z \u00fczr\u0259", -"Merge cells": "H\u00fccr\u0259l\u0259ri birl\u0259\u015ftir", -"Insert template": "\u015eablon \u0259lav\u0259 et", -"Templates": "\u015eablonlar", -"Background color": "Arxafon r\u0259ngi", -"Custom...": "\u00c7\u0259kilm\u0259...", -"Custom color": "\u00c7\u0259kilm\u0259 r\u0259ng", -"No color": "R\u0259ngsiz", -"Text color": "M\u0259tnin r\u0259ngi", -"Show blocks": "Bloklar\u0131 g\u00f6st\u0259r", -"Show invisible characters": "G\u00f6r\u00fcnm\u0259y\u0259n simvollar\u0131 g\u00f6st\u0259r", -"Words: {0}": "S\u00f6zl\u0259r: {0}", -"Insert": "\u018flav\u0259 et", -"File": "Fayl", -"Edit": "Redakt\u0259 et", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "B\u00f6y\u00fck m\u0259tn sah\u0259si \u0259lav\u0259 edilib. Menyu \u00fc\u00e7\u00fcn ALT-F9 d\u00fcym\u0259sini bas\u0131n. Al\u0259tl\u0259r paneli \u00fc\u00e7\u00fcn ALT-F10 d\u00fcym\u0259sini bas\u0131n. K\u00f6m\u0259k \u00fc\u00e7\u00fcn ALT-0 d\u00fcym\u0259l\u0259rin bas\u0131n.", -"Tools": "Al\u0259tl\u0259r", -"View": "G\u00f6r\u00fcn\u00fc\u015f", -"Table": "C\u0259dv\u0259l", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/be.js b/Resources/public/vendor/tinymce/langs/be.js deleted file mode 100644 index ec4e13f1..00000000 --- a/Resources/public/vendor/tinymce/langs/be.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('be',{ -"Cut": "\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c", -"Heading 5": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 5", -"Header 2": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u045e\u0437\u044d\u0440 \u043d\u0435 \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435 \u043f\u0440\u0430\u043c\u044b \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u0430 \u0431\u0443\u0444\u0435\u0440\u0430 \u0430\u0431\u043c\u0435\u043d\u0443. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0439\u0446\u0435 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u044b\u044f \u0441\u043f\u0430\u043b\u0443\u0447\u044d\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448: Ctrl + X\/C\/V.", -"Heading 4": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 4", -"Div": "\u0411\u043b\u043e\u043a", -"Heading 2": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 2", -"Paste": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c", -"Close": "\u0417\u0430\u0447\u044b\u043d\u0456\u0446\u044c", -"Font Family": "\u0428\u0440\u044b\u0444\u0442", -"Pre": "\u041f\u0440\u0430\u0434\u0444\u0430\u0440\u043c\u0430\u0442\u0430\u0432\u0430\u043d\u043d\u0435", -"Align right": "\u041f\u0430 \u043f\u0440\u0430\u0432\u044b\u043c \u043a\u0440\u0430\u0456", -"New document": "\u041d\u043e\u0432\u044b \u0434\u0430\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u044b\u0442\u0430\u0442\u0430", -"Numbered list": "\u041d\u0443\u043c\u0430\u0440\u0430\u0432\u0430\u043d\u044b \u0441\u043f\u0456\u0441", -"Heading 1": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 1", -"Headings": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043a\u0456", -"Increase indent": "\u041f\u0430\u0432\u044f\u043b\u0456\u0447\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f", -"Formats": "\u0424\u0430\u0440\u043c\u0430\u0442", -"Headers": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043a\u0456", -"Select all": "\u0412\u044b\u043b\u0443\u0447\u044b\u0446\u044c \u0443\u0441\u0451", -"Header 3": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 3", -"Blocks": "\u0411\u043b\u043e\u043a\u0456", -"Undo": "\u0412\u044f\u0440\u043d\u0443\u0446\u044c", -"Strikethrough": "\u0417\u0430\u043a\u0440\u044d\u0441\u043b\u0435\u043d\u044b", -"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u0430\u0432\u0430\u043d\u044b \u0441\u043f\u0456\u0441", -"Header 1": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 1", -"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456 \u0456\u043d\u0434\u044d\u043a\u0441", -"Clear formatting": "\u0410\u0447\u044b\u0441\u0446\u0456\u0446\u044c \u0444\u0430\u0440\u043c\u0430\u0442", -"Font Sizes": "\u041f\u0430\u043c\u0435\u0440 \u0448\u0440\u044b\u0444\u0442\u0430", -"Subscript": "\u041d\u0456\u0436\u043d\u0456 \u0456\u043d\u0434\u044d\u043a\u0441", -"Header 6": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 6", -"Redo": "\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "Ok", -"Bold": "\u0422\u043b\u0443\u0441\u0442\u044b", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u0443\u0440\u0441\u0456\u045e", -"Align center": "\u041f\u0430 \u0446\u044d\u043d\u0442\u0440\u044b", -"Header 5": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 5", -"Heading 6": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 6", -"Heading 3": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 3", -"Decrease indent": "\u041f\u0430\u043c\u0435\u043d\u0448\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f", -"Header 4": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0423\u0441\u0442\u0430\u045e\u043a\u0430 \u0437\u0434\u0437\u044f\u0439\u0441\u043d\u044f\u0435\u0446\u0446\u0430 \u045e \u0432\u044b\u0433\u043b\u044f\u0434\u0437\u0435 \u043f\u0440\u043e\u0441\u0442\u0430\u0433\u0430 \u0442\u044d\u043a\u0441\u0442\u0443, \u043f\u0430\u043a\u0443\u043b\u044c \u043d\u0435 \u0430\u0434\u043a\u043b\u044e\u0447\u044b\u0446\u044c \u0434\u0430\u0434\u0437\u0435\u043d\u0443\u044e \u043e\u043f\u0446\u044b\u044e.", -"Underline": "\u041f\u0430\u0434\u043a\u0440\u044d\u0441\u043b\u0435\u043d\u044b", -"Cancel": "\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c", -"Justify": "\u041f\u0430 \u0448\u044b\u0440\u044b\u043d\u0456", -"Inline": "\u0420\u0430\u0434\u043a\u043e\u0432\u044b", -"Copy": "\u041a\u0430\u043f\u0456\u0440\u0430\u0432\u0430\u0446\u044c", -"Align left": "\u041f\u0430 \u043b\u0435\u0432\u044b\u043c \u043a\u0440\u0430\u0456", -"Visual aids": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b", -"Lower Greek": "\u041c\u0430\u043b\u044b\u044f \u0433\u0440\u044d\u0447\u0430\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b", -"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b", -"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b", -"Lower Alpha": "\u041c\u0430\u043b\u044b\u044f \u043b\u0430\u0446\u0456\u043d\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b", -"Circle": "\u0410\u043a\u0440\u0443\u0436\u043d\u0430\u0441\u0446\u0456", -"Disc": "\u041a\u0440\u0443\u0433\u0456", -"Upper Alpha": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043d\u044b\u044f \u043b\u0430\u0446\u0456\u043d\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b", -"Upper Roman": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043d\u044b\u044f \u0440\u044b\u043c\u0441\u043a\u0456\u044f \u043b\u0456\u0447\u0431\u044b", -"Lower Roman": "\u041c\u0430\u043b\u044b\u044f \u0440\u044b\u043c\u0441\u043a\u0456\u044f \u043b\u0456\u0447\u0431\u044b", -"Name": "\u0406\u043c\u044f", -"Anchor": "\u042f\u043a\u0430\u0440", -"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0451\u0441\u0446\u044c \u043d\u0435\u0437\u0430\u0445\u0430\u0432\u0430\u043d\u044b\u044f \u0437\u043c\u0435\u043d\u044b. \u0412\u044b \u045e\u043f\u044d\u045e\u043d\u0435\u043d\u044b\u044f, \u0448\u0442\u043e \u0445\u043e\u0447\u0430\u0446\u0435 \u0432\u044b\u0439\u0441\u0446\u0456?", -"Restore last draft": "\u0410\u0434\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u0435 \u0430\u043f\u043e\u0448\u043d\u044f\u0433\u0430 \u043f\u0440\u0430\u0435\u043a\u0442\u0430", -"Special character": "\u0421\u043f\u0435\u0446\u044b\u044f\u043b\u044c\u043d\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b", -"Source code": "\u0417\u044b\u0445\u043e\u0434\u043d\u044b \u043a\u043e\u0434", -"Color": "\u041a\u043e\u043b\u0435\u0440", -"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u0430", -"Left to right": "\u0417\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u0430", -"Emoticons": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043c\u0430\u0439\u043b", -"Robots": "\u0420\u043e\u0431\u0430\u0442\u044b", -"Document properties": "\u0423\u043b\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0434\u0430\u043a\u0443\u043c\u0435\u043d\u0442\u0430", -"Title": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a", -"Keywords": "\u041a\u043b\u044e\u0447\u0430\u0432\u044b\u044f \u0441\u043b\u043e\u0432\u044b", -"Encoding": "\u041a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0430", -"Description": "\u0410\u043f\u0456\u0441\u0430\u043d\u043d\u0435", -"Author": "\u0410\u045e\u0442\u0430\u0440", -"Fullscreen": "\u041f\u043e\u045e\u043d\u0430\u044d\u043a\u0440\u0430\u043d\u043d\u044b \u0440\u044d\u0436\u044b\u043c", -"Horizontal line": "\u0413\u0430\u0440\u044b\u0437\u0430\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0456\u043d\u0456\u044f", -"Horizontal space": "\u0413\u0430\u0440\u044b\u0437\u0430\u043d\u0442\u0430\u043b\u044c\u043d\u044b \u0456\u043d\u0442\u044d\u0440\u0432\u0430\u043b", -"Insert\/edit image": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0432\u044b\u044f\u0432\u0443", -"General": "\u0410\u0433\u0443\u043b\u044c\u043d\u0430\u0435", -"Advanced": "\u041f\u0430\u0448\u044b\u0440\u0430\u043d\u0430\u0435", -"Source": "\u041a\u0440\u044b\u043d\u0456\u0446\u0430", -"Border": "\u041c\u044f\u0436\u0430", -"Constrain proportions": "\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043f\u0440\u0430\u043f\u043e\u0440\u0446\u044b\u0456", -"Vertical space": "\u0412\u0435\u0440\u0442\u044b\u043a\u0430\u043b\u044c\u043d\u044b \u0456\u043d\u0442\u044d\u0440\u0432\u0430\u043b", -"Image description": "\u0410\u043f\u0456\u0441\u0430\u043d\u043d\u0435 \u0432\u044b\u044f\u0432\u044b", -"Style": "\u0421\u0442\u044b\u043b\u044c", -"Dimensions": "\u041f\u0430\u043c\u0435\u0440", -"Insert image": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0432\u044b\u044f\u0432\u0443", -"Insert date\/time": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441", -"Remove link": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443", -"Url": "\u0410\u0434\u0440\u0430\u0441 \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0456", -"Text to display": "\u0422\u044d\u043a\u0441\u0442 \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0456", -"Anchors": "\u042f\u043a\u0430\u0440\u044b", -"Insert link": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443", -"New window": "\u0423 \u043d\u043e\u0432\u044b\u043c \u0430\u043a\u043d\u0435", -"None": "\u041d\u044f\u043c\u0430", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0423\u0432\u0435\u0434\u0437\u0435\u043d\u044b \u0430\u0434\u0440\u0430\u0441 \u043f\u0430\u0434\u043e\u0431\u043d\u044b \u043d\u0430 \u0437\u043d\u0435\u0448\u043d\u044e\u044e \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443. \u0416\u0430\u0434\u0430\u0435\u0446\u0435 \u0434\u0430\u0434\u0430\u0446\u044c \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u044b http:\/\/ \u043f\u0440\u044d\u0444\u0456\u043a\u0441?", -"Target": "\u0410\u0434\u043a\u0440\u044b\u0432\u0430\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0423\u0432\u0435\u0434\u0437\u0435\u043d\u044b \u0430\u0434\u0440\u0430\u0441 \u043f\u0430\u0434\u043e\u0431\u043d\u044b \u043d\u0430 \u0430\u0434\u0440\u0430\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u0439 \u043f\u043e\u0448\u0442\u044b. \u0416\u0430\u0434\u0430\u0435\u0446\u0435 \u0434\u0430\u0434\u0430\u0446\u044c \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u044b mailto: \u043f\u0440\u044d\u0444\u0456\u043a\u0441?", -"Insert\/edit link": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443", -"Insert\/edit video": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0432\u0456\u0434\u044d\u0430", -"Poster": "\u0412\u044b\u044f\u0432\u0430", -"Alternative source": "\u0410\u043b\u044c\u0442\u044d\u0440\u043d\u0430\u0442\u044b\u045e\u043d\u0430\u044f \u043a\u0440\u044b\u043d\u0456\u0446\u0430", -"Paste your embed code below:": "\u0423\u0441\u0442\u0430\u045e\u0446\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0456\u0436\u044d\u0439:", -"Insert video": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0432\u0456\u0434\u044d\u0430", -"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u045e\u0441\u0442\u0430\u045e\u043a\u0456", -"Nonbreaking space": "\u041d\u0435\u043f\u0430\u0440\u044b\u045e\u043d\u044b \u043f\u0440\u0430\u0431\u0435\u043b", -"Page break": "\u0420\u0430\u0437\u0440\u044b\u045e \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0456", -"Paste as text": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u044f\u043a \u0442\u044d\u043a\u0441\u0442", -"Preview": "\u041f\u0440\u0430\u0434\u043f\u0440\u0430\u0433\u043b\u044f\u0434", -"Print": "\u0414\u0440\u0443\u043a", -"Save": "\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c", -"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u044b \u0440\u0430\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b", -"Replace": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c", -"Next": "\u0423\u043d\u0456\u0437", -"Whole words": "\u0421\u043b\u043e\u0432\u044b \u0446\u0430\u043b\u043a\u0430\u043c", -"Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0435\u043d\u0430", -"Replace with": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430", -"Find": "\u0417\u043d\u0430\u0439\u0441\u0446\u0456", -"Replace all": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c \u0443\u0441\u0435", -"Match case": "\u0423\u043b\u0456\u0447\u0432\u0430\u0446\u044c \u0440\u044d\u0433\u0456\u0441\u0442\u0440", -"Prev": "\u0423\u0432\u0435\u0440\u0445", -"Spellcheck": "\u041f\u0440\u0430\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u0430\u043f\u0456\u0441\u0443", -"Finish": "\u0421\u043a\u043e\u043d\u0447\u044b\u0446\u044c", -"Ignore all": "\u0406\u0433\u043d\u0430\u0440\u0430\u0432\u0430\u0446\u044c \u0443\u0441\u0435", -"Ignore": "\u0406\u0433\u043d\u0430\u0440\u0430\u0432\u0430\u0446\u044c", -"Add to Dictionary": "\u0414\u0430\u0434\u0430\u0446\u044c \u0443 \u0441\u043b\u043e\u045e\u043d\u0456\u043a", -"Insert row before": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", -"Rows": "\u0420\u0430\u0434\u043a\u0456", -"Height": "\u0412\u044b\u0448\u044b\u043d\u044f", -"Paste row after": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u043d\u0456\u0437\u0443", -"Alignment": "\u0412\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435", -"Border color": "\u041a\u043e\u043b\u0435\u0440 \u043c\u044f\u0436\u044b", -"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u043b\u0443\u043f\u043a\u043e\u045e", -"Row": "\u0420\u0430\u0434\u043e\u043a", -"Insert column before": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a \u0437\u043b\u0435\u0432\u0430", -"Split cell": "\u0420\u0430\u0437\u0431\u0456\u0446\u044c \u044f\u0447\u044d\u0439\u043a\u0443", -"Cell padding": "\u0423\u043d\u0443\u0442\u0440\u0430\u043d\u044b \u0432\u043e\u0434\u0441\u0442\u0443\u043f", -"Cell spacing": "\u0417\u043d\u0435\u0448\u043d\u0456 \u0432\u043e\u0434\u0441\u0442\u0443\u043f", -"Row type": "\u0422\u044b\u043f \u0440\u0430\u0434\u043a\u0430", -"Insert table": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0442\u0430\u0431\u043b\u0456\u0446\u0443", -"Body": "\u0426\u0435\u043b\u0430", -"Caption": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a", -"Footer": "\u041d\u0456\u0437", -"Delete row": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a", -"Paste row before": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", -"Scope": "\u0421\u0444\u0435\u0440\u0430", -"Delete table": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0442\u0430\u0431\u043b\u0456\u0446\u0443", -"H Align": "\u0413\u0430\u0440. \u0432\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435", -"Top": "\u0412\u0435\u0440\u0445", -"Header cell": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a", -"Column": "\u0421\u043b\u0443\u043f\u043e\u043a", -"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u0430\u0434\u043a\u043e\u045e", -"Cell": "\u042f\u0447\u044d\u0439\u043a\u0430", -"Middle": "\u0421\u044f\u0440\u044d\u0434\u0437\u0456\u043d\u0430", -"Cell type": "\u0422\u044b\u043f \u044f\u0447\u044d\u0439\u043a\u0456", -"Copy row": "\u041a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c \u0440\u0430\u0434\u043e\u043a", -"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0434\u043a\u0430", -"Table properties": "\u0423\u043b\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0442\u0430\u0431\u043b\u0456\u0446\u044b", -"Bottom": "\u041d\u0456\u0437", -"V Align": "\u0412\u0435\u0440. \u0432\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435", -"Header": "\u0428\u0430\u043f\u043a\u0430", -"Right": "\u041f\u0430 \u043f\u0440\u0430\u0432\u044b\u043c \u043a\u0440\u0430\u0456", -"Insert column after": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a \u0441\u043f\u0440\u0430\u0432\u0430", -"Cols": "\u0421\u043b\u0443\u043f\u043a\u0456", -"Insert row after": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u043d\u0456\u0437\u0443", -"Width": "\u0428\u044b\u0440\u044b\u043d\u044f", -"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u044d\u0439\u043a\u0456", -"Left": "\u041f\u0430 \u043b\u0435\u0432\u044b\u043c \u043a\u0440\u0430\u0456", -"Cut row": "\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c \u0440\u0430\u0434\u043e\u043a", -"Delete column": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a", -"Center": "\u041f\u0430 \u0446\u044d\u043d\u0442\u0440\u044b", -"Merge cells": "\u0410\u0431'\u044f\u0434\u043d\u0430\u0446\u044c \u044f\u0447\u044d\u0439\u043a\u0456", -"Insert template": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", -"Background color": "\u041a\u043e\u043b\u0435\u0440 \u0444\u043e\u043d\u0443", -"Custom...": "\u041a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u043a\u0456...", -"Custom color": "\u041a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u043a\u0456 \u043a\u043e\u043b\u0435\u0440", -"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u0435\u0440\u0443", -"Text color": "\u041a\u043e\u043b\u0435\u0440 \u0442\u044d\u043a\u0441\u0442\u0443", -"Show blocks": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u0431\u043b\u043e\u043a\u0456", -"Show invisible characters": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u043d\u044f\u0431\u0430\u0447\u043d\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b", -"Words: {0}": "\u041a\u043e\u043b\u044c\u043a\u0430\u0441\u0446\u044c \u0441\u043b\u043e\u045e: {0}", -"Insert": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u044d\u043a\u0441\u0442\u0430\u0432\u0430\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0446\u0456\u0441\u043d\u0456\u0446\u0435 ALT-F9, \u043a\u0430\u0431 \u0432\u044b\u043a\u043b\u0456\u043a\u0430\u0446\u044c \u043c\u0435\u043d\u044e, ALT-F10 - \u043f\u0430\u043d\u044d\u043b\u044c \u043f\u0440\u044b\u043b\u0430\u0434\u0430\u045e, ALT-0 - \u0434\u043b\u044f \u0432\u044b\u043a\u043b\u0456\u043a\u0443 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0456.", -"Tools": "\u041f\u0440\u044b\u043b\u0430\u0434\u044b", -"View": "\u0412\u044b\u0433\u043b\u044f\u0434", -"Table": "\u0422\u0430\u0431\u043b\u0456\u0446\u0430", -"Format": "\u0424\u0430\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/bg_BG.js b/Resources/public/vendor/tinymce/langs/bg_BG.js deleted file mode 100644 index 8cb8c3ec..00000000 --- a/Resources/public/vendor/tinymce/langs/bg_BG.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('bg_BG',{ -"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435", -"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5", -"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).", -"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4", -"Div": "\u0411\u043b\u043e\u043a", -"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2", -"Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435", -"Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435", -"Font Family": "\u0428\u0440\u0438\u0444\u0442", -"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442", -"Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e", -"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442", -"Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a", -"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1", -"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f", -"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435", -"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f", -"Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", -"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3", -"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435", -"Undo": "\u0412\u044a\u0440\u043d\u0438", -"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435", -"Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438", -"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1", -"Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e", -"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", -"Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6", -"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "\u0414\u043e\u0431\u0440\u0435", -"Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)", -"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e", -"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5", -"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6", -"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3", -"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430", -"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.", -"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d", -"Cancel": "\u041e\u0442\u043a\u0430\u0437", -"Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", -"Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434", -"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435", -"Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e", -"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)", -"Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", -"Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438", -"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", -"Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", -"Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438", -"Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430", -"Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438", -"Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438", -"Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", -"Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435", -"Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)", -"You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?", -"Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430", -"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a", -"Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML", -"Color": "\u0426\u0432\u044f\u0442", -"Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e", -"Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e", -"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438", -"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", -"Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435", -"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438", -"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435", -"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d", -"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430", -"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e", -"Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430", -"General": "\u041e\u0431\u0449\u043e", -"Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e", -"Source": "\u0410\u0434\u0440\u0435\u0441", -"Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)", -"Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435", -"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e", -"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430\u0442\u0430", -"Style": "\u0421\u0442\u0438\u043b", -"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440", -"Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441", -"Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430", -"Url": "\u0410\u0434\u0440\u0435\u0441 (URL)", -"Text to display": "\u0422\u0435\u043a\u0441\u0442", -"Anchors": "\u041a\u043e\u0442\u0432\u0438", -"Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)", -"New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)", -"None": "\u0411\u0435\u0437", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", -"Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", -"Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)", -"Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e", -"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440", -"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441", -"Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:", -"Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e", -"Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435", -"Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b", -"Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", -"Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442", -"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434", -"Print": "\u041f\u0435\u0447\u0430\u0442", -"Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435", -"Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.", -"Replace": "\u0417\u0430\u043c\u044f\u043d\u0430", -"Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449", -"Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438", -"Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430", -"Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441", -"Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430", -"Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f", -"Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)", -"Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", -"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430", -"Finish": "\u041a\u0440\u0430\u0439", -"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e", -"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435", -"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430", -"Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438", -"Rows": "\u0420\u0435\u0434\u043e\u0432\u0435", -"Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430", -"Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434", -"Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", -"Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430", -"Column group": "Column group", -"Row": "\u0420\u0435\u0434", -"Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438", -"Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430", -"Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e", -"Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435", -"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430", -"Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430", -"Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)", -"Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", -"Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)", -"Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430", -"Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438", -"Scope": "\u041e\u0431\u0445\u0432\u0430\u0442", -"Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", -"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", -"Top": "\u0413\u043e\u0440\u0435", -"Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)", -"Column": "\u041a\u043e\u043b\u043e\u043d\u0430", -"Row group": "Row group", -"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430", -"Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430", -"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430", -"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", -"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430", -"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", -"Bottom": "\u0414\u043e\u043b\u0443", -"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", -"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)", -"Right": "\u0414\u044f\u0441\u043d\u043e", -"Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434", -"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438", -"Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434", -"Width": "\u0428\u0438\u0440\u0438\u043d\u0430", -"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430", -"Left": "\u041b\u044f\u0432\u043e", -"Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", -"Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430", -"Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e", -"Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435", -"Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", -"Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442", -"Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...", -"Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440", -"No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442", -"Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435", -"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438", -"Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}", -"Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449.", -"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438", -"View": "\u0418\u0437\u0433\u043b\u0435\u0434", -"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/bn_BD.js b/Resources/public/vendor/tinymce/langs/bn_BD.js deleted file mode 100644 index 5751e0c3..00000000 --- a/Resources/public/vendor/tinymce/langs/bn_BD.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('bn_BD',{ -"Cut": "\u0995\u09b0\u09cd\u09a4\u09a8", -"Header 2": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09e8", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", -"Div": "\u09a1\u09bf\u09ad", -"Paste": "\u0986\u099f\u0995\u09c7 \u09a6\u09bf\u09a8", -"Close": "\u09ac\u09a8\u09cd\u09a7", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "Align right", -"New document": "\u09a8\u09a4\u09c1\u09a8 \u09a6\u09b8\u09cd\u09a4\u09be\u09ac\u09c7\u099c", -"Blockquote": "Blockquote", -"Numbered list": "Numbered list", -"Increase indent": "Increase indent", -"Formats": "Formats", -"Headers": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09b8\u09ae\u09c1\u09b9", -"Select all": "\u09b8\u09ac \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u099a\u09a8 \u0995\u09b0\u09c1\u09a8", -"Header 3": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09e9", -"Blocks": "Blocks", -"Undo": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09be\u09ac\u09b8\u09cd\u09a5\u09be\u09af\u09bc \u09ab\u09bf\u09b0\u09c1\u09a8", -"Strikethrough": "\u09b8\u09cd\u099f\u09cd\u09b0\u09be\u0987\u0995\u09a5\u09cd\u09b0\u09c1", -"Bullet list": "Bullet list", -"Header 1": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09e7", -"Superscript": "\u098a\u09b0\u09cd\u09a7\u09cd\u09ac\u09b2\u09bf\u09aa\u09bf", -"Clear formatting": "Clear formatting", -"Font Sizes": "Font Sizes", -"Subscript": "\u09a8\u09bf\u09ae\u09cd\u09a8\u09b2\u09bf\u09aa\u09bf", -"Header 6": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09ec", -"Redo": "\u09aa\u09c1\u09a8\u09b0\u09be\u09af\u09bc \u0995\u09b0\u09c1\u09a8", -"Paragraph": "Paragraph", -"Ok": "\u09a0\u09bf\u0995 \u0986\u099b\u09c7", -"Bold": "Bold", -"Code": "Code", -"Italic": "\u09a4\u09bf\u09b0\u09cd\u09af\u0995", -"Align center": "Align center", -"Header 5": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09eb", -"Decrease indent": "Decrease indent", -"Header 4": "\u09b9\u09c7\u09a1\u09be\u09b0 \u09ea", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "\u09a8\u09bf\u09ae\u09cd\u09a8\u09b0\u09c7\u0996\u09be", -"Cancel": "\u09ac\u09be\u09a4\u09bf\u09b2", -"Justify": "Justify", -"Inline": "Inline", -"Copy": "\u0985\u09a8\u09c1\u0995\u09b0\u09a3", -"Align left": "Align left", -"Visual aids": "Visual aids", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", -"Restore last draft": "Restore last draft", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "Right to left", -"Left to right": "Left to right", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document properties", -"Title": "Title", -"Keywords": "Keywords", -"Encoding": "Encoding", -"Description": "Description", -"Author": "Author", -"Fullscreen": "Fullscreen", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background color", -"Text color": "Text color", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/bs.js b/Resources/public/vendor/tinymce/langs/bs.js deleted file mode 100644 index 8370990c..00000000 --- a/Resources/public/vendor/tinymce/langs/bs.js +++ /dev/null @@ -1,196 +0,0 @@ -tinymce.addI18n('bs',{ -"Cut": "Izre\u017ei", -"Heading 5": "Naslov 5", -"Header 2": "Zaglavlje 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 browser ne podr\u017eava direktan pristup me\u0111umemoriji. Molimo vas da koristite pre\u010dice Ctrl+X\/C\/V na tastaturi.", -"Heading 4": "Naslov 4", -"Div": "Div", -"Heading 2": "Naslov 2", -"Paste": "Zalijepi", -"Close": "Zatvori", -"Font Family": "Familija fonta", -"Pre": "Pre", -"Align right": "Poravnaj desno", -"New document": "Novi dokument", -"Blockquote": "Blok citat", -"Numbered list": "Numerisana lista", -"Heading 1": "Naslov 1", -"Headings": "Naslovi", -"Increase indent": "Pove\u0107aj uvlaku", -"Formats": "Formati", -"Headers": "Zaglavlja", -"Select all": "Ozna\u010di sve", -"Header 3": "Zaglavlje 3", -"Blocks": "Blokovi", -"Undo": "Nazad", -"Strikethrough": "Precrtano", -"Bullet list": "Bullet lista", -"Header 1": "Zaglavlje 1", -"Superscript": "Eksponent", -"Clear formatting": "Poni\u0161ti formatiranje", -"Font Sizes": "Veli\u010dine fonta", -"Subscript": "Indeks", -"Header 6": "Zaglavlje 6", -"Redo": "Naprijed", -"Paragraph": "Paragraf", -"Ok": "U redu", -"Bold": "Podebljano", -"Code": "Kod", -"Italic": "Nakrivljen", -"Align center": "Centriraj", -"Header 5": "Zaglavlje 5", -"Heading 6": "Naslov 6", -"Heading 3": "Naslov 3", -"Decrease indent": "Smanji uvlaku", -"Header 4": "Zaglavlje 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lijepljenje je sada u modu obi\u010dnog teksta. Sadr\u017eaj \u0107e sada biti zalijepljen kao obi\u010dni tekst sve dok ovu opciju ne ugasite.", -"Underline": "Podvu\u010deno", -"Cancel": "Otka\u017ei", -"Justify": "Obostrano poravnanje", -"Inline": "U liniji", -"Copy": "Kopiraj", -"Align left": "Poravnaj lijevo", -"Visual aids": "Vizualna pomo\u0107", -"Lower Greek": "Mala gr\u010dka slova", -"Square": "Kvadrat", -"Default": "Po\u010detno", -"Lower Alpha": "Mala slova", -"Circle": "Krug", -"Disc": "Disk", -"Upper Alpha": "Velika slova", -"Upper Roman": "Velika rimska slova", -"Lower Roman": "Mala rimska slova", -"Name": "Ime", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "Niste sa\u010duvali izmjene. Jeste li sigurni da \u017eelite napustiti stranicu?", -"Restore last draft": "Vrati posljednju skicu", -"Special character": "Specijalni znak", -"Source code": "Izvorni kod", -"Right to left": "S desna na lijevo", -"Left to right": "S lijeva na desno", -"Emoticons": "Smajliji", -"Robots": "Roboti", -"Document properties": "Svojstva dokumenta", -"Title": "Naslov", -"Keywords": "Klju\u010dne rije\u010di", -"Encoding": "Kodiranje", -"Description": "Opis", -"Author": "Autor", -"Fullscreen": "Cijeli ekran", -"Horizontal line": "Vodoravna linija", -"Horizontal space": "Horizontalni razmak", -"Insert\/edit image": "Umetni\/uredi sliku", -"General": "Op\u0107enito", -"Advanced": "Napredno", -"Source": "Izvor", -"Border": "Okvir", -"Constrain proportions": "Ograni\u010di proporcije", -"Vertical space": "Vertikalni razmak", -"Image description": "Opis slike", -"Style": "Stil", -"Dimensions": "Dimenzije", -"Insert image": "Umetni sliku", -"Insert date\/time": "Umetni datum\/vrijeme", -"Remove link": "Ukloni link", -"Url": "URL", -"Text to display": "Tekst za prikaz", -"Anchors": "Anchori", -"Insert link": "Umetni link", -"New window": "Novi prozor", -"None": "Ni\u0161ta", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Izgleda je URL koji ste upisali vanjski link. \u017delite li da dodate obavezni http:\/\/ prefiks?", -"Target": "Odredi\u0161te", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Izgleda da je URL koji ste upisali ustvari email adresa. \u017delite li da dodate obavezni mailto: prefiks?", -"Insert\/edit link": "Umetni\/uredi link", -"Insert\/edit video": "Umetni\/uredi video", -"Poster": "Objavio", -"Alternative source": "Alternativni izvor", -"Paste your embed code below:": "Zalijepite va\u0161 ugradbeni kod ispod:", -"Insert video": "Umetni video", -"Embed": "Ugradi", -"Nonbreaking space": "Neprijelomni razmak", -"Page break": "Prijelom stranice", -"Paste as text": "Zalijepi kao tekst", -"Preview": "Pregled", -"Print": "\u0160tampaj", -"Save": "Sa\u010duvaj", -"Could not find the specified string.": "Tra\u017eeni string nije prona\u0111en.", -"Replace": "Zamijeni", -"Next": "Sljede\u0107e", -"Whole words": "Cijele rije\u010di", -"Find and replace": "Prona\u0111i i zamijeni", -"Replace with": "Zamijena sa", -"Find": "Prona\u0111i", -"Replace all": "Zamijeni sve", -"Match case": "Razlikuj mala i velika slova", -"Prev": "Prethodno", -"Spellcheck": "Provjera pravopisa", -"Finish": "Zavr\u0161i", -"Ignore all": "Zanemari sve", -"Ignore": "Zanemari", -"Add to Dictionary": "Dodaj u rje\u010dnik", -"Insert row before": "Umetni red iznad", -"Rows": "Redovi", -"Height": "Visina", -"Paste row after": "Zalijepi red iznad", -"Alignment": "Poravnanje", -"Border color": "Boja okvira", -"Column group": "Grupa kolone", -"Row": "Red", -"Insert column before": "Umetni kolonu iznad", -"Split cell": "Podijeli \u0107eliju", -"Cell padding": "Ispunjenje \u0107elije", -"Cell spacing": "Razmak \u0107elija", -"Row type": "Vrsta reda", -"Insert table": "Umetni tabelu", -"Body": "Tijelo", -"Caption": "Natpis", -"Footer": "Podno\u017eje", -"Delete row": "Obri\u0161i red", -"Paste row before": "Zalijepi red ispod", -"Scope": "Opseg", -"Delete table": "Obri\u0161i tabelu", -"H Align": "H poravnanje", -"Top": "Vrh", -"Header cell": "\u0106elija zaglavlja", -"Column": "Kolona", -"Row group": "Grupa reda", -"Cell": "\u0106elija", -"Middle": "Sredina", -"Cell type": "Vrsta \u0107elije", -"Copy row": "Kopiraj red", -"Row properties": "Svojstva reda", -"Table properties": "Svojstva tabele", -"Bottom": "Dno", -"V Align": "V poravnanje", -"Header": "Zaglavlje", -"Right": "Desno", -"Insert column after": "Umetni kolonu ispod", -"Cols": "Kolone", -"Insert row after": "Umetni red ispod", -"Width": "\u0160irina", -"Cell properties": "Svojstva \u0107elije", -"Left": "Lijevo", -"Cut row": "Izre\u017ei red", -"Delete column": "Obri\u0161i kolonu", -"Center": "Centrirano", -"Merge cells": "Spoji \u0107elije", -"Insert template": "Umetni predlo\u017eak", -"Templates": "Predlo\u0161ci", -"Background color": "Boja pozadine", -"Custom...": "Prilago\u0111eno...", -"Custom color": "Korisni\u010dka boja", -"No color": "Bez boje", -"Text color": "Boja tekst", -"Show blocks": "Prika\u017ei blokove", -"Show invisible characters": "Prika\u017ei nevidljive znakove", -"Words: {0}": "Rije\u010di: {0}", -"Insert": "Umetni", -"File": "Datoteka", -"Edit": "Uredi", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Oblast za ure\u0111ivanje teksta. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za prikaz alatne trake. Pritisnite ALT-0 za pomo\u0107.", -"Tools": "Alati", -"View": "Pregled", -"Table": "Tabela", -"Format": "Formatiranje" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ca.js b/Resources/public/vendor/tinymce/langs/ca.js deleted file mode 100644 index 7d7f7f7f..00000000 --- a/Resources/public/vendor/tinymce/langs/ca.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ca',{ -"Cut": "Retalla", -"Heading 5": "Encap\u00e7alament 5", -"Header 2": "Cap\u00e7alera 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "El vostre navegador no suporta l'acc\u00e9s directe al portaobjectes. Si us plau, feu servir les dreceres de teclat Ctrl+X\/C\/V.", -"Heading 4": "Encap\u00e7alament 4", -"Div": "Div", -"Heading 2": "Encap\u00e7alament 2", -"Paste": "Enganxa", -"Close": "Tanca", -"Font Family": "Fam\u00edlia de la font", -"Pre": "Pre", -"Align right": "Aliniat a la dreta", -"New document": "Nou document", -"Blockquote": "Cita", -"Numbered list": "Llista enumerada", -"Heading 1": "Encap\u00e7alament 1", -"Headings": "Encap\u00e7alaments", -"Increase indent": "Augmentar sagnat", -"Formats": "Formats", -"Headers": "Cap\u00e7aleres", -"Select all": "Seleccionar-ho tot", -"Header 3": "Cap\u00e7alera 3", -"Blocks": "Blocs", -"Undo": "Desfer", -"Strikethrough": "Ratllat", -"Bullet list": "Llista no ordenada", -"Header 1": "Cap\u00e7alera 1", -"Superscript": "Super\u00edndex", -"Clear formatting": "Eliminar format", -"Font Sizes": "Mides de la font", -"Subscript": "Sub\u00edndex", -"Header 6": "Cap\u00e7alera 6", -"Redo": "Refer", -"Paragraph": "Par\u00e0graf", -"Ok": "Acceptar", -"Bold": "Negreta", -"Code": "Codi", -"Italic": "Cursiva", -"Align center": "Centrat", -"Header 5": "Cap\u00e7alera 5", -"Heading 6": "Encap\u00e7alament 6", -"Heading 3": "Encap\u00e7alament 3", -"Decrease indent": "Disminuir sagnat", -"Header 4": "Cap\u00e7alera 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Enganxar ara est\u00e0 en mode text pla. Els continguts s'enganxaran com a text pla fins que desactivis aquesta opci\u00f3. ", -"Underline": "Subratllat", -"Cancel": "Cancel\u00b7la", -"Justify": "Justificat", -"Inline": "En l\u00ednia", -"Copy": "Copia", -"Align left": "Aliniat a l'esquerra", -"Visual aids": "Assist\u00e8ncia visual", -"Lower Greek": "Grec menor", -"Square": "Quadrat", -"Default": "Per defecte", -"Lower Alpha": "Alfa menor", -"Circle": "Cercle", -"Disc": "Disc", -"Upper Alpha": "Alfa major", -"Upper Roman": "Roman major", -"Lower Roman": "Roman menor", -"Name": "Nom", -"Anchor": "\u00c0ncora", -"You have unsaved changes are you sure you want to navigate away?": "Teniu canvis sense desar, esteu segur que voleu deixar-ho ara?", -"Restore last draft": "Restaurar l'\u00faltim esborrany", -"Special character": "Car\u00e0cter especial", -"Source code": "Codi font", -"Color": "Color", -"Right to left": "De dreta a esquerra", -"Left to right": "D'esquerra a dreta", -"Emoticons": "Emoticones", -"Robots": "Robots", -"Document properties": "Propietats del document", -"Title": "T\u00edtol", -"Keywords": "Paraules clau", -"Encoding": "Codificaci\u00f3", -"Description": "Descripci\u00f3", -"Author": "Autor", -"Fullscreen": "Pantalla completa", -"Horizontal line": "L\u00ednia horitzontal", -"Horizontal space": "Espai horitzontal", -"Insert\/edit image": "Inserir\/editar imatge", -"General": "General", -"Advanced": "Avan\u00e7at", -"Source": "Font", -"Border": "Vora", -"Constrain proportions": "Mantenir proporcions", -"Vertical space": "Espai vertical", -"Image description": "Descripci\u00f3 de la imatge", -"Style": "Estil", -"Dimensions": "Dimensions", -"Insert image": "Inserir imatge", -"Insert date\/time": "Inserir data\/hora", -"Remove link": "Treure enlla\u00e7", -"Url": "URL", -"Text to display": "Text per mostrar", -"Anchors": "\u00c0ncores", -"Insert link": "Inserir enlla\u00e7", -"New window": "Finestra nova", -"None": "Cap", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que has escrit sembla un enlla\u00e7 extern. Vols afegir-li el prefix obligatori http:\/\/ ?", -"Target": "Dest\u00ed", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que has escrit sembla una adre\u00e7a de correu electr\u00f2nic. Vols afegir-li el prefix obligatori mailto: ?", -"Insert\/edit link": "Inserir\/editar enlla\u00e7", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Poster": "P\u00f3ster", -"Alternative source": "Font alternativa", -"Paste your embed code below:": "Enganxau el codi a sota:", -"Insert video": "Inserir v\u00eddeo", -"Embed": "Incloure", -"Nonbreaking space": "Espai fixe", -"Page break": "Salt de p\u00e0gina", -"Paste as text": "Enganxar com a text", -"Preview": "Previsualitzaci\u00f3", -"Print": "Imprimir", -"Save": "Desa", -"Could not find the specified string.": "No es pot trobar el text especificat.", -"Replace": "Rempla\u00e7ar", -"Next": "Seg\u00fcent", -"Whole words": "Paraules senceres", -"Find and replace": "Buscar i rempla\u00e7ar", -"Replace with": "Rempla\u00e7ar amb", -"Find": "Buscar", -"Replace all": "Rempla\u00e7ar-ho tot", -"Match case": "Coincidir maj\u00fascules", -"Prev": "Anterior", -"Spellcheck": "Comprovar ortrografia", -"Finish": "Finalitzar", -"Ignore all": "Ignorar tots", -"Ignore": "Ignorar", -"Add to Dictionary": "Afegir al diccionari", -"Insert row before": "Inserir fila a sobre", -"Rows": "Files", -"Height": "Al\u00e7ada", -"Paste row after": "Enganxar fila a sota", -"Alignment": "Aliniament", -"Border color": "Color de vora", -"Column group": "Grup de columna", -"Row": "Fila", -"Insert column before": "Inserir columna abans", -"Split cell": "Dividir cel\u00b7les", -"Cell padding": "Marge intern", -"Cell spacing": "Espai entre cel\u00b7les", -"Row type": "Tipus de fila", -"Insert table": "Inserir taula", -"Body": "Cos", -"Caption": "Encap\u00e7alament", -"Footer": "Peu", -"Delete row": "Esborrar fila", -"Paste row before": "Enganxar fila a sobre", -"Scope": "\u00c0mbit", -"Delete table": "Esborrar taula", -"H Align": "Al\u00edniament H", -"Top": "Superior", -"Header cell": "Cel\u00b7la de cap\u00e7alera", -"Column": "Columna", -"Row group": "Grup de fila", -"Cell": "Cel\u00b7la", -"Middle": "Mitj\u00e0", -"Cell type": "Tipus de cel\u00b7la", -"Copy row": "Copiar fila", -"Row properties": "Propietats de fila", -"Table properties": "Propietats de taula", -"Bottom": "Inferior", -"V Align": "Al\u00edniament V", -"Header": "Cap\u00e7alera", -"Right": "A la dreta", -"Insert column after": "Inserir columna despr\u00e9s", -"Cols": "Cols", -"Insert row after": "Inserir fila a sota", -"Width": "Amplada", -"Cell properties": "Propietats de cel\u00b7la", -"Left": "A l'esquerra", -"Cut row": "Retallar fila", -"Delete column": "Esborrar columna", -"Center": "Centrat", -"Merge cells": "Fusionar cel\u00b7les", -"Insert template": "Inserir plantilla", -"Templates": "Plantilles", -"Background color": "Color del fons", -"Custom...": "Personalitzar...", -"Custom color": "Personalitzar el color", -"No color": "Sense color", -"Text color": "Color del text", -"Show blocks": "Mostrar blocs", -"Show invisible characters": "Mostrar car\u00e0cters invisibles", -"Words: {0}": "Paraules: {0}", -"Insert": "Inserir", -"File": "Arxiu", -"Edit": "Edici\u00f3", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c0rea de text amb format. Premeu ALT-F9 per mostrar el men\u00fa, ALT F10 per la barra d'eines i ALT-0 per ajuda.", -"Tools": "Eines", -"View": "Veure", -"Table": "Taula", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/cs.js b/Resources/public/vendor/tinymce/langs/cs.js deleted file mode 100644 index e5a71a69..00000000 --- a/Resources/public/vendor/tinymce/langs/cs.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('cs',{ -"Cut": "Vyjmout", -"Heading 5": "Nadpis 5", -"Header 2": "Nadpis 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.", -"Heading 4": "Nadpis 4", -"Div": "Div (blok)", -"Heading 2": "Nadpis 2", -"Paste": "Vlo\u017eit", -"Close": "Zav\u0159\u00edt", -"Font Family": "Typ p\u00edsma", -"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)", -"Align right": "Zarovnat vpravo", -"New document": "Nov\u00fd dokument", -"Blockquote": "Citace", -"Numbered list": "\u010c\u00edslov\u00e1n\u00ed", -"Heading 1": "Nadpis 1", -"Headings": "Nadpisy", -"Increase indent": "Zv\u011bt\u0161it odsazen\u00ed", -"Formats": "Form\u00e1ty", -"Headers": "Nadpisy", -"Select all": "Vybrat v\u0161e", -"Header 3": "Nadpis 3", -"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)", -"Undo": "Zp\u011bt", -"Strikethrough": "P\u0159e\u0161rktnut\u00e9", -"Bullet list": "Odr\u00e1\u017eky", -"Header 1": "Nadpis 1", -"Superscript": "Horn\u00ed index", -"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed", -"Font Sizes": "Velikost p\u00edsma", -"Subscript": "Doln\u00ed index", -"Header 6": "Nadpis 6", -"Redo": "Znovu", -"Paragraph": "Odstavec", -"Ok": "OK", -"Bold": "Tu\u010dn\u00e9", -"Code": "Code (k\u00f3d)", -"Italic": "Kurz\u00edva", -"Align center": "Zarovnat na st\u0159ed", -"Header 5": "Nadpis 5", -"Heading 6": "Nadpis 6", -"Heading 3": "Nadpis 3", -"Decrease indent": "Zmen\u0161it odsazen\u00ed", -"Header 4": "Nadpis 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.", -"Underline": "Podtr\u017een\u00e9", -"Cancel": "Zru\u0161it", -"Justify": "Zarovnat do bloku", -"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)", -"Copy": "Kop\u00edrovat", -"Align left": "Zarovnat vlevo", -"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky", -"Lower Greek": "Mal\u00e9 p\u00edsmenkov\u00e1n\u00ed", -"Square": "\u010ctvere\u010dek", -"Default": "V\u00fdchoz\u00ed", -"Lower Alpha": "Norm\u00e1ln\u00ed \u010d\u00edslov\u00e1n\u00ed", -"Circle": "Kole\u010dko", -"Disc": "Punt\u00edk", -"Upper Alpha": "velk\u00e9 p\u00edsmenkov\u00e1n\u00ed", -"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice", -"Lower Roman": "Mal\u00e9 \u0159\u00edmsk\u00e9 \u010d\u00edslice", -"Name": "N\u00e1zev", -"Anchor": "Kotva", -"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?", -"Restore last draft": "Obnovit posledn\u00ed koncept", -"Special character": "Speci\u00e1ln\u00ed znak", -"Source code": "Zdrojov\u00fd k\u00f3d", -"Color": "Barva", -"Right to left": "Zprava doleva", -"Left to right": "Zleva doprava", -"Emoticons": "Emotikony", -"Robots": "Roboti", -"Document properties": "Vlastnosti dokumentu", -"Title": "Titulek", -"Keywords": "Kl\u00ed\u010dov\u00e1 slova", -"Encoding": "K\u00f3dov\u00e1n\u00ed", -"Description": "Popis", -"Author": "Autor", -"Fullscreen": "Na celou obrazovku", -"Horizontal line": "Vodorovn\u00e1 \u010d\u00e1ra", -"Horizontal space": "Horizont\u00e1ln\u00ed mezera", -"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek", -"General": "Obecn\u00e9", -"Advanced": "Pokro\u010dil\u00e9", -"Source": "Url", -"Border": "R\u00e1me\u010dek", -"Constrain proportions": "Zachovat proporce", -"Vertical space": "Vertik\u00e1ln\u00ed mezera", -"Image description": "Popis obr\u00e1zku", -"Style": "Styl", -"Dimensions": "Rozm\u011bry", -"Insert image": "Vlo\u017eit obr\u00e1zek", -"Insert date\/time": "Vlo\u017eit datum \/ \u010das", -"Remove link": "Odstranit odkaz", -"Url": "Odkaz", -"Text to display": "Text k zobrazen\u00ed", -"Anchors": "Kotvy", -"Insert link": "Vlo\u017eit odkaz", -"New window": "Nov\u00e9 okno", -"None": "\u017d\u00e1dn\u00e9", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?", -"Target": "C\u00edl", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?", -"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz", -"Insert\/edit video": "Vlo\u017eit \/ upravit video", -"Poster": "N\u00e1hled", -"Alternative source": "Alternativn\u00ed zdroj", -"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed n\u00ed\u017ee:", -"Insert video": "Vlo\u017eit video", -"Embed": "Vlo\u017eit", -"Nonbreaking space": "Pevn\u00e1 mezera", -"Page break": "Konec str\u00e1nky", -"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text", -"Preview": "N\u00e1hled", -"Print": "Tisk", -"Save": "Ulo\u017eit", -"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.", -"Replace": "Nahradit", -"Next": "Dal\u0161\u00ed", -"Whole words": "Pouze cel\u00e1 slova", -"Find and replace": "Naj\u00edt a nahradit", -"Replace with": "Nahradit za", -"Find": "Naj\u00edt", -"Replace all": "Nahradit v\u0161e", -"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena", -"Prev": "P\u0159edchoz\u00ed", -"Spellcheck": "Kontrola pravopisu", -"Finish": "Ukon\u010dit", -"Ignore all": "Ignorovat v\u0161e", -"Ignore": "Ignorovat", -"Add to Dictionary": "P\u0159idat do slovn\u00edku", -"Insert row before": "Vlo\u017eit \u0159\u00e1dek nad", -"Rows": "\u0158\u00e1dek", -"Height": "V\u00fd\u0161ka", -"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod", -"Alignment": "Zarovn\u00e1n\u00ed", -"Border color": "Barva r\u00e1me\u010dku", -"Column group": "Skupina sloupc\u016f", -"Row": "\u0158\u00e1dek", -"Insert column before": "Vlo\u017eit sloupec vlevo", -"Split cell": "Rozd\u011blit bu\u0148ky", -"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk", -"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk", -"Row type": "Typ \u0159\u00e1dku", -"Insert table": "Vlo\u017eit tabulku", -"Body": "T\u011blo", -"Caption": "Nadpis", -"Footer": "Pati\u010dka", -"Delete row": "Smazat \u0159\u00e1dek", -"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad", -"Scope": "Rozsah", -"Delete table": "Smazat tabulku", -"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed", -"Top": "Nahoru", -"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka", -"Column": "Sloupec", -"Row group": "Skupina \u0159\u00e1dk\u016f", -"Cell": "Bu\u0148ka", -"Middle": "Uprost\u0159ed", -"Cell type": "Typ bu\u0148ky", -"Copy row": "Kop\u00edrovat \u0159\u00e1dek", -"Row properties": "Vlastnosti \u0159\u00e1dku", -"Table properties": "Vlastnosti tabulky", -"Bottom": "Dol\u016f", -"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed", -"Header": "Hlavi\u010dka", -"Right": "Vpravo", -"Insert column after": "Vlo\u017eit sloupec vpravo", -"Cols": "Sloupc\u016f", -"Insert row after": "Vlo\u017eit \u0159\u00e1dek pod", -"Width": "\u0160\u00ed\u0159ka", -"Cell properties": "Vlastnosti bu\u0148ky", -"Left": "Vlevo", -"Cut row": "Vyjmout \u0159\u00e1dek", -"Delete column": "Smazat sloupec", -"Center": "Na st\u0159ed", -"Merge cells": "Slou\u010dit bu\u0148ky", -"Insert template": "Vlo\u017eit \u0161ablonu", -"Templates": "\u0160ablony", -"Background color": "Barva pozad\u00ed", -"Custom...": "Vlastn\u00ed...", -"Custom color": "Vlastn\u00ed barva", -"No color": "Bez barvy", -"Text color": "Barva p\u00edsma", -"Show blocks": "Uk\u00e1zat bloky", -"Show invisible characters": "Zobrazit speci\u00e1ln\u00ed znaky", -"Words: {0}": "Po\u010det slov: {0}", -"Insert": "Vlo\u017eit", -"File": "Soubor", -"Edit": "\u00dapravy", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Editor. Stiskn\u011bte ALT-F9 pro menu, ALT-F10 pro n\u00e1strojovou li\u0161tu a ALT-0 pro n\u00e1pov\u011bdu.", -"Tools": "N\u00e1stroje", -"View": "Zobrazit", -"Table": "Tabulka", -"Format": "Form\u00e1t" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/cy.js b/Resources/public/vendor/tinymce/langs/cy.js deleted file mode 100644 index 0d1a9a53..00000000 --- a/Resources/public/vendor/tinymce/langs/cy.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('cy',{ -"Cut": "Torri", -"Header 2": "Pennawd 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Dyw eich porwr ddim yn cynnal mynediad uniongyrchol i'r clipfwrdd. Defnyddiwch yr allweddau llwybr brys Ctrl+X\/C\/V yn lle 'ny.", -"Div": "Div", -"Paste": "Gludo", -"Close": "Cau", -"Font Family": "Teulu Ffont", -"Pre": "Pre", -"Align right": "Aliniad dde", -"New document": "Dogfen newydd", -"Blockquote": "Dyfyniad bloc", -"Numbered list": "Rhestr rifol", -"Increase indent": "Cynyddu mewnoliad", -"Formats": "Fformatiau", -"Headers": "Penawdau", -"Select all": "Dewis popeth", -"Header 3": "Pennawd 3", -"Blocks": "Blociau", -"Undo": "Dadwneud", -"Strikethrough": "Llinell drwodd", -"Bullet list": "Rhestr fwled", -"Header 1": "Pennawd 1", -"Superscript": "Uwchsgript", -"Clear formatting": "Clirio fformatio", -"Font Sizes": "Meintiau Ffont", -"Subscript": "Is-sgript", -"Header 6": "Pennawd 6", -"Redo": "AIlwneud", -"Paragraph": "Paragraff", -"Ok": "Iawn", -"Bold": "Bras", -"Code": "Cod", -"Italic": "Italig", -"Align center": "Aliniad canol", -"Header 5": "Pennawd 5", -"Decrease indent": "Lleinhau mewnoliad", -"Header 4": "Pennawd 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Mae gludo o fewn modd testun plaen. Caiff y cynnwys ei ludo ar ffurf destun plaen tan gaiff yr opsiwn ei doglo bant.", -"Underline": "Tanlinellu", -"Cancel": "Canslo", -"Justify": "Unioni", -"Inline": "Mewn llinell", -"Copy": "Cop\u00efo", -"Align left": "Aliniad chwith", -"Visual aids": "Cymorth gweledol", -"Lower Greek": "Groeg Is", -"Square": "Sgw\u00e2r", -"Default": "Diofyn", -"Lower Alpha": "Alffa Is", -"Circle": "Cylch", -"Disc": "Disg", -"Upper Alpha": "Alffa Uwch", -"Upper Roman": "Rhufeinig Uwch", -"Lower Roman": "Rhufeinig Is", -"Name": "Enw", -"Anchor": "Angor", -"You have unsaved changes are you sure you want to navigate away?": "Mae newidiadau heb eu cadw - ydych chi wir am symud i ffwrdd?", -"Restore last draft": "Adfer y drafft olaf", -"Special character": "Nod arbennig", -"Source code": "Cod gwreiddiol", -"Right to left": "Dde i'r chwith", -"Left to right": "Chwith i'r dde", -"Emoticons": "Gwenogluniau", -"Robots": "Robotiaid", -"Document properties": "Priodweddau'r ddogfen", -"Title": "Teitl", -"Keywords": "Allweddeiriau", -"Encoding": "Amgodiad", -"Description": "Disgrifiad", -"Author": "Awdur", -"Fullscreen": "Sgrin llawn", -"Horizontal line": "Llinell lorweddol", -"Horizontal space": "Gofod llorweddol", -"Insert\/edit image": "Mewnosod\/golygu delwedd", -"General": "Cyffredinol", -"Advanced": "Uwch", -"Source": "Ffynhonnell", -"Border": "Ymyl", -"Constrain proportions": "Gorfodi cyfrannedd", -"Vertical space": "Gofod fertigol", -"Image description": "Disgrifiad y ddelwedd", -"Style": "Arddull", -"Dimensions": "Dimensiynau", -"Insert image": "Mewnosod delwedd", -"Insert date\/time": "Mewnosod dyddiad\/amser", -"Remove link": "Tynnu dolen", -"Url": "Url", -"Text to display": "Testun i'w ddangos", -"Anchors": "Angorau", -"Insert link": "Mewnosod dolen", -"New window": "Ffenest newydd", -"None": "Dim", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Mae'n debyg taw dolen allanol yw'r URL hwn. Ydych chi am ychwanegu'r rhagosodiad http:\/\/ ?", -"Target": "Targed", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Mae'n debyg taw cyfeiriad ebost yw'r URL hwn. Ydych chi am ychwanegu'r rhagosodiad mailto:?", -"Insert\/edit link": "Mewnosod\/golygu dolen", -"Insert\/edit video": "Mewnosod\/golygu fideo", -"Poster": "Poster", -"Alternative source": "Ffynhonnell amgen", -"Paste your embed code below:": "Gludwch eich cod mewnosod isod:", -"Insert video": "Mewnosod fideo", -"Embed": "Mewnosod", -"Nonbreaking space": "Bwlch heb dorri", -"Page break": "Toriad tudalen", -"Paste as text": "Gludo fel testun", -"Preview": "Rhagolwg", -"Print": "Argraffu", -"Save": "Cadw", -"Could not find the specified string.": "Methu ffeindio'r llinyn hwnnw.", -"Replace": "Amnewid", -"Next": "Nesaf", -"Whole words": "Geiriau cyfan", -"Find and replace": "Chwilio ac amnewid", -"Replace with": "Amnewid gyda", -"Find": "Chwilio", -"Replace all": "Amnewid pob", -"Match case": "Cydweddu'r un c\u00eas", -"Prev": "Cynt", -"Spellcheck": "Sillafydd", -"Finish": "Gorffen", -"Ignore all": "Amwybyddu pob", -"Ignore": "Anwybyddu", -"Insert row before": "Mewnosod rhes cyn", -"Rows": "Rhesi", -"Height": "Uchder", -"Paste row after": "Gludo rhes ar \u00f4l", -"Alignment": "Aliniad", -"Column group": "Gr\u0175p colofn", -"Row": "Rhes", -"Insert column before": "Mewnosod colofn cyn", -"Split cell": "Hollti celloedd", -"Cell padding": "Padio cell", -"Cell spacing": "Bylchiau cell", -"Row type": "Math y rhes", -"Insert table": "Mewnosod tabl", -"Body": "Corff", -"Caption": "Pennawd", -"Footer": "Troedyn", -"Delete row": "Dileu rhes", -"Paste row before": "Gludo rhes cyn", -"Scope": "Sgop", -"Delete table": "Dileu'r tabl", -"Header cell": "Cell bennawd", -"Column": "Colofn", -"Cell": "Cell", -"Header": "Pennyn", -"Cell type": "Math y gell", -"Copy row": "Cop\u00efo rhes", -"Row properties": "Priodweddau rhes", -"Table properties": "Priodweddau tabl", -"Row group": "Gr\u0175p rhes", -"Right": "Dde", -"Insert column after": "Mewnosod colofn ar \u00f4l", -"Cols": "Col'u", -"Insert row after": "Mewnosod rhes ar \u00f4l", -"Width": "Lled", -"Cell properties": "Priodweddau'r gell", -"Left": "Chwith", -"Cut row": "Torri rhes", -"Delete column": "Dileu colofn", -"Center": "Canol", -"Merge cells": "Cyfuno celloedd", -"Insert template": "Mewnosod templed", -"Templates": "Templedi", -"Background color": "Lliw cefndir", -"Text color": "Lliw testun", -"Show blocks": "Dangos blociau", -"Show invisible characters": "Dangos nodau anweledig", -"Words: {0}": "Geiriau: {0}", -"Insert": "Mewnosod", -"File": "Ffeil", -"Edit": "Golygu", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ardal Testun Uwch. Pwyswch ALT-F9 ar gyfer y ddewislen, Pwyswch ALT-F10 ar gyfer y bar offer. Pwyswch ALT-0 am gymorth", -"Tools": "Offer", -"View": "Dangos", -"Table": "Tabl", -"Format": "Fformat" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/da.js b/Resources/public/vendor/tinymce/langs/da.js deleted file mode 100644 index 7fe99e23..00000000 --- a/Resources/public/vendor/tinymce/langs/da.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('da',{ -"Cut": "Klip", -"Heading 5": "Overskrift 5", -"Header 2": "Overskrift 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser underst\u00f8tter ikke direkte adgang til clipboard. Benyt Ctrl+X\/C\/ keybord shortcuts i stedet for.", -"Heading 4": "Overskrift 4", -"Div": "Div", -"Heading 2": "Overskrift 2", -"Paste": "Inds\u00e6t", -"Close": "Luk", -"Font Family": "Skrifttype", -"Pre": "Pre", -"Align right": "H\u00f8jrejusteret", -"New document": "Nyt dokument", -"Blockquote": "Indrykning", -"Numbered list": "Nummerering", -"Heading 1": "Overskrift 1", -"Headings": "Overskrifter", -"Increase indent": "For\u00f8g indrykning", -"Formats": "Formater", -"Headers": "Overskrifter", -"Select all": "V\u00e6lg alle", -"Header 3": "Overskrift 3", -"Blocks": "Blokke", -"Undo": "Fortryd", -"Strikethrough": "Gennemstreg", -"Bullet list": "Punkt tegn", -"Header 1": "Overskrift 1", -"Superscript": "H\u00e6vet", -"Clear formatting": "Nulstil formattering", -"Font Sizes": "Skriftst\u00f8rrelse", -"Subscript": "S\u00e6nket", -"Header 6": "Overskrift 6", -"Redo": "Genopret", -"Paragraph": "S\u00e6tning", -"Ok": "Ok", -"Bold": "Fed", -"Code": "Code", -"Italic": "Kursiv", -"Align center": "Centreret", -"Header 5": "Overskrift 5", -"Heading 6": "Overskrift 6", -"Heading 3": "Overskrift 3", -"Decrease indent": "Formindsk indrykning", -"Header 4": "Overskrift 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "S\u00e6t ind er indstillet til at inds\u00e6tte som ren tekst. Indhold bliver nu indsat uden formatering indtil du \u00e6ndrer indstillingen.", -"Underline": "Understreg", -"Cancel": "Fortryd", -"Justify": "Justering", -"Inline": "Inline", -"Copy": "Kopier", -"Align left": "Venstrejusteret", -"Visual aids": "Visuel hj\u00e6lp", -"Lower Greek": "Lower Gr\u00e6sk", -"Square": "Kvadrat", -"Default": "Standard", -"Lower Alpha": "Lower Alpha", -"Circle": "Cirkel", -"Disc": "Disk", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Navn", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "Du har ikke gemte \u00e6ndringer. Er du sikker p\u00e5 at du vil forts\u00e6tte?", -"Restore last draft": "Genopret sidste kladde", -"Special character": "Specielle tegn", -"Source code": "Kildekode", -"Color": "Farve", -"Right to left": "H\u00f8jre til venstre", -"Left to right": "Venstre til h\u00f8jre", -"Emoticons": "Emot-ikoner", -"Robots": "Robotter", -"Document properties": "Dokument egenskaber", -"Title": "Titel", -"Keywords": "S\u00f8geord", -"Encoding": "Kodning", -"Description": "Beskrivelse", -"Author": "Forfatter", -"Fullscreen": "Fuldsk\u00e6rm", -"Horizontal line": "Vandret linie", -"Horizontal space": "Vandret afstand", -"Insert\/edit image": "Inds\u00e6t\/ret billede", -"General": "Generet", -"Advanced": "Avanceret", -"Source": "Kilde", -"Border": "Kant", -"Constrain proportions": "Behold propertioner", -"Vertical space": "Lodret afstand", -"Image description": "Billede beskrivelse", -"Style": "Stil", -"Dimensions": "Dimensioner", -"Insert image": "Inds\u00e6t billede", -"Insert date\/time": "Inds\u00e6t dato\/klokkeslet", -"Remove link": "Fjern link", -"Url": "Url", -"Text to display": "Vis tekst", -"Anchors": "Ankre", -"Insert link": "Inds\u00e6t link", -"New window": "Nyt vindue", -"None": "Ingen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URLen som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks http:\/\/ ?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URLen som du angav ser ud til at v\u00e6re en email adresse. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks mailto:", -"Insert\/edit link": "Inds\u00e6t\/ret link", -"Insert\/edit video": "Inds\u00e6t\/ret video", -"Poster": "Poster", -"Alternative source": "Alternativ kilde", -"Paste your embed code below:": "Inds\u00e6t din embed kode herunder:", -"Insert video": "Inds\u00e6t video", -"Embed": "Integrer", -"Nonbreaking space": "H\u00e5rdt mellemrum", -"Page break": "Sideskift", -"Paste as text": "Inds\u00e6t som ren tekst", -"Preview": "Forh\u00e5ndsvisning", -"Print": "Udskriv", -"Save": "Gem", -"Could not find the specified string.": "Kunne ikke finde s\u00f8getekst", -"Replace": "Erstat", -"Next": "N\u00e6ste", -"Whole words": "Hele ord", -"Find and replace": "Find og erstat", -"Replace with": "Erstat med", -"Find": "Find", -"Replace all": "Erstat alt", -"Match case": "STORE og sm\u00e5 bogstaver", -"Prev": "Forrige", -"Spellcheck": "Stavekontrol", -"Finish": "F\u00e6rdig", -"Ignore all": "Ignorer alt", -"Ignore": "Ignorer", -"Add to Dictionary": "Tilf\u00f8j til ordbog", -"Insert row before": "Inds\u00e6t r\u00e6kke f\u00f8r", -"Rows": "R\u00e6kker", -"Height": "H\u00f8jde", -"Paste row after": "Inds\u00e6t r\u00e6kke efter", -"Alignment": "Tilpasning", -"Border color": "Kant farve", -"Column group": "Kolonne gruppe", -"Row": "R\u00e6kke", -"Insert column before": "Inds\u00e6t kolonne f\u00f8r", -"Split cell": "Split celle", -"Cell padding": "Celle padding", -"Cell spacing": "Celle afstand", -"Row type": "R\u00e6kke type", -"Insert table": "Inds\u00e6t tabel", -"Body": "Krop", -"Caption": "Tekst", -"Footer": "Sidefod", -"Delete row": "Slet r\u00e6kke", -"Paste row before": "Inds\u00e6t r\u00e6kke f\u00f8r", -"Scope": "Anvendelsesomr\u00e5de", -"Delete table": "Slet tabel", -"H Align": "H juster", -"Top": "Top", -"Header cell": "Sidehoved celle", -"Column": "Kolonne", -"Row group": "R\u00e6kke gruppe", -"Cell": "Celle", -"Middle": "Midt", -"Cell type": "Celle type", -"Copy row": "Kopier r\u00e6kke", -"Row properties": "R\u00e6kke egenskaber", -"Table properties": "Tabel egenskaber", -"Bottom": "Bund", -"V Align": "V juster", -"Header": "Sidehoved", -"Right": "H\u00f8jre", -"Insert column after": "Inds\u00e6t kolonne efter", -"Cols": "Kolonne", -"Insert row after": "Inds\u00e6t r\u00e6kke efter", -"Width": "Bredde", -"Cell properties": "Celle egenskaber", -"Left": "Venstre", -"Cut row": "Klip r\u00e6kke", -"Delete column": "Slet kolonne", -"Center": "Centrering", -"Merge cells": "Flet celler", -"Insert template": "Inds\u00e6t skabelon", -"Templates": "Skabeloner", -"Background color": "Baggrunds farve", -"Custom...": "Brugerdefineret...", -"Custom color": "Brugerdefineret farve", -"No color": "Ingen farve", -"Text color": "Tekst farve", -"Show blocks": "Vis klokke", -"Show invisible characters": "Vis usynlige tegn", -"Words: {0}": "Ord: {0}", -"Insert": "Inds\u00e6t", -"File": "Fil", -"Edit": "Rediger", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text omr\u00e5de. Tryk ALT-F9 for menu. Tryk ALT-F10 for toolbar. Tryk ALT-0 for hj\u00e6lp", -"Tools": "V\u00e6rkt\u00f8j", -"View": "Vis", -"Table": "Tabel", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/de.js b/Resources/public/vendor/tinymce/langs/de.js deleted file mode 100644 index ef3142d1..00000000 --- a/Resources/public/vendor/tinymce/langs/de.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('de',{ -"Cut": "Ausschneiden", -"Heading 5": "\u00dcberschrift 5", -"Header 2": "\u00dcberschrift 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.", -"Heading 4": "\u00dcberschrift 4", -"Div": "Textblock", -"Heading 2": "\u00dcberschrift 2", -"Paste": "Einf\u00fcgen", -"Close": "Schlie\u00dfen", -"Font Family": "Schriftart", -"Pre": "Vorformatierter Text", -"Align right": "Rechtsb\u00fcndig ausrichten", -"New document": "Neues Dokument", -"Blockquote": "Zitat", -"Numbered list": "Nummerierte Liste", -"Heading 1": "\u00dcberschrift 1", -"Headings": "\u00dcberschriften", -"Increase indent": "Einzug vergr\u00f6\u00dfern", -"Formats": "Formate", -"Headers": "\u00dcberschriften", -"Select all": "Alles ausw\u00e4hlen", -"Header 3": "\u00dcberschrift 3", -"Blocks": "Absatzformate", -"Undo": "R\u00fcckg\u00e4ngig", -"Strikethrough": "Durchgestrichen", -"Bullet list": "Aufz\u00e4hlung", -"Header 1": "\u00dcberschrift 1", -"Superscript": "Hochgestellt", -"Clear formatting": "Formatierung entfernen", -"Font Sizes": "Schriftgr\u00f6\u00dfe", -"Subscript": "Tiefgestellt", -"Header 6": "\u00dcberschrift 6", -"Redo": "Wiederholen", -"Paragraph": "Absatz", -"Ok": "Ok", -"Bold": "Fett", -"Code": "Quelltext", -"Italic": "Kursiv", -"Align center": "Zentriert ausrichten", -"Header 5": "\u00dcberschrift 5", -"Heading 6": "\u00dcberschrift 6", -"Heading 3": "\u00dcberschrift 3", -"Decrease indent": "Einzug verkleinern", -"Header 4": "\u00dcberschrift 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!", -"Underline": "Unterstrichen", -"Cancel": "Abbrechen", -"Justify": "Blocksatz", -"Inline": "Zeichenformate", -"Copy": "Kopieren", -"Align left": "Linksb\u00fcndig ausrichten", -"Visual aids": "Visuelle Hilfen", -"Lower Greek": "Griechische Kleinbuchstaben", -"Square": "Quadrat", -"Default": "Standard", -"Lower Alpha": "Kleinbuchstaben", -"Circle": "Kreis", -"Disc": "Punkt", -"Upper Alpha": "Gro\u00dfbuchstaben", -"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)", -"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)", -"Name": "Name", -"Anchor": "Textmarke", -"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?", -"Restore last draft": "Letzten Entwurf wiederherstellen", -"Special character": "Sonderzeichen", -"Source code": "Quelltext", -"Color": "Farbe", -"Right to left": "Von rechts nach links", -"Left to right": "Von links nach rechts", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Dokumenteigenschaften", -"Title": "Titel", -"Keywords": "Sch\u00fcsselw\u00f6rter", -"Encoding": "Zeichenkodierung", -"Description": "Beschreibung", -"Author": "Verfasser", -"Fullscreen": "Vollbild", -"Horizontal line": "Horizontale Linie", -"Horizontal space": "Horizontaler Abstand", -"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten", -"General": "Allgemein", -"Advanced": "Erweitert", -"Source": "Quelle", -"Border": "Rahmen", -"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten", -"Vertical space": "Vertikaler Abstand", -"Image description": "Bildbeschreibung", -"Style": "Stil", -"Dimensions": "Abmessungen", -"Insert image": "Bild einf\u00fcgen", -"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ", -"Remove link": "Link entfernen", -"Url": "URL", -"Text to display": "Anzuzeigender Text", -"Anchors": "Textmarken", -"Insert link": "Link einf\u00fcgen", -"New window": "Neues Fenster", -"None": "Keine", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?", -"Target": "Ziel", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?", -"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten", -"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten", -"Poster": "Poster", -"Alternative source": "Alternative Quelle", -"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:", -"Insert video": "Video einf\u00fcgen", -"Embed": "Einbetten", -"Nonbreaking space": "Gesch\u00fctztes Leerzeichen", -"Page break": "Seitenumbruch", -"Paste as text": "Als Text einf\u00fcgen", -"Preview": "Vorschau", -"Print": "Drucken", -"Save": "Speichern", -"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.", -"Replace": "Ersetzen", -"Next": "Weiter", -"Whole words": "Nur ganze W\u00f6rter", -"Find and replace": "Suchen und ersetzen", -"Replace with": "Ersetzen durch", -"Find": "Suchen", -"Replace all": "Alles ersetzen", -"Match case": "Gro\u00df-\/Kleinschreibung beachten", -"Prev": "Zur\u00fcck", -"Spellcheck": "Rechtschreibpr\u00fcfung", -"Finish": "Ende", -"Ignore all": "Alles Ignorieren", -"Ignore": "Ignorieren", -"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen", -"Insert row before": "Neue Zeile davor einf\u00fcgen ", -"Rows": "Zeilen", -"Height": "H\u00f6he", -"Paste row after": "Zeile danach einf\u00fcgen", -"Alignment": "Ausrichtung", -"Border color": "Rahmenfarbe", -"Column group": "Spaltengruppe", -"Row": "Zeile", -"Insert column before": "Neue Spalte davor einf\u00fcgen", -"Split cell": "Zelle aufteilen", -"Cell padding": "Zelleninnenabstand", -"Cell spacing": "Zellenabstand", -"Row type": "Zeilentyp", -"Insert table": "Tabelle einf\u00fcgen", -"Body": "Inhalt", -"Caption": "Beschriftung", -"Footer": "Fu\u00dfzeile", -"Delete row": "Zeile l\u00f6schen", -"Paste row before": "Zeile davor einf\u00fcgen", -"Scope": "G\u00fcltigkeitsbereich", -"Delete table": "Tabelle l\u00f6schen", -"H Align": "Horizontale Ausrichtung", -"Top": "Oben", -"Header cell": "Kopfzelle", -"Column": "Spalte", -"Row group": "Zeilengruppe", -"Cell": "Zelle", -"Middle": "Mitte", -"Cell type": "Zellentyp", -"Copy row": "Zeile kopieren", -"Row properties": "Zeileneigenschaften", -"Table properties": "Tabelleneigenschaften", -"Bottom": "Unten", -"V Align": "Vertikale Ausrichtung", -"Header": "Kopfzeile", -"Right": "Rechtsb\u00fcndig", -"Insert column after": "Neue Spalte danach einf\u00fcgen", -"Cols": "Spalten", -"Insert row after": "Neue Zeile danach einf\u00fcgen", -"Width": "Breite", -"Cell properties": "Zelleneigenschaften", -"Left": "Linksb\u00fcndig", -"Cut row": "Zeile ausschneiden", -"Delete column": "Spalte l\u00f6schen", -"Center": "Zentriert", -"Merge cells": "Zellen verbinden", -"Insert template": "Vorlage einf\u00fcgen ", -"Templates": "Vorlagen", -"Background color": "Hintergrundfarbe", -"Custom...": "Benutzerdefiniert...", -"Custom color": "Benutzerdefinierte Farbe", -"No color": "Keine Farbe", -"Text color": "Textfarbe", -"Show blocks": " Bl\u00f6cke anzeigen", -"Show invisible characters": "Unsichtbare Zeichen anzeigen", -"Words: {0}": "W\u00f6rter: {0}", -"Insert": "Einf\u00fcgen", -"File": "Datei", -"Edit": "Bearbeiten", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe", -"Tools": "Werkzeuge", -"View": "Ansicht", -"Table": "Tabelle", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/de_AT.js b/Resources/public/vendor/tinymce/langs/de_AT.js deleted file mode 100644 index b3685651..00000000 --- a/Resources/public/vendor/tinymce/langs/de_AT.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('de_AT',{ -"Cut": "Ausschneiden", -"Heading 5": "\u00dcberschrift 5", -"Header 2": "\u00dcberschrift 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt keinen direkten Zugriff auf die Zwischenablage. Bitte nutzen Sie die Tastaturk\u00fcrzel Strg+X\/C\/V stattdessen.", -"Heading 4": "\u00dcberschrift 4", -"Div": "Block (div)", -"Heading 2": "\u00dcberschrift 2", -"Paste": "Einf\u00fcgen", -"Close": "Schlie\u00dfen", -"Font Family": "Schriftart", -"Pre": "Vorformatierter Text (pre)", -"Align right": "Rechtsb\u00fcndig", -"New document": "Neues Dokument", -"Blockquote": "Zitat (blockquote)", -"Numbered list": "Sortierte Liste", -"Heading 1": "\u00dcberschrift 1", -"Headings": "\u00dcberschriften", -"Increase indent": "Einr\u00fccken", -"Formats": "Formate", -"Headers": "\u00dcberschriften", -"Select all": "Alles ausw\u00e4hlen", -"Header 3": "\u00dcberschrift 3", -"Blocks": "Bl\u00f6cke", -"Undo": "R\u00fcckg\u00e4ngig", -"Strikethrough": "Durchgestrichen", -"Bullet list": "Unsortierte Liste", -"Header 1": "\u00dcberschrift 1", -"Superscript": "Hochgestellt", -"Clear formatting": "Formatierungen zur\u00fccksetzen", -"Font Sizes": "Schriftgr\u00f6\u00dfen", -"Subscript": "Tiefgestellt", -"Header 6": "\u00dcberschrift 6", -"Redo": "Wiederholen", -"Paragraph": "Absatz (p)", -"Ok": "Ok", -"Bold": "Fett", -"Code": "Code (code)", -"Italic": "Kursiv", -"Align center": "Zentriert", -"Header 5": "\u00dcberschrift 5", -"Heading 6": "\u00dcberschrift 6", -"Heading 3": "\u00dcberschrift 3", -"Decrease indent": "Ausr\u00fccken", -"Header 4": "\u00dcberschrift 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Alle Texte werden nun ohne Formatierung eingef\u00fcgt, bis diese Einstellung wieder ge\u00e4ndert wird.", -"Underline": "Unterstrichen", -"Cancel": "Abbrechen", -"Justify": "Blocksatz", -"Inline": "Inline", -"Copy": "Kopieren", -"Align left": "Linksb\u00fcndig", -"Visual aids": "Hilfslinien und unsichtbare Elemente einblenden", -"Lower Greek": "Griechische Kleinbuchstaben", -"Square": "Quadrat", -"Default": "Standard", -"Lower Alpha": "Kleinbuchstaben", -"Circle": "Kreis", -"Disc": "Gef\u00fcllter Kreis", -"Upper Alpha": "Gro\u00dfbuchstaben", -"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)", -"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)", -"Name": "Name", -"Anchor": "Anker", -"You have unsaved changes are you sure you want to navigate away?": "Sie haben ungespeicherte \u00c4nderungen. Sind Sie sicher, dass Sie die Seite verlassen wollen?", -"Restore last draft": "Letzten Entwurf wiederherstellen.", -"Special character": "Sonderzeichen", -"Source code": "Quelltext", -"Color": "Farbe", -"Right to left": "Rechts nach links", -"Left to right": "Links nach rechts", -"Emoticons": "Emoticons", -"Robots": "Suchmaschinen", -"Document properties": "Dokumenteigenschaften", -"Title": "Titel", -"Keywords": "Schl\u00fcsselw\u00f6rter", -"Encoding": "Enkodierung", -"Description": "Beschreibung", -"Author": "Autor", -"Fullscreen": "Vollbild", -"Horizontal line": "Horizontale Trennlinie", -"Horizontal space": "Horizontaler Abstand", -"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten", -"General": "Allgemein", -"Advanced": "Erweitert", -"Source": "Adresse", -"Border": "Rahmen", -"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten", -"Vertical space": "Vertikaler Abstand", -"Image description": "Bildbeschreibung", -"Style": "Format", -"Dimensions": "Ausma\u00dfe", -"Insert image": "Bild einf\u00fcgen", -"Insert date\/time": "Zeit\/Datum einf\u00fcgen", -"Remove link": "Link entfernen", -"Url": "Url", -"Text to display": "Angezeigter Text", -"Anchors": "Anker", -"Insert link": "Link einf\u00fcgen", -"New window": "Neues Fenster", -"None": "Keine", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Die eingegebene URL scheint eine externe Web-Adresse zu sein. Soll das notwendige \"http:\/\/\"-Pr\u00e4fix hinzugef\u00fcgt werden?", -"Target": "Ziel", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Die eingegebene URL scheint eine E-Mail-Adresse zu sein. Soll das notwendige \"mailto:\"-Pr\u00e4fix hinzugef\u00fcgt werden?", -"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten", -"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten", -"Poster": "Poster", -"Alternative source": "Alternative Quelle", -"Paste your embed code below:": "F\u00fcgen unten Sie Ihren Quellcode zum einbetten ein", -"Insert video": "Video einf\u00fcgen", -"Embed": "Einbetten", -"Nonbreaking space": "gesch\u00fctztes Leerzeichen", -"Page break": "Seitenumbruch", -"Paste as text": "Als Text einf\u00fcgen", -"Preview": "Vorschau", -"Print": "Drucken", -"Save": "Speichern", -"Could not find the specified string.": "Keine \u00dcbereinstimmung gefunden", -"Replace": "Ersetzen", -"Next": "N\u00e4chstes", -"Whole words": "Vollst\u00e4ndige W\u00f6rter", -"Find and replace": "Suchen und ersetzen", -"Replace with": "Ersetzen durch", -"Find": "Suchen", -"Replace all": "Alle ersetzen", -"Match case": "Gro\u00df-\/Kleinschreibung beachten", -"Prev": "Vorheriges", -"Spellcheck": "Rechtschreibung \u00fcberpr\u00fcfen", -"Finish": "Fertig", -"Ignore all": "Alle ignorieren", -"Ignore": "Ignorieren", -"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen", -"Insert row before": "Neue Zeile oberhalb einf\u00fcgen", -"Rows": "Zeilen", -"Height": "H\u00f6he", -"Paste row after": "Zeile unterhalb einf\u00fcgen", -"Alignment": "Ausrichtung", -"Border color": "Rahmenfarbe", -"Column group": "Spaltengruppe", -"Row": "Zeile", -"Insert column before": "Neue Spalte links einf\u00fcgen", -"Split cell": "Verbundene Zellen trennen", -"Cell padding": "Abstand innerhalb der Zellen", -"Cell spacing": "Zellenabstand", -"Row type": "Zeilentyp", -"Insert table": "Tabelle einf\u00fcgen", -"Body": "Tabellenk\u00f6rper", -"Caption": "Beschriftung der Tabelle", -"Footer": "Tabellenfu\u00df", -"Delete row": "Zeile l\u00f6schen", -"Paste row before": "Zeile oberhalb einf\u00fcgen", -"Scope": "Geltungsbereich", -"Delete table": "Tabelle l\u00f6schen", -"H Align": "Ausrichtung H", -"Top": "Oben", -"Header cell": "\u00dcberschrift", -"Column": "Spalte", -"Row group": "Zeilengruppe", -"Cell": "Zelle", -"Middle": "Mitte", -"Cell type": "Zellentyp", -"Copy row": "Zeile kopieren", -"Row properties": "Zeileneigenschaften", -"Table properties": "Tabelleneigenschaften", -"Bottom": "Unten", -"V Align": "Ausrichtung V", -"Header": "Tabellen\u00fcberschrift", -"Right": "Rechts", -"Insert column after": "Neue Spalte rechts einf\u00fcgen", -"Cols": "Spalten", -"Insert row after": "Neue Zeile unterhalb einf\u00fcgen", -"Width": "Breite", -"Cell properties": "Zelleneigenschaften", -"Left": "Links", -"Cut row": "Zeile ausschneiden", -"Delete column": "Spalte l\u00f6schen", -"Center": "Zentriert", -"Merge cells": "Zellen vereinen", -"Insert template": "Vorlage einf\u00fcgen", -"Templates": "Vorlagen", -"Background color": "Hintergrundfarbe", -"Custom...": "Benutzerdefiniert...", -"Custom color": "Benutzerdefinierte Farbe", -"No color": "Keine Farbe", -"Text color": "Textfarbe", -"Show blocks": "Blockelemente einblenden", -"Show invisible characters": "Unsichtbare Zeichen einblenden", -"Words: {0}": "W\u00f6rter: {0}", -"Insert": "Einf\u00fcgen", -"File": "Datei", -"Edit": "Bearbeiten", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr die Werkzeugleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe", -"Tools": "Extras", -"View": "Ansicht", -"Table": "Tabelle", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/dv.js b/Resources/public/vendor/tinymce/langs/dv.js deleted file mode 100644 index 081c715c..00000000 --- a/Resources/public/vendor/tinymce/langs/dv.js +++ /dev/null @@ -1,192 +0,0 @@ -tinymce.addI18n('dv',{ -"Cut": "\u0786\u07a6\u0793\u07b0", -"Heading 5": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 5", -"Header 2": "\u0780\u07ac\u0791\u07a7 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0786\u07b0\u078d\u07a8\u0795\u07b0\u0784\u07af\u0791\u07b0 \u0784\u07ad\u0782\u07aa\u0782\u07b0 \u0786\u07aa\u0783\u07aa\u0789\u07aa\u078e\u07ac \u0780\u07aa\u0787\u07b0\u078b\u07a6\u060c \u0784\u07b0\u0783\u07af\u0792\u07a6\u0783\u0787\u07a6\u0786\u07aa\u0782\u07b0 \u0782\u07aa\u078b\u07ad! Ctrl+X\/C\/V \u0784\u07ad\u0782\u07aa\u0782\u07b0 \u0786\u07aa\u0783\u07ad!", -"Heading 4": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 4", -"Div": "\u0791\u07a6\u0787\u07a8\u0788\u07b0", -"Heading 2": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 2", -"Paste": "\u0795\u07ad\u0790\u07b0\u0793\u07b0", -"Close": "\u0782\u07a8\u0787\u07b0\u0788\u07a7", -"Font Family": "\u078a\u07ae\u0782\u07b0\u0793\u07b0", -"Pre": "\u0795\u07b0\u0783\u07a9", -"Align right": "\u0786\u07a6\u0782\u07a7\u078c\u07a6\u0781\u07b0 \u0796\u07a6\u0787\u07b0\u0790\u07a7", -"New document": "\u0787\u07a7 \u0791\u07ae\u0786\u07a8\u0787\u07aa\u0789\u07ac\u0782\u07b0\u0793\u07b0", -"Blockquote": "\u0784\u07b0\u078d\u07ae\u0786\u07b0-\u0786\u07af\u0793\u07b0", -"Numbered list": "\u0782\u07a6\u0782\u07b0\u0784\u07a6\u0783\u07aa \u078d\u07a8\u0790\u07b0\u0793\u07b0", -"Heading 1": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 1", -"Headings": "\u0780\u07ac\u0791\u07a8\u0782\u07b0", -"Increase indent": "\u078b\u07aa\u0783\u07aa\u0789\u07a8\u0782\u07b0 \u0784\u07ae\u0791\u07aa\u0786\u07aa\u0783\u07ad", -"Formats": "\u078a\u07af\u0789\u07ac\u0793\u07b0\u078c\u07a6\u0787\u07b0", -"Headers": "\u0780\u07ac\u0791\u07a7\u078c\u07a6\u0787\u07b0", -"Select all": "\u0790\u07ac\u078d\u07ac\u0786\u07b0\u0793\u07b0 \u0787\u07af\u078d\u07b0", -"Header 3": "\u0780\u07ac\u0791\u07a7 3", -"Blocks": "\u0784\u07b0\u078d\u07ae\u0786\u07b0\u078c\u07a6\u0787\u07b0", -"Undo": "\u0787\u07a6\u0782\u07b0\u0791\u07ab", -"Strikethrough": "\u0789\u07ac\u078b\u07aa \u0783\u07ae\u0782\u078e\u07ae", -"Bullet list": "\u0784\u07aa\u078d\u07ac\u0793\u07b0 \u078d\u07a8\u0790\u07b0\u0793\u07b0", -"Header 1": "\u0780\u07ac\u0791\u07a7 1", -"Superscript": "\u0789\u07a6\u078c\u07a9\u0787\u07a6\u0786\u07aa\u0783\u07aa", -"Clear formatting": "\u078a\u07af\u0789\u07ac\u0793\u07b0\u078c\u07a6\u0787\u07b0 \u078a\u07ae\u0780\u07ad", -"Font Sizes": "\u078a\u07ae\u0782\u07b0\u0793\u07b0 \u0790\u07a6\u0787\u07a8\u0792\u07b0", -"Subscript": "\u078c\u07a8\u0783\u07a9\u0787\u07a6\u0786\u07aa\u0783\u07aa", -"Header 6": "\u0780\u07ac\u0791\u07a7 6", -"Redo": "\u0783\u07a9\u0791\u07ab", -"Paragraph": "\u0795\u07ac\u0783\u07ac\u078e\u07b0\u0783\u07a7\u078a\u07b0", -"Ok": "\u0787\u07af\u0786\u07ad", -"Bold": "\u0784\u07af\u078d\u07b0\u0791\u07b0", -"Code": "\u0786\u07af\u0791\u07b0", -"Italic": "\u0787\u07a8\u0793\u07a6\u078d\u07a8\u0786\u07b0", -"Align center": "\u0789\u07ac\u078b\u07a6\u0781\u07b0 \u0796\u07a6\u0787\u07b0\u0790\u07a7", -"Header 5": "\u0780\u07ac\u0791\u07a7 5", -"Heading 6": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 6", -"Heading 3": "\u0780\u07ac\u0791\u07a8\u0782\u07b0 3", -"Decrease indent": "\u078b\u07aa\u0783\u07aa\u0789\u07a8\u0782\u07b0 \u0786\u07aa\u0791\u07a6\u0786\u07aa\u0783\u07ad", -"Header 4": "\u0780\u07ac\u0791\u07a7 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0795\u07ad\u0790\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ac\u0788\u07ad\u0782\u07a9 \u0795\u07b0\u078d\u07ac\u0787\u07a8\u0782\u07b0\u0786\u07ae\u0781\u07b0! \u0784\u07a6\u078b\u07a6\u078d\u07aa \u0786\u07aa\u0783\u07ac\u0787\u07b0\u0788\u07aa\u0789\u07a6\u0781\u07b0 \u0789\u07a8 \u0787\u07ae\u0795\u07b0\u079d\u07a6\u0782\u07b0 \u0787\u07ae\u078a\u07b0 \u0786\u07ae\u0781\u07b0\u078d\u07a6\u0787\u07b0\u0788\u07a7!", -"Underline": "\u078b\u07a6\u0781\u07aa\u0783\u07ae\u0782\u078e\u07aa", -"Cancel": "\u0786\u07ac\u0782\u07b0\u0790\u07a6\u078d\u07b0", -"Justify": "\u0787\u07ac\u0787\u07b0\u0788\u07a6\u0783\u07aa \u0786\u07aa\u0783\u07ad", -"Inline": "\u0787\u07a8\u0782\u07b0\u078d\u07a6\u0787\u07a8\u0782\u07b0", -"Copy": "\u0786\u07ae\u0795\u07a9", -"Align left": "\u0788\u07a7\u078c\u07a6\u0781\u07b0 \u0796\u07a6\u0787\u07b0\u0790\u07a7", -"Visual aids": "\u0788\u07a8\u079d\u07aa\u0787\u07a6\u078d\u07b0 \u0787\u07ac\u0787\u07a8\u0791\u07b0\u0790\u07b0", -"Lower Greek": "\u078d\u07af\u0788\u07a6\u0783 \u078e\u07b0\u0783\u07a9\u0786\u07b0", -"Square": "\u078e\u07ae\u0785\u07a8", -"Default": "\u0791\u07a8\u078a\u07af\u078d\u07b0\u0793\u07b0", -"Lower Alpha": "\u078d\u07af\u0788\u07a6\u0783 \u0787\u07a6\u078d\u07b0\u078a\u07a7", -"Circle": "\u0784\u07ae\u0785\u07aa", -"Disc": "\u0788\u07a6\u0781\u07b0\u0784\u07aa\u0783\u07aa", -"Upper Alpha": "\u0787\u07a6\u0795\u07a7 \u0787\u07a6\u078d\u07b0\u078a\u07a7", -"Upper Roman": "\u0787\u07a6\u0795\u07a7 \u0783\u07af\u0789\u07a6\u0782\u07b0", -"Lower Roman": "\u078d\u07af\u0788\u07a6\u0783 \u0783\u07af\u0789\u07a6\u0782\u07b0", -"Name": "\u0782\u07a6\u0782\u07b0", -"Anchor": "\u0787\u07ac\u0782\u07b0\u0786\u07a6\u0783", -"You have unsaved changes are you sure you want to navigate away?": "\u0784\u07a6\u078b\u07a6\u078d\u07aa\u078c\u07a6\u0787\u07b0 \u0790\u07ad\u0788\u07b0 \u0782\u07aa\u0786\u07ae\u0781\u07b0 \u078b\u07ab\u0786\u07ae\u0781\u07b0\u078d\u07a6\u0782\u07b0\u0788\u07a9\u078c\u07a6\u061f", -"Restore last draft": "\u078a\u07a6\u0780\u07aa\u078e\u07ac \u0791\u07b0\u0783\u07a7\u078a\u07b0\u0793\u07b0 \u0783\u07ac\u0790\u07b0\u0793\u07af \u0786\u07aa\u0783\u07ad", -"Special character": "\u079a\u07a7\u0787\u07b0\u0790\u07a6 \u0787\u07a6\u0786\u07aa\u0783\u07aa\u078c\u07a6\u0787\u07b0", -"Source code": "\u0789\u07a6\u0790\u07b0\u078b\u07a6\u0783\u07aa", -"Right to left": "\u0786\u07a6\u0782\u07a7\u078c\u07aa\u0782\u07b0 \u0788\u07a7\u078c\u07a6\u0781\u07b0", -"Left to right": "\u0788\u07a7\u078c\u07aa\u0782\u07b0 \u0786\u07a6\u0782\u07a7\u078c\u07a6\u0781\u07b0", -"Emoticons": "\u079d\u07aa\u0787\u07ab\u0783\u07aa \u078a\u07ae\u0793\u07af", -"Robots": "\u0783\u07af\u0784\u07ae\u0793\u07b0\u0790\u07b0", -"Document properties": "\u0791\u07ae\u0786\u07a8\u0787\u07aa\u0789\u07ac\u0782\u07b0\u0793\u07b0\u078e\u07ac \u0790\u07a8\u078a\u07a6\u078c\u07a6\u0787\u07b0", -"Title": "\u0793\u07a6\u0787\u07a8\u0793\u07a6\u078d\u07b0", -"Keywords": "\u0786\u07a9\u0788\u07af\u0791\u07b0\u078c\u07a6\u0787\u07b0", -"Encoding": "\u0787\u07ac\u0782\u07b0\u0786\u07af\u0791\u07a8\u0782\u07b0", -"Description": "\u078c\u07a6\u078a\u07b0\u0790\u07a9\u078d\u07aa", -"Author": "\u0788\u07ac\u0783\u07a8\u078a\u07a6\u0783\u07a7\u078c\u07b0", -"Fullscreen": "\u078a\u07aa\u078d\u07b0\u0790\u07b0\u0786\u07b0\u0783\u07a9\u0782\u07b0", -"Horizontal line": "\u0780\u07aa\u0783\u07a6\u0790\u07b0 \u0783\u07ae\u0782\u078e\u07aa", -"Horizontal space": "\u0780\u07ae\u0783\u07a8\u0792\u07af\u0782\u07b0\u0793\u07a6\u078d\u07b0 \u0790\u07b0\u0795\u07ad\u0790\u07b0", -"Insert\/edit image": "\u078a\u07ae\u0793\u07af\u078d\u07aa\u0782\u07b0\/\u0784\u07a6\u078b\u07a6\u078d\u07aa\u0786\u07aa\u0783\u07aa\u0782\u07b0", -"General": "\u0787\u07a7\u0782\u07b0\u0789\u07aa", -"Advanced": "\u0787\u07ac\u0791\u07b0\u0788\u07a7\u0782\u07b0\u0790\u07b0\u0791\u07b0", -"Source": "\u0789\u07a6\u0790\u07b0\u078b\u07a6\u0783\u07aa", -"Border": "\u0784\u07af\u0791\u07a6\u0783\u07aa", -"Constrain proportions": "\u0788\u07a6\u0792\u07a6\u0782\u07b0 \u0780\u07a8\u078a\u07a6\u0780\u07a6\u0787\u07b0\u0793\u07a7", -"Vertical space": "\u0788\u07a7\u0793\u07a8\u0786\u07a6\u078d\u07b0 \u0790\u07b0\u0795\u07ad\u0790\u07b0", -"Image description": "\u078a\u07ae\u0793\u07af\u078e\u07ac \u078c\u07a6\u078a\u07b0\u0790\u07a9\u078d\u07aa", -"Style": "\u0790\u07b0\u0793\u07a6\u0787\u07a8\u078d\u07b0", -"Dimensions": "\u0789\u07a8\u0782\u07b0\u078c\u07a6\u0787\u07b0", -"Insert image": "\u078a\u07ae\u0793\u07af \u0787\u07a8\u0782\u07b0\u0790\u07a7\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Insert date\/time": "\u0788\u07a6\u078e\u07aa\u078c\u07aa\/\u078c\u07a7\u0783\u07a9\u079a\u07b0 \u078d\u07aa\u0782\u07b0", -"Remove link": "\u078d\u07a8\u0782\u07b0\u0786\u07b0 \u078a\u07ae\u0780\u07ad", -"Url": "\u0794\u07ab.\u0787\u07a7\u0783\u07b0.\u0787\u07ac\u078d\u07b0", -"Text to display": "\u078b\u07a6\u0787\u07b0\u0786\u07a6\u0782\u07b0\u0788\u07a9 \u0787\u07a8\u0784\u07a7\u0783\u07a7\u078c\u07b0", -"Anchors": "\u0787\u07ac\u0782\u07b0\u0786\u07a6\u0783\u078c\u07a6\u0787\u07b0", -"Insert link": "\u078d\u07a8\u0782\u07b0\u0786\u07b0 \u078d\u07aa\u0782\u07b0", -"New window": "\u0787\u07a7 \u0788\u07a8\u0782\u07b0\u0791\u07af\u0787\u07a6\u0786\u07a6\u0781\u07b0", -"None": "\u0782\u07ae\u0782\u07b0", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u078c\u07a8\u0794\u07a6 \u078d\u07a8\u0794\u07aa\u0787\u07b0\u0788\u07a9 \u0787\u07ac\u0780\u07ac\u0782\u07b0 \u0790\u07a6\u0787\u07a8\u0793\u07ac\u0787\u07b0\u078e\u07ac \u078d\u07a8\u0782\u07b0\u0786\u07ac\u0787\u07b0\u0786\u07a6\u0789\u07aa\u0782\u07b0 \u0787\u07ac\u0797\u07b0.\u0793\u07a9.\u0793\u07a9.\u0795\u07a9 \u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa \u0786\u07aa\u0783\u07a6\u0782\u07b0\u078c\u07af\u061f", -"Target": "\u0793\u07a7\u078e\u07ac\u0793\u07b0", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0789\u07ac\u0787\u07a8\u078d\u07b0\u0793\u07ab - \u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa\u0786\u07aa\u0783\u07a6\u0787\u07b0\u0788\u07a6\u0782\u07b0 \u0784\u07ad\u0782\u07aa\u0782\u07b0\u078a\u07aa\u0785\u07aa\u078c\u07af\u061f", -"Insert\/edit link": "\u078d\u07a8\u0782\u07b0\u0786\u07b0 \u078d\u07aa\u0782\u07b0\/\u0784\u07a6\u078b\u07a6\u078d\u07aa \u078e\u07ac\u0782\u07a6\u0787\u07aa\u0782\u07b0", -"Insert\/edit video": "\u0788\u07a9\u0791\u07a8\u0787\u07af \u078d\u07aa\u0782\u07b0\/\u0784\u07a6\u078b\u07a6\u078d\u07aa \u078e\u07ac\u0782\u07a6\u0787\u07aa\u0782\u07b0", -"Poster": "\u0795\u07af\u0790\u07b0\u0793\u07a6\u0783", -"Alternative source": "\u0787\u07a6\u078d\u07b0\u0793\u07a6\u0782\u07ad\u0793\u07a8\u0788\u07b0 \u0790\u07af\u0790\u07b0", -"Paste your embed code below:": "\u0787\u07ac\u0789\u07b0\u0784\u07ac\u0791\u07b0 \u0786\u07af\u0791\u07b0 \u078c\u07a8\u0783\u07a9\u078e\u07a6\u0787\u07a8 \u0795\u07ad\u0790\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Insert video": "\u0788\u07a9\u0791\u07a8\u0787\u07af \u078d\u07aa\u0782\u07b0", -"Embed": "\u0787\u07ac\u0789\u07b0\u0784\u07ac\u0791\u07b0", -"Nonbreaking space": "\u0782\u07ae\u0782\u07b0 \u0784\u07b0\u0783\u07ad\u0786\u07a8\u0782\u07b0 \u0790\u07b0\u0795\u07ad\u0790\u07b0", -"Page break": "\u0795\u07ad\u0796\u07b0 \u0784\u07b0\u0783\u07ad\u0786\u07b0", -"Paste as text": "\u0793\u07ac\u0786\u07b0\u0790\u07b0\u0793\u07b0 \u078e\u07ae\u078c\u07a6\u0781\u07b0 \u0795\u07ad\u0790\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Preview": "\u0795\u07b0\u0783\u07a9\u0788\u07a8\u0787\u07aa", -"Print": "\u0795\u07b0\u0783\u07a8\u0782\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Save": "\u0790\u07ad\u0788\u07b0 \u0786\u07aa\u0783\u07ad", -"Could not find the specified string.": "\u078c\u07a8\u0794\u07a6 \u0780\u07af\u0787\u07b0\u078b\u07a6\u0788\u07a7 \u078d\u07a6\u078a\u07aa\u0792\u07ac\u0787\u07b0 \u0782\u07aa\u078a\u07ac\u0782\u07aa\u0782\u07aa", -"Replace": "\u0784\u07a6\u078b\u07a6\u078d\u07aa \u0786\u07aa\u0783\u07ad", -"Next": "\u078a\u07a6\u0780\u07a6\u078c\u07a6\u0781\u07b0", -"Whole words": "\u0784\u07a6\u0790\u07b0\u078c\u07a6\u0787\u07b0 \u0787\u07ac\u0787\u07b0\u0786\u07ae\u0781\u07b0", -"Find and replace": "\u0780\u07af\u078b\u07aa\u0789\u07a6\u0781\u07b0\u078a\u07a6\u0780\u07aa \u0784\u07a6\u078b\u07a6\u078d\u07aa \u0786\u07aa\u0783\u07aa\u0782\u07b0", -"Replace with": "\u0784\u07a6\u078b\u07a6\u078d\u07aa\u078e\u07a6\u0787\u07a8 \u0784\u07ad\u0782\u07aa\u0782\u07b0 \u0786\u07aa\u0783\u07a7\u0782\u07a9", -"Find": "\u0780\u07af\u078b\u07a7", -"Replace all": "\u0780\u07aa\u0783\u07a8\u0780\u07a7 \u0787\u07ac\u0787\u07b0\u0797\u07ac\u0787\u07b0 \u0784\u07a6\u078b\u07a6\u078d\u07aa \u0786\u07aa\u0783\u07ad", -"Match case": "\u0786\u07ad\u0790\u07b0 \u0787\u07a6\u0781\u07b0 \u0784\u07a6\u078d\u07a7", -"Prev": "\u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0", -"Spellcheck": "\u0786\u07aa\u0781\u07b0 \u0780\u07af\u078b\u07a7", -"Finish": "\u0782\u07a8\u0782\u07b0\u0789\u07a7", -"Ignore all": "\u0780\u07aa\u0783\u07a8\u0780\u07a7 \u0787\u07ac\u0787\u07b0\u0797\u07ac\u0787\u07b0 \u078b\u07ab\u0786\u07ae\u0781\u07b0\u078d\u07a7", -"Ignore": "\u078b\u07ab\u0786\u07ae\u0781\u07b0\u078d\u07a7", -"Add to Dictionary": "\u0783\u07a6\u078b\u07a9\u078a\u07a6\u0781\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa\u0786\u07aa\u0783\u07ad", -"Insert row before": "\u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0 \u0783\u07af\u0787\u07ac\u0787\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa \u0786\u07aa\u0783\u07ad", -"Rows": "\u0783\u07af", -"Height": "\u078b\u07a8\u078e\u07aa\u0789\u07a8\u0782\u07b0", -"Paste row after": "\u078a\u07a6\u0780\u07a6\u078c\u07a6\u0781\u07b0 \u0783\u07af \u0795\u07ad\u0790\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Alignment": "\u0787\u07ac\u078d\u07a6\u0787\u07a8\u0782\u07b0\u0789\u07ac\u0782\u07b0\u0793\u07b0", -"Column group": "\u0786\u07ae\u078d\u07a6\u0789\u07b0 \u078e\u07b0\u0783\u07ab\u0795\u07b0", -"Row": "\u0783\u07af", -"Insert column before": "\u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0 \u0786\u07ae\u078d\u07a6\u0789\u07ac\u0787\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa \u0786\u07aa\u0783\u07ad", -"Split cell": "\u0790\u07ac\u078d\u07b0 \u0788\u07a6\u0786\u07a8\u0786\u07aa\u0783\u07ad", -"Cell padding": "\u0790\u07ac\u078d\u07b0 \u0795\u07ac\u0791\u07a8\u0782\u07b0", -"Cell spacing": "\u0790\u07ac\u078d\u07b0 \u0790\u07b0\u0795\u07ad\u0790\u07a8\u0782\u07b0\u078e", -"Row type": "\u0783\u07af\u078e\u07ac \u0788\u07a6\u0787\u07b0\u078c\u07a6\u0783\u07aa", -"Insert table": "\u0793\u07ad\u0784\u07a6\u078d\u07b0 \u078d\u07aa\u0782\u07b0", -"Body": "\u0784\u07ae\u0791\u07a9", -"Caption": "\u0786\u07ac\u0795\u07b0\u079d\u07a6\u0782\u07b0", -"Footer": "\u078a\u07ab\u0793\u07a6\u0783", -"Delete row": "\u0783\u07af \u078a\u07ae\u0780\u07ad", -"Paste row before": "\u0786\u07aa\u0783\u07a8\u0787\u07a6\u0781\u07b0 \u0783\u07af \u0795\u07ad\u0790\u07b0\u0793\u07b0 \u0786\u07aa\u0783\u07ad", -"Scope": "\u0790\u07b0\u0786\u07af\u0795\u07b0", -"Delete table": "\u0793\u07ad\u0784\u07a6\u078d\u07b0 \u078a\u07ae\u0780\u07ad", -"H Align": "\u0780\u07aa\u0783\u07a6\u0790\u07b0 \u0787\u07ac\u078d\u07a6\u0787\u07a8\u0782\u07b0", -"Top": "\u0789\u07a6\u078c\u07a8", -"Header cell": "\u0780\u07ac\u0791\u07a7 \u0790\u07ac\u078d\u07b0", -"Column": "\u0786\u07ae\u078d\u07a6\u0789\u07b0", -"Row group": "\u0783\u07af \u078e\u07b0\u0783\u07ab\u0795\u07b0", -"Cell": "\u0790\u07ac\u078d\u07b0", -"Middle": "\u0789\u07ac\u078b\u07aa", -"Cell type": "\u0790\u07ac\u078d\u07b0\u078e\u07ac \u0788\u07a6\u0787\u07b0\u078c\u07a6\u0783\u07aa", -"Copy row": "\u0783\u07af \u0786\u07ae\u0795\u07a9\u0786\u07aa\u0783\u07ad", -"Row properties": "\u0783\u07af\u078e\u07ac \u0790\u07a8\u078a\u07a6\u078c\u07a6\u0787\u07b0", -"Table properties": "\u0793\u07ad\u0784\u07a6\u078d\u07b0\u078e\u07ac \u0790\u07a8\u078a\u07a6\u078c\u07a6\u0787\u07b0", -"Bottom": "\u078c\u07a8\u0783\u07a8", -"V Align": "\u078b\u07a8\u078e\u07a6\u0781\u07b0 \u0787\u07ac\u078d\u07a6\u0787\u07a8\u0782\u07b0", -"Header": "\u0780\u07ac\u0791\u07a7", -"Right": "\u0786\u07a6\u0782\u07a7\u078c\u07a6\u0781\u07b0", -"Insert column after": "\u078a\u07a6\u0780\u07a6\u078c\u07a6\u0781\u07b0 \u0786\u07ae\u078d\u07a6\u0789\u07ac\u0787\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa \u0786\u07aa\u0783\u07ad", -"Cols": "\u0786\u07ae\u078d\u07a6\u0789\u07b0", -"Insert row after": "\u078a\u07a6\u0780\u07a6\u078c\u07a6\u0781\u07b0 \u0783\u07af\u0787\u07ac\u0787\u07b0 \u0787\u07a8\u078c\u07aa\u0783\u07aa \u0786\u07aa\u0783\u07ad", -"Width": "\u078a\u07aa\u0785\u07a7\u0789\u07a8\u0782\u07b0", -"Cell properties": "\u0790\u07ac\u078d\u07b0\u078e\u07ac \u0790\u07a8\u078a\u07a6\u078c\u07a6\u0787\u07b0", -"Left": "\u0788\u07a7\u078c\u07a6\u0781\u07b0", -"Cut row": "\u0783\u07af \u0786\u07a6\u0793\u07b0\u0786\u07aa\u0783\u07ad", -"Delete column": "\u0786\u07ae\u078d\u07a6\u0789\u07b0 \u078a\u07ae\u0780\u07ad", -"Center": "\u0789\u07ac\u078b\u07a6\u0781\u07b0", -"Merge cells": "\u0790\u07ac\u078d\u07b0 \u0787\u07ac\u0787\u07b0\u0786\u07aa\u0783\u07ad", -"Insert template": "\u0793\u07ac\u0789\u07b0\u0795\u07b0\u078d\u07ad\u0793\u07b0 \u0787\u07a8\u0782\u07b0\u0790\u07a7\u0793\u07b0 \u0786\u07aa\u0783\u07aa\u0782\u07b0", -"Templates": "\u0793\u07ac\u0789\u07b0\u0795\u07b0\u078d\u07ad\u0793\u07b0\u078c\u07a6\u0787\u07b0", -"Background color": "\u0784\u07ac\u0786\u07b0\u078e\u07b0\u0783\u07a6\u0787\u07aa\u0782\u07b0\u0791\u07b0\u078e\u07ac \u0786\u07aa\u078d\u07a6", -"Text color": "\u0787\u07a6\u0786\u07aa\u0783\u07aa\u078e\u07ac \u0786\u07aa\u078d\u07a6", -"Show blocks": "\u0784\u07b0\u078d\u07ae\u0786\u07b0\u078c\u07a6\u0787\u07b0 \u078b\u07a6\u0787\u07b0\u0786\u07a7", -"Show invisible characters": "\u0782\u07aa\u078a\u07ac\u0782\u07b0\u0782\u07a6 \u0787\u07a6\u0786\u07aa\u0783\u07aa\u078c\u07a6\u0787\u07b0 \u078b\u07a6\u0787\u07b0\u0786\u07a7", -"Words: {0}": "\u0784\u07a6\u0790\u07b0: {0}", -"Insert": "\u0787\u07a8\u0782\u07b0\u0790\u07a7\u0793\u07b0", -"File": "\u078a\u07a6\u0787\u07a8\u078d\u07b0", -"Edit": "\u0784\u07a6\u078b\u07a6\u078d\u07aa \u078e\u07ac\u0782\u07a6\u0787\u07aa\u0782\u07b0", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0783\u07a8\u0797\u07b0 \u0793\u07ac\u0786\u07b0\u0790\u07b0\u0793\u07b0 \u0787\u07ad\u0783\u07a8\u0787\u07a7. \u0789\u07ac\u0782\u07ab \u0780\u07af\u078b\u07aa\u0789\u07a6\u0781\u07b0 ALT-F9. \u0793\u07ab\u078d\u07b0\u0784\u07a6\u0783 \u0780\u07af\u078b\u07aa\u0789\u07a6\u0781\u07b0 ALT-F10. \u0787\u07ac\u0780\u07a9 \u0780\u07af\u078b\u07aa\u0789\u07a6\u0781\u07b0 ALT-0", -"Tools": "\u0793\u07ab\u078d\u07b0\u078c\u07a6\u0787\u07b0", -"View": "\u0788\u07a8\u0787\u07aa", -"Table": "\u0793\u07ad\u0784\u07a6\u078d\u07b0", -"Format": "\u078a\u07af\u0789\u07ac\u0793\u07b0" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/el.js b/Resources/public/vendor/tinymce/langs/el.js deleted file mode 100644 index 0f14563d..00000000 --- a/Resources/public/vendor/tinymce/langs/el.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('el',{ -"Cut": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae", -"Heading 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5", -"Header 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u039f \u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03c4\u03ae\u03c2 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03ac\u03bc\u03b5\u03c3\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 Ctrl+X\/C\/V.", -"Heading 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4", -"Div": "Div", -"Heading 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2", -"Paste": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7", -"Close": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf", -"Font Family": "\u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", -"Pre": "Pre", -"Align right": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b4\u03b5\u03be\u03b9\u03ac", -"New document": "\u039d\u03ad\u03bf \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", -"Blockquote": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7\u03c2", -"Numbered list": "\u0391\u03c1\u03b9\u03b8\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1", -"Heading 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1", -"Headings": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2", -"Increase indent": "\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2", -"Formats": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", -"Headers": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2", -"Select all": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd", -"Header 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3", -"Blocks": "\u03a4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1", -"Undo": "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7", -"Strikethrough": "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03ae \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", -"Bullet list": "\u039b\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b5\u03c2", -"Header 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1", -"Superscript": "\u0395\u03ba\u03b8\u03ad\u03c4\u03b7\u03c2", -"Clear formatting": "\u0391\u03c0\u03b1\u03bb\u03bf\u03b9\u03c6\u03ae \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2", -"Font Sizes": "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2", -"Subscript": "\u0394\u03b5\u03af\u03ba\u03c4\u03b7\u03c2", -"Header 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6", -"Redo": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7", -"Paragraph": "\u03a0\u03b1\u03c1\u03ac\u03b3\u03c1\u03b1\u03c6\u03bf\u03c2", -"Ok": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9", -"Bold": "\u0388\u03bd\u03c4\u03bf\u03bd\u03b7", -"Code": "\u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", -"Italic": "\u03a0\u03bb\u03ac\u03b3\u03b9\u03b1", -"Align center": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03c3\u03c4\u03bf \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf", -"Header 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5", -"Heading 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6", -"Heading 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3", -"Decrease indent": "\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2", -"Header 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0397 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03ce\u03c1\u03b1 \u03c3\u03b5 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c0\u03bb\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c0\u03bb\u03cc \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03cc\u03c3\u03bf \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03bd\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae.", -"Underline": "\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7", -"Cancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7", -"Justify": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", -"Inline": "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b7", -"Copy": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", -"Align left": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", -"Visual aids": "O\u03c0\u03c4\u03b9\u03ba\u03ac \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03b1 ", -"Lower Greek": "\u03a0\u03b5\u03b6\u03ac \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", -"Square": "\u03a4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf", -"Default": "\u03a0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf", -"Lower Alpha": "\u03a0\u03b5\u03b6\u03ac \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac", -"Circle": "\u039a\u03cd\u03ba\u03bb\u03bf\u03c2", -"Disc": "\u0394\u03af\u03c3\u03ba\u03bf\u03c2", -"Upper Alpha": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac", -"Upper Roman": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac", -"Lower Roman": "\u03a0\u03b5\u03b6\u03ac \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac", -"Name": "\u038c\u03bd\u03bf\u03bc\u03b1", -"Anchor": "\u0391\u03b3\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7", -"You have unsaved changes are you sure you want to navigate away?": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03bc\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2. \u0395\u03af\u03c3\u03c4\u03b5 \u03b2\u03ad\u03b2\u03b1\u03b9\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c6\u03cd\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1;", -"Restore last draft": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", -"Special character": "\u0395\u03b9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2", -"Source code": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", -"Color": "\u03a7\u03c1\u03ce\u03bc\u03b1", -"Right to left": "\u0391\u03c0\u03cc \u03b4\u03b5\u03be\u03b9\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", -"Left to right": "\u0391\u03c0\u03cc \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03be\u03b9\u03ac", -"Emoticons": "\u03a6\u03b1\u03c4\u03c3\u03bf\u03cd\u03bb\u03b5\u03c2", -"Robots": "\u03a1\u03bf\u03bc\u03c0\u03cc\u03c4", -"Document properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", -"Title": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2", -"Keywords": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2 \u03ba\u03bb\u03b5\u03b9\u03b4\u03b9\u03ac", -"Encoding": "\u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", -"Description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", -"Author": "\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2", -"Fullscreen": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7", -"Horizontal line": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae", -"Horizontal space": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1", -"Insert\/edit image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", -"General": "\u0393\u03b5\u03bd\u03b9\u03ba\u03ac", -"Advanced": "\u0393\u03b9\u03b1 \u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2", -"Source": "\u03a0\u03b7\u03b3\u03ae", -"Border": "\u03a0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf", -"Constrain proportions": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03bd\u03b1\u03bb\u03bf\u03b3\u03b9\u03ce\u03bd", -"Vertical space": "\u039a\u03ac\u03b8\u03b5\u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1", -"Image description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", -"Style": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", -"Dimensions": "\u0394\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2", -"Insert image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", -"Insert date\/time": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2\/\u03ce\u03c1\u03b1\u03c2", -"Remove link": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", -"Url": "URL", -"Text to display": "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", -"Anchors": "\u0386\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2", -"Insert link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", -"New window": "\u039d\u03ad\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf", -"None": "\u039a\u03b1\u03bc\u03af\u03b1", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 http:\/\/;", -"Target": "\u03a0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 mailto:;", -"Insert\/edit link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", -"Insert\/edit video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf", -"Poster": "\u0391\u03c6\u03af\u03c3\u03b1", -"Alternative source": "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7", -"Paste your embed code below:": "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9:", -"Insert video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b2\u03af\u03bd\u03c4\u03b5\u03bf", -"Embed": "\u0395\u03bd\u03c3\u03c9\u03bc\u03ac\u03c4\u03c9\u03c3\u03b7", -"Nonbreaking space": "\u039a\u03b5\u03bd\u03cc \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae", -"Page break": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", -"Paste as text": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03c9\u03c2 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf", -"Preview": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", -"Print": "\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7", -"Save": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", -"Could not find the specified string.": "\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03bb\u03c6\u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd.", -"Replace": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", -"Next": "\u0395\u03c0\u03cc\u03bc.", -"Whole words": "\u039f\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2", -"Find and replace": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", -"Replace with": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5", -"Find": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7", -"Replace all": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd", -"Match case": "\u03a4\u03b1\u03af\u03c1\u03b9\u03b1\u03c3\u03bc\u03b1 \u03c0\u03b5\u03b6\u03ce\u03bd\/\u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd", -"Prev": "\u03a0\u03c1\u03bf\u03b7\u03b3.", -"Spellcheck": "\u039f\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc\u03c2 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 ", -"Finish": "\u03a4\u03ad\u03bb\u03bf\u03c2", -"Ignore all": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd", -"Ignore": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7", -"Add to Dictionary": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf \u039b\u03b5\u03be\u03b9\u03ba\u03cc", -"Insert row before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9", -"Rows": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2", -"Height": "\u038e\u03c8\u03bf\u03c2", -"Paste row after": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9", -"Alignment": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", -"Border color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03bb\u03b1\u03b9\u03c3\u03af\u03bf\u03c5", -"Column group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", -"Row": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ae", -"Insert column before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", -"Split cell": "\u0394\u03b9\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", -"Cell padding": "\u0391\u03bd\u03b1\u03c0\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", -"Cell spacing": "\u0391\u03c0\u03cc\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", -"Row type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", -"Insert table": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", -"Body": "\u03a3\u03ce\u03bc\u03b1", -"Caption": "\u039b\u03b5\u03b6\u03ac\u03bd\u03c4\u03b1", -"Footer": "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf", -"Delete row": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", -"Paste row before": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9", -"Scope": "\u0388\u03ba\u03c4\u03b1\u03c3\u03b7", -"Delete table": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", -"H Align": "\u039f\u03c1. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", -"Top": "\u039a\u03bf\u03c1\u03c5\u03c6\u03ae", -"Header cell": "\u039a\u03b5\u03bb\u03af-\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", -"Column": "\u03a3\u03c4\u03ae\u03bb\u03b7", -"Row group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd", -"Cell": "\u039a\u03b5\u03bb\u03af", -"Middle": "\u039c\u03ad\u03c3\u03b7", -"Cell type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", -"Copy row": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", -"Row properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", -"Table properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", -"Bottom": "\u039a\u03ac\u03c4\u03c9", -"V Align": "\u039a. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", -"Header": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", -"Right": "\u0394\u03b5\u03be\u03b9\u03ac", -"Insert column after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b4\u03b5\u03be\u03b9\u03ac", -"Cols": "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", -"Insert row after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9", -"Width": "\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2", -"Cell properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", -"Left": "\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", -"Cut row": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", -"Delete column": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2", -"Center": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b1\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7", -"Merge cells": "\u03a3\u03c5\u03b3\u03c7\u03ce\u03bd\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", -"Insert template": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 ", -"Templates": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1", -"Background color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5", -"Custom...": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae...", -"Custom color": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1", -"No color": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03c7\u03c1\u03ce\u03bc\u03b1", -"Text color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 ", -"Show blocks": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bc\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", -"Show invisible characters": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ba\u03c1\u03c5\u03c6\u03ce\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03c9\u03bd", -"Words: {0}": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2: {0}", -"Insert": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae", -"File": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf", -"Edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u0395\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u039a\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F9 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F10 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-0 \u03b3\u03b9\u03b1 \u03b2\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", -"Tools": "\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1", -"View": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae", -"Table": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2", -"Format": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/en_CA.js b/Resources/public/vendor/tinymce/langs/en_CA.js deleted file mode 100644 index c91f2821..00000000 --- a/Resources/public/vendor/tinymce/langs/en_CA.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('en_CA',{ -"Cut": "Cut", -"Heading 5": "Heading 5", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", -"Heading 4": "Heading 4", -"Div": "Div", -"Heading 2": "Heading 2", -"Paste": "Paste", -"Close": "Close", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "Align right", -"New document": "New document", -"Blockquote": "Blockquote", -"Numbered list": "Numbered list", -"Heading 1": "Heading 1", -"Headings": "Headings", -"Increase indent": "Increase indent", -"Formats": "Formats", -"Headers": "Headers", -"Select all": "Select all", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "Undo", -"Strikethrough": "Strikethrough", -"Bullet list": "Bullet list", -"Header 1": "Header 1", -"Superscript": "Superscript", -"Clear formatting": "Clear formatting", -"Font Sizes": "Font Sizes", -"Subscript": "Subscript", -"Header 6": "Header 6", -"Redo": "Redo", -"Paragraph": "Paragraph", -"Ok": "Ok", -"Bold": "Bold", -"Code": "Code", -"Italic": "Italic", -"Align center": "Align center", -"Header 5": "Header 5", -"Heading 6": "Heading 6", -"Heading 3": "Heading 3", -"Decrease indent": "Decrease indent", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "Underline", -"Cancel": "Cancel", -"Justify": "Justify", -"Inline": "Inline", -"Copy": "Copy", -"Align left": "Align left", -"Visual aids": "Visual aids", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", -"Restore last draft": "Restore last draft", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "Right to left", -"Left to right": "Left to right", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document properties", -"Title": "Title", -"Keywords": "Keywords", -"Encoding": "Encoding", -"Description": "Description", -"Author": "Author", -"Fullscreen": "Fullscreen", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"H Align": "H Align", -"Top": "Top", -"Header cell": "Header cell", -"Column": "Column", -"Row group": "Row group", -"Cell": "Cell", -"Middle": "Middle", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Bottom": "Bottom", -"V Align": "V Align", -"Header": "Header", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background colour", -"Text color": "Text colour", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/en_GB.js b/Resources/public/vendor/tinymce/langs/en_GB.js deleted file mode 100644 index a588b887..00000000 --- a/Resources/public/vendor/tinymce/langs/en_GB.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('en_GB',{ -"Cut": "Cut", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", -"Div": "Div", -"Paste": "Paste", -"Close": "Close", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "Align right", -"New document": "New document", -"Blockquote": "Blockquote", -"Numbered list": "Numbered list", -"Increase indent": "Increase indent", -"Formats": "Formats", -"Headers": "Headers", -"Select all": "Select all", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "Undo", -"Strikethrough": "Strike-through", -"Bullet list": "Bullet list", -"Header 1": "Header 1", -"Superscript": "Superscript", -"Clear formatting": "Clear formatting", -"Font Sizes": "Font Sizes", -"Subscript": "Subscript", -"Header 6": "Header 6", -"Redo": "Redo", -"Paragraph": "Paragraph", -"Ok": "Ok", -"Bold": "Bold", -"Code": "Code", -"Italic": "Italic", -"Align center": "Align centre", -"Header 5": "Header 5", -"Decrease indent": "Decrease indent", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "Underline", -"Cancel": "Cancel", -"Justify": "Justify", -"Inline": "Inline", -"Copy": "Copy", -"Align left": "Align left", -"Visual aids": "Visual aids", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", -"Restore last draft": "Restore last draft", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "Right to left", -"Left to right": "Left to right", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document properties", -"Title": "Title", -"Keywords": "Keywords", -"Encoding": "Encoding", -"Description": "Description", -"Author": "Author", -"Fullscreen": "Full-screen", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "URL", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Non-breaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spell-check", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Centre", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background colour", -"Text color": "Text colour", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/es.js b/Resources/public/vendor/tinymce/langs/es.js deleted file mode 100644 index 9eb060ba..00000000 --- a/Resources/public/vendor/tinymce/langs/es.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('es',{ -"Cut": "Cortar", -"Heading 5": "Encabezado 5", -"Header 2": "Encabezado 2 ", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado", -"Heading 4": "Encabezado 4", -"Div": "Capa", -"Heading 2": "Encabezado 2", -"Paste": "Pegar", -"Close": "Cerrar", -"Font Family": "Familia de fuentes", -"Pre": "Pre", -"Align right": "Alinear a la derecha", -"New document": "Nuevo documento", -"Blockquote": "Bloque de cita", -"Numbered list": "Lista numerada", -"Heading 1": "Encabezado 1", -"Headings": "Encabezados", -"Increase indent": "Incrementar sangr\u00eda", -"Formats": "Formatos", -"Headers": "Encabezados", -"Select all": "Seleccionar todo", -"Header 3": "Encabezado 3", -"Blocks": "Bloques", -"Undo": "Deshacer", -"Strikethrough": "Tachado", -"Bullet list": "Lista de vi\u00f1etas", -"Header 1": "Encabezado 1", -"Superscript": "Super\u00edndice", -"Clear formatting": "Limpiar formato", -"Font Sizes": "Tama\u00f1os de fuente", -"Subscript": "Sub\u00edndice", -"Header 6": "Encabezado 6", -"Redo": "Rehacer", -"Paragraph": "P\u00e1rrafo", -"Ok": "Ok", -"Bold": "Negrita", -"Code": "C\u00f3digo", -"Italic": "It\u00e1lica", -"Align center": "Alinear al centro", -"Header 5": "Encabezado 5 ", -"Heading 6": "Encabezado 6", -"Heading 3": "Encabezado 3", -"Decrease indent": "Disminuir sangr\u00eda", -"Header 4": "Encabezado 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.", -"Underline": "Subrayado", -"Cancel": "Cancelar", -"Justify": "Justificar", -"Inline": "en l\u00ednea", -"Copy": "Copiar", -"Align left": "Alinear a la izquierda", -"Visual aids": "Ayudas visuales", -"Lower Greek": "Inferior Griega", -"Square": "Cuadrado", -"Default": "Por defecto", -"Lower Alpha": "Inferior Alfa", -"Circle": "C\u00edrculo", -"Disc": "Disco", -"Upper Alpha": "Superior Alfa", -"Upper Roman": "Superior Romana", -"Lower Roman": "Inferior Romana", -"Name": "Nombre", -"Anchor": "Ancla", -"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?", -"Restore last draft": "Restaurar el \u00faltimo borrador", -"Special character": "Car\u00e1cter especial", -"Source code": "C\u00f3digo fuente", -"Color": "Color", -"Right to left": "De derecha a izquierda", -"Left to right": "De izquierda a derecha", -"Emoticons": "Emoticonos", -"Robots": "Robots", -"Document properties": "Propiedades del documento", -"Title": "T\u00edtulo", -"Keywords": "Palabras clave", -"Encoding": "Codificaci\u00f3n", -"Description": "Descripci\u00f3n", -"Author": "Autor", -"Fullscreen": "Pantalla completa", -"Horizontal line": "L\u00ednea horizontal", -"Horizontal space": "Espacio horizontal", -"Insert\/edit image": "Insertar\/editar imagen", -"General": "General", -"Advanced": "Avanzado", -"Source": "Fuente", -"Border": "Borde", -"Constrain proportions": "Restringir proporciones", -"Vertical space": "Espacio vertical", -"Image description": "Descripci\u00f3n de la imagen", -"Style": "Estilo", -"Dimensions": "Dimensiones", -"Insert image": "Insertar imagen", -"Insert date\/time": "Insertar fecha\/hora", -"Remove link": "Quitar enlace", -"Url": "URL", -"Text to display": "Texto para mostrar", -"Anchors": "Anclas", -"Insert link": "Insertar enlace", -"New window": "Nueva ventana", -"None": "Ninguno", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?", -"Target": "Destino", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?", -"Insert\/edit link": "Insertar\/editar enlace", -"Insert\/edit video": "Insertar\/editar video", -"Poster": "Miniatura", -"Alternative source": "Fuente alternativa", -"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo", -"Insert video": "Insertar video", -"Embed": "Incrustado", -"Nonbreaking space": "Espacio fijo", -"Page break": "Salto de p\u00e1gina", -"Paste as text": "Pegar como texto", -"Preview": "Previsualizar", -"Print": "Imprimir", -"Save": "Guardar", -"Could not find the specified string.": "No se encuentra la cadena de texto especificada", -"Replace": "Reemplazar", -"Next": "Siguiente", -"Whole words": "Palabras completas", -"Find and replace": "Buscar y reemplazar", -"Replace with": "Reemplazar con", -"Find": "Buscar", -"Replace all": "Reemplazar todo", -"Match case": "Coincidencia exacta", -"Prev": "Anterior", -"Spellcheck": "Corrector ortogr\u00e1fico", -"Finish": "Finalizar", -"Ignore all": "Ignorar todos", -"Ignore": "Ignorar", -"Add to Dictionary": "A\u00f1adir al Diccionario", -"Insert row before": "Insertar fila antes", -"Rows": "Filas", -"Height": "Alto", -"Paste row after": "Pegar la fila despu\u00e9s", -"Alignment": "Alineaci\u00f3n", -"Border color": "Color del borde", -"Column group": "Grupo de columnas", -"Row": "Fila", -"Insert column before": "Insertar columna antes", -"Split cell": "Dividir celdas", -"Cell padding": "Relleno de celda", -"Cell spacing": "Espacio entre celdas", -"Row type": "Tipo de fila", -"Insert table": "Insertar tabla", -"Body": "Cuerpo", -"Caption": "Subt\u00edtulo", -"Footer": "Pie de p\u00e1gina", -"Delete row": "Eliminar fila", -"Paste row before": "Pegar la fila antes", -"Scope": "\u00c1mbito", -"Delete table": "Eliminar tabla", -"H Align": "Alineamiento Horizontal", -"Top": "Arriba", -"Header cell": "Celda de la cebecera", -"Column": "Columna", -"Row group": "Grupo de filas", -"Cell": "Celda", -"Middle": "Centro", -"Cell type": "Tipo de celda", -"Copy row": "Copiar fila", -"Row properties": "Propiedades de la fila", -"Table properties": "Propiedades de la tabla", -"Bottom": "Abajo", -"V Align": "Alineamiento Vertical", -"Header": "Cabecera", -"Right": "Derecha", -"Insert column after": "Insertar columna despu\u00e9s", -"Cols": "Columnas", -"Insert row after": "Insertar fila despu\u00e9s ", -"Width": "Ancho", -"Cell properties": "Propiedades de la celda", -"Left": "Izquierda", -"Cut row": "Cortar fila", -"Delete column": "Eliminar columna", -"Center": "Centrado", -"Merge cells": "Combinar celdas", -"Insert template": "Insertar plantilla", -"Templates": "Plantillas", -"Background color": "Color de fondo", -"Custom...": "Personalizar...", -"Custom color": "Color personalizado", -"No color": "Sin color", -"Text color": "Color del texto", -"Show blocks": "Mostrar bloques", -"Show invisible characters": "Mostrar caracteres invisibles", -"Words: {0}": "Palabras: {0}", -"Insert": "Insertar", -"File": "Archivo", -"Edit": "Editar", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda", -"Tools": "Herramientas", -"View": "Ver", -"Table": "Tabla", -"Format": "Formato" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/et.js b/Resources/public/vendor/tinymce/langs/et.js deleted file mode 100644 index 752cc59f..00000000 --- a/Resources/public/vendor/tinymce/langs/et.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('et',{ -"Cut": "L\u00f5ika", -"Header 2": "Pealkiri 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Sinu veebilehitseja ei toeta otsest ligip\u00e4\u00e4su l\u00f5ikelauale. Palun kasuta selle asemel klaviatuuri kiirk\u00e4sklusi Ctrl+X\/C\/V.", -"Div": "Sektsioon", -"Paste": "Kleebi", -"Close": "Sulge", -"Font Family": "Kirjastiilid", -"Pre": "Eelvormindatud", -"Align right": "Joonda paremale", -"New document": "Uus dokument", -"Blockquote": "Plokktsitaat", -"Numbered list": "J\u00e4rjestatud loend", -"Increase indent": "Suurenda taanet", -"Formats": "Vormingud", -"Headers": "P\u00e4ised", -"Select all": "Vali k\u00f5ik", -"Header 3": "Pealkiri 3", -"Blocks": "Plokid", -"Undo": "V\u00f5ta tagasi", -"Strikethrough": "L\u00e4bikriipsutatud", -"Bullet list": "J\u00e4rjestamata loend", -"Header 1": "Pealkiri 1", -"Superscript": "\u00dclaindeks", -"Clear formatting": "Puhasta vorming", -"Font Sizes": "Kirja suurused", -"Subscript": "Alaindeks", -"Header 6": "Pealkiri 6", -"Redo": "Tee uuesti", -"Paragraph": "L\u00f5ik", -"Ok": "Ok", -"Bold": "Rasvane", -"Code": "Kood", -"Italic": "Kaldkiri", -"Align center": "Joonda keskele", -"Header 5": "Pealkiri 5", -"Decrease indent": "V\u00e4henda taanet", -"Header 4": "Pealkiri 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Asetamine on n\u00fc\u00fcd tekstire\u017eiimis. Sisu asetatakse n\u00fc\u00fcd lihttekstina, kuni sa l\u00fclitad selle valiku v\u00e4lja.", -"Underline": "Allakriipsutatud", -"Cancel": "Katkesta", -"Justify": "Joonda r\u00f6\u00f6pselt", -"Inline": "Reasisene", -"Copy": "Kopeeri", -"Align left": "Joonda vasakule", -"Visual aids": "N\u00e4itevahendid", -"Lower Greek": "Kreeka v\u00e4iket\u00e4hed (\u03b1, \u03b2, \u03b3)", -"Square": "Ruut", -"Default": "Vaikimisi", -"Lower Alpha": "V\u00e4iket\u00e4hed (a, b, c)", -"Circle": "Ring", -"Disc": "Ketas", -"Upper Alpha": "Suurt\u00e4hed (A, B, C)", -"Upper Roman": "Rooma suurt\u00e4hed (I, II, III)", -"Lower Roman": "Rooma v\u00e4iket\u00e4hed (i, ii, iii)", -"Name": "Nimi", -"Anchor": "Ankur", -"You have unsaved changes are you sure you want to navigate away?": "Sul on salvestamata muudatusi. Oled Sa kindel, et soovid mujale navigeeruda?", -"Restore last draft": "Taasta viimane mustand", -"Special character": "Erim\u00e4rk", -"Source code": "L\u00e4htekood", -"Right to left": "Paremalt vasakule", -"Left to right": "Vasakult paremale", -"Emoticons": "Emotikonid", -"Robots": "Robotid", -"Document properties": "Dokumendi omadused", -"Title": "Pealkiri", -"Keywords": "M\u00e4rks\u00f5nad", -"Encoding": "M\u00e4rgistik", -"Description": "Kirjeldus", -"Author": "Autor", -"Fullscreen": "T\u00e4isekraan", -"Horizontal line": "Horisontaaljoon", -"Horizontal space": "Reavahe", -"Insert\/edit image": "Lisa\/muuda pilt", -"General": "\u00dcldine", -"Advanced": "T\u00e4iendavad seaded", -"Source": "Allikas", -"Border": "\u00c4\u00e4ris", -"Constrain proportions": "S\u00e4ilita kuvasuhe", -"Vertical space": "P\u00fcstine vahe", -"Image description": "Pildi kirjeldus", -"Style": "Stiil", -"Dimensions": "M\u00f5\u00f5tmed", -"Insert image": "Lisa pilt", -"Insert date\/time": "Lisa kuup\u00e4ev\/kellaaeg", -"Remove link": "Eemalda link", -"Url": "Viide (url)", -"Text to display": "Kuvatav tekst", -"Anchors": "Ankrud", -"Insert link": "Lisa link", -"New window": "Uus aken", -"None": "Puudub", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Sihtm\u00e4rk", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Lisa\/muuda link", -"Insert\/edit video": "Lisa\/muuda video", -"Poster": "Lisaja", -"Alternative source": "Teine allikas", -"Paste your embed code below:": "Kleebi oma manustamiskood siia alla:", -"Insert video": "Lisa video", -"Embed": "Manusta", -"Nonbreaking space": "T\u00fchim\u00e4rk (nbsp)", -"Page break": "Lehevahetus", -"Paste as text": "Aseta tekstina", -"Preview": "Eelvaade", -"Print": "Tr\u00fcki", -"Save": "Salvesta", -"Could not find the specified string.": "Ei suutnud leida etteantud s\u00f5net.", -"Replace": "Asenda", -"Next": "J\u00e4rg", -"Whole words": "Terviks\u00f5nad", -"Find and replace": "Otsi ja asenda", -"Replace with": "Asendus", -"Find": "Otsi", -"Replace all": "Asenda k\u00f5ik", -"Match case": "Erista suur- ja v\u00e4iket\u00e4hti", -"Prev": "Eelm", -"Spellcheck": "\u00d5igekirja kontroll", -"Finish": "L\u00f5peta", -"Ignore all": "Eira k\u00f5iki", -"Ignore": "Eira", -"Insert row before": "Lisa rida enne", -"Rows": "Read", -"Height": "K\u00f5rgus", -"Paste row after": "Kleebi rida j\u00e4rele", -"Alignment": "Joondus", -"Column group": "Veergude r\u00fchm", -"Row": "Rida", -"Insert column before": "Lisa tulp enne", -"Split cell": "T\u00fckelda lahter", -"Cell padding": "Lahtri sisu ja tabeli \u00e4\u00e4rise vahe", -"Cell spacing": "Lahtrivahe", -"Row type": "Rea t\u00fc\u00fcp", -"Insert table": "Lisa tabel", -"Body": "P\u00f5hiosa", -"Caption": "Alapealkiri", -"Footer": "Jalus", -"Delete row": "Kustuta rida", -"Paste row before": "Kleebi rida enne", -"Scope": "Ulatus", -"Delete table": "Kustuta tabel", -"Header cell": "P\u00e4islahter", -"Column": "Tulp", -"Cell": "Lahter", -"Header": "P\u00e4is", -"Cell type": "Lahtri t\u00fc\u00fcp", -"Copy row": "Kopeeri rida", -"Row properties": "Rea omadused", -"Table properties": "Tabeli omadused", -"Row group": "Ridade r\u00fchm", -"Right": "Paremal", -"Insert column after": "Lisa tulp j\u00e4rele", -"Cols": "Veerud", -"Insert row after": "Lisa rida j\u00e4rele", -"Width": "Laius", -"Cell properties": "Lahtri omadused", -"Left": "Vasakul", -"Cut row": "L\u00f5ika rida", -"Delete column": "Kustuta tulp", -"Center": "Keskel", -"Merge cells": "\u00dchenda lahtrid", -"Insert template": "Lisa mall", -"Templates": "Mallid", -"Background color": "Tausta v\u00e4rv", -"Text color": "Teksti v\u00e4rv", -"Show blocks": "N\u00e4ita plokke", -"Show invisible characters": "N\u00e4ita peidetud m\u00e4rke", -"Words: {0}": "S\u00f5nu: {0}", -"Insert": "Sisesta", -"File": "Fail", -"Edit": "Muuda", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastatud teksti ala. Men\u00fc\u00fc jaoks vajuta ALT-F9. T\u00f6\u00f6riistariba jaoks vajuta ALT-F10. Abi saamiseks vajuta ALT-0.", -"Tools": "T\u00f6\u00f6riistad", -"View": "Vaade", -"Table": "Tabel", -"Format": "Vorming" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/eu.js b/Resources/public/vendor/tinymce/langs/eu.js deleted file mode 100644 index 88bed1a4..00000000 --- a/Resources/public/vendor/tinymce/langs/eu.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('eu',{ -"Cut": "Ebaki", -"Heading 5": "5. izenburua", -"Header 2": "2 Goiburua", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Zure nabigatzaileak ez du arbela zuzenean erabiltzeko euskarririk. Mesedez erabili CTRL+X\/C\/V teklatuko lasterbideak.", -"Heading 4": "4. izenburua", -"Div": "Div", -"Heading 2": "2. izenburua", -"Paste": "Itsatsi", -"Close": "Itxi", -"Font Family": "Letra-tipo familia", -"Pre": "Pre", -"Align right": "Lerrokatu eskuinean", -"New document": "Dokumentu berria", -"Blockquote": "Blockquote", -"Numbered list": "Zerrenda zenbatua", -"Heading 1": "1. izenburua", -"Headings": "Izenburuak", -"Increase indent": "Handitu koska", -"Formats": "Formatuak", -"Headers": "Goiburuak", -"Select all": "Hautatu dena", -"Header 3": "3 Goiburua", -"Blocks": "Blokeak", -"Undo": "Desegin", -"Strikethrough": "Marratua", -"Bullet list": "Bulet zerrenda", -"Header 1": "1 Goiburua", -"Superscript": "Goi-indize", -"Clear formatting": "Garbitu formatua", -"Font Sizes": "Letra-tamainuak", -"Subscript": "Azpiindize", -"Header 6": "6 Goiburua", -"Redo": "Berregin", -"Paragraph": "Parrafoa", -"Ok": "Ondo", -"Bold": "Lodia", -"Code": "Kodea", -"Italic": "Etzana", -"Align center": "Lerrokatu horizontalki erdian", -"Header 5": "5 Goiburua", -"Heading 6": "6. izenburua", -"Heading 3": "3. izenburua", -"Decrease indent": "Txikitu koska", -"Header 4": "4 Goiburua", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Itsatsi testu arrunt moduan dago orain. Edukiak testu arruntak bezala itsatsiko dira aukera hau itzaltzen duzunera arte.", -"Underline": "Azpimarratua", -"Cancel": "Ezeztatu", -"Justify": "Justifikatuta", -"Inline": "Lerroan", -"Copy": "Kopiatu", -"Align left": "Lerrokatu ezkerrean", -"Visual aids": "Laguntza bisualak", -"Lower Greek": "Behe grekoa", -"Square": "Karratua", -"Default": "Lehenetstia", -"Lower Alpha": "Behe alfa", -"Circle": "Zirkulua", -"Disc": "Diskoa", -"Upper Alpha": "Goi alfa", -"Upper Roman": "Goi erromatarra", -"Lower Roman": "Behe erromatarra", -"Name": "Izena", -"Anchor": "Esteka", -"You have unsaved changes are you sure you want to navigate away?": "Gorde gabeko aldaketak dituzu, zihur zaude hemendik irten nahi duzula?", -"Restore last draft": "Leheneratu azken zirriborroa", -"Special character": "Karaktere bereziak", -"Source code": "Iturburu-kodea", -"Right to left": "Eskuinetik ezkerrera", -"Left to right": "Ezkerretik eskuinera", -"Emoticons": "Irrifartxoak", -"Robots": "Robotak", -"Document properties": "Dokumentuaren propietateak", -"Title": "Titulua", -"Keywords": "Hitz gakoak", -"Encoding": "Encoding", -"Description": "Deskribapena", -"Author": "Egilea", -"Fullscreen": "Pantaila osoa", -"Horizontal line": "Marra horizontala", -"Horizontal space": "Hutsune horizontala", -"Insert\/edit image": "Irudia txertatu\/editatu", -"General": "Orokorra", -"Advanced": "Aurreratua", -"Source": "Iturburua", -"Border": "Ertza", -"Constrain proportions": "Zerraditu proportzioak", -"Vertical space": "Hutsune bertikala", -"Image description": "Irudiaren deskribapena", -"Style": "Estiloa", -"Dimensions": "Neurriak", -"Insert image": "Irudia txertatu", -"Insert date\/time": "Data\/ordua txertatu", -"Remove link": "Kendu esteka", -"Url": "Url", -"Text to display": "Bistaratzeko testua", -"Anchors": "Estekak", -"Insert link": "Esteka txertatu", -"New window": "Lehio berria", -"None": "Bat ere ez", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Sartu duzun URL-ak kanpoko esteka dela dirudi. Nahi duzu dagokion http:\/\/ aurrizkia gehitzea?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sartu duzun URL-ak e-posta helbidea dela dirudi. Nahi duzu dagokion mailto: aurrizkia gehitzea?", -"Insert\/edit link": "Esteka txertatu\/editatu", -"Insert\/edit video": "Bideoa txertatu\/editatu", -"Poster": "Poster-a", -"Alternative source": "Iturburu alternatiboa", -"Paste your embed code below:": "Itsatsi hemen zure enkapsulatzeko kodea:", -"Insert video": "Bideoa txertatu", -"Embed": "Kapsulatu", -"Nonbreaking space": "Zuriune zatiezina", -"Page break": "Orrialde-jauzia", -"Paste as text": "Itsatsi testu bezala", -"Preview": "Aurrebista", -"Print": "Inprimatu", -"Save": "Gorde", -"Could not find the specified string.": "Ezin izan da zehaztutako katea aurkitu.", -"Replace": "Ordeztu", -"Next": "Hurrengoa", -"Whole words": "hitz osoak", -"Find and replace": "Bilatu eta ordeztu", -"Replace with": "Honekin ordeztu", -"Find": "Bilatu", -"Replace all": "Ordeztu dena", -"Match case": "Maiuskula\/minuskula", -"Prev": "Aurrekoa", -"Spellcheck": "Egiaztapenak", -"Finish": "Amaitu", -"Ignore all": "Ez ikusi guztia", -"Ignore": "Ez ikusi", -"Insert row before": "Txertatu errenkada aurretik", -"Rows": "Errenkadak", -"Height": "Altuera", -"Paste row after": "Itsatsi errenkada ostean", -"Alignment": "Lerrokatzea", -"Column group": "Zutabe taldea", -"Row": "Errenkada", -"Insert column before": "Txertatu zutabe aurretik", -"Split cell": "Banatu gelaxkak", -"Cell padding": "Gelaxken betegarria", -"Cell spacing": "Gelaxka arteko tartea", -"Row type": "Lerro mota", -"Insert table": "Txertatu taula", -"Body": "Gorputza", -"Caption": "Epigrafea", -"Footer": "Oina", -"Delete row": "Ezabatu errenkada", -"Paste row before": "Itsatsi errenkada aurretik", -"Scope": "Esparrua", -"Delete table": "Taula ezabatu", -"H Align": "Lerrokatze horizontala", -"Top": "Goian", -"Header cell": "Goiburuko gelaxka", -"Column": "Zutabea", -"Row group": "Lerro taldea", -"Cell": "Gelaxka", -"Middle": "Erdian", -"Cell type": "Gelaxka mota", -"Copy row": "Kopiatu errenkada", -"Row properties": "Errenkadaren propietateak", -"Table properties": "Taularen propietateak", -"Bottom": "Behean", -"V Align": "Lerrokatze bertikala", -"Header": "Goiburua", -"Right": "Eskuina", -"Insert column after": "Txertatu zutabea ostean", -"Cols": "Zutabeak", -"Insert row after": "Txertatu errenkada ostean", -"Width": "Zabalera", -"Cell properties": "Gelaxkaren propietateak", -"Left": "Ezkerra", -"Cut row": "Ebaki errenkada", -"Delete column": "Ezabatu zutabea", -"Center": "Erdia", -"Merge cells": "Batu gelaxkak", -"Insert template": "Txertatu txantiloia", -"Templates": "Txantiloiak", -"Background color": "Atzeko kolorea", -"Text color": "Testuaren kolorea", -"Show blocks": "Erakutsi blokeak", -"Show invisible characters": "Erakutsi karaktere izkutuak", -"Words: {0}": "Hitzak: {0}", -"Insert": "Sartu", -"File": "Fitxategia", -"Edit": "Editatu", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Testu aberastuko area. Sakatu ALT-F9 menurako. Sakatu ALT-F10 tresna-barrarako. Sakatu ALT-0 laguntzarako", -"Tools": "Tresnak", -"View": "Ikusi", -"Table": "Taula", -"Format": "Formatua" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/fa.js b/Resources/public/vendor/tinymce/langs/fa.js deleted file mode 100644 index 385c0ab6..00000000 --- a/Resources/public/vendor/tinymce/langs/fa.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('fa',{ -"Cut": "\u0628\u0631\u062f\u0627\u0634\u062a\u0646", -"Header 2": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u062d\u0627\u0641\u0638\u0647 \u06a9\u067e\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u06a9\u0646\u062f. \u0644\u0637\u0641\u0627 \u0627\u0632 \u06a9\u0644\u06cc\u062f \u0647\u0627\u06cc Ctrl+X\/C\/V \u062f\u0631 \u06a9\u06cc\u0628\u0648\u0631\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.", -"Div": "\u062a\u06af \u0628\u062e\u0634 - Div", -"Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646", -"Close": "\u0628\u0633\u062a\u0646", -"Font Family": "\u0641\u0648\u0646\u062a", -"Pre": "\u062a\u06af \u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 - Pre", -"Align right": "\u0631\u0627\u0633\u062a \u0686\u06cc\u0646", -"New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f", -"Blockquote": "\u062a\u06af \u0646\u0642\u0644 \u0642\u0648\u0644 - Blockquote", -"Numbered list": "\u0644\u06cc\u0633\u062a \u0634\u0645\u0627\u0631\u0647 \u0627\u06cc", -"Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648 \u0631\u0641\u062a\u06af\u06cc", -"Formats": "\u0642\u0627\u0644\u0628", -"Headers": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647\u200c\u0647\u0627", -"Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647", -"Header 3": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 3", -"Blocks": "\u0628\u0644\u0648\u06a9", -"Undo": "\t\n\u0628\u0627\u0637\u0644 \u06a9\u0631\u062f\u0646", -"Strikethrough": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647", -"Bullet list": "\u0644\u06cc\u0633\u062a \u062f\u0627\u06cc\u0631\u0647 \u0627\u06cc", -"Header 1": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 1", -"Superscript": "\u0628\u0627\u0644\u0627\u0646\u0648\u06cc\u0633 - \u062d\u0627\u0644\u062a \u062a\u0648\u0627\u0646", -"Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc", -"Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0648\u0646\u062a", -"Subscript": "\u0632\u06cc\u0631 \u0646\u0648\u06cc\u0633 - \u062d\u0627\u0644\u062a \u0627\u0646\u062f\u06cc\u0633", -"Header 6": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 6", -"Redo": "\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647", -"Paragraph": "\u062a\u06af \u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 - Paragraph", -"Ok": "\u0628\u0627\u0634\u0647", -"Bold": "\u062f\u0631\u0634\u062a", -"Code": "\u062a\u06af \u06a9\u062f - Code", -"Italic": "\u062e\u0637 \u06a9\u062c", -"Align center": "\u0648\u0633\u0637 \u0686\u06cc\u0646", -"Header 5": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 5", -"Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648 \u0631\u0641\u062a\u06af\u06cc", -"Header 4": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a. \u062a\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a \u0631\u0627 \u063a\u06cc\u0631\u200c\u0641\u0639\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u0645\u062d\u062a\u0648\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.", -"Underline": "\u062e\u0637 \u0632\u06cc\u0631", -"Cancel": "\u0644\u063a\u0648", -"Justify": "\u0645\u0633\u0627\u0648\u06cc \u0627\u0632 \u0637\u0631\u0641\u06cc\u0646", -"Inline": "\u062e\u0637\u06cc", -"Copy": "\u06a9\u067e\u06cc", -"Align left": "\u0686\u067e \u0686\u06cc\u0646", -"Visual aids": "\u06a9\u0645\u06a9 \u0647\u0627\u06cc \u0628\u0635\u0631\u06cc", -"Lower Greek": "\u06cc\u0648\u0646\u0627\u0646\u06cc \u06a9\u0648\u0686\u06a9", -"Square": "\u0645\u0631\u0628\u0639", -"Default": "\u067e\u06cc\u0634\u0641\u0631\u0636", -"Lower Alpha": "\u0622\u0644\u0641\u0627\u0621 \u06a9\u0648\u0686\u06a9", -"Circle": "\u062f\u0627\u06cc\u0631\u0647", -"Disc": "\u062f\u06cc\u0633\u06a9", -"Upper Alpha": "\u0622\u0644\u0641\u0627\u0621 \u0628\u0632\u0631\u06af", -"Upper Roman": "\u0631\u0648\u0645\u06cc \u0628\u0632\u0631\u06af", -"Lower Roman": "\u0631\u0648\u0645\u06cc \u06a9\u0648\u0686\u06a9", -"Name": "\u0646\u0627\u0645", -"Anchor": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9", -"You have unsaved changes are you sure you want to navigate away?": "\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0628\u0631\u0648\u06cc\u062f\u061f", -"Restore last draft": "\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646 \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633", -"Special character": "\u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0647\u0627\u06cc \u062e\u0627\u0635", -"Source code": "\u06a9\u062f \u0645\u0646\u0628\u0639", -"Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", -"Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a", -"Emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627", -"Robots": "\u0631\u0628\u0627\u062a\u200c\u0647\u0627", -"Document properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f", -"Title": "\u0639\u0646\u0648\u0627\u0646", -"Keywords": "\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc", -"Encoding": "\u06a9\u062f \u06af\u0630\u0627\u0631\u06cc", -"Description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a", -"Author": "\u0646\u0648\u06cc\u0633\u0646\u062f\u0647", -"Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647", -"Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc", -"Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc", -"Insert\/edit image": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", -"General": "\u0639\u0645\u0648\u0645\u06cc", -"Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647", -"Source": "\u0645\u0646\u0628\u0639", -"Border": "\u062d\u0627\u0634\u06cc\u0647", -"Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628", -"Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc", -"Image description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0639\u06a9\u0633", -"Style": "\u0633\u0628\u06a9", -"Dimensions": "\u0627\u0628\u0639\u0627\u062f", -"Insert image": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", -"Insert date\/time": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646", -"Remove link": "\u062d\u0630\u0641 \u0644\u06cc\u0646\u06a9", -"Url": "\u0627\u062f\u0631\u0633 \u0644\u06cc\u0646\u06a9", -"Text to display": "\u0645\u062a\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634", -"Anchors": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9 \u062f\u0627\u062e\u0644 \u0635\u0641\u062d\u0647", -"Insert link": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", -"New window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u062f\u06cc\u062f", -"None": "\u0647\u06cc\u0686 \u06a9\u062f\u0627\u0645", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0646\u062d\u0648\u0647 \u0628\u0627\u0632 \u0634\u062f\u0646 \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", -"Insert\/edit video": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", -"Poster": "\u067e\u0648\u0633\u062a\u0631", -"Alternative source": "\u0645\u0646\u0628\u0639 \u062f\u06cc\u06af\u0631", -"Paste your embed code below:": "\u06a9\u062f \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0627 \u062f\u0627\u062f\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a - embed - \u060c \u062f\u0631 \u0632\u06cc\u0631 \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f:", -"Insert video": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", -"Embed": "\u062c\u0627 \u062f\u0627\u062f\u0646", -"Nonbreaking space": "\u0641\u0636\u0627\u06cc \u063a\u06cc\u0631 \u0634\u06a9\u0633\u062a\u0646", -"Page break": "\u0634\u06a9\u0633\u062a\u0646 \u0635\u0641\u062d\u0647", -"Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646", -"Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634", -"Print": "\u0686\u0627\u067e", -"Save": "\u0630\u062e\u06cc\u0631\u0647", -"Could not find the specified string.": "\u0631\u0634\u062a\u0647 \u0645\u062a\u0646\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f.", -"Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", -"Next": "\u0628\u0639\u062f\u06cc", -"Whole words": "\u0647\u0645\u0647 \u06a9\u0644\u0645\u0647\u200c\u0647\u0627", -"Find and replace": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", -"Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0628\u0627", -"Find": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648", -"Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647", -"Match case": "\u062d\u0633\u0627\u0633 \u0628\u0647 \u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u0648 \u0628\u0632\u0631\u06af", -"Prev": "\u0642\u0628\u0644\u06cc", -"Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u06cc\u06cc", -"Finish": "\u067e\u0627\u06cc\u0627\u0646", -"Ignore all": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0647\u0645\u0647", -"Ignore": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646", -"Insert row before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", -"Rows": "\u062a\u0639\u062f\u0627\u062f \u0633\u0637\u0631\u200c\u0647\u0627", -"Height": "\u0627\u0631\u062a\u0641\u0627\u0639", -"Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", -"Alignment": "\u0631\u062f\u06cc\u0641 \u0628\u0646\u062f\u06cc \u0646\u0648\u0634\u062a\u0647", -"Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646", -"Row": "\u0633\u0637\u0631", -"Insert column before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", -"Split cell": "\u062a\u0642\u0633\u06cc\u0645 \u0633\u0644\u0648\u0644 \u062c\u062f\u0648\u0644", -"Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u0633\u0644\u0648\u0644 \u0647\u0627", -"Cell spacing": "\u0641\u0627\u0635\u0644\u0647\u200c\u06cc \u0628\u06cc\u0646 \u0633\u0644\u0648\u0644 \u0647\u0627", -"Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631", -"Insert table": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062c\u062f\u0648\u0644", -"Body": "\u0628\u062f\u0646\u0647", -"Caption": "\u0639\u0646\u0648\u0627\u0646", -"Footer": "\u067e\u0627\u0646\u0648\u06cc\u0633", -"Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631", -"Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", -"Scope": "\u0645\u062d\u062f\u0648\u062f\u0647\u200c\u06cc \u0639\u0646\u0648\u0627\u0646", -"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", -"Header cell": "\u0633\u0631\u0622\u06cc\u0646\u062f \u0633\u0644\u0648\u0644", -"Column": "\u0633\u062a\u0648\u0646", -"Cell": "\u0633\u0644\u0648\u0644", -"Header": "\u0633\u0631\u0622\u06cc\u0646\u062f", -"Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644", -"Copy row": "\u06a9\u067e\u06cc \u0633\u0637\u0631", -"Row properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0637\u0631", -"Table properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u062c\u062f\u0648\u0644", -"Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631", -"Right": "\u0631\u0627\u0633\u062a", -"Insert column after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", -"Cols": "\u062a\u0639\u062f\u0627\u062f \u0633\u062a\u0648\u0646\u200c\u0647\u0627", -"Insert row after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", -"Width": "\u0639\u0631\u0636", -"Cell properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0644\u0648\u0644", -"Left": "\u0686\u067e", -"Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631", -"Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646", -"Center": "\u0648\u0633\u0637", -"Merge cells": "\u0627\u062f\u063a\u0627\u0645 \u0633\u0644\u0648\u0644\u200c\u0647\u0627", -"Insert template": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0644\u06af\u0648", -"Templates": "\u0627\u0644\u06af\u0648\u200c\u0647\u0627", -"Background color": "\u0631\u0646\u06af \u0632\u0645\u06cc\u0646\u0647 \u0645\u062a\u0646", -"Text color": "\u0631\u0646\u06af \u0645\u062a\u0646", -"Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634\u200c\u0647\u0627", -"Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631\u0647\u0627\u06cc \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0686\u0627\u067e", -"Words: {0}": "\u06a9\u0644\u0645\u0627\u062a : {0}", -"Insert": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646", -"File": "\u067e\u0631\u0648\u0646\u062f\u0647", -"Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u067e\u06cc\u0634\u0631\u0641\u062a\u0647\u200c\u06cc \u0645\u062a\u0646. \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u0646\u0648 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT-F9\u060c \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 ALT-F10 \u0648 \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647\u200c\u06cc \u0631\u0627\u0647\u0646\u0645\u0627 ALT-0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", -"Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627", -"View": "\u0646\u0645\u0627\u06cc\u0634", -"Table": "\u062c\u062f\u0648\u0644", -"Format": "\u0642\u0627\u0644\u0628", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/fa_IR.js b/Resources/public/vendor/tinymce/langs/fa_IR.js deleted file mode 100644 index 5e9addf8..00000000 --- a/Resources/public/vendor/tinymce/langs/fa_IR.js +++ /dev/null @@ -1,113 +0,0 @@ -tinymce.addI18n('fa_IR',{ -"Cut": "\u0628\u0631\u06cc\u062f\u0646", -"Heading 5": "Heading 5", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e \u0628\u0648\u0631\u062f \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u06a9\u0646\u062f \u060c \u0644\u0637\u0641\u0627 \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u06a9\u06cc\u0628\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f . ", -"Heading 4": "Heading 4", -"Div": "\u062a\u06af Div", -"Heading 2": "Heading 2", -"Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646", -"Close": "\u0628\u0633\u062a\u0646", -"Font Family": "\u0646\u0648\u0639 \u0641\u0648\u0646\u062a", -"Pre": "\u062a\u06af Pre", -"Align right": "\u0631\u0627\u0633\u062a \u0686\u06cc\u0646", -"New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f", -"Blockquote": "\u0646\u0642\u0644 \u0642\u0648\u0644", -"Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0639\u062f\u062f\u06cc", -"Heading 1": "Heading 1", -"Headings": "Headings", -"Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", -"Formats": "\u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc \u0647\u0627", -"Headers": "Headers", -"Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647", -"Header 3": "Header 3", -"Blocks": "\u0628\u0644\u0648\u06a9 \u0647\u0627", -"Undo": "\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646", -"Strikethrough": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647", -"Bullet list": "\u0644\u06cc\u0633\u062a \u0646\u0634\u0627\u0646\u0647 \u062f\u0627\u0631", -"Header 1": "Header 1", -"Superscript": "\u0628\u0627\u0644\u0627\u0646\u0648\u06cc\u0633", -"Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc", -"Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0648\u0646\u062a", -"Subscript": "\u0632\u06cc\u0631 \u0646\u0648\u06cc\u0633", -"Header 6": "Header 6", -"Redo": "\u0628\u0627\u0632\u0686\u06cc\u0646", -"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641", -"Ok": "\u0642\u0628\u0648\u0644", -"Bold": "\u062a\u0648\u067e\u0631", -"Code": "\u062a\u06af Code", -"Italic": "\u06a9\u062c", -"Align center": "\u0648\u0633\u0637 \u0686\u06cc\u0646", -"Header 5": "Header 5", -"Heading 6": "Heading 6", -"Heading 3": "Heading 3", -"Decrease indent": "\u06a9\u0645 \u06a9\u0631\u062f\u0646 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0645\u062d\u062a\u0648\u0627\u06cc \u06a9\u067e\u06cc \u0634\u062f\u0647 \u0628\u0635\u0648\u0631\u062a \u0628\u062f\u0648\u0646 \u0627\u0633\u062a\u0627\u06cc\u0644 \u0627\u0646\u062a\u0642\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u06cc\u0627\u0641\u062a \u060c \u062a\u0627 \u0648\u0642\u062a\u06cc \u06a9\u0647 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f . ", -"Underline": "\u0632\u06cc\u0631 \u062e\u0637 \u062f\u0627\u0631", -"Cancel": "\u0627\u0646\u0635\u0631\u0627\u0641", -"Justify": "\u062a\u0631\u0627\u0632 \u06a9\u0631\u062f\u0646", -"Inline": "\u062f\u0631\u0648\u0646 \u062e\u0637\u06cc", -"Copy": "\u06a9\u067e\u06cc", -"Align left": "\u0686\u067e \u0686\u06cc\u0646", -"Visual aids": "\u06a9\u0645\u06a9 \u0645\u062c\u0627\u0632\u06cc", -"Lower Greek": "Greek \u067e\u0627\u06cc\u06cc\u0646\u06cc", -"Square": "\u0645\u0631\u0628\u0639", -"Default": "\u067e\u06cc\u0634 \u0641\u0631\u0636", -"Lower Alpha": "Alpha \u067e\u0627\u06cc\u06cc\u0646\u06cc", -"Circle": "\u062f\u0627\u06cc\u0631\u0647", -"Disc": "\u06af\u0631\u062f\u06cc", -"Upper Alpha": "Alpha \u0628\u0627\u0644\u0627\u06cc\u06cc", -"Upper Roman": "Roman \u0628\u0627\u0644\u0627\u06cc\u06cc", -"Lower Roman": "Roman \u067e\u0627\u06cc\u06cc\u0646\u06cc", -"Name": "\u0646\u0627\u0645", -"Anchor": "\u067e\u06cc\u0648\u0646\u062f", -"You have unsaved changes are you sure you want to navigate away?": "\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u0646\u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f\u060c \u0622\u06cc\u0627 \u0628\u0631\u0627\u06cc \u062e\u0631\u0648\u062c \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f\u061f", -"Restore last draft": "\u0628\u0627\u0632\u0646\u0634\u0627\u0646\u062f\u0646 \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633", -"Special character": "\u06a9\u0627\u0631\u0627\u06a9\u062a\u0631\u0647\u0627\u06cc \u062e\u0627\u0635", -"Source code": "\u0633\u0648\u0631\u0633 \u06a9\u062f", -"Color": "\u0631\u0646\u06af", -"Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", -"Left to right": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", -"Emoticons": "\u0635\u0648\u0631\u062a\u06a9 \u0647\u0627", -"Robots": "Robots", -"Document properties": "\u0645\u0634\u062e\u0635\u0627\u062a \u0633\u0646\u062f", -"Title": "\u0639\u0646\u0648\u0627\u0646", -"Keywords": "\u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc", -"Encoding": "Encoding", -"Description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a", -"Author": "\u0646\u0648\u06cc\u0633\u0646\u062f\u0647", -"Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647", -"Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc", -"Horizontal space": "\u0641\u0636\u0627\u06cc \u062e\u0627\u0644\u06cc \u0627\u0641\u0642\u06cc", -"Insert\/edit image": "\u0642\u0631\u0627\u0631\/\u062a\u063a\u06cc\u06cc\u0631 \u062f\u0627\u062f\u0646 \u0639\u06a9\u0633", -"General": "\u0639\u0645\u0648\u0645\u06cc", -"Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647", -"Source": "\u0645\u0646\u0628\u0639 \u0639\u06a9\u0633", -"Border": "\u062d\u0627\u0634\u06cc\u0647", -"Constrain proportions": "\u0646\u0633\u0628\u062a \u0645\u062d\u062f\u0648\u062f", -"Vertical space": "\u0641\u0636\u0627\u06cc \u062e\u0627\u0644\u06cc \u0639\u0645\u0648\u062f\u06cc", -"Image description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0639\u06a9\u0633", -"Style": "\u0633\u0628\u06a9", -"Dimensions": "\u0627\u0628\u0639\u0627\u062f", -"Insert image": "\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0639\u06a9\u0633", -"Insert date\/time": "\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u062a\u0627\u0631\u06cc\u062e \u0648 \u0632\u0645\u0627\u0646", -"Remove link": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f", -"Url": "\u0622\u062f\u0631\u0633 \u067e\u06cc\u0648\u0646\u062f", -"Text to display": "\u0645\u062a\u0646 \u067e\u06cc\u0648\u0646\u062f", -"Anchors": "\u067e\u06cc\u0648\u0646\u062f", -"Insert link": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f", -"New window": "\u067e\u0646\u062c\u0631\u0647 \u06cc \u062c\u062f\u06cc\u062f", -"None": "\u0647\u06cc\u0686\u06a9\u062f\u0627\u0645", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0622\u062f\u0631\u0633 \u067e\u06cc\u0648\u0646\u062f\u06cc \u06a9\u0647 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u06a9\u0647 \u0622\u062f\u0631\u0633 \u0633\u0627\u06cc\u062a\u06cc \u0627\u0633\u062a \u060c \u0622\u06cc\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u067e\u06cc\u0634\u0648\u0646\u062f http:\/\/ \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0647 \u0622\u0646 \u0627\u0636\u0627\u0641\u0647 \u0634\u0648\u062f \u061f", -"Target": "\u0646\u062d\u0648\u0647 \u06cc \u0628\u0627\u0632 \u0634\u062f\u0646", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0622\u062f\u0631\u0633 \u067e\u06cc\u0648\u0646\u062f\u06cc \u06a9\u0647 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u06a9\u0647 \u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0645\u06cc \u0628\u0627\u0634\u062f \u060c \u0622\u06cc\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u067e\u06cc\u0634\u0648\u0646\u062f mailto: \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0647 \u0622\u0646 \u0627\u0636\u0627\u0641\u0647 \u0634\u0648\u062f . ", -"Insert\/edit link": "\u0642\u0631\u0627\u0631\/\u062a\u063a\u06cc\u06cc\u0631 \u062f\u0627\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f", -"Insert\/edit video": "\u0642\u0631\u0627\u0631\/\u062a\u063a\u06cc\u06cc\u0631 \u062f\u0627\u062f\u0646 \u0648\u06cc\u062f\u06cc\u0648", -"Poster": "\u067e\u0648\u0633\u062a\u0631", -"Alternative source": "\u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", -"Paste your embed code below:": "embed code \u0631\u0627 \u062f\u0631 \u0632\u06cc\u0631 \u06a9\u06cc \u06a9\u0646\u06cc\u062f . ", -"Insert video": "\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0648\u06cc\u062f\u06cc\u0648", -"Embed": "Embed", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/fi.js b/Resources/public/vendor/tinymce/langs/fi.js deleted file mode 100644 index 1130943e..00000000 --- a/Resources/public/vendor/tinymce/langs/fi.js +++ /dev/null @@ -1,194 +0,0 @@ -tinymce.addI18n('fi',{ -"Cut": "Leikkaa", -"Heading 5": "Otsikko 5", -"Header 2": "Otsikko 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Selaimesi ei tue leikekirjan suoraa k\u00e4ytt\u00e4mist\u00e4. Ole hyv\u00e4 ja k\u00e4yt\u00e4 n\u00e4pp\u00e4imist\u00f6n Ctrl+X ja Ctrl+V n\u00e4pp\u00e4inyhdistelmi\u00e4.", -"Heading 4": "Otsikko 4", -"Div": "Div", -"Heading 2": "Otsikko 2", -"Paste": "Liit\u00e4", -"Close": "Sulje", -"Font Family": "Fontti", -"Pre": "Esimuotoiltu", -"Align right": "Tasaa oikealle", -"New document": "Uusi dokumentti", -"Blockquote": "Lainauslohko", -"Numbered list": "J\u00e4rjestetty lista", -"Heading 1": "Otsikko 1", -"Headings": "Otsikot", -"Increase indent": "Loitonna", -"Formats": "Muotoilut", -"Headers": "Otsikot", -"Select all": "Valitse kaikki", -"Header 3": "Otsikko 3", -"Blocks": "Lohkot", -"Undo": "Peru", -"Strikethrough": "Yliviivaus", -"Bullet list": "J\u00e4rjest\u00e4m\u00e4t\u00f6n lista", -"Header 1": "Otsikko 1", -"Superscript": "Yl\u00e4indeksi", -"Clear formatting": "Poista muotoilu", -"Font Sizes": "Fonttikoko", -"Subscript": "Alaindeksi", -"Header 6": "Otsikko 6", -"Redo": "Tee uudelleen", -"Paragraph": "Kappale", -"Ok": "Ok", -"Bold": "Lihavointi", -"Code": "Koodi", -"Italic": "Kursivointi", -"Align center": "Keskit\u00e4", -"Header 5": "Otsikko 5", -"Heading 6": "Otsikko 6", -"Heading 3": "Otsikko 3", -"Decrease indent": "Sisenn\u00e4", -"Header 4": "Otsikko 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Liitt\u00e4minen on nyt pelk\u00e4n tekstin -tilassa. Sis\u00e4ll\u00f6t liitet\u00e4\u00e4n nyt pelkk\u00e4n\u00e4 tekstin\u00e4, kunnes otat vaihtoehdon pois k\u00e4yt\u00f6st\u00e4.", -"Underline": "Alleviivaus", -"Cancel": "Peruuta", -"Justify": "Tasaa", -"Inline": "Samalla rivill\u00e4", -"Copy": "Kopioi", -"Align left": "Tasaa vasemmalle", -"Visual aids": "Visuaaliset neuvot", -"Lower Greek": "pienet kirjaimet: \u03b1, \u03b2, \u03b3", -"Square": "Neli\u00f6", -"Default": "Oletus", -"Lower Alpha": "pienet kirjaimet: a, b, c", -"Circle": "Pallo", -"Disc": "Ympyr\u00e4", -"Upper Alpha": "isot kirjaimet: A, B, C", -"Upper Roman": "isot kirjaimet: I, II, III", -"Lower Roman": "pienet kirjaimet: i, ii, iii", -"Name": "Nimi", -"Anchor": "Ankkuri", -"You have unsaved changes are you sure you want to navigate away?": "Sinulla on tallentamattomia muutoksia, haluatko varmasti siirty\u00e4 toiselle sivulle?", -"Restore last draft": "Palauta aiempi luonnos", -"Special character": "Erikoismerkki", -"Source code": "L\u00e4hdekoodi", -"Color": "V\u00e4ri", -"Right to left": "Oikealta vasemmalle", -"Left to right": "Vasemmalta oikealle", -"Emoticons": "Hymi\u00f6t", -"Robots": "Robotit", -"Document properties": "Dokumentin ominaisuudet", -"Title": "Otsikko", -"Keywords": "Avainsanat", -"Encoding": "Merkist\u00f6", -"Description": "Kuvaus", -"Author": "Tekij\u00e4", -"Fullscreen": "Koko ruutu", -"Horizontal line": "Vaakasuora viiva", -"Horizontal space": "Horisontaalinen tila", -"Insert\/edit image": "Lis\u00e4\u00e4\/muokkaa kuva", -"General": "Yleiset", -"Advanced": "Lis\u00e4asetukset", -"Source": "L\u00e4hde", -"Border": "Reunus", -"Constrain proportions": "S\u00e4ilyt\u00e4 mittasuhteet", -"Vertical space": "Vertikaalinen tila", -"Image description": "Kuvaus", -"Style": "Tyyli", -"Dimensions": "Mittasuhteet", -"Insert image": "Lis\u00e4\u00e4 kuva", -"Insert date\/time": "Lis\u00e4\u00e4 p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 tai aika", -"Remove link": "Poista linkki", -"Url": "Osoite", -"Text to display": "N\u00e4ytett\u00e4v\u00e4 teksti", -"Anchors": "Ankkurit", -"Insert link": "Lis\u00e4\u00e4 linkki", -"New window": "Uusi ikkuna", -"None": "Ei mit\u00e4\u00e4n", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan ulkoinen linkki. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun http:\/\/ -etuliitteen?", -"Target": "Kohde", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan s\u00e4hk\u00f6postiosoite. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun mailto: -etuliitteen?", -"Insert\/edit link": "Lis\u00e4\u00e4 tai muokkaa linkki", -"Insert\/edit video": "Lis\u00e4\u00e4\/muokkaa video", -"Poster": "L\u00e4hett\u00e4j\u00e4", -"Alternative source": "Vaihtoehtoinen l\u00e4hde", -"Paste your embed code below:": "Liit\u00e4 upotuskoodisi alapuolelle:", -"Insert video": "Lis\u00e4\u00e4 video", -"Embed": "Upota", -"Nonbreaking space": "Sitova v\u00e4lily\u00f6nti", -"Page break": "Sivunvaihto", -"Paste as text": "Liit\u00e4 tekstin\u00e4", -"Preview": "Esikatselu", -"Print": "Tulosta", -"Save": "Tallenna", -"Could not find the specified string.": "Haettua merkkijonoa ei l\u00f6ytynyt.", -"Replace": "Korvaa", -"Next": "Seur.", -"Whole words": "Koko sanat", -"Find and replace": "Etsi ja korvaa", -"Replace with": "Korvaa", -"Find": "Etsi", -"Replace all": "Korvaa kaikki", -"Match case": "Erota isot ja pienet kirjaimet", -"Prev": "Edel.", -"Spellcheck": "Oikolue", -"Finish": "Lopeta", -"Ignore all": "\u00c4l\u00e4 huomioi mit\u00e4\u00e4n", -"Ignore": "\u00c4l\u00e4 huomioi", -"Add to Dictionary": "Lis\u00e4\u00e4 sanakirjaan", -"Insert row before": "Lis\u00e4\u00e4 rivi ennen", -"Rows": "Rivit", -"Height": "Korkeus", -"Paste row after": "Liit\u00e4 rivi j\u00e4lkeen", -"Alignment": "Tasaus", -"Border color": "Reunuksen v\u00e4ri", -"Column group": "Sarakeryhm\u00e4", -"Row": "Rivi", -"Insert column before": "Lis\u00e4\u00e4 rivi ennen", -"Split cell": "Jaa solu", -"Cell padding": "Solun tyhj\u00e4 tila", -"Cell spacing": "Solun v\u00e4li", -"Row type": "Rivityyppi", -"Insert table": "Lis\u00e4\u00e4 taulukko", -"Body": "Runko", -"Caption": "Seloste", -"Footer": "Alaosa", -"Delete row": "Poista rivi", -"Paste row before": "Liit\u00e4 rivi ennen", -"Scope": "Laajuus", -"Delete table": "Poista taulukko", -"H Align": "H tasaus", -"Top": "Yl\u00e4reuna", -"Header cell": "Otsikkosolu", -"Column": "Sarake", -"Row group": "Riviryhm\u00e4", -"Cell": "Solu", -"Middle": "Keskikohta", -"Cell type": "Solun tyyppi", -"Copy row": "Kopioi rivi", -"Row properties": "Rivin ominaisuudet", -"Table properties": "Taulukon ominaisuudet", -"Bottom": "Alareuna", -"V Align": "V tasaus", -"Header": "Otsikko", -"Right": "Oikea", -"Insert column after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", -"Cols": "Sarakkeet", -"Insert row after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", -"Width": "Leveys", -"Cell properties": "Solun ominaisuudet", -"Left": "Vasen", -"Cut row": "Leikkaa rivi", -"Delete column": "Poista sarake", -"Center": "Keskell\u00e4", -"Merge cells": "Yhdist\u00e4 solut", -"Insert template": "Lis\u00e4\u00e4 pohja", -"Templates": "Pohjat", -"Background color": "Taustan v\u00e4ri", -"Text color": "Tekstin v\u00e4ri", -"Show blocks": "N\u00e4yt\u00e4 lohkot", -"Show invisible characters": "N\u00e4yt\u00e4 n\u00e4kym\u00e4tt\u00f6m\u00e4t merkit", -"Words: {0}": "Sanat: {0}", -"Insert": "Lis\u00e4\u00e4", -"File": "Tiedosto", -"Edit": "Muokkaa", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastetun tekstin alue. Paina ALT-F9 valikkoon. Paina ALT-F10 ty\u00f6kaluriviin. Paina ALT-0 ohjeeseen.", -"Tools": "Ty\u00f6kalut", -"View": "N\u00e4yt\u00e4", -"Table": "Taulukko", -"Format": "Muotoilu" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/fo.js b/Resources/public/vendor/tinymce/langs/fo.js deleted file mode 100644 index ad64ec81..00000000 --- a/Resources/public/vendor/tinymce/langs/fo.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('fo',{ -"Cut": "Klipp", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "T\u00edn kagi hevur ikki beinlei\u00f0is atgongd til setibor\u00f0i\u00f0. Vinarliga br\u00faka CTRL+X\/C\/V snarvegirnar \u00edsta\u00f0in.", -"Div": "Div", -"Paste": "L\u00edma", -"Close": "Lat aftur", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "H\u00f8gra stilla", -"New document": "N\u00fdtt skjal", -"Blockquote": "Blockquote", -"Numbered list": "Tal listi", -"Increase indent": "vaks inndr\u00e1tt", -"Formats": "Sni\u00f0", -"Headers": "Headers", -"Select all": "Vel alt", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "Angra ger", -"Strikethrough": "Strika \u00edgj\u00f8gnum", -"Bullet list": "Punkt listi", -"Header 1": "Header 1", -"Superscript": "H\u00e1skrift", -"Clear formatting": "Strika sni\u00f0", -"Font Sizes": "Font Sizes", -"Subscript": "L\u00e1gskrift", -"Header 6": "Header 6", -"Redo": "Ger aftur", -"Paragraph": "Paragraph", -"Ok": "Ok", -"Bold": "Feit", -"Code": "Code", -"Italic": "Sk\u00e1ktekstur", -"Align center": "Mi\u00f0set", -"Header 5": "Header 5", -"Decrease indent": "Minka inndr\u00e1tt", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "Undirstrika", -"Cancel": "\u00d3gilda", -"Justify": "L\u00edka breddar", -"Inline": "Inline", -"Copy": "Avrita", -"Align left": "Vinstra stilla", -"Visual aids": "Sj\u00f3nhj\u00e1lp", -"Lower Greek": "L\u00edti Grikskt", -"Square": "Fj\u00f3rhyrningur", -"Default": "Forsettur", -"Lower Alpha": "L\u00edti Alfa", -"Circle": "Ringur", -"Disc": "Skiva", -"Upper Alpha": "St\u00f3rt Alfa", -"Upper Roman": "St\u00f3rt R\u00f3mverskt", -"Lower Roman": "L\u00edti R\u00f3mverskt", -"Name": "Navn", -"Anchor": "Akker", -"You have unsaved changes are you sure you want to navigate away?": "T\u00fa hevur ikki goymdar broytingar. Ert t\u00fa v\u00edsur \u00ed at t\u00fa vilt halda fram?", -"Restore last draft": "Endurskapa seinasta uppkast", -"Special character": "Serst\u00f8k tekn", -"Source code": "keldukoda", -"Right to left": "H\u00f8gra til vinstra", -"Left to right": "Vinstra til h\u00f8gra", -"Emoticons": "Emotikonur", -"Robots": "Robottar", -"Document properties": "Skjal eginleikar", -"Title": "Heiti", -"Keywords": "Leitior\u00f0", -"Encoding": "Koding", -"Description": "L\u00fdsing", -"Author": "H\u00f8vundur", -"Fullscreen": "Fullan sk\u00edggja", -"Horizontal line": "Vatnr\u00f8tt linja", -"Horizontal space": "Vatnr\u00e6tt fr\u00e1st\u00f8\u00f0a", -"Insert\/edit image": "Innset\/r\u00e6tta mynd", -"General": "Vanligt", -"Advanced": "Framkomi", -"Source": "Kelda", -"Border": "Rammi", -"Constrain proportions": "Var\u00f0veit lutfall", -"Vertical space": "Loddr\u00e6t fr\u00e1st\u00f8\u00f0a", -"Image description": "L\u00fdsing av mynd", -"Style": "St\u00edlur", -"Dimensions": "St\u00f8dd", -"Insert image": "Insert image", -"Insert date\/time": "Innset dag\/t\u00ed\u00f0", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Tekstur at v\u00edsa", -"Anchors": "Anchors", -"Insert link": "Innset leinkju", -"New window": "N\u00fdggjan glugga", -"None": "Eingin", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "M\u00e1l", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Innset\/r\u00e6tta leinkju", -"Insert\/edit video": "Innset\/r\u00e6tta kykmynd", -"Poster": "Uppslag", -"Alternative source": "Onnur kelda", -"Paste your embed code below:": "Innset ta\u00f0 kodu, sum skal leggjast inn \u00ed, ni\u00f0anfyri:", -"Insert video": "Innset kykmynd", -"Embed": "Legg inn \u00ed", -"Nonbreaking space": "Hart millumr\u00fam", -"Page break": "S\u00ed\u00f0uskift", -"Paste as text": "Paste as text", -"Preview": "V\u00eds frammanundan", -"Print": "Prenta", -"Save": "Goym", -"Could not find the specified string.": "Kundi ikki finna leititekst", -"Replace": "Set \u00edsta\u00f0in", -"Next": "N\u00e6sta", -"Whole words": "Heil or\u00f0", -"Find and replace": "Finn og set \u00edsta\u00f0in", -"Replace with": "Set \u00edsta\u00f0in", -"Find": "Finn", -"Replace all": "Set \u00edsta\u00f0in fyri \u00f8ll", -"Match case": "ST\u00d3RIR og l\u00edtlir b\u00f3kstavir", -"Prev": "Fyrra", -"Spellcheck": "R\u00e6ttstavari", -"Finish": "Enda", -"Ignore all": "Leyp alt um", -"Ignore": "Leyp um", -"Insert row before": "Innset ra\u00f0 \u00e1\u00f0renn", -"Rows": "R\u00f8\u00f0", -"Height": "H\u00e6dd", -"Paste row after": "L\u00edma ra\u00f0 aftan\u00e1", -"Alignment": "Stilling", -"Column group": "Teig b\u00f3lkur", -"Row": "Ra\u00f0", -"Insert column before": "Innset teig \u00e1\u00f0renn", -"Split cell": "Syndra puntar", -"Cell padding": "Punt fylling", -"Cell spacing": "Punt fr\u00e1st\u00f8\u00f0a", -"Row type": "Ra\u00f0 slag", -"Insert table": "Innset talvu", -"Body": "Likam", -"Caption": "Tekstur", -"Footer": "F\u00f3tur", -"Delete row": "Skrika ra\u00f0", -"Paste row before": "L\u00edma ra\u00f0 \u00e1\u00f0renn", -"Scope": "N\u00fdtslu\u00f8ki", -"Delete table": "Strika talvu", -"Header cell": "H\u00f8vd puntur", -"Column": "Teigur", -"Cell": "Puntur", -"Header": "H\u00f8vd", -"Cell type": "Punt slag", -"Copy row": "Avrita ra\u00f0", -"Row properties": "Ra\u00f0 eginleikar", -"Table properties": "Talvu eginleikar", -"Row group": "Ra\u00f0 b\u00f3lkur", -"Right": "H\u00f8gra", -"Insert column after": "Innset teig aftan\u00e1", -"Cols": "Teigar", -"Insert row after": "Innset ra\u00f0 aftan\u00e1", -"Width": "Breidd", -"Cell properties": "Punt eginleikar", -"Left": "Vinstra", -"Cut row": "Klipp ra\u00f0", -"Delete column": "Strika teig", -"Center": "Mi\u00f0a", -"Merge cells": "Fl\u00e6tta puntar", -"Insert template": "Innset form", -"Templates": "Formur", -"Background color": "Bakgrundslitur", -"Text color": "Tekst litur", -"Show blocks": "V\u00eds blokkar", -"Show invisible characters": "V\u00eds \u00f3sj\u00f3nlig tekn", -"Words: {0}": "Or\u00f0: {0}", -"Insert": "Innset", -"File": "F\u00edla", -"Edit": "Ritstj\u00f3rna", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "R\u00edkt Tekst \u00d8ki. Tr\u00fdst ALT-F9 fyri valmynd. Tr\u00fdst ALT-F10 fyri ambo\u00f0slinju. Tr\u00fdst ALT-0 fyri hj\u00e1lp", -"Tools": "Ambo\u00f0", -"View": "V\u00eds", -"Table": "Talva", -"Format": "Smi\u00f0" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/fr_FR.js b/Resources/public/vendor/tinymce/langs/fr_FR.js deleted file mode 100644 index d26a851b..00000000 --- a/Resources/public/vendor/tinymce/langs/fr_FR.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('fr_FR',{ -"Cut": "Couper", -"Heading 5": "En-t\u00eate 5", -"Header 2": "Titre 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.", -"Heading 4": "En-t\u00eate 4", -"Div": "Div", -"Heading 2": "En-t\u00eate 2", -"Paste": "Coller", -"Close": "Fermer", -"Font Family": "Polices de caract\u00e8res", -"Pre": "Pre", -"Align right": "Aligner \u00e0 droite", -"New document": "Nouveau document", -"Blockquote": "Citation", -"Numbered list": "Num\u00e9rotation", -"Heading 1": "En-t\u00eate 1", -"Headings": "En-t\u00eates", -"Increase indent": "Augmenter le retrait", -"Formats": "Formats", -"Headers": "Titres", -"Select all": "Tout s\u00e9lectionner", -"Header 3": "Titre 3", -"Blocks": "Blocs", -"Undo": "Annuler", -"Strikethrough": "Barr\u00e9", -"Bullet list": "Puces", -"Header 1": "Titre 1", -"Superscript": "Exposant", -"Clear formatting": "Effacer la mise en forme", -"Font Sizes": "Tailles de la police", -"Subscript": "Indice", -"Header 6": "Titre 6", -"Redo": "R\u00e9tablir", -"Paragraph": "Paragraphe", -"Ok": "Ok", -"Bold": "Gras", -"Code": "Code", -"Italic": "Italique", -"Align center": "Aligner au centre", -"Header 5": "Titre 5", -"Heading 6": "En-t\u00eate 6", -"Heading 3": "En-t\u00eate 3", -"Decrease indent": "Diminuer le retrait", -"Header 4": "Titre 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.", -"Underline": "Soulign\u00e9", -"Cancel": "Annuler", -"Justify": "Justifi\u00e9", -"Inline": "En ligne", -"Copy": "Copier", -"Align left": "Aligner \u00e0 gauche", -"Visual aids": "Aides visuelle", -"Lower Greek": "Grec minuscule", -"Square": "Carr\u00e9", -"Default": "Par d\u00e9faut", -"Lower Alpha": "Alpha minuscule", -"Circle": "Cercle", -"Disc": "Disque", -"Upper Alpha": "Alpha majuscule", -"Upper Roman": "Romain majuscule", -"Lower Roman": "Romain minuscule", -"Name": "Nom", -"Anchor": "Ancre", -"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?", -"Restore last draft": "Restaurer le dernier brouillon", -"Special character": "Caract\u00e8res sp\u00e9ciaux", -"Source code": "Code source", -"Color": "Couleur", -"Right to left": "Droite \u00e0 gauche", -"Left to right": "Gauche \u00e0 droite", -"Emoticons": "Emotic\u00f4nes", -"Robots": "Robots", -"Document properties": "Propri\u00e9t\u00e9 du document", -"Title": "Titre", -"Keywords": "Mots-cl\u00e9s", -"Encoding": "Encodage", -"Description": "Description", -"Author": "Auteur", -"Fullscreen": "Plein \u00e9cran", -"Horizontal line": "Ligne horizontale", -"Horizontal space": "Espacement horizontal", -"Insert\/edit image": "Ins\u00e9rer\/\u00e9diter une image", -"General": "G\u00e9n\u00e9ral", -"Advanced": "Avanc\u00e9", -"Source": "Source", -"Border": "Bordure", -"Constrain proportions": "Contraindre les proportions", -"Vertical space": "Espacement vertical", -"Image description": "Description de l'image", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Ins\u00e9rer une image", -"Insert date\/time": "Ins\u00e9rer date\/heure", -"Remove link": "Enlever le lien", -"Url": "Url", -"Text to display": "Texte \u00e0 afficher", -"Anchors": "Ancres", -"Insert link": "Ins\u00e9rer un lien", -"New window": "Nouvelle fen\u00eatre", -"None": "n\/a", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?", -"Target": "Cible", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?", -"Insert\/edit link": "Ins\u00e9rer\/\u00e9diter un lien", -"Insert\/edit video": "Ins\u00e9rer\/\u00e9diter une vid\u00e9o", -"Poster": "Publier", -"Alternative source": "Source alternative", -"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :", -"Insert video": "Ins\u00e9rer une vid\u00e9o", -"Embed": "Ins\u00e9rer", -"Nonbreaking space": "Espace ins\u00e9cable", -"Page break": "Saut de page", -"Paste as text": "Coller comme texte", -"Preview": "Pr\u00e9visualiser", -"Print": "Imprimer", -"Save": "Enregistrer", -"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.", -"Replace": "Remplacer", -"Next": "Suiv", -"Whole words": "Mots entiers", -"Find and replace": "Trouver et remplacer", -"Replace with": "Remplacer par", -"Find": "Chercher", -"Replace all": "Tout remplacer", -"Match case": "Respecter la casse", -"Prev": "Pr\u00e9c ", -"Spellcheck": "V\u00e9rification orthographique", -"Finish": "Finie", -"Ignore all": "Tout ignorer", -"Ignore": "Ignorer", -"Add to Dictionary": "Ajouter au dictionnaire", -"Insert row before": "Ins\u00e9rer une ligne avant", -"Rows": "Lignes", -"Height": "Hauteur", -"Paste row after": "Coller la ligne apr\u00e8s", -"Alignment": "Alignement", -"Border color": "Couleur de la bordure", -"Column group": "Groupe de colonnes", -"Row": "Ligne", -"Insert column before": "Ins\u00e9rer une colonne avant", -"Split cell": "Diviser la cellule", -"Cell padding": "Espacement interne cellule", -"Cell spacing": "Espacement inter-cellulles", -"Row type": "Type de ligne", -"Insert table": "Ins\u00e9rer un tableau", -"Body": "Corps", -"Caption": "Titre", -"Footer": "Pied", -"Delete row": "Effacer la ligne", -"Paste row before": "Coller la ligne avant", -"Scope": "Etendue", -"Delete table": "Supprimer le tableau", -"H Align": "Alignement H", -"Top": "Haut", -"Header cell": "Cellule d'en-t\u00eate", -"Column": "Colonne", -"Row group": "Groupe de lignes", -"Cell": "Cellule", -"Middle": "Milieu", -"Cell type": "Type de cellule", -"Copy row": "Copier la ligne", -"Row properties": "Propri\u00e9t\u00e9s de la ligne", -"Table properties": "Propri\u00e9t\u00e9s du tableau", -"Bottom": "Bas", -"V Align": "Alignement V", -"Header": "En-t\u00eate", -"Right": "Droite", -"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s", -"Cols": "Colonnes", -"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s", -"Width": "Largeur", -"Cell properties": "Propri\u00e9t\u00e9s de la cellule", -"Left": "Gauche", -"Cut row": "Couper la ligne", -"Delete column": "Effacer la colonne", -"Center": "Centr\u00e9", -"Merge cells": "Fusionner les cellules", -"Insert template": "Ajouter un th\u00e8me", -"Templates": "Th\u00e8mes", -"Background color": "Couleur d'arri\u00e8re-plan", -"Custom...": "Personnalis\u00e9...", -"Custom color": "Couleur personnalis\u00e9e", -"No color": "Aucune couleur", -"Text color": "Couleur du texte", -"Show blocks": "Afficher les blocs", -"Show invisible characters": "Afficher les caract\u00e8res invisibles", -"Words: {0}": "Mots : {0}", -"Insert": "Ins\u00e9rer", -"File": "Fichier", -"Edit": "Editer", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.", -"Tools": "Outils", -"View": "Voir", -"Table": "Tableau", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/gd.js b/Resources/public/vendor/tinymce/langs/gd.js deleted file mode 100644 index b2663557..00000000 --- a/Resources/public/vendor/tinymce/langs/gd.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('gd',{ -"Cut": "Gearr \u00e0s", -"Header 2": "Bann-cinn 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Chan eil am brabhsair agad a' cur taic ri inntrigeadh d\u00ecreach dhan st\u00f2r-bh\u00f2rd. Cleachd ath-ghoiridean a' mheur-chl\u00e0ir, Ctrl+X\/V\/V 'nan \u00e0ite.", -"Div": "Div", -"Paste": "Cuir ann", -"Close": "D\u00f9in", -"Font Family": "Teaghlach a' chrutha-chl\u00f2", -"Pre": "Pre", -"Align right": "Co-thaobhaich ris an l\u00e0imh dheas", -"New document": "Sgr\u00ecobhainn \u00f9r", -"Blockquote": "Bloc-luaidh", -"Numbered list": "Liosta \u00e0ireamhaichte", -"Increase indent": "Meudaich an eag", -"Formats": "F\u00f2rmatan", -"Headers": "Bannan-cinn", -"Select all": "Tagh na h-uile", -"Header 3": "Bann-cinn 3", -"Blocks": "Blocaichean", -"Undo": "Neo-dh\u00e8an", -"Strikethrough": "Loidhne troimhe", -"Bullet list": "Liosta pheilearaichte", -"Header 1": "Bann-cinn 1", -"Superscript": "Os-sgr\u00ecobhte", -"Clear formatting": "Falamhaich am f\u00f2rmatadh", -"Font Sizes": "Meudan nan cruthan-chl\u00f2", -"Subscript": "Bun-sgr\u00ecobhte", -"Header 6": "Bann-cinn 6", -"Redo": "Ath-dh\u00e8an", -"Paragraph": "Paragraf", -"Ok": "Ceart ma-th\u00e0", -"Bold": "Trom", -"Code": "C\u00f2d", -"Italic": "Eadailteach", -"Align center": "Co-thaobhaich ris a' mheadhan", -"Header 5": "Bann-cinn 5", -"Decrease indent": "Lughdaich an eag", -"Header 4": "Bann-cinn 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Ma chuireas tu rud ann a-nis, th\u00e8id an t-susbaint a chur ann mar theacsa lom gus an cuir thu dheth an roghainn seo a-rithist.", -"Underline": "Fo-loidhne", -"Cancel": "Sguir dheth", -"Justify": "Blocaich", -"Inline": "Taobh a-staigh na loidhne", -"Copy": "D\u00e8an lethbhreac", -"Align left": "Co-thaobhaich ris an l\u00e0imh chl\u00ec", -"Visual aids": "Taic l\u00e8irsinne", -"Lower Greek": "Litrichean Greugach beaga", -"Square": "Ce\u00e0rnag", -"Default": "Bun-roghainn", -"Lower Alpha": "Aibidileach is beag", -"Circle": "Cearcall", -"Disc": "Diosga", -"Upper Alpha": "Aibidileach is m\u00f2r", -"Upper Roman": "\u00c0ireamhan R\u00f2manach is m\u00f2r", -"Lower Roman": "\u00c0ireamhan R\u00f2manach is beag", -"Name": "Ainm", -"Anchor": "Acair", -"You have unsaved changes are you sure you want to navigate away?": "Tha atharraichean gun s\u00e0bhaladh agad, a bheil thu cinnteach gu bheil thu airson gluasad air falbh?", -"Restore last draft": "Aisig an dreach mu dheireadh", -"Special character": "Caractar s\u00f2nraichte", -"Source code": "An c\u00f2d t\u00f9sail", -"Right to left": "Deas gu cl\u00ec", -"Left to right": "Cl\u00ec gu deas", -"Emoticons": "Samhlaidhean-gn\u00f9ise", -"Robots": "Robotairean", -"Document properties": "Roghainnean na sgr\u00ecobhainne", -"Title": "Tiotal", -"Keywords": "Faclan-luirg", -"Encoding": "C\u00f2dachadh", -"Description": "Tuairisgeul", -"Author": "\u00d9ghdar", -"Fullscreen": "L\u00e0n-sgr\u00ecn", -"Horizontal line": "Loidhne ch\u00f2mhnard", -"Horizontal space": "\u00c0ite c\u00f2mhnard", -"Insert\/edit image": "Cuir a-steach\/Deasaich an dealbh", -"General": "Coitcheann", -"Advanced": "Adhartach", -"Source": "T\u00f9s", -"Border": "Iomall", -"Constrain proportions": "Cuingich na co-r\u00e8irean", -"Vertical space": "\u00c0ite inghearach", -"Image description": "Tuairisgeul an deilbh", -"Style": "Stoidhle", -"Dimensions": "Meudachd", -"Insert image": "Cuir a-steach dealbh", -"Insert date\/time": "Cuir a-steach ceann-l\u00e0\/\u00e0m", -"Remove link": "Thoir air falbh an ceangal", -"Url": "URL", -"Text to display": "An teacsa a th\u00e8id a shealltainn", -"Anchors": "Acraichean", -"Insert link": "Cuir a-steach ceangal", -"New window": "Uinneag \u00f9r", -"None": "Chan eil gin", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tha coltas gu bheil an URL a chuir thu a-steach 'na cheangal ris an taobh a-muigh. A bheil thu airson an ro-leasachan http:\/\/ a chur ris? Tha feum air.", -"Target": "Targaid", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tha coltas gu bheil an URL a chuir thu a-steach 'na she\u00f2ladh puist-d. A bheil thu airson an ro-leasachan mailto: a chur ris? Tha feum air.", -"Insert\/edit link": "Cuir a-steach\/Deasaich an ceangal", -"Insert\/edit video": "Cuir a-steach\/Deasaich a' video", -"Poster": "P\u00f2stair", -"Alternative source": "Roghainn eile de th\u00f9s", -"Paste your embed code below:": "Cuir an c\u00f2d leabachaidh agad a-steach gu h-\u00ecosal:", -"Insert video": "Cuir a-steach video", -"Embed": "Leabaich", -"Nonbreaking space": "Be\u00e0rn neo-bhristidh", -"Page break": "Briseadh-duilleige", -"Paste as text": "Cuir ann mar theacsa", -"Preview": "Ro-shealladh", -"Print": "Cl\u00f2-bhuail", -"Save": "S\u00e0bhail", -"Could not find the specified string.": "Cha b' urrainn dhuinn na dh'iarr thu a lorg.", -"Replace": "Cuir 'na \u00e0ite", -"Next": "Air adhart", -"Whole words": "Faclan sl\u00e0na", -"Find and replace": "Lorg is cuir 'na \u00e0ite", -"Replace with": "Cuir na leanas 'na \u00e0ite", -"Find": "Lorg", -"Replace all": "Cuir an \u00e0ite na h-uile", -"Match case": "Maids litrichean m\u00f2ra 's beaga", -"Prev": "Air ais", -"Spellcheck": "Dearbhaich an litreachadh", -"Finish": "Cr\u00ecochnaich", -"Ignore all": "Leig seachad na h-uile", -"Ignore": "Leig seachad", -"Insert row before": "Cuir a-steach r\u00e0gh roimhe", -"Rows": "R\u00e0ghan", -"Height": "\u00c0irde", -"Paste row after": "Cuir ann r\u00e0gh 'na dh\u00e8idh", -"Alignment": "Co-thaobhadh", -"Column group": "Buidheann cholbhan", -"Row": "R\u00e0gh", -"Insert column before": "Cuir a-steach colbh roimhe", -"Split cell": "Sgoilt an cealla", -"Cell padding": "Padadh nan ceallan", -"Cell spacing": "Be\u00e0rnadh nan ceallan", -"Row type": "Se\u00f2rsa an r\u00e0igh", -"Insert table": "Cuir a-steach cl\u00e0r", -"Body": "Bodhaig", -"Caption": "Caipsean", -"Footer": "Bann-coise", -"Delete row": "Sguab \u00e0s an r\u00e0gh", -"Paste row before": "Cuir ann r\u00e0gh roimhe", -"Scope": "Sg\u00f2p", -"Delete table": "Sguab \u00e0s an cl\u00e0r", -"Header cell": "Cealla a' bhanna-chinn", -"Column": "Colbh", -"Cell": "Cealla", -"Header": "Bann-cinn", -"Cell type": "Se\u00f2rsa a' chealla", -"Copy row": "D\u00e8an lethbhreac dhen r\u00e0gh", -"Row properties": "Roghainnean an r\u00e0igh", -"Table properties": "Roghainnean a' chl\u00e0ir", -"Row group": "Buidheann r\u00e0ghan", -"Right": "Deas", -"Insert column after": "Cuir a-steach colbh 'na dh\u00e8idh", -"Cols": "Colbhan", -"Insert row after": "Cuir a-steach r\u00e0gh 'na dh\u00e8idh", -"Width": "Leud", -"Cell properties": "Roghainnean a' chealla", -"Left": "Cl\u00ec", -"Cut row": "Gearr \u00e0s an r\u00e0gh", -"Delete column": "Sguab \u00e0s an colbh", -"Center": "Meadhan", -"Merge cells": "Co-aonaich na ceallan", -"Insert template": "Cuir a-steach teamplaid", -"Templates": "Teamplaidean", -"Background color": "Dath a\u2019 ch\u00f9laibh", -"Text color": "Dath an teacsa", -"Show blocks": "Seall na blocaichean", -"Show invisible characters": "Seall na caractaran do-fhaicsinneach", -"Words: {0}": "Faclan: {0}", -"Insert": "Cuir a-steach", -"File": "Faidhle", -"Edit": "Deasaich", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Raon Rich Text. Br\u00f9th ALT-F9 airson a' chl\u00e0ir-thaice. Br\u00f9th ALT-F10 airson a' bh\u00e0r-inneal. Br\u00f9th ALT-0 airson na cobharach.", -"Tools": "Innealan", -"View": "Sealladh", -"Table": "Cl\u00e0r", -"Format": "F\u00f2rmat" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/gl.js b/Resources/public/vendor/tinymce/langs/gl.js deleted file mode 100644 index f12006aa..00000000 --- a/Resources/public/vendor/tinymce/langs/gl.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('gl',{ -"Cut": "Cortar", -"Heading 5": "T\u00edtulo 5", -"Header 2": "Cabeceira 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador non admite o acceso directo ao portapapeis. Empregue os atallos de teclado Ctrl+X\/C\/V no seu canto.", -"Heading 4": "T\u00edtulo 4", -"Div": "Div", -"Heading 2": "T\u00edtulo 2", -"Paste": "Pegar", -"Close": "Pechar", -"Font Family": "Tipo de letra", -"Pre": "Pre", -"Align right": "Ali\u00f1ar \u00e1 dereita", -"New document": "Novo documento", -"Blockquote": "Bloque entre comi\u00f1as", -"Numbered list": "Lista numerada", -"Heading 1": "T\u00edtulo 1", -"Headings": "T\u00edtulo", -"Increase indent": "Aumentar a sangr\u00eda", -"Formats": "Formatos", -"Headers": "Cabeceiras", -"Select all": "Seleccionar todo", -"Header 3": "Cabeceira 3", -"Blocks": "Bloques", -"Undo": "Desfacer", -"Strikethrough": "Riscado", -"Bullet list": "Lista de vi\u00f1etas", -"Header 1": "Cabeceira 1", -"Superscript": "Super\u00edndice", -"Clear formatting": "Limpar o formato", -"Font Sizes": "Tama\u00f1o da letra", -"Subscript": "Sub\u00edndice", -"Header 6": "Cabeceira 6", -"Redo": "Refacer", -"Paragraph": "Par\u00e1grafo", -"Ok": "Aceptar", -"Bold": "Negra", -"Code": "C\u00f3digo", -"Italic": "Cursiva", -"Align center": "Ali\u00f1ar ao centro", -"Header 5": "Cabeceira 5", -"Heading 6": "T\u00edtulo 6", -"Heading 3": "T\u00edtulo 3", -"Decrease indent": "Reducir a sangr\u00eda", -"Header 4": "Cabeceira 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Neste momento o pegado est\u00e1 definido en modo de texto simple. Os contidos p\u00e9garanse como texto sen formato ata que se active esta opci\u00f3n.", -"Underline": "Subli\u00f1ado", -"Cancel": "Cancelar", -"Justify": "Xustificar", -"Inline": "En li\u00f1a", -"Copy": "Copiar", -"Align left": "Ali\u00f1ar \u00e1 esquerda", -"Visual aids": "Axudas visuais", -"Lower Greek": "Grega min\u00fascula", -"Square": "Cadrado", -"Default": "Predeterminada", -"Lower Alpha": "Alfa min\u00fascula", -"Circle": "Circulo", -"Disc": "Disco", -"Upper Alpha": "Alfa mai\u00fascula", -"Upper Roman": "Romana mai\u00fascula", -"Lower Roman": "Romana min\u00fascula", -"Name": "Nome", -"Anchor": "Ancoraxe", -"You have unsaved changes are you sure you want to navigate away?": "Ten cambios sen gardar. Confirma que quere sa\u00edr?", -"Restore last draft": "Restaurar o \u00faltimo borrador", -"Special character": "Car\u00e1cter especial", -"Source code": "C\u00f3digo fonte", -"Right to left": "De dereita a esquerda", -"Left to right": "De esquerda a dereita", -"Emoticons": "Emoticonas", -"Robots": "Robots", -"Document properties": "Propiedades do documento", -"Title": "T\u00edtulo", -"Keywords": "Palabras clave", -"Encoding": "Codificaci\u00f3n", -"Description": "Descrici\u00f3n", -"Author": "Autor", -"Fullscreen": "Pantalla completa", -"Horizontal line": "Li\u00f1a horizontal", -"Horizontal space": "Espazo horizontal", -"Insert\/edit image": "Inserir\/editar imaxe", -"General": "Xeral", -"Advanced": "Avanzado", -"Source": "Orixe", -"Border": "Bordo", -"Constrain proportions": "Restrinxir as proporci\u00f3ns", -"Vertical space": "Espazo vertical", -"Image description": "Descrici\u00f3n da imaxe", -"Style": "Estilo", -"Dimensions": "Dimensi\u00f3ns", -"Insert image": "Inserir imaxe", -"Insert date\/time": "Inserir data\/hora", -"Remove link": "Retirar a ligaz\u00f3n", -"Url": "URL", -"Text to display": "Texto que amosar", -"Anchors": "Ancoraxes", -"Insert link": "Inserir ligaz\u00f3n", -"New window": "Nova xanela", -"None": "Ning\u00fan", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que introduciu semella seren unha ligaz\u00f3n externa. Quere engadirlle o prefixo http:\/\/ requirido?", -"Target": "Destino", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que introduciu semella seren un enderezo de correo. Quere engadirlle o prefixo mailto: requirido?", -"Insert\/edit link": "Inserir\/editar ligaz\u00f3n", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Poster": "Cartel", -"Alternative source": "Orixe alternativa", -"Paste your embed code below:": "Pegue embaixo o c\u00f3digo integrado:", -"Insert video": "Inserir v\u00eddeo", -"Embed": "Integrado", -"Nonbreaking space": "Espazo irromp\u00edbel", -"Page break": "Quebra de p\u00e1xina", -"Paste as text": "Pegar como texto", -"Preview": "Vista previa", -"Print": "Imprimir", -"Save": "Gardar", -"Could not find the specified string.": "Non foi pos\u00edbel atopar a cadea de texto especificada.", -"Replace": "Substitu\u00edr", -"Next": "Seguinte", -"Whole words": "Palabras completas", -"Find and replace": "Buscar e substitu\u00edr", -"Replace with": "Substitu\u00edr con", -"Find": "Buscar", -"Replace all": "Substitu\u00edr todo", -"Match case": "Distinguir mai\u00fasculas", -"Prev": "Anterior", -"Spellcheck": "Corrector ortogr\u00e1fico", -"Finish": "Rematar", -"Ignore all": "Ignorar todo", -"Ignore": "Ignorar", -"Insert row before": "Inserir unha fila enriba", -"Rows": "Filas", -"Height": "Alto", -"Paste row after": "Pegar fila enriba", -"Alignment": "Ali\u00f1amento", -"Column group": "Grupo de columnas", -"Row": "Fila", -"Insert column before": "Inserir columna \u00e1 esquerda", -"Split cell": "Dividir celas", -"Cell padding": "Marxe interior da cela", -"Cell spacing": "Marxe entre celas", -"Row type": "Tipo de fila", -"Insert table": "Inserir t\u00e1boa", -"Body": "Corpo", -"Caption": "Subt\u00edtulo", -"Footer": "Rodap\u00e9", -"Delete row": "Eliminar fila", -"Paste row before": "Pegar fila embaixo", -"Scope": "\u00c1mbito", -"Delete table": "Eliminar t\u00e1boa", -"H Align": "Ali\u00f1amento H", -"Top": "Arriba", -"Header cell": "Cela de cabeceira", -"Column": "Columna", -"Row group": "Grupo de filas", -"Cell": "Cela", -"Middle": "Medio", -"Cell type": "Tipo de cela", -"Copy row": "Copiar fila", -"Row properties": "Propiedades das filas", -"Table properties": "Propiedades da t\u00e1boa", -"Bottom": "Abaixo", -"V Align": "Ali\u00f1amento V", -"Header": "Cabeceira", -"Right": "Dereita", -"Insert column after": "Inserir columna \u00e1 dereita", -"Cols": "Cols.", -"Insert row after": "Inserir unha fila embaixo", -"Width": "Largo", -"Cell properties": "Propiedades da cela", -"Left": "Esquerda", -"Cut row": "Cortar fila", -"Delete column": "Eliminar columna", -"Center": "Centro", -"Merge cells": "Combinar celas", -"Insert template": "Inserir modelo", -"Templates": "Modelos", -"Background color": "Cor do fondo", -"Text color": "Cor do texto", -"Show blocks": "Amosar os bloques", -"Show invisible characters": "Amosar caracteres invis\u00edbeis", -"Words: {0}": "Palabras: {0}", -"Insert": "Inserir", -"File": "Ficheiro", -"Edit": "Editar", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto mellorado. Prema ALT-F9 para o men\u00fa. Prema ALT-F10 para a barra de ferramentas. Prema ALT-0 para a axuda", -"Tools": "Ferramentas", -"View": "Ver", -"Table": "T\u00e1boa", -"Format": "Formato" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/he_IL.js b/Resources/public/vendor/tinymce/langs/he_IL.js deleted file mode 100644 index 659e4b3c..00000000 --- a/Resources/public/vendor/tinymce/langs/he_IL.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('he_IL',{ -"Cut": "\u05d2\u05d6\u05d5\u05e8", -"Header 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d5\u05d7. \u05d0\u05e0\u05d0 \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d4\u05de\u05e7\u05dc\u05d3\u05ea Ctrl+X\/C\/V \u05d1\u05de\u05e7\u05d5\u05dd.", -"Div": "\u05de\u05e7\u05d8\u05e2 \u05e7\u05d5\u05d3 Div", -"Paste": "\u05d4\u05d3\u05d1\u05e7", -"Close": "\u05e1\u05d2\u05d5\u05e8", -"Font Family": "\u05e1\u05d5\u05d2 \u05d2\u05d5\u05e4\u05df", -"Pre": "\u05e7\u05d8\u05e2 \u05de\u05e7\u05d3\u05d9\u05dd Pre", -"Align right": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc", -"New document": "\u05de\u05e1\u05de\u05da \u05d7\u05d3\u05e9", -"Blockquote": "\u05de\u05e7\u05d8\u05e2 \u05e6\u05d9\u05d8\u05d5\u05d8", -"Numbered list": "\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea", -"Increase indent": "\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4", -"Formats": "\u05e4\u05d5\u05e8\u05de\u05d8\u05d9\u05dd", -"Headers": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea", -"Select all": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc", -"Header 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3", -"Blocks": "\u05de\u05d1\u05e0\u05d9\u05dd", -"Undo": "\u05d1\u05d8\u05dc \u05e4\u05e2\u05d5\u05dc\u05d4", -"Strikethrough": "\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4", -"Bullet list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd", -"Header 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1", -"Superscript": "\u05db\u05ea\u05d1 \u05e2\u05d9\u05dc\u05d9", -"Clear formatting": "\u05e0\u05e7\u05d4 \u05e4\u05d5\u05e8\u05de\u05d8\u05d9\u05dd", -"Font Sizes": "\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05df", -"Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9", -"Header 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6", -"Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1", -"Paragraph": "\u05e4\u05d9\u05e1\u05e7\u05d4", -"Ok": "\u05d0\u05d9\u05e9\u05d5\u05e8", -"Bold": "\u05de\u05d5\u05d3\u05d2\u05e9", -"Code": "\u05e7\u05d5\u05d3", -"Italic": "\u05e0\u05d8\u05d5\u05d9", -"Align center": "\u05de\u05e8\u05db\u05d6", -"Header 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5", -"Decrease indent": "\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4", -"Header 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u05d4\u05d3\u05d1\u05e7\u05d4 \u05d1\u05de\u05e6\u05d1 \u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc. \u05ea\u05db\u05e0\u05d9\u05dd \u05d9\u05d5\u05d3\u05d1\u05e7\u05d5 \u05de\u05e2\u05ea\u05d4 \u05db\u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc \u05e2\u05d3 \u05e9\u05ea\u05db\u05d1\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5.", -"Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d9", -"Cancel": "\u05d1\u05d8\u05dc", -"Justify": "\u05de\u05ea\u05d7 \u05dc\u05e6\u05d3\u05d3\u05d9\u05dd", -"Inline": "\u05d1\u05d2\u05d5\u05e3 \u05d4\u05d8\u05e7\u05e1\u05d8", -"Copy": "\u05d4\u05e2\u05ea\u05e7", -"Align left": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc", -"Visual aids": "\u05e2\u05d6\u05e8\u05d9\u05dd \u05d7\u05d6\u05d5\u05ea\u05d9\u05d9\u05dd", -"Lower Greek": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d9\u05d5\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", -"Square": "\u05e8\u05d9\u05d1\u05d5\u05e2", -"Default": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", -"Lower Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", -"Circle": "\u05e2\u05d9\u05d2\u05d5\u05dc", -"Disc": "\u05d7\u05d9\u05e9\u05d5\u05e7", -"Upper Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", -"Upper Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", -"Lower Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", -"Name": "\u05e9\u05dd", -"Anchor": "\u05de\u05e7\u05d5\u05dd \u05e2\u05d9\u05d2\u05d5\u05df", -"You have unsaved changes are you sure you want to navigate away?": "\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5. \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e6\u05d0\u05ea \u05de\u05d4\u05d3\u05e3?", -"Restore last draft": "\u05e9\u05d7\u05d6\u05e8 \u05d8\u05d9\u05d5\u05d8\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4", -"Special character": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd", -"Source code": "\u05e7\u05d5\u05d3 \u05de\u05e7\u05d5\u05e8", -"Right to left": "\u05de\u05d9\u05de\u05d9\u05df \u05dc\u05e9\u05de\u05d0\u05dc", -"Left to right": "\u05de\u05e9\u05de\u05d0\u05dc \u05dc\u05d9\u05de\u05d9\u05df", -"Emoticons": "\u05de\u05d7\u05d5\u05d5\u05ea", -"Robots": "\u05e8\u05d5\u05d1\u05d5\u05d8\u05d9\u05dd", -"Document properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05e1\u05de\u05da", -"Title": "\u05db\u05d5\u05ea\u05e8\u05ea", -"Keywords": "\u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7", -"Encoding": "\u05e7\u05d9\u05d3\u05d5\u05d3", -"Description": "\u05ea\u05d9\u05d0\u05d5\u05e8", -"Author": "\u05de\u05d7\u05d1\u05e8", -"Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0", -"Horizontal line": "\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9", -"Horizontal space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05d5\u05e4\u05e7\u05d9", -"Insert\/edit image": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4", -"General": "\u05db\u05dc\u05dc\u05d9", -"Advanced": "\u05de\u05ea\u05e7\u05d3\u05dd", -"Source": "\u05de\u05e7\u05d5\u05e8", -"Border": "\u05de\u05e1\u05d2\u05e8\u05ea", -"Constrain proportions": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea", -"Vertical space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05e0\u05db\u05d9", -"Image description": "\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4", -"Style": "\u05e1\u05d2\u05e0\u05d5\u05df", -"Dimensions": "\u05de\u05d9\u05de\u05d3\u05d9\u05dd", -"Insert image": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05de\u05d5\u05e0\u05d4", -"Insert date\/time": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4", -"Remove link": "\u05de\u05d7\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8", -"Url": "\u05db\u05ea\u05d5\u05d1\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8", -"Text to display": "\u05d8\u05e7\u05e1\u05d8 \u05dc\u05d4\u05e6\u05d2\u05d4", -"Anchors": "\u05e2\u05d5\u05d2\u05e0\u05d9\u05dd", -"Insert link": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8", -"New window": "\u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9", -"None": "\u05dc\u05dc\u05d0", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u05de\u05d8\u05e8\u05d4", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8", -"Insert\/edit video": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e1\u05e8\u05d8\u05d5\u05df", -"Poster": "\u05e4\u05d5\u05e1\u05d8\u05e8", -"Alternative source": "\u05de\u05e7\u05d5\u05e8 \u05de\u05e9\u05e0\u05d9", -"Paste your embed code below:": "\u05d4\u05d3\u05d1\u05e7 \u05e7\u05d5\u05d3 \u05d4\u05d8\u05de\u05e2\u05d4 \u05de\u05ea\u05d7\u05ea:", -"Insert video": "\u05d4\u05db\u05e0\u05e1 \u05e1\u05e8\u05d8\u05d5\u05df", -"Embed": "\u05d4\u05d8\u05de\u05e2", -"Nonbreaking space": "\u05e8\u05d5\u05d5\u05d7 (\u05dc\u05dc\u05d0 \u05e9\u05d1\u05d9\u05e8\u05ea \u05e9\u05d5\u05e8\u05d4)", -"Page break": "\u05d3\u05e3 \u05d7\u05d3\u05e9", -"Paste as text": "\u05d4\u05d3\u05d1\u05e7 \u05db\u05d8\u05e7\u05e1\u05d8", -"Preview": "\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4", -"Print": "\u05d4\u05d3\u05e4\u05e1", -"Save": "\u05e9\u05de\u05d9\u05e8\u05d4", -"Could not find the specified string.": "\u05de\u05d7\u05e8\u05d5\u05d6\u05ea \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4", -"Replace": "\u05d4\u05d7\u05dc\u05e3", -"Next": "\u05d4\u05d1\u05d0", -"Whole words": "\u05de\u05d9\u05dc\u05d4 \u05e9\u05dc\u05de\u05d4", -"Find and replace": "\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3", -"Replace with": "\u05d4\u05d7\u05dc\u05e3 \u05d1", -"Find": "\u05d7\u05e4\u05e9", -"Replace all": "\u05d4\u05d7\u05dc\u05e3 \u05d4\u05db\u05dc", -"Match case": "\u05d4\u05d1\u05d7\u05df \u05d1\u05d9\u05df \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", -"Prev": "\u05e7\u05d5\u05d3\u05dd", -"Spellcheck": "\u05d1\u05d5\u05d3\u05e7 \u05d0\u05d9\u05d5\u05ea", -"Finish": "\u05e1\u05d9\u05d9\u05dd", -"Ignore all": "\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05db\u05dc", -"Ignore": "\u05d4\u05ea\u05e2\u05dc\u05dd", -"Insert row before": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", -"Rows": "\u05e9\u05d5\u05e8\u05d5\u05ea", -"Height": "\u05d2\u05d5\u05d1\u05d4", -"Paste row after": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", -"Alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8", -"Column group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea", -"Row": "\u05e9\u05d5\u05e8\u05d4", -"Insert column before": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9", -"Split cell": "\u05e4\u05e6\u05dc \u05ea\u05d0", -"Cell padding": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05dd \u05dc\u05ea\u05d0", -"Cell spacing": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05dd \u05dc\u05ea\u05d0", -"Row type": "\u05e1\u05d5\u05d2 \u05e9\u05d5\u05e8\u05d4", -"Insert table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4", -"Body": "\u05d2\u05d5\u05e3 \u05d4\u05d8\u05d1\u05dc\u05d0", -"Caption": "\u05db\u05d9\u05ea\u05d5\u05d1", -"Footer": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4", -"Delete row": "\u05de\u05d7\u05e7 \u05e9\u05d5\u05e8\u05d4", -"Paste row before": "\u05d4\u05d3\u05d1\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", -"Scope": "\u05d4\u05d9\u05e7\u05e3", -"Delete table": "\u05de\u05d7\u05e7 \u05d8\u05d1\u05dc\u05d4", -"Header cell": "\u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05ea\u05d0", -"Column": "\u05e2\u05de\u05d5\u05d3\u05d4", -"Cell": "\u05ea\u05d0", -"Header": "\u05db\u05d5\u05ea\u05e8\u05ea", -"Cell type": "\u05e1\u05d5\u05d2 \u05ea\u05d0", -"Copy row": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4", -"Row properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e9\u05d5\u05e8\u05d4", -"Table properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05d8\u05d1\u05dc\u05d4", -"Row group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e9\u05d5\u05e8\u05d5\u05ea", -"Right": "\u05d9\u05de\u05d9\u05df", -"Insert column after": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9", -"Cols": "\u05e2\u05de\u05d5\u05d3\u05d5\u05ea", -"Insert row after": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", -"Width": "\u05e8\u05d5\u05d7\u05d1", -"Cell properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05ea\u05d0", -"Left": "\u05e9\u05de\u05d0\u05dc", -"Cut row": "\u05d2\u05d6\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d4", -"Delete column": "\u05de\u05d7\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4", -"Center": "\u05de\u05e8\u05db\u05d6", -"Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd", -"Insert template": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea", -"Templates": "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea", -"Background color": "\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2", -"Text color": "\u05e6\u05d1\u05e2 \u05d4\u05db\u05ea\u05d1", -"Show blocks": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d1\u05d5\u05ea", -"Show invisible characters": "\u05d4\u05e6\u05d2 \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e8\u05d0\u05d9\u05dd", -"Words: {0}": "\u05de\u05d9\u05dc\u05d9\u05dd: {0}", -"Insert": "\u05d4\u05d5\u05e1\u05e4\u05d4", -"File": "\u05e7\u05d5\u05d1\u05e5", -"Edit": "\u05e2\u05e8\u05d9\u05db\u05d4", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u05ea\u05d9\u05d1\u05ea \u05e2\u05e8\u05d9\u05db\u05d4 \u05d7\u05db\u05de\u05d4. \u05dc\u05d7\u05e5 Alt-F9 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8. Alt-F10 \u05dc\u05ea\u05e6\u05d5\u05d2\u05ea \u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd, Alt-0 \u05dc\u05e2\u05d6\u05e8\u05d4", -"Tools": "\u05db\u05dc\u05d9\u05dd", -"View": "\u05ea\u05e6\u05d5\u05d2\u05d4", -"Table": "\u05d8\u05d1\u05dc\u05d4", -"Format": "\u05e4\u05d5\u05e8\u05de\u05d8", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/hr.js b/Resources/public/vendor/tinymce/langs/hr.js deleted file mode 100644 index 1e2466b1..00000000 --- a/Resources/public/vendor/tinymce/langs/hr.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('hr',{ -"Cut": "Izre\u017ei", -"Header 2": "Zaglavlje 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 preglednik ne podr\u017eava direktan pristup me\u0111uspremniku. Molimo Vas da umjesto toga koristite tipkovni\u010dke kratice Ctrl+X\/C\/V.", -"Div": "DIV", -"Paste": "Zalijepi", -"Close": "Zatvori", -"Font Family": "Font Family", -"Pre": "PRE", -"Align right": "Poravnaj desno", -"New document": "Novi dokument", -"Blockquote": "BLOCKQUOTE", -"Numbered list": "Numerirana lista", -"Increase indent": "Pove\u0107aj uvla\u010denje", -"Formats": "Formati", -"Headers": "Zaglavlja", -"Select all": "Ozna\u010di sve", -"Header 3": "Zaglavlje 3", -"Blocks": "Blokovi", -"Undo": "Poni\u0161ti", -"Strikethrough": "Crta kroz sredinu", -"Bullet list": "Lista", -"Header 1": "Zaglavlje 1", -"Superscript": "Natpis", -"Clear formatting": "Ukloni oblikovanje", -"Font Sizes": "Font Sizes", -"Subscript": "Potpis", -"Header 6": "Zaglavlje 6", -"Redo": "Vrati", -"Paragraph": "Paragraf", -"Ok": "Uredu", -"Bold": "Masna", -"Code": "CODE oznaka", -"Italic": "Kurziv", -"Align center": "Poravnaj po sredini", -"Header 5": "Zaglavlje 5", -"Decrease indent": "Smanji uvla\u010denje", -"Header 4": "Zaglavlje 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Akcija zalijepi od sada lijepi \u010disti tekst. Sadr\u017eaj \u0107e biti zaljepljen kao \u010disti tekst sve dok ne isklju\u010dite ovu opciju.", -"Underline": "Crta ispod", -"Cancel": "Odustani", -"Justify": "Obostrano poravnanje", -"Inline": "Unutarnje", -"Copy": "Kopiraj", -"Align left": "Poravnaj lijevo", -"Visual aids": "Vizualna pomo\u0107", -"Lower Greek": "Mala gr\u010dka slova", -"Square": "Kvadrat", -"Default": "Zadano", -"Lower Alpha": "Mala slova", -"Circle": "Krug", -"Disc": "To\u010dka", -"Upper Alpha": "Velika slova", -"Upper Roman": "Velika rimska slova", -"Lower Roman": "Mala rimska slova", -"Name": "Ime", -"Anchor": "Sidro", -"You have unsaved changes are you sure you want to navigate away?": "Postoje ne pohranjene izmjene, jeste li sigurni da \u017eelite oti\u0107i?", -"Restore last draft": "Vrati posljednju skicu", -"Special character": "Poseban znak", -"Source code": "Izvorni kod", -"Right to left": "S desna na lijevo", -"Left to right": "S lijeva na desno", -"Emoticons": "Emotikoni", -"Robots": "Roboti pretra\u017eiva\u010da", -"Document properties": "Svojstva dokumenta", -"Title": "Naslov", -"Keywords": "Klju\u010dne rije\u010di", -"Encoding": "Kodna stranica", -"Description": "Opis", -"Author": "Autor", -"Fullscreen": "Cijeli ekran", -"Horizontal line": "Horizontalna linija", -"Horizontal space": "Horizontalan razmak", -"Insert\/edit image": "Umetni\/izmijeni sliku", -"General": "Op\u0107enito", -"Advanced": "Napredno", -"Source": "Izvor", -"Border": "Rub", -"Constrain proportions": "Zadr\u017ei proporcije", -"Vertical space": "Okomit razmak", -"Image description": "Opis slike", -"Style": "Stil", -"Dimensions": "Dimenzije", -"Insert image": "Umetni sliku", -"Insert date\/time": "Umetni datum\/vrijeme", -"Remove link": "Ukloni poveznicu", -"Url": "Url", -"Text to display": "Tekst za prikaz", -"Anchors": "Kra\u0107e poveznice", -"Insert link": "Umetni poveznicu", -"New window": "Novi prozor", -"None": "Ni\u0161ta", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Meta", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Umetni\/izmijeni poveznicu", -"Insert\/edit video": "Umetni\/izmijeni video", -"Poster": "Poster", -"Alternative source": "Alternativni izvor", -"Paste your embed code below:": "Umetnite va\u0161 kod za ugradnju ispod:", -"Insert video": "Umetni video", -"Embed": "Ugradi", -"Nonbreaking space": "Neprekidaju\u0107i razmak", -"Page break": "Prijelom stranice", -"Paste as text": "Zalijepi kao tekst", -"Preview": "Pregled", -"Print": "Ispis", -"Save": "Spremi", -"Could not find the specified string.": "Tra\u017eeni tekst nije prona\u0111en", -"Replace": "Zamijeni", -"Next": "Slijede\u0107i", -"Whole words": "Cijele rije\u010di", -"Find and replace": "Prona\u0111i i zamijeni", -"Replace with": "Zamijeni s", -"Find": "Tra\u017ei", -"Replace all": "Zamijeni sve", -"Match case": "Pazi na mala i velika slova", -"Prev": "Prethodni", -"Spellcheck": "Provjeri pravopis", -"Finish": "Zavr\u0161i", -"Ignore all": "Zanemari sve", -"Ignore": "Zanemari", -"Insert row before": "Umetni redak prije", -"Rows": "Redci", -"Height": "Visina", -"Paste row after": "Zalijepi redak nakon", -"Alignment": "Poravnanje", -"Column group": "Grupirani stupci", -"Row": "Redak", -"Insert column before": "Umetni stupac prije", -"Split cell": "Razdvoji polja", -"Cell padding": "Razmak unutar polja", -"Cell spacing": "Razmak izme\u0111u polja", -"Row type": "Vrsta redka", -"Insert table": "Umetni tablicu", -"Body": "Sadr\u017eaj", -"Caption": "Natpis", -"Footer": "Podno\u017eje", -"Delete row": "Izbri\u0161i redak", -"Paste row before": "Zalijepi redak prije", -"Scope": "Doseg", -"Delete table": "Izbri\u0161i tablicu", -"Header cell": "Polje zaglavlja", -"Column": "Stupac", -"Cell": "Polje", -"Header": "Zaglavlje", -"Cell type": "Vrsta polja", -"Copy row": "Kopiraj redak", -"Row properties": "Svojstva redka", -"Table properties": "Svojstva tablice", -"Row group": "Grupirani redci", -"Right": "Desno", -"Insert column after": "Umetni stupac nakon", -"Cols": "Stupci", -"Insert row after": "Umetni redak nakon", -"Width": "\u0160irina", -"Cell properties": "Svojstva polja", -"Left": "Lijevo", -"Cut row": "Izre\u017ei redak", -"Delete column": "Izbri\u0161i stupac", -"Center": "Sredina", -"Merge cells": "Spoji polja", -"Insert template": "Umetni predlo\u017eak", -"Templates": "Predlo\u0161ci", -"Background color": "Boja pozadine", -"Text color": "Boja teksta", -"Show blocks": "Prika\u017ei blokove", -"Show invisible characters": "Prika\u017ei nevidljive znakove", -"Words: {0}": "Rije\u010di: {0}", -"Insert": "Umetni", -"File": "Datoteka", -"Edit": "Izmijeni", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Pritisni ALT-F9 za izbornik. Pritisni ALT-F10 za alatnu traku. Pritisni ALT-0 za pomo\u0107", -"Tools": "Alati", -"View": "Pogled", -"Table": "Tablica", -"Format": "Oblikuj" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/hu_HU.js b/Resources/public/vendor/tinymce/langs/hu_HU.js deleted file mode 100644 index 743216f6..00000000 --- a/Resources/public/vendor/tinymce/langs/hu_HU.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('hu_HU',{ -"Cut": "Kiv\u00e1g\u00e1s", -"Heading 5": "Fejl\u00e9c 5", -"Header 2": "C\u00edmsor 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.", -"Heading 4": "Fejl\u00e9c 4", -"Div": "Div", -"Heading 2": "Fejl\u00e9c 2", -"Paste": "Beilleszt\u00e9s", -"Close": "Bez\u00e1r", -"Font Family": "Bet\u0171t\u00edpus", -"Pre": "El\u0151", -"Align right": "Jobbra igaz\u00edt", -"New document": "\u00daj dokumentum", -"Blockquote": "Id\u00e9zetblokk", -"Numbered list": "Sz\u00e1moz\u00e1s", -"Heading 1": "Fejl\u00e9c 1", -"Headings": "Fejl\u00e9cek", -"Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se", -"Formats": "Form\u00e1tumok", -"Headers": "C\u00edmsorok", -"Select all": "Minden kijel\u00f6l\u00e9se", -"Header 3": "C\u00edmsor 3", -"Blocks": "Blokkok", -"Undo": "Visszavon\u00e1s", -"Strikethrough": "\u00c1th\u00fazott", -"Bullet list": "Felsorol\u00e1s", -"Header 1": "C\u00edmsor 1", -"Superscript": "Fels\u0151 index", -"Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se", -"Font Sizes": "Bet\u0171m\u00e9retek", -"Subscript": "Als\u00f3 index", -"Header 6": "C\u00edmsor 6", -"Redo": "Ism\u00e9t", -"Paragraph": "Bekezd\u00e9s", -"Ok": "Rendben", -"Bold": "F\u00e9lk\u00f6v\u00e9r", -"Code": "K\u00f3d", -"Italic": "D\u0151lt", -"Align center": "K\u00f6z\u00e9pre z\u00e1r", -"Header 5": "C\u00edmsor 5", -"Heading 6": "Fejl\u00e9c 6", -"Heading 3": "Fejl\u00e9c 3", -"Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se", -"Header 4": "C\u00edmsor 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.", -"Underline": "Al\u00e1h\u00fazott", -"Cancel": "M\u00e9gse", -"Justify": "Sorkiz\u00e1r\u00e1s", -"Inline": "Vonalon bel\u00fcl", -"Copy": "M\u00e1sol\u00e1s", -"Align left": "Balra igaz\u00edt", -"Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k", -"Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m", -"Square": "N\u00e9gyzet", -"Default": "Alap\u00e9rtelmezett", -"Lower Alpha": "Kisbet\u0171", -"Circle": "K\u00f6r", -"Disc": "Pont", -"Upper Alpha": "Nagybet\u0171", -"Upper Roman": "Nagy r\u00f3mai sz\u00e1m", -"Lower Roman": "Kis r\u00f3mai sz\u00e1m", -"Name": "N\u00e9v", -"Anchor": "Horgony", -"You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?", -"Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa", -"Special character": "Speci\u00e1lis karakter", -"Source code": "Forr\u00e1sk\u00f3d", -"Color": "Sz\u00edn", -"Right to left": "Jobbr\u00f3l balra", -"Left to right": "Balr\u00f3l jobbra", -"Emoticons": "Vigyorok", -"Robots": "Robotok", -"Document properties": "Dokumentum tulajdons\u00e1gai", -"Title": "C\u00edm", -"Keywords": "Kulcsszavak", -"Encoding": "K\u00f3dol\u00e1s", -"Description": "Le\u00edr\u00e1s", -"Author": "Szerz\u0151", -"Fullscreen": "Teljes k\u00e9perny\u0151", -"Horizontal line": "V\u00edzszintes vonal", -"Horizontal space": "Horizont\u00e1lis hely", -"Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se", -"General": "\u00c1ltal\u00e1nos", -"Advanced": "Halad\u00f3", -"Source": "Forr\u00e1s", -"Border": "Szeg\u00e9ly", -"Constrain proportions": "M\u00e9retar\u00e1ny", -"Vertical space": "Vertik\u00e1lis hely", -"Image description": "K\u00e9p le\u00edr\u00e1sa", -"Style": "St\u00edlus", -"Dimensions": "M\u00e9retek", -"Insert image": "K\u00e9p besz\u00far\u00e1sa", -"Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se", -"Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se", -"Url": "Url", -"Text to display": "Megjelen\u0151 sz\u00f6veg", -"Anchors": "Horgonyok", -"Insert link": "Link beilleszt\u00e9se", -"New window": "\u00daj ablak", -"None": "Nincs", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Az URL amit megadt\u00e1l k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?", -"Target": "C\u00e9l", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Az URL amit megadt\u00e1l email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?", -"Insert\/edit link": "Link beilleszt\u00e9se\/szerkeszt\u00e9se", -"Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se", -"Poster": "El\u0151n\u00e9zeti k\u00e9p", -"Alternative source": "Alternat\u00edv forr\u00e1s", -"Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:", -"Insert video": "Vide\u00f3 beilleszt\u00e9se", -"Embed": "Be\u00e1gyaz\u00e1s", -"Nonbreaking space": "Nem t\u00f6rhet\u0151 hely", -"Page break": "Oldalt\u00f6r\u00e9s", -"Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt", -"Preview": "El\u0151n\u00e9zet", -"Print": "Nyomtat\u00e1s", -"Save": "Ment\u00e9s", -"Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.", -"Replace": "Csere", -"Next": "K\u00f6vetkez\u0151", -"Whole words": "Csak ha ez a teljes sz\u00f3", -"Find and replace": "Keres\u00e9s \u00e9s csere", -"Replace with": "Csere erre", -"Find": "Keres\u00e9s", -"Replace all": "Az \u00f6sszes cser\u00e9je", -"Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se", -"Prev": "El\u0151z\u0151", -"Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s", -"Finish": "Befejez\u00e9s", -"Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy", -"Ignore": "Figyelmen k\u00edv\u00fcl hagy", -"Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad", -"Insert row before": "Sor besz\u00far\u00e1sa el\u00e9", -"Rows": "Sorok", -"Height": "Magass\u00e1g", -"Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9", -"Alignment": "Igaz\u00edt\u00e1s", -"Border color": "Szeg\u00e9ly sz\u00edne", -"Column group": "Oszlop csoport", -"Row": "Sor", -"Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9", -"Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa", -"Cell padding": "Cella m\u00e9rete", -"Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga", -"Row type": "Sor t\u00edpus", -"Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se", -"Body": "Sz\u00f6vegt\u00f6rzs", -"Caption": "Felirat", -"Footer": "L\u00e1bl\u00e9c", -"Delete row": "Sor t\u00f6rl\u00e9se", -"Paste row before": "Sor beilleszt\u00e9se el\u00e9", -"Scope": "Hat\u00f3k\u00f6r", -"Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se", -"H Align": "V\u00edzszintes igaz\u00edt\u00e1s", -"Top": "Fel\u00fcl", -"Header cell": "Fejl\u00e9c cella", -"Column": "Oszlop", -"Row group": "Sor csoport", -"Cell": "Cella", -"Middle": "K\u00f6z\u00e9pen", -"Cell type": "Cella t\u00edpusa", -"Copy row": "Sor m\u00e1sol\u00e1sa", -"Row properties": "Sor tulajdons\u00e1gai", -"Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok", -"Bottom": "Alul", -"V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s", -"Header": "Fejl\u00e9c", -"Right": "Jobb", -"Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9", -"Cols": "Oszlopok", -"Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9", -"Width": "Sz\u00e9less\u00e9g", -"Cell properties": "Cella tulajdons\u00e1gok", -"Left": "Bal", -"Cut row": "Sor kiv\u00e1g\u00e1sa", -"Delete column": "Oszlop t\u00f6rl\u00e9se", -"Center": "K\u00f6z\u00e9p", -"Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se", -"Insert template": "Sablon beilleszt\u00e9se", -"Templates": "Sablonok", -"Background color": "H\u00e1tt\u00e9r sz\u00edn", -"Custom...": "Egy\u00e9ni...", -"Custom color": "Egy\u00e9ni sz\u00edn", -"No color": "Nincs sz\u00edn", -"Text color": "Sz\u00f6veg sz\u00edne", -"Show blocks": "Blokkok mutat\u00e1sa", -"Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa", -"Words: {0}": "Szavak: {0}", -"Insert": "Beilleszt\u00e9s", -"File": "F\u00e1jl", -"Edit": "Szerkeszt\u00e9s", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz", -"Tools": "Eszk\u00f6z\u00f6k", -"View": "N\u00e9zet", -"Table": "T\u00e1bl\u00e1zat", -"Format": "Form\u00e1tum" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/hy.js b/Resources/public/vendor/tinymce/langs/hy.js deleted file mode 100644 index 0b0bf723..00000000 --- a/Resources/public/vendor/tinymce/langs/hy.js +++ /dev/null @@ -1,190 +0,0 @@ -tinymce.addI18n('hy',{ -"Cut": "\u053f\u057f\u0580\u0565\u056c", -"Header 2": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0541\u0565\u0580 \u0562\u0580\u0561\u0578\u0582\u0566\u0565\u0580\u0568 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u0578\u0582\u0574 \u0561\u0576\u0574\u056b\u057b\u0561\u056f\u0561\u0576 \u0565\u056c\u0584 \u0583\u0578\u056d\u0561\u0576\u0561\u056f\u0574\u0561\u0576 \u0562\u0578\u0582\u0586\u0565\u0580\u056b\u0576\u0589 \u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0585\u0563\u057f\u057e\u0565\u056c Ctrl+X\/C\/V \u057d\u057f\u0565\u0572\u0576\u0565\u0580\u056b\u0581\u0589", -"Div": "Div", -"Paste": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c", -"Close": "\u0553\u0561\u056f\u0565\u056c", -"Font Family": "\u054f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f", -"Pre": "Pre", -"Align right": "\u0531\u057b\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"New document": "\u0546\u0578\u0580 \u0583\u0561\u057d\u057f\u0561\u0569\u0578\u0582\u0572\u0569", -"Blockquote": "\u0544\u0565\u057b\u0562\u0565\u0580\u0578\u0582\u0574", -"Numbered list": "\u0540\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f", -"Increase indent": "\u0544\u0565\u056e\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568", -"Formats": "\u0556\u0578\u0580\u0574\u0561\u057f\u0576\u0565\u0580", -"Headers": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u0565\u0580", -"Select all": "\u0546\u0577\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568", -"Header 3": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 3", -"Blocks": "\u0532\u056c\u0578\u056f\u0576\u0565\u0580", -"Undo": "\u0546\u0561\u056d\u0578\u0580\u0564 \u0584\u0561\u0575\u056c", -"Strikethrough": "\u0531\u0580\u057f\u0561\u0563\u056e\u057e\u0561\u056e", -"Bullet list": "\u0549\u0570\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f", -"Header 1": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 1", -"Superscript": "\u054e\u0565\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d", -"Clear formatting": "\u0544\u0561\u0584\u0580\u0565\u056c \u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568", -"Font Sizes": "\u054f\u0561\u057c\u056b \u0579\u0561\u0583", -"Subscript": "\u054d\u057f\u0578\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d", -"Header 6": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 6", -"Redo": "\u0540\u0561\u057b\u0578\u0580\u0564 \u0584\u0561\u0575\u056c", -"Paragraph": "\u054a\u0561\u0580\u0562\u0565\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Ok": "Ok", -"Bold": "\u0539\u0561\u057e\u0561\u057f\u0561\u057c", -"Code": "\u053f\u0578\u0564", -"Italic": "\u0547\u0565\u0572\u0561\u057f\u0561\u057c", -"Align center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576\u0561\u056f\u0561\u0576 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Header 5": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 5", -"Decrease indent": "\u0553\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568", -"Header 4": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u054f\u0565\u0584\u057d\u057f\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574\u0568 \u056f\u0561\u057f\u0561\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u057c\u0565\u056a\u056b\u0574\u0578\u057e\u0589 \u054a\u0561\u057f\u0573\u0565\u0576\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u0571\u0587\u0578\u057e \u0574\u056b\u0576\u0579\u0587 \u0561\u0575\u057d \u057c\u0565\u056a\u056b\u0574\u056b \u0561\u0576\u057b\u0561\u057f\u0578\u0582\u0574\u0568\u0589", -"Underline": "\u0538\u0576\u0564\u0563\u056e\u057e\u0561\u056e", -"Cancel": "\u0553\u0561\u056f\u0565\u056c", -"Justify": "\u0535\u0580\u056f\u056f\u0578\u0572\u0574\u0561\u0576\u056b \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Inline": "\u054f\u0578\u0572\u0561\u0575\u056b\u0576", -"Copy": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c", -"Align left": "\u0541\u0561\u056d\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Visual aids": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u056f\u0578\u0576\u057f\u0578\u0582\u0580\u0576\u0565\u0580\u0568", -"Lower Greek": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u0578\u0582\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580", -"Square": "\u0554\u0561\u057c\u0561\u056f\u0578\u0582\u057d\u056b", -"Default": "\u054d\u057f\u0561\u0576\u0564\u0561\u0580\u057f", -"Lower Alpha": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580", -"Circle": "\u0547\u0580\u057b\u0561\u0576", -"Disc": "\u053f\u056c\u0578\u0580", -"Upper Alpha": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0565\u0580\u0565\u0576 \u057f\u0561\u057c\u0565\u0580", -"Upper Roman": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580", -"Lower Roman": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580", -"Name": "\u0531\u0576\u0578\u0582\u0576", -"Anchor": "\u053d\u0561\u0580\u056b\u057d\u056d", -"You have unsaved changes are you sure you want to navigate away?": "\u053f\u0561\u0576 \u0579\u057a\u0561\u0570\u057a\u0561\u0576\u057e\u0561\u056e \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0589 \u0534\u0578\u0582\u0584 \u056b\u0580\u0578\u055e\u0584 \u0578\u0582\u0566\u0578\u0582\u0574 \u0565\u0584 \u0564\u0578\u0582\u0580\u057d \u0563\u0561\u056c", -"Restore last draft": "\u054e\u0565\u0580\u0561\u056f\u0561\u0576\u0563\u0576\u0565\u056c \u057e\u0565\u0580\u057b\u056b\u0576 \u0576\u0561\u056d\u0561\u0563\u056b\u056e\u0568", -"Special character": "\u0540\u0561\u057f\u0578\u0582\u056f \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580", -"Source code": "\u053e\u0580\u0561\u0563\u0580\u0561\u0575\u056b\u0576 \u056f\u0578\u0564", -"Color": "\u0533\u0578\u0582\u0575\u0576", -"Right to left": "\u0531\u057b\u056b\u0581 \u0571\u0561\u056d", -"Left to right": "\u0541\u0561\u056d\u056b\u0581 \u0561\u057b", -"Emoticons": "\u054d\u0574\u0561\u0575\u056c\u056b\u056f\u0576\u0565\u0580", -"Robots": "Robots", -"Document properties": "\u0553\u0561\u057d\u057f\u0561\u0569\u0572\u0569\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568", -"Title": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580", -"Keywords": "\u0548\u0580\u0578\u0576\u0578\u0572\u0561\u056f\u0561\u0576 \u0562\u0561\u057c\u0565\u0580", -"Encoding": "\u053f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574", -"Description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Author": "\u0540\u0565\u0572\u056b\u0576\u0561\u056f", -"Fullscreen": "\u0531\u0574\u0562\u0578\u0572\u057b \u0567\u056f\u0580\u0561\u0576\u0578\u057e", -"Horizontal line": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u0563\u056b\u056e", -"Horizontal space": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Insert\/edit image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0576\u056f\u0561\u0580", -"General": "\u0533\u056c\u056d\u0561\u057e\u0578\u0580", -"Advanced": "\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579", -"Source": "\u0546\u056f\u0561\u0580\u056b \u0570\u0561\u057d\u0581\u0565", -"Border": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e", -"Constrain proportions": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0574\u0561\u0577\u057f\u0561\u0562\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568", -"Vertical space": "\u0548\u0582\u0572\u0572\u0561\u0570\u0561\u0575\u0561\u0581 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Image description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Style": "\u0548\u0573", -"Dimensions": "\u0549\u0561\u0583\u0565\u0580", -"Insert image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0576\u056f\u0561\u0580", -"Insert date\/time": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0574\u057d\u0561\u0569\u056b\u057e\/\u056a\u0561\u0574\u0561\u0576\u0561\u056f", -"Remove link": "\u054b\u0576\u057b\u0565\u056c \u0570\u0572\u0578\u0582\u0574\u0568", -"Url": "Url", -"Text to display": "\u0540\u0572\u0574\u0561\u0576 \u057f\u0565\u0584\u057d\u057f", -"Anchors": "\u053d\u0561\u0580\u056b\u057d\u056d\u0576\u0565\u0580", -"Insert link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574", -"New window": "\u0546\u0578\u0580 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576", -"None": "\u0548\u0579\u056b\u0576\u0579", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0539\u056b\u0580\u0561\u056d", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574", -"Insert\/edit video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578", -"Poster": "\u054a\u0561\u057d\u057f\u0561\u057c", -"Alternative source": "\u0531\u0575\u056c\u0568\u0576\u057f\u0580\u0561\u0576\u0584\u0561\u0575\u056b\u0576 \u056f\u0578\u0564", -"Paste your embed code below:": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0541\u0565\u0580 \u056f\u0578\u0564\u0568 \u0561\u0575\u057d\u057f\u0565\u0572\u055d", -"Insert video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578", -"Embed": "\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0572 \u056f\u0578\u0564", -"Nonbreaking space": "\u0531\u057c\u0561\u0576\u0581 \u0576\u0578\u0580 \u057f\u0578\u0572\u056b \u0562\u0561\u0581\u0561\u057f", -"Page break": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0567\u057b\u056b \u0561\u0576\u057b\u0561\u057f\u056b\u0579", -"Paste as text": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0578\u0580\u057a\u0565\u057d \u057f\u0565\u0584\u057d\u057f", -"Preview": "\u0546\u0561\u056d\u0576\u0561\u056f\u0561\u0576 \u0564\u056b\u057f\u0578\u0582\u0574", -"Print": "\u054f\u057a\u0565\u056c", -"Save": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c", -"Could not find the specified string.": "\u0546\u0577\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0565\u056c", -"Replace": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c", -"Next": "\u0540\u0561\u057b\u0578\u0580\u0564", -"Whole words": "\u0532\u0561\u057c\u0565\u0580\u0568 \u0561\u0574\u0562\u0578\u0572\u057b\u0578\u0582\u0569\u0575\u0561\u0574\u0562", -"Find and replace": "\u0553\u0576\u057f\u0580\u0565\u056c \u0587 \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c", -"Replace with": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c", -"Find": "\u0553\u0576\u057f\u0580\u0565\u056c", -"Replace all": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568", -"Match case": "\u0540\u0561\u0577\u057e\u056b \u0561\u057c\u0576\u0565\u056c \u057c\u0565\u0563\u056b\u057d\u057f\u0578\u0580\u0568", -"Prev": "\u0546\u0561\u056d\u0578\u0580\u0564", -"Spellcheck": "\u0548\u0582\u0572\u0572\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Finish": "\u0531\u057e\u0561\u0580\u057f\u0565\u056c", -"Ignore all": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568", -"Ignore": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c", -"Add to Dictionary": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0562\u0561\u057c\u0561\u0580\u0561\u0576\u0578\u0582\u0574", -"Insert row before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u057e\u0565\u0580\u0587\u0578\u0582\u0574", -"Rows": "\u054f\u0578\u0572\u0565\u0580", -"Height": "\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Paste row after": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574", -"Alignment": "\u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574", -"Border color": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e", -"Column group": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562", -"Row": "\u054f\u0578\u0572", -"Insert column before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0571\u0561\u056d\u056b\u0581", -"Split cell": "\u0532\u0561\u056a\u0561\u0576\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0568", -"Cell padding": "\u0546\u0565\u0580\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Cell spacing": "\u0531\u0580\u057f\u0561\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Row type": "\u054f\u0578\u0572\u056b \u057f\u056b\u057a", -"Insert table": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f", -"Body": "\u054a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Caption": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580", -"Footer": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u057d\u057f\u0578\u0580\u056b\u0576 \u0570\u0561\u057f\u057e\u0561\u056e", -"Delete row": "\u054b\u0576\u057b\u0565\u056c \u057f\u0578\u0572\u0568", -"Paste row before": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u057e\u0565\u0580\u0587\u0578\u0582\u0574", -"Scope": "Scope", -"Delete table": "\u054b\u0576\u057b\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u0568", -"H Align": "\u0540. \u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574", -"Top": "\u054e\u0565\u0580\u0587", -"Header cell": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u056b \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580", -"Column": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f", -"Row group": "\u054f\u0578\u0572\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562", -"Cell": "\u054e\u0561\u0576\u0564\u0561\u056f", -"Middle": "\u0544\u0565\u057b\u057f\u0565\u0572", -"Cell type": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u057f\u056b\u057a", -"Copy row": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u057f\u0578\u0572\u0568", -"Row properties": "\u054f\u0578\u0572\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568", -"Table properties": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568", -"Bottom": "\u0546\u0565\u0580\u0584\u0587", -"V Align": "\u0548\u0582. \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574", -"Header": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580", -"Right": "\u0531\u057b", -"Insert column after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0561\u057b\u056b\u0581", -"Cols": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580", -"Insert row after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574", -"Width": "\u053c\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576", -"Cell properties": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568", -"Left": "\u0541\u0561\u056d", -"Cut row": "\u053f\u057f\u0580\u0565\u056c \u057f\u0578\u0572\u0568", -"Delete column": "\u0541\u0576\u057b\u0565\u056c \u057d\u0575\u0578\u0582\u0576\u0568", -"Center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576", -"Merge cells": "\u0544\u056b\u0561\u057e\u0578\u0580\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580\u0568", -"Insert template": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0571\u0587\u0561\u0576\u0574\u0578\u0582\u0577", -"Templates": "\u0541\u0587\u0561\u0576\u0574\u0578\u0582\u0577\u0576\u0565\u0580", -"Background color": "\u0556\u0578\u0576\u056b \u0563\u0578\u0582\u0575\u0576", -"Custom...": "\u0531\u0575\u056c...", -"Custom color": "\u0531\u0575\u056c \u0563\u0578\u0582\u0575\u0576", -"No color": "\u0531\u0576\u0563\u0578\u0582\u0575\u0576", -"Text color": "\u054f\u0561\u057c\u056b \u0563\u0578\u0582\u0575\u0576", -"Show blocks": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u0562\u056c\u0578\u056f\u0576\u0565\u0580\u0568", -"Show invisible characters": "\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0561\u0576\u057f\u0565\u057d\u0561\u0576\u0565\u056c\u056b \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\u0568", -"Words: {0}": "\u0532\u0561\u057c\u0565\u0580\u056b \u0584\u0561\u0576\u0561\u056f: {0}", -"Insert": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c", -"File": "\u0556\u0561\u0575\u056c", -"Edit": "\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u054f\u0565\u0584\u057d\u057f\u0561\u0575\u056b\u0576 \u0564\u0561\u0577\u057f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-F9 \u0574\u0565\u0576\u0575\u0578\u0582\u056b \u0570\u0561\u0574\u0561\u0580\u0589 ALT-F10 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u056b \u057e\u0561\u0570\u0561\u0576\u0561\u056f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-0 \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580", -"Tools": "\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580", -"View": "\u054f\u0565\u057d\u0584", -"Table": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f", -"Format": "\u0556\u0578\u0580\u0574\u0561\u057f" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/id.js b/Resources/public/vendor/tinymce/langs/id.js deleted file mode 100644 index 61fb0945..00000000 --- a/Resources/public/vendor/tinymce/langs/id.js +++ /dev/null @@ -1,186 +0,0 @@ -tinymce.addI18n('id',{ -"Cut": "Penggal", -"Heading 5": "Judul 5", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser anda tidak mendukung akses langsung ke clipboard. Silahkan gunakan Ctrl+X\/C\/V dari keyboard.", -"Heading 4": "Judul 4", -"Div": "Div", -"Heading 2": "Judul 2", -"Paste": "Tempel", -"Close": "Tutup", -"Font Family": "Jenis Huruf", -"Pre": "Pre", -"Align right": "Rata kanan", -"New document": "Dokumen baru", -"Blockquote": "Kutipan", -"Numbered list": "list nomor", -"Heading 1": "Judul 1", -"Headings": "Judul", -"Increase indent": "Tambah inden", -"Formats": "Format", -"Headers": "Header", -"Select all": "Pilih semua", -"Header 3": "Header 3", -"Blocks": "Blok", -"Undo": "Batal", -"Strikethrough": "Coret", -"Bullet list": "list simbol", -"Header 1": "Header 1", -"Superscript": "Superskrip", -"Clear formatting": "Hapus format", -"Font Sizes": "Ukuran Huruf", -"Subscript": "Subskrip", -"Header 6": "Header 6", -"Redo": "Ulang", -"Paragraph": "Paragraf", -"Ok": "Ok", -"Bold": "Tebal", -"Code": "Code", -"Italic": "Miring", -"Align center": "Rate tengah", -"Header 5": "Header 5", -"Heading 6": "Judul 6", -"Heading 3": "Judul 3", -"Decrease indent": "Turunkan inden", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "Garis bawah", -"Cancel": "Batal", -"Justify": "Justifi", -"Inline": "Inline", -"Copy": "Salin", -"Align left": "Rate kiri", -"Visual aids": "Alat bantu visual", -"Lower Greek": "Lower Yunani", -"Square": "Kotak", -"Default": "Bawaan", -"Lower Alpha": "Lower Alpha", -"Circle": "Lingkaran", -"Disc": "Cakram", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Nama", -"Anchor": "Anjar", -"You have unsaved changes are you sure you want to navigate away?": "Anda memiliki perubahan yang belum disimpan, yakin ingin beralih ?", -"Restore last draft": "Muat kembali draft sebelumnya", -"Special character": "Spesial karakter", -"Source code": "Kode sumber", -"Right to left": "Kanan ke kiri", -"Left to right": "Kiri ke kanan", -"Emoticons": "Emotikon", -"Robots": "Robot", -"Document properties": "Properti dokumwn", -"Title": "Judul", -"Keywords": "Kata kunci", -"Encoding": "Enkoding", -"Description": "Description", -"Author": "Penulis", -"Fullscreen": "Layar penuh", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background color", -"Text color": "Text color", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/is_IS.js b/Resources/public/vendor/tinymce/langs/is_IS.js deleted file mode 100644 index 61be7066..00000000 --- a/Resources/public/vendor/tinymce/langs/is_IS.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('is_IS',{ -"Cut": "Skera", -"Header 2": "Fyrirs\u00f6gn 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Vafrinn \u00feinn sty\u00f0ur ekki beinann a\u00f0gang a\u00f0 klippibor\u00f0inu. Nota\u00f0u Ctrl-X\/C\/V \u00e1 lyklabor\u00f0inu \u00ed sta\u00f0inn.", -"Div": "Div", -"Paste": "L\u00edma", -"Close": "Loka", -"Font Family": "Letur fj\u00f6lskylda", -"Pre": "\u00d3st\u00edla\u00f0", -"Align right": "H\u00e6grijafna", -"New document": "N\u00fdtt skjal", -"Blockquote": "Blokk", -"Numbered list": "N\u00famera\u00f0ur listi", -"Increase indent": "Auka inndr\u00e1tt", -"Formats": "Sni\u00f0m\u00e1t", -"Headers": "Fyrirsagnir", -"Select all": "Velja allt", -"Header 3": "Fyrirs\u00f6gn 3", -"Blocks": "Blokkir", -"Undo": "Afturkalla", -"Strikethrough": "Yfirstrika\u00f0", -"Bullet list": "K\u00falu listi", -"Header 1": "Fyrirs\u00f6gn 1", -"Superscript": "Uppskrift", -"Clear formatting": "Hreinsa sni\u00f0", -"Font Sizes": "Leturst\u00e6r\u00f0", -"Subscript": "Ni\u00f0urskrifa\u00f0", -"Header 6": "Fyrirs\u00f6gn 6", -"Redo": "Endurkalla", -"Paragraph": "M\u00e1lsgrein", -"Ok": "Sta\u00f0festa", -"Bold": "Feitletra\u00f0", -"Code": "K\u00f3\u00f0i", -"Italic": "Skr\u00e1letra\u00f0", -"Align center": "Mi\u00f0jujafna", -"Header 5": "Fyrirs\u00f6gn 5", -"Decrease indent": "Minnka inndr\u00e1tt", -"Header 4": "Fyrirs\u00f6gn 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "L\u00edming er \u00ed l\u00e1tlausum ham. Innihald ver\u00f0ur l\u00edmt sem l\u00e1tlaus texti \u00feanga\u00f0 til \u00fe\u00fa afvirkjar \u00feennan m\u00f6guleika.", -"Underline": "Undirstrika\u00f0", -"Cancel": "H\u00e6tta vi\u00f0", -"Justify": "Jafna", -"Inline": "Inndregi\u00f0", -"Copy": "Afrita", -"Align left": "Vinstrijafna", -"Visual aids": "Sj\u00f3nr\u00e6n hj\u00e1lp", -"Lower Greek": "L\u00e1gstafir Gr\u00edskir", -"Square": "Ferningur", -"Default": "Sj\u00e1lfgefi\u00f0", -"Lower Alpha": "L\u00e1gstafir Alpha", -"Circle": "Hringur", -"Disc": "Diskur", -"Upper Alpha": "H\u00e1stafir Alpha", -"Upper Roman": "H\u00e1stafir R\u00f3mverskir", -"Lower Roman": "L\u00e1gstafir R\u00f3mverskir", -"Name": "Nafn", -"Anchor": "Akkeri", -"You have unsaved changes are you sure you want to navigate away?": "\u00dea\u00f0 eru \u00f3vista\u00f0ar breytingar, ertu viss um a\u00f0 \u00fe\u00fa viljir vafra \u00ed burtu?", -"Restore last draft": "Endurkalla s\u00ed\u00f0asta uppkast", -"Special character": "S\u00e9rstakir stafir", -"Source code": "Frumk\u00f3\u00f0i", -"Right to left": "H\u00e6gri til vinstri", -"Left to right": "Vinstri til h\u00e6gri", -"Emoticons": "Tilfinningar", -"Robots": "Leitarv\u00e9lar", -"Document properties": "Eigindi skjals", -"Title": "Titill", -"Keywords": "Lykilor\u00f0", -"Encoding": "Umbreyting", -"Description": "L\u00fdsing", -"Author": "H\u00f6fundur", -"Fullscreen": "Fylla skj\u00e1", -"Horizontal line": "L\u00e1r\u00e9tt l\u00edna", -"Horizontal space": "L\u00e1r\u00e9tt bil", -"Insert\/edit image": "Setja inn\/breyta mynd", -"General": "Almennt", -"Advanced": "\u00cdtarlegt", -"Source": "Sl\u00f3\u00f0i", -"Border": "Rammi", -"Constrain proportions": "Halda hlutf\u00f6llum", -"Vertical space": "L\u00f3\u00f0r\u00e9tt bil", -"Image description": "L\u00fdsing myndar", -"Style": "St\u00edll", -"Dimensions": "Hlutf\u00f6ll", -"Insert image": "Setja inn mynd", -"Insert date\/time": "Setja inn dagsetningu\/t\u00edma", -"Remove link": "Fjarl\u00e6gja hlekk", -"Url": "Veffang", -"Text to display": "Texti til a\u00f0 s\u00fdna", -"Anchors": "Akkeri", -"Insert link": "Setja inn hlekk", -"New window": "N\u00fdr gluggi", -"None": "Ekkert", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Mi\u00f0", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Setja inn\/breyta hlekk", -"Insert\/edit video": "Setja inn\/fjarl\u00e6gja myndband", -"Poster": "Plakat", -"Alternative source": "Valkv\u00e6\u00f0ur frumk\u00f3\u00f0i", -"Paste your embed code below:": "L\u00edma frumk\u00f3\u00f0a fyrir ne\u00f0an:", -"Insert video": "Setja inn myndband", -"Embed": "Hengja vi\u00f0", -"Nonbreaking space": "Bil sem brotnar ekki", -"Page break": "S\u00ed\u00f0ubrot", -"Paste as text": "L\u00edma sem texta", -"Preview": "Forsko\u00f0un", -"Print": "Prenta", -"Save": "Vista", -"Could not find the specified string.": "Fann ekki umbe\u00f0inn streng.", -"Replace": "Skipta \u00fat", -"Next": "N\u00e6sti", -"Whole words": "Heil or\u00f0", -"Find and replace": "Finna og skipta \u00fat", -"Replace with": "Skipta \u00fat me\u00f0", -"Find": "Finna", -"Replace all": "Skipta \u00f6llum \u00fat", -"Match case": "Samanbur\u00f0ur", -"Prev": "Fyrri", -"Spellcheck": "Villuleit", -"Finish": "Lj\u00faka", -"Ignore all": "Hunsa allt", -"Ignore": "Hunsa", -"Insert row before": "Setja inn r\u00f6\u00f0 fyrir framan", -"Rows": "Ra\u00f0ir", -"Height": "H\u00e6\u00f0", -"Paste row after": "L\u00edma r\u00f6\u00f0 fyrir aftan", -"Alignment": "J\u00f6fnun", -"Column group": "H\u00f3pur d\u00e1lks", -"Row": "R\u00f6\u00f0", -"Insert column before": "Setja inn d\u00e1lk fyrir framan", -"Split cell": "Deila reiti", -"Cell padding": "R\u00fdmi reits", -"Cell spacing": "Bil \u00ed reit", -"Row type": "Tegund ra\u00f0ar", -"Insert table": "Setja inn t\u00f6flu", -"Body": "Innihald", -"Caption": "Titill", -"Footer": "Ne\u00f0anm\u00e1l", -"Delete row": "Ey\u00f0a r\u00f6\u00f0", -"Paste row before": "L\u00edma r\u00f6\u00f0 fyrir framan", -"Scope": "Gildissvi\u00f0", -"Delete table": "Ey\u00f0a t\u00f6flu", -"Header cell": "Reitarhaus", -"Column": "D\u00e1lkur", -"Cell": "Reitur", -"Header": "Fyrirs\u00f6gn", -"Cell type": "Tegund reits", -"Copy row": "Afrita r\u00f6\u00f0", -"Row properties": "Stillingar ra\u00f0ar", -"Table properties": "Stillingar t\u00f6flu", -"Row group": "H\u00f3pur ra\u00f0ar", -"Right": "H\u00e6gri", -"Insert column after": "Setja inn d\u00e1lk fyrir aftan", -"Cols": "D\u00e1lkar", -"Insert row after": "Setja inn r\u00f6\u00f0 fyrir aftan", -"Width": "Breidd", -"Cell properties": "Stillingar reits", -"Left": "Vinstri", -"Cut row": "Klippa r\u00f6\u00f0", -"Delete column": "Ey\u00f0a d\u00e1lki", -"Center": "Mi\u00f0ja", -"Merge cells": "Sameina reiti", -"Insert template": "Setja inn sni\u00f0m\u00e1t", -"Templates": "Sni\u00f0m\u00e1t", -"Background color": "Bakgrunnslitur", -"Text color": "Litur texta", -"Show blocks": "S\u00fdna kubba", -"Show invisible characters": "S\u00fdna \u00f3s\u00fdnilega stafi", -"Words: {0}": "Or\u00f0: {0}", -"Insert": "Setja inn", -"File": "Skjal", -"Edit": "Breyta", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textasv\u00e6\u00f0i \u00ed \u00edtarham. \u00ddttu \u00e1 ALT-F9 fyrir valmynd. \u00ddttu \u00e1 ALT-F10 fyrir t\u00f3lastiku. \u00ddttu \u00e1 ALT-0 fyrir a\u00f0sto\u00f0.", -"Tools": "T\u00f3l", -"View": "Sko\u00f0a", -"Table": "Tafla", -"Format": "Sni\u00f0" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/it.js b/Resources/public/vendor/tinymce/langs/it.js deleted file mode 100644 index a6f7d67f..00000000 --- a/Resources/public/vendor/tinymce/langs/it.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('it',{ -"Cut": "Taglia", -"Heading 5": "Intestazione 5", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.", -"Heading 4": "Intestazione 4", -"Div": "Div", -"Heading 2": "Intestazione 2", -"Paste": "Incolla", -"Close": "Chiudi", -"Font Family": "Famiglia font", -"Pre": "Pre", -"Align right": "Allinea a Destra", -"New document": "Nuovo Documento", -"Blockquote": "Blockquote", -"Numbered list": "Elenchi Numerati", -"Heading 1": "Intestazione 1", -"Headings": "Intestazioni", -"Increase indent": "Aumenta Rientro", -"Formats": "Formattazioni", -"Headers": "Intestazioni", -"Select all": "Seleziona Tutto", -"Header 3": "Intestazione 3", -"Blocks": "Blocchi", -"Undo": "Indietro", -"Strikethrough": "Barrato", -"Bullet list": "Elenchi Puntati", -"Header 1": "Intestazione 1", -"Superscript": "Apice", -"Clear formatting": "Cancella Formattazione", -"Font Sizes": "Dimensioni font", -"Subscript": "Pedice", -"Header 6": "Intestazione 6", -"Redo": "Ripeti", -"Paragraph": "Paragrafo", -"Ok": "Ok", -"Bold": "Grassetto", -"Code": "Codice", -"Italic": "Corsivo", -"Align center": "Allinea al Cento", -"Header 5": "Intestazione 5", -"Heading 6": "Intestazione 6", -"Heading 3": "Intestazione 3", -"Decrease indent": "Riduci Rientro", -"Header 4": "Intestazione 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.", -"Underline": "Sottolineato", -"Cancel": "Cancella", -"Justify": "Giustifica", -"Inline": "Inlinea", -"Copy": "Copia", -"Align left": "Allinea a Sinistra", -"Visual aids": "Elementi Visivi", -"Lower Greek": "Greek Minore", -"Square": "Quadrato", -"Default": "Default", -"Lower Alpha": "Alpha Minore", -"Circle": "Cerchio", -"Disc": "Disco", -"Upper Alpha": "Alpha Superiore", -"Upper Roman": "Roman Superiore", -"Lower Roman": "Roman Minore", -"Name": "Nome", -"Anchor": "Fissa", -"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?", -"Restore last draft": "Ripristina l'ultima bozza.", -"Special character": "Carattere Speciale", -"Source code": "Codice Sorgente", -"Color": "Colore", -"Right to left": "Da Destra a Sinistra", -"Left to right": "Da Sinistra a Destra", -"Emoticons": "Emoction", -"Robots": "Robot", -"Document properties": "Propriet\u00e0 Documento", -"Title": "Titolo", -"Keywords": "Parola Chiave", -"Encoding": "Codifica", -"Description": "Descrizione", -"Author": "Autore", -"Fullscreen": "Schermo Intero", -"Horizontal line": "Linea Orizzontale", -"Horizontal space": "Spazio Orizzontale", -"Insert\/edit image": "Aggiungi\/Modifica Immagine", -"General": "Generale", -"Advanced": "Avanzato", -"Source": "Fonte", -"Border": "Bordo", -"Constrain proportions": "Mantieni Proporzioni", -"Vertical space": "Spazio Verticale", -"Image description": "Descrizione Immagine", -"Style": "Stile", -"Dimensions": "Dimenzioni", -"Insert image": "Inserisci immagine", -"Insert date\/time": "Inserisci Data\/Ora", -"Remove link": "Rimuovi link", -"Url": "Url", -"Text to display": "Testo da Visualizzare", -"Anchors": "Anchors", -"Insert link": "Inserisci il Link", -"New window": "Nuova Finestra", -"None": "No", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?", -"Insert\/edit link": "Inserisci\/Modifica Link", -"Insert\/edit video": "Inserisci\/Modifica Video", -"Poster": "Anteprima", -"Alternative source": "Alternativo", -"Paste your embed code below:": "Incolla il codice d'incorporamento qui:", -"Insert video": "Inserisci Video", -"Embed": "Incorporare", -"Nonbreaking space": "Spazio unificatore", -"Page break": "Interruzione di pagina", -"Paste as text": "incolla come testo", -"Preview": "Anteprima", -"Print": "Stampa", -"Save": "Salva", -"Could not find the specified string.": "Impossibile trovare la parola specifica.", -"Replace": "Sostituisci", -"Next": "Successivo", -"Whole words": "Parole Sbagliate", -"Find and replace": "Trova e Sostituisci", -"Replace with": "Sostituisci Con", -"Find": "Trova", -"Replace all": "Sostituisci Tutto", -"Match case": "Maiuscole\/Minuscole ", -"Prev": "Precedente", -"Spellcheck": "Controllo ortografico", -"Finish": "Termina", -"Ignore all": "Ignora Tutto", -"Ignore": "Ignora", -"Add to Dictionary": "Aggiungi al Dizionario", -"Insert row before": "Inserisci una Riga Prima", -"Rows": "Righe", -"Height": "Altezza", -"Paste row after": "Incolla una Riga Dopo", -"Alignment": "Allineamento", -"Border color": "Colore bordo", -"Column group": "Gruppo di Colonne", -"Row": "Riga", -"Insert column before": "Inserisci una Colonna Prima", -"Split cell": "Dividi Cella", -"Cell padding": "Padding della Cella", -"Cell spacing": "Spaziatura della Cella", -"Row type": "Tipo di Riga", -"Insert table": "Inserisci Tabella", -"Body": "Body", -"Caption": "Didascalia", -"Footer": "Footer", -"Delete row": "Cancella Riga", -"Paste row before": "Incolla una Riga Prima", -"Scope": "Campo", -"Delete table": "Cancella Tabella", -"H Align": "Allineamento H", -"Top": "In alto", -"Header cell": "cella d'intestazione", -"Column": "Colonna", -"Row group": "Gruppo di Righe", -"Cell": "Cella", -"Middle": "In mezzo", -"Cell type": "Tipo di Cella", -"Copy row": "Copia Riga", -"Row properties": "Propriet\u00e0 della Riga", -"Table properties": "Propiet\u00e0 della Tabella", -"Bottom": "In fondo", -"V Align": "Allineamento V", -"Header": "Header", -"Right": "Destra", -"Insert column after": "Inserisci una Colonna Dopo", -"Cols": "Colonne", -"Insert row after": "Inserisci una Riga Dopo", -"Width": "Larghezza", -"Cell properties": "Propiet\u00e0 della Cella", -"Left": "Sinistra", -"Cut row": "Taglia Riga", -"Delete column": "Cancella Colonna", -"Center": "Centro", -"Merge cells": "Unisci Cella", -"Insert template": "Inserisci Template", -"Templates": "Template", -"Background color": "Colore Background", -"Custom...": "Personalizzato...", -"Custom color": "Colore personalizzato", -"No color": "Nessun colore", -"Text color": "Colore Testo", -"Show blocks": "Mostra Blocchi", -"Show invisible characters": "Mostra Caratteri Invisibili", -"Words: {0}": "Parole: {0}", -"Insert": "Inserisci", -"File": "File", -"Edit": "Modifica", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.", -"Tools": "Strumenti", -"View": "Visualiza", -"Table": "Tabella", -"Format": "Formato" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ja.js b/Resources/public/vendor/tinymce/langs/ja.js deleted file mode 100644 index b40719fb..00000000 --- a/Resources/public/vendor/tinymce/langs/ja.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ja',{ -"Cut": "\u5207\u308a\u53d6\u308a", -"Heading 5": "\u898b\u51fa\u3057 5", -"Header 2": "\u30d8\u30c3\u30c0\u30fc 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u304a\u4f7f\u3044\u4e0b\u3055\u3044\u3002", -"Heading 4": "\u898b\u51fa\u3057 4", -"Div": "Div", -"Heading 2": "\u898b\u51fa\u3057 2", -"Paste": "\u8cbc\u308a\u4ed8\u3051", -"Close": "\u9589\u3058\u308b", -"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc", -"Pre": "Pre", -"Align right": "\u53f3\u5bc4\u305b", -"New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", -"Blockquote": "\u5f15\u7528", -"Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d", -"Heading 1": "\u898b\u51fa\u3057 1", -"Headings": "\u898b\u51fa\u3057", -"Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059", -"Formats": "\u66f8\u5f0f", -"Headers": "\u30d8\u30c3\u30c0\u30fc", -"Select all": "\u5168\u3066\u3092\u9078\u629e", -"Header 3": "\u30d8\u30c3\u30c0\u30fc 3", -"Blocks": "\u30d6\u30ed\u30c3\u30af", -"Undo": "\u5143\u306b\u623b\u3059", -"Strikethrough": "\u53d6\u308a\u6d88\u3057\u7dda", -"Bullet list": "\u7b87\u6761\u66f8\u304d", -"Header 1": "\u30d8\u30c3\u30c0\u30fc 1", -"Superscript": "\u4e0a\u4ed8\u304d\u6587\u5b57", -"Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2", -"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba", -"Subscript": "\u4e0b\u4ed8\u304d\u6587\u5b57", -"Header 6": "\u30d8\u30c3\u30c0\u30fc 6", -"Redo": "\u3084\u308a\u76f4\u3059", -"Paragraph": "\u6bb5\u843d", -"Ok": "OK", -"Bold": "\u592a\u5b57", -"Code": "\u30b3\u30fc\u30c9", -"Italic": "\u659c\u4f53", -"Align center": "\u4e2d\u592e\u63c3\u3048", -"Header 5": "\u30d8\u30c3\u30c0\u30fc 5", -"Heading 6": "\u898b\u51fa\u3057 6", -"Heading 3": "\u898b\u51fa\u3057 3", -"Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059", -"Header 4": "\u30d8\u30c3\u30c0\u30fc 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002", -"Underline": "\u4e0b\u7dda", -"Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb", -"Justify": "\u4e21\u7aef\u63c3\u3048", -"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3", -"Copy": "\u30b3\u30d4\u30fc", -"Align left": "\u5de6\u5bc4\u305b", -"Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a", -"Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57", -"Square": "\u56db\u89d2", -"Default": "\u30c7\u30d5\u30a9\u30eb\u30c8", -"Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", -"Circle": "\u5186", -"Disc": "\u70b9", -"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", -"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", -"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", -"Name": "\u30a2\u30f3\u30ab\u30fc\u540d", -"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", -"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f", -"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b", -"Special character": "\u7279\u6b8a\u6587\u5b57", -"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9", -"Color": "\u30ab\u30e9\u30fc", -"Right to left": "\u53f3\u304b\u3089\u5de6", -"Left to right": "\u5de6\u304b\u3089\u53f3", -"Emoticons": "\u7d75\u6587\u5b57", -"Robots": "\u30ed\u30dc\u30c3\u30c4", -"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", -"Title": "\u30bf\u30a4\u30c8\u30eb", -"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9", -"Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0", -"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9", -"Author": "\u8457\u8005", -"Fullscreen": "\u5168\u753b\u9762\u8868\u793a", -"Horizontal line": "\u6c34\u5e73\u7f6b\u7dda", -"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d", -"Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"General": "\u4e00\u822c", -"Advanced": "\u8a73\u7d30\u8a2d\u5b9a", -"Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9", -"Border": "\u67a0\u7dda", -"Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b", -"Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d", -"Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587", -"Style": "\u30b9\u30bf\u30a4\u30eb", -"Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09", -"Insert image": "\u753b\u50cf\u306e\u633f\u5165", -"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", -"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664", -"Url": "\u30ea\u30f3\u30af\u5148URL", -"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8", -"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", -"Insert link": "\u30ea\u30f3\u30af", -"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6", -"None": "\u306a\u3057", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", -"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305f\u5024\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", -"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240", -"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240", -"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002", -"Insert video": "\u52d5\u753b", -"Embed": "\u57cb\u3081\u8fbc\u307f", -"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09", -"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a", -"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051", -"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc", -"Print": "\u5370\u5237", -"Save": "\u4fdd\u5b58", -"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002", -"Replace": "\u7f6e\u304d\u63db\u3048", -"Next": "\u6b21", -"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b", -"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048", -"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57", -"Find": "\u691c\u7d22", -"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b", -"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b", -"Prev": "\u524d", -"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", -"Finish": "\u7d42\u4e86", -"Ignore all": "\u5168\u3066\u3092\u7121\u8996", -"Ignore": "\u7121\u8996", -"Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0", -"Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165", -"Rows": "\u884c\u6570", -"Height": "\u9ad8\u3055", -"Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", -"Alignment": "\u914d\u7f6e", -"Border color": "\u67a0\u7dda\u306e\u8272", -"Column group": "\u5217\u30b0\u30eb\u30fc\u30d7", -"Row": "\u884c", -"Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165", -"Split cell": "\u30bb\u30eb\u306e\u5206\u5272", -"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09", -"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694", -"Row type": "\u884c\u30bf\u30a4\u30d7", -"Insert table": "\u8868\u306e\u633f\u5165", -"Body": "\u30dc\u30c7\u30a3\u30fc", -"Caption": "\u8868\u984c", -"Footer": "\u30d5\u30c3\u30bf\u30fc", -"Delete row": "\u884c\u306e\u524a\u9664", -"Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", -"Scope": "\u30b9\u30b3\u30fc\u30d7", -"Delete table": "\u8868\u306e\u524a\u9664", -"H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e", -"Top": "\u4e0a", -"Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb", -"Column": "\u5217", -"Row group": "\u884c\u30b0\u30eb\u30fc\u30d7", -"Cell": "\u30bb\u30eb", -"Middle": "\u4e2d\u592e", -"Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7", -"Copy row": "\u884c\u306e\u30b3\u30d4\u30fc", -"Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a", -"Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a", -"Bottom": "\u4e0b", -"V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e", -"Header": "\u30d8\u30c3\u30c0\u30fc", -"Right": "\u53f3\u5bc4\u305b", -"Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165", -"Cols": "\u5217\u6570", -"Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165", -"Width": "\u5e45", -"Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a", -"Left": "\u5de6\u5bc4\u305b", -"Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a", -"Delete column": "\u5217\u306e\u524a\u9664", -"Center": "\u4e2d\u592e\u63c3\u3048", -"Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408", -"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165", -"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d", -"Background color": "\u80cc\u666f\u8272", -"Custom...": "\u30ab\u30b9\u30bf\u30e0...", -"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc", -"No color": "\u30ab\u30e9\u30fc\u306a\u3057", -"Text color": "\u6587\u5b57\u306e\u8272", -"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a", -"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a", -"Words: {0}": "\u5358\u8a9e\u6570: {0}", -"Insert": "\u633f\u5165", -"File": "\u30d5\u30a1\u30a4\u30eb", -"Edit": "\u7de8\u96c6", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002", -"Tools": "\u30c4\u30fc\u30eb", -"View": "\u8868\u793a", -"Table": "\u8868", -"Format": "\u66f8\u5f0f" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ka_GE.js b/Resources/public/vendor/tinymce/langs/ka_GE.js deleted file mode 100644 index 38f4836d..00000000 --- a/Resources/public/vendor/tinymce/langs/ka_GE.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('ka_GE',{ -"Cut": "\u10d0\u10db\u10dd\u10ed\u10e0\u10d0", -"Header 2": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10d1\u10e0\u10d0\u10e3\u10d6\u10d4\u10e0\u10e1 \u10d0\u10e0 \u10d0\u10e5\u10d5\u10e1 \u10d1\u10e3\u10e4\u10e0\u10e2\u10e8\u10d8 \u10e8\u10d4\u10ee\u10ec\u10d4\u10d5\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0. \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10e1\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10dd\u10d3 \u10d8\u10e1\u10d0\u10e0\u10d2\u10d4\u10d1\u10da\u10dd\u10d7 Ctrl+X\/C\/V \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8 \u10d9\u10dd\u10db\u10d1\u10d8\u10dc\u10d0\u10ea\u10d8\u10d4\u10d1\u10d8\u10d7.", -"Div": "\u10d2\u10d0\u10dc\u10d0\u10ec\u10d8\u10da\u10d4\u10d1\u10d0", -"Paste": "\u10e9\u10d0\u10e1\u10db\u10d0", -"Close": "\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0", -"Font Family": "Font Family", -"Pre": "\u10de\u10e0\u10d4\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8", -"Align right": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5", -"New document": "\u10d0\u10ee\u10d0\u10da\u10d8 \u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8", -"Blockquote": "\u10d1\u10da\u10dd\u10d9\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0", -"Numbered list": "\u10d3\u10d0\u10dc\u10dd\u10db\u10e0\u10d8\u10da\u10d8 \u10e1\u10d8\u10d0", -"Increase indent": "\u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u10e1 \u10d2\u10d0\u10d6\u10e0\u10d3\u10d0", -"Formats": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8", -"Headers": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d4\u10d1\u10d8", -"Select all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10db\u10dd\u10e6\u10dc\u10d8\u10e8\u10d5\u10dc\u10d0", -"Header 3": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 3", -"Blocks": "\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8", -"Undo": "\u10d3\u10d0\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0", -"Strikethrough": "\u10e8\u10e3\u10d0 \u10ee\u10d0\u10d6\u10d8", -"Bullet list": "\u10d1\u10e3\u10da\u10d4\u10e2 \u10e1\u10d8\u10d0", -"Header 1": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 1", -"Superscript": "\u10d6\u10d4\u10d3\u10d0 \u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8", -"Clear formatting": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e1\u10e3\u10e4\u10d7\u10d0\u10d5\u10d4\u10d1\u10d0", -"Font Sizes": "Font Sizes", -"Subscript": "\u10e5\u10d5\u10d4\u10d3\u10d0 \u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8", -"Header 6": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 6", -"Redo": "\u10d2\u10d0\u10db\u10d4\u10dd\u10e0\u10d4\u10d1\u10d0", -"Paragraph": "\u10de\u10d0\u10e0\u10d0\u10d2\u10e0\u10d0\u10e4\u10d8", -"Ok": "\u10d9\u10d0\u10e0\u10d2\u10d8", -"Bold": "\u10db\u10d9\u10d5\u10d4\u10d7\u10e0\u10d8", -"Code": "\u10d9\u10dd\u10d3\u10d8", -"Italic": "\u10d3\u10d0\u10ee\u10e0\u10d8\u10da\u10d8", -"Align center": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10ea\u10d4\u10dc\u10e2\u10e0\u10e8\u10d8", -"Header 5": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 5", -"Decrease indent": "\u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u10e1 \u10e8\u10d4\u10db\u10ea\u10d8\u10e0\u10d4\u10d1\u10d0", -"Header 4": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "\u10e5\u10d5\u10d4\u10d3\u10d0 \u10ee\u10d0\u10d6\u10d8", -"Cancel": "\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0", -"Justify": "\u10d2\u10d0\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d8", -"Inline": "\u10ee\u10d0\u10d6\u10e8\u10d8\u10d3\u10d0", -"Copy": "\u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0", -"Align left": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5", -"Visual aids": "\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10d8\u10d6\u10d0\u10ea\u10d8\u10d0", -"Lower Greek": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10d1\u10d4\u10e0\u10eb\u10dc\u10e3\u10da\u10d8", -"Square": "\u10d9\u10d5\u10d0\u10d3\u10e0\u10d0\u10e2\u10d8", -"Default": "\u10e1\u10e2\u10d0\u10dc\u10d3\u10d0\u10e0\u10e2\u10e3\u10da\u10d8", -"Lower Alpha": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10d0\u10da\u10e4\u10d0", -"Circle": "\u10ec\u10e0\u10d4", -"Disc": "\u10d3\u10d8\u10e1\u10d9\u10d8", -"Upper Alpha": "\u10db\u10d0\u10e6\u10d0\u10da\u10d8 \u10d0\u10da\u10e4\u10d0", -"Upper Roman": "\u10db\u10d0\u10e6\u10d0\u10da\u10d8 \u10e0\u10dd\u10db\u10d0\u10e3\u10da\u10d8", -"Lower Roman": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10e0\u10dd\u10db\u10d0\u10e3\u10da\u10d8", -"Name": "\u10e1\u10d0\u10ee\u10d4\u10da\u10d8", -"Anchor": "\u10e6\u10e3\u10d6\u10d0", -"You have unsaved changes are you sure you want to navigate away?": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10d0\u10e5\u10d5\u10d7 \u10e8\u10d4\u10e3\u10dc\u10d0\u10ee\u10d0\u10d5\u10d8 \u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d4\u10d1\u10d8, \u10d3\u10d0\u10e0\u10ec\u10db\u10e3\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10d7 \u10e0\u10dd\u10db \u10e1\u10ee\u10d5\u10d0\u10d2\u10d0\u10dc \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d2\u10e1\u10e3\u10e0\u10d7?", -"Restore last draft": "\u10d1\u10dd\u10da\u10dd\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8\u10e1 \u10d0\u10e6\u10d3\u10d2\u10d4\u10dc\u10d0", -"Special character": "\u10e1\u10de\u10d4\u10ea\u10d8\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd", -"Source code": "\u10ec\u10e7\u10d0\u10e0\u10dd\u10e1 \u10d9\u10dd\u10d3\u10d8", -"Right to left": "\u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d3\u10d0\u10dc \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5", -"Left to right": "\u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d3\u10d0\u10dc \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5", -"Emoticons": "\u10e1\u10db\u10d0\u10d8\u10da\u10d8\u10d9\u10d4\u10d1\u10d8", -"Robots": "\u10e0\u10dd\u10d1\u10dd\u10d4\u10d1\u10d8", -"Document properties": "\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8", -"Title": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8", -"Keywords": "\u10e1\u10d0\u10d9\u10d5\u10d0\u10dc\u10eb\u10dd \u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8", -"Encoding": "\u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d0", -"Description": "\u10d0\u10ee\u10ec\u10d4\u10e0\u10d0", -"Author": "\u10d0\u10d5\u10e2\u10dd\u10e0\u10d8", -"Fullscreen": "\u10e1\u10d0\u10d5\u10e1\u10d4 \u10d4\u10d9\u10e0\u10d0\u10dc\u10d8", -"Horizontal line": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8 \u10ee\u10d0\u10d6\u10d8", -"Horizontal space": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4", -"Insert\/edit image": "\u10e9\u10d0\u10e1\u10d5\u10d8\/\u10e8\u10d4\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8", -"General": "\u10db\u10d7\u10d0\u10d5\u10d0\u10e0\u10d8", -"Advanced": "\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8", -"Source": "\u10d1\u10db\u10e3\u10da\u10d8", -"Border": "\u10e1\u10d0\u10d6\u10e6\u10d5\u10d0\u10e0\u10d8", -"Constrain proportions": "\u10de\u10e0\u10dd\u10de\u10dd\u10e0\u10ea\u10d8\u10d8\u10e1 \u10d3\u10d0\u10ea\u10d5\u10d0", -"Vertical space": "\u10d5\u10d4\u10e0\u10e2\u10d8\u10d9\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4", -"Image description": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d3\u10d0\u10ee\u10d0\u10e1\u10d8\u10d0\u10d7\u10d4\u10d1\u10d0", -"Style": "\u10e1\u10e2\u10d8\u10da\u10d8", -"Dimensions": "\u10d2\u10d0\u10dc\u10d6\u10dd\u10db\u10d8\u10da\u10d4\u10d1\u10d0", -"Insert image": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Insert date\/time": "\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\/\u10d3\u10e0\u10dd\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8", -"Anchors": "Anchors", -"Insert link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"New window": "\u10d0\u10ee\u10d0\u10da \u10e4\u10d0\u10dc\u10ef\u10d0\u10e0\u10d0\u10e8\u10d8", -"None": "\u10d0\u10e0\u10ea\u10d4\u10e0\u10d7\u10d8", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u10d2\u10d0\u10ee\u10e1\u10dc\u10d0", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\/\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d0", -"Insert\/edit video": "\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\/\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0", -"Poster": "\u10de\u10da\u10d0\u10d9\u10d0\u10e2\u10d8", -"Alternative source": "\u10d0\u10da\u10e2\u10d4\u10e0\u10dc\u10d0\u10e2\u10d8\u10e3\u10da\u10d8 \u10ec\u10e7\u10d0\u10e0\u10dd", -"Paste your embed code below:": "\u10d0\u10e5 \u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10d9\u10dd\u10d3\u10d8:", -"Insert video": "\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Embed": "\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0", -"Nonbreaking space": "\u10e3\u10ec\u10e7\u10d5\u10d4\u10e2\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4", -"Page break": "\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1 \u10d2\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d0", -"Paste as text": "Paste as text", -"Preview": "\u10ec\u10d8\u10dc\u10d0\u10e1\u10ec\u10d0\u10e0 \u10dc\u10d0\u10ee\u10d5\u10d0", -"Print": "\u10d0\u10db\u10dd\u10d1\u10d4\u10ed\u10d5\u10d3\u10d0", -"Save": "\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0", -"Could not find the specified string.": "\u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8 \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0.", -"Replace": "\u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0", -"Next": "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8", -"Whole words": "\u10e1\u10e0\u10e3\u10da\u10d8 \u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8", -"Find and replace": "\u10db\u10dd\u10eb\u10d4\u10d1\u10dc\u10d4 \u10d3\u10d0 \u10e8\u10d4\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4", -"Replace with": "\u10e8\u10d4\u10e1\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d4\u10da\u10d8 \u10e1\u10d8\u10e2\u10e7\u10d5\u10d0", -"Find": "\u10eb\u10d4\u10d1\u10dc\u10d0", -"Replace all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0", -"Match case": "\u10d3\u10d0\u10d0\u10db\u10d7\u10ee\u10d5\u10d8\u10d4 \u10d0\u10e1\u10dd\u10d4\u10d1\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0", -"Prev": "\u10ec\u10d8\u10dc\u10d0", -"Spellcheck": "\u10db\u10d0\u10e0\u10d7\u10da\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10ec\u10db\u10d4\u10d1\u10d0", -"Finish": "\u10e4\u10d8\u10dc\u10d8\u10e8\u10d8", -"Ignore all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10d8\u10d2\u10dc\u10dd\u10e0\u10d8\u10e0\u10d4\u10d1\u10d0", -"Ignore": "\u10d8\u10d2\u10dc\u10dd\u10e0\u10d8\u10e0\u10d4\u10d1\u10d0", -"Insert row before": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0", -"Rows": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d4\u10d1\u10d8", -"Height": "\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4", -"Paste row after": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10e9\u10d0\u10e1\u10db\u10d0", -"Alignment": "\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0", -"Column group": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10ef\u10d2\u10e3\u10e4\u10d8", -"Row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8", -"Insert column before": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0", -"Split cell": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e7\u10dd\u10e4\u10d0", -"Cell padding": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10e4\u10d0\u10e0\u10d7\u10dd\u10d1\u10d8", -"Cell spacing": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d0", -"Row type": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8", -"Insert table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Body": "\u10e2\u10d0\u10dc\u10d8", -"Caption": "\u10ec\u10d0\u10e0\u10ec\u10d4\u10e0\u10d0", -"Footer": "\u10eb\u10d8\u10e0\u10d8", -"Delete row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0", -"Paste row before": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10e9\u10d0\u10e1\u10db\u10d0", -"Scope": "\u10e9\u10d0\u10e0\u10e9\u10dd", -"Delete table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0", -"Header cell": "\u10d7\u10d0\u10d5\u10d8\u10e1 \u10e3\u10ef\u10e0\u10d0", -"Column": "\u10e1\u10d5\u10d4\u10e2\u10d8", -"Cell": "\u10e3\u10ef\u10e0\u10d0", -"Header": "\u10d7\u10d0\u10d5\u10d8", -"Cell type": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8", -"Copy row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0", -"Row properties": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8", -"Table properties": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8", -"Row group": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ef\u10d2\u10e3\u10e4\u10d8", -"Right": "\u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5", -"Insert column after": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0", -"Cols": "\u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8", -"Insert row after": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0", -"Width": "\u10e1\u10d8\u10d2\u10d0\u10dc\u10d4", -"Cell properties": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8", -"Left": "\u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5", -"Cut row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d0\u10db\u10dd\u10ed\u10e0\u10d0", -"Delete column": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0", -"Center": "\u10ea\u10d4\u10dc\u10e2\u10e0\u10e8\u10d8", -"Merge cells": "\u10e3\u10ef\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10d4\u10e0\u10d7\u10d8\u10d0\u10dc\u10d4\u10d1\u10d0", -"Insert template": "\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Templates": "\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d4\u10d1\u10d8", -"Background color": "\u10e3\u10d9\u10d0\u10dc\u10d0 \u10e4\u10d4\u10e0\u10d8", -"Text color": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8", -"Show blocks": "\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0", -"Show invisible characters": "\u10e3\u10ee\u10d8\u10da\u10d0\u10d5\u10d8 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0", -"Words: {0}": "\u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8: {0}", -"Insert": "\u10e9\u10d0\u10e1\u10db\u10d0", -"File": "\u10e4\u10d0\u10d8\u10da\u10d8", -"Edit": "\u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d0\u10e0\u10d7\u10d8. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-F9\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10db\u10dd\u10e1\u10d0\u10eb\u10d0\u10ee\u10d4\u10d1\u10da\u10d0\u10d3. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-F10\u10e1 \u10de\u10d0\u10dc\u10d4\u10da\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-0\u10e1 \u10d3\u10d0\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1", -"Tools": "\u10d8\u10d0\u10e0\u10d0\u10e6\u10d4\u10d1\u10d8", -"View": "\u10dc\u10d0\u10ee\u10d5\u10d0", -"Table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8", -"Format": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/kk.js b/Resources/public/vendor/tinymce/langs/kk.js deleted file mode 100644 index 45e3398e..00000000 --- a/Resources/public/vendor/tinymce/langs/kk.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('kk',{ -"Cut": "\u049a\u0438\u044b\u043f \u0430\u043b\u0443", -"Header 2": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u0456\u04a3\u0456\u0437 \u0430\u043b\u043c\u0430\u0441\u0443 \u0431\u0443\u0444\u0435\u0440\u0456\u043d\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u043c\u0430\u0439\u0434\u044b. Ctrl+X\/C\/V \u043f\u0435\u0440\u043d\u0435\u043b\u0435\u0440 \u0442\u0456\u0440\u043a\u0435\u0441\u0456\u043c\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", -"Div": "Div", -"Paste": "\u049a\u043e\u044e", -"Close": "\u0416\u0430\u0431\u0443", -"Font Family": "\u049a\u0430\u0440\u0456\u043f\u0442\u0435\u0440 \u0442\u043e\u0431\u044b", -"Pre": "Pre", -"Align right": "\u041e\u04a3\u0493\u0430 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", -"New document": "\u0416\u0430\u04a3\u0430 \u049b\u04b1\u0436\u0430\u0442", -"Blockquote": "\u0414\u04d9\u0439\u0435\u043a\u0441\u04e9\u0437", -"Numbered list": "\u041d\u04e9\u043c\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d \u0442\u0456\u0437\u0456\u043c", -"Increase indent": "\u0428\u0435\u0433\u0456\u043d\u0456\u0441\u0442\u0456 \u0430\u0440\u0442\u0442\u044b\u0440\u0443", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0442\u0430\u0440", -"Headers": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430", -"Select all": "\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", -"Header 3": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 3", -"Blocks": "\u0411\u043b\u043e\u043a\u0442\u0435\u043a\u0442\u0435\u0441 (Block)", -"Undo": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", -"Strikethrough": "\u0411\u0435\u043b\u0456\u043d\u0435\u043d \u0441\u044b\u0437\u044b\u043b\u0493\u0430\u043d", -"Bullet list": "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u043d\u0493\u0430\u043d \u0442\u0456\u0437\u0456\u043c", -"Header 1": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 1", -"Superscript": "\u04ae\u0441\u0442\u0456\u04a3\u0433\u0456 \u0438\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u0442\u0430\u0443\u0434\u0430\u043d \u0442\u0430\u0437\u0430\u0440\u0442\u0443", -"Font Sizes": "\u049a\u0430\u0440\u0456\u043f\u0442\u0435\u0440 \u04e9\u043b\u0448\u0435\u043c\u0456", -"Subscript": "\u0410\u0441\u0442\u044b\u04a3\u0493\u044b \u0438\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 6", -"Redo": "\u049a\u0430\u0439\u0442\u0430\u0440\u0443", -"Paragraph": "\u0410\u0431\u0437\u0430\u0446", -"Ok": "\u041e\u041a", -"Bold": "\u0416\u0443\u0430\u043d", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u04e9\u043b\u0431\u0435\u0443", -"Align center": "\u041e\u0440\u0442\u0430\u0441\u044b\u043d\u0430 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", -"Header 5": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 5", -"Decrease indent": "\u0428\u0435\u0433\u0456\u043d\u0456\u0441\u0442\u0456 \u043a\u0435\u043c\u0456\u0442\u0443", -"Header 4": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041e\u0441\u044b \u043e\u043f\u0446\u0438\u044f \u04e9\u0448\u0456\u0440\u0456\u043b\u043c\u0435\u0433\u0435\u043d\u0448\u0435, \u0431\u0443\u0444\u0435\u0440\u0434\u0435\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u043e\u0439\u044b\u043b\u0430\u0434\u044b.", -"Underline": "\u0410\u0441\u0442\u044b \u0441\u044b\u0437\u044b\u043b\u0493\u0430\u043d", -"Cancel": "\u0411\u0430\u0441 \u0442\u0430\u0440\u0442\u0443", -"Justify": "\u0422\u043e\u043b\u0442\u044b\u0440\u0443", -"Inline": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d (Inline)", -"Copy": "\u041a\u04e9\u0448\u0456\u0440\u0443", -"Align left": "\u0421\u043e\u043b\u0493\u0430 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", -"Visual aids": "\u041a\u04e9\u043c\u0435\u043a\u0448\u0456 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0440", -"Lower Greek": "\u041a\u0456\u0448\u0456 \u0433\u0440\u0435\u043a \u04d9\u0440\u0456\u043f\u0442\u0435\u0440\u0456", -"Square": "\u0428\u0430\u0440\u0448\u044b", -"Default": "\u04d8\u0434\u0435\u043f\u043a\u0456", -"Lower Alpha": "\u041a\u0456\u0448\u0456 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440", -"Circle": "\u0428\u0435\u04a3\u0431\u0435\u0440", -"Disc": "\u0414\u0438\u0441\u043a", -"Upper Alpha": "\u0411\u0430\u0441 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440", -"Upper Roman": "\u0411\u0430\u0441 \u0440\u0438\u043c \u0446\u0438\u0444\u0440\u043b\u0430\u0440\u044b", -"Lower Roman": "\u041a\u0456\u0448\u0456 \u0440\u0438\u043c \u0446\u0438\u0444\u0440\u043b\u0430\u0440\u044b", -"Name": "\u0410\u0442\u044b", -"Anchor": "\u0411\u0435\u0442\u0431\u0435\u043b\u0433\u0456", -"You have unsaved changes are you sure you want to navigate away?": "\u0421\u0430\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440 \u0431\u0430\u0440. \u0421\u0456\u0437 \u0448\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u0430\u0441\u049b\u0430 \u0436\u0435\u0440\u0433\u0435 \u043a\u0435\u0442\u0443\u0434\u0456 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", -"Restore last draft": "\u0421\u043e\u04a3\u0493\u044b \u0441\u0430\u049b\u0442\u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443", -"Special character": "\u0410\u0440\u043d\u0430\u0439\u044b \u0442\u0430\u04a3\u0431\u0430", -"Source code": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u043a\u043e\u0434", -"Right to left": "\u041e\u04a3\u043d\u0430\u043d \u0441\u043e\u043b\u0493\u0430", -"Left to right": "\u0421\u043e\u043b\u0434\u0430\u043d \u043e\u04a3\u0493\u0430", -"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0442\u0430\u0440", -"Robots": "Meta-robots", -"Document properties": "\u049a\u04b1\u0436\u0430\u0442 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", -"Title": "\u0410\u0442\u0430\u0443\u044b", -"Keywords": "Meta-keywords", -"Encoding": "Meta-charset", -"Description": "\u0421\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", -"Author": "Meta-author", -"Fullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d", -"Horizontal line": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3 \u0441\u044b\u0437\u044b\u049b", -"Horizontal space": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u0456\u043d\u0435\u043d \u049b\u0430\u043b\u0430\u0442\u044b\u043d \u043e\u0440\u044b\u043d", -"Insert\/edit image": "\u0421\u0443\u0440\u0435\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", -"General": "\u0416\u0430\u043b\u043f\u044b", -"Advanced": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430", -"Source": "\u0410\u0434\u0440\u0435\u0441\u0456", -"Border": "\u0416\u0438\u0435\u0433\u0456", -"Constrain proportions": "\u041f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u0443", -"Vertical space": "\u0422\u0456\u043a \u043a\u0435\u04a3\u0434\u0456\u0433\u0456", -"Image description": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", -"Style": "\u0421\u0442\u0438\u043b\u0456", -"Dimensions": "\u04e8\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456", -"Insert image": "\u0421\u0443\u0440\u0435\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Insert date\/time": "\u041a\u04af\u043d\/\u0443\u0430\u049b\u044b\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Remove link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u0430\u043b\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u0443", -"Url": "URL-\u0430\u0434\u0440\u0435\u0441\u0456", -"Text to display": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d \u043c\u04d9\u0442\u0456\u043d", -"Anchors": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043b\u0435\u0440", -"Insert link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"New window": "\u0416\u0430\u04a3\u0430 \u0442\u0435\u0440\u0435\u0437\u0435", -"None": "\u0416\u043e\u049b", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0410\u0448\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u0435\u0440\u0456", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", -"Insert\/edit video": "\u0412\u0438\u0434\u0435\u043e \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", -"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440\u0456", -"Alternative source": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0434\u0440\u0435\u0441\u0456", -"Paste your embed code below:": "\u0422\u04e9\u043c\u0435\u043d\u0434\u0435\u0433\u0456 \u043a\u043e\u0434\u0442\u044b \u043a\u04e9\u0448\u0456\u0440\u0456\u043f \u0430\u043b\u044b\u043f, \u049b\u043e\u0439\u044b\u04a3\u044b\u0437:", -"Insert video": "\u0412\u0438\u0434\u0435\u043e \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Embed": "\u0415\u043d\u0434\u0456\u0440\u0443", -"Nonbreaking space": "\u04ae\u0437\u0434\u0456\u043a\u0441\u0456\u0437 \u0431\u043e\u0441 \u043e\u0440\u044b\u043d", -"Page break": "\u0411\u0435\u0442 \u04af\u0437\u0456\u043b\u0456\u043c\u0456", -"Paste as text": "\u041c\u04d9\u0442\u0456\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u043e\u044e", -"Preview": "\u0410\u043b\u0434\u044b\u043d-\u0430\u043b\u0430 \u049b\u0430\u0440\u0430\u0443", -"Print": "\u0411\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443", -"Save": "\u0421\u0430\u049b\u0442\u0430\u0443", -"Could not find the specified string.": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u043e\u043b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", -"Replace": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u0443", -"Next": "\u041a\u0435\u043b\u0435\u0441\u0456", -"Whole words": "\u0422\u04b1\u0442\u0430\u0441 \u0441\u04e9\u0437\u0434\u0435\u0440", -"Find and replace": "\u0422\u0430\u0431\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", -"Replace with": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u0430\u0442\u044b\u043d \u043c\u04d9\u0442\u0456\u043d", -"Find": "\u0422\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u04d9\u0442\u0456\u043d", -"Replace all": "\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", -"Match case": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0434\u0456 \u0435\u0441\u043a\u0435\u0440\u0443", -"Prev": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b", -"Spellcheck": "\u0415\u043c\u043b\u0435 \u0442\u0435\u043a\u0441\u0435\u0440\u0443", -"Finish": "\u0410\u044f\u049b\u0442\u0430\u0443", -"Ignore all": "\u0415\u0448\u049b\u0430\u0439\u0441\u044b\u0441\u044b\u043d \u0435\u043b\u0435\u043c\u0435\u0443", -"Ignore": "\u0415\u043b\u0435\u043c\u0435\u0443", -"Insert row before": "\u04ae\u0441\u0442\u0456\u043d\u0435 \u0436\u043e\u043b \u049b\u043e\u0441\u0443", -"Rows": "\u0416\u043e\u043b\u044b", -"Height": "\u0411\u0438\u0456\u043a\u0442\u0456\u0433\u0456", -"Paste row after": "\u0416\u043e\u043b\u0434\u044b\u04a3 \u0430\u0441\u0442\u044b\u043d\u0430 \u049b\u043e\u044e", -"Alignment": "\u041e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u044b", -"Column group": "\u0411\u0430\u0493\u0430\u043d \u0442\u043e\u0431\u044b", -"Row": "\u0416\u043e\u043b", -"Insert column before": "\u0410\u043b\u0434\u044b\u043d\u0430 \u0431\u0430\u0493\u0430\u043d \u049b\u043e\u0441\u0443", -"Split cell": "\u04b0\u044f\u0448\u044b\u049b\u0442\u044b \u0431\u04e9\u043b\u0443", -"Cell padding": "\u04b0\u044f\u0448\u044b\u049b \u043a\u0435\u04a3\u0434\u0456\u0433\u0456", -"Cell spacing": "\u04b0\u044f\u0448\u044b\u049b \u0430\u0440\u0430\u043b\u044b\u0493\u044b", -"Row type": "\u0416\u043e\u043b \u0442\u0438\u043f\u0456", -"Insert table": "\u041a\u0435\u0441\u0442\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Body": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0431\u04e9\u043b\u0456\u0433\u0456", -"Caption": "\u0410\u0442\u0430\u0443\u044b", -"Footer": "\u0410\u044f\u049b \u0436\u0430\u0493\u044b", -"Delete row": "\u0416\u043e\u043b\u0434\u044b \u0436\u043e\u044e", -"Paste row before": "\u0416\u043e\u043b\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0435 \u049b\u043e\u044e", -"Scope": "\u0410\u0443\u043c\u0430\u0493\u044b", -"Delete table": "\u041a\u0435\u0441\u0442\u0435\u043d\u0456 \u0436\u043e\u044e", -"Header cell": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 \u04b1\u044f\u0448\u044b\u049b", -"Column": "\u0411\u0430\u0493\u0430\u043d", -"Cell": "\u04b0\u044f\u0448\u044b\u049b", -"Header": "\u0411\u0430\u0441 \u0436\u0430\u0493\u044b", -"Cell type": "\u04b0\u044f\u0448\u044b\u049b \u0442\u0438\u043f\u0456", -"Copy row": "\u0416\u043e\u043b\u0434\u044b \u043a\u04e9\u0448\u0456\u0440\u0443", -"Row properties": "\u0416\u043e\u043b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", -"Table properties": "\u041a\u0435\u0441\u0442\u0435 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", -"Row group": "\u0416\u043e\u043b \u0442\u043e\u0431\u044b", -"Right": "\u041e\u04a3\u0493\u0430", -"Insert column after": "\u0410\u0440\u0442\u044b\u043d\u0430 \u0431\u0430\u0493\u0430\u043d \u049b\u043e\u0441\u0443", -"Cols": "\u0411\u0430\u0493\u0430\u043d\u044b", -"Insert row after": "\u0410\u0441\u0442\u044b\u043d\u0430 \u0436\u043e\u043b \u049b\u043e\u0441\u0443", -"Width": "\u04b0\u0437\u044b\u043d\u0434\u044b\u0493\u044b", -"Cell properties": "\u04b0\u044f\u0448\u044b\u049b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", -"Left": "\u0421\u043e\u043b\u0493\u0430", -"Cut row": "\u0416\u043e\u043b\u0434\u044b \u049b\u0438\u044b\u043f \u0430\u043b\u0443", -"Delete column": "\u0411\u0430\u0493\u0430\u043d\u0434\u044b \u0436\u043e\u044e", -"Center": "\u041e\u0440\u0442\u0430\u0441\u044b\u043d\u0430", -"Merge cells": "\u04b0\u044f\u0448\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443", -"Insert template": "\u04ae\u043b\u0433\u0456 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Templates": "\u04ae\u043b\u0433\u0456\u043b\u0435\u0440", -"Background color": "\u04e8\u04a3\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0456", -"Text color": "\u041c\u04d9\u0442\u0456\u043d \u0442\u04af\u0441\u0456", -"Show blocks": "\u0411\u043b\u043e\u043a\u0442\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", -"Show invisible characters": "\u041a\u04e9\u0440\u0456\u043d\u0431\u0435\u0439\u0442\u0456\u043d \u0442\u0430\u04a3\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", -"Words: {0}": "\u0421\u04e9\u0437 \u0441\u0430\u043d\u044b: {0}", -"Insert": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0422\u04af\u0437\u0435\u0442\u0443", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0424\u043e\u0440\u043c\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u043c\u04d9\u0442\u0456\u043d \u0430\u0443\u043c\u0430\u0493\u044b. \u041c\u0435\u043d\u044e \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d ALT-F9 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437. \u049a\u04b1\u0440\u0430\u043b\u0434\u0430\u0440 \u043f\u0430\u043d\u0435\u043b\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d ALT-F10 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437. \u041a\u04e9\u043c\u0435\u043a \u0430\u043b\u0443 \u04af\u0448\u0456\u043d ALT-0 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", -"Tools": "\u049a\u04b1\u0440\u0430\u043b\u0434\u0430\u0440", -"View": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441", -"Table": "\u041a\u0435\u0441\u0442\u0435", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/km_KH.js b/Resources/public/vendor/tinymce/langs/km_KH.js deleted file mode 100644 index 9446d4df..00000000 --- a/Resources/public/vendor/tinymce/langs/km_KH.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('km_KH',{ -"Cut": "\u1780\u17b6\u178f\u17cb", -"Heading 5": "\u1780\u17d2\u1794\u17b6\u179b 5", -"Header 2": "\u1780\u17d2\u1794\u17b6\u179b 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u1780\u1798\u17d2\u1798\u179c\u17b7\u1792\u17b8\u200b\u17a2\u17ca\u17b8\u1793\u1792\u17ba\u178e\u17b7\u178f\u200b\u179a\u1794\u179f\u17cb\u200b\u17a2\u17d2\u1793\u1780\u200b\u1798\u17b7\u1793\u200b\u17a2\u17b6\u1785\u200b\u1785\u17bc\u179b\u200b\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1791\u17c5\u200b\u1780\u17b6\u1793\u17cb\u200b\u1780\u17d2\u178a\u17b6\u179a\u200b\u178f\u1798\u17d2\u1794\u17c0\u178f\u200b\u1781\u17d2\u1791\u17b6\u179f\u17cb\u200b\u17a1\u17be\u1799\u17d4 \u179f\u17bc\u1798\u200b\u1794\u17d2\u179a\u17be Ctrl+X\/C\/V \u179b\u17be\u200b\u1780\u17d2\u178a\u17b6\u179a\u200b\u1785\u17bb\u1785\u200b\u1787\u17c6\u1793\u17bd\u179f\u200b\u179c\u17b7\u1789\u17d4", -"Heading 4": "\u1780\u17d2\u1794\u17b6\u179b 4", -"Div": "Div", -"Heading 2": "\u1780\u17d2\u1794\u17b6\u179b 2", -"Paste": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb", -"Close": "\u1794\u17b7\u1791", -"Font Family": "\u1796\u17bb\u1798\u17d2\u1796\u200b\u17a2\u1780\u17d2\u179f\u179a", -"Pre": "Pre", -"Align right": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u179f\u17d2\u178a\u17b6\u17c6", -"New document": "\u17af\u1780\u179f\u17b6\u179a\u200b\u17a2\u178f\u17d2\u1790\u1794\u1791\u200b\u1790\u17d2\u1798\u17b8", -"Blockquote": "\u1794\u17d2\u179b\u1780\u17cb\u200b\u1796\u17b6\u1780\u17d2\u1799\u200b\u179f\u1798\u17d2\u179a\u1784\u17cb", -"Numbered list": "\u1794\u1789\u17d2\u1787\u17b8\u200b\u1787\u17b6\u200b\u179b\u17c1\u1781", -"Heading 1": "\u1780\u17d2\u1794\u17b6\u179b 1", -"Headings": "\u1780\u17d2\u1794\u17b6\u179b", -"Increase indent": "\u1781\u17b7\u178f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1785\u17bc\u179b", -"Formats": "\u1791\u1798\u17d2\u179a\u1784\u17cb", -"Headers": "\u1780\u17d2\u1794\u17b6\u179b", -"Select all": "\u1787\u17d2\u179a\u17be\u179f\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb", -"Header 3": "\u1780\u17d2\u1794\u17b6\u179b 3", -"Blocks": "\u1794\u17d2\u179b\u1780\u17cb", -"Undo": "\u1798\u17b7\u1793\u200b\u1792\u17d2\u179c\u17be\u200b\u179c\u17b7\u1789", -"Strikethrough": "\u1782\u17bc\u179f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1780\u178e\u17d2\u178a\u17b6\u179b", -"Bullet list": "\u1794\u1789\u17d2\u1787\u17b8\u200b\u1787\u17b6\u200b\u1785\u17c6\u178e\u17bb\u1785", -"Header 1": "\u1780\u17d2\u1794\u17b6\u179b 1", -"Superscript": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785\u200b\u179b\u17be", -"Clear formatting": "\u179f\u1798\u17d2\u17a2\u17b6\u178f\u200b\u1791\u1798\u17d2\u179a\u1784\u17cb", -"Font Sizes": "\u1791\u17c6\u17a0\u17c6\u200b\u17a2\u1780\u17d2\u179f\u179a", -"Subscript": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785\u200b\u1780\u17d2\u179a\u17c4\u1798", -"Header 6": "\u1780\u17d2\u1794\u17b6\u179b 6", -"Redo": "\u1792\u17d2\u179c\u17be\u200b\u179c\u17b7\u1789", -"Paragraph": "\u1780\u178b\u17b6\u1781\u178e\u17d2\u178c", -"Ok": "\u1796\u17d2\u179a\u1798", -"Bold": "\u178a\u17b7\u178f", -"Code": "\u1780\u17bc\u178a", -"Italic": "\u1791\u17d2\u179a\u17c1\u178f", -"Align center": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u1780\u178e\u17d2\u178a\u17b6\u179b", -"Header 5": "\u1780\u17d2\u1794\u17b6\u179b 5", -"Heading 6": "\u1780\u17d2\u1794\u17b6\u179b 6", -"Heading 3": "\u1780\u17d2\u1794\u17b6\u179b 3", -"Decrease indent": "\u1781\u17b7\u178f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1785\u17c1\u1789", -"Header 4": "\u1780\u17d2\u1794\u17b6\u179b 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u1780\u17b6\u179a\u200b\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1796\u17c1\u179b\u200b\u1793\u17c1\u17c7 \u179f\u17d2\u1790\u17b7\u178f\u200b\u1780\u17d2\u1793\u17bb\u1784\u200b\u1794\u17c2\u1794\u200b\u1795\u17c2\u1793\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u1798\u17d2\u1798\u178f\u17b6\u17d4 \u1794\u1785\u17d2\u1785\u17bb\u1794\u17d2\u1794\u1793\u17d2\u1793\u200b\u1793\u17c1\u17c7 \u1798\u17b6\u178f\u17b7\u1780\u17b6\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a1\u17b6\u1799\u200b\u1793\u17b9\u1784\u200b\u178f\u17d2\u179a\u17bc\u179c\u200b\u1794\u17b6\u1793\u200b\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17b6\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u1798\u17d2\u1798\u178f\u17b6 \u179b\u17bb\u17c7\u178f\u17d2\u179a\u17b6\u200b\u178f\u17c2\u200b\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b7\u1791\u200b\u1787\u1798\u17d2\u179a\u17be\u179f\u200b\u1793\u17c1\u17c7\u17d4", -"Underline": "\u1782\u17bc\u179f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1798", -"Cancel": "\u1794\u17c4\u17c7\u200b\u1794\u1784\u17cb", -"Justify": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1796\u17c1\u1789", -"Inline": "\u1780\u17d2\u1793\u17bb\u1784\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb", -"Copy": "\u1785\u1798\u17d2\u179b\u1784", -"Align left": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u1786\u17d2\u179c\u17c1\u1784", -"Visual aids": "\u1791\u17b7\u178a\u17d2\u178b\u1797\u17b6\u1796\u200b\u1787\u17c6\u1793\u17bd\u1799", -"Lower Greek": "\u179b\u17c1\u1781\u200b\u1780\u17d2\u179a\u17b7\u1780\u200b\u178f\u17bc\u1785", -"Square": "\u1787\u17d2\u179a\u17bb\u1784", -"Default": "\u179b\u17c6\u1793\u17b6\u17c6\u200b\u178a\u17be\u1798", -"Lower Alpha": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785", -"Circle": "\u1798\u17bc\u179b", -"Disc": "\u1790\u17b6\u179f", -"Upper Alpha": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u17c6", -"Upper Roman": "\u179b\u17c1\u1781\u200b\u179a\u17c9\u17bc\u1798\u17c9\u17b6\u17c6\u1784\u200b\u1792\u17c6", -"Lower Roman": "\u179b\u17c1\u1781\u200b\u179a\u17c9\u17bc\u1798\u17c9\u17b6\u17c6\u1784\u200b\u178f\u17bc\u1785", -"Name": "\u1788\u17d2\u1798\u17c4\u17c7", -"Anchor": "\u1799\u17bb\u1790\u17d2\u1780\u17b6", -"You have unsaved changes are you sure you want to navigate away?": "\u1798\u17b6\u1793\u200b\u1794\u1793\u17d2\u179b\u17b6\u179f\u17cb\u200b\u1794\u17d2\u178a\u17bc\u179a\u200b\u1798\u17b7\u1793\u200b\u1791\u17b6\u1793\u17cb\u200b\u1794\u17b6\u1793\u200b\u179a\u1780\u17d2\u179f\u17b6\u200b\u1791\u17bb\u1780\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1796\u17b7\u178f\u200b\u1787\u17b6\u200b\u1785\u1784\u17cb\u200b\u1785\u17b6\u1780\u200b\u1785\u17c1\u1789\u200b\u1796\u17b8\u1791\u17b8\u1793\u17c1\u17c7\u200b\u1798\u17c2\u1793\u1791\u17c1?", -"Restore last draft": "\u179f\u17d2\u178a\u17b6\u179a\u200b\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u1796\u17d2\u179a\u17b6\u1784\u200b\u1796\u17b8\u200b\u1798\u17bb\u1793", -"Special character": "\u178f\u17bd\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1796\u17b7\u179f\u17c1\u179f", -"Source code": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u1780\u17bc\u178a", -"Color": "\u1796\u178e\u17cc", -"Right to left": "\u179f\u17d2\u178a\u17b6\u17c6\u200b\u1791\u17c5\u200b\u1786\u17d2\u179c\u17c1\u1784", -"Left to right": "\u1786\u17d2\u179c\u17c1\u1784\u200b\u1791\u17c5\u200b\u179f\u17d2\u178a\u17b6\u17c6", -"Emoticons": "\u179a\u17bc\u1794\u200b\u179f\u1789\u17d2\u1789\u17b6\u178e\u200b\u17a2\u17b6\u179a\u1798\u17d2\u1798\u178e\u17cd", -"Robots": "\u179a\u17bc\u1794\u1799\u1793\u17d2\u178f", -"Document properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u179f\u1798\u17d2\u1794\u178f\u17d2\u178f\u17b7\u200b\u17af\u1780\u179f\u17b6\u179a", -"Title": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784", -"Keywords": "\u1796\u17b6\u1780\u17d2\u1799\u200b\u1782\u1793\u17d2\u179b\u17b9\u17c7", -"Encoding": "\u1780\u17b6\u179a\u200b\u17a2\u17ca\u17b8\u1793\u1780\u17bc\u178a", -"Description": "\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u17a2\u1792\u17b7\u1794\u17d2\u1794\u17b6\u1799", -"Author": "\u17a2\u17d2\u1793\u1780\u200b\u1793\u17b7\u1796\u1793\u17d2\u1792", -"Fullscreen": "\u1796\u17c1\u1789\u200b\u17a2\u17c1\u1780\u17d2\u179a\u1784\u17cb", -"Horizontal line": "\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u178a\u17c1\u1780", -"Horizontal space": "\u179b\u17c6\u17a0\u200b\u1795\u17d2\u178a\u17c1\u1780", -"Insert\/edit image": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u179a\u17bc\u1794\u200b\u1797\u17b6\u1796", -"General": "\u1791\u17bc\u1791\u17c5", -"Advanced": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1781\u17d2\u1796\u179f\u17cb", -"Source": "\u1794\u17d2\u179a\u1797\u1796", -"Border": "\u179f\u17ca\u17bb\u1798", -"Constrain proportions": " \u1794\u1784\u17d2\u1781\u17c6\u200b\u17b2\u17d2\u1799\u200b\u1798\u17b6\u1793\u200b\u179f\u1798\u17b6\u1798\u17b6\u178f\u17d2\u179a", -"Vertical space": "\u179b\u17c6\u17a0\u200b\u1794\u1789\u17d2\u1788\u179a", -"Image description": "\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u17a2\u1792\u17b7\u1794\u17d2\u1794\u17b6\u1799\u200b\u1796\u17b8\u200b\u179a\u17bc\u1794", -"Style": "\u179a\u1785\u1793\u17b6\u1794\u1790", -"Dimensions": "\u179c\u17b7\u1798\u17b6\u178f\u17d2\u179a", -"Insert image": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u179a\u17bc\u1794\u200b\u1797\u17b6\u1796", -"Insert date\/time": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17b6\u179b\u200b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791\/\u1798\u17c9\u17c4\u1784", -"Remove link": "\u178a\u1780\u200b\u178f\u17c6\u178e\u200b\u1785\u17c1\u1789", -"Url": "Url", -"Text to display": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17d2\u179a\u17bc\u179c\u200b\u1794\u1784\u17d2\u17a0\u17b6\u1789", -"Anchors": "\u1799\u17bb\u1790\u17d2\u1780\u17b6", -"Insert link": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u178f\u17c6\u178e", -"New window": "\u1795\u17d2\u1791\u17b6\u17c6\u1784\u200b\u179c\u17b8\u1793\u178a\u17bc\u200b\u1790\u17d2\u1798\u17b8", -"None": "\u1798\u17b7\u1793\u200b\u1798\u17b6\u1793", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b6\u1793\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b URL \u178a\u17c2\u179b\u200b\u1787\u17b6\u200b\u178f\u17c6\u178e\u200b\u1791\u17c5\u200b\u1781\u17b6\u1784\u200b\u1780\u17d2\u179a\u17c5\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1785\u1784\u17cb\u200b\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1794\u17bb\u1796\u17d2\u179c\u1794\u200b\u1791 http:\/\/ \u178a\u17c2\u179a\u200b\u17ac\u1791\u17c1?", -"Target": "\u1791\u17b7\u179f\u178a\u17c5", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b6\u1793\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b URL \u178a\u17c2\u179b\u200b\u1798\u17b6\u1793\u200b\u179f\u178e\u17d2\u178b\u17b6\u1793\u200b\u178a\u17bc\u1785\u200b\u17a2\u17b6\u179f\u1799\u178a\u17d2\u178b\u17b6\u1793\u200b\u17a2\u17ca\u17b8\u1798\u17c2\u179b\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1785\u1784\u17cb\u200b\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1794\u17bb\u1796\u17d2\u179c\u1794\u200b\u1791 mailto: \u178a\u17c2\u179a\u200b\u17ac\u1791\u17c1?", -"Insert\/edit link": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u178f\u17c6\u178e", -"Insert\/edit video": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u179c\u17b8\u178a\u17c1\u17a2\u17bc", -"Poster": "\u17a2\u17d2\u1793\u1780\u200b\u1795\u17d2\u179f\u17b6\u1799", -"Alternative source": "\u1794\u17d2\u179a\u1797\u1796\u200b\u178a\u1791\u17c3\u200b\u1791\u17c0\u178f", -"Paste your embed code below:": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1780\u17bc\u178a\u200b\u1794\u1784\u17d2\u1780\u1794\u17cb\u200b\u1793\u17c5\u200b\u1781\u17b6\u1784\u200b\u1780\u17d2\u179a\u17c4\u1798:", -"Insert video": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u179c\u17b8\u178a\u17c1\u17a2\u17bc", -"Embed": "\u1794\u1784\u17d2\u1780\u1794\u17cb", -"Nonbreaking space": "\u178a\u17c6\u178e\u1780\u200b\u1783\u17d2\u179b\u17b6\u200b\u1798\u17b7\u1793\u200b\u1794\u17c6\u1794\u17c2\u1780", -"Page break": "\u1794\u17c6\u1794\u17c2\u1780\u200b\u1791\u17c6\u1796\u17d0\u179a", -"Paste as text": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17b6\u200b\u17a2\u1780\u17d2\u179f\u179a", -"Preview": "\u1798\u17be\u179b\u200b\u1787\u17b6\u200b\u1798\u17bb\u1793", -"Print": "\u1794\u17c4\u17c7\u200b\u1796\u17bb\u1798\u17d2\u1796", -"Save": "\u179a\u1780\u17d2\u179f\u17b6\u200b\u1791\u17bb\u1780", -"Could not find the specified string.": "\u1798\u17b7\u1793\u200b\u17a2\u17b6\u1785\u200b\u179a\u1780\u200b\u1783\u17be\u1789\u200b\u1781\u17d2\u179f\u17c2\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u178a\u17c2\u179b\u200b\u1794\u17b6\u1793\u200b\u1780\u17c6\u178e\u178f\u17cb\u17d4", -"Replace": "\u1787\u17c6\u1793\u17bd\u179f", -"Next": "\u1798\u17bb\u1781", -"Whole words": "\u1796\u17b6\u1780\u17d2\u1799\u200b\u1791\u17b6\u17c6\u1784\u200b\u1798\u17bc\u179b", -"Find and replace": "\u179f\u17d2\u179c\u17c2\u1784\u200b\u179a\u1780\u200b\u1793\u17b7\u1784\u200b\u1787\u17c6\u1793\u17bd\u179f", -"Replace with": "\u1787\u17c6\u1793\u17bd\u179f\u200b\u178a\u17c4\u1799", -"Find": "\u179f\u17d2\u179c\u17c2\u1784\u200b\u179a\u1780", -"Replace all": "\u1787\u17c6\u1793\u17bd\u179f\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb", -"Match case": "\u1780\u179a\u178e\u17b8\u200b\u178a\u17c6\u178e\u17bc\u1785", -"Prev": "\u1780\u17d2\u179a\u17c4\u1799", -"Spellcheck": "\u1796\u17b7\u1793\u17b7\u178f\u17d2\u1799\u200b\u17a2\u1780\u17d2\u1781\u179a\u17b6\u179c\u17b7\u179a\u17bb\u1791\u17d2\u1792", -"Finish": "\u1794\u1789\u17d2\u1785\u1794\u17cb", -"Ignore all": "\u1798\u17b7\u1793\u200b\u17a2\u17be\u1796\u17be\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb", -"Ignore": "\u1798\u17b7\u1793\u200b\u17a2\u17be\u200b\u1796\u17be", -"Add to Dictionary": "\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1791\u17c5\u200b\u179c\u1785\u1793\u17b6\u1793\u17bb\u1780\u17d2\u179a\u1798", -"Insert row before": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1788\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781", -"Rows": "\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Height": "\u1780\u1798\u17d2\u1796\u179f\u17cb", -"Paste row after": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799", -"Alignment": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798", -"Border color": "\u1796\u178e\u17cc\u200b\u179f\u17ca\u17bb\u1798", -"Column group": "\u1780\u17d2\u179a\u17bb\u1798\u200b\u1787\u17bd\u179a\u200b\u1788\u179a", -"Row": "\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Insert column before": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u1788\u179a\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781", -"Split cell": "\u1789\u17c2\u1780\u200b\u1780\u17d2\u179a\u17a1\u17b6", -"Cell padding": "\u1785\u1793\u17d2\u179b\u17c4\u17c7\u200b\u1780\u17d2\u179a\u17a1\u17b6", -"Cell spacing": "\u1782\u1798\u17d2\u179b\u17b6\u178f\u200b\u1780\u17d2\u179a\u17a1\u17b6", -"Row type": "\u1794\u17d2\u179a\u1797\u17c1\u1791\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Insert table": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u178f\u17b6\u179a\u17b6\u1784", -"Body": "\u178f\u17bd\u200b\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8", -"Caption": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784", -"Footer": "\u1794\u178b\u1798\u200b\u1780\u1790\u17b6", -"Delete row": "\u179b\u17bb\u1794\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Paste row before": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781", -"Scope": "\u179c\u17b7\u179f\u17b6\u179b\u200b\u1797\u17b6\u1796", -"Delete table": "\u179b\u17bb\u1794\u200b\u178f\u17b6\u179a\u17b6\u1784", -"H Align": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1795\u17d2\u178a\u17c1\u1780", -"Top": "\u179b\u17be", -"Header cell": "\u1780\u17d2\u179a\u17a1\u17b6\u200b\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784", -"Column": "\u1787\u17bd\u179a\u200b\u1788\u179a", -"Row group": "\u1780\u17d2\u179a\u17bb\u1798\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Cell": "\u1780\u17d2\u179a\u17a1\u17b6", -"Middle": "\u1780\u178e\u17d2\u178a\u17b6\u179b", -"Cell type": "\u1794\u17d2\u179a\u1797\u17c1\u1791\u200b\u1780\u17d2\u179a\u17a1\u17b6", -"Copy row": "\u1785\u1798\u17d2\u179b\u1784\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Row properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Table properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u178f\u17b6\u179a\u17b6\u1784", -"Bottom": "\u1780\u17d2\u179a\u17c4\u1798", -"V Align": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1794\u1789\u17d2\u1788\u179a", -"Header": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784", -"Right": "\u179f\u17d2\u178a\u17b6\u17c6", -"Insert column after": "\u1794\u1789\u17d2\u1787\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799", -"Cols": "\u1787\u17bd\u179a\u200b\u1788\u179a", -"Insert row after": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799", -"Width": "\u1791\u1791\u17b9\u1784", -"Cell properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u1780\u17d2\u179a\u17a1\u17b6", -"Left": "\u1786\u17d2\u179c\u17c1\u1784", -"Cut row": "\u1780\u17b6\u178f\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780", -"Delete column": "\u179b\u17bb\u1794\u200b\u1787\u17bd\u179a\u200b\u1788\u179a", -"Center": "\u1780\u178e\u17d2\u178a\u17b6\u179b", -"Merge cells": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17d2\u179a\u17a1\u17b6\u200b\u1785\u17bc\u179b\u200b\u1782\u17d2\u1793\u17b6", -"Insert template": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1796\u17bb\u1798\u17d2\u1796\u200b\u1782\u1798\u17d2\u179a\u17bc", -"Templates": "\u1796\u17bb\u1798\u17d2\u1796\u200b\u1782\u1798\u17d2\u179a\u17bc", -"Background color": "\u1796\u178e\u17cc\u200b\u1795\u17d2\u1791\u17c3\u200b\u1780\u17d2\u179a\u17c4\u1799", -"Custom...": "\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1781\u17d2\u179b\u17bd\u1793...", -"Custom color": "\u1796\u178e\u17cc\u200b\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1781\u17d2\u179b\u17bd\u1793", -"No color": "\u1782\u17d2\u1798\u17b6\u1793\u200b\u1796\u178e\u17cc", -"Text color": "\u1796\u178e\u17cc\u200b\u17a2\u1780\u17d2\u179f\u179a", -"Show blocks": "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u1794\u17d2\u179b\u17bb\u1780", -"Show invisible characters": "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u178f\u17bd\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1780\u17c6\u1794\u17b6\u17c6\u1784", -"Words: {0}": "\u1796\u17b6\u1780\u17d2\u1799: {0}", -"Insert": "\u1794\u1789\u17d2\u1785\u17bc\u179b", -"File": "\u17af\u1780\u179f\u17b6\u179a", -"Edit": "\u1780\u17c2\u1794\u17d2\u179a\u17c2", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u1791\u17b8\u178f\u17b6\u17c6\u1784\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u179f\u17c6\u1794\u17bc\u179a\u1794\u17c2\u1794\u17d4 \u1785\u17bb\u1785 ALT-F9 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u17d4 \u1785\u17bb\u1785 ALT-F10 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u179a\u1794\u17b6\u179a\u200b\u17a7\u1794\u1780\u179a\u178e\u17cd\u17d4 \u1785\u17bb\u1785 ALT-0 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u1787\u17c6\u1793\u17bd\u1799\u17d4", -"Tools": "\u17a7\u1794\u1780\u179a\u178e\u17cd", -"View": "\u1791\u17b7\u178a\u17d2\u178b\u1797\u17b6\u1796", -"Table": "\u178f\u17b6\u179a\u17b6\u1784", -"Format": "\u1791\u1798\u17d2\u179a\u1784\u17cb" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ko_KR.js b/Resources/public/vendor/tinymce/langs/ko_KR.js deleted file mode 100644 index bccdfbd3..00000000 --- a/Resources/public/vendor/tinymce/langs/ko_KR.js +++ /dev/null @@ -1,186 +0,0 @@ -tinymce.addI18n('ko_KR',{ -"Cut": "\uc798\ub77c\ub0b4\uae30", -"Heading 5": "\uc81c\ubaa9 5", -"Header 2": "\uc81c\ubaa9 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\ube0c\ub77c\uc6b0\uc838\uac00 \ud074\ub9bd\ubcf4\ub4dc \uc811\uadfc\uc744 \ud5c8\uc6a9\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. Ctrl+X\/C\/V \ud0a4\ub97c \uc774\uc6a9\ud574 \uc8fc\uc138\uc694.", -"Heading 4": "\uc81c\ubaa9 4", -"Div": "\uad6c\ubd84", -"Heading 2": "\uc81c\ubaa9 2", -"Paste": "\ubd99\uc5ec\ub123\uae30", -"Close": "\ub2eb\uae30", -"Font Family": "\uae00\uaf34", -"Pre": "Pre", -"Align right": "\uc624\ub978\ucabd\uc815\ub82c", -"New document": "\uc0c8 \ubb38\uc11c", -"Blockquote": "\uad6c\ud68d", -"Numbered list": "\uc22b\uc790\ub9ac\uc2a4\ud2b8", -"Heading 1": "\uc81c\ubaa9 1", -"Headings": "\uc81c\ubaa9", -"Increase indent": "\ub4e4\uc5ec\uc4f0\uae30", -"Formats": "\ud3ec\ub9f7", -"Headers": "\uc2a4\ud0c0\uc77c", -"Select all": "\uc804\uccb4\uc120\ud0dd", -"Header 3": "\uc81c\ubaa9 3", -"Blocks": "\ube14\ub85d \uc124\uc815", -"Undo": "\uc2e4\ud589\ucde8\uc18c", -"Strikethrough": "\ucde8\uc18c\uc120", -"Bullet list": "\uc810\ub9ac\uc2a4\ud2b8", -"Header 1": "\uc81c\ubaa9 1", -"Superscript": "\uc717\ucca8\uc790", -"Clear formatting": "\ud3ec\ub9f7\ucd08\uae30\ud654", -"Font Sizes": "\ud3f0\ud2b8 \uc0ac\uc774\uc988", -"Subscript": "\uc544\ub798\ucca8\uc790", -"Header 6": "\uc81c\ubaa9 6", -"Redo": "\ub2e4\uc2dc\uc2e4\ud589", -"Paragraph": "\ub2e8\ub77d", -"Ok": "\ud655\uc778", -"Bold": "\uad75\uac8c", -"Code": "\ucf54\ub4dc", -"Italic": "\uae30\uc6b8\uc784\uaf34", -"Align center": "\uac00\uc6b4\ub370\uc815\ub82c", -"Header 5": "\uc81c\ubaa9 5", -"Heading 6": "\uc81c\ubaa9 6", -"Heading 3": "\uc81c\ubaa9 3", -"Decrease indent": "\ub0b4\uc5b4\uc4f0\uae30", -"Header 4": "\uc81c\ubaa9 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\uc2a4\ud0c0\uc77c\ubcf5\uc0ac \ub044\uae30. \uc774 \uc635\uc158\uc744 \ub044\uae30 \uc804\uc5d0\ub294 \ubcf5\uc0ac \uc2dc, \uc2a4\ud0c0\uc77c\uc774 \ubcf5\uc0ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", -"Underline": "\ubc11\uc904", -"Cancel": "\ucde8\uc18c", -"Justify": "\uc591\ucabd\uc815\ub82c", -"Inline": "\ub77c\uc778 \uc124\uc815", -"Copy": "\ubcf5\uc0ac\ud558\uae30", -"Align left": "\uc67c\ucabd\uc815\ub82c", -"Visual aids": "\uc2dc\uac01\uad50\uc7ac", -"Lower Greek": "\uadf8\ub9ac\uc2a4\uc5b4 \uc18c\ubb38\uc790", -"Square": "\uc0ac\uac01", -"Default": "\uae30\ubcf8", -"Lower Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790", -"Circle": "\uc6d0", -"Disc": "\uc6d0\ubc18", -"Upper Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790", -"Upper Roman": "\ub85c\ub9c8\uc790 \ub300\ubb38\uc790", -"Lower Roman": "\ub85c\ub9c8\uc790 \uc18c\ubb38\uc790", -"Name": "\uc774\ub984", -"Anchor": "\uc575\ucee4", -"You have unsaved changes are you sure you want to navigate away?": "\uc800\uc7a5\ud558\uc9c0 \uc54a\uc740 \uc815\ubcf4\uac00 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud398\uc774\uc9c0\ub97c \ubc97\uc5b4\ub098\uc2dc\uaca0\uc2b5\ub2c8\uae4c?", -"Restore last draft": "\ub9c8\uc9c0\ub9c9 \ucd08\uc548 \ubcf5\uc6d0", -"Special character": "\ud2b9\uc218\ubb38\uc790", -"Source code": "\uc18c\uc2a4\ucf54\ub4dc", -"Right to left": "\uc624\ub978\ucabd\uc5d0\uc11c \uc67c\ucabd", -"Left to right": "\uc67c\ucabd\uc5d0\uc11c \uc624\ub978\ucabd", -"Emoticons": "\uc774\ubaa8\ud2f0\ucf58", -"Robots": "\ub85c\ubd07", -"Document properties": "\ubb38\uc11c \uc18d\uc131", -"Title": "\uc81c\ubaa9", -"Keywords": "\ud0a4\uc6cc\ub4dc", -"Encoding": "\uc778\ucf54\ub529", -"Description": "\uc124\uba85", -"Author": "\uc800\uc790", -"Fullscreen": "\uc804\uccb4\ud654\uba74", -"Horizontal line": "\uac00\ub85c", -"Horizontal space": "\uc218\ud3c9 \uacf5\ubc31", -"Insert\/edit image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785\/\uc218\uc815", -"General": "\uc77c\ubc18", -"Advanced": "\uace0\uae09", -"Source": "\uc18c\uc2a4", -"Border": "\ud14c\ub450\ub9ac", -"Constrain proportions": "\uc791\uc5c5 \uc81c\ud55c", -"Vertical space": "\uc218\uc9c1 \uacf5\ubc31", -"Image description": "\uc774\ubbf8\uc9c0 \uc124\uba85", -"Style": "\uc2a4\ud0c0\uc77c", -"Dimensions": "\ud06c\uae30", -"Insert image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785", -"Insert date\/time": "\ub0a0\uc9dc\/\uc2dc\uac04\uc0bd\uc785", -"Remove link": "\ub9c1\ud06c\uc0ad\uc81c", -"Url": "\uc8fc\uc18c", -"Text to display": "\ubcf8\ubb38", -"Anchors": "\ucc45\uac08\ud53c", -"Insert link": "\ub9c1\ud06c \uc0bd\uc785 ", -"New window": "\uc0c8\ucc3d", -"None": "\uc5c6\uc74c", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\ub300\uc0c1", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\ub9c1\ud06c \uc0bd\uc785\/\uc218\uc815", -"Insert\/edit video": "\ube44\ub514\uc624 \uc0bd\uc785\/\uc218\uc815", -"Poster": "\ud3ec\uc2a4\ud130", -"Alternative source": "\ub300\uccb4 \uc18c\uc2a4", -"Paste your embed code below:": "\uc544\ub798\uc5d0 \ucf54\ub4dc\ub97c \ubd99\uc5ec\ub123\uc73c\uc138\uc694:", -"Insert video": "\ube44\ub514\uc624 \uc0bd\uc785", -"Embed": "\uc0bd\uc785", -"Nonbreaking space": "\ub744\uc5b4\uc4f0\uae30", -"Page break": "\ud398\uc774\uc9c0 \uad6c\ubd84\uc790", -"Paste as text": "\ud14d\uc2a4\ud2b8\ub85c \ubd99\uc5ec\ub123\uae30", -"Preview": "\ubbf8\ub9ac\ubcf4\uae30", -"Print": "\ucd9c\ub825", -"Save": "\uc800\uc7a5", -"Could not find the specified string.": "\ubb38\uc790\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", -"Replace": "\uad50\uccb4", -"Next": "\ub2e4\uc74c", -"Whole words": "\uc804\uccb4 \ub2e8\uc5b4", -"Find and replace": "\ucc3e\uc544\uc11c \uad50\uccb4", -"Replace with": "\uad50\uccb4", -"Find": "\ucc3e\uae30", -"Replace all": "\uc804\uccb4 \uad50\uccb4", -"Match case": "\ub300\uc18c\ubb38\uc790 \uc77c\uce58", -"Prev": "\uc774\uc804", -"Spellcheck": "\ubb38\ubc95\uccb4\ud06c", -"Finish": "\uc644\ub8cc", -"Ignore all": "\uc804\uccb4\ubb34\uc2dc", -"Ignore": "\ubb34\uc2dc", -"Insert row before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785", -"Rows": "\ud589", -"Height": "\ub192\uc774", -"Paste row after": "\ub2e4\uc74c\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30", -"Alignment": "\uc815\ub82c", -"Column group": "\uc5f4 \uadf8\ub8f9", -"Row": "\uc5f4", -"Insert column before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785", -"Split cell": "\uc140 \ub098\ub204\uae30", -"Cell padding": "\uc140 \uc548\ucabd \uc5ec\ubc31", -"Cell spacing": "\uc140 \uac04\uaca9", -"Row type": "\ud589 \ud0c0\uc785", -"Insert table": "\ud14c\uc774\ube14 \uc0bd\uc785", -"Body": "\ubc14\ub514", -"Caption": "\ucea1\uc158", -"Footer": "\ud478\ud130", -"Delete row": "\ud589 \uc9c0\uc6b0\uae30", -"Paste row before": "\uc774\uc804\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30", -"Scope": "\ubc94\uc704", -"Delete table": "\ud14c\uc774\ube14 \uc0ad\uc81c", -"Header cell": "\ud5e4\ub354 \uc140", -"Column": "\ud589", -"Cell": "\uc140", -"Header": "\ud5e4\ub354", -"Cell type": "\uc140 \ud0c0\uc785", -"Copy row": "\ud589 \ubcf5\uc0ac", -"Row properties": "\ud589 \uc18d\uc131", -"Table properties": "\ud14c\uc774\ube14 \uc18d\uc131", -"Row group": "\ud589 \uadf8\ub8f9", -"Right": "\uc624\ub978\ucabd", -"Insert column after": "\ub2e4\uc74c\uc5d0 \uc5f4 \uc0bd\uc785", -"Cols": "\uc5f4", -"Insert row after": "\ub2e4\uc74c\uc5d0 \ud589 \uc0bd\uc785", -"Width": "\ub113\uc774", -"Cell properties": "\uc140 \uc18d", -"Left": "\uc67c\ucabd", -"Cut row": "\ud589 \uc798\ub77c\ub0b4\uae30", -"Delete column": "\uc5f4 \uc9c0\uc6b0\uae30", -"Center": "\uac00\uc6b4\ub370", -"Merge cells": "\uc140 \ud569\uce58\uae30", -"Insert template": "\ud15c\ud50c\ub9bf \uc0bd\uc785", -"Templates": "\ud15c\ud50c\ub9bf", -"Background color": "\ubc30\uacbd\uc0c9", -"Text color": "\ubb38\uc790 \uc0c9\uae54", -"Show blocks": "\ube14\ub7ed \ubcf4\uc5ec\uc8fc\uae30", -"Show invisible characters": "\uc548\ubcf4\uc774\ub294 \ubb38\uc790 \ubcf4\uc774\uae30", -"Words: {0}": "\ub2e8\uc5b4: {0}", -"Insert": "\uc0bd\uc785", -"File": "\ud30c\uc77c", -"Edit": "\uc218\uc815", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\uc11c\uc2dd \uc788\ub294 \ud14d\uc2a4\ud2b8 \ud3b8\uc9d1\uae30 \uc785\ub2c8\ub2e4. ALT-F9\ub97c \ub204\ub974\uba74 \uba54\ub274, ALT-F10\ub97c \ub204\ub974\uba74 \ud234\ubc14, ALT-0\uc744 \ub204\ub974\uba74 \ub3c4\uc6c0\ub9d0\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.", -"Tools": "\ub3c4\uad6c", -"View": "\ubcf4\uae30", -"Table": "\ud14c\uc774\ube14", -"Format": "\ud3ec\ub9f7" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/lb.js b/Resources/public/vendor/tinymce/langs/lb.js deleted file mode 100644 index 7780e33e..00000000 --- a/Resources/public/vendor/tinymce/langs/lb.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('lb',{ -"Cut": "Ausschneiden", -"Header 2": "Titel 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "D\u00e4i Web-Browser \u00ebnnerst\u00ebtzt keen direkten Acc\u00e8s op d'Zw\u00ebschenaplag. Benotz w.e.gl. CTRL+C fir den ausgewielten Text ze kop\u00e9ieren an CTRL+V fir en anzepechen.", -"Div": "DIV", -"Paste": "Apechen", -"Close": "Zoumaachen", -"Font Family": "Schr\u00ebft-Famill", -"Pre": "PRE", -"Align right": "Riets align\u00e9iert", -"New document": "Neit Dokument", -"Blockquote": "Zitat", -"Numbered list": "Nummer\u00e9iert L\u00ebscht", -"Increase indent": "Ident\u00e9ierung vergr\u00e9isseren", -"Formats": "Formater", -"Headers": "Titelen", -"Select all": "Alles auswielen", -"Header 3": "Titel 3", -"Blocks": "Bl\u00e9ck", -"Undo": "R\u00e9ckg\u00e4ngeg maachen", -"Strikethrough": "Duerchgestrach", -"Bullet list": "Opzielung", -"Header 1": "Titel 1", -"Superscript": "H\u00e9ichgestallt", -"Clear formatting": "Format\u00e9ierung l\u00e4schen", -"Font Sizes": "Schr\u00ebft-Gr\u00e9issten", -"Subscript": "Erofgestallt", -"Header 6": "Titel 6", -"Redo": "Widderhuelen", -"Paragraph": "Paragraph", -"Ok": "Okee", -"Bold": "Fett", -"Code": "CODE", -"Italic": "Kursiv", -"Align center": "Zentr\u00e9iert", -"Header 5": "Titel 5", -"Decrease indent": "Ident\u00e9ierung verklengeren", -"Header 4": "Titel 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\"Apechen\" ass elo am Textmodus. Inhalter ginn elo ouni Format\u00e9ierungen agepecht bis du d\u00ebs Optioun ausm\u00e9chs.", -"Underline": "\u00cbnnerstrach", -"Cancel": "Ofbriechen", -"Justify": "Blocksaz", -"Inline": "Inline", -"Copy": "Kop\u00e9ieren", -"Align left": "L\u00e9nks align\u00e9iert", -"Visual aids": "Visuell H\u00ebllefen", -"Lower Greek": "Klengt griichescht Alphabet", -"Square": "Quadrat", -"Default": "Standard", -"Lower Alpha": "Klengt Alphabet", -"Circle": "Krees", -"Disc": "Scheif", -"Upper Alpha": "Grousst Alphabet", -"Upper Roman": "Grousst r\u00e9imescht Alphabet", -"Lower Roman": "Klengt r\u00e9imescht Alphabet", -"Name": "Numm", -"Anchor": "Anker", -"You have unsaved changes are you sure you want to navigate away?": "Du hues ongesp\u00e4ichert \u00c4nnerungen. W\u00eblls du s\u00e9cher ewechnavig\u00e9ieren?", -"Restore last draft": "Leschten Entworf er\u00ebm zr\u00e9cksetzen", -"Special character": "Speziell Zeechen", -"Source code": "Quelltext", -"Right to left": "Vu riets no l\u00e9nks", -"Left to right": "Vu l\u00e9nks no riets", -"Emoticons": "Smileyen", -"Robots": "Robotter", -"Document properties": "Eegeschafte vum Dokument", -"Title": "Titel", -"Keywords": "Schl\u00ebsselwierder", -"Encoding": "Cod\u00e9ierung", -"Description": "Beschreiwung", -"Author": "Auteur", -"Fullscreen": "Vollbildschierm", -"Horizontal line": "Horizontal Linn", -"Horizontal space": "Horizontalen Espace", -"Insert\/edit image": "Bild af\u00fcgen\/\u00e4nneren", -"General": "Allgemeng", -"Advanced": "Erweidert", -"Source": "Quell", -"Border": "Rand", -"Constrain proportions": "Proportioune b\u00e4ibehalen", -"Vertical space": "Vertikalen Espace", -"Image description": "Bildbeschreiwung", -"Style": "Stil", -"Dimensions": "Dimensiounen", -"Insert image": "Bild af\u00fcgen", -"Insert date\/time": "Datum\/Z\u00e4it drasetzen", -"Remove link": "Link l\u00e4schen", -"Url": "URL", -"Text to display": "Text deen unzeweisen ass", -"Anchors": "Ankeren", -"Insert link": "Link drasetzen", -"New window": "Nei F\u00ebnster", -"None": "Keen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "D'URL d\u00e9i s du aginn hues sch\u00e9ngt en externe Link ze sinn. W\u00eblls du den \"http:\/\/\"-Pr\u00e4fix dob\u00e4isetzen?", -"Target": "Zil", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "D'URL d\u00e9i s du aginn hues sch\u00e9ngt eng Email-Adress ze sinn. W\u00eblls du de \"mailto:\"-Pr\u00e4fix dob\u00e4isetzen?", -"Insert\/edit link": "Link drasetzen\/\u00e4nneren", -"Insert\/edit video": "Video drasetzen\/\u00e4nneren", -"Poster": "Pouster", -"Alternative source": "Alternativ Quell", -"Paste your embed code below:": "Abannungscode hei apechen:", -"Insert video": "Video drasetzen", -"Embed": "Abannen", -"Nonbreaking space": "Net\u00ebmbriechenden Espace", -"Page break": "S\u00e4iten\u00ebmbroch", -"Paste as text": "Als Text apechen", -"Preview": "Kucken", -"Print": "Dr\u00e9cken", -"Save": "Sp\u00e4icheren", -"Could not find the specified string.": "Den Text konnt net fonnt ginn.", -"Replace": "Ersetzen", -"Next": "Weider", -"Whole words": "Ganz Wierder", -"Find and replace": "Fannen an ersetzen", -"Replace with": "Ersetze mat", -"Find": "Fannen", -"Replace all": "All ersetzen", -"Match case": "Grouss-\/Klengschreiwung respekt\u00e9ieren", -"Prev": "Zr\u00e9ck", -"Spellcheck": "Verbesseren", -"Finish": "Ofschl\u00e9issen", -"Ignore all": "All ignor\u00e9ieren", -"Ignore": "Ignor\u00e9ieren", -"Add to Dictionary": "An den Dictionnaire androen", -"Insert row before": "Rei virdrun drasetzen", -"Rows": "Reien", -"Height": "H\u00e9icht", -"Paste row after": "Rei herno apechen", -"Alignment": "Align\u00e9ierung", -"Column group": "Kolonnegrupp", -"Row": "Rei", -"Insert column before": "Kolonn virdrun drasetzen", -"Split cell": "Zell opspl\u00e9cken", -"Cell padding": "Zellenopf\u00ebllung", -"Cell spacing": "Zellenofstand", -"Row type": "Reientyp", -"Insert table": "Tabell drasetzen", -"Body": "Kierper", -"Caption": "Beschr\u00ebftung", -"Footer": "Fouss", -"Delete row": "Rei l\u00e4schen", -"Paste row before": "Rei virdrun apechen", -"Scope": "Ber\u00e4ich", -"Delete table": "Tabell l\u00e4schen", -"Header cell": "Kappzell", -"Column": "Kolonn", -"Cell": "Zell", -"Header": "Kapp", -"Cell type": "Zellentyp", -"Copy row": "Rei kop\u00e9ieren", -"Row properties": "Eegeschafte vu Reien", -"Table properties": "Eegeschafte vun Tabellen", -"Row group": "Reiegrupp", -"Right": "Riets", -"Insert column after": "Kolonn herno drasetzen", -"Cols": "Kolonnen", -"Insert row after": "Rei herno drasetzen", -"Width": "Breet", -"Cell properties": "Eegeschafte vun Zellen", -"Left": "L\u00e9nks", -"Cut row": "Rei ausschneiden", -"Delete column": "Kolonn l\u00e4schen", -"Center": "M\u00ebtt", -"Merge cells": "Zelle fusion\u00e9ieren", -"Insert template": "Virlag drasetzen", -"Templates": "Virlagen", -"Background color": "Hanndergrondfaarf", -"Text color": "Textfaarf", -"Show blocks": "Bl\u00e9ck weisen", -"Show invisible characters": "Onsiichtbar Zeeche weisen", -"Words: {0}": "Wierder: {0}", -"Insert": "Drasetzen", -"File": "Fichier", -"Edit": "\u00c4nneren", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ber\u00e4ich fir format\u00e9ierten Text. Dr\u00e9ck ALT+F9 fir de Men\u00fc. Dr\u00e9ck ALT+F10 fir d'Geschirleescht. Dr\u00e9ck ALT+0 fir d'H\u00ebllef.", -"Tools": "Geschir", -"View": "Kucken", -"Table": "Tabell", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/lt.js b/Resources/public/vendor/tinymce/langs/lt.js deleted file mode 100644 index 411a71f8..00000000 --- a/Resources/public/vendor/tinymce/langs/lt.js +++ /dev/null @@ -1,186 +0,0 @@ -tinymce.addI18n('lt',{ -"Cut": "I\u0161kirpti", -"Heading 5": "Antra\u0161t\u0117 5", -"Header 2": "Antra\u0161t\u0117 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nar\u0161ykl\u0117s nustatymai neleid\u017eia redaktoriui tiesiogiai pasiekti laikinosios atminties. Pra\u0161ome naudoti klaviat\u016bros klavi\u0161us Ctrl+X\/C\/V.", -"Heading 4": "Antra\u0161t\u0117 4", -"Div": "Div", -"Heading 2": "Antra\u0161t\u0117 2", -"Paste": "\u012ed\u0117ti", -"Close": "U\u017edaryti", -"Font Family": "\u0160riftas", -"Pre": "Pre", -"Align right": "Lygiuoti de\u0161in\u0117je", -"New document": "Naujas dokumentas", -"Blockquote": "Citata", -"Numbered list": "Skaitmeninis s\u0105ra\u0161as", -"Heading 1": "Antra\u0161t\u0117 1", -"Headings": "Antra\u0161t\u0117s", -"Increase indent": "Didinti \u012ftrauk\u0105", -"Formats": "Formatai", -"Headers": "Antra\u0161t\u0117s", -"Select all": "Pa\u017eym\u0117ti visk\u0105", -"Header 3": "Antra\u0161t\u0117 3", -"Blocks": "Blokai", -"Undo": "Atstatyti", -"Strikethrough": "Perbrauktas", -"Bullet list": "\u017denklinimo s\u0105ra\u0161as", -"Header 1": "Antra\u0161t\u0117 1", -"Superscript": "Vir\u0161utinis indeksas", -"Clear formatting": "Naikinti formatavim\u0105", -"Font Sizes": "\u0160rifto dyd\u017eiai", -"Subscript": "Apatinis indeksas", -"Header 6": "Antra\u0161t\u0117 6", -"Redo": "Gr\u0105\u017einti", -"Paragraph": "Paragrafas", -"Ok": "Gerai", -"Bold": "Pary\u0161kintas", -"Code": "Kodas", -"Italic": "Kursyvinis", -"Align center": "Centruoti", -"Header 5": "Antra\u0161t\u0117 5", -"Heading 6": "Antra\u0161t\u0117 6", -"Heading 3": "Antra\u0161t\u0117 3", -"Decrease indent": "Ma\u017einti \u012ftrauk\u0105", -"Header 4": "Antra\u0161t\u0117 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Dabar \u012fterpiama paprastojo teksto re\u017eimu. Kol \u0161i parinktis \u012fjungta, turinys bus \u012fterptas kaip paprastas tekstas.", -"Underline": "Pabrauktas", -"Cancel": "Atsisakyti", -"Justify": "I\u0161d\u0117styti per vis\u0105 plot\u012f", -"Inline": "Inline", -"Copy": "Kopijuoti", -"Align left": "Lygiuoti kair\u0117je", -"Visual aids": "Vaizdin\u0117s priemon\u0117s", -"Lower Greek": "Ma\u017eosios graik\u0173", -"Square": "Kvadratas", -"Default": "Pagrindinis", -"Lower Alpha": "Ma\u017eosios raid\u0117s", -"Circle": "Apskritimas", -"Disc": "Diskas", -"Upper Alpha": "Did\u017eiosios raid\u0117s", -"Upper Roman": "Did\u017eiosios rom\u0117n\u0173", -"Lower Roman": "Ma\u017eosios rom\u0117n\u0173", -"Name": "Pavadinimas", -"Anchor": "\u017dym\u0117", -"You have unsaved changes are you sure you want to navigate away?": "Turite nei\u0161saugot\u0173 pakeitim\u0173! Ar tikrai norite i\u0161eiti?", -"Restore last draft": "Atstatyti paskutin\u012f projekt\u0105", -"Special character": "Specialus simbolis", -"Source code": "Pirminis \u0161altinis", -"Right to left": "I\u0161 de\u0161in\u0117s \u012f kair\u0119", -"Left to right": "I\u0161 kair\u0117s \u012f de\u0161in\u0119", -"Emoticons": "Jaustukai", -"Robots": "Robotai", -"Document properties": "Dokumento savyb\u0117s", -"Title": "Pavadinimas", -"Keywords": "\u017dymos", -"Encoding": "Kodavimas", -"Description": "Apra\u0161as", -"Author": "Autorius", -"Fullscreen": "Visas ekranas", -"Horizontal line": "Horizontali linija", -"Horizontal space": "Horizontalus tarpas", -"Insert\/edit image": "\u012eterpti|Tvarkyti paveiksl\u0117l\u012f", -"General": "Bendra", -"Advanced": "I\u0161pl\u0117stas", -"Source": "Pirmin\u0117 nuoroda", -"Border": "R\u0117melis", -"Constrain proportions": "Laikytis proporcij\u0173", -"Vertical space": "Vertikalus tarpas", -"Image description": "Paveiksl\u0117lio apra\u0161as", -"Style": "Stilius", -"Dimensions": "Matmenys", -"Insert image": "\u012eterpti paveiksl\u0117l\u012f", -"Insert date\/time": "\u012eterpti dat\u0105\/laik\u0105", -"Remove link": "\u0160alinti nuorod\u0105", -"Url": "Nuoroda", -"Text to display": "Rodomas tekstas", -"Anchors": "\u017dym\u0117", -"Insert link": "\u012eterpti nuorod\u0105", -"New window": "Naujas langas", -"None": "Nieko", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Atrodo, kad \u012fved\u0117te nuotolin\u0119 nuorod\u0105. Ar norite prie\u0161 j\u0105 \u012fvesti reikalaujam\u0105 \u201ehttp:\/\/\u201c?", -"Target": "Tikslin\u0117 nuoroda", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Atrodo, kad \u012fvesta nuoroda yra elektroninio pa\u0161to adresas. Ar prad\u017eioje norite \u012fvesti reikalaujam\u0105 \u201emailto:\u201c?", -"Insert\/edit link": "\u012eterpti\/taisyti nuorod\u0105", -"Insert\/edit video": "\u012eterpti\/tvarkyti video", -"Poster": "Plakatas", -"Alternative source": "Alternatyvus \u0161altinis", -"Paste your embed code below:": "\u012eterpkite kod\u0105 \u017eemiau:", -"Insert video": "\u012eterpti video", -"Embed": "\u012eterpti", -"Nonbreaking space": "Nepertraukiamos vietos", -"Page break": "Puslapio skirtukas", -"Paste as text": "\u012eklijuoti kaip tekst\u0105", -"Preview": "Per\u017ei\u016bra", -"Print": "Spausdinti", -"Save": "I\u0161saugoti", -"Could not find the specified string.": "Nepavyko rasti nurodytos eilut\u0117s.", -"Replace": "Pakeisti", -"Next": "Sekantis", -"Whole words": "Visus \u017eod\u017eius", -"Find and replace": "Surasti ir pakeisti", -"Replace with": "Kuo pakeisti", -"Find": "Ie\u0161koti", -"Replace all": "Pakeisti visk\u0105", -"Match case": "Atitinkamus", -"Prev": "Ankstesnis", -"Spellcheck": "Ra\u0161ybos tikrinimas", -"Finish": "Baigti", -"Ignore all": "Ignoruoti visk\u0105", -"Ignore": "Ignoruoti", -"Insert row before": "\u012eterpti eilut\u0119 prie\u0161", -"Rows": "Eilut\u0117s", -"Height": "Auk\u0161tis", -"Paste row after": "\u012ed\u0117ti eilut\u0119 po", -"Alignment": "Lygiavimas", -"Column group": "Stulpeli\u0173 grup\u0117", -"Row": "Eilut\u0117s", -"Insert column before": "\u012eterpti stulpel\u012f prie\u0161", -"Split cell": "Skaidyti langelius", -"Cell padding": "Tarpas nuo langelio iki teksto", -"Cell spacing": "Tarpas tarp langeli\u0173", -"Row type": "Eilu\u010di\u0173 tipas", -"Insert table": "\u012eterpti lentel\u0119", -"Body": "Turinys", -"Caption": "Antra\u0161t\u0117", -"Footer": "Apa\u010dia", -"Delete row": "Naikinti eilut\u0119", -"Paste row before": "\u012ed\u0117ti eilut\u0119 prie\u0161", -"Scope": "Strukt\u016bra", -"Delete table": "\u0160alinti lentel\u0119", -"Header cell": "Antra\u0161t\u0117s langelis", -"Column": "Stulpelis", -"Cell": "Langeliai", -"Header": "Antra\u0161t\u0117", -"Cell type": "Langelio tipas", -"Copy row": "Kopijuoti eilut\u0119", -"Row properties": "Eilut\u0117s savyb\u0117s", -"Table properties": "Lentel\u0117s savyb\u0117s", -"Row group": "Eilu\u010di\u0173 grup\u0117", -"Right": "De\u0161in\u0117", -"Insert column after": "\u012eterpti stulpel\u012f po", -"Cols": "Stulpeliai", -"Insert row after": "\u012eterpti eilut\u0119 po", -"Width": "Plotis", -"Cell properties": "Langelio savyb\u0117s", -"Left": "Kair\u0117", -"Cut row": "I\u0161kirpti eilut\u0119", -"Delete column": "Naikinti stulpel\u012f", -"Center": "Centras", -"Merge cells": "Sujungti langelius", -"Insert template": "\u012eterpti \u0161ablon\u0105", -"Templates": "\u0160ablonai", -"Background color": "Fono spalva", -"Text color": "Teksto spalva", -"Show blocks": "Rodyti blokus", -"Show invisible characters": "Rodyti nematomus simbolius", -"Words: {0}": "\u017dod\u017eiai: {0}", -"Insert": "\u012eterpti", -"File": "Failas", -"Edit": "Redaguoti", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Suformatuoto teksto laukas. D\u0117l meniu spauskite ALT-F9. U\u017eduo\u010di\u0173 juostos \u012fjungimui spauskite ALT-F10. Pagalbai - spauskite ALT-0.", -"Tools": "\u012erankiai", -"View": "Per\u017ei\u016bra", -"Table": "Lentel\u0117", -"Format": "Formatas" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/lv.js b/Resources/public/vendor/tinymce/langs/lv.js deleted file mode 100644 index 7de36905..00000000 --- a/Resources/public/vendor/tinymce/langs/lv.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('lv',{ -"Cut": "Izgriezt", -"Heading 5": "5.l\u012bme\u0146a virsraksts", -"Header 2": "Otr\u0101 l\u012bme\u0146a virsraksts", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "J\u016bsu p\u0101rl\u016bkprogramma neatbalsta piek\u013cuvi starpliktuvei. L\u016bdzu izmantojiet Ctrl+X\/C\/V klaviat\u016bras sa\u012bsnes.", -"Heading 4": "4.l\u012bme\u0146a virsraksts", -"Div": "Div elements", -"Heading 2": "2.l\u012bme\u0146a virsraksts", -"Paste": "Iel\u012bm\u0113t", -"Close": "Aizv\u0113rt", -"Font Family": "Fontu saime", -"Pre": "Pre elements", -"Align right": "L\u012bdzin\u0101t pa labi", -"New document": "Jauns dokuments", -"Blockquote": "Cit\u0101ts", -"Numbered list": "Numur\u0113ts saraksts", -"Heading 1": "1. l\u012bme\u0146a virsraksts", -"Headings": "Virsraksti", -"Increase indent": "Palielin\u0101t atk\u0101pi", -"Formats": "Form\u0101ti", -"Headers": "Virsraksti", -"Select all": "Iez\u012bm\u0113t", -"Header 3": "Tre\u0161\u0101 l\u012bme\u0146a virsraksts", -"Blocks": "Bloka elements", -"Undo": "Atsaukt", -"Strikethrough": "P\u0101rsv\u012btrot", -"Bullet list": "Nenumuer\u0113ts saraksts", -"Header 1": "Pirm\u0101 l\u012bme\u0146a virsraksts", -"Superscript": "Aug\u0161raksts", -"Clear formatting": "No\u0146emt format\u0113jumu", -"Font Sizes": "Fonta izm\u0113ri", -"Subscript": "Apak\u0161raksts", -"Header 6": "Sest\u0101 l\u012bme\u0146a virsraksts", -"Redo": "Atcelt atsauk\u0161anu", -"Paragraph": "Paragr\u0101fs", -"Ok": "Labi", -"Bold": "Treknraksts", -"Code": "Koda elements", -"Italic": "Kurs\u012bvs", -"Align center": "Centr\u0113t", -"Header 5": "Piekt\u0101 l\u012bme\u0146a virsraksts", -"Heading 6": "6.l\u012bme\u0146a virsraksts", -"Heading 3": "3.l\u012bme\u0146a virsraksts", -"Decrease indent": "Samazin\u0101t atk\u0101pi", -"Header 4": "Ceturt\u0101 l\u012bme\u0146a virsraksts", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Iel\u012bm\u0113\u0161ana tagad ir vienk\u0101r\u0161teksta re\u017e\u012bm\u0101. Saturs tiks iel\u012bm\u0113ts k\u0101 vienk\u0101r\u0161teksts, l\u012bdz \u0161\u012b opcija tiks atsl\u0113gta.", -"Underline": "Pasv\u012btrot", -"Cancel": "Atcelt", -"Justify": "L\u012bdzin\u0101t abas malas", -"Inline": "Rindi\u0146as elements", -"Copy": "Kop\u0113t", -"Align left": "L\u012bdzin\u0101t pa kreisi", -"Visual aids": "Uzskates l\u012bdzek\u013ci", -"Lower Greek": "Grie\u0137u mazie burti", -"Square": "Kvadr\u0101ts", -"Default": "Noklus\u0113juma", -"Lower Alpha": "Lat\u012b\u0146u mazie burti", -"Circle": "Aplis", -"Disc": "Disks", -"Upper Alpha": "Lat\u012b\u0146u lielie burti", -"Upper Roman": "Romie\u0161u lielie burti", -"Lower Roman": "Romie\u0161u mazie burti", -"Name": "V\u0101rds", -"Anchor": "Enkurelements", -"You have unsaved changes are you sure you want to navigate away?": "Jums ir nesaglab\u0101tas izmai\u0146as, esat dro\u0161s, ka v\u0113laties doties prom", -"Restore last draft": "Atjaunot p\u0113d\u0113jo melnrakstu", -"Special character": "\u012apa\u0161ais simbols", -"Source code": "Pirmkods", -"Color": "Kr\u0101sa", -"Right to left": "No lab\u0101s uz kreiso", -"Left to right": "No kreis\u0101s uz labo", -"Emoticons": "Emocijas", -"Robots": "Programmas", -"Document properties": "Dokumenta uzst\u0101d\u012bjumi", -"Title": "Nosaukums", -"Keywords": "Atsl\u0113gv\u0101rdi", -"Encoding": "Kod\u0113jums", -"Description": "Apraksts", -"Author": "Autors", -"Fullscreen": "Pilnekr\u0101na re\u017e\u012bms", -"Horizontal line": "Horizont\u0101la l\u012bnija", -"Horizontal space": "Horizont\u0101l\u0101 vieta", -"Insert\/edit image": "Ievietot\/labot att\u0113lu", -"General": "Visp\u0101r\u012bgi", -"Advanced": "Papildus", -"Source": "Avots", -"Border": "Apmale", -"Constrain proportions": "Saglab\u0101t malu attiec\u012bbu", -"Vertical space": "Vertik\u0101l\u0101 vieta", -"Image description": "Att\u0113la apraksts", -"Style": "Stils", -"Dimensions": "Izm\u0113ri", -"Insert image": "Ievietot att\u0113lu", -"Insert date\/time": "Ievietot datumu\/laiku", -"Remove link": "No\u0146emt saiti", -"Url": "Adrese", -"Text to display": "Teksts", -"Anchors": "Enkurelements", -"Insert link": "Ievietot saiti", -"New window": "Jauns logs", -"None": "Nek\u0101", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Liekas, ka ievad\u012bt\u0101 adrese ir \u0101r\u0113ja saite. Vai v\u0113lieties pievienot nepiecie\u0161amo http:\/\/ pried\u0113kli?", -"Target": "M\u0113r\u0137is", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Liekas, ka ievad\u012bt\u0101 adrese ir e-pasts. Vai v\u0113lieties pievienot nepiecie\u0161amo mailto: pried\u0113kli?", -"Insert\/edit link": "Ievietot\/labot saiti", -"Insert\/edit video": "Ievietot\/redi\u0123\u0113t video", -"Poster": "Att\u0113ls", -"Alternative source": "Alternat\u012bvs avots", -"Paste your embed code below:": "Iekop\u0113jiet embed kodu zem\u0101k:", -"Insert video": "Ievietot video", -"Embed": "Embed", -"Nonbreaking space": "L\u012bnij-nedalo\u0161s atstarpes simbols", -"Page break": "P\u0101rnest jaun\u0101 lap\u0101", -"Paste as text": "Iel\u012bm\u0113t k\u0101 tekstu", -"Preview": "Priek\u0161skat\u012bjums", -"Print": "Print\u0113t", -"Save": "Saglab\u0101t", -"Could not find the specified string.": "Mekl\u0113tais teksts netika atrasts", -"Replace": "Aizvietot", -"Next": "N\u0101ko\u0161ais", -"Whole words": "Pilnus v\u0101rdus", -"Find and replace": "Mekl\u0113t un aizvietot", -"Replace with": "Aizvietot ar", -"Find": "Mekl\u0113t", -"Replace all": "Aizvietot visu", -"Match case": "Re\u0123istrj\u016bt\u012bgs", -"Prev": "Iepriek\u0161\u0113jais", -"Spellcheck": "Pareizrakst\u012bbas p\u0101rbaude", -"Finish": "Beigt", -"Ignore all": "Ignor\u0113t visu", -"Ignore": "Ignor\u0113t", -"Add to Dictionary": "Pievienot v\u0101rdn\u012bcai", -"Insert row before": "Ievietot rindu pirms", -"Rows": "Rindas", -"Height": "Augstums", -"Paste row after": "Iel\u012bm\u0113t rindu p\u0113c", -"Alignment": "L\u012bdzin\u0101jums", -"Border color": "Apmales kr\u0101sa", -"Column group": "Kolonnu grupa", -"Row": "Rinda", -"Insert column before": "Ievietot kolonu pirms", -"Split cell": "Sadal\u012bt \u0161\u016bnas", -"Cell padding": "\u0160\u016bnas atstatumi", -"Cell spacing": "\u0160\u016bnu atstarpes", -"Row type": "Rindas tips", -"Insert table": "Ievietot tabulu", -"Body": "\u0136ermenis", -"Caption": "Virsraksts", -"Footer": "K\u0101jene", -"Delete row": "Dz\u0113st rindu", -"Paste row before": "Iel\u012bm\u0113t rindu pirms", -"Scope": "Apgabals", -"Delete table": "Dz\u0113st tabulu", -"H Align": "Horizont\u0101lais novietojums", -"Top": "Aug\u0161\u0101", -"Header cell": "Galvenes \u0161\u016bna", -"Column": "Kolona", -"Row group": "Rindu grupa", -"Cell": "\u0160\u016bna", -"Middle": "Vid\u016b", -"Cell type": "\u0160\u016bnas tips", -"Copy row": "Kop\u0113t rindu", -"Row properties": "Rindas uzst\u0101d\u012bjumi", -"Table properties": "Tabulas uzst\u0101d\u012bjumi", -"Bottom": "Apak\u0161\u0101", -"V Align": "Vertik\u0101lais novietojums", -"Header": "Galvene", -"Right": "Pa labi", -"Insert column after": "Ievietot kolonu p\u0113c", -"Cols": "Kolonas", -"Insert row after": "Ievietot rindu p\u0113c", -"Width": "Platums", -"Cell properties": "\u0160\u016bnas uzst\u0101d\u012bjumi", -"Left": "Pa kreisi", -"Cut row": "Izgriezt rindu", -"Delete column": "Dz\u0113st kolonu", -"Center": "Centr\u0113t", -"Merge cells": "Apvienot \u0161\u016bnas", -"Insert template": "Ievietot \u0161ablonu", -"Templates": "\u0160abloni", -"Background color": "Fona kr\u0101sa", -"Custom...": "Izv\u0113les...", -"Custom color": "Kr\u0101sa p\u0113c izv\u0113les", -"No color": "Bez kr\u0101sas", -"Text color": "Teksta kr\u0101sa", -"Show blocks": "R\u0101d\u012bt blokus", -"Show invisible characters": "R\u0101d\u012bt neredzam\u0101s rakstz\u012bmes", -"Words: {0}": "V\u0101rdi: {0}", -"Insert": "Ievietot", -"File": "Fails", -"Edit": "Labot", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Vizu\u0101li redi\u0123\u0113jama teksta apgabals. Nospiediet ALT-F9 izv\u0113lnei, ALT-F10 r\u012bkjoslai vai ALT-0 pal\u012bdz\u012bbai.", -"Tools": "R\u012bki", -"View": "Skat\u012bt", -"Table": "Tabula", -"Format": "Form\u0101ts" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ml.js b/Resources/public/vendor/tinymce/langs/ml.js deleted file mode 100644 index 34cf203a..00000000 --- a/Resources/public/vendor/tinymce/langs/ml.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('ml',{ -"Cut": "\u0d2e\u0d41\u0d31\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", -"Div": "Div", -"Paste": "\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Close": "\u0d05\u0d1f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "\u0d35\u0d32\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d", -"New document": "\u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d30\u0d1a\u0d28", -"Blockquote": "Blockquote", -"Numbered list": "\u0d0e\u0d23\u0d4d\u0d23\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15", -"Increase indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d41\u0d15", -"Formats": "Formats", -"Headers": "Headers", -"Select all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "\u0d35\u0d47\u0d23\u0d4d\u0d1f", -"Strikethrough": "\u0d35\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d15", -"Bullet list": "\u0d05\u0d1f\u0d2f\u0d3e\u0d33\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15", -"Header 1": "Header 1", -"Superscript": "\u0d38\u0d42\u0d2a\u0d4d\u0d2a\u0d30\u0d4d\u200d\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d", -"Clear formatting": "\u0d35\u0d46\u0d1f\u0d3f\u0d2a\u0d4d\u0d2a\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Font Sizes": "Font Sizes", -"Subscript": "\u0d38\u0d2c\u0d4d\u200c\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d", -"Header 6": "Header 6", -"Redo": "\u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02", -"Paragraph": "Paragraph", -"Ok": "\u0d36\u0d30\u0d3f", -"Bold": "\u0d15\u0d28\u0d24\u0d4d\u0d24", -"Code": "Code", -"Italic": "\u0d1a\u0d46\u0d30\u0d3f\u0d1e\u0d4d\u0d1e", -"Align center": "\u0d28\u0d1f\u0d41\u0d35\u0d3f\u0d32\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d", -"Header 5": "Header 5", -"Decrease indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d41\u0d31\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "\u0d05\u0d1f\u0d3f\u0d35\u0d30", -"Cancel": "\u0d31\u0d26\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Justify": "\u0d38\u0d28\u0d4d\u0d24\u0d41\u0d32\u0d3f\u0d24\u0d2e\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Inline": "Inline", -"Copy": "\u0d2a\u0d15\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Align left": "\u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d", -"Visual aids": "\u0d26\u0d43\u0d36\u0d4d\u0d2f\u0d38\u0d39\u0d3e\u0d2f\u0d3f\u0d15\u0d33\u0d4d\u200d", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", -"Restore last draft": "Restore last draft", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "Right to left", -"Left to right": "Left to right", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document properties", -"Title": "Title", -"Keywords": "Keywords", -"Encoding": "Encoding", -"Description": "Description", -"Author": "Author", -"Fullscreen": "Fullscreen", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background color", -"Text color": "Text color", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ml_IN.js b/Resources/public/vendor/tinymce/langs/ml_IN.js deleted file mode 100644 index 607e03e9..00000000 --- a/Resources/public/vendor/tinymce/langs/ml_IN.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('ml_IN',{ -"Cut": "\u0d2e\u0d41\u0d31\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ", -"Header 2": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d2c\u0d4d\u0d30\u0d4c\u0d38\u0d30\u0d4d\u200d \u0d15\u0d4d\u0d32\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d\u0d2c\u0d4b\u0d30\u0d4d\u200d\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4d\u0d30\u0d35\u0d47\u0d36\u0d28\u0d02 \u0d28\u0d32\u0d4d\u200d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d3f\u0d32\u0d4d\u0d32. \u0d26\u0d2f\u0d35\u0d41 \u0d1a\u0d46\u0d2f\u0d4d\u0d24 CTRL+X\/C\/V \u0d37\u0d4b\u0d30\u0d4d\u200d\u0d1f\u0d4d\u0d1f\u0d4d\u0d15\u0d1f\u0d4d\u0d1f\u0d41\u0d15\u0d33\u0d4d\u200d \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Div": "\u0d21\u0d3f\u0d35\u0d4d", -"Paste": "\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Close": "\u0d05\u0d1f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Font Family": "\u0d2b\u0d4b\u0d23\u0d4d\u0d1f\u0d4d \u0d15\u0d41\u0d1f\u0d41\u0d02\u0d2c\u0d02", -"Pre": "\u0d2a\u0d4d\u0d30\u0d40", -"Align right": "\u0d35\u0d32\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"New document": "\u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d30\u0d1a\u0d28", -"Blockquote": "\u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d09\u0d26\u0d4d\u0d27\u0d30\u0d23\u0d3f", -"Numbered list": "\u0d0e\u0d23\u0d4d\u0d23\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15", -"Increase indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d41\u0d15", -"Formats": "\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d02\u0d2e\u0d1f\u0d4d\u0d1f\u0d41\u0d02", -"Headers": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d15\u0d33\u0d4d\u200d", -"Select all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Header 3": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c3", -"Blocks": "\u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d02", -"Undo": "\u0d1a\u0d46\u0d2f\u0d4d\u0d24\u0d24\u0d4d \u0d24\u0d3f\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Strikethrough": "\u0d35\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d15", -"Bullet list": "\u0d05\u0d1f\u0d2f\u0d3e\u0d33\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15", -"Header 1": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c1", -"Superscript": "\u0d38\u0d42\u0d2a\u0d4d\u0d2a\u0d30\u0d4d\u200d\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d", -"Clear formatting": "\u0d35\u0d46\u0d1f\u0d3f\u0d2a\u0d4d\u0d2a\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Font Sizes": "\u0d2b\u0d4b\u0d23\u0d4d\u0d1f\u0d4d \u0d35\u0d32\u0d3f\u0d2a\u0d4d\u0d2a\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Subscript": "\u0d38\u0d2c\u0d4d\u200c\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d", -"Header 6": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c6", -"Redo": "\u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02 \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15", -"Paragraph": "\u0d16\u0d23\u0d4d\u200c\u0d21\u0d3f\u0d15", -"Ok": "\u0d36\u0d30\u0d3f", -"Bold": "\u0d15\u0d28\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Code": "\u0d15\u0d4b\u0d21\u0d4d", -"Italic": "\u0d1a\u0d46\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Align center": "\u0d28\u0d1f\u0d41\u0d35\u0d3f\u0d32\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Header 5": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c5", -"Decrease indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d41\u0d31\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ", -"Header 4": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d \u0d07\u0d2a\u0d4d\u0d2a\u0d4b\u0d33\u0d4d\u200d \u0d32\u0d33\u0d3f\u0d24\u0d2e\u0d3e\u0d2f \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f\u0d1f\u0d4d\u0d1f\u0d3e\u0d23\u0d4d. \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d08 \u0d38\u0d57\u0d15\u0d30\u0d4d\u0d2f\u0d02 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d \u0d35\u0d30\u0d46 \u0d09\u0d33\u0d4d\u0d33\u0d1f\u0d15\u0d4d\u0d15\u0d02 \u0d32\u0d33\u0d3f\u0d24 \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f\u0d1f\u0d4d\u0d1f\u0d3e\u0d2f\u0d3f\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d02 \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d. ", -"Underline": "\u0d05\u0d1f\u0d3f\u0d35\u0d30\u0d2f\u0d3f\u0d1f\u0d41\u0d15", -"Cancel": "\u0d31\u0d26\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Justify": "\u0d38\u0d28\u0d4d\u0d24\u0d41\u0d32\u0d3f\u0d24\u0d2e\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Inline": "\u0d35\u0d30\u0d3f\u0d2f\u0d3f\u0d32\u0d4d\u200d", -"Copy": "\u0d2a\u0d15\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Align left": "\u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Visual aids": "\u0d26\u0d43\u0d36\u0d4d\u0d2f\u0d38\u0d39\u0d3e\u0d2f\u0d3f\u0d15\u0d33\u0d4d\u200d", -"Lower Greek": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d17\u0d4d\u0d30\u0d40\u0d15\u0d4d\u0d15\u0d4d\u200c \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Square": "\u0d38\u0d2e\u0d1a\u0d24\u0d41\u0d30\u0d02", -"Default": "\u0d09\u0d2a\u0d47\u0d15\u0d4d\u0d37", -"Lower Alpha": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Circle": "\u0d35\u0d1f\u0d4d\u0d1f\u0d02", -"Disc": "\u0d1a\u0d15\u0d4d\u0d30\u0d02", -"Upper Alpha": "\u0d35\u0d32\u0d3f\u0d2f \u0d06\u0d32\u0d4d\u0d2b\u0d3e \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Upper Roman": "\u0d35\u0d32\u0d3f\u0d2f \u0d31\u0d4b\u0d2e\u0d28\u0d4d\u200d \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Lower Roman": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d31\u0d4b\u0d2e\u0d28\u0d4d\u200d \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Name": "\u0d2a\u0d47\u0d30\u0d4d", -"Anchor": "\u0d28\u0d19\u0d4d\u0d15\u0d42\u0d30\u0d02", -"You have unsaved changes are you sure you want to navigate away?": "\u0d30\u0d15\u0d4d\u0d37\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d3e\u0d24\u0d4d\u0d24 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d28\u0d3f\u0d32\u0d28\u0d3f\u0d32\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41. \u0d2a\u0d41\u0d31\u0d24\u0d4d\u0d24\u0d41 \u0d15\u0d1f\u0d15\u0d4d\u0d15\u0d23\u0d4b?", -"Restore last draft": "\u0d2a\u0d34\u0d2f \u0d21\u0d4d\u0d30\u0d3e\u0d2b\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d24\u0d3f\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d41 \u0d15\u0d4a\u0d23\u0d4d\u0d1f\u0d4d \u0d35\u0d30\u0d3f\u0d15", -"Special character": "\u0d2a\u0d4d\u0d30\u0d24\u0d4d\u0d2f\u0d47\u0d15\u0d3e\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Source code": "\u0d38\u0d4b\u0d34\u0d4d\u0d38\u0d4d \u0d15\u0d4b\u0d21\u0d4d", -"Right to left": "\u0d35\u0d32\u0d24\u0d4d\u0d24\u0d41 \u0d28\u0d3f\u0d28\u0d4d\u0d28\u0d41\u0d02 \u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d", -"Left to right": "\u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d4d \u0d28\u0d3f\u0d28\u0d4d\u0d28\u0d41\u0d02 \u0d35\u0d32\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d", -"Emoticons": "\u0d1a\u0d3f\u0d39\u0d4d\u0d28 \u0d2d\u0d3e\u0d37", -"Robots": "\u0d2f\u0d28\u0d4d\u0d24\u0d4d\u0d30\u0d2e\u0d28\u0d41\u0d37\u0d4d\u0d2f\u0d28\u0d4d\u200d", -"Document properties": "\u0d21\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d2e\u0d46\u0d28\u0d4d\u0d31\u0d4d \u0d17\u0d41\u0d23\u0d35\u0d3f\u0d36\u0d47\u0d37\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Title": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d", -"Keywords": "\u0d38\u0d42\u0d1a\u0d15\u0d2a\u0d26\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Encoding": "\u0d0e\u0d7b\u0d15\u0d4b\u0d21\u0d3f\u0d02\u0d17\u0d4d", -"Description": "\u0d35\u0d3f\u0d35\u0d30\u0d23\u0d02", -"Author": "\u0d32\u0d47\u0d16\u0d15\u0d28\u0d4d\u200d", -"Fullscreen": "\u0d2b\u0d41\u0d33\u0d4d\u200d\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d40\u0d28\u0d4d\u200d", -"Horizontal line": "\u0d36\u0d3e\u0d16\u0d3e\u0d2a\u0d3e\u0d24", -"Horizontal space": "\u0d24\u0d3f\u0d30\u0d36\u0d4d\u0d1a\u0d40\u0d28\u0d2e\u0d3e\u0d2f \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02", -"Insert\/edit image": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/ \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15", -"General": "\u0d2a\u0d4a\u0d24\u0d41\u0d35\u0d3e\u0d2f", -"Advanced": "\u0d2a\u0d41\u0d30\u0d47\u0d3e\u0d17\u0d2e\u0d3f\u0d1a\u0d4d\u0d1a", -"Source": "\u0d09\u0d31\u0d35\u0d3f\u0d1f\u0d02", -"Border": "\u0d05\u0d24\u0d3f\u0d30\u0d4d", -"Constrain proportions": "\u0d28\u0d3f\u0d30\u0d4d\u200d\u0d2c\u0d28\u0d4d\u0d27\u0d3e\u0d28\u0d41\u0d2a\u0d3e\u0d24\u0d02", -"Vertical space": "\u0d32\u0d02\u0d2c\u0d2e\u0d3e\u0d28\u0d2e\u0d3e\u0d2f \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02", -"Image description": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30 \u0d35\u0d3f\u0d35\u0d30\u0d23\u0d02", -"Style": "\u0d36\u0d48\u0d32\u0d3f", -"Dimensions": "\u0d05\u0d33\u0d35\u0d41\u0d15\u0d33\u0d4d\u200d", -"Insert image": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Insert date\/time": "\u0d38\u0d2e\u0d2f\u0d02\/\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Remove link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d12\u0d34\u0d3f\u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Url": "\u0d2f\u0d42\u0d06\u0d30\u0d4d\u200d\u0d0e\u0d32\u0d4d\u200d", -"Text to display": "\u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d28\u0d41\u0d33\u0d4d\u0d33 \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Anchors": "\u0d28\u0d19\u0d4d\u0d15\u0d42\u0d30\u0d19\u0d4d\u0d19\u0d7e", -"Insert link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"New window": "\u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d1c\u0d3e\u0d32\u0d15\u0d02", -"None": "\u0d12\u0d28\u0d4d\u0d28\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0d32\u0d15\u0d4d\u0d37\u0d4d\u0d2f\u0d02", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/ \u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Insert\/edit video": "\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d1a\u0d46\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Poster": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d02", -"Alternative source": "\u0d07\u0d24\u0d30 \u0d38\u0d4d\u0d30\u0d4b\u0d24\u0d38\u0d4d\u0d38\u0d4d\u200c", -"Paste your embed code below:": "\u0d28\u0d3f\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d0e\u0d02\u0d2c\u0d21\u0d4d \u0d15\u0d4b\u0d21\u0d4d \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Insert video": "\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Embed": "\u0d0e\u0d02\u0d2c\u0d46\u0d21\u0d4d\u200c", -"Nonbreaking space": "\u0d2d\u0d02\u0d17\u0d2e\u0d3f\u0d32\u0d4d\u0d32\u0d3e\u0d24\u0d4d\u0d24 \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02", -"Page break": "\u0d24\u0d3e\u0d33\u0d4d\u200d \u0d2d\u0d02\u0d17\u0d02", -"Paste as text": "\u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Preview": "\u0d15\u0d30\u0d1f\u0d41\u0d2a\u0d24\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d", -"Print": "\u0d05\u0d1a\u0d4d\u0d1a\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Save": "\u0d30\u0d15\u0d4d\u0d37\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Could not find the specified string.": "\u0d09\u0d26\u0d4d\u0d26\u0d47\u0d36\u0d3f\u0d1a\u0d4d\u0d1a \u0d35\u0d3e\u0d1a\u0d15\u0d02 \u0d15\u0d23\u0d4d\u0d1f\u0d41\u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d28\u0d3e\u0d2f\u0d3f\u0d32\u0d4d\u0d32.", -"Replace": "\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Next": "\u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d", -"Whole words": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d41\u0d02", -"Find and replace": "\u0d15\u0d23\u0d4d\u0d1f\u0d41\u0d2a\u0d3f\u0d1f\u0d3f\u0d1a\u0d4d\u0d1a\u0d41 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Replace with": "\u0d2e\u0d31\u0d4d\u0d31\u0d4a\u0d28\u0d4d\u0d28\u0d3f\u0d28\u0d4b\u0d1f\u0d4d \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Find": "\u0d24\u0d3f\u0d30\u0d2f\u0d41\u0d15", -"Replace all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Match case": "\u0d24\u0d41\u0d32\u0d4d\u0d2f\u0d2e\u0d3e\u0d2f\u0d24\u0d4d", -"Prev": "\u0d2a\u0d3f\u0d28\u0d4d\u0d28\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d", -"Spellcheck": "\u0d05\u0d15\u0d4d\u0d37\u0d30\u0d35\u0d3f\u0d28\u0d4d\u0d2f\u0d3e\u0d38\u0d02 \u0d2a\u0d30\u0d3f\u0d36\u0d4b\u0d27\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Finish": "\u0d05\u0d35\u0d38\u0d3e\u0d28\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Ignore all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d05\u0d35\u0d17\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Ignore": "\u0d05\u0d35\u0d17\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Insert row before": "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d28\u0d3f\u0d30 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Rows": "\u0d28\u0d3f\u0d30\u0d15\u0d33\u0d4d\u200d", -"Height": "\u0d09\u0d2f\u0d30\u0d02", -"Paste row after": "\u0d28\u0d3f\u0d30 \u0d36\u0d47\u0d37\u0d02 \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Alignment": "\u0d05\u0d23\u0d3f\u0d28\u0d3f\u0d30\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Column group": "\u0d35\u0d30\u0d3f \u0d17\u0d23\u0d02", -"Row": "\u0d28\u0d3f\u0d30", -"Insert column before": "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d35\u0d30\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Split cell": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d35\u0d3f\u0d2d\u0d1c\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Cell padding": "\u0d05\u0d31 \u0d2a\u0d3e\u0d21\u0d3f\u0d02\u0d17\u0d4d", -"Cell spacing": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d24\u0d2e\u0d4d\u0d2e\u0d3f\u0d32\u0d41\u0d33\u0d4d\u0d33 \u0d05\u0d15\u0d32\u0d02", -"Row type": "\u0d28\u0d3f\u0d30 \u0d2e\u0d3e\u0d24\u0d43\u0d15", -"Insert table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Body": "\u0d36\u0d30\u0d40\u0d30\u0d02", -"Caption": "\u0d24\u0d32\u0d35\u0d3e\u0d1a\u0d15\u0d02", -"Footer": "\u0d05\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d\u200c", -"Delete row": "\u0d28\u0d3f\u0d30 \u0d24\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d33\u0d2f\u0d41\u0d15", -"Paste row before": "\u0d28\u0d3f\u0d30 \u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3e\u0d2f\u0d3f \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Scope": "\u0d35\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u200c\u0d24\u0d3f", -"Delete table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d15\u0d33\u0d2f\u0d41\u0d15", -"Header cell": "\u0d24\u0d32 \u0d05\u0d31", -"Column": "\u0d35\u0d30\u0d3f", -"Cell": "\u0d05\u0d31", -"Header": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c", -"Cell type": "\u0d05\u0d31\u0d2f\u0d41\u0d1f\u0d46 \u0d2e\u0d3e\u0d24\u0d43\u0d15", -"Copy row": "\u0d28\u0d3f\u0d30 \u0d2a\u0d15\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Row properties": "\u0d28\u0d3f\u0d30\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Table properties": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Row group": "\u0d28\u0d3f\u0d30 \u0d17\u0d23\u0d02", -"Right": "\u0d35\u0d32\u0d24\u0d4d", -"Insert column after": "\u0d2a\u0d3f\u0d31\u0d15\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d35\u0d30\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Cols": "\u0d35\u0d30\u0d3f\u0d15\u0d33\u0d4d\u200d", -"Insert row after": "\u0d2a\u0d3f\u0d31\u0d15\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d28\u0d3f\u0d30 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Width": "\u0d28\u0d40\u0d33\u0d02", -"Cell properties": "\u0d05\u0d31\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d", -"Left": "\u0d07\u0d1f\u0d24\u0d4d", -"Cut row": "\u0d28\u0d3f\u0d30 \u0d35\u0d46\u0d1f\u0d4d\u0d1f\u0d3f\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d41\u0d15", -"Delete column": "\u0d35\u0d30\u0d3f \u0d24\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d33\u0d2f\u0d41\u0d15", -"Center": "\u0d28\u0d1f\u0d41\u0d35\u0d3f\u0d32\u0d4d\u200d", -"Merge cells": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d3f\u0d2f\u0d4b\u0d1c\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Insert template": "\u0d05\u0d1a\u0d4d\u0d1a\u0d41\u0d15\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Templates": "\u0d05\u0d1a\u0d4d\u0d1a\u0d41\u0d15\u0d33\u0d4d\u200d", -"Background color": "\u0d2a\u0d36\u0d4d\u0d1a\u0d3e\u0d24\u0d4d\u0d24\u0d32 \u0d28\u0d3f\u0d31\u0d02", -"Text color": "\u0d05\u0d15\u0d4d\u0d37\u0d30 \u0d28\u0d3f\u0d31\u0d02", -"Show blocks": "\u0d2c\u0d4d\u0d32\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d4d\u200d \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Show invisible characters": "\u0d05\u0d26\u0d43\u0d36\u0d4d\u0d2f\u0d2e\u0d3e\u0d2f \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"Words: {0}": "\u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d4d\u200d: {0}", -"Insert": "\u0d2a\u0d24\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", -"File": "\u0d2b\u0d2f\u0d32\u0d4d\u200d", -"Edit": "\u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d2e\u0d47\u0d16\u0d32. \u0d35\u0d3f\u0d37\u0d2f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d15\u0d4d\u0d15\u0d3e\u0d2f\u0d3f ALT-F9 \u0d05\u0d2e\u0d30\u0d4d\u0d24\u0d4d\u0d24\u0d41\u0d15. \u0d09\u0d2a\u0d15\u0d30\u0d23 \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d15\u0d4d\u0d15\u0d3e\u0d2f\u0d3f ALT-F10 \u0d05\u0d2e\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15. \u0d38\u0d39\u0d3e\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d28\u0d41 ALT-0 \u0d09\u0d02", -"Tools": "\u0d09\u0d2a\u0d15\u0d30\u0d23\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d ", -"View": "\u0d26\u0d30\u0d4d\u200d\u0d36\u0d28\u0d02", -"Table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15", -"Format": "\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d02\u0d2e\u0d1f\u0d4d\u0d1f\u0d41\u0d02" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/mn_MN.js b/Resources/public/vendor/tinymce/langs/mn_MN.js deleted file mode 100644 index 03549e17..00000000 --- a/Resources/public/vendor/tinymce/langs/mn_MN.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('mn_MN',{ -"Cut": "\u041e\u0433\u0442\u043b\u043e\u0445", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", -"Div": "Div", -"Paste": "\u0425\u0443\u0443\u043b\u0431\u0430\u0440 \u0431\u0443\u0443\u043b\u0433\u0430\u0445", -"Close": "Close", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "Align right", -"New document": "\u0428\u0438\u043d\u044d \u0431\u0430\u0440\u0438\u043c\u0442", -"Blockquote": "Blockquote", -"Numbered list": "Numbered list", -"Increase indent": "Increase indent", -"Formats": "Formats", -"Headers": "Headers", -"Select all": "\u0411\u04af\u0433\u0434\u0438\u0439\u0433 \u0441\u043e\u043d\u0433\u043e\u0445", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "\u04ae\u0439\u043b\u0434\u043b\u0438\u0439\u0433 \u0431\u0443\u0446\u0430\u0430\u0445", -"Strikethrough": "\u0414\u0443\u043d\u0434\u0443\u0443\u0440 \u0437\u0443\u0440\u0430\u0430\u0441", -"Bullet list": "Bullet list", -"Header 1": "Header 1", -"Superscript": "\u0417\u044d\u0440\u044d\u0433", -"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u043b\u044b\u0433 \u0430\u0440\u0438\u043b\u0433\u0430\u0445", -"Font Sizes": "Font Sizes", -"Subscript": "\u0418\u043d\u0434\u0435\u043a\u0441", -"Header 6": "Header 6", -"Redo": "\u0414\u0430\u0445\u0438\u043d \u0445\u0438\u0439\u0445", -"Paragraph": "Paragraph", -"Ok": "\u041e\u043a", -"Bold": "\u0422\u043e\u0434", -"Code": "Code", -"Italic": "\u041d\u0430\u043b\u0443\u0443", -"Align center": "\u0422\u04e9\u0432\u0434 \u0437\u044d\u0440\u044d\u0433\u0446\u04af\u04af\u043b\u044d\u0445", -"Header 5": "Header 5", -"Decrease indent": "Decrease indent", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "\u0414\u043e\u043e\u0433\u0443\u0443\u0440 \u0437\u0443\u0440\u0430\u0430\u0441", -"Cancel": "\u0411\u043e\u043b\u0438\u0445", -"Justify": "Justify", -"Inline": "Inline", -"Copy": "\u0425\u0443\u0443\u043b\u0430\u0445", -"Align left": "\u0417\u04af\u04af\u043d\u0434 \u0437\u044d\u0440\u044d\u0433\u0446\u04af\u04af\u043b\u044d\u0445", -"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b \u0442\u0443\u0441\u043b\u0430\u043c\u0436", -"Lower Greek": "Lower Greek", -"Square": "Square", -"Default": "Default", -"Lower Alpha": "Lower Alpha", -"Circle": "Circle", -"Disc": "Disc", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Lower Roman": "Lower Roman", -"Name": "Name", -"Anchor": "Anchor", -"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", -"Restore last draft": "Restore last draft", -"Special character": "Special character", -"Source code": "Source code", -"Right to left": "Right to left", -"Left to right": "Left to right", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document properties", -"Title": "Title", -"Keywords": "Keywords", -"Encoding": "Encoding", -"Description": "Description", -"Author": "Author", -"Fullscreen": "Fullscreen", -"Horizontal line": "Horizontal line", -"Horizontal space": "Horizontal space", -"Insert\/edit image": "Insert\/edit image", -"General": "General", -"Advanced": "Advanced", -"Source": "Source", -"Border": "Border", -"Constrain proportions": "Constrain proportions", -"Vertical space": "Vertical space", -"Image description": "Image description", -"Style": "Style", -"Dimensions": "Dimensions", -"Insert image": "Insert image", -"Insert date\/time": "Insert date\/time", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "Text to display", -"Anchors": "Anchors", -"Insert link": "Insert link", -"New window": "New window", -"None": "None", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Target", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Insert\/edit link", -"Insert\/edit video": "Insert\/edit video", -"Poster": "Poster", -"Alternative source": "Alternative source", -"Paste your embed code below:": "Paste your embed code below:", -"Insert video": "Insert video", -"Embed": "Embed", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Page break", -"Paste as text": "Paste as text", -"Preview": "Preview", -"Print": "Print", -"Save": "Save", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "Whole words", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Replace all", -"Match case": "Match case", -"Prev": "Prev", -"Spellcheck": "Spellcheck", -"Finish": "Finish", -"Ignore all": "Ignore all", -"Ignore": "Ignore", -"Insert row before": "Insert row before", -"Rows": "Rows", -"Height": "Height", -"Paste row after": "Paste row after", -"Alignment": "Alignment", -"Column group": "Column group", -"Row": "Row", -"Insert column before": "Insert column before", -"Split cell": "Split cell", -"Cell padding": "Cell padding", -"Cell spacing": "Cell spacing", -"Row type": "Row type", -"Insert table": "Insert table", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Delete row", -"Paste row before": "Paste row before", -"Scope": "Scope", -"Delete table": "Delete table", -"Header cell": "Header cell", -"Column": "Column", -"Cell": "Cell", -"Header": "Header", -"Cell type": "Cell type", -"Copy row": "Copy row", -"Row properties": "Row properties", -"Table properties": "Table properties", -"Row group": "Row group", -"Right": "Right", -"Insert column after": "Insert column after", -"Cols": "Cols", -"Insert row after": "Insert row after", -"Width": "Width", -"Cell properties": "Cell properties", -"Left": "Left", -"Cut row": "Cut row", -"Delete column": "Delete column", -"Center": "Center", -"Merge cells": "Merge cells", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "Background color", -"Text color": "Text color", -"Show blocks": "Show blocks", -"Show invisible characters": "Show invisible characters", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/nb_NO.js b/Resources/public/vendor/tinymce/langs/nb_NO.js deleted file mode 100644 index 2dccdc57..00000000 --- a/Resources/public/vendor/tinymce/langs/nb_NO.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('nb_NO',{ -"Cut": "Klipp ut", -"Heading 5": "Overskrift 5", -"Header 2": "Overskrift 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nettleseren din st\u00f8tter ikke direkte tilgang til utklippsboken. Bruk istedet tastatur-snarveiene Ctrl+X\/C\/V, eller Cmd+X\/C\/V p\u00e5 Mac.", -"Heading 4": "Overskrift 4", -"Div": "Delblokk
", -"Heading 2": "Overskrift 2", -"Paste": "Lim inn", -"Close": "Lukk", -"Font Family": "Skriftsnitt", -"Pre": "Definert
",
-"Align right": "H\u00f8yrejustert",
-"New document": "Nytt dokument",
-"Blockquote": "Sitatblokk 
", -"Numbered list": "Nummerliste", -"Heading 1": "Overskrift 1", -"Headings": "Overskrifter", -"Increase indent": "\u00d8k innrykk", -"Formats": "Stiler", -"Headers": "Overskrifter", -"Select all": "Marker alt", -"Header 3": "Overskrift 3", -"Blocks": "Blokker", -"Undo": "Angre", -"Strikethrough": "Gjennomstreket", -"Bullet list": "Punktliste", -"Header 1": "Overskrift 1", -"Superscript": "Hevet skrift", -"Clear formatting": "Fjern formateringer", -"Font Sizes": "St\u00f8rrelse", -"Subscript": "Senket skrift", -"Header 6": "Overskrift 6", -"Redo": "Utf\u00f8r likevel", -"Paragraph": "Avsnitt

", -"Ok": "OK", -"Bold": "Halvfet", -"Code": "Kode ", -"Italic": "Kursiv", -"Align center": "Midtstilt", -"Header 5": "Overskrift 5", -"Heading 6": "Overskrift 6", -"Heading 3": "Overskrift 3", -"Decrease indent": "Reduser innrykk", -"Header 4": "Overskrift 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lim inn er n\u00e5 i ren-tekst modus. Kopiert innhold vil bli limt inn som ren tekst inntil du sl\u00e5r av dette valget.", -"Underline": "Understreket", -"Cancel": "Avbryt", -"Justify": "Juster alle linjer", -"Inline": "Innkapslet ", -"Copy": "Kopier", -"Align left": "Venstrejustert", -"Visual aids": "Visuelle hjelpemidler", -"Lower Greek": "Greske minuskler", -"Square": "Fylt firkant", -"Default": "Normal", -"Lower Alpha": "Minuskler", -"Circle": "\u00c5pen sirkel", -"Disc": "Fylt sirkel", -"Upper Alpha": "Versaler", -"Upper Roman": "Romerske versaler", -"Lower Roman": "Romerske minuskler", -"Name": "Navn", -"Anchor": "Anker", -"You have unsaved changes are you sure you want to navigate away?": "Du har ikke arkivert endringene. Vil du fortsette uten \u00e5 arkivere?", -"Restore last draft": "Gjenopprett siste utkast", -"Special character": "Spesialtegn", -"Source code": "Kildekode", -"Color": "Farge", -"Right to left": "H\u00f8yre til venstre", -"Left to right": "Venstre til h\u00f8yre", -"Emoticons": "Hum\u00f8rfjes", -"Robots": "Roboter", -"Document properties": "Dokumentegenskaper", -"Title": "Tittel", -"Keywords": "N\u00f8kkelord", -"Encoding": "Tegnkoding", -"Description": "Beskrivelse", -"Author": "Forfatter", -"Fullscreen": "Fullskjerm", -"Horizontal line": "Horisontal linje", -"Horizontal space": "Horisontal marg", -"Insert\/edit image": "Sett inn\/endre bilde", -"General": "Generelt", -"Advanced": "Avansert", -"Source": "Bildelenke", -"Border": "Ramme", -"Constrain proportions": "Behold proporsjoner", -"Vertical space": "Vertikal marg", -"Image description": "Bildebeskrivelse", -"Style": "Stil", -"Dimensions": "Dimensjoner", -"Insert image": "Sett inn bilde", -"Insert date\/time": "Sett inn dato\/tid", -"Remove link": "Fjern lenke", -"Url": "Url", -"Text to display": "Tekst som skal vises", -"Anchors": "Anker", -"Insert link": "Sett inn lenke", -"New window": "Nytt vindu", -"None": "Ingen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Oppgitt URL ser ut til \u00e5 v\u00e6re en e-postadresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevd mailto:-prefiks foran e-postadressen?", -"Target": "M\u00e5l", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Oppgitte URL ser ut til \u00e5 v\u00e6re en epost-adresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevet mailto: prefiks forran epost-adressen?", -"Insert\/edit link": "Sett inn\/endre lenke", -"Insert\/edit video": "Sett inn\/rediger video", -"Poster": "Plakatbilde", -"Alternative source": "Alternativ kilde", -"Paste your embed code below:": "Lim inn inkluderings-koden nedenfor", -"Insert video": "Sett inn video", -"Embed": "Inkluder", -"Nonbreaking space": "Hardt mellomrom", -"Page break": "Sideskifte", -"Paste as text": "Lim inn som tekst", -"Preview": "Forh\u00e5ndsvisning", -"Print": "Skriv ut", -"Save": "Arkiver", -"Could not find the specified string.": "Kunne ikke finne den spesifiserte teksten", -"Replace": "Erstatt", -"Next": "Neste", -"Whole words": "Hele ord", -"Find and replace": "Finn og erstatt", -"Replace with": "Erstatt med", -"Find": "Finn", -"Replace all": "Erstatt alle", -"Match case": "Match store og sm\u00e5 bokstaver", -"Prev": "Forrige", -"Spellcheck": "Stavekontroll", -"Finish": "Avslutt", -"Ignore all": "Ignorer alle", -"Ignore": "Ignorer", -"Add to Dictionary": "Legg til i ordliste", -"Insert row before": "Sett inn rad f\u00f8r", -"Rows": "Rader", -"Height": "H\u00f8yde", -"Paste row after": "Lim inn rad etter", -"Alignment": "Justering", -"Border color": "Rammefarge", -"Column group": "Kolonnegruppe", -"Row": "Rad", -"Insert column before": "Sett inn kolonne f\u00f8r", -"Split cell": "Splitt celle", -"Cell padding": "Cellemarg", -"Cell spacing": "Celleavstand", -"Row type": "Rad-type", -"Insert table": "Sett inn tabell", -"Body": "Br\u00f8dtekst", -"Caption": "Tittel", -"Footer": "Bunntekst", -"Delete row": "Slett rad", -"Paste row before": "Lim inn rad f\u00f8r", -"Scope": "Omfang", -"Delete table": "Slett tabell", -"H Align": "H Justering", -"Top": "Topp", -"Header cell": "Topptekst-celle", -"Column": "Kolonne", -"Row group": "Radgruppe", -"Cell": "Celle", -"Middle": "Midten", -"Cell type": "Celletype", -"Copy row": "Kopier rad", -"Row properties": "Rad egenskaper", -"Table properties": "Tabell egenskaper", -"Bottom": "Bunn", -"V Align": "V Justering", -"Header": "Topptekst", -"Right": "H\u00f8yre", -"Insert column after": "Sett inn kolonne etter", -"Cols": "Kolonner", -"Insert row after": "Sett in rad etter", -"Width": "Bredde", -"Cell properties": "Celle egenskaper", -"Left": "Venstre", -"Cut row": "Klipp ut rad", -"Delete column": "Slett kolonne", -"Center": "Midtstilt", -"Merge cells": "Sl\u00e5 sammen celler", -"Insert template": "Sett inn mal", -"Templates": "Maler", -"Background color": "Bakgrunnsfarge", -"Custom...": "Tilpass...", -"Custom color": "Tilpasset farge", -"No color": "Ingen farge", -"Text color": "Tekstfarge", -"Show blocks": "Vis blokker", -"Show invisible characters": "Vis skjulte tegn", -"Words: {0}": "Antall ord: {0}", -"Insert": "Sett inn", -"File": "Arkiv", -"Edit": "Rediger", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Tekstredigering. Tast ALT-F9 for meny. Tast ALT-F10 for verkt\u00f8ys-rader. Tast ALT-0 for hjelp.", -"Tools": "Verkt\u00f8y", -"View": "Vis", -"Table": "Tabell", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/nl.js b/Resources/public/vendor/tinymce/langs/nl.js deleted file mode 100644 index 9a5ca893..00000000 --- a/Resources/public/vendor/tinymce/langs/nl.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('nl',{ -"Cut": "Knippen", -"Heading 5": "Kop 5", -"Header 2": "Kop 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Uw browser ondersteunt geen toegang tot het clipboard. Gelieve ctrl+X\/C\/V sneltoetsen te gebruiken.", -"Heading 4": "Kop 4", -"Div": "Div", -"Heading 2": "Kop 2", -"Paste": "Plakken", -"Close": "Sluiten", -"Font Family": "Lettertype", -"Pre": "Pre", -"Align right": "Rechts uitlijnen", -"New document": "Nieuw document", -"Blockquote": "Quote", -"Numbered list": "Nummering", -"Heading 1": "Kop 1", -"Headings": "Koppen", -"Increase indent": "Inspringen vergroten", -"Formats": "Opmaak", -"Headers": "Kopteksten", -"Select all": "Alles selecteren", -"Header 3": "Kop 3", -"Blocks": "Blok", -"Undo": "Ongedaan maken", -"Strikethrough": "Doorhalen", -"Bullet list": "Opsommingsteken", -"Header 1": "Kop 1", -"Superscript": "Superscript", -"Clear formatting": "Opmaak verwijderen", -"Font Sizes": "Letter grootte", -"Subscript": "Subscript", -"Header 6": "Kop 6", -"Redo": "Opnieuw", -"Paragraph": "Paragraaf", -"Ok": "Ok\u00e9", -"Bold": "Vet", -"Code": "Code", -"Italic": "Schuin", -"Align center": "Centreren", -"Header 5": "Kop 5", -"Heading 6": "Kop 6", -"Heading 3": "Kop 3", -"Decrease indent": "Inspringen verkleinen", -"Header 4": "Kop 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.", -"Underline": "Onderstreept", -"Cancel": "Annuleren", -"Justify": "Uitlijnen", -"Inline": "Inlijn", -"Copy": "Kopi\u00ebren", -"Align left": "Links uitlijnen", -"Visual aids": "Hulpmiddelen", -"Lower Greek": "Griekse letters", -"Square": "Vierkant", -"Default": "Standaard", -"Lower Alpha": "Kleine letters", -"Circle": "Cirkel", -"Disc": "Bolletje", -"Upper Alpha": "Hoofdletters", -"Upper Roman": "Romeinse cijfers groot", -"Lower Roman": "Romeinse cijfers klein", -"Name": "Naam", -"Anchor": "Anker", -"You have unsaved changes are you sure you want to navigate away?": "U hebt niet alles opgeslagen bent u zeker dat u de pagina wenst te verlaten?", -"Restore last draft": "Herstel het laatste concept", -"Special character": "Speciale karakters", -"Source code": "Broncode", -"Color": "Kleur", -"Right to left": "Rechts naar links", -"Left to right": "Links naar rechts", -"Emoticons": "Emoticons", -"Robots": "Robots", -"Document properties": "Document eigenschappen", -"Title": "Titel", -"Keywords": "Sleutelwoorden", -"Encoding": "Codering", -"Description": "Omschrijving", -"Author": "Auteur", -"Fullscreen": "Volledig scherm", -"Horizontal line": "Horizontale lijn", -"Horizontal space": "Horizontale ruimte", -"Insert\/edit image": "afbeelding invoegen\/bewerken", -"General": "Algemeen", -"Advanced": "Geavanceerd", -"Source": "Bron", -"Border": "Rand", -"Constrain proportions": "Verhoudingen behouden", -"Vertical space": "Verticale ruimte", -"Image description": "Afbeelding omschrijving", -"Style": "Stijl", -"Dimensions": "Afmetingen", -"Insert image": "Afbeelding invoegen", -"Insert date\/time": "Voeg datum\/tijd in", -"Remove link": "Link verwijderen", -"Url": "Url", -"Text to display": "Linktekst", -"Anchors": "Anker", -"Insert link": "Hyperlink invoegen", -"New window": "Nieuw venster", -"None": "Geen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. Wil je er de \"http:\/\/\" aan toevoegen?", -"Target": "Doel", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL is een email adres. Wil je er de \"mailto\" aan toevoegen?", -"Insert\/edit link": "Hyperlink invoegen\/bewerken", -"Insert\/edit video": "Video invoegen\/bewerken", -"Poster": "Poster", -"Alternative source": "Alternatieve bron", -"Paste your embed code below:": "Plak u in te sluiten code hieronder:", -"Insert video": "Video invoegen", -"Embed": "Insluiten", -"Nonbreaking space": "Vaste spatie invoegen", -"Page break": "Pagina einde", -"Paste as text": "Plakken als tekst", -"Preview": "Voorbeeld", -"Print": "Print", -"Save": "Opslaan", -"Could not find the specified string.": "Geen resultaten gevonden", -"Replace": "Vervangen", -"Next": "Volgende", -"Whole words": "Alleen hele woorden", -"Find and replace": "Zoek en vervang", -"Replace with": "Vervangen door", -"Find": "Zoeken", -"Replace all": "Alles vervangen", -"Match case": "Identieke hoofd\/kleine letters", -"Prev": "Vorige", -"Spellcheck": "Spellingscontrole", -"Finish": "Einde", -"Ignore all": "Alles negeren", -"Ignore": "Negeren", -"Add to Dictionary": "Toevoegen aan woordenlijst", -"Insert row before": "Voeg rij boven toe", -"Rows": "Rijen", -"Height": "Hoogte", -"Paste row after": "Plak rij onder", -"Alignment": "Uitlijning", -"Border color": "Lijnkleur", -"Column group": "Kolomgroep", -"Row": "Rij", -"Insert column before": "Voeg kolom in voor", -"Split cell": "Cel splitsen", -"Cell padding": "Ruimte binnen cel", -"Cell spacing": "Celruimte", -"Row type": "Rijtype", -"Insert table": "Tabel invoegen", -"Body": "Body", -"Caption": "Onderschrift", -"Footer": "Voettekst", -"Delete row": "Verwijder rij", -"Paste row before": "Plak rij boven", -"Scope": "Bereik", -"Delete table": "Verwijder tabel", -"H Align": "Links uitlijnen", -"Top": "Bovenaan", -"Header cell": "Kopcel", -"Column": "Kolom", -"Row group": "Rijgroep", -"Cell": "Cel", -"Middle": "Centreren", -"Cell type": "Celtype", -"Copy row": "Kopieer rij", -"Row properties": "Rij eigenschappen", -"Table properties": "Tabel eigenschappen", -"Bottom": "Onderaan", -"V Align": "Boven uitlijnen", -"Header": "Koptekst", -"Right": "Rechts", -"Insert column after": "Voeg kolom in na", -"Cols": "Kolommen", -"Insert row after": "Voeg rij onder toe", -"Width": "Breedte", -"Cell properties": "Cel eigenschappen", -"Left": "Links", -"Cut row": "Knip rij", -"Delete column": "Verwijder kolom", -"Center": "Midden", -"Merge cells": "Cellen samenvoegen", -"Insert template": "Sjabloon invoegen", -"Templates": "Sjablonen", -"Background color": "Achtergrondkleur", -"Custom...": "Eigen...", -"Custom color": "Eigen kleur", -"No color": "Geen kleur", -"Text color": "Tekstkleur", -"Show blocks": "Blokken tonen", -"Show invisible characters": "Onzichtbare karakters tonen", -"Words: {0}": "Woorden: {0}", -"Insert": "Invoegen", -"File": "Bestand", -"Edit": "Bewerken", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk ALT-F9 voor het menu. Druk ALT-F10 voor de toolbar. Druk ALT-0 voor help.", -"Tools": "Gereedschap", -"View": "Beeld", -"Table": "Tabel", -"Format": "Opmaak" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/pl.js b/Resources/public/vendor/tinymce/langs/pl.js deleted file mode 100644 index dbbd1970..00000000 --- a/Resources/public/vendor/tinymce/langs/pl.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('pl',{ -"Cut": "Wytnij", -"Heading 5": "Nag\u0142\u00f3wek 5", -"Header 2": "Nag\u0142\u00f3wek 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.", -"Heading 4": "Nag\u0142\u00f3wek 4", -"Div": "Div", -"Heading 2": "Nag\u0142\u00f3wek 2", -"Paste": "Wklej", -"Close": "Zamknij", -"Font Family": "Kr\u00f3j czcionki", -"Pre": "Sformatowany tekst", -"Align right": "Wyr\u00f3wnaj do prawej", -"New document": "Nowy dokument", -"Blockquote": "Blok cytatu", -"Numbered list": "Lista numerowana", -"Heading 1": "Nag\u0142\u00f3wek 1", -"Headings": "Nag\u0142\u00f3wki", -"Increase indent": "Zwi\u0119ksz wci\u0119cie", -"Formats": "Formaty", -"Headers": "Nag\u0142\u00f3wki", -"Select all": "Zaznacz wszystko", -"Header 3": "Nag\u0142\u00f3wek 3", -"Blocks": "Bloki", -"Undo": "Cofnij", -"Strikethrough": "Przekre\u015blenie", -"Bullet list": "Lista wypunktowana", -"Header 1": "Nag\u0142\u00f3wek 1", -"Superscript": "Indeks g\u00f3rny", -"Clear formatting": "Wyczy\u015b\u0107 formatowanie", -"Font Sizes": "Rozmiar czcionki", -"Subscript": "Indeks dolny", -"Header 6": "Nag\u0142\u00f3wek 6", -"Redo": "Pon\u00f3w", -"Paragraph": "Akapit", -"Ok": "Ok", -"Bold": "Pogrubienie", -"Code": "Kod \u017ar\u00f3d\u0142owy", -"Italic": "Kursywa", -"Align center": "Wyr\u00f3wnaj do \u015brodka", -"Header 5": "Nag\u0142\u00f3wek 5", -"Heading 6": "Nag\u0142\u00f3wek 6", -"Heading 3": "Nag\u0142\u00f3wek 3", -"Decrease indent": "Zmniejsz wci\u0119cie", -"Header 4": "Nag\u0142\u00f3wek 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.", -"Underline": "Podkre\u015blenie", -"Cancel": "Anuluj", -"Justify": "Do lewej i prawej", -"Inline": "W tek\u015bcie", -"Copy": "Kopiuj", -"Align left": "Wyr\u00f3wnaj do lewej", -"Visual aids": "Pomoce wizualne", -"Lower Greek": "Ma\u0142e greckie", -"Square": "Kwadrat", -"Default": "Domy\u015blne", -"Lower Alpha": "Ma\u0142e litery", -"Circle": "K\u00f3\u0142ko", -"Disc": "Dysk", -"Upper Alpha": "Wielkie litery", -"Upper Roman": "Wielkie rzymskie", -"Lower Roman": "Ma\u0142e rzymskie", -"Name": "Nazwa", -"Anchor": "Kotwica", -"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?", -"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic", -"Special character": "Znak specjalny", -"Source code": "Kod \u017ar\u00f3d\u0142owy", -"Right to left": "Od prawej do lewej", -"Left to right": "Od lewej do prawej", -"Emoticons": "Emotikony", -"Robots": "Roboty", -"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu", -"Title": "Tytu\u0142", -"Keywords": "S\u0142owa kluczowe", -"Encoding": "Kodowanie", -"Description": "Opis", -"Author": "Autor", -"Fullscreen": "Pe\u0142ny ekran", -"Horizontal line": "Pozioma linia", -"Horizontal space": "Odst\u0119p poziomy", -"Insert\/edit image": "Wstaw\/edytuj obrazek", -"General": "Og\u00f3lne", -"Advanced": "Zaawansowane", -"Source": "\u0179r\u00f3d\u0142o", -"Border": "Ramka", -"Constrain proportions": "Zachowaj proporcje", -"Vertical space": "Odst\u0119p pionowy", -"Image description": "Opis obrazka", -"Style": "Styl", -"Dimensions": "Wymiary", -"Insert image": "Wstaw obrazek", -"Insert date\/time": "Wstaw dat\u0119\/czas", -"Remove link": "Usu\u0144 link", -"Url": "Url", -"Text to display": "Tekst do wy\u015bwietlenia", -"Anchors": "Kotwice", -"Insert link": "Wstaw link", -"New window": "Nowe okno", -"None": "\u017baden", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?", -"Target": "Cel", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?", -"Insert\/edit link": "Wstaw\/edytuj link", -"Insert\/edit video": "Wstaw\/edytuj wideo", -"Poster": "Plakat", -"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o", -"Paste your embed code below:": "Wklej tutaj kod do osadzenia:", -"Insert video": "Wstaw wideo", -"Embed": "Osad\u017a", -"Nonbreaking space": "Nie\u0142amliwa spacja", -"Page break": "Podzia\u0142 strony", -"Paste as text": "Wklej jako zwyk\u0142y tekst", -"Preview": "Podgl\u0105d", -"Print": "Drukuj", -"Save": "Zapisz", -"Could not find the specified string.": "Nie znaleziono szukanego tekstu.", -"Replace": "Zamie\u0144", -"Next": "Nast.", -"Whole words": "Ca\u0142e s\u0142owa", -"Find and replace": "Znajd\u017a i zamie\u0144", -"Replace with": "Zamie\u0144 na", -"Find": "Znajd\u017a", -"Replace all": "Zamie\u0144 wszystko", -"Match case": "Dopasuj wielko\u015b\u0107 liter", -"Prev": "Poprz.", -"Spellcheck": "Sprawdzanie pisowni", -"Finish": "Zako\u0144cz", -"Ignore all": "Ignoruj wszystko", -"Ignore": "Ignoruj", -"Insert row before": "Wstaw wiersz przed", -"Rows": "Wiersz.", -"Height": "Wysoko\u015b\u0107", -"Paste row after": "Wklej wiersz po", -"Alignment": "Wyr\u00f3wnanie", -"Column group": "Grupa kolumn", -"Row": "Wiersz", -"Insert column before": "Wstaw kolumn\u0119 przed", -"Split cell": "Podziel kom\u00f3rk\u0119", -"Cell padding": "Dope\u0142nienie kom\u00f3rki", -"Cell spacing": "Odst\u0119py kom\u00f3rek", -"Row type": "Typ wiersza", -"Insert table": "Wstaw tabel\u0119", -"Body": "Tre\u015b\u0107", -"Caption": "Tytu\u0142", -"Footer": "Stopka", -"Delete row": "Usu\u0144 wiersz", -"Paste row before": "Wklej wiersz przed", -"Scope": "Kontekst", -"Delete table": "Usu\u0144 tabel\u0119", -"H Align": "Wyr\u00f3wnanie w pionie", -"Top": "G\u00f3ra", -"Header cell": "Kom\u00f3rka nag\u0142\u00f3wka", -"Column": "Kolumna", -"Row group": "Grupa wierszy", -"Cell": "Kom\u00f3rka", -"Middle": "\u015arodek", -"Cell type": "Typ kom\u00f3rki", -"Copy row": "Kopiuj wiersz", -"Row properties": "W\u0142a\u015bciwo\u015bci wiersza", -"Table properties": "W\u0142a\u015bciwo\u015bci tabeli", -"Bottom": "D\u00f3\u0142", -"V Align": "Wyr\u00f3wnanie w poziomie", -"Header": "Nag\u0142\u00f3wek", -"Right": "Prawo", -"Insert column after": "Wstaw kolumn\u0119 po", -"Cols": "Kol.", -"Insert row after": "Wstaw wiersz po", -"Width": "Szeroko\u015b\u0107", -"Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki", -"Left": "Lewo", -"Cut row": "Wytnij wiersz", -"Delete column": "Usu\u0144 kolumn\u0119", -"Center": "\u015arodek", -"Merge cells": "\u0141\u0105cz kom\u00f3rki", -"Insert template": "Wstaw szablon", -"Templates": "Szablony", -"Background color": "Kolor t\u0142a", -"Text color": "Kolor tekstu", -"Show blocks": "Poka\u017c bloki", -"Show invisible characters": "Poka\u017c niewidoczne znaki", -"Words: {0}": "S\u0142\u00f3w: {0}", -"Insert": "Wstaw", -"File": "Plik", -"Edit": "Edycja", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc", -"Tools": "Narz\u0119dzia", -"View": "Widok", -"Table": "Tabela", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/pt_BR.js b/Resources/public/vendor/tinymce/langs/pt_BR.js deleted file mode 100644 index 37adbdc4..00000000 --- a/Resources/public/vendor/tinymce/langs/pt_BR.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('pt_BR',{ -"Cut": "Recortar", -"Heading 5": "Cabe\u00e7alho 5", -"Header 2": "Cabe\u00e7alho 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado", -"Heading 4": "Cabe\u00e7alho 4", -"Div": "Div", -"Heading 2": "Cabe\u00e7alho 2", -"Paste": "Colar", -"Close": "Fechar", -"Font Family": "Fonte", -"Pre": "Pre", -"Align right": "Alinhar \u00e0 direita", -"New document": "Novo documento", -"Blockquote": "Aspas", -"Numbered list": "Lista ordenada", -"Heading 1": "Cabe\u00e7alho 1", -"Headings": "Cabe\u00e7alhos", -"Increase indent": "Aumentar recuo", -"Formats": "Formatos", -"Headers": "Cabe\u00e7alhos", -"Select all": "Selecionar tudo", -"Header 3": "Cabe\u00e7alho 3", -"Blocks": "Blocos", -"Undo": "Desfazer", -"Strikethrough": "Riscar", -"Bullet list": "Lista n\u00e3o ordenada", -"Header 1": "Cabe\u00e7alho 1", -"Superscript": "Sobrescrever", -"Clear formatting": "Limpar formata\u00e7\u00e3o", -"Font Sizes": "Tamanho", -"Subscript": "Subscrever", -"Header 6": "Cabe\u00e7alho 6", -"Redo": "Refazer", -"Paragraph": "Par\u00e1grafo", -"Ok": "Ok", -"Bold": "Negrito", -"Code": "C\u00f3digo", -"Italic": "It\u00e1lico", -"Align center": "Centralizar", -"Header 5": "Cabe\u00e7alho 5", -"Heading 6": "Cabe\u00e7alho 6", -"Heading 3": "Cabe\u00e7alho 3", -"Decrease indent": "Diminuir recuo", -"Header 4": "Cabe\u00e7alho 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.", -"Underline": "Sublinhar", -"Cancel": "Cancelar", -"Justify": "Justificar", -"Inline": "Em linha", -"Copy": "Copiar", -"Align left": "Alinhar \u00e0 esquerda", -"Visual aids": "Ajuda visual", -"Lower Greek": "\u03b1. \u03b2. \u03b3. ...", -"Square": "Quadrado", -"Default": "Padr\u00e3o", -"Lower Alpha": "a. b. c. ...", -"Circle": "C\u00edrculo", -"Disc": "Disco", -"Upper Alpha": "A. B. C. ...", -"Upper Roman": "I. II. III. ...", -"Lower Roman": "i. ii. iii. ...", -"Name": "Nome", -"Anchor": "\u00c2ncora", -"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?", -"Restore last draft": "Restaurar \u00faltimo rascunho", -"Special character": "Caracteres especiais", -"Source code": "C\u00f3digo fonte", -"Right to left": "Da direita para a esquerda", -"Left to right": "Da esquerda para a direita", -"Emoticons": "Emoticons", -"Robots": "Rob\u00f4s", -"Document properties": "Propriedades do documento", -"Title": "T\u00edtulo", -"Keywords": "Palavras-chave", -"Encoding": "Codifica\u00e7\u00e3o", -"Description": "Descri\u00e7\u00e3o", -"Author": "Autor", -"Fullscreen": "Tela cheia", -"Horizontal line": "Linha horizontal", -"Horizontal space": "Espa\u00e7amento horizontal", -"Insert\/edit image": "Inserir\/editar imagem", -"General": "Geral", -"Advanced": "Avan\u00e7ado", -"Source": "Endere\u00e7o da imagem", -"Border": "Borda", -"Constrain proportions": "Manter propor\u00e7\u00f5es", -"Vertical space": "Espa\u00e7amento vertical", -"Image description": "Inserir descri\u00e7\u00e3o", -"Style": "Estilo", -"Dimensions": "Dimens\u00f5es", -"Insert image": "Inserir imagem", -"Insert date\/time": "Inserir data\/hora", -"Remove link": "Remover link", -"Url": "Url", -"Text to display": "Texto para mostrar", -"Anchors": "\u00c2ncoras", -"Insert link": "Inserir link", -"New window": "Nova janela", -"None": "Nenhum", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?", -"Target": "Alvo", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A URL que voc\u00ea informou parece ser um endere\u00e7o de email. Deseja incluir o prefixo mailto:?", -"Insert\/edit link": "Inserir\/editar link", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Poster": "Autor", -"Alternative source": "Fonte alternativa", -"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:", -"Insert video": "Inserir v\u00eddeo", -"Embed": "Incorporar", -"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel", -"Page break": "Quebra de p\u00e1gina", -"Paste as text": "Colar como texto", -"Preview": "Pr\u00e9-visualizar", -"Print": "Imprimir", -"Save": "Salvar", -"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado", -"Replace": "Substituir", -"Next": "Pr\u00f3ximo", -"Whole words": "Palavras inteiras", -"Find and replace": "Localizar e substituir", -"Replace with": "Substituir por", -"Find": "Localizar", -"Replace all": "Substituir tudo", -"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", -"Prev": "Anterior", -"Spellcheck": "Corretor ortogr\u00e1fico", -"Finish": "Finalizar", -"Ignore all": "Ignorar tudo", -"Ignore": "Ignorar", -"Insert row before": "Inserir linha antes", -"Rows": "Linhas", -"Height": "Altura", -"Paste row after": "Colar linha depois", -"Alignment": "Alinhamento", -"Column group": "Agrupar coluna", -"Row": "Linha", -"Insert column before": "Inserir coluna antes", -"Split cell": "Dividir c\u00e9lula", -"Cell padding": "Espa\u00e7amento interno da c\u00e9lula", -"Cell spacing": "Espa\u00e7amento da c\u00e9lula", -"Row type": "Tipo de linha", -"Insert table": "Inserir tabela", -"Body": "Corpo", -"Caption": "Legenda", -"Footer": "Rodap\u00e9", -"Delete row": "Excluir linha", -"Paste row before": "Colar linha antes", -"Scope": "Escopo", -"Delete table": "Excluir tabela", -"H Align": "Alinhamento H", -"Top": "Superior", -"Header cell": "C\u00e9lula cabe\u00e7alho", -"Column": "Coluna", -"Row group": "Agrupar linha", -"Cell": "C\u00e9lula", -"Middle": "Meio", -"Cell type": "Tipo de c\u00e9lula", -"Copy row": "Copiar linha", -"Row properties": "Propriedades da linha", -"Table properties": "Propriedades da tabela", -"Bottom": "Inferior", -"V Align": "Alinhamento V", -"Header": "Cabe\u00e7alho", -"Right": "Direita", -"Insert column after": "Inserir coluna depois", -"Cols": "Colunas", -"Insert row after": "Inserir linha depois", -"Width": "Largura", -"Cell properties": "Propriedades da c\u00e9lula", -"Left": "Esquerdo", -"Cut row": "Recortar linha", -"Delete column": "Excluir coluna", -"Center": "Centro", -"Merge cells": "Agrupar c\u00e9lulas", -"Insert template": "Inserir modelo", -"Templates": "Modelos", -"Background color": "Cor do fundo", -"Text color": "Cor do texto", -"Show blocks": "Mostrar blocos", -"Show invisible characters": "Exibir caracteres invis\u00edveis", -"Words: {0}": "Palavras: {0}", -"Insert": "Inserir", -"File": "Arquivo", -"Edit": "Editar", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda", -"Tools": "Ferramentas", -"View": "Visualizar", -"Table": "Tabela", -"Format": "Formatar" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/pt_PT.js b/Resources/public/vendor/tinymce/langs/pt_PT.js deleted file mode 100644 index 0a5d7443..00000000 --- a/Resources/public/vendor/tinymce/langs/pt_PT.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('pt_PT',{ -"Cut": "Cortar", -"Heading 5": "Cabe\u00e7alho 5", -"Header 2": "Cabe\u00e7alho 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X\/C\/V do seu teclado.", -"Heading 4": "Cabe\u00e7alho 4", -"Div": "Div", -"Heading 2": "Cabe\u00e7alho 2", -"Paste": "Colar", -"Close": "Fechar", -"Font Family": "Fam\u00edlia da fonte", -"Pre": "Pre", -"Align right": "Alinhar \u00e0 direita", -"New document": "Novo documento", -"Blockquote": "Bloco de cita\u00e7\u00e3o", -"Numbered list": "Lista numerada", -"Heading 1": "Cabe\u00e7alho 1", -"Headings": "Cabe\u00e7alhos", -"Increase indent": "Aumentar avan\u00e7o", -"Formats": "Formatos", -"Headers": "Cabe\u00e7alhos", -"Select all": "Selecionar tudo", -"Header 3": "Cabe\u00e7alho 3", -"Blocks": "Blocos", -"Undo": "Anular", -"Strikethrough": "Rasurado", -"Bullet list": "Lista com marcadores", -"Header 1": "Cabe\u00e7alho 1", -"Superscript": "Superior \u00e0 linha", -"Clear formatting": "Limpar formata\u00e7\u00e3o", -"Font Sizes": "Tamanhos da fonte", -"Subscript": "Inferior \u00e0 linha", -"Header 6": "Cabe\u00e7alho 6", -"Redo": "Refazer", -"Paragraph": "Par\u00e1grafo", -"Ok": "Ok", -"Bold": "Negrito", -"Code": "C\u00f3digo", -"Italic": "It\u00e1lico", -"Align center": "Alinhar ao centro", -"Header 5": "Cabe\u00e7alho 5", -"Heading 6": "Cabe\u00e7alho 6", -"Heading 3": "Cabe\u00e7alho 3", -"Decrease indent": "Diminuir avan\u00e7o", -"Header 4": "Cabe\u00e7alho 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.", -"Underline": "Sublinhado", -"Cancel": "Cancelar", -"Justify": "Justificado", -"Inline": "Em linha", -"Copy": "Copiar", -"Align left": "Alinhar \u00e0 esquerda", -"Visual aids": "Ajuda visual", -"Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...", -"Square": "Quadrado", -"Default": "Padr\u00e3o", -"Lower Alpha": "a. b. c. ...", -"Circle": "C\u00edrculo", -"Disc": "Disco", -"Upper Alpha": "A. B. C. ...", -"Upper Roman": "I. II. III. ...", -"Lower Roman": "i. ii. iii. ...", -"Name": "Nome", -"Anchor": "\u00c2ncora", -"You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?", -"Restore last draft": "Restaurar o \u00faltimo rascunho", -"Special character": "Car\u00e1cter especial", -"Source code": "C\u00f3digo fonte", -"Color": "Cor", -"Right to left": "Da direita para a esquerda", -"Left to right": "Da esquerda para a direita", -"Emoticons": "Emo\u00e7\u00f5es", -"Robots": "Rob\u00f4s", -"Document properties": "Propriedades do documento", -"Title": "T\u00edtulo", -"Keywords": "Palavras-chave", -"Encoding": "Codifica\u00e7\u00e3o", -"Description": "Descri\u00e7\u00e3o", -"Author": "Autor", -"Fullscreen": "Ecr\u00e3 completo", -"Horizontal line": "Linha horizontal", -"Horizontal space": "Espa\u00e7amento horizontal", -"Insert\/edit image": "Inserir\/editar imagem", -"General": "Geral", -"Advanced": "Avan\u00e7ado", -"Source": "Localiza\u00e7\u00e3o", -"Border": "Contorno", -"Constrain proportions": "Manter propor\u00e7\u00f5es", -"Vertical space": "Espa\u00e7amento vertical", -"Image description": "Descri\u00e7\u00e3o da imagem", -"Style": "Estilo", -"Dimensions": "Dimens\u00f5es", -"Insert image": "Inserir imagem", -"Insert date\/time": "Inserir data\/hora", -"Remove link": "Remover liga\u00e7\u00e3o", -"Url": "Url", -"Text to display": "Texto a exibir", -"Anchors": "\u00c2ncora", -"Insert link": "Inserir liga\u00e7\u00e3o", -"New window": "Nova janela", -"None": "Nenhum", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o necess\u00e1rio prefixo http:\/\/ ?", -"Target": "Alvo", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: como \u00e9 necess\u00e1rio?", -"Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Poster": "Autor", -"Alternative source": "Localiza\u00e7\u00e3o alternativa", -"Paste your embed code below:": "Insira, abaixo, o seu c\u00f3digo de incorpora\u00e7\u00e3o:", -"Insert video": "Inserir v\u00eddeo", -"Embed": "Incorporar", -"Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel", -"Page break": "Quebra de p\u00e1gina", -"Paste as text": "Colar como texto", -"Preview": "Pr\u00e9-visualizar", -"Print": "Imprimir", -"Save": "Guardar", -"Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.", -"Replace": "Substituir", -"Next": "Pr\u00f3ximo", -"Whole words": "Palavras completas", -"Find and replace": "Pesquisar e substituir", -"Replace with": "Substituir por", -"Find": "Pesquisar", -"Replace all": "Substituir tudo", -"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", -"Prev": "Anterior", -"Spellcheck": "Corretor ortogr\u00e1fico", -"Finish": "Concluir", -"Ignore all": "Ignorar tudo", -"Ignore": "Ignorar", -"Add to Dictionary": "Adicionar ao Dicion\u00e1rio", -"Insert row before": "Inserir linha antes", -"Rows": "Linhas", -"Height": "Altura", -"Paste row after": "Colar linha depois", -"Alignment": "Alinhamento", -"Border color": "Cor de contorno", -"Column group": "Agrupar coluna", -"Row": "Linha", -"Insert column before": "Inserir coluna antes", -"Split cell": "Dividir c\u00e9lula", -"Cell padding": "Espa\u00e7amento interno da c\u00e9lula", -"Cell spacing": "Espa\u00e7amento entre c\u00e9lulas", -"Row type": "Tipo de linha", -"Insert table": "Inserir tabela", -"Body": "Corpo", -"Caption": "Legenda", -"Footer": "Rodap\u00e9", -"Delete row": "Eliminar linha", -"Paste row before": "Colar linha antes", -"Scope": "Escopo", -"Delete table": "Eliminar tabela", -"H Align": "Alinhamento H", -"Top": "Topo", -"Header cell": "C\u00e9lula de cabe\u00e7alho", -"Column": "Coluna", -"Row group": "Agrupar linha", -"Cell": "C\u00e9lula", -"Middle": "Meio", -"Cell type": "Tipo de c\u00e9lula", -"Copy row": "Copiar linha", -"Row properties": "Propriedades da linha", -"Table properties": "Propriedades da tabela", -"Bottom": "Fundo", -"V Align": "Alinhamento V", -"Header": "Cabe\u00e7alho", -"Right": "Direita", -"Insert column after": "Inserir coluna depois", -"Cols": "Colunas", -"Insert row after": "Inserir linha depois", -"Width": "Largura", -"Cell properties": "Propriedades da c\u00e9lula", -"Left": "Esquerda", -"Cut row": "Cortar linha", -"Delete column": "Eliminar coluna", -"Center": "Centro", -"Merge cells": "Unir c\u00e9lulas", -"Insert template": "Inserir modelo", -"Templates": "Modelos", -"Background color": "Cor de fundo", -"Custom...": "Personalizada...", -"Custom color": "Cor personalizada", -"No color": "Sem cor", -"Text color": "Cor do texto", -"Show blocks": "Mostrar blocos", -"Show invisible characters": "Mostrar caracteres invis\u00edveis", -"Words: {0}": "Palavras: {0}", -"Insert": "Inserir", -"File": "Ficheiro", -"Edit": "Editar", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda", -"Tools": "Ferramentas", -"View": "Ver", -"Table": "Tabela", -"Format": "Formatar" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ro.js b/Resources/public/vendor/tinymce/langs/ro.js deleted file mode 100644 index cf897b10..00000000 --- a/Resources/public/vendor/tinymce/langs/ro.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ro',{ -"Cut": "Decupeaz\u0103", -"Heading 5": "Titlu 5", -"Header 2": "Antet 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browserul dumneavoastr\u0103 nu support\u0103 acces direct la clipboard. Folosi\u0163i combina\u0163ile de tastatur\u0103 Ctrl+X\/C\/V.", -"Heading 4": "Titlu 4", -"Div": "Div", -"Heading 2": "Titlu 2", -"Paste": "Lipe\u015fte", -"Close": "\u00cenchide", -"Font Family": "Font", -"Pre": "Pre", -"Align right": "Aliniere la dreapta", -"New document": "Document nou", -"Blockquote": "Men\u0163iune bloc", -"Numbered list": "List\u0103 ordonat\u0103", -"Heading 1": "Titlu 1", -"Headings": "Titluri", -"Increase indent": "Indenteaz\u0103", -"Formats": "Formate", -"Headers": "Antete", -"Select all": "Selecteaz\u0103 tot", -"Header 3": "Antet 3", -"Blocks": "Blocuri", -"Undo": "Reexecut\u0103", -"Strikethrough": "T\u0103iat", -"Bullet list": "List\u0103 neordonat\u0103", -"Header 1": "Antet 1", -"Superscript": "Superscript", -"Clear formatting": "\u015eterge format\u0103rile", -"Font Sizes": "Dimensiune font", -"Subscript": "Subscript", -"Header 6": "Antet 6", -"Redo": "Dezexecut\u0103", -"Paragraph": "Paragraf", -"Ok": "Ok", -"Bold": "\u00cengro\u015fat", -"Code": "Cod", -"Italic": "Italic", -"Align center": "Centrare", -"Header 5": "Antet 5", -"Heading 6": "Titlu 6", -"Heading 3": "Titlu 3", -"Decrease indent": "De-indenteaz\u0103", -"Header 4": "Antet 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Functia \"lipe\u015fte\" este acum \u00een modul text simplu. Continutul va fi acum inserat ca text simplu p\u00e2n\u0103 c\u00e2nd aceast\u0103 op\u021biune va fi dezactivat.", -"Underline": "Subliniat", -"Cancel": "Anuleaz\u0103", -"Justify": "Aliniere pe toat\u0103 l\u0103\u021bimea", -"Inline": "Inline", -"Copy": "Copiaz\u0103", -"Align left": "Aliniere la st\u00e2nga", -"Visual aids": "Ajutor vizual", -"Lower Greek": "Minuscule Grecesti", -"Square": "P\u0103trat", -"Default": "Implicit", -"Lower Alpha": "Minuscule Alfanumerice", -"Circle": "Cerc", -"Disc": "Disc", -"Upper Alpha": "Majuscule Alfanumerice", -"Upper Roman": "Majuscule Romane", -"Lower Roman": "Minuscule Romane", -"Name": "Nume", -"Anchor": "Ancor\u0103", -"You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate! Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 ie\u015fiti?", -"Restore last draft": "Restaurare la ultima salvare", -"Special character": "Caractere speciale", -"Source code": "Codul surs\u0103", -"Color": "Culoare", -"Right to left": "Dreapta la st\u00e2nga", -"Left to right": "St\u00e2nga la dreapta", -"Emoticons": "Emoticoane", -"Robots": "Robo\u021bi", -"Document properties": "Propriet\u0103\u021bi document", -"Title": "Titlu", -"Keywords": "Cuvinte cheie", -"Encoding": "Codare", -"Description": "Descriere", -"Author": "Autor", -"Fullscreen": "Pe tot ecranul", -"Horizontal line": "Linie orizontal\u0103", -"Horizontal space": "Spa\u021biul orizontal", -"Insert\/edit image": "Inserare\/editarea imaginilor", -"General": "General", -"Advanced": "Avansat", -"Source": "Surs\u0103", -"Border": "Bordur\u0103", -"Constrain proportions": "Constr\u00e2nge propor\u021biile", -"Vertical space": "Spa\u021biul vertical", -"Image description": "Descrierea imaginii", -"Style": "Stil", -"Dimensions": "Dimensiuni", -"Insert image": "Inserare imagine", -"Insert date\/time": "Insereaz\u0103 data\/ora", -"Remove link": "\u0218terge link-ul", -"Url": "Url", -"Text to display": "Text de afi\u0219at", -"Anchors": "Ancor\u0103", -"Insert link": "Inserare link", -"New window": "Fereastr\u0103 nou\u0103", -"None": "Nici unul", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 web. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:\/\/ ?", -"Target": "\u021aint\u0103", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: ?", -"Insert\/edit link": "Inserare\/editare link", -"Insert\/edit video": "Inserare\/editare video", -"Poster": "Poster", -"Alternative source": "Surs\u0103 alternativ\u0103", -"Paste your embed code below:": "Insera\u021bi codul:", -"Insert video": "Inserare video", -"Embed": "Embed", -"Nonbreaking space": "Spa\u021biu neseparator", -"Page break": "\u00centrerupere de pagin\u0103", -"Paste as text": "Lipe\u015fte ca text", -"Preview": "Previzualizare", -"Print": "Tip\u0103re\u0219te", -"Save": "Salveaz\u0103", -"Could not find the specified string.": "Nu am putut g\u0103si \u0219irul specificat.", -"Replace": "\u00cenlocuie\u015fte", -"Next": "Precedent", -"Whole words": "Doar cuv\u00eentul \u00eentreg", -"Find and replace": "Caut\u0103 \u015fi \u00eenlocuie\u015fte", -"Replace with": "\u00cenlocuie\u015fte cu", -"Find": "Caut\u0103", -"Replace all": "\u00cenlocuie\u015fte toate", -"Match case": "Distinge majuscule\/minuscule", -"Prev": "Anterior", -"Spellcheck": "Verificarea ortografic\u0103", -"Finish": "Finalizeaz\u0103", -"Ignore all": "Ignor\u0103 toate", -"Ignore": "Ignor\u0103", -"Add to Dictionary": "Adaug\u0103 \u00een Dic\u021bionar", -"Insert row before": "Insereaz\u0103 \u00eenainte de linie", -"Rows": "Linii", -"Height": "\u00cen\u0103l\u0163ime", -"Paste row after": "Lipe\u015fte linie dup\u0103", -"Alignment": "Aliniament", -"Border color": "Culoare bordur\u0103", -"Column group": "Grup de coloane", -"Row": "Linie", -"Insert column before": "Insereaza \u00eenainte de coloan\u0103", -"Split cell": "\u00cemp\u0103r\u021birea celulelor", -"Cell padding": "Spa\u021biere", -"Cell spacing": "Spa\u021biere celule", -"Row type": "Tip de linie", -"Insert table": "Insereaz\u0103 tabel\u0103", -"Body": "Corp", -"Caption": "Titlu", -"Footer": "Subsol", -"Delete row": "\u0218terge linia", -"Paste row before": "Lipe\u015fte \u00eenainte de linie", -"Scope": "Domeniu", -"Delete table": "\u0218terge tabel\u0103", -"H Align": "Aliniere H", -"Top": "Sus", -"Header cell": "Antet celul\u0103", -"Column": "Coloan\u0103", -"Row group": "Grup de linii", -"Cell": "Celul\u0103", -"Middle": "Mijloc", -"Cell type": "Tip celul\u0103", -"Copy row": "Copiaz\u0103 linie", -"Row properties": "Propriet\u0103\u021bi linie", -"Table properties": "Propriet\u0103\u021bi tabel\u0103", -"Bottom": "Jos", -"V Align": "Aliniere V", -"Header": "Antet", -"Right": "Dreapta", -"Insert column after": "Insereaza dup\u0103 coloan\u0103", -"Cols": "Coloane", -"Insert row after": "Insereaz\u0103 dup\u0103 linie", -"Width": "L\u0103\u0163ime", -"Cell properties": "Propriet\u0103\u021bi celul\u0103", -"Left": "St\u00e2nga", -"Cut row": "Taie linie", -"Delete column": "\u0218terge coloana", -"Center": "Centru", -"Merge cells": "\u00cembinarea celulelor", -"Insert template": "Insereaz\u0103 \u0219ablon", -"Templates": "\u015eabloane", -"Background color": "Culoare fundal", -"Custom...": "Personalizat...", -"Custom color": "Culoare personalizat\u0103", -"No color": "F\u0103r\u0103 culoare", -"Text color": "Culoare text", -"Show blocks": "Afi\u0219are blocuri", -"Show invisible characters": "Afi\u0219are caractere invizibile", -"Words: {0}": "Cuvinte: {0}", -"Insert": "Insereaz\u0103", -"File": "Fil\u0103", -"Edit": "Editeaz\u0103", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 cu Rich Text. Apas\u0103 ALT-F9 pentru meniu. Apas\u0103 ALT-F10 pentru bara de unelte. Apas\u0103 ALT-0 pentru ajutor", -"Tools": "Unelte", -"View": "Vezi", -"Table": "Tabel\u0103", -"Format": "Formateaz\u0103" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ru.js b/Resources/public/vendor/tinymce/langs/ru.js deleted file mode 100644 index 6ab48c01..00000000 --- a/Resources/public/vendor/tinymce/langs/ru.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ru',{ -"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c", -"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.", -"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Div": "\u0411\u043b\u043e\u043a", -"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", -"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", -"Font Family": "\u0428\u0440\u0438\u0444\u0442", -"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", -"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430", -"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", -"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442", -"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", -"Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435", -"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Blocks": "\u0411\u043b\u043e\u043a\u0438", -"Undo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c", -"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439", -"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442", -"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", -"Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "\u041e\u043a", -"Bold": "\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", -"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", -"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.", -"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439", -"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", -"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435", -"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435", -"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", -"Align left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Visual aids": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b", -"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", -"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b", -"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439", -"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", -"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438", -"Disc": "\u041a\u0440\u0443\u0433\u0438", -"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", -"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", -"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", -"Name": "\u0418\u043c\u044f", -"Anchor": "\u042f\u043a\u043e\u0440\u044c", -"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?", -"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430", -"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", -"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434", -"Color": "\u0426\u0432\u0435\u0442", -"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e", -"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", -"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b", -"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", -"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", -"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", -"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c", -"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f", -"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", -"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"General": "\u041e\u0431\u0449\u0435\u0435", -"Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435", -"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a", -"Border": "\u0420\u0430\u043c\u043a\u0430", -"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438", -"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", -"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", -"Style": "\u0421\u0442\u0438\u043b\u044c", -"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440", -"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f", -"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", -"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438", -"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", -"Anchors": "\u042f\u043a\u043e\u0440\u044f", -"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", -"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435", -"None": "\u041d\u0435\u0442", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?", -"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?", -"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", -"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", -"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a", -"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:", -"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e", -"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438", -"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b", -"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", -"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442", -"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440", -"Print": "\u041f\u0435\u0447\u0430\u0442\u044c", -"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", -"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430", -"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c", -"Next": "\u0412\u043d\u0438\u0437", -"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c", -"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430", -"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430", -"Find": "\u041d\u0430\u0439\u0442\u0438", -"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435", -"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440", -"Prev": "\u0412\u0432\u0435\u0440\u0445", -"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", -"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c", -"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435", -"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c", -"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c", -"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", -"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438", -"Height": "\u0412\u044b\u0441\u043e\u0442\u0430", -"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", -"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", -"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438", -"Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a", -"Row": "\u0421\u0442\u0440\u043e\u043a\u0430", -"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430", -"Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443", -"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", -"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", -"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438", -"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", -"Body": "\u0422\u0435\u043b\u043e", -"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Footer": "\u041d\u0438\u0437", -"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", -"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", -"Scope": "Scope", -"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", -"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", -"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443", -"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446", -"Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a", -"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430", -"Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435", -"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438", -"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", -"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438", -"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b", -"Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443", -"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", -"Header": "\u0428\u0430\u043f\u043a\u0430", -"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430", -"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b", -"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", -"Width": "\u0428\u0438\u0440\u0438\u043d\u0430", -"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438", -"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", -"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446", -"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438", -"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", -"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430", -"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026", -"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442", -"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430", -"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438", -"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", -"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}", -"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.", -"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", -"View": "\u0412\u0438\u0434", -"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/si_LK.js b/Resources/public/vendor/tinymce/langs/si_LK.js deleted file mode 100644 index 10aeb5a8..00000000 --- a/Resources/public/vendor/tinymce/langs/si_LK.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('si_LK',{ -"Cut": "\u0d9a\u0db4\u0db1\u0dca\u0db1", -"Header 2": "Header 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0d9c\u0dca\u200d\u0dbb\u0dcf\u0dc4\u0d9a \u0db4\u0dd4\u0dc0\u0dbb\u0dd4\u0dc0\u0da7 \u0d8d\u0da2\u0dd4 \u0db4\u0dca\u200d\u0dbb\u0dc0\u0dda\u0dc1\u0dba\u0d9a\u0dca \u0dbd\u0db6\u0dcf\u0daf\u0dd3\u0db8\u0da7 \u0d94\u0db6\u0d9c\u0dda \u0db6\u0dca\u200d\u0dbb\u0dc0\u0dd4\u0dc3\u0dbb\u0dba \u0dc3\u0dc4\u0dba\u0d9a\u0dca \u0db1\u0ddc\u0daf\u0d9a\u0dca\u0dc0\u0dba\u0dd3. \u0d9a\u0dbb\u0dd4\u0dab\u0dcf\u0d9a\u0dbb \u0d92\u0dc0\u0dd9\u0db1\u0dd4\u0dc0\u0da7 Ctrl+X\/C\/V \u0dba\u0db1 \u0dba\u0dad\u0dd4\u0dbb\u0dd4\u0db4\u0dd4\u0dc0\u0dbb\u0dd4 \u0d9a\u0dd9\u0da7\u0dd2\u0db8\u0d9f \u0db7\u0dcf\u0dc0\u0dd2\u0dad\u0dcf \u0d9a\u0dbb\u0db1\u0dca\u0db1.", -"Div": "Div", -"Paste": "\u0d85\u0dbd\u0dc0\u0db1\u0dca\u0db1", -"Close": "\u0dc0\u0dc3\u0db1\u0dca\u0db1", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4\u0db4\u0dc3\u0da7 \u0db4\u0dd9\u0dc5\u0d9c\u0dc3\u0dca\u0dc0\u0db1\u0dca\u0db1", -"New document": "\u0db1\u0dc0 \u0dbd\u0dda\u0d9b\u0db1\u0dba\u0d9a\u0dca", -"Blockquote": "Blockquote", -"Numbered list": "\u0d85\u0d82\u0d9a\u0db1\u0dba \u0d9a\u0dbd \u0dbd\u0dd0\u0dba\u0dd2\u0dc3\u0dca\u0dad\u0dd4\u0dc0", -"Increase indent": "\u0dc0\u0dd0\u0da9\u0dd2\u0dc0\u0db1 \u0d91\u0db6\u0dd4\u0db8", -"Formats": "\u0d86\u0d9a\u0dd8\u0dad\u0dd2", -"Headers": "Headers", -"Select all": "\u0dc3\u0dd2\u0dba\u0dbd\u0dca\u0dbd \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1", -"Header 3": "Header 3", -"Blocks": "Blocks", -"Undo": "\u0db1\u0dd2\u0dc2\u0dca\u0db4\u0dca\u200d\u0dbb\u0db7\u0dcf \u0d9a\u0dbb\u0db1\u0dc0\u0dcf", -"Strikethrough": "\u0db8\u0dd0\u0daf\u0dd2 \u0d89\u0dbb\u0dd0\u0dad\u0dd2", -"Bullet list": "\u0dbd\u0dd0\u0dba\u0dd2\u0dc3\u0dca\u0dad\u0dd4\u0dc0", -"Header 1": "Header 1", -"Superscript": "\u0d8b\u0da9\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4", -"Clear formatting": "\u0db4\u0dd0\u0dc4\u0dd0\u0daf\u0dd2\u0dbd\u0dd2 \u0d86\u0d9a\u0dd8\u0dad\u0dd2\u0d9a\u0dbb\u0dab\u0dba", -"Font Sizes": "Font Sizes", -"Subscript": "\u0dba\u0da7\u0dd2\u0dbd\u0d9a\u0dd4\u0dab\u0dd4", -"Header 6": "Header 6", -"Redo": "\t\u0db1\u0dd0\u0dc0\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Paragraph": "Paragraph", -"Ok": "\u0d85\u0db1\u0dd4\u0db8\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Bold": "\u0db4\u0dd0\u0dc4\u0dd0\u0daf\u0dd2\u0dbd\u0dd2 \u0dc3\u0dda \u0db4\u0dd9\u0db1\u0dd9\u0db1", -"Code": "Code", -"Italic": "\u0d87\u0dbd\u0d9a\u0dd4\u0dbb\u0dd4", -"Align center": "\u0db8\u0dd0\u0daf\u0dd2 \u0d9a\u0ddc\u0da7 \u0db4\u0dd9\u0dc5\u0d9c\u0dc3\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Header 5": "Header 5", -"Decrease indent": "\u0d85\u0da9\u0dd4\u0dc0\u0db1 \u0d91\u0db6\u0dd4\u0db8", -"Header 4": "Header 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", -"Underline": "\u0dba\u0da7\u0dd2\u0db1\u0dca \u0d89\u0dbb\u0d9a\u0dca \u0d85\u0db3\u0dd2\u0db1\u0dca\u0db1", -"Cancel": "\u0d85\u0dc4\u0ddd\u0dc3\u0dd2 \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Justify": "\u0dc3\u0db8\u0dc0 \u0db4\u0dd9\u0dc5\u0d9c\u0dc3\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Inline": "Inline", -"Copy": "\u0db4\u0dd2\u0da7\u0db4\u0dad\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Align left": "\u0dc0\u0db8\u0dca\u0db4\u0dc3\u0da7 \u0db4\u0dd9\u0dc5\u0d9c\u0dc3\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Visual aids": "\u0daf\u0dd8\u0dc1\u0dca\u200d\u0dba\u0dcf\u0db0\u0dcf\u0dbb", -"Lower Greek": "\u0d9a\u0dd4\u0da9\u0dcf \u0d9c\u0dca\u200d\u0dbb\u0dd3\u0d9a ", -"Square": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0", -"Default": "\u0db4\u0dd9\u0dbb\u0db1\u0dd2\u0db8\u0dd2\u0dba ", -"Lower Alpha": "\u0d9a\u0dd4\u0da9\u0dcf \u0d87\u0dbd\u0dca\u0dc6\u0dcf ", -"Circle": "\u0dc0\u0d9a\u0dca\u200d\u0dbb\u0dba", -"Disc": "\u0dad\u0dd0\u0da7\u0dd2\u0dba ", -"Upper Alpha": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0d87\u0dbd\u0dca\u0dc6\u0dcf ", -"Upper Roman": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0dbb\u0ddd\u0db8\u0dcf\u0db1\u0dd4 ", -"Lower Roman": "\u0d9a\u0dd4\u0da9\u0dcf \u0dbb\u0ddd\u0db8\u0dcf\u0db1\u0dd4 ", -"Name": "\u0db1\u0dcf\u0db8\u0dba ", -"Anchor": "\u0d87\u0db1\u0dca\u0d9a\u0dbb\u0dba", -"You have unsaved changes are you sure you want to navigate away?": "\u0d94\u0db6\u0d9c\u0dda \u0dc3\u0dd4\u0dbb\u0d9a\u0dd2\u0db1 \u0db1\u0ddc\u0dbd\u0daf \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0dd2\u0dbb\u0dd3\u0db8\u0dca \u0d87\u0dad,\u0d94\u0db6\u0da7 \u0dc0\u0dd2\u0dc1\u0dca\u0dc0\u0dcf\u0dc3\u0daf \u0d89\u0dc0\u0dad\u0da7 \u0dba\u0dcf\u0dba\u0dd4\u0dad\u0dd4\u0dba\u0dd2 \u0d9a\u0dd2\u0dba\u0dcf?", -"Restore last draft": "\u0d85\u0dc0\u0dc3\u0dcf\u0db1\u0dba\u0da7 \u0db7\u0dcf\u0dc0\u0dd2\u0dad\u0dcf\u0d9a\u0dc5 \u0d9a\u0dd9\u0da7\u0dd4\u0db8\u0dca\u0db4\u0dad \u0db4\u0dd2\u0dc5\u0dd2\u0db1\u0d9c\u0db1\u0dca\u0db1 ", -"Special character": "\u0dc0\u0dd2\u0dc1\u0dda\u0dc2 \u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab ", -"Source code": "\u0db8\u0dd6\u0dbd \u0d9a\u0dda\u0dad\u0dba ", -"Right to left": "\u0daf\u0d9a\u0dd4\u0dab\u0dd4\u0db4\u0dc3 \u0dc3\u0dd2\u0da7 \u0dc0\u0db8\u0dca\u0db4\u0dc3\u0da7 ", -"Left to right": "\u0dc0\u0db8\u0dca\u0db4\u0dc3 \u0dc3\u0dd2\u0da7 \u0daf\u0d9a\u0dd4\u0db1\u0dd4\u0db4\u0dc3\u0da7 ", -"Emoticons": "\u0db7\u0dcf\u0dc0 \u0db1\u0dd2\u0dbb\u0dd4\u0db4\u0d9a", -"Robots": "\u0dbb\u0ddc\u0db6\u0ddd", -"Document properties": "\u0dbd\u0dda\u0d9b\u0db1\u0dba\u0dda \u0d9c\u0dd4\u0dab\u0dcf\u0d82\u0d9c ", -"Title": "\u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", -"Keywords": "\u0db8\u0dd6\u0dbd \u0db4\u0daf\u0dba ", -"Encoding": "\u0d9a\u0dda\u0dad\u0db1\u0dba", -"Description": "\u0dc0\u0dd2\u0dc3\u0dca\u0dad\u0dbb\u0dba ", -"Author": "\u0d9a\u0dad\u0dd8 ", -"Fullscreen": "\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0dad\u0dd2\u0dbb\u0dba ", -"Horizontal line": "\u0dad\u0dd2\u0dbb\u0dc3\u0dca \u0d89\u0dbb ", -"Horizontal space": "\u0dad\u0dd2\u0dbb\u0dc3\u0dca \u0dc4\u0dd2\u0dc3\u0dca \u0d89\u0da9", -"Insert\/edit image": "\u0db4\u0dd2\u0db1\u0dca\u0dad\u0dd4\u0dbb\u0dba \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1 \/ \u0dc3\u0d9a\u0dc3\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"General": "\u0db4\u0ddc\u0daf\u0dd4", -"Advanced": "\u0db4\u0dca\u200d\u0dbb\u0d9c\u0dad", -"Source": "\u0db8\u0dd6\u0dbd\u0dba ", -"Border": "\u0dc3\u0dd3\u0db8\u0dcf\u0dc0 ", -"Constrain proportions": "\u0dc3\u0d82\u0dbb\u0ddd\u0daf\u0d9a \u0db4\u0dca\u200d\u0dbb\u0db8\u0dcf\u0dab\u0db1", -"Vertical space": "\u0dc3\u0dd2\u0dbb\u0dc3\u0dca \u0dc4\u0dd2\u0dc3\u0dca \u0d89\u0da9", -"Image description": "\u0db4\u0dd2\u0db1\u0dca\u0dad\u0dd4\u0dbb\u0dba\u0dda \u0dc0\u0dd2\u0dc3\u0dca\u0dad\u0dbb\u0dba ", -"Style": "\u0dc0\u0dd2\u0dbd\u0dcf\u0dc3\u0dba", -"Dimensions": "\u0db8\u0dcf\u0db1", -"Insert image": "Insert image", -"Insert date\/time": "\u0daf\u0dd2\u0db1\u0dba \/ \u0dc0\u0dda\u0dbd\u0dcf\u0dc0 \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Remove link": "Remove link", -"Url": "Url", -"Text to display": "\u0db4\u0dd9\u0dc5 - \u0dc3\u0d82\u0daf\u0dbb\u0dca\u0dc1\u0d9a\u0dba", -"Anchors": "Anchors", -"Insert link": "\u0dc3\u0db6\u0dd0\u0db3\u0dd2\u0dba \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1", -"New window": "\u0db1\u0dc0 \u0d9a\u0dc0\u0dd4\u0dc5\u0dd4\u0dc0\u0d9a\u0dca", -"None": "\u0d9a\u0dd2\u0dc3\u0dd2\u0dc0\u0d9a\u0dca \u0db1\u0dd0\u0dad", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0d89\u0dbd\u0d9a\u0dca\u0d9a\u0dba", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0dc3\u0db6\u0dd0\u0db3\u0dd2\u0dba \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1 \/ \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Insert\/edit video": "\u0dc0\u0dd3\u0da9\u0dd2\u0dba\u0ddd\u0dc0 \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1 \/ \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Poster": "\u0db4\u0ddd\u0dc3\u0dca\u0da7\u0dbb\u0dba", -"Alternative source": "\u0dc0\u0dd2\u0d9a\u0dbd\u0dca\u0db4 \u0db8\u0dd6\u0dbd\u0dba", -"Paste your embed code below:": "\u0d94\u0db6\u0d9c\u0dda \u0d9a\u0dcf\u0dc0\u0dd0\u0daf\u0dca\u0daf\u0dd6 \u0d9a\u0dda\u0dad\u0dba \u0db4\u0dc4\u0dad\u0dd2\u0db1\u0dca \u0daf\u0db8\u0db1\u0dca\u0db1", -"Insert video": "\u0dc0\u0dd3\u0da9\u0dd2\u0dba\u0ddd\u0dc0 \u0d87\u0dad\u0dd4\u0dbd\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Embed": "\u0d9a\u0dcf\u0dc0\u0daf\u0dca\u0daf\u0db1\u0dca\u0db1", -"Nonbreaking space": "\u0db1\u0ddc\u0d9a\u0dd0\u0da9\u0dd4\u0dab\u0dd4 \u0dc4\u0dd2\u0dc3\u0dca \u0d89\u0dbb", -"Page break": "\u0db4\u0dd2\u0da7\u0dd4 \u0d9a\u0da9\u0db1\u0dba", -"Paste as text": "Paste as text", -"Preview": "\u0db4\u0dd9\u0dbb\u0daf\u0dc3\u0dd4\u0db1", -"Print": "\u0db8\u0dd4\u0daf\u0dca\u200d\u0dbb\u0dab\u0dba \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Save": "\u0dc3\u0dd4\u0dbb\u0d9a\u0dd2\u0db1\u0dca\u0db1", -"Could not find the specified string.": "\u0db1\u0dd2\u0dbb\u0dd6\u0db4\u0dd2\u0dad \u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 \u0dc0\u0dd0\u0dbd \u0dc3\u0ddc\u0dba\u0dcf \u0d9c\u0dad \u0db1\u0ddc\u0dc4\u0dd0\u0d9a\u0dd2 \u0dc0\u0dd2\u0dba", -"Replace": "\u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db4\u0db1\u0dba \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Next": "\u0db4\u0dc3\u0dd4", -"Whole words": "\u0dc3\u0db8\u0dc3\u0dca\u0dad \u0db4\u0daf", -"Find and replace": "\u0dc3\u0ddc\u0dba\u0dcf \u0db4\u0dc3\u0dd4\u0dc0 \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db4\u0db1\u0dba \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Replace with": "\u0db8\u0dd9\u0dba \u0dc3\u0db8\u0d9f \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db4\u0db1\u0dba \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Find": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", -"Replace all": "\u0dc3\u0dd2\u0dba\u0dbd\u0dca\u0dbd\u0db8 \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0dc3\u0dca\u0dae\u0dcf\u0db4\u0db1\u0dba \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Match case": "\u0d9a\u0dcf\u0dbb\u0dab\u0dba \u0d9c\u0dbd\u0db4\u0db1\u0dca\u0db1", -"Prev": "\u0db4\u0dd9\u0dbb", -"Spellcheck": "\u0d85\u0d9a\u0dca\u0dc2\u0dbb \u0dc0\u0dd2\u0db1\u0dca\u200d\u0dba\u0dcf\u0dc3\u0dba \u0db4\u0dbb\u0dd3\u0d9a\u0dca\u0dc2\u0dcf \u0d9a\u0dbb \u0db6\u0dd0\u0dbd\u0dd3\u0db8", -"Finish": "\u0d85\u0dc0\u0dc3\u0db1\u0dca", -"Ignore all": "\u0dc3\u0dd2\u0dba\u0dbd\u0dca\u0dbd\u0db8 \u0db1\u0ddc\u0dc3\u0dbd\u0d9a\u0dcf \u0dc4\u0dbb\u0dd2\u0db1\u0dca\u0db1", -"Ignore": "\u0db1\u0ddc\u0dc3\u0dbd\u0d9a\u0dcf \u0dc4\u0dd0\u0dbb\u0dd3\u0db8", -"Insert row before": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dd9\u0dbb \u0db4\u0dda\u0dc5\u0dd2\u0dba\u0d9a\u0dca \u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Rows": "\u0db4\u0dda\u0dc5\u0dd2", -"Height": "\u0d8b\u0dc3 ", -"Paste row after": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dc3\u0dd4 \u0db4\u0dda\u0dc5\u0dd2\u0dba \u0d85\u0db8\u0dd4\u0dab\u0db1\u0dca\u0db1 ", -"Alignment": "\u0db4\u0dd9\u0dc5 \u0d9c\u0dd0\u0dc3\u0dd4\u0db8", -"Column group": "\u0dad\u0dd3\u0dbb\u0dd4 \u0d9a\u0dcf\u0dab\u0dca\u0da9\u0dba", -"Row": "\u0db4\u0dda\u0dc5\u0dd2\u0dba ", -"Insert column before": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dd9\u0dbb \u0dad\u0dd3\u0dbb\u0dd4\u0dc0 \u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Split cell": "\u0d9a\u0ddc\u0da7\u0dd4 \u0dc0\u0dd9\u0db1\u0dca\u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"Cell padding": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0\u0dd9\u0dc4\u0dd2 \u0db4\u0dd2\u0dbb\u0dc0\u0dd4\u0db8", -"Cell spacing": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0\u0dd9\u0dc4\u0dd2 \u0d89\u0da9 \u0dc3\u0dd3\u0db8\u0dcf\u0dc0 ", -"Row type": "\u0db4\u0dda\u0dc5\u0dd2\u0dba\u0dd9\u0dc4\u0dd2 \u0dc0\u0dbb\u0dca\u0d9c\u0dba", -"Insert table": "\u0dc0\u0d9c\u0dd4\u0dc0\u0da7 \u0d87\u0dad\u0dd4\u0dbd\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"Body": "\u0db4\u0dca\u200d\u0dbb\u0db0\u0dcf\u0db1 \u0d9a\u0ddc\u0da7\u0dc3", -"Caption": "\u0dba\u0da7\u0dd2 \u0dbd\u0dd2\u0dba\u0db8\u0db1 ", -"Footer": "\u0db4\u0dcf\u0daf\u0d9a\u0dba", -"Delete row": "\u0db4\u0dda\u0dc5\u0dd2\u0dba \u0db8\u0d9a\u0db1\u0dca\u0db1 ", -"Paste row before": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dd9\u0dbb \u0db4\u0dda\u0dc5\u0dd2\u0dba \u0d85\u0db8\u0dd4\u0dab\u0db1\u0dca\u0db1 ", -"Scope": "\u0dc0\u0dd2\u0dc2\u0dba\u0db4\u0dae\u0dba", -"Delete table": "\u0dc0\u0d9c\u0dd4\u0dc0 \u0db8\u0d9a\u0db1\u0dca\u0db1 ", -"Header cell": "\u0dc1\u0dd3\u0dbb\u0dca\u0dc2 \u0d9a\u0ddc\u0da7\u0dd4\u0dc0", -"Column": "\u0dad\u0dd3\u0dbb\u0dd4\u0dc0", -"Cell": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0 ", -"Header": "\u0dc1\u0dd3\u0dbb\u0dca\u0dc2\u0d9a\u0dba", -"Cell type": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0\u0dd9\u0dc4\u0dd2 \u0dc0\u0dbb\u0dca\u0d9c\u0dba", -"Copy row": "\u0db4\u0dda\u0dc5\u0dd2\u0dba \u0db4\u0dd2\u0da7\u0db4\u0dad\u0dca \u0d9a\u0dbb\u0d9c\u0db1\u0dca\u0db1 ", -"Row properties": "\u0db4\u0dda\u0dc5\u0dd2\u0dba\u0dd9\u0dc4\u0dd2 \u0d9c\u0dd4\u0dab\u0dcf\u0d82\u0d9c ", -"Table properties": "\u0dc0\u0d9c\u0dd4\u0dc0\u0dd9\u0dc4\u0dd2 \u0d9c\u0dd4\u0dab\u0dcf\u0d82\u0d9c ", -"Row group": "\u0db4\u0dda\u0dc5\u0dd2 \u0d9a\u0dcf\u0dab\u0dca\u0da9\u0dba", -"Right": "\u0daf\u0d9a\u0dd4\u0dab", -"Insert column after": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dc3\u0dd4 \u0dad\u0dd3\u0dbb\u0dd4\u0dc0 \u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"Cols": "\u0dad\u0dd3\u0dbb\u0dd4 ", -"Insert row after": "\u0db8\u0dda \u0dad\u0dd0\u0db1\u0da7 \u0db4\u0dc3\u0dd4 \u0db4\u0dda\u0dc5\u0dd2\u0dba\u0d9a\u0dca \u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"Width": "\u0db4\u0dc5\u0dbd", -"Cell properties": "\u0d9a\u0ddc\u0da7\u0dd4\u0dc0\u0dd9\u0dc4\u0dd2 \u0d9c\u0dd4\u0dab\u0dcf\u0d82\u0d9c ", -"Left": "\u0dc0\u0db8", -"Cut row": "\u0db4\u0dda\u0dc5\u0dd2\u0dba \u0d9a\u0db4\u0dcf\u0d9c\u0db1\u0dca\u0db1 ", -"Delete column": "\u0dad\u0dd3\u0dbb\u0dd4\u0dc0 \u0db8\u0d9a\u0db1\u0dca\u0db1 ", -"Center": "\u0db8\u0dd0\u0daf", -"Merge cells": "\u0d9a\u0ddc\u0da7\u0dd4 \u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1 ", -"Insert template": "\u0d85\u0da0\u0dca\u0da0\u0dd4\u0dc0 \u0d87\u0dad\u0dd4\u0dbd\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"Templates": "\u0d85\u0da0\u0dca\u0da0\u0dd4", -"Background color": "\u0db4\u0dc3\u0dd4\u0db6\u0dd2\u0db8\u0dd9\u0dc4\u0dd2 \u0dc0\u0dbb\u0dca\u0dab\u0dba", -"Text color": "\u0db4\u0dd9\u0dc5 \u0dc3\u0da7\u0dc4\u0db1\u0dda \u0dc0\u0dbb\u0dca\u0dab\u0dba", -"Show blocks": "\u0d9a\u0ddc\u0da7\u0dc3\u0dca \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Show invisible characters": "\u0db1\u0ddc\u0db4\u0dd9\u0db1\u0dd9\u0db1 \u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Words: {0}": "\u0dc0\u0da0\u0db1: {0}", -"Insert": "\u0d91\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1", -"File": "\u0d9c\u0ddc\u0db1\u0dd4\u0dc0", -"Edit": "\u0dc3\u0d9a\u0dc3\u0db1\u0dca\u0db1", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0db4\u0dd9\u0dc5 \u0dc3\u0da7\u0dc4\u0db1\u0dca \u0db6\u0dc4\u0dd4\u0dbd \u0db4\u0dca\u200d\u0dbb\u0daf\u0dda\u0dc1\u0dba. \u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0dc3\u0db3\u0dc4\u0dcf ALT-F9 \u0d94\u0db6\u0db1\u0dca\u0db1. \u0db8\u0dd9\u0dc0\u0dbd\u0db8\u0dca \u0dad\u0dd3\u0dbb\u0dd4\u0dc0 \u0dc3\u0db3\u0dc4\u0dcf ALT-F10 \u0d94\u0db6\u0db1\u0dca\u0db1. \u0dc3\u0dc4\u0dba \u0dbd\u0db6\u0dcf\u0d9c\u0dd0\u0db1\u0dd3\u0db8 \u0dc3\u0db3\u0dc4\u0dcf ALT-0 \u0d94\u0db6\u0db1\u0dca\u0db1.", -"Tools": "\u0db8\u0dd9\u0dc0\u0dbd\u0db8\u0dca", -"View": "\u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", -"Table": "\u0dc0\u0d9c\u0dd4\u0dc0", -"Format": "\u0dc4\u0dd0\u0da9\u0dad\u0dbd\u0dba" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/sk.js b/Resources/public/vendor/tinymce/langs/sk.js deleted file mode 100644 index fbf5ed4d..00000000 --- a/Resources/public/vendor/tinymce/langs/sk.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('sk',{ -"Cut": "Vystrihn\u00fa\u0165", -"Heading 5": "Nadpis 5", -"Header 2": "Nadpis 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prehliada\u010d nepodporuje priamy pr\u00edstup do schr\u00e1nky. Pou\u017eite kl\u00e1vesov\u00e9 skratky Ctrl+X\/C\/V.", -"Heading 4": "Nadpis 4", -"Div": "Blok", -"Heading 2": "Nadpis 2", -"Paste": "Vlo\u017ei\u0165", -"Close": "Zatvori\u0165", -"Font Family": "P\u00edsmo", -"Pre": "Preform\u00e1tovan\u00fd", -"Align right": "Zarovna\u0165 vpravo", -"New document": "Nov\u00fd dokument", -"Blockquote": "Cit\u00e1cia", -"Numbered list": "\u010c\u00edslovan\u00fd zoznam", -"Heading 1": "Nadpis 1", -"Headings": "Nadpisy", -"Increase indent": "Zv\u00e4\u010d\u0161i\u0165 odsadenie", -"Formats": "Form\u00e1ty", -"Headers": "Nadpisy", -"Select all": "Ozna\u010di\u0165 v\u0161etko", -"Header 3": "Nadpis 3", -"Blocks": "Bloky", -"Undo": "Vr\u00e1ti\u0165", -"Strikethrough": "Pre\u010diarknut\u00e9", -"Bullet list": "Odr\u00e1\u017eky", -"Header 1": "Nadpis 1", -"Superscript": "Horn\u00fd index", -"Clear formatting": "Vymaza\u0165 form\u00e1tovanie", -"Font Sizes": "Ve\u013ekos\u0165 p\u00edsma", -"Subscript": "Spodn\u00fd index", -"Header 6": "Nadpis 6", -"Redo": "Znova", -"Paragraph": "Odsek", -"Ok": "Ok", -"Bold": "Tu\u010dn\u00e9", -"Code": "K\u00f3d", -"Italic": "Kurz\u00edva", -"Align center": "Zarovna\u0165 na stred", -"Header 5": "Nadpis 5", -"Heading 6": "Nadpis 6", -"Heading 3": "Nadpis 3", -"Decrease indent": "Zmen\u0161i\u0165 odsadenie", -"Header 4": "Nadpis 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Vkladanie je v m\u00f3de neform\u00e1tovan\u00e9ho textu. Vkladan\u00fd obsah bude vlo\u017een\u00fd ako neform\u00e1tovan\u00fd, a\u017e pok\u00fdm t\u00fato mo\u017enos\u0165 nevypnete.", -"Underline": "Pod\u010diarknut\u00e9", -"Cancel": "Zru\u0161i\u0165", -"Justify": "Zarovna\u0165", -"Inline": "\u0160t\u00fdly", -"Copy": "Kop\u00edrova\u0165", -"Align left": "Zarovna\u0165 v\u013eavo", -"Visual aids": "Vizu\u00e1lne pom\u00f4cky", -"Lower Greek": "Mal\u00e9 gr\u00e9cke p\u00edsmen\u00e1", -"Square": "\u0160tvorec", -"Default": "V\u00fdchodzie", -"Lower Alpha": "Mal\u00e9 p\u00edsmen\u00e1", -"Circle": "Kruh", -"Disc": "Disk", -"Upper Alpha": "Ve\u013ek\u00e9 p\u00edsmen\u00e1", -"Upper Roman": "Ve\u013ek\u00e9 r\u00edmske \u010d\u00edslice", -"Lower Roman": "Mal\u00e9 r\u00edmske \u010d\u00edslice", -"Name": "N\u00e1zov", -"Anchor": "Odkaz", -"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zmeny, naozaj chcete opusti\u0165 str\u00e1nku?", -"Restore last draft": "Obnovi\u0165 posledn\u00fd koncept", -"Special character": "\u0160peci\u00e1lny znak", -"Source code": "Zdrojov\u00fd k\u00f3d", -"Color": "Farba", -"Right to left": "Sprava do\u013eava", -"Left to right": "Z\u013eava doprava", -"Emoticons": "Smajl\u00edci", -"Robots": "Preh\u013ead\u00e1vacie roboty", -"Document properties": "Vlastnosti dokumentu", -"Title": "Nadpis", -"Keywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1", -"Encoding": "K\u00f3dovanie", -"Description": "Popis", -"Author": "Autor", -"Fullscreen": "Na cel\u00fa obrazovku", -"Horizontal line": "Horizont\u00e1lna \u010diara", -"Horizontal space": "Horizont\u00e1lny priestor", -"Insert\/edit image": "Vlo\u017ei\u0165\/upravi\u0165 obr\u00e1zok", -"General": "Hlavn\u00e9", -"Advanced": "Pokro\u010dil\u00e9", -"Source": "Zdroj", -"Border": "Or\u00e1movanie", -"Constrain proportions": "Vymedzen\u00e9 proporcie", -"Vertical space": "Vertik\u00e1lny priestor", -"Image description": "Popis obr\u00e1zku", -"Style": "\u0160t\u00fdl", -"Dimensions": "Rozmery", -"Insert image": "Vlo\u017ei\u0165 obr\u00e1zok", -"Insert date\/time": "Vlo\u017ei\u0165 d\u00e1tum\/\u010das", -"Remove link": "Odstr\u00e1ni\u0165 odkaz", -"Url": "Url", -"Text to display": "Zobrazen\u00fd text", -"Anchors": "Kotvy", -"Insert link": "Vlo\u017ei\u0165 odkaz", -"New window": "Nov\u00e9 okno", -"None": "\u017diadne", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL adresa ktor\u00fa ste zadali vyzer\u00e1 ako extern\u00fd link. Chcete prida\u0165 vy\u017eadovan\u00fa http:\/\/ predponu?", -"Target": "Cie\u013e", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, ktor\u00fa ste vlo\u017eili je pravdepodobne emailov\u00e1 adresa. \u017del\u00e1te si prida\u0165 vy\u017eadov\u00fa mailto: predponu?", -"Insert\/edit link": "Vlo\u017ei\u0165\/upravi\u0165 odkaz", -"Insert\/edit video": "Vlo\u017ei\u0165\/upravi\u0165 video", -"Poster": "Uk\u00e1\u017eka", -"Alternative source": "Alternat\u00edvny zdroj", -"Paste your embed code below:": "Vlo\u017ete k\u00f3d pre vlo\u017eenie na str\u00e1nku:", -"Insert video": "Vlo\u017ei\u0165 video", -"Embed": "Vlo\u017een\u00e9", -"Nonbreaking space": "Nedelite\u013en\u00e1 medzera", -"Page break": "Zalomenie str\u00e1nky", -"Paste as text": "Vlo\u017ei\u0165 ako text", -"Preview": "N\u00e1h\u013ead", -"Print": "Tla\u010di\u0165", -"Save": "Ulo\u017ei\u0165", -"Could not find the specified string.": "Zadan\u00fd re\u0165azec sa nena\u0161iel.", -"Replace": "Nahradi\u0165", -"Next": "Nasleduj\u00face", -"Whole words": "Cel\u00e9 slov\u00e1", -"Find and replace": "Vyh\u013eada\u0165 a nahradi\u0165", -"Replace with": "Nahradi\u0165 za", -"Find": "H\u013eada\u0165", -"Replace all": "Nahradi\u0165 v\u0161etko", -"Match case": "Rozli\u0161ova\u0165 ve\u013ek\u00e9\/mal\u00e9", -"Prev": "Predch\u00e1dzaj\u00face", -"Spellcheck": "Kontrola pravopisu", -"Finish": "Dokon\u010di\u0165", -"Ignore all": "Ignorova\u0165 v\u0161etko", -"Ignore": "Ignorova\u0165", -"Add to Dictionary": "Prida\u0165 do slovn\u00edka", -"Insert row before": "Vlo\u017ei\u0165 nov\u00fd riadok pred", -"Rows": "Riadky", -"Height": "V\u00fd\u0161ka", -"Paste row after": "Vlo\u017ei\u0165 riadok za", -"Alignment": "Zarovnanie", -"Border color": "Farba or\u00e1movania", -"Column group": "Skupina st\u013apcov", -"Row": "Riadok", -"Insert column before": "Prida\u0165 nov\u00fd st\u013apec pred", -"Split cell": "Rozdeli\u0165 bunku", -"Cell padding": "Odsadenie v bunk\u00e1ch", -"Cell spacing": "Priestor medzi bunkami", -"Row type": "Typ riadku", -"Insert table": "Vlo\u017ei\u0165 tabu\u013eku", -"Body": "Telo", -"Caption": "Popisok", -"Footer": "P\u00e4ti\u010dka", -"Delete row": "Zmaza\u0165 riadok", -"Paste row before": "Vlo\u017ei\u0165 riadok pred", -"Scope": "Oblas\u0165", -"Delete table": "Zmaza\u0165 tabu\u013eku", -"H Align": "Horizont\u00e1lne zarovnanie", -"Top": "Vrch", -"Header cell": "Bunka z\u00e1hlavia", -"Column": "St\u013apec", -"Row group": "Skupina riadkov", -"Cell": "Bunka", -"Middle": "Stred", -"Cell type": "Typ bunky", -"Copy row": "Kop\u00edrova\u0165 riadok", -"Row properties": "Vlastnosti riadku", -"Table properties": "Nastavenia tabu\u013eky", -"Bottom": "Spodok", -"V Align": "Vertik\u00e1lne zarovnanie", -"Header": "Z\u00e1hlavie", -"Right": "Vpravo", -"Insert column after": "Prida\u0165 nov\u00fd st\u013apec za", -"Cols": "St\u013apce", -"Insert row after": "Vlo\u017ei\u0165 nov\u00fd riadok za", -"Width": "\u0160\u00edrka", -"Cell properties": "Vlastnosti bunky", -"Left": "V\u013eavo", -"Cut row": "Vystrihn\u00fa\u0165 riadok", -"Delete column": "Vymaza\u0165 st\u013apec", -"Center": "Na stred", -"Merge cells": "Spoji\u0165 bunky", -"Insert template": "Vlo\u017ei\u0165 \u0161abl\u00f3nu", -"Templates": "\u0160abl\u00f3ny", -"Background color": "Farba pozadia", -"Custom...": "Vlastn\u00e1...", -"Custom color": "Vlastn\u00e1 farba", -"No color": "Bez farby", -"Text color": "Farba textu", -"Show blocks": "Zobrazi\u0165 bloky", -"Show invisible characters": "Zobrazi\u0165 skryt\u00e9 znaky", -"Words: {0}": "Slov: {0}", -"Insert": "Vlo\u017ei\u0165", -"File": "S\u00fabor", -"Edit": "Upravi\u0165", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textov\u00e9 pole. Stla\u010dte ALT-F9 pre zobrazenie menu, ALT-F10 pre zobrazenie panela n\u00e1strojov, ALT-0 pre n\u00e1povedu.", -"Tools": "N\u00e1stroje", -"View": "Zobrazi\u0165", -"Table": "Tabu\u013eka", -"Format": "Form\u00e1t" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/sl_SI.js b/Resources/public/vendor/tinymce/langs/sl_SI.js deleted file mode 100644 index b4a71dfd..00000000 --- a/Resources/public/vendor/tinymce/langs/sl_SI.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('sl_SI',{ -"Cut": "Izre\u017ei", -"Header 2": "Naslov 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Varnostne nastavitve brskalnika ne dopu\u0161\u010dajo direktnega dostopa do odlo\u017ei\u0161\u010da. Uporabite kombinacijo tipk Ctrl+X\/C\/V na tipkovnici.", -"Div": "Div", -"Paste": "Prilepi", -"Close": "Zapri", -"Font Family": "Dru\u017eina tipografije", -"Pre": "Predformat", -"Align right": "Desna poravnava", -"New document": "Nov dokument", -"Blockquote": "Zamik besedila", -"Numbered list": "O\u0161tevil\u010den seznam", -"Increase indent": "Pove\u010daj zamik", -"Formats": "Oblika", -"Headers": "Naslovi", -"Select all": "Izberi vse", -"Header 3": "Naslov 3", -"Blocks": "Grupe", -"Undo": "Razveljavi", -"Strikethrough": "Pre\u010drtano", -"Bullet list": "Ozna\u010den seznam", -"Header 1": "Naslov 1", -"Superscript": "Nadpisano", -"Clear formatting": "Odstrani oblikovanje", -"Font Sizes": "Velikosti tipografije", -"Subscript": "Podpisano", -"Header 6": "Naslov 6", -"Redo": "Ponovi", -"Paragraph": "Odstavek", -"Ok": "V redu", -"Bold": "Krepko", -"Code": "Koda", -"Italic": "Le\u017ee\u010de", -"Align center": "Sredinska poravnava", -"Header 5": "Naslov 5", -"Decrease indent": "Zmanj\u0161aj zamik", -"Header 4": "Naslov 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Odlagali\u0161\u010de je zdaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot golo besedilo brez oblike, dokler te mo\u017enosti ne izklju\u010dite.", -"Underline": "Pod\u010drtano", -"Cancel": "Prekli\u010di", -"Justify": "Obojestranska poravnava", -"Inline": "Med besedilom", -"Copy": "Kopiraj", -"Align left": "Leva poravnava", -"Visual aids": "Vizualni pripomo\u010dki", -"Lower Greek": "Male gr\u0161ke \u010drke", -"Square": "Kvadratek", -"Default": "Privzeto", -"Lower Alpha": "Male tiskane \u010drke", -"Circle": "Pikica", -"Disc": "Kroglica", -"Upper Alpha": "Velike tiskane \u010drke", -"Upper Roman": "Velike rimske \u0161tevilke", -"Lower Roman": "Male rimske \u0161tevilke", -"Name": "Naziv zaznamka", -"Anchor": "Zaznamek", -"You have unsaved changes are you sure you want to navigate away?": "Imate neshranjene spremembe. Ste prepri\u010dati, da \u017eelite zapustiti stran?", -"Restore last draft": "Obnovi zadnji osnutek", -"Special character": "Posebni znaki", -"Source code": "Izvorna koda", -"Right to left": "Od desne proti levi", -"Left to right": "Od leve proti desni", -"Emoticons": "Sme\u0161ki", -"Robots": "Robotki", -"Document properties": "Lastnosti dokumenta", -"Title": "Naslov", -"Keywords": "Klju\u010dne besede", -"Encoding": "Kodiranje", -"Description": "Opis", -"Author": "Avtor", -"Fullscreen": "\u010cez cel zaslon", -"Horizontal line": "Vodoravna \u010drta", -"Horizontal space": "Vodoravni prostor", -"Insert\/edit image": "Vstavi\/uredi sliko", -"General": "Splo\u0161no", -"Advanced": "Napredno", -"Source": "Pot", -"Border": "Obroba", -"Constrain proportions": "Obdr\u017ei razmerje", -"Vertical space": "Navpi\u010dni prostor", -"Image description": "Opis slike", -"Style": "Slog", -"Dimensions": "Dimenzije", -"Insert image": "Vnesi sliko", -"Insert date\/time": "Vstavi datum\/\u010das", -"Remove link": "Odstrani povezavo", -"Url": "Povezava", -"Text to display": "Prikazno besedilo", -"Anchors": "Sidra", -"Insert link": "Vstavi povezavo", -"New window": "Novo okno", -"None": "Brez", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Cilj", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Vstavi\/uredi povezavo", -"Insert\/edit video": "Vstavi\/uredi video", -"Poster": "Poster", -"Alternative source": "Nadomestni vir", -"Paste your embed code below:": "Prilepite kodo za vdelavo:", -"Insert video": "Vstavi video", -"Embed": "Vdelaj", -"Nonbreaking space": "Nedeljivi presledek", -"Page break": "Prelom strani", -"Paste as text": "Vnesi kot besedilo", -"Preview": "Predogled", -"Print": "Natisni", -"Save": "Shrani", -"Could not find the specified string.": "Iskanje ni vrnilo rezultatov.", -"Replace": "Zamenjaj", -"Next": "Naprej", -"Whole words": "Cele besede", -"Find and replace": "Poi\u0161\u010di in zamenjaj", -"Replace with": "Zamenjaj z", -"Find": "I\u0161\u010di", -"Replace all": "Zamenjaj vse", -"Match case": "Ujemanje malih in velikih \u010drk", -"Prev": "Nazaj", -"Spellcheck": "Preverjanje \u010drkovanja", -"Finish": "Zaklju\u010di", -"Ignore all": "Prezri vse", -"Ignore": "Prezri", -"Insert row before": "Vstavi vrstico pred", -"Rows": "Vrstice", -"Height": "Vi\u0161ina", -"Paste row after": "Prilepi vrstico za", -"Alignment": "Poravnava", -"Column group": "Grupiranje stolpcev", -"Row": "Vrstica", -"Insert column before": "Vstavi stolpec pred", -"Split cell": "Razdeli celico", -"Cell padding": "Polnilo med celicami", -"Cell spacing": "Razmik med celicami", -"Row type": "Tip vrstice", -"Insert table": "Vstavi tabelo", -"Body": "Vsebina", -"Caption": "Naslov", -"Footer": "Noga", -"Delete row": "Izbri\u0161i vrstico", -"Paste row before": "Prilepi vrstico pred", -"Scope": "Obseg", -"Delete table": "Izbri\u0161i tabelo", -"Header cell": "Celica glave", -"Column": "Stolpec", -"Cell": "Celica", -"Header": "Glava", -"Cell type": "Tip celice", -"Copy row": "Kopiraj vrstico", -"Row properties": "Lastnosti vrstice", -"Table properties": "Lastnosti tabele", -"Row group": "Grupiranje vrstic", -"Right": "Desno", -"Insert column after": "Vstavi stolpec za", -"Cols": "Stolpci", -"Insert row after": "Vstavi vrstico za", -"Width": "\u0160irina", -"Cell properties": "Lastnosti celice", -"Left": "Levo", -"Cut row": "Izre\u017ei vrstico", -"Delete column": "Izbri\u0161i stolpec", -"Center": "Sredinsko", -"Merge cells": "Zdru\u017ei celice", -"Insert template": "Vstavi predlogo", -"Templates": "Predloge", -"Background color": "Barva ozadja", -"Text color": "Barva besedila", -"Show blocks": "Prika\u017ei bloke", -"Show invisible characters": "Prika\u017ei skrite znake", -"Words: {0}": "Besed: {0}", -"Insert": "Vstavi", -"File": "Datoteka", -"Edit": "Uredi", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\u010d", -"Tools": "Orodja", -"View": "Pogled", -"Table": "Tabela", -"Format": "Oblika" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/sr.js b/Resources/public/vendor/tinymce/langs/sr.js deleted file mode 100644 index ef724045..00000000 --- a/Resources/public/vendor/tinymce/langs/sr.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('sr',{ -"Cut": "Iseci", -"Header 2": "Zaglavlje 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 pretra\u017eiva\u010d nepodr\u017eava direktan pristup prenosu.Koristite Ctrl+X\/C\/V pre\u010dice na tastaturi", -"Div": "Div", -"Paste": "Nalepi", -"Close": "Zatvori", -"Font Family": "Vrsta fonta", -"Pre": "Pre", -"Align right": "Poravnano desno", -"New document": "Novi dokument", -"Blockquote": "Navodnici", -"Numbered list": "Numerisana lista", -"Increase indent": "Pove\u0107aj uvla\u010denje", -"Formats": "Formatiraj", -"Headers": "Zaglavlje", -"Select all": "Obele\u017ei sve", -"Header 3": "Zaglavlje 3", -"Blocks": "Blokovi", -"Undo": "Nazad", -"Strikethrough": "Precrtan", -"Bullet list": "Lista nabrajanja", -"Header 1": "Zaglavlje 1", -"Superscript": "Natpis", -"Clear formatting": "Brisanje formatiranja", -"Font Sizes": "Veli\u010dine fontova", -"Subscript": "Potpisan", -"Header 6": "Zaglavlje 6", -"Redo": "Napred", -"Paragraph": "Paragraf", -"Ok": "Ok", -"Bold": "Podebljan", -"Code": "Kod", -"Italic": "isko\u0161en", -"Align center": "Poravnano centar", -"Header 5": "Zaglavlje 5", -"Decrease indent": "Smanji uvla\u010denje", -"Header 4": "Zaglavlje 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Nalepiti je sada u obi\u010dnom text modu.Sadr\u017eaj \u0107e biti nalepljen kao obi\u010dan tekst dok ne ugasite ovu opciju.", -"Underline": "Podvu\u010den", -"Cancel": "Opozovi", -"Justify": "Poravnanje", -"Inline": "U liniji", -"Copy": "Kopiraj", -"Align left": "Poravnano levo", -"Visual aids": "Vizuelna pomagala", -"Lower Greek": "Ni\u017ei gr\u010dki", -"Square": "Kvadrat", -"Default": "Podrazumevano", -"Lower Alpha": "Donja Alpha", -"Circle": "Krug", -"Disc": "Disk", -"Upper Alpha": "Gornji Alpha", -"Upper Roman": "Gornji Roman", -"Lower Roman": "Donji Roman", -"Name": "Ime", -"Anchor": "Sidro", -"You have unsaved changes are you sure you want to navigate away?": "Imate nesa\u010duvane promene dali ste sigurni da \u017eelite da iza\u0111ete?", -"Restore last draft": "Vrati poslednji nacrt", -"Special character": "Specijalni karakter", -"Source code": "Izvorni kod", -"Right to left": "Sa desne na levu", -"Left to right": "Sa leve na desnu", -"Emoticons": "Smajliji", -"Robots": "Roboti", -"Document properties": "Postavke dokumenta", -"Title": "Naslov", -"Keywords": "Klju\u010dne re\u010di", -"Encoding": "Kodiranje", -"Description": "Opis", -"Author": "Autor", -"Fullscreen": "Pun ekran", -"Horizontal line": "Horizontalna linija", -"Horizontal space": "Horizontalni razmak", -"Insert\/edit image": "Ubaci\/Promeni sliku", -"General": "Op\u0161te", -"Advanced": "Napredno", -"Source": "Izvor", -"Border": "Okvir", -"Constrain proportions": "Ograni\u010dene proporcije", -"Vertical space": "Vertikalni razmak", -"Image description": "Opis slike", -"Style": "Stil", -"Dimensions": "Dimenzije", -"Insert image": "Ubaci sliku", -"Insert date\/time": "Ubaci datum\/vreme", -"Remove link": "Ukloni link", -"Url": "Url", -"Text to display": "Tekst za prikaz", -"Anchors": "sidro", -"Insert link": "Ubaci vezu", -"New window": "Novi prozor", -"None": "Ni\u0161ta", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Meta", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Ubaci\/promeni vezu", -"Insert\/edit video": "Ubaci\/promeni video", -"Poster": "Poster", -"Alternative source": "Alternativni izvor", -"Paste your embed code below:": "Nalepite ugra\u0111eni kod ispod:", -"Insert video": "Ubaci video", -"Embed": "Ugra\u0111eno", -"Nonbreaking space": "bez ramaka", -"Page break": "Lomljenje stranice", -"Paste as text": "Nalepi kao tekst", -"Preview": "Pregled", -"Print": "\u0160tampanje", -"Save": "Sa\u010duvati", -"Could not find the specified string.": "Nije mogu\u0107e prona\u0107i navedeni niz.", -"Replace": "Zameni", -"Next": "Slede\u0107i", -"Whole words": "Cele re\u010di", -"Find and replace": "Na\u0111i i zameni", -"Replace with": "Zameni sa", -"Find": "Na\u0111i", -"Replace all": "Zameni sve", -"Match case": "Predmet za upore\u0111ivanje", -"Prev": "Prethodni", -"Spellcheck": "Provera pravopisa", -"Finish": "Kraj", -"Ignore all": "Ignori\u0161i sve", -"Ignore": "ignori\u0161i", -"Insert row before": "Ubaci red pre", -"Rows": "Redovi", -"Height": "Visina", -"Paste row after": "Nalepi red posle", -"Alignment": "Svrstavanje", -"Column group": "Grupa kolone", -"Row": "Red", -"Insert column before": "Ubaci kolonu pre", -"Split cell": "Razdvoji \u0107elije", -"Cell padding": "Razmak \u0107elije", -"Cell spacing": "Prostor \u0107elije", -"Row type": "Tip reda", -"Insert table": "ubaci tabelu", -"Body": "Telo", -"Caption": "Natpis", -"Footer": "Podno\u017eje", -"Delete row": "Obri\u0161i red", -"Paste row before": "Nalepi red pre", -"Scope": "Obim", -"Delete table": "Obri\u0161i tabelu", -"Header cell": "Visina \u0107elije", -"Column": "Kolona", -"Cell": "\u0106elija", -"Header": "Zaglavlje", -"Cell type": "Tip \u0107elije", -"Copy row": "Kopiraj red", -"Row properties": "Postavke reda", -"Table properties": "Postavke tabele", -"Row group": "Grupa reda", -"Right": "Desno", -"Insert column after": "Ubaci kolonu posle", -"Cols": "Kolone", -"Insert row after": "Ubaci red posle", -"Width": "\u0160irina", -"Cell properties": "Postavke \u0107elije", -"Left": "Levo", -"Cut row": "Iseci red", -"Delete column": "Obri\u0161i kolonu", -"Center": "Centar", -"Merge cells": "Spoji \u0107elije", -"Insert template": "Ubaci \u0161ablon", -"Templates": "\u0160abloni", -"Background color": "Boja pozadine", -"Text color": "Boja tekst", -"Show blocks": "Prikaz blokova", -"Show invisible characters": "Prika\u017ei nevidljive karaktere", -"Words: {0}": "Re\u010di:{0}", -"Insert": "Umetni", -"File": "Datoteka", -"Edit": "Ure\u0111ivanje", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Oboga\u0107en tekst. Pritisni te ALT-F9 za meni.Pritisnite ALT-F10 za traku sa alatkama.Pritisnite ALT-0 za pomo\u0107", -"Tools": "Alatke", -"View": "Prikaz", -"Table": "Tabela", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/sv_SE.js b/Resources/public/vendor/tinymce/langs/sv_SE.js deleted file mode 100644 index cc26da97..00000000 --- a/Resources/public/vendor/tinymce/langs/sv_SE.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('sv_SE',{ -"Cut": "Klipp ut", -"Heading 5": "Rubrik 5", -"Header 2": "Rubrik 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser st\u00f6djer inte direkt \u00e5tkomst till klippboken. V\u00e4nligen anv\u00e4nd kortkommandona Ctrl+X\/C\/V i st\u00e4llet.", -"Heading 4": "Rubrik 4", -"Div": "Div", -"Heading 2": "Rubrik 2", -"Paste": "Klistra in", -"Close": "St\u00e4ng", -"Font Family": "Teckensnitt", -"Pre": "F\u00f6rformaterad", -"Align right": "H\u00f6gerst\u00e4ll", -"New document": "Nytt dokument", -"Blockquote": "Blockcitat", -"Numbered list": "Nummerlista", -"Heading 1": "Rubrik 1", -"Headings": "Rubriker", -"Increase indent": "\u00d6ka indrag", -"Formats": "Format", -"Headers": "Rubriker", -"Select all": "Markera allt", -"Header 3": "Rubrik 3", -"Blocks": "Block", -"Undo": "\u00c5ngra", -"Strikethrough": "Genomstruken", -"Bullet list": "Punktlista", -"Header 1": "Rubrik 1", -"Superscript": "Upph\u00f6jd text", -"Clear formatting": "Avformatera", -"Font Sizes": "Storlek", -"Subscript": "Neds\u00e4nkt text", -"Header 6": "Rubrik 6", -"Redo": "G\u00f6r om", -"Paragraph": "Br\u00f6dtext", -"Ok": "Ok", -"Bold": "Fetstil", -"Code": "Kod", -"Italic": "Kursiv stil", -"Align center": "Centrera", -"Header 5": "Rubrik 5", -"Heading 6": "Rubrik 6", -"Heading 3": "Rubrik 3", -"Decrease indent": "Minska indrag", -"Header 4": "Rubrik 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Klistra in \u00e4r nu i textl\u00e4ge. Inneh\u00e5ll kommer att konverteras till text tills du sl\u00e5r av detta l\u00e4ge.", -"Underline": "Understruken", -"Cancel": "Avbryt", -"Justify": "Justera", -"Inline": "Inline", -"Copy": "Kopiera", -"Align left": "V\u00e4nsterst\u00e4ll", -"Visual aids": "Visuella hj\u00e4lpmedel", -"Lower Greek": "Grekiska gemener", -"Square": "Fyrkant", -"Default": "Original", -"Lower Alpha": "Gemener", -"Circle": "Cirkel", -"Disc": "Disk", -"Upper Alpha": "Versaler", -"Upper Roman": "Romerska versaler", -"Lower Roman": "Romerska gemener", -"Name": "Namn", -"Anchor": "Ankare", -"You have unsaved changes are you sure you want to navigate away?": "Du har f\u00f6r\u00e4ndringar som du inte har sparat. \u00c4r du s\u00e4ker p\u00e5 att du vill navigera vidare?", -"Restore last draft": "\u00c5terst\u00e4ll senaste utkast", -"Special character": "Specialtecken", -"Source code": "K\u00e4llkod", -"Color": "F\u00e4rg", -"Right to left": "H\u00f6ger till v\u00e4nster", -"Left to right": "V\u00e4nster till h\u00f6ger", -"Emoticons": "Emoticons", -"Robots": "Robotar", -"Document properties": "Dokumentegenskaper", -"Title": "Titel", -"Keywords": "Nyckelord", -"Encoding": "Encoding", -"Description": "Beskrivning", -"Author": "F\u00f6rfattare", -"Fullscreen": "Fullsk\u00e4rm", -"Horizontal line": "Horisontell linje", -"Horizontal space": "Horisontellt utrymme", -"Insert\/edit image": "Infoga\/redigera bild", -"General": "Generella", -"Advanced": "Avancerat", -"Source": "K\u00e4lla", -"Border": "Ram", -"Constrain proportions": "Begr\u00e4nsa proportioner", -"Vertical space": "Vertikaltutrymme", -"Image description": "Bildbeskrivning", -"Style": "Stil", -"Dimensions": "Dimensioner", -"Insert image": "Infoga bild", -"Insert date\/time": "Infoga datum\/tid", -"Remove link": "Ta bort l\u00e4nk", -"Url": "Url", -"Text to display": "Text att visa", -"Anchors": "Bokm\u00e4rken", -"Insert link": "Infoga l\u00e4nk", -"New window": "Nytt f\u00f6nster", -"None": "Ingen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Urlen du angav verkar vara en extern l\u00e4nk. Vill du l\u00e4gga till http:\/\/ prefixet?", -"Target": "M\u00e5l", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Urlen du angav verkar vara en epost adress. Vill du l\u00e4gga till ett mailto: prefix?", -"Insert\/edit link": "Infoga\/redigera l\u00e4nk", -"Insert\/edit video": "Infoga\/redigera video", -"Poster": "Affish", -"Alternative source": "Alternativ k\u00e4lla", -"Paste your embed code below:": "Klistra in din inb\u00e4ddningskod nedan:", -"Insert video": "Infoga video", -"Embed": "Inb\u00e4ddning", -"Nonbreaking space": "Avbrottsfritt mellanrum", -"Page break": "Sydbrytning", -"Paste as text": "Klistra in som text", -"Preview": "F\u00f6rhandsgranska", -"Print": "Skriv ut", -"Save": "Spara", -"Could not find the specified string.": "Kunde inte hitta den specifierade st\u00e4ngen.", -"Replace": "Ers\u00e4tt", -"Next": "N\u00e4sta", -"Whole words": "Hela ord", -"Find and replace": "S\u00f6k och ers\u00e4tt", -"Replace with": "Ers\u00e4tt med", -"Find": "S\u00f6k", -"Replace all": "Ers\u00e4tt alla", -"Match case": "Matcha gemener\/versaler", -"Prev": "F\u00f6reg\u00e5ende", -"Spellcheck": "R\u00e4ttstava", -"Finish": "Avsluta", -"Ignore all": "Ignorera alla", -"Ignore": "Ignorera", -"Add to Dictionary": "L\u00e4gg till i ordlista", -"Insert row before": "Infoga rad f\u00f6re", -"Rows": "Rader", -"Height": "H\u00f6jd", -"Paste row after": "Klistra in rad efter", -"Alignment": "Justering", -"Border color": "Ramf\u00e4rg", -"Column group": "Kolumngrupp", -"Row": "Rad", -"Insert column before": "Infoga kolumn f\u00f6re", -"Split cell": "Bryt is\u00e4r celler", -"Cell padding": "Cellpaddning", -"Cell spacing": "Cellmellanrum", -"Row type": "Radtyp", -"Insert table": "Infoga tabell", -"Body": "Kropp", -"Caption": "Rubrik", -"Footer": "Fot", -"Delete row": "Radera rad", -"Paste row before": "Klista in rad f\u00f6re", -"Scope": "Omf\u00e5ng", -"Delete table": "Radera tabell", -"H Align": "H-justering", -"Top": "Toppen", -"Header cell": "Huvudcell", -"Column": "Kolumn", -"Row group": "Radgrupp", -"Cell": "Cell", -"Middle": "Mitten", -"Cell type": "Celltyp", -"Copy row": "Kopiera rad", -"Row properties": "Radegenskaper", -"Table properties": "Tabellegenskaper", -"Bottom": "Botten", -"V Align": "V-justering", -"Header": "Huvud", -"Right": "H\u00f6ger", -"Insert column after": "Infoga kolumn efter", -"Cols": "Kolumner", -"Insert row after": "Infoga rad efter", -"Width": "Bredd", -"Cell properties": "Cellegenskaper", -"Left": "V\u00e4nster", -"Cut row": "Klipp ut rad", -"Delete column": "Radera kolumn", -"Center": "Centrum", -"Merge cells": "Sammanfoga celler", -"Insert template": "Infoga mall", -"Templates": "Mallar", -"Background color": "Bakgrundsf\u00e4rg", -"Custom...": "Anpassad...", -"Custom color": "Anpassad f\u00e4rg", -"No color": "Ingen f\u00e4rg", -"Text color": "Textf\u00e4rg", -"Show blocks": "Visa block", -"Show invisible characters": "Visa onsynliga tecken", -"Words: {0}": "Ord: {0}", -"Insert": "Infoga", -"File": "Fil", -"Edit": "Redigera", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textredigerare. Tryck ALT-F9 f\u00f6r menyn. Tryck ALT-F10 f\u00f6r verktygsrader. Tryck ALT-0 f\u00f6r hj\u00e4lp.", -"Tools": "Verktyg", -"View": "Visa", -"Table": "Tabell", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ta.js b/Resources/public/vendor/tinymce/langs/ta.js deleted file mode 100644 index 09f22166..00000000 --- a/Resources/public/vendor/tinymce/langs/ta.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ta',{ -"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.", -"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)", -"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95", -"Font Family": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b95\u0bc1\u0b9f\u0bc1\u0bae\u0bcd\u0baa\u0bae\u0bcd", -"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)", -"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd", -"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd", -"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd", -"Undo": "\u0bae\u0bc1\u0ba9\u0bcd\u0b9a\u0bc6\u0baf\u0bb2\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95", -"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", -"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", -"Ok": "\u0b9a\u0bb0\u0bbf", -"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1", -"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95", -"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.", -"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd", -"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd", -"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", -"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", -"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1", -"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", -"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", -"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd", -"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd", -"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?", -"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", -"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd", -"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd", -"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)", -"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd", -"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8", -"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1", -"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Insert\/edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"General": "\u0baa\u0bca\u0ba4\u0bc1", -"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", -"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Border": "\u0b95\u0bb0\u0bc8", -"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Style": "\u0baa\u0bbe\u0ba3\u0bbf", -"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Insert image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", -"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8", -"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", -"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", -"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", -"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf", -"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:", -"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf", -"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1", -"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", -"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95", -"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4", -"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", -"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", -"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", -"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd", -"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", -"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd", -"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8", -"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Body": "\u0b89\u0b9f\u0bb2\u0bcd", -"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8", -"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"H Align": "\u0b95\u0bbf (H) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Top": "\u0bae\u0bc7\u0bb2\u0bcd", -"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Middle": "\u0ba8\u0b9f\u0bc1", -"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8", -"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Bottom": "\u0b95\u0bc0\u0bb4\u0bcd", -"V Align": "\u0b9a\u0bc6 (V) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Right": "\u0bb5\u0bb2\u0bae\u0bcd", -"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd", -"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Left": "\u0b87\u0b9f\u0bae\u0bcd", -"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd", -"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0bb5\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...", -"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8", -"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}", -"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1", -"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", -"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd", -"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", -"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ta_IN.js b/Resources/public/vendor/tinymce/langs/ta_IN.js deleted file mode 100644 index af6cbfe8..00000000 --- a/Resources/public/vendor/tinymce/langs/ta_IN.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('ta_IN',{ -"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.", -"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)", -"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95", -"Font Family": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b95\u0bc1\u0b9f\u0bc1\u0bae\u0bcd\u0baa\u0bae\u0bcd", -"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)", -"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd", -"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd", -"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd", -"Undo": "\u0bae\u0bc1\u0ba9\u0bcd\u0b9a\u0bc6\u0baf\u0bb2\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95", -"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", -"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", -"Ok": "\u0b9a\u0bb0\u0bbf", -"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1", -"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95", -"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.", -"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd", -"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd", -"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", -"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", -"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1", -"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", -"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", -"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd", -"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd", -"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?", -"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", -"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd", -"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd", -"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)", -"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd", -"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8", -"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1", -"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Insert\/edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"General": "\u0baa\u0bca\u0ba4\u0bc1", -"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", -"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Border": "\u0b95\u0bb0\u0bc8", -"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Style": "\u0baa\u0bbe\u0ba3\u0bbf", -"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Insert image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", -"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8", -"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", -"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", -"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", -"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf", -"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:", -"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf", -"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1", -"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", -"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95", -"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4", -"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", -"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", -"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", -"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd", -"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", -"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd", -"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8", -"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Body": "\u0b89\u0b9f\u0bb2\u0bcd", -"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8", -"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"H Align": "\u0b95\u0bbf (H) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1", -"Top": "\u0bae\u0bc7\u0bb2\u0bcd", -"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Middle": "\u0ba8\u0b9f\u0bc1", -"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8", -"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Bottom": "\u0bae\u0bc7\u0bb2\u0bcd", -"V Align": "\u0b9a\u0bc6 (V) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1", -"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Right": "\u0bb5\u0bb2\u0bae\u0bcd", -"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd", -"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Left": "\u0b87\u0b9f\u0bae\u0bcd", -"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd", -"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0bb5\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...", -"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8", -"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}", -"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1", -"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", -"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd", -"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", -"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/tg.js b/Resources/public/vendor/tinymce/langs/tg.js deleted file mode 100644 index defffc95..00000000 --- a/Resources/public/vendor/tinymce/langs/tg.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('tg',{ -"Cut": "\u0411\u0443\u0440\u0438\u0434\u0430\u043d", -"Heading 5": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 5", -"Header 2": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0430\u0440\u0438 \u0448\u0443\u0441\u0445\u0430\u0431\u0430\u0440\u0434\u043e\u0440\u0438 \u043a\u0430\u0440\u0434\u0430\u043d Ctrl+X\/C\/V \u0438\u0441\u0442\u0438\u0444\u043e\u0434\u0430 \u043a\u0443\u043d\u0435\u0434", -"Heading 4": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 4", -"Div": "Div", -"Heading 2": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 2", -"Paste": "\u0413\u0443\u0437\u043e\u0448\u0442\u0430\u043d", -"Close": "\u041c\u0430\u04b3\u043a\u0430\u043c \u043a\u0430\u0440\u0434\u0430\u043d", -"Font Family": "\u0428\u0440\u0438\u0444\u0442", -"Pre": "Pre", -"Align right": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u0440\u043e\u0441\u0442", -"New document": "\u04b2\u0443\u04b7\u04b7\u0430\u0442\u0438 \u043d\u0430\u0432", -"Blockquote": "\u041d\u043e\u0445\u0443\u043d\u0430\u043a", -"Numbered list": "\u0420\u0443\u0439\u0445\u0430\u0442\u0438 \u0431\u043e \u0442\u0430\u0440\u0442\u0438\u0431", -"Heading 1": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 1", -"Headings": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u04b3\u043e", -"Increase indent": "\u0410\u0431\u0437\u0430\u0441\u0442\u0440\u043e \u0432\u0430\u0441\u0435\u044a \u043a\u0430\u0440\u0434\u0430\u043d", -"Formats": "\u0424\u0430\u0440\u043c\u0430\u0442\u04b3\u043e", -"Headers": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u04b3\u043e", -"Select all": "\u0418\u043d\u0442\u0438\u0445\u043e\u0431\u0438 \u043a\u0443\u043b\u043b\u0438", -"Header 3": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 3", -"Blocks": "\u0425\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u04e3", -"Undo": "\u0411\u043e\u0437 \u0433\u0430\u0440\u0434\u043e\u043d\u0438\u0434\u0430\u043d", -"Strikethrough": "\u0410\u0437 \u043c\u043e\u0431\u0430\u0439\u043d\u0430\u0448 \u0445\u0430\u0442 \u043a\u0430\u0448\u0438\u0434\u0430\u043d", -"Bullet list": "\u0420\u0443\u0439\u0445\u0430\u0442\u0438 \u0431\u0435 \u0442\u0430\u0440\u0442\u0438\u0431", -"Header 1": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 1", -"Superscript": "\u0410\u0437 \u0445\u0430\u0442 \u0431\u043e\u043b\u043e\u0442\u0430\u0440", -"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u04b3\u043e\u0440\u043e \u0431\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d", -"Font Sizes": "\u04b2\u0430\u04b7\u043c\u0438 \u0448\u0440\u0438\u0444\u0442", -"Subscript": "\u0410\u0437 \u0445\u0430\u0442 \u043f\u043e\u0451\u043d\u0442\u0430\u0440", -"Header 6": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 6", -"Redo": "\u0411\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d", -"Paragraph": "\u0410\u0431\u0437\u0430\u0441\u0442", -"Ok": "\u041e\u043a", -"Bold": "\u0492\u0430\u0444\u0441", -"Code": "Code", -"Italic": "\u0418\u0442\u0430\u043b\u0438\u043a", -"Align center": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u043c\u043e\u0431\u0430\u0439\u043d", -"Header 5": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 5", -"Heading 6": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 6", -"Heading 3": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 3", -"Decrease indent": "\u0410\u0431\u0437\u0430\u0441\u0442\u0440\u043e \u0445\u0443\u0440\u0434 \u043a\u0430\u0440\u0434\u0430\u043d", -"Header 4": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0422\u043e \u043e\u043d \u0437\u0430\u043c\u043e\u043d\u0435, \u043a\u0438 \u0438\u043d \u0445\u043e\u043c\u0443\u0448 \u0430\u0441\u0442, \u04b3\u0430\u043c\u0447\u0443\u043d \u043c\u0430\u043d\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0443\u043d\u0435\u0434.", -"Underline": "\u0414\u0430\u0440 \u0442\u0430\u0433\u0430\u0448 \u0445\u0430\u0442 \u043a\u0430\u0448\u0438\u0434\u0430\u043d", -"Cancel": "\u0411\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d", -"Justify": "\u0410\u0437 \u04b3\u0430\u0440 \u0434\u0443 \u0442\u0430\u0440\u0430\u0444 \u0440\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d", -"Inline": "\u0414\u0430\u0440 \u044f\u043a \u0445\u0430\u0442", -"Copy": "\u041d\u0443\u0441\u0445\u0430\u0431\u043e\u0440\u0434\u043e\u043d\u0438 \u043a\u0430\u0440\u0434\u0430\u043d", -"Align left": "\u0420\u043e\u0441 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u0447\u0430\u043f", -"Visual aids": "\u041a\u0443\u043c\u043c\u0430\u043a\u0438 \u0430\u0451\u043d\u04e3", -"Lower Greek": "\u0425\u0443\u0440\u0434\u0438 \u042e\u043d\u043e\u043d\u04e3", -"Square": "\u0427\u043e\u0440\u043a\u0443\u043d\u04b7\u0430", -"Default": "\u0411\u043e \u0442\u0430\u0440\u0437\u0438 \u0445\u043e\u043c\u0443\u0448\u04e3", -"Lower Alpha": "\u0425\u0443\u0440\u0434\u0438 \u044e\u043d\u043e\u043d\u04e3", -"Circle": "\u0414\u043e\u0438\u0440\u0430", -"Disc": "\u0414\u0438\u0441\u043a", -"Upper Alpha": "\u041a\u0430\u043b\u043e\u043d\u0438 \u044e\u043d\u043e\u043d\u04e3", -"Upper Roman": "\u041a\u0430\u043b\u043e\u043d\u0438 \u0440\u043e\u043c\u0430\u043d\u04e3", -"Lower Roman": "\u0425\u0443\u0440\u0434\u0438 \u0440\u043e\u043c\u0430\u043d\u04e3", -"Name": "\u041d\u043e\u043c", -"Anchor": "\u041b\u0430\u043d\u0433\u0430\u0440", -"You have unsaved changes are you sure you want to navigate away?": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442\u04b3\u043e\u0438 \u043a\u0430\u0440\u0434\u0430\u0430\u0442\u043e\u043d\u0440\u043e \u0442\u043e \u04b3\u043e\u043b \u043d\u0438\u0433\u043e\u04b3 \u043d\u0430\u0434\u043e\u0448\u0442\u0430\u0435\u0434!\n\u041e\u0451 \u0448\u0443\u043c\u043e \u0434\u0430\u0440 \u04b3\u0430\u049b\u0438\u049b\u0430\u0442 \u043c\u0435\u0445\u043e\u04b3\u0435\u0434 \u043a\u0438 \u0431\u0430 \u0434\u0438\u0433\u0430\u0440 \u049b\u0438\u0441\u043c \u0433\u0443\u0437\u0430\u0440\u0435\u0434?", -"Restore last draft": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442\u04b3\u043e\u0438 \u043e\u0445\u0438\u0440\u0438\u043d\u0440\u043e \u0431\u0435\u043a\u043e\u0440 \u043a\u0443\u043d", -"Special character": "\u0420\u0430\u043c\u0437\u04b3\u043e\u0438 \u043c\u0430\u0445\u0441\u0443\u0441", -"Source code": "\u041a\u043e\u0434\u0438 \u0430\u0441\u043b\u0438", -"Right to left": "\u0410\u0437 \u0440\u043e\u0441\u0442 \u0431\u0430 \u0447\u0430\u043f", -"Left to right": "\u0410\u0437 \u0447\u0430\u043f \u0431\u0430 \u0440\u043e\u0441\u0442", -"Emoticons": "\u042d\u04b3\u0441\u043e\u0441\u04b3\u043e", -"Robots": "Robots", -"Document properties": "\u04b2\u043e\u043b\u0430\u0442\u0438 \u04b3\u0443\u04b7\u04b7\u0430\u0442", -"Title": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430", -"Keywords": "\u041a\u0430\u043b\u0438\u043c\u0430\u04b3\u043e\u0438 \u043c\u0443\u0442\u0430\u043d\u043e\u0441\u0438\u0431", -"Encoding": "\u0411\u043e \u0440\u0430\u043c\u0437 \u0433\u0430\u0440\u0434\u043e\u043d\u0438\u0434\u0430\u043d", -"Description": "\u041c\u0430\u044a\u043b\u0443\u043c\u043e\u0442\u0438 \u043c\u0443\u0445\u0442\u0430\u0441\u0430\u0440", -"Author": "\u041c\u0443\u0430\u043b\u043b\u0438\u0444", -"Fullscreen": "\u041a\u0430\u043b\u043e\u043d \u043a\u0430\u0440\u0434\u0430\u043d", -"Horizontal line": "\u0425\u0430\u0442\u0438 \u0443\u0444\u0443\u049b\u04e3", -"Horizontal space": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0443\u0444\u0443\u049b\u04e3", -"Insert\/edit image": "\u0412\u043e\u0440\u0438\u0434\/\u0422\u0430\u0493\u0438\u0440\u0438 \u0440\u0430\u0441\u043c", -"General": "\u041e\u0434\u0434\u0438", -"Advanced": "\u041c\u0443\u0442\u0430\u0440\u0430\u049b\u0438", -"Source": "\u041c\u0430\u043a\u043e\u043d\u0438 \u0430\u0441\u043e\u0441\u04e3", -"Border": "\u04b2\u0443\u0434\u0443\u0434", -"Constrain proportions": "\u0427\u0435\u043d\u0430\u043a\u04b3\u043e\u0438 \u043c\u0430\u04b7\u0431\u0443\u0440\u0438", -"Vertical space": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0430\u043c\u0443\u0434\u04e3", -"Image description": "\u041c\u0430\u044a\u043b\u0443\u043c\u043e\u0442\u0438 \u043c\u0443\u0445\u0442\u0430\u0441\u0430\u0440", -"Style": "\u0421\u0442\u0438\u043b", -"Dimensions": "\u0427\u0435\u043d\u0430\u043a\u04b3\u043e", -"Insert image": "\u0420\u0430\u0441\u043c \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d", -"Insert date\/time": "\u0412\u043e\u0440\u0438\u0434\u0438 \u0420\u04ef\u0437\/\u0421\u043e\u0430\u0442", -"Remove link": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0438\u0441\u0442\u0438\u043d\u043e\u0434", -"Url": "Url", -"Text to display": "\u041c\u0430\u0442\u043d \u0431\u0430\u0440\u043e\u0438 \u043c\u0430\u043d\u0437\u0443\u0440", -"Anchors": "\u041b\u0430\u043d\u0433\u0430\u0440", -"Insert link": "\u0418\u0441\u0442\u0438\u043d\u043e\u0434 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d", -"New window": "\u0422\u0438\u0440\u0435\u0437\u0430\u0438 \u043d\u0430\u0432", -"None": "\u04b2\u0435\u04b7 \u0447\u0438\u0437", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u0435, \u043a\u0438 \u0448\u0443\u043c\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0435\u0434 \u0438\u0441\u0442\u0438\u043d\u043e\u0434 \u0430\u0441\u0442. \u041f\u0440\u0435\u0444\u0438\u043a\u0441\u0438 http:\/\/: \u0438\u043b\u043e\u0432\u0430 \u043a\u0443\u043d\u0430\u043c?", -"Target": "\u041d\u0438\u0448\u043e\u043d\u0430", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u0435, \u043a\u0438 \u0448\u0443\u043c\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0435\u0434 Email \u0430\u0434\u0440\u0435\u0441 \u0430\u0441\u0442. \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0438 mailto: \u0438\u043b\u043e\u0432\u0430 \u043a\u0443\u043d\u0430\u043c", -"Insert\/edit link": "\u0412\u043e\u0440\u0438\u0434\/\u0442\u0430\u0493\u0438\u0440 \u0434\u043e\u0434\u0430\u043d\u0438 \u0438\u0441\u0442\u0438\u043d\u043e\u0434", -"Insert\/edit video": "\u0412\u043e\u0440\u0438\u0434\/\u0442\u0430\u0493\u0438\u0440\u0438 \u0432\u0438\u0434\u0435\u043e", -"Poster": "\u042d\u044a\u043b\u043e\u043d\u043d\u043e\u043c\u0430", -"Alternative source": "\u0421\u0430\u0440\u0447\u0430\u0448\u043c\u0430\u0438 \u0430\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u04e3", -"Paste your embed code below:": "embed \u043a\u043e\u0434\u0440\u043e \u0438\u043d\u04b7\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0443\u043d\u0435\u0434", -"Insert video": "\u0412\u043e\u0440\u0438\u0434\u0438 \u0432\u0438\u0434\u0435\u043e", -"Embed": "Embed", -"Nonbreaking space": "\u0411\u0435\u0444\u043e\u0441\u0438\u043b\u0430", -"Page break": "\u0421\u0430\u04b3\u0438\u0444\u0430\u0440\u043e \u0448\u0438\u043a\u0430\u0441\u0442\u0430\u043d", -"Paste as text": "\u0413\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u04b3\u0430\u043c\u0447\u0443 \u043c\u0430\u0442\u043d", -"Preview": "\u041c\u0430\u043d\u0437\u0443\u0440", -"Print": "\u0427\u043e\u043f \u043a\u0430\u0440\u0434\u0430\u043d", -"Save": "\u041d\u0438\u0433\u043e\u04b3 \u0434\u043e\u0448\u0442\u0430\u043d", -"Could not find the specified string.": "\u0425\u0430\u0442\u0438 \u0434\u0430\u0440\u0445\u043e\u0441\u0442\u0448\u0443\u0434\u0430\u0440\u043e \u0451\u0444\u0442\u0430 \u043d\u0430\u0442\u0430\u0432\u043e\u043d\u0438\u0441\u0442\u0430\u043c", -"Replace": "\u0422\u0430\u0493\u0438\u0440", -"Next": "\u041e\u044f\u043d\u0434\u0430", -"Whole words": "\u041a\u0430\u043b\u0438\u043c\u0430\u04b3\u043e\u0438 \u043f\u0443\u0440\u0440\u0430", -"Find and replace": "\u0401\u0444\u0442\u0430\u043d \u0432\u0430 \u0442\u0430\u0493\u0438\u0440 \u0434\u043e\u0434\u0430\u043d", -"Replace with": "\u0422\u0430\u0493\u0438\u0440 \u0431\u0430", -"Find": "\u0401\u0444\u0442\u0430\u043d", -"Replace all": "\u0422\u0430\u0493\u0438\u0440\u0438 \u04b3\u0430\u043c\u0430\u0430\u0448", -"Match case": "\u041c\u0443\u0432\u043e\u0444\u0438\u049b\u0430\u0442", -"Prev": "\u0413\u0443\u0437\u0430\u0448\u0442\u0430", -"Spellcheck": "\u0422\u0430\u0444\u0442\u0438\u0448\u0438 \u0433\u0440\u0430\u043c\u043c\u0430\u0442\u0438\u043a\u04e3", -"Finish": "\u0422\u0430\u043c\u043e\u043c", -"Ignore all": "\u0410\u04b3\u0430\u043c\u0438\u044f\u0442 \u043d\u0430\u0434\u043e\u0434\u0430\u043d \u0431\u0430 \u04b3\u0430\u043c\u043c\u0430\u0448", -"Ignore": "\u0410\u04b3\u0430\u043c\u0438\u044f\u0442 \u043d\u0430\u0434\u043e\u0434\u0430\u043d", -"Insert row before": "\u0425\u0430\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0435\u0448 \u0430\u0437", -"Rows": "\u0425\u0430\u0442\u04b3\u043e", -"Height": "\u0411\u0430\u043b\u0430\u043d\u0434\u0438", -"Paste row after": "\u0425\u0430\u0442 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u043f\u0430\u0441 \u0430\u0437", -"Alignment": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d", -"Column group": "\u0413\u0443\u0440\u0443\u04b3\u0438 \u0441\u0443\u0442\u0443\u043d", -"Row": "\u0425\u0430\u0442", -"Insert column before": "\u0421\u0443\u0442\u0443\u043d \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0435\u0448 \u0430\u0437", -"Split cell": "\u0421\u04ef\u0440\u043e\u0445\u0438\u04b3\u043e\u0440\u043e \u0431\u0443\u0440\u0438\u0434\u0430\u043d", -"Cell padding": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0434\u0430\u0440\u0443\u043d\u0430", -"Cell spacing": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0431\u0435\u0440\u0443\u043d\u0430", -"Row type": "\u041d\u0430\u043c\u0443\u0434\u0438 \u0445\u0430\u0442", -"Insert table": "\u0412\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b", -"Body": "\u049a\u0438\u0441\u043c\u0438 \u0430\u0441\u043b\u0438", -"Caption": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430", -"Footer": "\u049a\u0438\u0441\u043c\u0438 \u043f\u043e\u0451\u043d\u0438", -"Delete row": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0445\u0430\u0442", -"Paste row before": "\u0425\u0430\u0442 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u043f\u0435\u0448 \u0430\u0437", -"Scope": "Scope", -"Delete table": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b", -"H Align": "\u0410\u0437 \u0431\u043e\u043b\u043e \u0431\u0430 \u043f\u043e\u0451\u043d", -"Top": "\u0411\u043e\u043b\u043e", -"Header cell": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430", -"Column": "\u0421\u0443\u0442\u0443\u043d", -"Row group": "\u0413\u0443\u0440\u0443\u04b3\u0438 \u0445\u0430\u0442\u04b3\u043e", -"Cell": "\u0421\u04ef\u0440\u043e\u0445", -"Middle": "\u041c\u043e\u0431\u0430\u0439\u043d", -"Cell type": "\u041d\u0430\u043c\u0443\u0434\u0438 \u0441\u0443\u0440\u043e\u0445\u04e3", -"Copy row": "\u041d\u0443\u0441\u0445\u0430\u0431\u043e\u0440\u0434\u043e\u0440\u0438\u0438 \u0445\u0430\u0442", -"Row properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u0445\u0430\u0442", -"Table properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b", -"Bottom": "\u041f\u043e\u0451\u043d", -"V Align": "\u0410\u0437 \u0447\u0430\u043f \u0431\u0430 \u0440\u043e\u0441\u0442", -"Header": "\u049a\u0438\u0441\u043c\u0438 \u0431\u043e\u043b\u043e\u0438", -"Right": "\u0420\u043e\u0441\u0442", -"Insert column after": "\u0421\u0443\u0442\u0443\u043d \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0430\u0441 \u0430\u0437", -"Cols": "\u0421\u0443\u0442\u0443\u043d\u04b3\u043e", -"Insert row after": "\u0425\u0430\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0430\u0441 \u0430\u0437", -"Width": "\u041f\u0430\u04b3\u043d\u0438", -"Cell properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u0441\u04ef\u0440\u043e\u0445", -"Left": "\u0427\u0430\u043f", -"Cut row": "\u0411\u0443\u0440\u0438\u0434\u0430\u043d\u0438 \u0445\u0430\u0442", -"Delete column": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0441\u0443\u0442\u0443\u043d", -"Center": "\u041c\u0430\u0440\u043a\u0430\u0437", -"Merge cells": "\u0421\u04ef\u0440\u043e\u0445\u0438\u04b3\u043e\u0440\u043e \u044f\u043a\u04b7\u043e\u044f \u043a\u0430\u0440\u0434\u0430\u043d", -"Insert template": "\u0412\u043e\u0440\u0438\u0434\u0438 \u049b\u043e\u043b\u0430\u0431", -"Templates": "\u049a\u043e\u043b\u0430\u0431", -"Background color": "\u0420\u0430\u043d\u0433\u0438 \u043f\u0443\u0448\u0442\u0438 \u043c\u0430\u0442\u043d", -"Text color": "\u0420\u0430\u043d\u0433\u0438 \u043c\u0430\u0442\u043d", -"Show blocks": "\u041d\u0438\u0448\u043e\u043d \u0434\u043e\u0434\u0430\u043d\u0438 \u0433\u0443\u0440\u0443\u04b3\u04b3\u043e", -"Show invisible characters": "\u0420\u0430\u043c\u0437\u04b3\u043e\u0438 \u043c\u0430\u0445\u0441\u0443\u0441\u0440\u043e \u043d\u0438\u0448\u043e\u043d \u0434\u043e\u0434\u0430\u043d", -"Words: {0}": "\u041a\u043b\u0438\u043c\u0430\u04b3\u043e: {0}", -"Insert": "\u0412\u043e\u0440\u0438\u0434", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041c\u0435\u043d\u044e ALT-F9. \u0410\u0441\u0431\u043e\u0431\u04b3\u043e ALT-F10. \u041a\u0443\u043c\u043c\u0430\u043a ALT-0", -"Tools": "\u0410\u0441\u0431\u043e\u0431\u04b3\u043e", -"View": "\u041c\u0430\u043d\u0437\u0443\u0440 \u043a\u0430\u0440\u0434\u0430\u043d", -"Table": "\u04b6\u0430\u0434\u0432\u0430\u043b", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/th_TH.js b/Resources/public/vendor/tinymce/langs/th_TH.js deleted file mode 100644 index 845046f5..00000000 --- a/Resources/public/vendor/tinymce/langs/th_TH.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('th_TH',{ -"Cut": "\u0e15\u0e31\u0e14", -"Header 2": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e25\u0e31\u0e14 Ctrl+X\/C\/V \u0e41\u0e17\u0e19", -"Div": "Div", -"Paste": "\u0e27\u0e32\u0e07", -"Close": "\u0e1b\u0e34\u0e14", -"Font Family": "\u0e15\u0e23\u0e30\u0e01\u0e39\u0e25\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23", -"Pre": "\u0e01\u0e48\u0e2d\u0e19", -"Align right": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e02\u0e27\u0e32", -"New document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", -"Blockquote": "\u0e22\u0e01\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e31\u0e49\u0e07\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32", -"Numbered list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e40\u0e25\u0e02", -"Increase indent": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07", -"Formats": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", -"Headers": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", -"Select all": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", -"Header 3": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 3", -"Blocks": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", -"Undo": "\u0e40\u0e25\u0e34\u0e01\u0e17\u0e33", -"Strikethrough": "\u0e02\u0e35\u0e14\u0e17\u0e31\u0e1a", -"Bullet list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e22\u0e48\u0e2d\u0e22", -"Header 1": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1", -"Superscript": "\u0e15\u0e31\u0e27\u0e22\u0e01", -"Clear formatting": "\u0e25\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", -"Font Sizes": "\u0e02\u0e19\u0e32\u0e14\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23", -"Subscript": "\u0e15\u0e31\u0e27\u0e2b\u0e49\u0e2d\u0e22", -"Header 6": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 6", -"Redo": "\u0e17\u0e4d\u0e32\u0e0b\u0e49\u0e33", -"Paragraph": "\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32", -"Ok": "\u0e15\u0e01\u0e25\u0e07", -"Bold": "\u0e15\u0e31\u0e27\u0e2b\u0e19\u0e32", -"Code": "\u0e42\u0e04\u0e49\u0e14", -"Italic": "\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e35\u0e22\u0e07", -"Align center": "\u0e08\u0e31\u0e14\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07", -"Header 5": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 5", -"Decrease indent": "\u0e25\u0e14\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07", -"Header 4": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32 \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e08\u0e19\u0e01\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e1b\u0e34\u0e14\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49", -"Underline": "\u0e02\u0e35\u0e14\u0e40\u0e2a\u0e49\u0e19\u0e43\u0e15\u0e49", -"Cancel": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", -"Justify": "\u0e40\u0e15\u0e47\u0e21\u0e41\u0e19\u0e27", -"Inline": "\u0e41\u0e1a\u0e1a\u0e2d\u0e34\u0e19\u0e44\u0e25\u0e19\u0e4c", -"Copy": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01", -"Align left": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e0b\u0e49\u0e32\u0e22", -"Visual aids": "\u0e17\u0e31\u0e28\u0e19\u0e39\u0e1b\u0e01\u0e23\u0e13\u0e4c", -"Lower Greek": "\u0e01\u0e23\u0e35\u0e01\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", -"Square": "\u0e08\u0e31\u0e15\u0e38\u0e23\u0e31\u0e2a", -"Default": "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", -"Lower Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", -"Circle": "\u0e27\u0e07\u0e01\u0e25\u0e21", -"Disc": "\u0e14\u0e34\u0e2a\u0e01\u0e4c", -"Upper Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32", -"Upper Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32", -"Lower Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", -"Name": "\u0e0a\u0e37\u0e48\u0e2d", -"Anchor": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14", -"You have unsaved changes are you sure you want to navigate away?": "\u0e04\u0e38\u0e13\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?", -"Restore last draft": "\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", -"Special character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29", -"Source code": "\u0e42\u0e04\u0e49\u0e14\u0e15\u0e49\u0e19\u0e09\u0e1a\u0e31\u0e1a", -"Right to left": "\u0e02\u0e27\u0e32\u0e44\u0e1b\u0e0b\u0e49\u0e32\u0e22", -"Left to right": "\u0e0b\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e02\u0e27\u0e32", -"Emoticons": "\u0e2d\u0e34\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19", -"Robots": "\u0e2b\u0e38\u0e48\u0e19\u0e22\u0e19\u0e15\u0e4c", -"Document properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", -"Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", -"Keywords": "\u0e04\u0e33\u0e2a\u0e33\u0e04\u0e31\u0e0d", -"Encoding": "\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a", -"Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", -"Author": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e35\u0e22\u0e19", -"Fullscreen": "\u0e40\u0e15\u0e47\u0e21\u0e08\u0e2d", -"Horizontal line": "\u0e40\u0e2a\u0e49\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", -"Horizontal space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", -"Insert\/edit image": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b", -"General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", -"Advanced": "\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07", -"Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32", -"Border": "\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a", -"Constrain proportions": "\u0e08\u0e33\u0e01\u0e31\u0e14\u0e2a\u0e31\u0e14\u0e2a\u0e48\u0e27\u0e19", -"Vertical space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", -"Image description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e23\u0e39\u0e1b", -"Style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", -"Dimensions": "\u0e02\u0e19\u0e32\u0e14", -"Insert image": "\u0e41\u0e17\u0e23\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", -"Insert date\/time": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32", -"Remove link": "\u0e40\u0e2d\u0e32\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e2d\u0e2d\u0e01", -"Url": "URL", -"Text to display": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07", -"Anchors": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14", -"Insert link": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c", -"New window": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48", -"None": "\u0e44\u0e21\u0e48\u0e21\u0e35", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e34\u0e07\u0e01\u0e4c", -"Insert\/edit video": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d", -"Poster": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c", -"Alternative source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07", -"Paste your embed code below:": "\u0e27\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14\u0e1d\u0e31\u0e07\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07:", -"Insert video": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d", -"Embed": "\u0e1d\u0e31\u0e07", -"Nonbreaking space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e44\u0e21\u0e48\u0e41\u0e22\u0e01", -"Page break": "\u0e15\u0e31\u0e27\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", -"Paste as text": "\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", -"Preview": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", -"Print": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c", -"Save": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", -"Could not find the specified string.": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38", -"Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", -"Next": "\u0e16\u0e31\u0e14\u0e44\u0e1b", -"Whole words": "\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33", -"Find and replace": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", -"Replace with": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e14\u0e49\u0e27\u0e22", -"Find": "\u0e04\u0e49\u0e19\u0e2b\u0e32", -"Replace all": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", -"Match case": "\u0e15\u0e23\u0e07\u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48-\u0e40\u0e25\u0e47\u0e01", -"Prev": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", -"Spellcheck": "\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14", -"Finish": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19", -"Ignore all": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", -"Ignore": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19", -"Insert row before": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", -"Rows": "\u0e41\u0e16\u0e27", -"Height": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07", -"Paste row after": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", -"Alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27", -"Column group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", -"Row": "\u0e41\u0e16\u0e27", -"Insert column before": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e19\u0e49\u0e32", -"Split cell": "\u0e41\u0e22\u0e01\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Cell padding": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e20\u0e32\u0e22\u0e43\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Cell spacing": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Row type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27", -"Insert table": "\u0e41\u0e17\u0e23\u0e01\u0e15\u0e32\u0e23\u0e32\u0e07", -"Body": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", -"Caption": "\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", -"Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", -"Delete row": "\u0e25\u0e1a\u0e41\u0e16\u0e27", -"Paste row before": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", -"Scope": "\u0e02\u0e2d\u0e1a\u0e40\u0e02\u0e15", -"Delete table": "\u0e25\u0e1a\u0e15\u0e32\u0e23\u0e32\u0e07", -"Header cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", -"Column": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", -"Cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", -"Cell type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Copy row": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e41\u0e16\u0e27", -"Row properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27", -"Table properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07", -"Row group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e41\u0e16\u0e27", -"Right": "\u0e02\u0e27\u0e32", -"Insert column after": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07", -"Cols": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", -"Insert row after": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", -"Width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07", -"Cell properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Left": "\u0e0b\u0e49\u0e32\u0e22", -"Cut row": "\u0e15\u0e31\u0e14\u0e41\u0e16\u0e27", -"Delete column": "\u0e25\u0e1a\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", -"Center": "\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07", -"Merge cells": "\u0e1c\u0e2a\u0e32\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Insert template": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", -"Templates": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", -"Background color": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07", -"Text color": "\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", -"Show blocks": "\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01", -"Show invisible characters": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19", -"Words: {0}": "\u0e04\u0e33: {0}", -"Insert": "\u0e41\u0e17\u0e23\u0e01", -"File": "\u0e44\u0e1f\u0e25\u0e4c", -"Edit": "\u0e41\u0e01\u0e49\u0e44\u0e02", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-F9 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e21\u0e19\u0e39 \u0e01\u0e14 ALT-F10 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", -"Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", -"View": "\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07", -"Table": "\u0e15\u0e32\u0e23\u0e32\u0e07", -"Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/tr_TR.js b/Resources/public/vendor/tinymce/langs/tr_TR.js deleted file mode 100644 index d6ec992e..00000000 --- a/Resources/public/vendor/tinymce/langs/tr_TR.js +++ /dev/null @@ -1,192 +0,0 @@ -tinymce.addI18n('tr_TR',{ -"Cut": "Kes", -"Heading 5": "Ba\u015fl\u0131k 5", -"Header 2": "Ba\u015fl\u0131k 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.", -"Heading 4": "Ba\u015fl\u0131k 4", -"Div": "Div", -"Heading 2": "Ba\u015fl\u0131k 2", -"Paste": "Yap\u0131\u015ft\u0131r", -"Close": "Kapat", -"Font Family": "Yaz\u0131tipi Ailesi", -"Pre": "\u00d6n", -"Align right": "Sa\u011fa hizala", -"New document": "Yeni dok\u00fcman", -"Blockquote": "Al\u0131nt\u0131", -"Numbered list": "S\u0131ral\u0131 liste", -"Heading 1": "Ba\u015fl\u0131k 1", -"Headings": "Ba\u015fl\u0131klar", -"Increase indent": "Girintiyi art\u0131r", -"Formats": "Bi\u00e7imler", -"Headers": "Ba\u015fl\u0131klar", -"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7", -"Header 3": "Ba\u015fl\u0131k 3", -"Blocks": "Bloklar", -"Undo": "Geri Al", -"Strikethrough": "\u00dcst\u00fc \u00e7izili", -"Bullet list": "S\u0131ras\u0131z liste", -"Header 1": "Ba\u015fl\u0131k 1", -"Superscript": "\u00dcst simge", -"Clear formatting": "Bi\u00e7imi temizle", -"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc", -"Subscript": "Alt simge", -"Header 6": "Ba\u015fl\u0131k 6", -"Redo": "Yinele", -"Paragraph": "Paragraf", -"Ok": "Tamam", -"Bold": "Kal\u0131n", -"Code": "Kod", -"Italic": "\u0130talik", -"Align center": "Ortala", -"Header 5": "Ba\u015fl\u0131k 5", -"Heading 6": "Ba\u015fl\u0131k 6", -"Heading 3": "Ba\u015fl\u0131k 3", -"Decrease indent": "Girintiyi azalt", -"Header 4": "Ba\u015fl\u0131k 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.", -"Underline": "Alt\u0131 \u00e7izili", -"Cancel": "\u0130ptal", -"Justify": "\u0130ki yana yasla", -"Inline": "Sat\u0131r i\u00e7i", -"Copy": "Kopyala", -"Align left": "Sola hizala", -"Visual aids": "G\u00f6rsel ara\u00e7lar", -"Lower Greek": "K\u00fc\u00e7\u00fck Yunan alfabesi", -"Square": "Kare", -"Default": "Varsay\u0131lan", -"Lower Alpha": "K\u00fc\u00e7\u00fck ABC", -"Circle": "Daire", -"Disc": "Disk", -"Upper Alpha": "B\u00fcy\u00fck ABC", -"Upper Roman": "B\u00fcy\u00fck Roman alfabesi", -"Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi", -"Name": "\u0130sim", -"Anchor": "\u00c7apa", -"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?", -"Restore last draft": "Son tasla\u011f\u0131 kurtar", -"Special character": "\u00d6zel karakter", -"Source code": "Kaynak kodu", -"Right to left": "Sa\u011fdan sola", -"Left to right": "Soldan sa\u011fa", -"Emoticons": "G\u00fcl\u00fcc\u00fckler", -"Robots": "Robotlar", -"Document properties": "Dok\u00fcman \u00f6zellikleri", -"Title": "Ba\u015fl\u0131k", -"Keywords": "Anahtar kelimeler", -"Encoding": "Kodlama", -"Description": "A\u00e7\u0131klama", -"Author": "Yazar", -"Fullscreen": "Tam ekran", -"Horizontal line": "Yatay \u00e7izgi", -"Horizontal space": "Yatay bo\u015fluk", -"Insert\/edit image": "Resim ekle\/d\u00fczenle", -"General": "Genel", -"Advanced": "Geli\u015fmi\u015f", -"Source": "Kaynak", -"Border": "\u00c7er\u00e7eve", -"Constrain proportions": "En - Boy oran\u0131n\u0131 koru", -"Vertical space": "Dikey bo\u015fluk", -"Image description": "Resim a\u00e7\u0131klamas\u0131", -"Style": "Stil", -"Dimensions": "Boyutlar", -"Insert image": "Resim ekle", -"Insert date\/time": "Tarih \/ Zaman ekle", -"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r", -"Url": "Url", -"Text to display": "G\u00f6r\u00fcnen yaz\u0131", -"Anchors": "\u00c7apalar", -"Insert link": "Ba\u011flant\u0131 ekle", -"New window": "Yeni pencere", -"None": "Hi\u00e7biri", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?", -"Target": "Hedef", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?", -"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle", -"Insert\/edit video": "Video ekle\/d\u00fczenle", -"Poster": "Poster", -"Alternative source": "Alternatif kaynak", -"Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:", -"Insert video": "Video ekle", -"Embed": "G\u00f6mme", -"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk", -"Page break": "Sayfa sonu", -"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r", -"Preview": "\u00d6nizleme", -"Print": "Yazd\u0131r", -"Save": "Kaydet", -"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.", -"Replace": "De\u011fi\u015ftir", -"Next": "Sonraki", -"Whole words": "Tam s\u00f6zc\u00fckler", -"Find and replace": "Bul ve de\u011fi\u015ftir", -"Replace with": "Bununla de\u011fi\u015ftir", -"Find": "Bul", -"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir", -"Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131", -"Prev": "\u00d6nceki", -"Spellcheck": "Yaz\u0131m denetimi", -"Finish": "Bitir", -"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay", -"Ignore": "Yoksay", -"Add to Dictionary": "S\u00f6zl\u00fc\u011fe ekle", -"Insert row before": "\u00d6ncesine yeni sat\u0131r ekle", -"Rows": "Sat\u0131rlar", -"Height": "Y\u00fckseklik", -"Paste row after": "Sonras\u0131na sat\u0131r yap\u0131\u015ft\u0131r", -"Alignment": "Hizalama", -"Column group": "S\u00fctun grubu", -"Row": "Sat\u0131r", -"Insert column before": "\u00d6ncesine yeni s\u00fctun ekle", -"Split cell": "H\u00fccreleri ay\u0131r", -"Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu", -"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131", -"Row type": "Sat\u0131r tipi", -"Insert table": "Tablo ekle", -"Body": "G\u00f6vde", -"Caption": "Ba\u015fl\u0131k", -"Footer": "Alt", -"Delete row": "Sat\u0131r\u0131 sil", -"Paste row before": "\u00d6ncesine sat\u0131r yap\u0131\u015ft\u0131r", -"Scope": "Kapsam", -"Delete table": "Tabloyu sil", -"H Align": "Yatay Hizalama", -"Top": "\u00dcst", -"Header cell": "Ba\u015fl\u0131k h\u00fccresi", -"Column": "S\u00fctun", -"Row group": "Sat\u0131r grubu", -"Cell": "H\u00fccre", -"Middle": "Orta", -"Cell type": "H\u00fccre tipi", -"Copy row": "Sat\u0131r\u0131 kopyala", -"Row properties": "Sat\u0131r \u00f6zellikleri", -"Table properties": "Tablo \u00f6zellikleri", -"Bottom": "Alt", -"V Align": "Dikey Hizalama", -"Header": "Ba\u015fl\u0131k", -"Right": "Sa\u011f", -"Insert column after": "Sonras\u0131na yeni s\u00fctun ekle", -"Cols": "S\u00fctunlar", -"Insert row after": "Sonras\u0131na yeni sat\u0131r ekle", -"Width": "Geni\u015flik", -"Cell properties": "H\u00fccre \u00f6zellikleri", -"Left": "Sol", -"Cut row": "Sat\u0131r\u0131 kes", -"Delete column": "S\u00fctunu sil", -"Center": "Orta", -"Merge cells": "H\u00fccreleri birle\u015ftir", -"Insert template": "\u015eablon ekle", -"Templates": "\u015eablonlar", -"Background color": "Arkaplan rengi", -"Text color": "Yaz\u0131 rengi", -"Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle", -"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster", -"Words: {0}": "Kelime: {0}", -"Insert": "Ekle", -"File": "Dosya", -"Edit": "D\u00fczenle", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n.", -"Tools": "Ara\u00e7lar", -"View": "G\u00f6r\u00fcnt\u00fcle", -"Table": "Tablo", -"Format": "Bi\u00e7im" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/tt.js b/Resources/public/vendor/tinymce/langs/tt.js deleted file mode 100644 index 04081d7a..00000000 --- a/Resources/public/vendor/tinymce/langs/tt.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('tt',{ -"Cut": "\u041a\u0438\u0441\u0435\u043f \u0430\u043b\u0443", -"Heading 5": "\u0411\u0430\u0448\u043b\u0430\u043c 5", -"Header 2": "\u0411\u0430\u0448\u043b\u0430\u043c 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u044b\u0433\u044b\u0437 \u0430\u043b\u043c\u0430\u0448\u0443 \u0431\u0443\u0444\u0435\u0440\u044b\u043d\u0430 \u043a\u0435\u0440\u04af \u043c\u04e9\u043c\u043a\u0438\u043d\u043b\u0435\u0433\u0435 \u0431\u0435\u043b\u04d9\u043d \u0442\u04d9\u044d\u043c\u0438\u043d \u0438\u0442\u0435\u043b\u043c\u04d9\u0433\u04d9\u043d. \u0410\u043b\u043c\u0430\u0448\u043a\u0430 Ctrl+X\/C\/V \u043a\u0443\u043b\u043b\u0430\u043d\u044b\u0433\u044b\u0437.", -"Heading 4": "\u0411\u0430\u0448\u043b\u0430\u043c 4", -"Div": "Div", -"Heading 2": "\u0411\u0430\u0448\u043b\u0430\u043c 2", -"Paste": "\u04e8\u0441\u0442\u04d9\u04af", -"Close": "\u042f\u0431\u044b\u0440\u0433\u0430", -"Font Family": "\u0428\u0440\u0438\u0444\u0442 \u0442\u04e9\u0440\u0435", -"Pre": "\u0410\u043b\u0434\u0430\u043d \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u043d\u0433\u0430\u043d \u0442\u0435\u043a\u0441\u0442", -"Align right": "\u0423\u04a3 \u044f\u043a \u043a\u044b\u0440\u044b\u0439\u0434\u0430\u043d \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"New document": "\u042f\u04a3\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430", -"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044f", -"Heading 1": "\u0411\u0430\u0448\u043b\u0430\u043c 1", -"Headings": "\u0411\u0430\u0448\u043b\u0430\u043c\u043b\u0430\u0440", -"Increase indent": "\u041e\u0442\u0441\u0442\u0443\u043f\u043d\u044b \u0430\u0440\u0442\u0442\u044b\u0440\u0443", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0440", -"Headers": "\u0411\u0430\u0448\u043b\u0430\u043c\u043b\u0430\u0440", -"Select all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0441\u0430\u0439\u043b\u0430\u0443", -"Header 3": "\u0411\u0430\u0448\u043b\u0430\u043c 3", -"Blocks": "\u0411\u043b\u043e\u043a\u043b\u0430\u0440", -"Undo": "\u041a\u0430\u0439\u0442\u0430\u0440\u0443", -"Strikethrough": "\u0421\u044b\u0437\u044b\u043b\u0433\u0430\u043d", -"Bullet list": "\u041c\u0430\u0440\u043a\u0435\u0440\u043b\u0430\u0440", -"Header 1": "\u0411\u0430\u0448\u043b\u0430\u043c 1", -"Superscript": "\u04e8\u0441\u043a\u0435 \u0438\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u043d\u044b \u0447\u0438\u0441\u0442\u0430\u0440\u0442\u0443", -"Font Sizes": "\u0428\u0440\u0438\u0444\u0442 \u0437\u0443\u0440\u043b\u044b\u043a\u043b\u0430\u0440\u044b", -"Subscript": "\u0410\u0441\u043a\u044b \u0438\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0411\u0430\u0448\u043b\u0430\u043c 6", -"Redo": "\u041a\u0430\u0431\u0430\u0442\u043b\u0430\u0443", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "\u0422\u04d9\u043c\u0430\u043c", -"Bold": "\u041a\u0430\u043b\u044b\u043d", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", -"Align center": "\u04ae\u0437\u04d9\u043a\u043a\u04d9 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Header 5": "\u0411\u0430\u0448\u043b\u0430\u043c 5", -"Heading 6": "\u0411\u0430\u0448\u043b\u0430\u043c 6", -"Heading 3": "\u0411\u0430\u0448\u043b\u0430\u043c 3", -"Decrease indent": "\u041e\u0442\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u0435\u0447\u0435\u0440\u04d9\u0439\u0442\u04af", -"Header 4": "\u0411\u0430\u0448\u043b\u0430\u043c 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u04e8\u0441\u0442\u04d9\u04af \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u0441\u044b\u0437 \u0442\u0435\u043a\u0441\u0442 \u0440\u0435\u0436\u0438\u043c\u044b\u043d\u0434\u0430. \u04d8\u043b\u0435\u0433\u0435 \u04af\u0437\u043b\u0435\u043a\u043d\u0435 \u0441\u04af\u043d\u0434\u0435\u0440\u0433\u04d9\u043d\u0447\u0435 \u0442\u0435\u043a\u0441\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u0441\u044b\u0437 \u04e9\u0441\u0442\u04d9\u043b\u0435\u0440.", -"Underline": "\u0410\u0441\u0442\u044b\u043d\u0430 \u0441\u044b\u0437\u044b\u043b\u0433\u0430\u043d", -"Cancel": "\u0411\u0430\u0448 \u0442\u0430\u0440\u0442\u0443", -"Justify": "\u041a\u0438\u04a3\u043b\u0435\u043a\u043a\u04d9 \u043a\u0430\u0440\u0430\u043f \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Inline": "\u042e\u043b \u0445\u04d9\u0440\u0435\u0444\u043b\u04d9\u0440\u0435", -"Copy": "\u041a\u04af\u0447\u0435\u0440\u043c\u04d9\u043b\u04d9\u04af", -"Align left": "\u0421\u0443\u043b \u044f\u043a \u043a\u044b\u0440\u044b\u0439\u0434\u0430\u043d \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Visual aids": "\u041a\u04af\u0440\u0441\u04d9\u0442\u043c\u04d9 \u04d9\u0441\u0431\u0430\u043f\u043b\u0430\u0440", -"Lower Greek": "\u0413\u0440\u0435\u043a \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435", -"Square": "\u0428\u0430\u043a\u043c\u0430\u043a", -"Default": "\u04d8\u04af\u0432\u04d9\u043b\u0433\u0435 \u043a\u04e9\u0439\u043b\u04d9\u04af\u043b\u04d9\u0440", -"Lower Alpha": "\u0410\u043b\u044c\u0444\u0430 \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435", -"Circle": "\u0422\u04af\u0433\u0259\u0440\u0259\u043a", -"Disc": "\u0414\u0438\u0441\u043a", -"Upper Alpha": "\u0410\u043b\u044c\u0444\u0430 \u0431\u0430\u0448 \u0445\u04d9\u0440\u0435\u0444\u0435", -"Upper Roman": "\u0420\u0438\u043c \u0431\u0430\u0448 \u0445\u04d9\u0440\u0435\u0444\u0435", -"Lower Roman": "\u0420\u0438\u043c \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435", -"Name": "\u0418\u0441\u0435\u043c", -"Anchor": "\u042f\u043a\u043e\u0440\u044c", -"You have unsaved changes are you sure you want to navigate away?": "\u0421\u0430\u043a\u043b\u0430\u043d\u043c\u0430\u0433\u0430\u043d \u04af\u0437\u0433\u04d9\u0440\u0435\u0448\u043b\u04d9\u0440 \u0431\u0430\u0440. \u0421\u0435\u0437 \u0447\u044b\u043d\u043d\u0430\u043d \u0434\u0430 \u0447\u044b\u0433\u0430\u0440\u0433\u0430 \u0442\u0435\u043b\u0438\u0441\u0435\u0437\u043c\u0435?", -"Restore last draft": "\u0421\u043e\u04a3\u0433\u044b \u043a\u0430\u0440\u0430\u043b\u0430\u043c\u0430\u043d\u044b \u043a\u0430\u0439\u0442\u0430\u0440\u0443", -"Special character": "\u041c\u0430\u0445\u0441\u0443\u0441 \u0441\u0438\u043c\u0432\u043e\u043b", -"Source code": "\u0427\u044b\u0433\u0430\u043d\u0430\u043a \u043a\u043e\u0434", -"Color": "\u0422\u04e9\u0441", -"Right to left": "\u0423\u04a3\u043d\u0430\u043d \u0441\u0443\u043b\u0433\u0430 \u044f\u0437\u044b\u043b\u044b\u0448", -"Left to right": "\u0421\u0443\u043b\u0434\u0430\u043d \u0443\u04a3\u0433\u0430 \u044f\u0437\u044b\u043b\u044b\u0448", -"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u043b\u0430\u0440", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u043b\u0430\u0440", -"Document properties": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435", -"Title": "\u0418\u0441\u0435\u043c", -"Keywords": "\u0422\u04e9\u043f \u0441\u04af\u0437\u043b\u04d9\u0440", -"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", -"Description": "\u0422\u0430\u0441\u0432\u0438\u0440\u043b\u0430\u043c\u0430", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u0422\u0443\u043b\u044b \u044d\u043a\u0440\u0430\u043d\u0434\u0430", -"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c \u0441\u044b\u0437\u044b\u043a", -"Horizontal space": "\u042f\u0442\u043c\u0430 \u0430\u0440\u0430", -"Insert\/edit image": "\u0420\u04d9\u0441\u0435\u043c \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af", -"General": "\u0413\u043e\u043c\u0443\u043c\u0438", -"Advanced": "\u041a\u0438\u04a3\u04d9\u0439\u0442\u0435\u043b\u0433\u04d9\u043d \u043a\u04e9\u0439\u043b\u04d9\u04af\u043b\u04d9\u0440", -"Source": "\u0427\u044b\u0433\u0430\u043d\u0430\u043a", -"Border": "\u0427\u0438\u043a", -"Constrain proportions": "\u0427\u0438\u043a\u043b\u04d9\u043c\u04d9\u043b\u04d9\u0440 \u043f\u0440\u043e\u043f\u0440\u043e\u0440\u0446\u0438\u044f\u043b\u04d9\u0440\u0435", -"Vertical space": "\u0410\u0441\u043c\u0430 \u0430\u0440\u0430", -"Image description": "\u0422\u0430\u0441\u0432\u0438\u0440\u043b\u0430\u043c\u0430", -"Style": "\u0421\u0442\u0438\u043b\u044c", -"Dimensions": "\u04ae\u043b\u0447\u04d9\u043d\u0435\u0448\u043b\u04d9\u0440", -"Insert image": "\u0420\u04d9\u0441\u0435\u043c \u04e9\u0441\u0442\u04d9\u04af", -"Insert date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0430\u043a\u044b\u0442 \u04e9\u0441\u0442\u04d9\u04af", -"Remove link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af", -"Url": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430", -"Text to display": "\u041a\u04af\u0440\u0441\u04d9\u0442\u0435\u043b\u0433\u04d9\u043d \u0442\u0435\u043a\u0441\u0442", -"Anchors": "\u042f\u043a\u043e\u0440\u044c\u043b\u04d9\u0440", -"Insert link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430 \u04e9\u0441\u0442\u04d9\u04af", -"New window": "\u042f\u04a3\u0430 \u0442\u04d9\u0440\u04d9\u0437\u04d9", -"None": "\u04ba\u0438\u0447\u0431\u0435\u0440", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u04e8\u0441\u0442\u04d9\u043b\u0433\u04d9\u043d URL \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d \u043f\u043e\u0447\u0442\u0430 \u0430\u0434\u0440\u0435\u0441\u044b \u0431\u0443\u043b\u0441\u0430 \u043a\u0438\u0440\u04d9\u043a. \u0417\u0430\u0440\u0443\u0440\u0438 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u04e9\u0441\u0442\u04d9\u043b\u0441\u0435\u043d\u043c\u0435?", -"Target": "\u041c\u0430\u043a\u0441\u0430\u0442", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u04e8\u0441\u0442\u04d9\u043b\u0433\u04d9\u043d URL \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d \u043f\u043e\u0447\u0442\u0430 \u0430\u0434\u0440\u0435\u0441\u044b \u0431\u0443\u043b\u0441\u0430 \u043a\u0438\u0440\u04d9\u043a. \u0417\u0430\u0440\u0443\u0440\u0438 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u04e9\u0441\u0442\u04d9\u043b\u0441\u0435\u043d\u043c\u0435?", -"Insert\/edit link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430 \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af", -"Insert\/edit video": "\u0412\u0438\u0434\u0435\u043e \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af", -"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432 \u0447\u044b\u0433\u0430\u043d\u0430\u043a", -"Paste your embed code below:": "\u042d\u0447\u0435\u043d\u04d9 \u0441\u0430\u043b\u044b\u043d\u0433\u0430\u043d \u043a\u043e\u0434\u043d\u044b \u0442\u04af\u0431\u04d9\u043d\u0440\u04d9\u043a \u04e9\u0441\u0442\u04d9\u0433\u0435\u0437:", -"Insert video": "\u0412\u0438\u0434\u0435\u043e \u04e9\u0441\u0442\u04d9\u04af", -"Embed": "\u042d\u0447\u0435\u043d\u04d9 \u0441\u0430\u043b\u0443", -"Nonbreaking space": "\u04e8\u0437\u0435\u043b\u043c\u04d9\u0441 \u0431\u0443\u0448\u043b\u044b\u043a", -"Page break": "\u0411\u0438\u0442 \u0431\u04af\u043b\u0433\u0435\u0447\u0435", -"Paste as text": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u0441\u044b\u0437 \u0442\u0435\u043a\u0441\u0442 \u04e9\u0441\u0442\u04d9\u04af", -"Preview": "\u041a\u0430\u0440\u0430\u043f \u0430\u043b\u0443", -"Print": "\u0411\u0430\u0441\u0442\u044b\u0440\u0443", -"Save": "\u0421\u0430\u043a\u043b\u0430\u0443", -"Could not find the specified string.": "\u042d\u0437\u043b\u04d9\u043d\u0433\u04d9\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", -"Replace": "\u0410\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443", -"Next": "\u041a\u0438\u043b\u04d9\u0441\u0435", -"Whole words": "\u0421\u04af\u0437\u043b\u04d9\u0440\u043d\u0435 \u0442\u0443\u043b\u044b\u0441\u044b\u043d\u0447\u0430 \u0433\u044b\u043d\u0430 \u044d\u0437\u043b\u04d9\u04af", -"Find and replace": "\u042d\u0437\u043b\u04d9\u043f \u0442\u0430\u0431\u0443 \u04bb\u04d9\u043c \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443", -"Replace with": "\u041d\u04d9\u0440\u0441\u04d9\u0433\u04d9 \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443", -"Find": "\u042d\u0437\u043b\u04d9\u04af", -"Replace all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0434\u0430 \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443", -"Match case": "\u0411\u0430\u0448 \u04bb\u04d9\u043c \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u043b\u04d9\u0440\u0435\u043d \u0438\u0441\u04d9\u043f\u043a\u04d9 \u0430\u043b\u0443", -"Prev": "\u0410\u043b\u0434\u0430\u0433\u044b", -"Spellcheck": "\u0414\u04e9\u0440\u0435\u0441 \u044f\u0437\u044b\u043b\u044b\u0448", -"Finish": "\u0422\u04d9\u043c\u0430\u043c", -"Ignore all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0434\u0430 \u043a\u0430\u043b\u0434\u044b\u0440\u0443", -"Ignore": "\u0418\u0433\u044a\u0442\u0438\u0431\u0430\u0440\u0441\u044b\u0437 \u043a\u0430\u043b\u0434\u044b\u0440\u0443", -"Add to Dictionary": "\u0421\u04af\u0437\u043b\u0435\u043a\u043a\u04d9 \u04e9\u0441\u0442\u04d9\u04af", -"Insert row before": "\u04e8\u0441\u0442\u04d9\u043d \u044e\u043b\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af", -"Rows": "\u042e\u043b\u043b\u0430\u0440", -"Height": "\u0411\u0438\u0435\u043a\u043b\u0435\u043a", -"Paste row after": "\u042e\u043b\u043d\u044b \u0430\u0441\u0442\u0430\u043d \u04e9\u0441\u0442\u04d9\u04af", -"Alignment": "\u0422\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Border color": "\u0427\u0438\u043a \u0442\u04e9\u0441\u0435", -"Column group": "\u0411\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u0433\u0440\u0443\u043f\u043f\u0430\u0441\u044b", -"Row": "\u042e\u043b", -"Insert column before": "\u0421\u0443\u043b\u0434\u0430\u043d \u0431\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af", -"Split cell": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043d\u0435 \u0431\u04af\u043b\u04af", -"Cell padding": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043d\u0435 \u0442\u0443\u0442\u044b\u0440\u0443", -"Cell spacing": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043b\u04d9\u0440 \u0430\u0440\u0430\u0441\u044b", -"Row type": "\u042e\u043b \u0442\u04e9\u0440\u0435", -"Insert table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u04e9\u0441\u0442\u04d9\u04af", -"Body": "\u0411\u04d9\u0434\u04d9\u043d", -"Caption": "\u0418\u0441\u0435\u043c", -"Footer": "\u0410\u0441\u043a\u044b \u04e9\u043b\u0435\u0448", -"Delete row": "\u042e\u043b\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af", -"Paste row before": "\u042e\u043b\u043d\u044b \u04e9\u0441\u0442\u04d9\u043d \u04e9\u0441\u0442\u04d9\u04af", -"Scope": "\u04e8\u043b\u043a\u04d9", -"Delete table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af", -"H Align": "\u042f\u0442\u043c\u0430 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Top": "\u04e8\u0441\u043a\u04d9", -"Header cell": "\u0411\u0430\u0448 \u043a\u04af\u0437\u04d9\u043d\u04d9\u043a", -"Column": "\u0411\u0430\u0433\u0430\u043d\u0430", -"Row group": "\u042e\u043b\u043b\u0430\u0440 \u0433\u0440\u0443\u043f\u043f\u0430\u0441\u044b", -"Cell": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a", -"Middle": "\u0423\u0440\u0442\u0430\u0433\u0430", -"Cell type": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a \u0442\u04e9\u0440\u0435", -"Copy row": "\u042e\u043b\u043d\u044b \u043a\u04af\u0447\u0435\u0440\u043c\u04d9\u043b\u04d9\u04af", -"Row properties": "\u042e\u043b \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435", -"Table properties": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435", -"Bottom": "\u0410\u0441\u043a\u0430", -"V Align": "\u0410\u0441\u043c\u0430 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af", -"Header": "\u04e8\u0441\u043a\u0435 \u04e9\u043b\u0435\u0448", -"Right": "\u0423\u04a3", -"Insert column after": "\u0423\u04a3\u043d\u0430\u043d \u0431\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af", -"Cols": "\u0411\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440", -"Insert row after": "\u0410\u0441\u0442\u0430\u043d \u044e\u043b\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af", -"Width": "\u041a\u0438\u04a3\u043b\u0435\u043a", -"Cell properties": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435", -"Left": "\u0421\u0443\u043b", -"Cut row": "\u042e\u043b\u043d\u044b \u043a\u0438\u0441\u0435\u043f \u0430\u043b\u0443", -"Delete column": "\u0411\u0430\u0433\u0430\u043d\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af", -"Center": "\u04ae\u0437\u04d9\u043a", -"Merge cells": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043b\u04d9\u0440\u043d\u0435 \u0431\u0435\u0440\u043b\u04d9\u0448\u0442\u0435\u0440\u04af", -"Insert template": "\u0428\u0430\u0431\u043b\u043e\u043d \u04e9\u0441\u0442\u04d9\u04af", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u043d\u0430\u0440", -"Background color": "\u0424\u043e\u043d \u0442\u04e9\u0441\u0435", -"Custom...": "\u04ae\u0437\u0435\u043d\u0447\u04d9\u043b\u0435\u043a\u043b\u0435...", -"Custom color": "\u04ae\u0437\u0435\u043d\u0447\u04d9\u043b\u0435\u043a\u043b\u0435 \u0442\u04e9\u0441", -"No color": "\u0422\u04e9\u0441\u0441\u0435\u0437", -"Text color": "\u0422\u0435\u043a\u0441\u0442 \u0442\u04e9\u0441\u0435", -"Show blocks": "\u0411\u043b\u043e\u043a\u043b\u0430\u0440\u043d\u044b \u043a\u04af\u0440\u0441\u04d9\u0442\u04af", -"Show invisible characters": "\u042f\u0448\u0435\u0440\u0435\u043d \u0441\u0438\u043c\u0432\u043e\u043b\u043b\u0430\u0440\u043d\u044b \u043a\u04af\u0440\u0441\u04d9\u0442\u04af", -"Words: {0}": "\u0421\u04af\u0437\u043b\u04d9\u0440: {0}", -"Insert": "\u04e8\u0441\u0442\u04d9\u04af", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0422\u04e9\u043f", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u043b\u044b \u0442\u0435\u043a\u0441\u0442 \u04e9\u043b\u043a\u04d9\u0441\u0435. \u041c\u0435\u043d\u044e\u0433\u0430 \u043a\u0435\u0440\u0435\u0440 \u04e9\u0447\u0435\u043d ALT-F9 \u0431\u0430\u0441\u044b\u0433\u044b\u0437. \u041a\u043e\u0440\u0430\u043b\u043b\u0430\u0440 \u043f\u0430\u043d\u0435\u043b\u0435\u043d\u04d9 \u043a\u04af\u0447\u0435\u0440 \u04e9\u0447\u0435\u043d ALT-F10 \u0431\u0430\u0441\u044b\u0433\u044b\u0437. \u042f\u0440\u0434\u04d9\u043c \u04e9\u0447\u0435\u043d ALT-0 \u0431\u0430\u0441\u044b\u0433\u044b\u0437.", -"Tools": "\u041a\u043e\u0440\u0430\u043b\u043b\u0430\u0440", -"View": "\u041a\u04af\u0440\u0435\u043d\u0435\u0448", -"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/ug.js b/Resources/public/vendor/tinymce/langs/ug.js deleted file mode 100644 index 0247821c..00000000 --- a/Resources/public/vendor/tinymce/langs/ug.js +++ /dev/null @@ -1,189 +0,0 @@ -tinymce.addI18n('ug',{ -"Cut": "\u0643\u06d0\u0633\u0649\u0634", -"Header 2": "\u062a\u06d0\u0645\u0627 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0633\u0649\u0632\u0646\u0649\u06ad \u062a\u0648\u0631 \u0643\u06c6\u0631\u06af\u06c8\u0686\u0649\u06ad\u0649\u0632 \u0642\u0649\u064a\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u0627\u062e\u062a\u0649\u0633\u0649 \u0632\u0649\u064a\u0627\u0631\u06d5\u062a \u0642\u0649\u0644\u0649\u0634\u0646\u0649 \u0642\u0648\u0644\u0644\u0649\u0645\u0627\u064a\u062f\u06c7. Ctrl+X\/C\/V \u062a\u06d0\u0632\u0644\u06d5\u062a\u0645\u06d5 \u0643\u0648\u0646\u06c7\u067e\u0643\u0649\u0633\u0649 \u0626\u0627\u0631\u0642\u0649\u0644\u0649\u0642 \u0643\u06d0\u0633\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u0645\u06d5\u0634\u063a\u06c7\u0644\u0627\u062a\u0649 \u0642\u0649\u0644\u0649\u06ad.", -"Div": "Div", -"Paste": "\u0686\u0627\u067e\u0644\u0627\u0634", -"Close": "\u062a\u0627\u0642\u0627\u0634", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "\u0626\u0648\u06ad\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634", -"New document": "\u064a\u06d0\u06ad\u0649 \u06be\u06c6\u062c\u062c\u06d5\u062a \u0642\u06c7\u0631\u06c7\u0634", -"Blockquote": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634", -"Numbered list": "\u0633\u0627\u0646\u0644\u0649\u0642 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643", -"Increase indent": "\u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0633\u06c8\u0631\u06c8\u0634", -"Formats": "\u0641\u0648\u0631\u0645\u0627\u062a", -"Headers": "Headers", -"Select all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u062a\u0627\u0644\u0644\u0627\u0634", -"Header 3": "\u062a\u06d0\u0645\u0627 3", -"Blocks": "Blocks", -"Undo": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u064a\u06d0\u0646\u0649\u0634", -"Strikethrough": "\u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634 \u0633\u0649\u0632\u0649\u0642\u0649", -"Bullet list": "\u0628\u06d5\u0644\u06af\u06d5 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643", -"Header 1": "\u062a\u06d0\u0645\u0627 1", -"Superscript": "\u0626\u06c8\u0633\u062a\u06c8\u0646\u0643\u0649 \u0628\u06d5\u0644\u06af\u06d5", -"Clear formatting": "\u0641\u0648\u0631\u0645\u0627\u062a\u0646\u0649 \u062a\u0627\u0632\u0644\u0627\u0634", -"Font Sizes": "Font Sizes", -"Subscript": "\u0626\u0627\u0633\u062a\u0649\u0646\u0642\u0649 \u0628\u06d5\u0644\u06af\u06d5", -"Header 6": "\u062a\u06d0\u0645\u0627 6", -"Redo": "\u0642\u0627\u064a\u062a\u0627 \u0642\u0649\u0644\u0649\u0634", -"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0649\u0631\u0627 \u0641", -"Ok": "\u062c\u06d5\u0632\u0649\u0645\u0644\u06d5\u0634", -"Bold": "\u062a\u0648\u0645", -"Code": "Code", -"Italic": "\u064a\u0627\u0646\u062a\u06c7", -"Align center": "\u0645\u06d5\u0631\u0643\u06d5\u0632\u06af\u06d5 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634", -"Header 5": "\u062a\u06d0\u0645\u0627 5", -"Decrease indent": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0633\u06c8\u0631\u06c8\u0634", -"Header 4": "\u062a\u06d0\u0645\u0627 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u06be\u0627\u0632\u0649\u0631 \u0686\u0627\u067e\u0644\u0649\u0633\u0649\u06ad\u0649\u0632 \u0633\u0627\u067e \u062a\u06d0\u0643\u0649\u0634 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0649 \u0686\u0627\u067e\u0644\u0649\u0646\u0649\u062f\u06c7. \u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u06d5\u06ad\u0634\u0649\u0643\u0649\u0646\u0649 \u062a\u0627\u0642\u0649\u06cb\u06d5\u062a\u0643\u06d5\u0646\u06af\u06d5 \u0642\u06d5\u062f\u06d5\u0631.", -"Underline": "\u0626\u0627\u0633\u062a\u0649 \u0633\u0649\u0632\u0649\u0642", -"Cancel": "\u0642\u0627\u0644\u062f\u06c7\u0631\u06c7\u0634", -"Justify": "\u0626\u0649\u0643\u0643\u0649 \u064a\u0627\u0646\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634", -"Inline": "Inline", -"Copy": "\u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634", -"Align left": "\u0633\u0648\u0644\u063a\u0627 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634", -"Visual aids": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634", -"Lower Greek": "\u06af\u0631\u06d0\u062a\u0633\u0649\u064a\u0649\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649", -"Square": "\u0643\u06cb\u0627\u062f\u0631\u0627\u062a", -"Default": "\u0633\u06c8\u0643\u06c8\u062a", -"Lower Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649", -"Circle": "\u0686\u06d5\u0645\u0628\u06d5\u0631", -"Disc": "\u062f\u06d0\u0633\u0643\u0627", -"Upper Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649", -"Upper Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649", -"Lower Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649", -"Name": "\u0646\u0627\u0645\u0649", -"Anchor": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627", -"You have unsaved changes are you sure you want to navigate away?": "\u0633\u0649\u0632 \u062a\u06d0\u062e\u0649 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u0633\u0627\u0642\u0644\u0649\u0645\u0649\u062f\u0649\u06ad\u0649\u0632\u060c \u0626\u0627\u064a\u0631\u0649\u0644\u0627\u0645\u0633\u0649\u0632\u061f", -"Restore last draft": "\u0626\u0627\u062e\u0649\u0631\u0642\u0649 \u0643\u06c7\u067e\u0649\u064a\u0649\u06af\u06d5 \u0642\u0627\u064a\u062a\u0649\u0634", -"Special character": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5 \u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631", -"Source code": "\u0626\u06d5\u0633\u0644\u0649 \u0643\u0648\u062f\u0649", -"Right to left": "\u0626\u0648\u06ad\u062f\u0649\u0646 \u0633\u0648\u0644\u063a\u0627", -"Left to right": "\u0633\u0648\u0644\u062f\u0649\u0646 \u0626\u0648\u06ad\u063a\u0627 ", -"Emoticons": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u06d5", -"Robots": "\u0645\u0627\u0634\u0649\u0646\u0627 \u0626\u0627\u062f\u06d5\u0645", -"Document properties": "\u06be\u06c6\u062c\u062c\u06d5\u062a \u062e\u0627\u0633\u0644\u0649\u0642\u0649", -"Title": "\u062a\u06d0\u0645\u0627", -"Keywords": "\u06be\u0627\u0644\u0642\u0649\u0644\u0649\u0642 \u0633\u06c6\u0632", -"Encoding": "\u0643\u0648\u062f\u0644\u0627\u0634", -"Description": "\u062a\u06d5\u0633\u0649\u06cb\u0649\u0631", -"Author": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627", -"Fullscreen": "\u067e\u06c8\u062a\u06c8\u0646 \u0626\u06d0\u0643\u0631\u0627\u0646", -"Horizontal line": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0642\u06c7\u0631", -"Horizontal space": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642", -"Insert\/edit image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634 \u064a\u0627\u0643\u0649 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634", -"General": "\u0626\u0627\u062f\u06d5\u062a\u062a\u0649\u0643\u0649", -"Advanced": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5", -"Source": "\u0645\u06d5\u0646\u0628\u06d5", -"Border": "\u064a\u0627\u0642\u0627", -"Constrain proportions": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643-\u0643\u06d5\u06ad\u0644\u0649\u0643 \u0646\u0649\u0633\u067e\u0649\u062a\u0649\u0646\u0649 \u0633\u0627\u0642\u0644\u0627\u0634", -"Vertical space": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642", -"Image description": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d5\u0633\u06cb\u0649\u0631\u0649", -"Style": "\u0626\u06c7\u0633\u0644\u06c7\u067e", -"Dimensions": "\u0686\u0648\u06ad-\u0643\u0649\u0686\u0649\u0643", -"Insert image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Insert date\/time": "\u0686\u0649\u0633\u0644\u0627\/\u06cb\u0627\u0642\u0649\u062a \u0643\u0649\u0631\u06af\u06c8\u0632\u06c8\u0634", -"Remove link": "Remove link", -"Url": "\u0626\u0627\u062f\u0631\u0649\u0633", -"Text to display": "\u0643\u06c6\u0631\u06c8\u0646\u0649\u062f\u0649\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646", -"Anchors": "Anchors", -"Insert link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"New window": "\u064a\u06d0\u06ad\u0649 \u0643\u06c6\u0632\u0646\u06d5\u0643", -"None": "\u064a\u0648\u0642", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0646\u0649\u0634\u0627\u0646", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u06c7\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634", -"Insert\/edit video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634", -"Poster": "\u064a\u0648\u0644\u0644\u0649\u063a\u06c7\u0686\u0649", -"Alternative source": "\u062a\u06d5\u0633\u06cb\u0649\u0631\u0649", -"Paste your embed code below:": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0627\u0642\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0643\u0648\u062f\u0646\u0649 \u0686\u0627\u067e\u0644\u0627\u06ad", -"Insert video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Embed": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Nonbreaking space": "\u0628\u0648\u0634\u0644\u06c7\u0642", -"Page break": "\u0628\u06d5\u062a \u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Paste as text": "\u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634", -"Preview": "\u0643\u06c6\u0631\u06c8\u0634", -"Print": "\u0628\u0627\u0633\u0645\u0627\u0642 ", -"Save": "\u0633\u0627\u0642\u0644\u0627\u0634", -"Could not find the specified string.": "\u0626\u0649\u0632\u062f\u0649\u0645\u06d5\u0643\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u062a\u0627\u067e\u0627\u0644\u0645\u0649\u062f\u0649.", -"Replace": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Next": "\u0643\u06d0\u064a\u0649\u0646\u0643\u0649\u0633\u0649", -"Whole words": "\u062a\u0648\u0644\u06c7\u0642 \u0645\u0627\u0633\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Find and replace": "\u0626\u0649\u0632\u062f\u06d5\u0634 \u06cb\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Replace with": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Find": "\u0626\u0649\u0632\u062f\u06d5\u0634", -"Replace all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Match case": "\u0686\u0648\u06ad \u0643\u0649\u0686\u0649\u0643 \u06be\u06d5\u0631\u0649\u067e\u0646\u0649 \u067e\u06d5\u0631\u0649\u0642\u0644\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634", -"Prev": "\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649\u0633\u0649", -"Spellcheck": "\u0626\u0649\u0645\u0644\u0627 \u062a\u06d5\u0643\u0634\u06c8\u0631\u06c8\u0634", -"Finish": "\u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634", -"Ignore all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634", -"Ignore": "\u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634", -"Add to Dictionary": "\u0644\u06c7\u063a\u06d5\u062a \u0642\u0648\u0634\u06c7\u0634", -"Insert row before": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Rows": "\u0642\u06c7\u0631", -"Height": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643\u0649", -"Paste row after": "\u0642\u06c7\u0631 \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634", -"Alignment": "\u064a\u06c6\u0644\u0649\u0646\u0649\u0634\u0649", -"Border color": "\u0631\u0627\u0645\u0643\u0627 \u0631\u06d5\u06ad\u06af\u0649", -"Column group": "\u0631\u06d5\u062a \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649", -"Row": "\u0642\u06c7\u0631", -"Insert column before": "\u0631\u06d5\u062a \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Split cell": "\u0643\u0627\u062a\u06d5\u0643 \u067e\u0627\u0631\u0686\u0649\u0644\u0627\u0634", -"Cell padding": "\u0643\u0627\u062a\u06d5\u0643 \u0626\u0649\u0686\u0643\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649", -"Cell spacing": "\u0643\u0627\u062a\u06d5\u0643 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649", -"Row type": "\u0642\u06c7\u0631 \u062a\u0649\u067e\u0649", -"Insert table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Body": "\u0628\u06d5\u062f\u0649\u0646\u0649", -"Caption": "\u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634", -"Footer": "\u067e\u06c7\u062a\u0649", -"Delete row": "\u0642\u06c7\u0631 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634", -"Paste row before": "\u0642\u06c7\u0631 \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0686\u0627\u067e\u0644\u0627\u0634", -"Scope": "\u062f\u0627\u0626\u0649\u0631\u06d5", -"Delete table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0626\u06c6\u0686\u06c8\u0631\u0634", -"H Align": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634", -"Top": "\u0626\u06c8\u0633\u062a\u0649", -"Header cell": "\u0628\u0627\u0634 \u0643\u0627\u062a\u06d5\u0643", -"Column": "\u0631\u06d5\u062a", -"Row group": "\u0642\u06c7\u0631 \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649", -"Cell": "\u0643\u0627\u062a\u06d5\u0643", -"Middle": "\u0626\u0648\u062a\u062a\u06c7\u0631\u0633\u0649", -"Cell type": "\u0643\u0627\u062a\u06d5\u0643 \u062a\u0649\u067e\u0649", -"Copy row": "\u0642\u06c7\u0631 \u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634", -"Row properties": "\u0642\u06c7\u0631 \u062e\u0627\u0633\u0644\u0649\u0642\u0649", -"Table properties": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u062e\u0627\u0633\u0644\u0649\u0642\u0649", -"Bottom": "\u0626\u0627\u0633\u062a\u0649", -"V Align": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634", -"Header": "\u0628\u06d0\u0634\u0649", -"Right": "\u0626\u0648\u06ad", -"Insert column after": "\u0631\u06d5\u062a \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Cols": "\u0631\u06d5\u062a", -"Insert row after": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Width": "\u0643\u06d5\u06ad\u0644\u0649\u0643\u0649", -"Cell properties": "\u0643\u0627\u062a\u06d5\u0643 \u062e\u0627\u0633\u0644\u0649\u0642\u0649", -"Left": "\u0633\u0648\u0644", -"Cut row": "\u0642\u06c7\u0631 \u0643\u06d0\u0633\u0649\u0634", -"Delete column": "\u0631\u06d5\u062a \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634", -"Center": "\u0645\u06d5\u0631\u0643\u06d5\u0632", -"Merge cells": "\u0643\u0627\u062a\u06d5\u0643 \u0628\u0649\u0631\u0644\u06d5\u0634\u062a\u06c8\u0631\u06c8\u0634", -"Insert template": "\u0626\u06c8\u0644\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"Templates": "\u0626\u06c8\u0644\u06af\u0649\u0644\u06d5\u0631", -"Background color": "\u0626\u0627\u0631\u0642\u0627 \u0631\u06d5\u06ad\u06af\u0649", -"Custom...": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649", -"Custom color": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649 \u0631\u06d5\u06ad", -"No color": "\u0631\u06d5\u06ad \u064a\u0648\u0642", -"Text color": "\u062e\u06d5\u062a \u0631\u06d5\u06ad\u06af\u0649", -"Show blocks": "\u0631\u0627\u064a\u0648\u0646 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634", -"Show invisible characters": "\u0643\u06c6\u0631\u06c8\u0646\u0645\u06d5\u064a\u062f\u0649\u063a\u0627\u0646 \u06be\u06d5\u0631\u0649\u067e\u0644\u06d5\u0631\u0646\u0649 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634", -"Words: {0}": "\u0633\u06c6\u0632: {0}", -"Insert": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634", -"File": "\u06be\u06c6\u062c\u062c\u06d5\u062a", -"Edit": "\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "\u0642\u06c7\u0631\u0627\u0644", -"View": "\u0643\u06c6\u0631\u06c8\u0634", -"Table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644", -"Format": "\u0641\u0648\u0631\u0645\u0627\u062a" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/uk.js b/Resources/public/vendor/tinymce/langs/uk.js deleted file mode 100644 index 3efbc93e..00000000 --- a/Resources/public/vendor/tinymce/langs/uk.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('uk',{ -"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438", -"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0456\u043d\u0443. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 Ctrl+X\/C\/V \u0437\u0430\u043c\u0456\u0441\u0442\u044c \u0441\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448.", -"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Div": "\u0411\u043b\u043e\u043a", -"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", -"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438", -"Font Family": "\u0428\u0440\u0438\u0444\u0442 \u0437\u043c\u0456\u0441\u0442\u0443", -"Pre": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", -"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430", -"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438", -"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", -"Select all": "\u0412\u0438\u0434\u0456\u043b\u0438\u0442\u0438 \u0432\u0441\u0435", -"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Blocks": "\u0411\u043b\u043e\u043a\u0438", -"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438", -"Strikethrough": "\u0417\u0430\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439", -"Bullet list": "\u041d\u0435\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", -"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443", -"Subscript": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Redo": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "\u0413\u0430\u0440\u0430\u0437\u0434", -"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", -"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", -"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0434\u0456\u0439\u0441\u043d\u044e\u0454\u0442\u044c\u0441\u044f \u0443 \u0432\u0438\u0433\u043b\u044f\u0434\u0456 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443, \u043f\u043e\u043a\u0438 \u043d\u0435 \u0432\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0434\u0430\u043d\u0443 \u043e\u043f\u0446\u0456\u044e.", -"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439", -"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438", -"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0456", -"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438", -"Align left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Visual aids": "\u041d\u0430\u043e\u0447\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0434\u044f", -"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", -"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u0438", -"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u0439", -"Lower Alpha": "\u041c\u0430\u043b\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", -"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0456", -"Disc": "\u041a\u0440\u0443\u0433\u0438", -"Upper Alpha": "\u0412\u0435\u043b\u0438\u043a\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", -"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438", -"Lower Roman": "\u041c\u0430\u043b\u0456 \u0440\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438", -"Name": "\u041d\u0430\u0437\u0432\u0430", -"Anchor": "\u042f\u043a\u0456\u0440", -"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0412\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438?", -"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443", -"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", -"Source code": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u043a\u043e\u0434", -"Color": "\u043a\u043e\u043b\u0456\u0440", -"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e", -"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", -"Emoticons": "\u0415\u043c\u043e\u0446\u0456\u0457", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438", -"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", -"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430", -"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f", -"Description": "\u041e\u043f\u0438\u0441", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c", -"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f", -"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b", -"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456", -"Advanced": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456", -"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e", -"Border": "\u041c\u0435\u0436\u0430", -"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457", -"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b", -"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Style": "\u0421\u0442\u0438\u043b\u044c", -"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440", -"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441", -"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"Url": "\u0410\u0434\u0440\u0435\u0441\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Anchors": "\u042f\u043a\u043e\u0440\u0456", -"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"New window": "\u0423 \u043d\u043e\u0432\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456", -"None": "\u041d\u0456", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", -"Target": "\u0412\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 mailto: \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", -"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", -"Poster": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e", -"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:", -"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", -"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438", -"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u0431\u0456\u043b", -"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438", -"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442", -"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434", -"Print": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438", -"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438", -"Could not find the specified string.": "\u0412\u043a\u0430\u0437\u0430\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e", -"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438", -"Next": "\u0412\u043d\u0438\u0437", -"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430", -"Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430", -"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430", -"Find": "\u0417\u043d\u0430\u0439\u0442\u0438", -"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435", -"Match case": "\u0412\u0440\u0430\u0445\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0456\u0441\u0442\u0440", -"Prev": "\u0412\u0433\u043e\u0440\u0443", -"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457", -"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438", -"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435", -"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438", -"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0421\u043b\u043e\u0432\u043d\u0438\u043a\u0430", -"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", -"Rows": "\u0420\u044f\u0434\u043a\u0438", -"Height": "\u0412\u0438\u0441\u043e\u0442\u0430", -"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443", -"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Border color": "\u043a\u043e\u043b\u0456\u0440 \u0440\u0430\u043c\u043a\u0438", -"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432", -"Row": "\u0420\u044f\u0434\u043e\u043a", -"Insert column before": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043b\u0456\u0432\u043e\u0440\u0443\u0447", -"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443", -"Cell padding": "\u041f\u043e\u043b\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a", -"Cell spacing": "\u0412\u0456\u0434\u0441\u0442\u0430\u043d\u044c \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438", -"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430", -"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", -"Body": "\u0422\u0456\u043b\u043e", -"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", -"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", -"Scope": "\u0421\u0444\u0435\u0440\u0430", -"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", -"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c", -"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432", -"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430", -"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0440\u044f\u0434\u043a\u0430", -"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456", -"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", -"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Insert column after": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447", -"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456", -"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443", -"Width": "\u0428\u0438\u0440\u0438\u043d\u0430", -"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c", -"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", -"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443", -"Custom...": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439", -"Custom color": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440", -"No color": "\u0431\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443", -"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438", -"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", -"Words: {0}": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432: {0}", -"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 \u0449\u043e\u0431 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432, ALT-0 \u0434\u043b\u044f \u0432\u0438\u043a\u043b\u0438\u043a\u0443 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438.", -"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438", -"View": "\u0412\u0438\u0433\u043b\u044f\u0434", -"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/uk_UA.js b/Resources/public/vendor/tinymce/langs/uk_UA.js deleted file mode 100644 index 95380a6a..00000000 --- a/Resources/public/vendor/tinymce/langs/uk_UA.js +++ /dev/null @@ -1,191 +0,0 @@ -tinymce.addI18n('uk_UA',{ -"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438", -"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl + X\/C\/V.", -"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Div": "Div", -"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", -"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", -"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438", -"Font Family": "\u0428\u0440\u0438\u0444\u0442", -"Pre": "Pre", -"Align right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447", -"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430", -"Numbered list": "\u041f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438", -"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", -"Select all": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0443\u0441\u0435", -"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Blocks": "\u0411\u043b\u043e\u043a\u0438", -"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438", -"Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439", -"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", -"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", -"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", -"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", -"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", -"Subscript": "\u0406\u043d\u0434\u0435\u043a\u0441", -"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Redo": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438", -"Paragraph": "\u0410\u0431\u0437\u0430\u0446", -"Ok": "Ok", -"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", -"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", -"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", -"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", -"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", -"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430\u0440\u0430\u0437 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u0417\u043c\u0456\u0441\u0442 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u044f\u043a \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0438 \u0412\u0438 \u043d\u0435 \u0432\u0438\u043c\u043a\u043d\u0435\u0442\u0435 \u0446\u044e \u043e\u043f\u0446\u0456\u044e.", -"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439", -"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438", -"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438", -"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439", -"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438", -"Align left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447", -"Visual aids": "\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u0430\u0441\u043e\u0431\u0438", -"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u043b\u0456\u0442\u0435\u0440\u0438", -"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442", -"Default": "\u0423\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f", -"Lower Alpha": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440", -"Circle": "\u041a\u043e\u043b\u043e", -"Disc": "\u0414\u0438\u0441\u043a", -"Upper Alpha": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440", -"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456", -"Lower Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456", -"Name": "\u0406\u043c'\u044f", -"Anchor": "\u041f\u0440\u0438\u0432'\u044f\u0437\u043a\u0430", -"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438 ?", -"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442", -"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b", -"Source code": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e", -"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e", -"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", -"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438", -"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443", -"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430", -"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f", -"Description": "\u041e\u043f\u0438\u0441", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u041d\u0430 \u0432\u0435\u0441\u044c \u0435\u043a\u0440\u0430\u043d", -"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f", -"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a", -"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435", -"Advanced": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e", -"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e", -"Border": "\u041c\u0435\u0436\u0430", -"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457", -"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a", -"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Style": "\u0421\u0442\u0438\u043b\u044c", -"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440", -"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441", -"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"Url": "URL", -"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Anchors": "\u042f\u043a\u043e\u0440\u044f", -"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"New window": "\u041d\u043e\u0432\u0435 \u0432\u0456\u043a\u043d\u043e", -"None": "\u041d\u0456", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", -"Target": "\u041c\u0435\u0442\u0430", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 mailto: \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", -"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", -"Poster": "\u041f\u043b\u0430\u043a\u0430\u0442", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e", -"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:", -"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", -"Embed": "\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0438\u0442\u0438", -"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a", -"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438", -"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442", -"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434", -"Print": "\u0414\u0440\u0443\u043a", -"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438", -"Could not find the specified string.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a.", -"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438", -"Next": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439", -"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430", -"Find and replace": "\u0417\u043d\u0430\u0439\u0442\u0438 \u0456 \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438", -"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430", -"Find": "\u0417\u043d\u0430\u0439\u0442\u0438", -"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435", -"Match case": "\u0417 \u0443\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0443", -"Prev": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439", -"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457", -"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438", -"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0443\u0441\u0435", -"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438", -"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434", -"Rows": "\u0420\u044f\u0434\u043a\u0438", -"Height": "\u0412\u0438\u0441\u043e\u0442\u0430", -"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f", -"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432", -"Row": "\u0420\u044f\u0434\u043e\u043a", -"Insert column before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0435\u0440\u0435\u0434", -"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443", -"Cell padding": "\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a", -"Cell spacing": "\u0406\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438", -"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430", -"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", -"Body": "\u0422\u0456\u043b\u043e", -"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", -"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", -"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434", -"Scope": "\u0423 \u043c\u0435\u0436\u0430\u0445", -"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", -"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"Header cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443", -"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c", -"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432", -"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430", -"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", -"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Row properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0440\u044f\u0434\u043a\u0430", -"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456", -"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", -"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", -"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", -"Right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447", -"Insert column after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f", -"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456", -"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f", -"Width": "\u0428\u0438\u0440\u0438\u043d\u0430", -"Cell properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447", -"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", -"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c", -"Center": "\u0426\u0435\u043d\u0442\u0440", -"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", -"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", -"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443", -"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438", -"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", -"Words: {0}": "\u0421\u043b\u043e\u0432\u0430: {0}", -"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", -"File": "\u0424\u0430\u0439\u043b", -"Edit": "\u041f\u0440\u0430\u0432\u043a\u0430", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c Rich \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 - \u043c\u0435\u043d\u044e. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F10 - \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 - \u0434\u043e\u0432\u0456\u0434\u043a\u0430", -"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438", -"View": "\u0412\u0438\u0434", -"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/vi.js b/Resources/public/vendor/tinymce/langs/vi.js deleted file mode 100644 index 3b41ea76..00000000 --- a/Resources/public/vendor/tinymce/langs/vi.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('vi',{ -"Cut": "C\u1eaft", -"Header 2": "Ti\u00eau \u0111\u1ec1 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 truy c\u1eadp truy c\u1eadp b\u1ed9 nh\u1edb \u1ea3o, vui l\u00f2ng s\u1eed d\u1ee5ng c\u00e1c t\u1ed5 h\u1ee3p ph\u00edm Ctrl + X, C, V.", -"Div": "Khung", -"Paste": "D\u00e1n", -"Close": "\u0110\u00f3ng L\u1ea1i", -"Font Family": "Font Family", -"Pre": "\u0110\u1ecbnh d\u1ea1ng", -"Align right": "Canh ph\u1ea3i", -"New document": "T\u1ea1o t\u00e0i li\u1ec7u m\u1edbi", -"Blockquote": "\u0110o\u1ea1n Tr\u00edch D\u1eabn", -"Numbered list": "Danh s\u00e1ch d\u1ea1ng s\u1ed1", -"Increase indent": "T\u0103ng kho\u1ea3ng c\u00e1ch d\u00f2ng", -"Formats": "\u0110\u1ecbnh d\u1ea1ng", -"Headers": "\u0110\u1ea7u trang", -"Select all": "Ch\u1ecdn t\u1ea5t c\u1ea3", -"Header 3": "Ti\u00eau \u0111\u1ec1 3", -"Blocks": "Bao", -"Undo": "H\u1ee7y thao t\u00e1c", -"Strikethrough": "G\u1ea1ch ngang", -"Bullet list": "Danh s\u00e1ch d\u1ea1ng bi\u1ec3u t\u01b0\u1ee3ng", -"Header 1": "Ti\u00eau \u0111\u1ec1 1", -"Superscript": "K\u00fd t\u1ef1 m\u0169", -"Clear formatting": "L\u01b0\u1ee3c b\u1ecf ph\u1ea7n hi\u1ec7u \u1ee9ng", -"Font Sizes": "Font Sizes", -"Subscript": "K\u00fd t\u1ef1 th\u1ea5p", -"Header 6": "Ti\u00eau \u0111\u1ec1 6", -"Redo": "L\u00e0m l\u1ea1i", -"Paragraph": "\u0110o\u1ea1n v\u0103n", -"Ok": "\u0110\u1ed3ng \u00dd", -"Bold": "In \u0111\u1eadm", -"Code": "M\u00e3", -"Italic": "In nghi\u00eang", -"Align center": "Canh gi\u1eefa", -"Header 5": "Ti\u00eau \u0111\u1ec1 5", -"Decrease indent": "Th\u1ee5t l\u00f9i d\u00f2ng", -"Header 4": "Ti\u00eau \u0111\u1ec1 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Ch\u1ee9c n\u0103ng D\u00e1n \u0111ang trong tr\u1ea1ng th\u00e1i v\u0103n b\u1ea3n \u0111\u01a1n gi\u1ea3n. N\u1ed9i dung s\u1ebd \u0111\u01b0\u1ee3c d\u00e1n d\u01b0\u1edbi d\u1ea1ng v\u0103n b\u1ea3n thu\u1ea7n, kh\u00f4ng c\u00f3 \u0111\u1ecbnh d\u1ea1ng.", -"Underline": "G\u1ea1ch d\u01b0\u1edbi", -"Cancel": "Hu\u1ef7 B\u1ecf", -"Justify": "Canh \u0111\u1ec1u hai b\u00ean", -"Inline": "C\u00f9ng d\u00f2ng", -"Copy": "Sao ch\u00e9p", -"Align left": "Canh tr\u00e1i", -"Visual aids": "M\u1edf khung so\u1ea1n th\u1ea3o", -"Lower Greek": "S\u1ed1 hy l\u1ea1p th\u01b0\u1eddng", -"Square": "\u00d4 vu\u00f4ng", -"Default": "M\u1eb7c \u0111\u1ecbnh", -"Lower Alpha": "K\u00fd t\u1ef1 th\u01b0\u1eddng", -"Circle": "H\u00ecnh tr\u00f2n", -"Disc": "H\u00ecnh tr\u00f2n d\u1ea1ng m\u1ecfng", -"Upper Alpha": "K\u00fd t\u1ef1 hoa", -"Upper Roman": "S\u1ed1 la m\u00e3 hoa", -"Lower Roman": "S\u1ed1 la m\u00e3 th\u01b0\u1eddng", -"Name": "T\u00ean", -"Anchor": "Neo", -"You have unsaved changes are you sure you want to navigate away?": "B\u1ea1n ch\u01b0a l\u01b0u thay \u0111\u1ed5i b\u1ea1n c\u00f3 ch\u1eafc b\u1ea1n mu\u1ed1n di chuy\u1ec3n \u0111i?", -"Restore last draft": "Kh\u00f4i ph\u1ee5c b\u1ea3n g\u1ea7n nh\u1ea5t", -"Special character": "K\u00fd t\u1ef1 \u0111\u1eb7c bi\u1ec7t", -"Source code": "M\u00e3 ngu\u1ed3n", -"Right to left": "Ph\u1ea3i sang tr\u00e1i", -"Left to right": "Tr\u00e1i sang ph\u1ea3i", -"Emoticons": "Bi\u1ec3u t\u01b0\u1ee3ng c\u1ea3m x\u00fac", -"Robots": "Robots", -"Document properties": "Thu\u1ed9c t\u00ednh t\u00e0i li\u1ec7u", -"Title": "Ti\u00eau \u0111\u1ec1", -"Keywords": "T\u1eeb kh\u00f3a", -"Encoding": "M\u00e3 h\u00f3a", -"Description": "Description", -"Author": "T\u00e1c gi\u1ea3", -"Fullscreen": "To\u00e0n m\u00e0n h\u00ecnh", -"Horizontal line": "K\u1ebb ngang", -"Horizontal space": "N\u1eb1m ngang", -"Insert\/edit image": "Ch\u00e8n\/s\u1eeda \u1ea3nh", -"General": "Chung", -"Advanced": "N\u00e2ng cao", -"Source": "Ngu\u1ed3n", -"Border": "\u0110\u01b0\u1eddng vi\u1ec1n", -"Constrain proportions": "T\u1ef7 l\u1ec7 h\u1ea1n ch\u1ebf", -"Vertical space": "N\u1eb1m d\u1ecdc", -"Image description": "M\u00f4 t\u1ea3 \u1ea3nh", -"Style": "Ki\u1ec3u", -"Dimensions": "K\u00edch th\u01b0\u1edbc", -"Insert image": "Ch\u00e8n \u1ea3nh", -"Insert date\/time": "Ch\u00e8n ng\u00e0y\/th\u00e1ng", -"Remove link": "B\u1ecf li\u00ean k\u1ebft", -"Url": "Url", -"Text to display": "N\u1ed9i dung hi\u1ec3n th\u1ecb", -"Anchors": "Anchors", -"Insert link": "Ch\u00e8n li\u00ean k\u1ebft", -"New window": "C\u1eeda s\u1ed5 m\u1edbi", -"None": "Kh\u00f4ng", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u0110\u00edch", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "Ch\u00e8n\/s\u1eeda li\u00ean k\u1ebft", -"Insert\/edit video": "Ch\u00e8n\/s\u1eeda video", -"Poster": "Ng\u01b0\u1eddi g\u1eedi", -"Alternative source": "Ngu\u1ed3n thay th\u1ebf", -"Paste your embed code below:": "D\u00e1n m\u00e3 nh\u00fang c\u1ee7a b\u1ea1n d\u01b0\u1edbi \u0111\u00e2y:", -"Insert video": "Ch\u00e8n video", -"Embed": "Nh\u00fang", -"Nonbreaking space": "Nonbreaking space", -"Page break": "Ng\u1eaft trang", -"Paste as text": "D\u00e1n \u0111o\u1ea1n v\u0103n b\u1ea3n", -"Preview": "Xem th\u1eed", -"Print": "In", -"Save": "L\u01b0u", -"Could not find the specified string.": "Could not find the specified string.", -"Replace": "Replace", -"Next": "Next", -"Whole words": "To\u00e0n b\u1ed9 t\u1eeb", -"Find and replace": "Find and replace", -"Replace with": "Replace with", -"Find": "Find", -"Replace all": "Thay t\u1ea5t c\u1ea3", -"Match case": "Match case", -"Prev": "Tr\u01b0\u1edbc", -"Spellcheck": "Ki\u1ec3m tra ch\u00ednh t\u1ea3", -"Finish": "Ho\u00e0n t\u1ea5t", -"Ignore all": "B\u1ecf qua t\u1ea5t", -"Ignore": "B\u1ecf qua", -"Insert row before": "Th\u00eam d\u00f2ng ph\u00eda tr\u00ean", -"Rows": "D\u00f2ng", -"Height": "\u0110\u1ed9 Cao", -"Paste row after": "D\u00e1n v\u00e0o ph\u00eda sau, d\u01b0\u1edbi", -"Alignment": "Canh ch\u1ec9nh", -"Column group": "Gom nh\u00f3m c\u1ed9t", -"Row": "D\u00f2ng", -"Insert column before": "Th\u00eam c\u1ed9t b\u00ean tr\u00e1i", -"Split cell": "Chia c\u1eaft \u00f4", -"Cell padding": "Kho\u1ea3ng c\u00e1ch trong \u00f4", -"Cell spacing": "Kho\u1ea3ng c\u00e1ch \u00f4", -"Row type": "Th\u1ec3 lo\u1ea1i d\u00f2ng", -"Insert table": "Th\u00eam b\u1ea3ng", -"Body": "N\u1ed9i dung", -"Caption": "Ti\u00eau \u0111\u1ec1", -"Footer": "Ch\u00e2n", -"Delete row": "Xo\u00e1 d\u00f2ng", -"Paste row before": "D\u00e1n v\u00e0o ph\u00eda tr\u01b0\u1edbc, tr\u00ean", -"Scope": "Quy\u1ec1n", -"Delete table": "Xo\u00e1 b\u1ea3ng", -"Header cell": "Ti\u00eau \u0111\u1ec1 \u00f4", -"Column": "C\u1ed9t", -"Cell": "\u00d4", -"Header": "Ti\u00eau \u0111\u1ec1", -"Cell type": "Lo\u1ea1i \u00f4", -"Copy row": "Sao ch\u00e9p d\u00f2ng", -"Row properties": "Thu\u1ed9c t\u00ednh d\u00f2ng", -"Table properties": "Thu\u1ed9c t\u00ednh b\u1ea3ng", -"Row group": "Gom nh\u00f3m d\u00f2ng", -"Right": "Ph\u1ea3i", -"Insert column after": "Th\u00eam c\u1ed9t b\u00ean ph\u1ea3i", -"Cols": "C\u1ed9t", -"Insert row after": "Th\u00eam d\u00f2ng ph\u00eda d\u01b0\u1edbi", -"Width": "\u0110\u1ed9 R\u1ed9ng", -"Cell properties": "Thu\u1ed9c t\u00ednh \u00f4", -"Left": "Tr\u00e1i", -"Cut row": "C\u1eaft d\u00f2ng", -"Delete column": "Xo\u00e1 c\u1ed9t", -"Center": "Gi\u1eefa", -"Merge cells": "Tr\u1ed9n \u00f4", -"Insert template": "Insert template", -"Templates": "Templates", -"Background color": "M\u00e0u n\u1ec1n", -"Text color": "M\u00e0u v\u0103n b\u1ea3n", -"Show blocks": "Show blocks", -"Show invisible characters": "Hi\u1ec3n th\u1ecb k\u00fd t\u1ef1 \u1ea9n", -"Words: {0}": "Words: {0}", -"Insert": "Insert", -"File": "File", -"Edit": "Edit", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", -"Tools": "Tools", -"View": "View", -"Table": "Table", -"Format": "Format" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/vi_VN.js b/Resources/public/vendor/tinymce/langs/vi_VN.js deleted file mode 100644 index 2357ac58..00000000 --- a/Resources/public/vendor/tinymce/langs/vi_VN.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('vi_VN',{ -"Cut": "C\u1eaft", -"Heading 5": "Ti\u00eau \u0111\u1ec1 5", -"Header 2": "Ti\u00eau \u0111\u1ec1 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 truy c\u1eadp clipboard, vui l\u00f2ng s\u1eed d\u1ee5ng c\u00e1c t\u1ed5 h\u1ee3p Ctrl + X, C, V.", -"Heading 4": "Ti\u00eau \u0111\u1ec1 4", -"Div": "Khung", -"Heading 2": "Ti\u00eau \u0111\u1ec1 2", -"Paste": "D\u00e1n", -"Close": "\u0110\u00f3ng", -"Font Family": "Ph\u00f4ng", -"Pre": "\u0110\u1ecbnh d\u1ea1ng", -"Align right": "Canh ph\u1ea3i", -"New document": "T\u1ea1o t\u00e0i li\u1ec7u m\u1edbi", -"Blockquote": "Tr\u00edch", -"Numbered list": "Danh s\u00e1ch s\u1ed1", -"Heading 1": "Ti\u00eau \u0111\u1ec1 1", -"Headings": "Ti\u00eau \u0111\u1ec1", -"Increase indent": "L\u00f9i v\u00e0o", -"Formats": "\u0110\u1ecbnh d\u1ea1ng", -"Headers": "\u0110\u1ea7u trang", -"Select all": "Ch\u1ecdn t\u1ea5t c\u1ea3", -"Header 3": "Ti\u00eau \u0111\u1ec1 3", -"Blocks": "Bao", -"Undo": "Hu\u1ef7 thao t\u00e1c", -"Strikethrough": "G\u1ea1ch ngang", -"Bullet list": "D\u1ea5u \u0111\u1ea7u d\u00f2ng", -"Header 1": "Ti\u00eau \u0111\u1ec1 1", -"Superscript": "Tr\u00ean d\u00f2ng", -"Clear formatting": "Xo\u00e1 \u0111\u1ecbnh d\u1ea1ng", -"Font Sizes": "K\u00edch th\u01b0\u1edbc ph\u00f4ng", -"Subscript": "D\u01b0\u1edbi d\u00f2ng", -"Header 6": "Ti\u00eau \u0111\u1ec1 6", -"Redo": "Ho\u00e0n t\u00e1t", -"Paragraph": "\u0110o\u1ea1n v\u0103n", -"Ok": "OK", -"Bold": "T\u00f4 \u0111\u1eadm", -"Code": "M\u00e3", -"Italic": "In nghi\u00eang", -"Align center": "Canh gi\u1eefa", -"Header 5": "Ti\u00eau \u0111\u1ec1 5", -"Heading 6": "Ti\u00eau \u0111\u1ec1 6", -"Heading 3": "Ti\u00eau \u0111\u1ec1 3", -"Decrease indent": "L\u00f9i ra", -"Header 4": "Ti\u00eau \u0111\u1ec1 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00e1n b\u00e2y gi\u1edd l\u00e0 \u1edf ch\u1ebf \u0111\u1ed9 v\u0103n b\u1ea3n \u0111\u01a1n gi\u1ea3n. N\u1ed9i dung s\u1ebd \u0111\u01b0\u1ee3c d\u00e1n nh\u01b0 \u0111\u1ed3ng b\u1eb1ng v\u0103n b\u1ea3n cho \u0111\u1ebfn khi b\u1ea1n chuy\u1ec3n \u0111\u1ed5i t\u00f9y ch\u1ecdn n\u00e0y.", -"Underline": "G\u1ea1ch d\u01b0\u1edbi", -"Cancel": "Hu\u1ef7", -"Justify": "Canh \u0111\u1ec1u hai b\u00ean", -"Inline": "C\u00f9ng d\u00f2ng", -"Copy": "Ch\u00e9p", -"Align left": "Canh tr\u00e1i", -"Visual aids": "Hi\u1ec7n khung so\u1ea1n th\u1ea3o", -"Lower Greek": "S\u1ed1 hy l\u1ea1p th\u01b0\u1eddng", -"Square": "\u00d4 vu\u00f4ng", -"Default": "Ng\u1ea7m \u0111\u1ecbnh", -"Lower Alpha": "K\u00fd t\u1ef1 th\u01b0\u1eddng", -"Circle": "H\u00ecnh tr\u00f2n", -"Disc": "H\u00ecnh tr\u00f2n m\u1ecfng", -"Upper Alpha": "K\u00fd t\u1ef1 hoa", -"Upper Roman": "S\u1ed1 la m\u00e3 hoa", -"Lower Roman": "S\u1ed1 la m\u00e3 th\u01b0\u1eddng", -"Name": "T\u00ean", -"Anchor": "Neo", -"You have unsaved changes are you sure you want to navigate away?": "B\u1ea1n ch\u01b0a l\u01b0u c\u00e1c thay \u0111\u1ed5i, b\u1ea1n c\u00f3 th\u1eadt s\u1ef1 mu\u1ed1n \u0111\u00f3ng ?", -"Restore last draft": "Ph\u1ee5c h\u1ed3i b\u1ea3n l\u01b0u g\u1ea7n nh\u1ea5t", -"Special character": "K\u00fd t\u1ef1 \u0111\u1eb7c bi\u1ec7t", -"Source code": "M\u00e3 ngu\u1ed3n", -"Color": "M\u00e0u", -"Right to left": "Ph\u1ea3i sang tr\u00e1i", -"Left to right": "Tr\u00e1i sang ph\u1ea3i", -"Emoticons": "Bi\u1ec3u t\u01b0\u1ee3ng c\u1ea3m x\u00fac", -"Robots": "Robots", -"Document properties": "Thu\u1ed9c t\u00ednh t\u00e0i li\u1ec7u", -"Title": "Ti\u00eau \u0111\u1ec1", -"Keywords": "T\u1eeb kho\u00e1", -"Encoding": "M\u00e3 ho\u00e1", -"Description": "Mi\u00eau t\u1ea3", -"Author": "Neo", -"Fullscreen": "\u0110\u1ea7y m\u00e0n h\u00ecnh", -"Horizontal line": "G\u1ea1ch ngang", -"Horizontal space": "Kho\u1ea3ng c\u00e1ch ngang", -"Insert\/edit image": "Th\u00eam \/ s\u1eeda h\u00ecnh \u1ea3nh", -"General": "T\u1ed5ng h\u1ee3p", -"Advanced": "N\u00e2ng cao", -"Source": "Ngu\u1ed3n", -"Border": "\u0110\u01b0\u1eddng vi\u1ec1n", -"Constrain proportions": "H\u1ea1n ch\u1ebf t\u1ef7 l\u1ec7", -"Vertical space": "Kho\u1ea3ng c\u00e1ch d\u1ecdc", -"Image description": "Mi\u00eau t\u1ea3 h\u00ecnh \u1ea3nh", -"Style": "Ki\u1ec3u", -"Dimensions": "K\u00edch th\u01b0\u1edbc", -"Insert image": "Ch\u00e8n \u1ea3nh", -"Insert date\/time": "Th\u00eam ng\u00e0y \/ gi\u1edd", -"Remove link": "Xo\u00e1 li\u00ean k\u1ebft", -"Url": "Li\u00ean k\u1ebft", -"Text to display": "Ch\u1eef hi\u1ec3n th\u1ecb", -"Anchors": "Ghim", -"Insert link": "Th\u00eam li\u00ean k\u1ebft", -"New window": "C\u1eeda s\u1ed5 m\u1edbi", -"None": "Kh\u00f4ng", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL b\u1ea1n nh\u1eadp v\u00e0o c\u00f3 v\u1ebb l\u00e0 m\u1ed9t li\u00ean k\u1ebft b\u00ean ngo\u00e0i. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 http:\/\/ c\u1ea7n thi\u1ebft?", -"Target": "M\u1ee5c ti\u00eau", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL b\u1ea1n nh\u1eadp v\u00e0o c\u00f3 v\u1ebb l\u00e0 m\u1ed9t \u0111\u1ecba ch\u1ec9 email. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam c\u00e1c y\u00eau c\u1ea7u mailto: ti\u1ec1n t\u1ed1?", -"Insert\/edit link": "Th\u00eam \/ s\u1eeda li\u00ean k\u1ebft", -"Insert\/edit video": "Th\u00eam \/ s\u1eeda video", -"Poster": "Ng\u01b0\u1eddi \u0111\u0103ng", -"Alternative source": "Ngu\u1ed3n thay th\u1ebf", -"Paste your embed code below:": "D\u00e1n m\u00e3 embed v\u00e0o:", -"Insert video": "Th\u00eam video", -"Embed": "Embed", -"Nonbreaking space": "Kh\u00f4ng ng\u1eaft kho\u1ea3ng", -"Page break": "Ng\u1eaft trang", -"Paste as text": "D\u00e1n nh\u01b0 v\u0103n b\u1ea3n", -"Preview": "Xem tr\u01b0\u1edbc", -"Print": "In", -"Save": "L\u01b0u", -"Could not find the specified string.": "Kh\u00f4ng t\u00ecm th\u1ea5y chu\u1ed7i y\u00eau c\u1ea7u", -"Replace": "Thay th\u1ebf", -"Next": "Sau", -"Whole words": "T\u1ea5t c\u1ea3 \u0111o\u1ea1n", -"Find and replace": "T\u00ecm v\u00e0 thay th\u1ebf", -"Replace with": "Thay th\u1ebf b\u1eb1ng", -"Find": "T\u00ecm", -"Replace all": "Thay th\u1ebf t\u1ea5t c\u1ea3", -"Match case": "Ph\u00e2n bi\u1ec7t hoa th\u01b0\u1eddng", -"Prev": "Tr\u01b0\u1edbc", -"Spellcheck": "Ki\u1ec3m tra ch\u00ednh t\u1ea3", -"Finish": "Ho\u00e0n t\u1ea5t", -"Ignore all": "L\u1edd t\u1ea5t c\u1ea3", -"Ignore": "L\u1edd qua", -"Add to Dictionary": "Th\u00eam v\u00e0o t\u1eeb \u0111i\u1ec3n", -"Insert row before": "Th\u00eam d\u00f2ng ph\u00eda tr\u00ean", -"Rows": "D\u00f2ng", -"Height": "Cao", -"Paste row after": "D\u00e1n v\u00e0o ph\u00eda sau, d\u01b0\u1edbi", -"Alignment": "Canh ch\u1ec9nh", -"Border color": "M\u00e0u vi\u1ec1n", -"Column group": "Nh\u00f3m c\u1ed9t", -"Row": "D\u00f2ng", -"Insert column before": "Th\u00eam c\u1ed9t b\u00ean tr\u00e1i", -"Split cell": "Chia \u00f4", -"Cell padding": "Kho\u1ea3ng c\u00e1ch trong \u00f4", -"Cell spacing": "Kho\u1ea3ng c\u00e1ch \u00f4", -"Row type": "Lo\u1ea1i d\u00f2ng", -"Insert table": "Th\u00eam b\u1ea3ng", -"Body": "N\u1ed9i dung", -"Caption": "Ti\u00eau \u0111\u1ec1", -"Footer": "Ch\u00e2n", -"Delete row": "Xo\u00e1 d\u00f2ng", -"Paste row before": "D\u00e1n v\u00e0o ph\u00eda tr\u01b0\u1edbc, tr\u00ean", -"Scope": "Quy\u1ec1n", -"Delete table": "Xo\u00e1 b\u1ea3ng", -"H Align": "X\u1ebfp ngang", -"Top": "\u0110\u1ec9nh", -"Header cell": "Ti\u00eau \u0111\u1ec1 \u00f4", -"Column": "C\u1ed9t", -"Row group": "Nh\u00f3m d\u00f2ng", -"Cell": "\u00d4", -"Middle": "Gi\u1eefa", -"Cell type": "Lo\u1ea1i \u00f4", -"Copy row": "Ch\u00e9p d\u00f2ng", -"Row properties": "Thu\u1ed9c t\u00ednh d\u00f2ng", -"Table properties": "Thu\u1ed9c t\u00ednh b\u1ea3ng", -"Bottom": "\u0110\u00e1y", -"V Align": "X\u1ebfp d\u1ecdc", -"Header": "Ti\u00eau \u0111\u1ec1", -"Right": "Ph\u1ea3i", -"Insert column after": "Th\u00eam c\u1ed9t b\u00ean ph\u1ea3i", -"Cols": "C\u1ed9t", -"Insert row after": "Th\u00eam d\u00f2ng ph\u00eda d\u01b0\u1edbi", -"Width": "R\u1ed9ng", -"Cell properties": "Thu\u1ed9c t\u00ednh \u00f4", -"Left": "Tr\u00e1i", -"Cut row": "C\u1eaft d\u00f2ng", -"Delete column": "Xo\u00e1 c\u1ed9t", -"Center": "Gi\u1eefa", -"Merge cells": "N\u1ed1i \u00f4", -"Insert template": "Th\u00eam m\u1eabu", -"Templates": "M\u1eabu", -"Background color": "M\u00e0u n\u1ec1n", -"Custom...": "T\u00f9y ch\u1ecdn...", -"Custom color": "M\u00e0u t\u00f9y ch\u1ecdn", -"No color": "Kh\u00f4ng m\u00e1u", -"Text color": "M\u00e0u ch\u1eef", -"Show blocks": "Hi\u1ec3n th\u1ecb kh\u1ed1i", -"Show invisible characters": "Hi\u1ec3n th\u1ecb c\u00e1c k\u00fd t\u1ef1 \u1ea9n", -"Words: {0}": "T\u1eeb: {0}", -"Insert": "Th\u00eam", -"File": "T\u1eadp tin", -"Edit": "S\u1eeda", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Khu v\u1ef1c so\u1ea1n th\u1ea3o. Nh\u1ea5n ALT-F9 \u0111\u1ec3 hi\u1ec7n menu, ALT-F10 \u0111\u1ec3 hi\u1ec7n thanh c\u00f4ng c\u1ee5. C\u1ea7n tr\u1ee3 gi\u00fap nh\u1ea5n ALT-0", -"Tools": "C\u00f4ng c\u1ee5", -"View": "Xem", -"Table": "B\u1ea3ng", -"Format": "\u0110\u1ecbnh d\u1ea1ng" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/zh_CN.js b/Resources/public/vendor/tinymce/langs/zh_CN.js deleted file mode 100644 index 712222a5..00000000 --- a/Resources/public/vendor/tinymce/langs/zh_CN.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('zh_CN',{ -"Cut": "\u526a\u5207", -"Heading 5": "\u6807\u98985", -"Header 2": "\u6807\u98982", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u5bf9\u526a\u8d34\u677f\u7684\u8bbf\u95ee\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u952e\u8fdb\u884c\u590d\u5236\u7c98\u8d34\u3002", -"Heading 4": "\u6807\u98984", -"Div": "Div\u533a\u5757", -"Heading 2": "\u6807\u98982", -"Paste": "\u7c98\u8d34", -"Close": "\u5173\u95ed", -"Font Family": "\u5b57\u4f53", -"Pre": "\u9884\u683c\u5f0f\u6587\u672c", -"Align right": "\u53f3\u5bf9\u9f50", -"New document": "\u65b0\u6587\u6863", -"Blockquote": "\u5f15\u7528", -"Numbered list": "\u7f16\u53f7\u5217\u8868", -"Heading 1": "\u6807\u98981", -"Headings": "\u6807\u9898", -"Increase indent": "\u589e\u52a0\u7f29\u8fdb", -"Formats": "\u683c\u5f0f", -"Headers": "\u6807\u9898", -"Select all": "\u5168\u9009", -"Header 3": "\u6807\u98983", -"Blocks": "\u533a\u5757", -"Undo": "\u64a4\u6d88", -"Strikethrough": "\u5220\u9664\u7ebf", -"Bullet list": "\u9879\u76ee\u7b26\u53f7", -"Header 1": "\u6807\u98981", -"Superscript": "\u4e0a\u6807", -"Clear formatting": "\u6e05\u9664\u683c\u5f0f", -"Font Sizes": "\u5b57\u53f7", -"Subscript": "\u4e0b\u6807", -"Header 6": "\u6807\u98986", -"Redo": "\u91cd\u590d", -"Paragraph": "\u6bb5\u843d", -"Ok": "\u786e\u5b9a", -"Bold": "\u7c97\u4f53", -"Code": "\u4ee3\u7801", -"Italic": "\u659c\u4f53", -"Align center": "\u5c45\u4e2d", -"Header 5": "\u6807\u98985", -"Heading 6": "\u6807\u98986", -"Heading 3": "\u6807\u98983", -"Decrease indent": "\u51cf\u5c11\u7f29\u8fdb", -"Header 4": "\u6807\u98984", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002", -"Underline": "\u4e0b\u5212\u7ebf", -"Cancel": "\u53d6\u6d88", -"Justify": "\u4e24\u7aef\u5bf9\u9f50", -"Inline": "\u6587\u672c", -"Copy": "\u590d\u5236", -"Align left": "\u5de6\u5bf9\u9f50", -"Visual aids": "\u7f51\u683c\u7ebf", -"Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd", -"Square": "\u65b9\u5757", -"Default": "\u9ed8\u8ba4", -"Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd", -"Circle": "\u7a7a\u5fc3\u5706", -"Disc": "\u5b9e\u5fc3\u5706", -"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd", -"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd", -"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd", -"Name": "\u540d\u79f0", -"Anchor": "\u951a\u70b9", -"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f", -"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f", -"Special character": "\u7279\u6b8a\u7b26\u53f7", -"Source code": "\u6e90\u4ee3\u7801", -"Color": "\u989c\u8272", -"Right to left": "\u4ece\u53f3\u5230\u5de6", -"Left to right": "\u4ece\u5de6\u5230\u53f3", -"Emoticons": "\u8868\u60c5", -"Robots": "\u673a\u5668\u4eba", -"Document properties": "\u6587\u6863\u5c5e\u6027", -"Title": "\u6807\u9898", -"Keywords": "\u5173\u952e\u8bcd", -"Encoding": "\u7f16\u7801", -"Description": "\u63cf\u8ff0", -"Author": "\u4f5c\u8005", -"Fullscreen": "\u5168\u5c4f", -"Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf", -"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd", -"Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247", -"General": "\u666e\u901a", -"Advanced": "\u9ad8\u7ea7", -"Source": "\u5730\u5740", -"Border": "\u8fb9\u6846", -"Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4", -"Vertical space": "\u5782\u76f4\u8fb9\u8ddd", -"Image description": "\u56fe\u7247\u63cf\u8ff0", -"Style": "\u6837\u5f0f", -"Dimensions": "\u5927\u5c0f", -"Insert image": "\u63d2\u5165\u56fe\u7247", -"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4", -"Remove link": "\u5220\u9664\u94fe\u63a5", -"Url": "\u5730\u5740", -"Text to display": "\u663e\u793a\u6587\u5b57", -"Anchors": "\u951a\u70b9", -"Insert link": "\u63d2\u5165\u94fe\u63a5", -"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00", -"None": "\u65e0", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f", -"Target": "\u6253\u5f00\u65b9\u5f0f", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u8c8c\u4f3c\u662f\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f", -"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5", -"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891", -"Poster": "\u5c01\u9762", -"Alternative source": "\u955c\u50cf", -"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:", -"Insert video": "\u63d2\u5165\u89c6\u9891", -"Embed": "\u5185\u5d4c", -"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c", -"Page break": "\u5206\u9875\u7b26", -"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c", -"Preview": "\u9884\u89c8", -"Print": "\u6253\u5370", -"Save": "\u4fdd\u5b58", -"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.", -"Replace": "\u66ff\u6362", -"Next": "\u4e0b\u4e00\u4e2a", -"Whole words": "\u5168\u5b57\u5339\u914d", -"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362", -"Replace with": "\u66ff\u6362\u4e3a", -"Find": "\u67e5\u627e", -"Replace all": "\u5168\u90e8\u66ff\u6362", -"Match case": "\u533a\u5206\u5927\u5c0f\u5199", -"Prev": "\u4e0a\u4e00\u4e2a", -"Spellcheck": "\u62fc\u5199\u68c0\u67e5", -"Finish": "\u5b8c\u6210", -"Ignore all": "\u5168\u90e8\u5ffd\u7565", -"Ignore": "\u5ffd\u7565", -"Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178", -"Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165", -"Rows": "\u884c", -"Height": "\u9ad8", -"Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9", -"Alignment": "\u5bf9\u9f50\u65b9\u5f0f", -"Border color": "\u8fb9\u6846\u989c\u8272", -"Column group": "\u5217\u7ec4", -"Row": "\u884c", -"Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165", -"Split cell": "\u62c6\u5206\u5355\u5143\u683c", -"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd", -"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd", -"Row type": "\u884c\u7c7b\u578b", -"Insert table": "\u63d2\u5165\u8868\u683c", -"Body": "\u8868\u4f53", -"Caption": "\u6807\u9898", -"Footer": "\u8868\u5c3e", -"Delete row": "\u5220\u9664\u884c", -"Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9", -"Scope": "\u8303\u56f4", -"Delete table": "\u5220\u9664\u8868\u683c", -"H Align": "\u6c34\u5e73\u5bf9\u9f50", -"Top": "\u9876\u90e8\u5bf9\u9f50", -"Header cell": "\u8868\u5934\u5355\u5143\u683c", -"Column": "\u5217", -"Row group": "\u884c\u7ec4", -"Cell": "\u5355\u5143\u683c", -"Middle": "\u5782\u76f4\u5c45\u4e2d", -"Cell type": "\u5355\u5143\u683c\u7c7b\u578b", -"Copy row": "\u590d\u5236\u884c", -"Row properties": "\u884c\u5c5e\u6027", -"Table properties": "\u8868\u683c\u5c5e\u6027", -"Bottom": "\u5e95\u90e8\u5bf9\u9f50", -"V Align": "\u5782\u76f4\u5bf9\u9f50", -"Header": "\u8868\u5934", -"Right": "\u53f3\u5bf9\u9f50", -"Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165", -"Cols": "\u5217", -"Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165", -"Width": "\u5bbd", -"Cell properties": "\u5355\u5143\u683c\u5c5e\u6027", -"Left": "\u5de6\u5bf9\u9f50", -"Cut row": "\u526a\u5207\u884c", -"Delete column": "\u5220\u9664\u5217", -"Center": "\u5c45\u4e2d", -"Merge cells": "\u5408\u5e76\u5355\u5143\u683c", -"Insert template": "\u63d2\u5165\u6a21\u677f", -"Templates": "\u6a21\u677f", -"Background color": "\u80cc\u666f\u8272", -"Custom...": "\u81ea\u5b9a\u4e49...", -"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272", -"No color": "\u65e0", -"Text color": "\u6587\u5b57\u989c\u8272", -"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846", -"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26", -"Words: {0}": "\u5b57\u6570\uff1a{0}", -"Insert": "\u63d2\u5165", -"File": "\u6587\u4ef6", -"Edit": "\u7f16\u8f91", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9", -"Tools": "\u5de5\u5177", -"View": "\u89c6\u56fe", -"Table": "\u8868\u683c", -"Format": "\u683c\u5f0f" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/langs/zh_TW.js b/Resources/public/vendor/tinymce/langs/zh_TW.js deleted file mode 100644 index c131cf1e..00000000 --- a/Resources/public/vendor/tinymce/langs/zh_TW.js +++ /dev/null @@ -1,186 +0,0 @@ -tinymce.addI18n('zh_TW',{ -"Cut": "\u526a\u4e0b", -"Heading 5": "\u6a19\u984c 5", -"Header 2": "\u6a19\u984c 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002", -"Heading 4": "\u6a19\u984c 4", -"Div": "Div", -"Heading 2": "\u6a19\u984c 2", -"Paste": "\u8cbc\u4e0a", -"Close": "\u95dc\u9589", -"Font Family": "\u5b57\u9ad4", -"Pre": "Pre", -"Align right": "\u7f6e\u53f3\u5c0d\u9f4a", -"New document": "\u65b0\u6587\u4ef6", -"Blockquote": "\u5f15\u7528", -"Numbered list": "\u6578\u5b57\u6e05\u55ae", -"Heading 1": "\u6a19\u984c 1", -"Headings": "\u6a19\u984c", -"Increase indent": "\u589e\u52a0\u7e2e\u6392", -"Formats": "\u683c\u5f0f", -"Headers": "\u6a19\u984c", -"Select all": "\u5168\u9078", -"Header 3": "\u6a19\u984c 3", -"Blocks": "\u5340\u584a", -"Undo": "\u5fa9\u539f", -"Strikethrough": "\u522a\u9664\u7dda", -"Bullet list": "\u9805\u76ee\u6e05\u55ae", -"Header 1": "\u6a19\u984c 1", -"Superscript": "\u4e0a\u6a19", -"Clear formatting": "\u6e05\u9664\u683c\u5f0f", -"Font Sizes": "\u5b57\u578b\u5927\u5c0f", -"Subscript": "\u4e0b\u6a19", -"Header 6": "\u6a19\u984c 6", -"Redo": "\u53d6\u6d88\u5fa9\u539f", -"Paragraph": "\u6bb5\u843d", -"Ok": "\u78ba\u5b9a", -"Bold": "\u7c97\u9ad4", -"Code": "\u7a0b\u5f0f\u78bc", -"Italic": "\u659c\u9ad4", -"Align center": "\u7f6e\u4e2d\u5c0d\u9f4a", -"Header 5": "\u6a19\u984c 5", -"Heading 6": "\u6a19\u984c 6", -"Heading 3": "\u6a19\u984c 3", -"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392", -"Header 4": "\u6a19\u984c 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002", -"Underline": "\u5e95\u7dda", -"Cancel": "\u53d6\u6d88", -"Justify": "\u5de6\u53f3\u5c0d\u9f4a", -"Inline": "Inline", -"Copy": "\u8907\u88fd", -"Align left": "\u7f6e\u5de6\u5c0d\u9f4a", -"Visual aids": "\u5c0f\u5e6b\u624b", -"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd", -"Square": "\u6b63\u65b9\u5f62", -"Default": "\u9810\u8a2d", -"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd", -"Circle": "\u7a7a\u5fc3\u5713", -"Disc": "\u5be6\u5fc3\u5713", -"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd", -"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57", -"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57", -"Name": "\u540d\u7a31", -"Anchor": "\u52a0\u5165\u9328\u9ede", -"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f", -"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f", -"Special character": "\u7279\u6b8a\u5b57\u5143", -"Source code": "\u539f\u59cb\u78bc", -"Right to left": "\u5f9e\u53f3\u5230\u5de6", -"Left to right": "\u5f9e\u5de6\u5230\u53f3", -"Emoticons": "\u8868\u60c5", -"Robots": "\u6a5f\u5668\u4eba", -"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027", -"Title": "\u6a19\u984c", -"Keywords": "\u95dc\u9375\u5b57", -"Encoding": "\u7de8\u78bc", -"Description": "\u63cf\u8ff0", -"Author": "\u4f5c\u8005", -"Fullscreen": "\u5168\u87a2\u5e55", -"Horizontal line": "\u6c34\u5e73\u7dda", -"Horizontal space": "\u5bec\u5ea6", -"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247", -"General": "\u4e00\u822c", -"Advanced": "\u9032\u968e", -"Source": "\u5716\u7247\u7db2\u5740", -"Border": "\u908a\u6846", -"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e", -"Vertical space": "\u9ad8\u5ea6", -"Image description": "\u5716\u7247\u63cf\u8ff0", -"Style": "\u6a23\u5f0f", -"Dimensions": "\u5c3a\u5bf8", -"Insert image": "\u63d2\u5165\u5716\u7247", -"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593", -"Remove link": "\u79fb\u9664\u9023\u7d50", -"Url": "\u7db2\u5740", -"Text to display": "\u986f\u793a\u6587\u5b57", -"Anchors": "\u52a0\u5165\u9328\u9ede", -"Insert link": "\u63d2\u5165\u9023\u7d50", -"New window": "\u53e6\u958b\u8996\u7a97", -"None": "\u7121", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u958b\u555f\u65b9\u5f0f", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50", -"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3", -"Poster": "\u9810\u89bd\u5716\u7247", -"Alternative source": "\u66ff\u4ee3\u5f71\u97f3", -"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:", -"Insert video": "\u63d2\u5165\u5f71\u97f3", -"Embed": "\u5d4c\u5165\u78bc", -"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c", -"Page break": "\u5206\u9801", -"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a", -"Preview": "\u9810\u89bd", -"Print": "\u5217\u5370", -"Save": "\u5132\u5b58", -"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32", -"Replace": "\u66ff\u63db", -"Next": "\u4e0b\u4e00\u500b", -"Whole words": "\u6574\u500b\u55ae\u5b57", -"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3", -"Replace with": "\u66f4\u63db", -"Find": "\u641c\u5c0b", -"Replace all": "\u66ff\u63db\u5168\u90e8", -"Match case": "\u76f8\u5339\u914d\u6848\u4ef6", -"Prev": "\u4e0a\u4e00\u500b", -"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5", -"Finish": "\u5b8c\u6210", -"Ignore all": "\u5ffd\u7565\u6240\u6709", -"Ignore": "\u5ffd\u7565", -"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d", -"Rows": "\u5217", -"Height": "\u9ad8\u5ea6", -"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c", -"Alignment": "\u5c0d\u9f4a", -"Column group": "\u6b04\u4f4d\u7fa4\u7d44", -"Row": "\u5217", -"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d", -"Split cell": "\u5206\u5272\u5132\u5b58\u683c", -"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd", -"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd", -"Row type": "\u884c\u7684\u985e\u578b", -"Insert table": "\u63d2\u5165\u8868\u683c", -"Body": "\u4e3b\u9ad4", -"Caption": "\u8868\u683c\u6a19\u984c", -"Footer": "\u9801\u5c3e", -"Delete row": "\u522a\u9664\u5217", -"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d", -"Scope": "\u7bc4\u570d", -"Delete table": "\u522a\u9664\u8868\u683c", -"Header cell": "\u6a19\u982d\u5132\u5b58\u683c", -"Column": "\u884c", -"Cell": "\u5132\u5b58\u683c", -"Header": "\u6a19\u982d", -"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b", -"Copy row": "\u8907\u88fd\u5217", -"Row properties": "\u5217\u5c6c\u6027", -"Table properties": "\u8868\u683c\u5c6c\u6027", -"Row group": "\u5217\u7fa4\u7d44", -"Right": "\u53f3\u908a", -"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c", -"Cols": "\u6b04\u4f4d\u6bb5", -"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c", -"Width": "\u5bec\u5ea6", -"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027", -"Left": "\u5de6\u908a", -"Cut row": "\u526a\u4e0b\u5217", -"Delete column": "\u522a\u9664\u884c", -"Center": "\u4e2d\u9593", -"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c", -"Insert template": "\u63d2\u5165\u6a23\u7248", -"Templates": "\u6a23\u7248", -"Background color": "\u80cc\u666f\u984f\u8272", -"Text color": "\u6587\u5b57\u984f\u8272", -"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a", -"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143", -"Words: {0}": "\u5b57\u6578\uff1a{0}", -"Insert": "\u63d2\u5165", -"File": "\u6a94\u6848", -"Edit": "\u7de8\u8f2f", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9", -"Tools": "\u5de5\u5177", -"View": "\u6aa2\u8996", -"Table": "\u8868\u683c", -"Format": "\u683c\u5f0f" -}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/license.txt b/Resources/public/vendor/tinymce/license.txt index 1837b0ac..b17fc904 100644 --- a/Resources/public/vendor/tinymce/license.txt +++ b/Resources/public/vendor/tinymce/license.txt @@ -1,5 +1,5 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA @@ -10,7 +10,7 @@ as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] - Preamble + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public @@ -112,7 +112,7 @@ modification follow. Pay close attention to the difference between a former contains code derived from the library, whereas the latter must be combined with the library in order to run. - GNU LESSER GENERAL PUBLIC LICENSE + GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other @@ -432,7 +432,7 @@ decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY + NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. @@ -455,7 +455,7 @@ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries diff --git a/Resources/public/vendor/tinymce/plugins/advlist/plugin.min.js b/Resources/public/vendor/tinymce/plugins/advlist/plugin.min.js index e734b1a0..c15325b9 100644 --- a/Resources/public/vendor/tinymce/plugins/advlist/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/advlist/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("advlist",function(t){function e(t,e){var n=[];return tinymce.each(e.split(/[ ,]/),function(t){n.push({text:t.replace(/\-/g," ").replace(/\b\w/g,function(t){return t.toUpperCase()}),data:"default"==t?"":t})}),n}function n(e,n){var o,l=t.dom,a=t.selection;o=l.getParent(a.getNode(),"ol,ul"),o&&o.nodeName==e&&n!==!1||t.execCommand("UL"==e?"InsertUnorderedList":"InsertOrderedList"),n=n===!1?i[e]:n,i[e]=n,o=l.getParent(a.getNode(),"ol,ul"),o&&n&&(l.setStyle(o,"listStyleType",n),o.removeAttribute("data-mce-style")),t.focus()}function o(e){var n=t.dom.getStyle(t.dom.getParent(t.selection.getNode(),"ol,ul"),"listStyleType")||"";e.control.items().each(function(t){t.active(t.settings.data===n)})}var l,a,i={};l=e("OL",t.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman")),a=e("UL",t.getParam("advlist_bullet_styles","default,circle,disc,square")),t.addButton("numlist",{type:"splitbutton",tooltip:"Numbered list",menu:l,onshow:o,onselect:function(t){n("OL",t.control.settings.data)},onclick:function(){n("OL",!1)}}),t.addButton("bullist",{type:"splitbutton",tooltip:"Bullet list",menu:a,onshow:o,onselect:function(t){n("UL",t.control.settings.data)},onclick:function(){n("UL",!1)}})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var n,t,e,r=tinymce.util.Tools.resolve("tinymce.PluginManager"),s=tinymce.util.Tools.resolve("tinymce.util.Tools"),c=function(n,t,e){var r="UL"===t?"InsertUnorderedList":"InsertOrderedList";n.execCommand(r,!1,!1===e?null:{"list-style-type":e})},o=function(n){return function(){return n}},u=o(!1),l=o(!0),i=function(){return a},a=(n=function(n){return n.isNone()},{fold:function(n,t){return n()},is:u,isSome:u,isNone:l,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:o(null),getOrUndefined:o(undefined),or:e,orThunk:t,map:i,each:function(){},bind:i,exists:u,forall:l,filter:i,equals:n,equals_:n,toArray:function(){return[]},toString:o("none()")}),f=function(e){var n=o(e),t=function(){return i},r=function(n){return n(e)},i={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:l,isNone:u,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return f(n(e))},each:function(n){n(e)},bind:r,exists:r,forall:r,filter:function(n){return n(e)?i:a},toArray:function(){return[e]},toString:function(){return"some("+e+")"},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(u,function(n){return t(e,n)})}};return i},d=function(n){return null===n||n===undefined?a:f(n)},g=function(n){return n&&/^(TH|TD)$/.test(n.nodeName)},p=function(r){return function(n){return n&&/^(OL|UL|DL)$/.test(n.nodeName)&&(e=n,(t=r).$.contains(t.getBody(),e));var t,e}},m=function(n,t,e){var r=function(n,t){for(var e=0;et&&(t=0),3==n.nodeType){var e=n.data.length;t>e&&(t=e)}return t}function o(n,t){f.setStart(n,i(n,t))}function r(n,t){f.setEnd(n,i(n,t))}var f,d,a,s,c,l,u,g,h,C;if(f=n.selection.getRng(!0).cloneRange(),f.startOffset<5){if(g=f.endContainer.previousSibling,!g){if(!f.endContainer.firstChild||!f.endContainer.firstChild.nextSibling)return;g=f.endContainer.firstChild.nextSibling}if(h=g.length,o(g,h),r(g,h),f.endOffset<5)return;d=f.endOffset,s=g}else{if(s=f.endContainer,3!=s.nodeType&&s.firstChild){for(;3!=s.nodeType&&s.firstChild;)s=s.firstChild;3==s.nodeType&&(o(s,0),r(s,s.nodeValue.length))}d=1==f.endOffset?2:f.endOffset-1-t}a=d;do o(s,d>=2?d-2:0),r(s,d>=1?d-1:0),d-=1,C=f.toString();while(" "!=C&&""!==C&&160!=C.charCodeAt(0)&&d-2>=0&&C!=e);f.toString()==e||160==f.toString().charCodeAt(0)?(o(s,d),r(s,a),d+=1):0===f.startOffset?(o(s,0),r(s,a)):(o(s,d),r(s,a)),l=f.toString(),"."==l.charAt(l.length-1)&&r(s,a-1),l=f.toString(),u=l.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i),u&&("www."==u[1]?u[1]="http://www.":/@$/.test(u[1])&&!/^mailto:/.test(u[1])&&(u[1]="mailto:"+u[1]),c=n.selection.getBookmark(),n.selection.setRng(f),n.execCommand("createlink",!1,u[1]+u[2]),n.selection.moveToBookmark(c),n.nodeChanged())}var r;return n.on("keydown",function(t){return 13==t.keyCode?i(n):void 0}),tinymce.Env.ie?void n.on("focus",function(){if(!r){r=!0;try{n.execCommand("AutoUrlDetect",!1,!0)}catch(t){}}}):(n.on("keypress",function(e){return 41==e.keyCode?t(n):void 0}),void n.on("keyup",function(t){return 32==t.keyCode?e(n):void 0}))}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=tinymce.util.Tools.resolve("tinymce.Env"),o=function(e,t){if(t<0&&(t=0),3===e.nodeType){var n=e.data.length;n=d)&&(d=tinymce.Env.ie?g.scrollHeight:tinymce.Env.webkit&&0===g.clientHeight?0:g.offsetHeight),d>n.autoresize_min_height&&(l=d),n.autoresize_max_height&&d>n.autoresize_max_height?(l=n.autoresize_max_height,g.style.overflowY="auto",m.style.overflowY="auto"):(g.style.overflowY="hidden",m.style.overflowY="hidden",g.scrollTop=0),l!==a&&(r=l-a,y.setStyle(e.iframeElement,"height",l+"px"),a=l,tinymce.isWebKit&&0>r&&i(o))}}function o(e,t,n){setTimeout(function(){i({}),e--?o(e,t,n):n&&n()},t)}var n=e.settings,a=0;e.settings.inline||(n.autoresize_min_height=parseInt(e.getParam("autoresize_min_height",e.getElement().offsetHeight),10),n.autoresize_max_height=parseInt(e.getParam("autoresize_max_height",0),10),e.on("init",function(){var t=e.getParam("autoresize_overflow_padding",1);e.dom.setStyles(e.getBody(),{paddingBottom:e.getParam("autoresize_bottom_margin",50),paddingLeft:t,paddingRight:t})}),e.on("nodechange setcontent keyup FullscreenStateChanged",i),e.getParam("autoresize_on_init",!0)&&e.on("init",function(){o(20,100,function(){o(5,1e3)})}),e.addCommand("mceAutoResize",i))}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),h=tinymce.util.Tools.resolve("tinymce.Env"),r=tinymce.util.Tools.resolve("tinymce.util.Delay"),v=function(e){return e.getParam("min_height",e.getElement().offsetHeight,"number")},s=function(e,t,n,i,o){r.setEditorTimeout(e,function(){b(e,t),n--?s(e,t,n,i,o):o&&o()},i)},y=function(e,t){var n=e.getBody();n&&(n.style.overflowY=t?"":"hidden",t||(n.scrollTop=0))},p=function(e,t,n,i){var o=parseInt(e.getStyle(t,n,i),10);return isNaN(o)?0:o},b=function(e,t){var n,i,o,r=e.dom,a=e.getDoc();if(a)if((s=e).plugins.fullscreen&&s.plugins.fullscreen.isFullscreen())y(e,!0);else{var s,u=a.documentElement,g=e.getParam("autoresize_bottom_margin",50,"number");i=v(e);var l=p(r,u,"margin-top",!0),f=p(r,u,"margin-bottom",!0);(o=u.offsetHeight+l+f+g)<0&&(o=0);var c=e.getContainer().offsetHeight-e.getContentAreaContainer().offsetHeight;o+c>v(e)&&(i=o+c);var m=e.getParam("max_height",0,"number");if(m&&mm.autosave_retention?(a(!1),!1):!0}function a(t){v.removeItem(c+"draft"),v.removeItem(c+"time"),t!==!1&&e.fire("RemoveDraft")}function r(){!f()&&e.isDirty()&&(v.setItem(c+"draft",e.getContent({format:"raw",no_events:!0})),v.setItem(c+"time",(new Date).getTime()),e.fire("StoreDraft"))}function o(){n()&&(e.setContent(v.getItem(c+"draft"),{format:"raw"}),e.fire("RestoreDraft"))}function i(){d||(setInterval(function(){e.removed||r()},m.autosave_interval),d=!0)}function s(){var t=this;t.disabled(!n()),e.on("StoreDraft RestoreDraft RemoveDraft",function(){t.disabled(!n())}),i()}function u(){e.undoManager.beforeChange(),o(),a(),e.undoManager.add()}function f(t){var n=e.settings.forced_root_block;return t=tinymce.trim("undefined"==typeof t?e.getBody().innerHTML:t),""===t||new RegExp("^<"+n+"[^>]*>(( | |[ ]|]*>)+?|)|
$","i").test(t)}var c,d,m=e.settings,v=tinymce.util.LocalStorage;c=m.autosave_prefix||"tinymce-autosave-{path}{query}-{id}-",c=c.replace(/\{path\}/g,document.location.pathname),c=c.replace(/\{query\}/g,document.location.search),c=c.replace(/\{id\}/g,e.id),m.autosave_interval=t(m.autosave_interval,"30s"),m.autosave_retention=t(m.autosave_retention,"20m"),e.addButton("restoredraft",{title:"Restore last draft",onclick:u,onPostRender:s}),e.addMenuItem("restoredraft",{text:"Restore last draft",onclick:u,onPostRender:s,context:"file"}),e.settings.autosave_restore_when_empty!==!1&&(e.on("init",function(){n()&&f()&&o()}),e.on("saveContent",function(){a()})),window.onbeforeunload=tinymce._beforeUnloadHandler,this.hasDraft=n,this.storeDraft=r,this.restoreDraft=o,this.removeDraft=a,this.isEmpty=f}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(r){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=tinymce.util.Tools.resolve("tinymce.util.Delay"),o=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),a=tinymce.util.Tools.resolve("tinymce.util.Tools"),i=function(t,e){var r=t||e,n=/^(\d+)([ms]?)$/.exec(""+r);return(n[2]?{s:1e3,m:6e4}[n[2]]:1)*parseInt(r,10)},u=function(t){var e=r.document.location;return t.getParam("autosave_prefix","tinymce-autosave-{path}{query}{hash}-{id}-").replace(/{path}/g,e.pathname).replace(/{query}/g,e.search).replace(/{hash}/g,e.hash).replace(/{id}/g,t.id)},s=function(t,e){var r=t.settings.forced_root_block;return""===(e=a.trim(void 0===e?t.getBody().innerHTML:e))||new RegExp("^<"+r+"[^>]*>((\xa0| |[ \t]|]*>)+?|)|
$","i").test(e)},f=function(t){var e=parseInt(o.getItem(u(t)+"time"),10)||0;return!((new Date).getTime()-e>i(t.settings.autosave_retention,"20m"))||(c(t,!1),!1)},c=function(t,e){var r=u(t);o.removeItem(r+"draft"),o.removeItem(r+"time"),!1!==e&&t.fire("RemoveDraft")},m=function(t){var e=u(t);!s(t)&&t.isDirty()&&(o.setItem(e+"draft",t.getContent({format:"raw",no_events:!0})),o.setItem(e+"time",(new Date).getTime().toString()),t.fire("StoreDraft"))},l=function(t){var e=u(t);f(t)&&(t.setContent(o.getItem(e+"draft"),{format:"raw"}),t.fire("RestoreDraft"))},v=function(t){var e=i(t.settings.autosave_interval,"30s");n.setInterval(function(){t.removed||m(t)},e)},d=function(t){t.undoManager.transact(function(){l(t),c(t)}),t.focus()},g=tinymce.util.Tools.resolve("tinymce.EditorManager"),y=function(r){return function(t){t.setDisabled(!f(r));var e=function(){return t.setDisabled(!f(r))};return r.on("StoreDraft RestoreDraft RemoveDraft",e),function(){return r.off("StoreDraft RestoreDraft RemoveDraft",e)}}};!function e(){t.add("autosave",function(t){var e,r;return t.editorManager.on("BeforeUnload",function(t){var e;a.each(g.get(),function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e&&(t.preventDefault(),t.returnValue=e)}),v(e=t),e.ui.registry.addButton("restoredraft",{tooltip:"Restore last draft",icon:"restore-draft",onAction:function(){d(e)},onSetup:y(e)}),e.ui.registry.addMenuItem("restoredraft",{text:"Restore last draft",icon:"restore-draft",onAction:function(){d(e)},onSetup:y(e)}),t.on("init",function(){t.getParam("autosave_restore_when_empty",!1)&&t.dom.isEmpty(t.getBody())&&l(t)}),r=t,{hasDraft:function(){return f(r)},storeDraft:function(){return m(r)},restoreDraft:function(){return l(r)},removeDraft:function(t){return c(r,t)},isEmpty:function(t){return s(r,t)}}})}()}(window); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/bbcode/plugin.min.js b/Resources/public/vendor/tinymce/plugins/bbcode/plugin.min.js index 78c37cd1..f585583d 100644 --- a/Resources/public/vendor/tinymce/plugins/bbcode/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/bbcode/plugin.min.js @@ -1 +1,9 @@ -!function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(o){var e=this,t=o.getParam("bbcode_dialect","punbb").toLowerCase();o.on("beforeSetContent",function(o){o.content=e["_"+t+"_bbcode2html"](o.content)}),o.on("postProcess",function(o){o.set&&(o.content=e["_"+t+"_bbcode2html"](o.content)),o.get&&(o.content=e["_"+t+"_html2bbcode"](o.content))})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://www.tinymce.com",infourl:"http://www.tinymce.com/wiki.php/Plugin:bbcode"}},_punbb_html2bbcode:function(o){function e(e,t){o=o.replace(e,t)}return o=tinymce.trim(o),e(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"),e(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),e(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),e(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),e(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),e(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"),e(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"),e(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"),e(/(.*?)<\/font>/gi,"$1"),e(//gi,"[img]$1[/img]"),e(/(.*?)<\/span>/gi,"[code]$1[/code]"),e(/(.*?)<\/span>/gi,"[quote]$1[/quote]"),e(/(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),e(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),e(/(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),e(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),e(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),e(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),e(/<\/(strong|b)>/gi,"[/b]"),e(/<(strong|b)>/gi,"[b]"),e(/<\/(em|i)>/gi,"[/i]"),e(/<(em|i)>/gi,"[i]"),e(/<\/u>/gi,"[/u]"),e(/(.*?)<\/span>/gi,"[u]$1[/u]"),e(//gi,"[u]"),e(/]*>/gi,"[quote]"),e(/<\/blockquote>/gi,"[/quote]"),e(/
/gi,"\n"),e(//gi,"\n"),e(/
/gi,"\n"),e(/

/gi,""),e(/<\/p>/gi,"\n"),e(/ |\u00a0/gi," "),e(/"/gi,'"'),e(/</gi,"<"),e(/>/gi,">"),e(/&/gi,"&"),o},_punbb_bbcode2html:function(o){function e(e,t){o=o.replace(e,t)}return o=tinymce.trim(o),e(/\n/gi,"
"),e(/\[b\]/gi,""),e(/\[\/b\]/gi,""),e(/\[i\]/gi,""),e(/\[\/i\]/gi,""),e(/\[u\]/gi,""),e(/\[\/u\]/gi,""),e(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'$2'),e(/\[url\](.*?)\[\/url\]/gi,'$1'),e(/\[img\](.*?)\[\/img\]/gi,''),e(/\[color=(.*?)\](.*?)\[\/color\]/gi,'$2'),e(/\[code\](.*?)\[\/code\]/gi,'$1 '),e(/\[quote.*?\](.*?)\[\/quote\]/gi,'$1 '),o}}),tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)}(); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager"),e=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(t){t=e.trim(t);var o=function(o,e){t=t.replace(o,e)};return o(/\n/gi,"
"),o(/\[b\]/gi,""),o(/\[\/b\]/gi,""),o(/\[i\]/gi,""),o(/\[\/i\]/gi,""),o(/\[u\]/gi,""),o(/\[\/u\]/gi,""),o(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'$2'),o(/\[url\](.*?)\[\/url\]/gi,'$1'),o(/\[img\](.*?)\[\/img\]/gi,''),o(/\[color=(.*?)\](.*?)\[\/color\]/gi,'$2'),o(/\[code\](.*?)\[\/code\]/gi,'$1 '),o(/\[quote.*?\](.*?)\[\/quote\]/gi,'$1 '),t};!function i(){o.add("bbcode",function(o){o.on("BeforeSetContent",function(o){o.content=t(o.content)}),o.on("PostProcess",function(o){o.set&&(o.content=t(o.content)),o.get&&(o.content=function(t){t=e.trim(t);var o=function(o,e){t=t.replace(o,e)};return o(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"),o(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"),o(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"),o(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"),o(/(.*?)<\/font>/gi,"$1"),o(//gi,"[img]$1[/img]"),o(/(.*?)<\/span>/gi,"[code]$1[/code]"),o(/(.*?)<\/span>/gi,"[quote]$1[/quote]"),o(/(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),o(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),o(/(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),o(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),o(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),o(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),o(/<\/(strong|b)>/gi,"[/b]"),o(/<(strong|b)>/gi,"[b]"),o(/<\/(em|i)>/gi,"[/i]"),o(/<(em|i)>/gi,"[i]"),o(/<\/u>/gi,"[/u]"),o(/(.*?)<\/span>/gi,"[u]$1[/u]"),o(//gi,"[u]"),o(/]*>/gi,"[quote]"),o(/<\/blockquote>/gi,"[/quote]"),o(/
/gi,"\n"),o(//gi,"\n"),o(/
/gi,"\n"),o(/

/gi,""),o(/<\/p>/gi,"\n"),o(/ |\u00a0/gi," "),o(/"/gi,'"'),o(/</gi,"<"),o(/>/gi,">"),o(/&/gi,"&"),t}(o.content))})})}()}(); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/charmap/plugin.min.js b/Resources/public/vendor/tinymce/plugins/charmap/plugin.min.js index 46fce44b..d1849507 100644 --- a/Resources/public/vendor/tinymce/plugins/charmap/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/charmap/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("charmap",function(e){function a(){function a(e){for(;e;){if("TD"==e.nodeName)return e;e=e.parentNode}}var t,r,o,n;t='';var l=25;for(o=0;10>o;o++){for(t+="",r=0;l>r;r++){var s=i[o*l+r];t+='"}t+=""}t+="";var c={type:"container",html:t,onclick:function(a){var i=a.target;"TD"==i.tagName&&(i=i.firstChild),"DIV"==i.tagName&&(e.execCommand("mceInsertContent",!1,i.firstChild.data),a.ctrlKey||n.close())},onmouseover:function(e){var i=a(e.target);i&&n.find("#preview").text(i.firstChild.firstChild.data)}};n=e.windowManager.open({title:"Special character",spacing:10,padding:10,items:[c,{type:"label",name:"preview",text:" ",style:"font-size: 40px; text-align: center",border:1,minWidth:100,minHeight:80}],buttons:[{text:"Close",onclick:function(){n.close()}}]})}var i=[["160","no-break space"],["38","ampersand"],["34","quotation mark"],["162","cent sign"],["8364","euro sign"],["163","pound sign"],["165","yen sign"],["169","copyright sign"],["174","registered sign"],["8482","trade mark sign"],["8240","per mille sign"],["181","micro sign"],["183","middle dot"],["8226","bullet"],["8230","three dot leader"],["8242","minutes / feet"],["8243","seconds / inches"],["167","section sign"],["182","paragraph sign"],["223","sharp s / ess-zed"],["8249","single left-pointing angle quotation mark"],["8250","single right-pointing angle quotation mark"],["171","left pointing guillemet"],["187","right pointing guillemet"],["8216","left single quotation mark"],["8217","right single quotation mark"],["8220","left double quotation mark"],["8221","right double quotation mark"],["8218","single low-9 quotation mark"],["8222","double low-9 quotation mark"],["60","less-than sign"],["62","greater-than sign"],["8804","less-than or equal to"],["8805","greater-than or equal to"],["8211","en dash"],["8212","em dash"],["175","macron"],["8254","overline"],["164","currency sign"],["166","broken bar"],["168","diaeresis"],["161","inverted exclamation mark"],["191","turned question mark"],["710","circumflex accent"],["732","small tilde"],["176","degree sign"],["8722","minus sign"],["177","plus-minus sign"],["247","division sign"],["8260","fraction slash"],["215","multiplication sign"],["185","superscript one"],["178","superscript two"],["179","superscript three"],["188","fraction one quarter"],["189","fraction one half"],["190","fraction three quarters"],["402","function / florin"],["8747","integral"],["8721","n-ary sumation"],["8734","infinity"],["8730","square root"],["8764","similar to"],["8773","approximately equal to"],["8776","almost equal to"],["8800","not equal to"],["8801","identical to"],["8712","element of"],["8713","not an element of"],["8715","contains as member"],["8719","n-ary product"],["8743","logical and"],["8744","logical or"],["172","not sign"],["8745","intersection"],["8746","union"],["8706","partial differential"],["8704","for all"],["8707","there exists"],["8709","diameter"],["8711","backward difference"],["8727","asterisk operator"],["8733","proportional to"],["8736","angle"],["180","acute accent"],["184","cedilla"],["170","feminine ordinal indicator"],["186","masculine ordinal indicator"],["8224","dagger"],["8225","double dagger"],["192","A - grave"],["193","A - acute"],["194","A - circumflex"],["195","A - tilde"],["196","A - diaeresis"],["197","A - ring above"],["198","ligature AE"],["199","C - cedilla"],["200","E - grave"],["201","E - acute"],["202","E - circumflex"],["203","E - diaeresis"],["204","I - grave"],["205","I - acute"],["206","I - circumflex"],["207","I - diaeresis"],["208","ETH"],["209","N - tilde"],["210","O - grave"],["211","O - acute"],["212","O - circumflex"],["213","O - tilde"],["214","O - diaeresis"],["216","O - slash"],["338","ligature OE"],["352","S - caron"],["217","U - grave"],["218","U - acute"],["219","U - circumflex"],["220","U - diaeresis"],["221","Y - acute"],["376","Y - diaeresis"],["222","THORN"],["224","a - grave"],["225","a - acute"],["226","a - circumflex"],["227","a - tilde"],["228","a - diaeresis"],["229","a - ring above"],["230","ligature ae"],["231","c - cedilla"],["232","e - grave"],["233","e - acute"],["234","e - circumflex"],["235","e - diaeresis"],["236","i - grave"],["237","i - acute"],["238","i - circumflex"],["239","i - diaeresis"],["240","eth"],["241","n - tilde"],["242","o - grave"],["243","o - acute"],["244","o - circumflex"],["245","o - tilde"],["246","o - diaeresis"],["248","o slash"],["339","ligature oe"],["353","s - caron"],["249","u - grave"],["250","u - acute"],["251","u - circumflex"],["252","u - diaeresis"],["253","y - acute"],["254","thorn"],["255","y - diaeresis"],["913","Alpha"],["914","Beta"],["915","Gamma"],["916","Delta"],["917","Epsilon"],["918","Zeta"],["919","Eta"],["920","Theta"],["921","Iota"],["922","Kappa"],["923","Lambda"],["924","Mu"],["925","Nu"],["926","Xi"],["927","Omicron"],["928","Pi"],["929","Rho"],["931","Sigma"],["932","Tau"],["933","Upsilon"],["934","Phi"],["935","Chi"],["936","Psi"],["937","Omega"],["945","alpha"],["946","beta"],["947","gamma"],["948","delta"],["949","epsilon"],["950","zeta"],["951","eta"],["952","theta"],["953","iota"],["954","kappa"],["955","lambda"],["956","mu"],["957","nu"],["958","xi"],["959","omicron"],["960","pi"],["961","rho"],["962","final sigma"],["963","sigma"],["964","tau"],["965","upsilon"],["966","phi"],["967","chi"],["968","psi"],["969","omega"],["8501","alef symbol"],["982","pi symbol"],["8476","real part symbol"],["978","upsilon - hook symbol"],["8472","Weierstrass p"],["8465","imaginary part"],["8592","leftwards arrow"],["8593","upwards arrow"],["8594","rightwards arrow"],["8595","downwards arrow"],["8596","left right arrow"],["8629","carriage return"],["8656","leftwards double arrow"],["8657","upwards double arrow"],["8658","rightwards double arrow"],["8659","downwards double arrow"],["8660","left right double arrow"],["8756","therefore"],["8834","subset of"],["8835","superset of"],["8836","not a subset of"],["8838","subset of or equal to"],["8839","superset of or equal to"],["8853","circled plus"],["8855","circled times"],["8869","perpendicular"],["8901","dot operator"],["8968","left ceiling"],["8969","right ceiling"],["8970","left floor"],["8971","right floor"],["9001","left-pointing angle bracket"],["9002","right-pointing angle bracket"],["9674","lozenge"],["9824","black spade suit"],["9827","black club suit"],["9829","black heart suit"],["9830","black diamond suit"],["8194","en space"],["8195","em space"],["8201","thin space"],["8204","zero width non-joiner"],["8205","zero width joiner"],["8206","left-to-right mark"],["8207","right-to-left mark"],["173","soft hyphen"]];e.addButton("charmap",{icon:"charmap",tooltip:"Special character",onclick:a}),e.addMenuItem("charmap",{icon:"charmap",text:"Special character",onclick:a,context:"insert"})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(s){"use strict";var e,n,r,t,a=tinymce.util.Tools.resolve("tinymce.PluginManager"),l=function(e,n){var r,t=(r=n,e.fire("insertCustomChar",{chr:r}).chr);e.execCommand("mceInsertContent",!1,t)},i=tinymce.util.Tools.resolve("tinymce.util.Tools"),o=function(e){return function(){return e}},c=o(!1),u=o(!0),g=function(){return m},m=(e=function(e){return e.isNone()},{fold:function(e,n){return e()},is:c,isSome:c,isNone:u,getOr:r=function(e){return e},getOrThunk:n=function(e){return e()},getOrDie:function(e){throw new Error(e||"error: getOrDie called on none.")},getOrNull:o(null),getOrUndefined:o(undefined),or:r,orThunk:n,map:g,each:function(){},bind:g,exists:c,forall:u,filter:g,equals:e,equals_:e,toArray:function(){return[]},toString:o("none()")}),f=function(r){var e=o(r),n=function(){return a},t=function(e){return e(r)},a={fold:function(e,n){return n(r)},is:function(e){return r===e},isSome:u,isNone:c,getOr:e,getOrThunk:e,getOrDie:e,getOrNull:e,getOrUndefined:e,or:n,orThunk:n,map:function(e){return f(e(r))},each:function(e){e(r)},bind:t,exists:t,forall:t,filter:function(e){return e(r)?a:m},toArray:function(){return[r]},toString:function(){return"some("+r+")"},equals:function(e){return e.is(r)},equals_:function(e,n){return e.fold(c,function(e){return n(r,e)})}};return a},h={some:f,none:g,from:function(e){return null===e||e===undefined?m:f(e)}},d=(t="array",function(e){return r=typeof(n=e),(null===n?"null":"object"==r&&(Array.prototype.isPrototypeOf(n)||n.constructor&&"Array"===n.constructor.name)?"array":"object"==r&&(String.prototype.isPrototypeOf(n)||n.constructor&&"String"===n.constructor.name)?"string":r)===t;var n,r}),p=Array.prototype.push,y=function(e,n){for(var r=e.length,t=new Array(r),a=0;a>>0===o))throw RangeError("Invalid code point: "+o);16383<=(o<=65535?r.push(o):(o-=65536,r.push(55296+(o>>10),o%1024+56320)))&&(t+=String.fromCharCode.apply(null,r),r.length=0)}return t+String.fromCharCode.apply(null,r)},T=function(e,n){var a=[],i=n.toLowerCase();return function(e,n){for(var r=0,t=e.length;r>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?/,number:/(?:\b0x(?:[\da-f]+\.?[\da-f]*|\.[\da-f]+)(?:p[+-]?\d+)?|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?)[ful]*/i}),Prism.languages.insertBefore("c","string",{macro:{pattern:/(^\s*)#\s*[a-z]+(?:[^\r\n\\]|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,alias:"property",inside:{string:{pattern:/(#\s*include\s*)(?:<.+?>|("|')(?:\\?.)+?\2)/,lookbehind:!0},directive:{pattern:/(#\s*)\b(?:define|defined|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,lookbehind:!0,alias:"keyword"}}},constant:/\b(?:__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|stdin|stdout|stderr)\b/}),delete Prism.languages.c["boolean"]},{}],2:[function(e,n,t){Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|interface|extends|implements|trait|instanceof|new)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(?:true|false)\b/,"function":/\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}},{}],3:[function(e,t,n){(function(e){var n=function(u){var c=/\blang(?:uage)?-([\w-]+)\b/i,n=0,C={manual:u.Prism&&u.Prism.manual,disableWorkerMessageHandler:u.Prism&&u.Prism.disableWorkerMessageHandler,util:{encode:function(e){return e instanceof O?new O(e.type,C.util.encode(e.content),e.alias):Array.isArray(e)?e.map(C.util.encode):e.replace(/&/g,"&").replace(/e.length)return;if(!(w instanceof O)){if(g&&b!=n.length-1){if(c.lastIndex=y,!(P=c.exec(e)))break;for(var v=P.index+(p&&P[1]?P[1].length:0),k=P.index+P[0].length,x=b,_=y,F=n.length;x"+t.content+""},!u.document)return u.addEventListener&&(C.disableWorkerMessageHandler||u.addEventListener("message",function(e){var n=JSON.parse(e.data),t=n.language,a=n.code,r=n.immediateClose;u.postMessage(C.highlight(a,C.languages[t],t)),r&&u.close()},!1)),C;var e=C.util.currentScript();if(e&&(C.filename=e.src,e.hasAttribute("data-manual")&&(C.manual=!0)),!C.manual){var t=function(){C.manual||C.highlightAll()},a=document.readyState;"loading"===a||"interactive"===a&&e&&e.defer?document.addEventListener("DOMContentLoaded",t):window.requestAnimationFrame?window.requestAnimationFrame(t):window.setTimeout(t,16)}return C}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});void 0!==t&&t.exports&&(t.exports=n),void 0!==e&&(e.Prism=n)}).call(this,void 0!==y?y:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],4:[function(e,n,t){Prism.languages.cpp=Prism.languages.extend("c",{"class-name":{pattern:/(\b(?:class|enum|struct)\s+)\w+/,lookbehind:!0},keyword:/\b(?:alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|class|compl|const|constexpr|const_cast|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|float|for|friend|goto|if|inline|int|int8_t|int16_t|int32_t|int64_t|uint8_t|uint16_t|uint32_t|uint64_t|long|mutable|namespace|new|noexcept|nullptr|operator|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,number:{pattern:/(?:\b0b[01']+|\b0x(?:[\da-f']+\.?[\da-f']*|\.[\da-f']+)(?:p[+-]?[\d']+)?|(?:\b[\d']+\.?[\d']*|\B\.[\d']+)(?:e[+-]?[\d']+)?)[ful]*/i,greedy:!0},operator:/>>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/,"boolean":/\b(?:true|false)\b/}),Prism.languages.insertBefore("cpp","string",{"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}})},{}],5:[function(e,n,t){Prism.languages.csharp=Prism.languages.extend("clike",{keyword:/\b(?:abstract|add|alias|as|ascending|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|descending|do|double|dynamic|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|from|get|global|goto|group|if|implicit|in|int|interface|internal|into|is|join|let|lock|long|namespace|new|null|object|operator|orderby|out|override|params|partial|private|protected|public|readonly|ref|remove|return|sbyte|sealed|select|set|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|value|var|virtual|void|volatile|where|while|yield)\b/,string:[{pattern:/@("|')(?:\1\1|\\[\s\S]|(?!\1)[^\\])*\1/,greedy:!0},{pattern:/("|')(?:\\.|(?!\1)[^\\\r\n])*?\1/,greedy:!0}],"class-name":[{pattern:/\b[A-Z]\w*(?:\.\w+)*\b(?=\s+\w+)/,inside:{punctuation:/\./}},{pattern:/(\[)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/(\b(?:class|interface)\s+[A-Z]\w*(?:\.\w+)*\s*:\s*)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/((?:\b(?:class|interface|new)\s+)|(?:catch\s+\())[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}}],number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)f?/i,operator:/>>=?|<<=?|[-=]>|([-+&|?])\1|~|[-+*/%&|^!=<>]=?/,punctuation:/\?\.?|::|[{}[\];(),.:]/}),Prism.languages.insertBefore("csharp","class-name",{"generic-method":{pattern:/\w+\s*<[^>\r\n]+?>\s*(?=\()/,inside:{"function":/^\w+/,"class-name":{pattern:/\b[A-Z]\w*(?:\.\w+)*\b/,inside:{punctuation:/\./}},keyword:Prism.languages.csharp.keyword,punctuation:/[<>(),.:]/}},preprocessor:{pattern:/(^\s*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(\s*#)\b(?:define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}}),Prism.languages.dotnet=Prism.languages.cs=Prism.languages.csharp},{}],6:[function(e,n,t){!function(e){var n=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+[\s\S]*?(?:;|(?=\s*\{))/,inside:{rule:/@[\w-]+/}},url:{pattern:RegExp("url\\((?:"+n.source+"|[^\n\r()]*)\\)","i"),inside:{"function":/^url/i,punctuation:/^\(|\)$/}},selector:RegExp("[^{}\\s](?:[^{};\"']|"+n.source+")*?(?=\\s*\\{)"),string:{pattern:n,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var t=e.languages.markup;t&&(t.tag.addInlined("style","css"),e.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:t.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:e.languages.css}},alias:"language-css"}},t.tag))}(Prism)},{}],7:[function(e,n,t){var a,r,i;a=Prism,r=/\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|null|open|opens|package|private|protected|provides|public|requires|return|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/,i=/\b[A-Z](?:\w*[a-z]\w*)?\b/,a.languages.java=a.languages.extend("clike",{"class-name":[i,/\b[A-Z]\w*(?=\s+\w+\s*[;,=())])/],keyword:r,"function":[a.languages.clike["function"],{pattern:/(\:\:)[a-z_]\w*/,lookbehind:!0}],number:/\b0b[01][01_]*L?\b|\b0x[\da-f_]*\.?[\da-f_p+-]+\b|(?:\b\d[\d_]*\.?[\d_]*|\B\.\d[\d_]*)(?:e[+-]?\d[\d_]*)?[dfl]?/i,operator:{pattern:/(^|[^.])(?:<<=?|>>>?=?|->|--|\+\+|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?)/m,lookbehind:!0}}),a.languages.insertBefore("java","string",{"triple-quoted-string":{pattern:/"""[ \t]*[\r\n](?:(?:"|"")?(?:\\.|[^"\\]))*"""/,greedy:!0,alias:"string"}}),a.languages.insertBefore("java","class-name",{annotation:{alias:"punctuation",pattern:/(^|[^.])@\w+/,lookbehind:!0},namespace:{pattern:/(\b(?:exports|import(?:\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\s+)[a-z]\w*(?:\.[a-z]\w*)+/,lookbehind:!0,inside:{punctuation:/\./}},generics:{pattern:/<(?:[\w\s,.&?]|<(?:[\w\s,.&?]|<(?:[\w\s,.&?]|<[\w\s,.&?]*>)*>)*>)*>/,inside:{"class-name":i,keyword:r,punctuation:/[<>(),.:]/,operator:/[?&|]/}}})},{}],8:[function(e,n,t){Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])[_$A-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\.(?:prototype|constructor))/,lookbehind:!0}],keyword:[{pattern:/((?:^|})\s*)(?:catch|finally)\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],number:/\b(?:(?:0[xX](?:[\dA-Fa-f](?:_[\dA-Fa-f])?)+|0[bB](?:[01](?:_[01])?)+|0[oO](?:[0-7](?:_[0-7])?)+)n?|(?:\d(?:_\d)?)+n|NaN|Infinity)\b|(?:\b(?:\d(?:_\d)?)+\.?(?:\d(?:_\d)?)*|\B\.(?:\d(?:_\d)?)+)(?:[Ee][+-]?(?:\d(?:_\d)?)+)?/,"function":/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,operator:/--|\+\+|\*\*=?|=>|&&|\|\||[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?[.?]?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*[\s\S]*?\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)?\s*\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=>)/i,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*\s*)\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}|(?!\${)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.js=Prism.languages.javascript},{}],9:[function(e,n,t){function b(e,n){return"___"+e.toUpperCase()+n+"___"}var y;y=Prism,Object.defineProperties(y.languages["markup-templating"]={},{buildPlaceholders:{value:function(a,r,e,i){if(a.language===r){var s=a.tokenStack=[];a.code=a.code.replace(e,function(e){if("function"==typeof i&&!i(e))return e;for(var n,t=s.length;-1!==a.code.indexOf(n=b(r,t));)++t;return s[t]=e,n}),a.grammar=y.languages.markup}}},tokenizePlaceholders:{value:function(p,g){if(p.language===g&&p.tokenStack){p.grammar=y.languages[g];var m=0,f=Object.keys(p.tokenStack);!function h(e){for(var n=0;n=f.length);n++){var t=e[n];if("string"==typeof t||t.content&&"string"==typeof t.content){var a=f[m],r=p.tokenStack[a],i="string"==typeof t?t:t.content,s=b(g,a),o=i.indexOf(s);if(-1/,prolog:/<\?[\s\S]+?\?>/,doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:(?!)*\]\s*)?>/i,greedy:!0},cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/i,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/i,inside:{punctuation:[/^=/,{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.hooks.add("wrap",function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))}),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(e,n){var t={};t["language-"+n]={pattern:/(^$)/i,lookbehind:!0,inside:Prism.languages[n]},t.cdata=/^$/i;var a={"included-cdata":{pattern://i,inside:t}};a["language-"+n]={pattern:/[\s\S]+/,inside:Prism.languages[n]};var r={};r[e]={pattern:RegExp(/(<__[\s\S]*?>)(?:\s*|[\s\S])*?(?=<\/__>)/.source.replace(/__/g,e),"i"),lookbehind:!0,greedy:!0,inside:a},Prism.languages.insertBefore("markup","cdata",r)}}),Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup},{}],11:[function(e,n,t){!function(n){n.languages.php=n.languages.extend("clike",{keyword:/\b(?:__halt_compiler|abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|eval|exit|extends|final|finally|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|namespace|new|or|parent|print|private|protected|public|require|require_once|return|static|switch|throw|trait|try|unset|use|var|while|xor|yield)\b/i,"boolean":{pattern:/\b(?:false|true)\b/i,alias:"constant"},constant:[/\b[A-Z_][A-Z0-9_]*\b/,/\b(?:null)\b/i],comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0}}),n.languages.insertBefore("php","string",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),n.languages.insertBefore("php","comment",{delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"}}),n.languages.insertBefore("php","keyword",{variable:/\$+(?:\w+\b|(?={))/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),n.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}});var e={pattern:/{\$(?:{(?:{[^{}]+}|[^{}]+)}|[^{}])+}|(^|[^\\{])\$+(?:\w+(?:\[.+?]|->\w+)*)/,lookbehind:!0,inside:n.languages.php};n.languages.insertBefore("php","string",{"nowdoc-string":{pattern:/<<<'([^']+)'(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;/,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},"heredoc-string":{pattern:/<<<(?:"([^"]+)"(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;|([a-z_]\w*)(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\2;)/i,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:e}},"single-quoted-string":{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0,alias:"string"},"double-quoted-string":{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,alias:"string",inside:{interpolation:e}}}),delete n.languages.php.string,n.hooks.add("before-tokenize",function(e){if(/<\?/.test(e.code)){n.languages["markup-templating"].buildPlaceholders(e,"php",/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#)(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|\/\*[\s\S]*?(?:\*\/|$))*?(?:\?>|$)/gi)}}),n.hooks.add("after-tokenize",function(e){n.languages["markup-templating"].tokenizePlaceholders(e,"php")})}(Prism)},{}],12:[function(e,n,t){Prism.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0},"string-interpolation":{pattern:/(?:f|rf|fr)(?:("""|''')[\s\S]+?\1|("|')(?:\\.|(?!\2)[^\\\r\n])*\2)/i,greedy:!0,inside:{interpolation:{pattern:/((?:^|[^{])(?:{{)*){(?!{)(?:[^{}]|{(?!{)(?:[^{}]|{(?!{)(?:[^{}])+})+})+}/,lookbehind:!0,inside:{"format-spec":{pattern:/(:)[^:(){}]+(?=}$)/,lookbehind:!0},"conversion-option":{pattern:/![sra](?=[:}]$)/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}},"triple-quoted-string":{pattern:/(?:[rub]|rb|br)?("""|''')[\s\S]+?\1/i,greedy:!0,alias:"string"},string:{pattern:/(?:[rub]|rb|br)?("|')(?:\\.|(?!\1)[^\\\r\n])*\1/i,greedy:!0},"function":{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_]\w*(?=\s*\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)\w+/i,lookbehind:!0},decorator:{pattern:/(^\s*)@\w+(?:\.\w+)*/im,lookbehind:!0,alias:["annotation","punctuation"],inside:{punctuation:/\./}},keyword:/\b(?:and|as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,"boolean":/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,operator:/[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,punctuation:/[{}[\];(),.:]/},Prism.languages.python["string-interpolation"].inside.interpolation.inside.rest=Prism.languages.python,Prism.languages.py=Prism.languages.python},{}],13:[function(e,n,t){!function(e){e.languages.ruby=e.languages.extend("clike",{comment:[/#.*/,{pattern:/^=begin\s[\s\S]*?^=end/m,greedy:!0}],"class-name":{pattern:/(\b(?:class)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|extend|for|if|in|include|module|new|next|nil|not|or|prepend|protected|private|public|raise|redo|require|rescue|retry|return|self|super|then|throw|undef|unless|until|when|while|yield)\b/});var n={pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"tag"},rest:e.languages.ruby}};delete e.languages.ruby["function"],e.languages.insertBefore("ruby","keyword",{regex:[{pattern:/%r([^a-zA-Z0-9\s{(\[<])(?:(?!\1)[^\\]|\\[\s\S])*\1[gim]{0,3}/,greedy:!0,inside:{interpolation:n}},{pattern:/%r\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/,greedy:!0,inside:{interpolation:n}},{pattern:/%r\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/,greedy:!0,inside:{interpolation:n}},{pattern:/%r\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/,greedy:!0,inside:{interpolation:n}},{pattern:/%r<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/,greedy:!0,inside:{interpolation:n}},{pattern:/(^|[^/])\/(?!\/)(?:\[.+?]|\\.|[^/\\\r\n])+\/[gim]{0,3}(?=\s*(?:$|[\r\n,.;})]))/,lookbehind:!0,greedy:!0}],variable:/[@$]+[a-zA-Z_]\w*(?:[?!]|\b)/,symbol:{pattern:/(^|[^:]):[a-zA-Z_]\w*(?:[?!]|\b)/,lookbehind:!0},"method-definition":{pattern:/(\bdef\s+)[\w.]+/,lookbehind:!0,inside:{"function":/\w+$/,rest:e.languages.ruby}}}),e.languages.insertBefore("ruby","number",{builtin:/\b(?:Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|Fixnum|Float|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/,constant:/\b[A-Z]\w*(?:[?!]|\b)/}),e.languages.ruby.string=[{pattern:/%[qQiIwWxs]?([^a-zA-Z0-9\s{(\[<])(?:(?!\1)[^\\]|\\[\s\S])*\1/,greedy:!0,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\((?:[^()\\]|\\[\s\S])*\)/,greedy:!0,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/,greedy:!0,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\[(?:[^\[\]\\]|\\[\s\S])*\]/,greedy:!0,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?<(?:[^<>\\]|\\[\s\S])*>/,greedy:!0,inside:{interpolation:n}},{pattern:/("|')(?:#\{[^}]+\}|\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0,inside:{interpolation:n}}],e.languages.rb=e.languages.ruby}(Prism)},{}],14:[function(e,n,t){var a=e("prismjs/components/prism-core");e("prismjs/components/prism-clike"),e("prismjs/components/prism-markup-templating"),e("prismjs/components/prism-c"),e("prismjs/components/prism-cpp"),e("prismjs/components/prism-csharp"),e("prismjs/components/prism-css"),e("prismjs/components/prism-java"),e("prismjs/components/prism-javascript"),e("prismjs/components/prism-markup"),e("prismjs/components/prism-php"),e("prismjs/components/prism-python"),e("prismjs/components/prism-ruby"),n.exports={boltExport:a}},{"prismjs/components/prism-c":1,"prismjs/components/prism-clike":2,"prismjs/components/prism-core":3,"prismjs/components/prism-cpp":4,"prismjs/components/prism-csharp":5,"prismjs/components/prism-css":6,"prismjs/components/prism-java":7,"prismjs/components/prism-javascript":8,"prismjs/components/prism-markup":10,"prismjs/components/prism-markup-templating":9,"prismjs/components/prism-php":11,"prismjs/components/prism-python":12,"prismjs/components/prism-ruby":13}]},{},[14])(14)});var r=window.Prism;window.Prism=e}(undefined,h,b,undefined);var w=b.exports.boltExport,v=function(e){return f.Prism&&e.getParam("codesample_global_prismjs",!1,"boolean")?f.Prism:w},k=function(e){var n=e.selection?e.selection.getNode():null;return g(n)?d.some(n):d.none()},x=function(i){var e,t,n=i.getParam("codesample_languages")||[{text:"HTML/XML",value:"markup"},{text:"JavaScript",value:"javascript"},{text:"CSS",value:"css"},{text:"PHP",value:"php"},{text:"Ruby",value:"ruby"},{text:"Python",value:"python"},{text:"Java",value:"java"},{text:"C",value:"c"},{text:"C#",value:"csharp"},{text:"C++",value:"cpp"}],a=(0===(e=n).length?d.none():d.some(e[0])).fold(function(){return""},function(e){return e.value}),r=(t=a,k(i).fold(function(){return t},function(e){var n=e.className.match(/language-(\w+)/);return n?n[1]:t})),s=k(i).fold(function(){return""},function(e){return e.textContent});i.windowManager.open({title:"Insert/Edit Code Sample",size:"large",body:{type:"panel",items:[{type:"selectbox",name:"language",label:"Language",items:n},{type:"textarea",name:"code",label:"Code view"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{language:r,code:s},onSubmit:function(e){var n,t,a,r=e.getData();n=i,t=r.language,a=r.code,n.undoManager.transact(function(){var e=k(n);return a=p.DOM.encode(a),e.fold(function(){n.insertContent('

'+a+"
"),n.selection.select(n.$("#__new").removeAttr("id")[0])},function(e){n.dom.setAttrib(e,"class","language-"+t),e.innerHTML=a,v(n).highlightElement(e),n.selection.select(e)})}),e.close()}})},_=function(a){a.ui.registry.addToggleButton("codesample",{icon:"code-sample",tooltip:"Insert/edit code sample",onAction:function(){return x(a)},onSetup:function(t){var e=function(){var e,n;t.setActive((n=(e=a).selection.getStart(),e.dom.is(n,'pre[class*="language-"]')))};return a.on("NodeChange",e),function(){return a.off("NodeChange",e)}}}),a.ui.registry.addMenuItem("codesample",{text:"Code sample...",icon:"code-sample",onAction:function(){return x(a)}})};!function F(){r.add("codesample",function(n){var t,r,a;r=(t=n).$,t.on("PreProcess",function(e){r("pre[contenteditable=false]",e.node).filter(m(g)).each(function(e,n){var t=r(n),a=n.textContent;t.attr("class",r.trim(t.attr("class"))),t.removeAttr("contentEditable"),t.empty().append(r("").each(function(){this.textContent=a}))})}),t.on("SetContent",function(){var e=r("pre").filter(m(g)).filter(function(e,n){return"false"!==n.contentEditable});e.length&&t.undoManager.transact(function(){e.each(function(e,n){r(n).find("br").each(function(e,n){n.parentNode.replaceChild(t.getDoc().createTextNode("\n"),n)}),n.contentEditable="false",n.innerHTML=t.dom.encode(n.textContent),v(t).highlightElement(n),n.className=r.trim(n.className)})})}),_(n),(a=n).addCommand("codesample",function(){var e=a.selection.getNode();a.selection.isCollapsed()||g(e)?x(a):a.formatter.toggle("code")}),n.on("dblclick",function(e){g(e.target)&&x(n)})})}()}(window); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/colorpicker/plugin.min.js b/Resources/public/vendor/tinymce/plugins/colorpicker/plugin.min.js index d50c7cc4..511ee714 100644 --- a/Resources/public/vendor/tinymce/plugins/colorpicker/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/colorpicker/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("colorpicker",function(e){function n(n,a){function i(e){var n=new tinymce.util.Color(e),a=n.toRgb();l.fromJSON({r:a.r,g:a.g,b:a.b,hex:n.toHex().substr(1)}),t(n.toHex())}function t(e){l.find("#preview")[0].getEl().style.background=e}var l=e.windowManager.open({title:"Color",items:{type:"container",layout:"flex",direction:"row",align:"stretch",padding:5,spacing:10,items:[{type:"colorpicker",value:a,onchange:function(){var e=this.rgb();l&&(l.find("#r").value(e.r),l.find("#g").value(e.g),l.find("#b").value(e.b),l.find("#hex").value(this.value().substr(1)),t(this.value()))}},{type:"form",padding:0,labelGap:5,defaults:{type:"textbox",size:7,value:"0",flex:1,spellcheck:!1,onchange:function(){var e,n,a=l.find("colorpicker")[0];return e=this.name(),n=this.value(),"hex"==e?(n="#"+n,i(n),void a.value(n)):(n={r:l.find("#r").value(),g:l.find("#g").value(),b:l.find("#b").value()},a.value(n),void i(n))}},items:[{name:"r",label:"R",autofocus:1},{name:"g",label:"G"},{name:"b",label:"B"},{name:"hex",label:"#",value:"000000"},{name:"preview",type:"container",border:1}]}]},onSubmit:function(){n("#"+this.toJSON().hex)}});i(a)}e.settings.color_picker_callback||(e.settings.color_picker_callback=n)}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/contextmenu/plugin.min.js b/Resources/public/vendor/tinymce/plugins/contextmenu/plugin.min.js index e21978e8..342155df 100644 --- a/Resources/public/vendor/tinymce/plugins/contextmenu/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/contextmenu/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("contextmenu",function(e){var t,n=e.settings.contextmenu_never_use_native;e.on("contextmenu",function(o){var i,c=e.getDoc();if(!o.ctrlKey||n){if(o.preventDefault(),tinymce.Env.mac&&tinymce.Env.webkit&&2==o.button&&c.caretRangeFromPoint&&e.selection.setRng(c.caretRangeFromPoint(o.x,o.y)),i=e.settings.contextmenu||"link image inserttable | cell row column deletetable",t)t.show();else{var a=[];tinymce.each(i.split(/[ ,]/),function(t){var n=e.menuItems[t];"|"==t&&(n={text:t}),n&&(n.shortcut="",a.push(n))});for(var r=0;rKx}s1_F$4FCWDA^8LW0018VEC2ui01^Na000Hw;3tYzX_jM3Qpv$_M?zI9i5=0S zX-{-uv=l3%&P0s%m9Ox_a(m_c|u z01g3U0`Wll5)poVdma=N8y<3f0Sf~hXmTC}2oxMW4FdxUj+z4<0}lrX2nP=qkDRIt z9Ge*(qzMrj3jrIOjvI{`5eWzt3`G_T8yChG8w(a19SkK12@M(+799Zr9n=~PzBCmA z5)BU-)YKUd4H5!D9|!^o9kWIe9SH(WDHRk92}DZ?3})2$P@$55g90f0N)ZA8JID5J Aw*UYD diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-cry.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-cry.gif deleted file mode 100644 index 74d897a4f6d22e814e2b054e98b8a75fb464b4be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 329 zcmV-P0k-}}Nk%w1VG;lm0Mr-&E)xPSit@9T3%;vR+|V+?t0A(pllJjXrMl7n=_A_a za^B+Su$LjvyC3@TIQZNZa##w=!k(SO^P#bO*w(eU#;{U83XFCU_V)J5wrb+;g2vkN z#>U24qVoOvY5)KLA^8LW0018VEC2ui01^Na000HX;3tY$X_jM3QUfCh%s^o(nF++< zc?Th6v=oL>*by8K!mhvwelUXuuW&&U9iGO3hM@>Njw{l^#0q9mWpcefdI;O$;efnY zkd~@r-o$*74FCWI1%d((4+jDz0va0>69^fI6%`W{8w!gU1pyL>prH>E0R<%k6Aq%H z4ij+^9TEwM5P}eh2@)L<~6+>@EpxfA0YrcPNsSu diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-embarassed.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-embarassed.gif deleted file mode 100644 index 963a96b8a7593b1d8bcbab073abe5ee4e539dbf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 331 zcmV-R0kr-{Nk%w1VG;lm0MrryDh>j~yq&6%75dW~z^P39(NxsGDE{UkxtkIEq(S-a zRKlwv+S=Lr?>hbYY~sQ?c3T&ZcN_Nh_EU3s(>Io6B&>WW`@bsw**)Ocy1bht z{*G6|uwwqUQ2+n{A^8LW0018VEC2ui01^Na000HZ;3tYwX_jM3YQ!c88=*-m*&&bO zILd=`w3KAC;8hxpif*w9ek6oqV-Z0L77fROK$BSR@5BAv-%C>6y>>#+D4e#&nz^qMDItlpp zTG728+|V&?R13PIEBW(C`uh6d*t-1sZ^XQv;oDD}iYLOV7uVO;{`xl4#4tJ{0;h@! z>)kdc3IhA?Hvj+tA^8La0018VEC2ui01^Na06+!P;3tYuX_ljS7!u|-O)I}TzP1q%xT4HOFwMJaO;2ml)!00$)141pU08x3594IX?4 o5YuAA8yXz~76K1c;3^jg77WP185Rf^u}23N0sR5^q(T4yJ1sVN5dZ)H diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-frown.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-frown.gif deleted file mode 100644 index 716f55e161bfebb1c3d34f0b0f40c177fc82c30b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmV-a0jvH;Nk%w1VG;lm0MroxK_>;q#>Sw62=mns-On=0wransPVevT^YK{Dy(0YY zH)vE6x0?;Wqb>gZas1^OT0si>`ugD5y87}*#H$s=yq(wA*8cf7{`y+(+9J7|9QfT7 z`ROHiU=Y&6FaQ7mA^8LW0018VEC2ui01^Na000Hi;3tYvX_jM3N`@u~nju9hSuh^r zIEcp-wA7(NL0~2d#RP+(G!CPPA>o*KJjv_CkucCA5=K?AfF#RG2V*8BU@jL304|4P z2;PGRF@bj$et;Jf2pR_mVsIA<85|n}kQ*Bq42Ovqj*yy>6P0=h3X&9Z01yyk~2N4w%7#RW^55W%`0vQ+-6(y_*2pqz~90*;x9}yM}%$UI(7t#$D mK_3Se1{4HKM+6iG7EmeH6$V631{L5n)#CyC0qx-*Apkoyg?w!Q diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-innocent.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-innocent.gif deleted file mode 100644 index 334d49e0e60f2997c9ba24071764f95d9e08a5cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmV-W0k8f?Nk%w1VG;lm0MrryI4TI-%dP0m5~*+Y`T~ z7Rth){q{I_X%*S48uRZ|(b3V&wIKTX`u+WJzo<^$#wuY;3W|Cf{O29IkTAcaE&lpe z+P*^H)-tknA^-pYA^8LW0018VEC2ui01^Na000He;3tYwX_n)75QgVvNQ`6#5gcMm zEEG~blgXokptKAJgCU?%JT?yos!R6cPtcQWh2siHlNI2L}ifQhgX02^InZ2?-ktkqVRyZJY^Trk|lv zovp437?1~d46O)?2(1i+2NDYk8<+_Kil!K!3njA^!I#dL8x<729}*B65mC=m5gHH@ iDi9P3f*VjB3KS4HDb_qqRul{0DIT=Nk%w1VG;lm0Mrx!QauaC#>Vb6G=_5=^YB^9wrc376Sb5I-qJGf@9vZ# z5WlKU(!eVB+7tfnDXp0zyB`?BZ5IChalob*`uh6d*t+@dKGHcU+L|83yq*5~IoH?L zy`?Gp<{bX|SpWb4A^8LW0018VEC2ui01^Na000Hg;3tYyX_jM3R?Bl7&r(q;SsVx< zNd$5fv{ZsKA$SlL3&KN~a1tZRf*~1Ltkx9~2uL3&z-yb0WJDRY082|tP diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-laughing.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-laughing.gif deleted file mode 100644 index 82c5b182e61d32bd394acae551eff180f1eebd26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmV-d0jT~*Nk%w1VG;lm0Q4UK!lp8=s;1-69HWK?p_PpF=Pd8~Ygtcnp*fHAL z**;z>w3iC}`fmL6IkKB1N;3zEa}&zKpsu1;_V)HocR5-{J~BcYvE`YXhBnc@CfU=! za(Ec zG>66zv=rqr;2j)}gKqE$ekcSD?}0=WLB?AWp85)qALd+P=4)6X4oXy{bw2>K^d$ z@6ERvva+(4ib~41YUkTEn1&#?rzrOHT>1I=Y*h`+%*@WtPUPg|!@EEI_d5LgZ>^Og z-qyBKJqy*wF8}}lA^8La0018VEC2ui01^Na06+!6;3tYxX_lj?7+U61R3gAaEg8x< zT>%mSfCwURnWQF&g=Q0ZxH1ulW`QtH0>O!5%iT_X0VBy_@EkOngU8?ye~=H!t21{= z9@Uj3a_UbE88~kh5Eq7rh!7QSBn1c?0|Off1&k^`5*QE<4-gmSR<4C>Dj%C>6W(lWoQPVevT^YB^Fy&h6M z4YZgH{O~qtR1(Ci8T;lQ`uh6d*t-7xar*K{#Jrulo-Wtd*44u?{`oh#n;gQXGXDEo z_}UUC3IeK%0ssI2A^8La0018VEC2ui01^Na06+!R;3tYuX_ljSEE482&%+G^XK%|f zLKbCc4u{4-u|QG~LqamSTo?@JM3OKZAr!|Z2IzP@fY`=CIg$vA3qm46TowfLCt29I z6pDKuvnf~)83+sm9yW#?9s>^(89F=~2?!W44-6Ox2^vNza}fp^9v&G65pp936%Gg+ z6HpTy2o4oGoh+>l3Q)KVQwybl2oo*<4a3D469|nfEii|MH4`}p1_cZp0ssj%2>=2d q41Na?)CpS;4gvxWVpZcR76uLludD?Q1{SnP2NnVU0rZ&)0RTIit8@_n diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-surprised.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-surprised.gif deleted file mode 100644 index 0cc9bb71cca4cdeafbb248ce7e07c3708c1cbd64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmV-Y0j>T=Nk%w1VG;lm0Q4UK`{WwN#>SnDDC*4*{OcpiwransPVevTQacIr@mkQp zCf(06s)_=>r7UYx48o@u`uh6d*t-7rH~ji<`P&oj;5Wp)o!8ga`SV6TA_BIW5#ZWV z{`*)c32kA}f=futY?#YE7kxGD|7L}4&OEDw$hkm+~<00QS>F_H?J#bz?uEHnl42f5(9 z5O)`6Q9V2o5;YVLUK)Y`7!Nr+4GMq?85s%^2?`BGDRU798Vn2?1`%>22R{iO0u>bk z9tlA?nk*O<3zHJH6&Mp5qALj)E(mxM!Y&vII4dm@1Ov{`f*8pL3xPEVUI>D>1_uxa kNm?`6VH{N6Di;P13m6<67z+;u7qCYM7XkVK^`jvGJD~P?KL7v# diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-tongue-out.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-tongue-out.gif deleted file mode 100644 index 2075dc16058f1f17912167675ce5cfb9986fc71d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{4~Nk%w1VG;lm0Mrx!CJF+^#>SU@3-{U*rx+Q^wrc$ABfqLn@9*x?z8(4X zSW-O=@){bmmI~g|GQXoP);cvj3|f1M8e@{G*!tYaiCEujj1NGxRN#6#tiCETo+{x{Hkzt z5k-kPvcD=V2nbmjCgL6k{uF&2nP-t0s;w<385Nx2oxDb z9T5Pp7qJl?3Kkh9oe2sCr5F$p7zPSlsUH*@54w*83=9Or4;w)r2pcU95(FL|1Th;< aDaRQH4;Tal7#Y$v#?=Au0pHUfApkpvZg^t= diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-undecided.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-undecided.gif deleted file mode 100644 index bef7e257303f8243c89787e7a7f9955dd1f112e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmV-X0j~Z>Nk%w1VG;lm0MroxDi#99#>R?y8~4}{%C>6#>?OadPVevTr-=vi@LATn z4rERY-qJF+n+?CCE&B3D{{3Shh?>WT0o%`b%*Voqm`dL;(4F35y zc485^n;g!+Bme*aA^8LW0018VEC2ui01^Na000Hf;3tYvX_jM3N=AnuogqakNi<9X zK?&0kwA8^tNn{?C$|IAYI1ZzT!2>}iuMddFK#NEkRl!7%6brJAnUs;)XcnA}TNBSP zxQ9;SvEfwYeSaGd2^|LqU~(QF1qBxr3Ii7x84ZVt8wCTKoSYAqc?p`G2onnpk`IOl z1`HLGj}riN2p1K12N4z&8IBDc6tEWs859;JtRB6>lf+xO9}yT19toMv8wnl`7(pKg j7zPv!OGgY81{hE&(iR3pP6ig;HPPS!_yOwPA0Yrc)=Yf3 diff --git a/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-wink.gif b/Resources/public/vendor/tinymce/plugins/emoticons/img/smiley-wink.gif deleted file mode 100644 index 0631c7616ec8624ddeee02b633326f697ee72f80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 350 zcmV-k0ipg!Nk%w1VG;lm0Q4UK(ZVUl#>Sn03F^-g-qAA3wransPV?|t@9*x%vmQ`7 z4E*pcw3rOOq%3t@4*K#({N^40{c-yG`rz2Q!KfI-yq*61HrBop*VoqW<}&{JS@_x# zwwfF$4Fdh~IsgCwA^8La0018VEC2ui01^Na06+!X;3tYwX_ljiFp=e23$zWxW@`*G zN?2ty6iUNT!AMdPLn89IbS7WCB_mWF$+hzY-{PWkp(?(Xf;zbH~P z3jOdj?W+^YwrakfE8fyG&5jTBz!3WS`fgM_;MltQ+c}4GO8)(E`S3`@yq&d~5!ct& z)v79NObo)O7XSbNA^8LW0018VEC2ui01^Na000He;3tYwX_jM3QifI(nn6h_*=Wyk zUB{y}v=qYOIUF#R3dZPhAVv~H;(|a2yN_5FH&J0|$eJ3kw4gj1Y?v5d#>LMV12^6BYy$1)ZKA zga!|m2?POz0R)f>4+aPl8KD{gz`+G_9vLMFQU?RU!8uyH9}*i52|cC+7S0YEK_3Vk i1|APfM-Ltb8&4_H83sg61{vHn(cc000qNZzApkp'}),t+=""}),t+=""}var i=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];t.addButton("emoticons",{type:"panelbutton",panel:{role:"application",autohide:!0,html:a,onclick:function(e){var a=t.dom.getParent(e.target,"a");a&&(t.insertContent(''+a.getAttribute('),this.hide())}},tooltip:"Emoticons"})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(m){"use strict";var n,t,e,u,o=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(n){return function(){return n}},a=i(!1),c=i(!0),r=function(){return l},l=(n=function(n){return n.isNone()},{fold:function(n,t){return n()},is:a,isSome:a,isNone:c,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:i(null),getOrUndefined:i(undefined),or:e,orThunk:t,map:r,each:function(){},bind:r,exists:a,forall:c,filter:r,equals:n,equals_:n,toArray:function(){return[]},toString:i("none()")}),s=function(e){var n=i(e),t=function(){return r},o=function(n){return n(e)},r={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:c,isNone:a,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return s(n(e))},each:function(n){n(e)},bind:o,exists:o,forall:o,filter:function(n){return n(e)?r:l},toArray:function(){return[e]},toString:function(){return"some("+e+")"},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(a,function(n){return t(e,n)})}};return r},g={some:s,none:r,from:function(n){return null===n||n===undefined?l:s(n)}},f=function(n,t){return-1!==n.indexOf(t)},d=function(n,t){return f(n.title.toLowerCase(),t)||function(n,t){for(var e=0,o=n.length;eCould not load emoticons

"}]},buttons:[{type:"cancel",text:"Close",primary:!0}],initialData:{pattern:"",results:[]}}),f.focus(S),f.unblock()}))};!function E(){o.add("emoticons",function(n,t){var e,o,r,i,u,a,c,l=(o=t,(e=n).getParam("emoticons_database_url",o+"/js/emojis"+e.suffix+".js")),s=n.getParam("emoticons_database_id","tinymce.plugins.emoticons","string"),f=L(n,l,s);i=f,u=function(){return N(r,i)},(r=n).ui.registry.addButton("emoticons",{tooltip:"Emoticons",icon:"emoji",onAction:u}),r.ui.registry.addMenuItem("emoticons",{text:"Emoticons...",icon:"emoji",onAction:u}),c=f,(a=n).ui.registry.addAutocompleter("emoticons",{ch:":",columns:"auto",minChars:2,fetch:function(t,e){return c.waitForLoad().then(function(){var n=c.listAll();return y(n,t,g.some(e))})},onAction:function(n,t,e){a.selection.setRng(t),a.insertContent(e),n.hide()}})})}()}(window); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/example/dialog.html b/Resources/public/vendor/tinymce/plugins/example/dialog.html deleted file mode 100644 index 565f06f5..00000000 --- a/Resources/public/vendor/tinymce/plugins/example/dialog.html +++ /dev/null @@ -1,8 +0,0 @@ - - - -

Custom dialog

- Input some text: - - - \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/example/plugin.min.js b/Resources/public/vendor/tinymce/plugins/example/plugin.min.js deleted file mode 100644 index 00a262ef..00000000 --- a/Resources/public/vendor/tinymce/plugins/example/plugin.min.js +++ /dev/null @@ -1 +0,0 @@ -tinymce.PluginManager.add("example",function(t,e){t.addButton("example",{text:"My button",icon:!1,onclick:function(){t.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(e){t.insertContent("Title: "+e.data.title)}})}}),t.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){t.windowManager.open({title:"TinyMCE site",url:e+"/dialog.html",width:600,height:400,buttons:[{text:"Insert",onclick:function(){var e=t.windowManager.getWindows()[0];t.insertContent(e.getContentWindow().document.getElementById("content").value),e.close()}},{text:"Close",onclick:"close"}]})}})}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/example_dependency/plugin.min.js b/Resources/public/vendor/tinymce/plugins/example_dependency/plugin.min.js deleted file mode 100644 index e61bf473..00000000 --- a/Resources/public/vendor/tinymce/plugins/example_dependency/plugin.min.js +++ /dev/null @@ -1 +0,0 @@ -tinymce.PluginManager.add("example_dependency",function(){},["example"]); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/fullpage/plugin.min.js b/Resources/public/vendor/tinymce/plugins/fullpage/plugin.min.js index c0dfa2d3..88c75b74 100644 --- a/Resources/public/vendor/tinymce/plugins/fullpage/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/fullpage/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("fullpage",function(e){function t(){var t=n();e.windowManager.open({title:"Document properties",data:t,defaults:{type:"textbox",size:40},body:[{name:"title",label:"Title"},{name:"keywords",label:"Keywords"},{name:"description",label:"Description"},{name:"robots",label:"Robots"},{name:"author",label:"Author"},{name:"docencoding",label:"Encoding"}],onSubmit:function(e){l(tinymce.extend(t,e.data))}})}function n(){function t(e,t){var n=e.attr(t);return n||""}var n,l,a=i(),r={};return r.fontface=e.getParam("fullpage_default_fontface",""),r.fontsize=e.getParam("fullpage_default_fontsize",""),n=a.firstChild,7==n.type&&(r.xml_pi=!0,l=/encoding="([^"]+)"/.exec(n.value),l&&(r.docencoding=l[1])),n=a.getAll("#doctype")[0],n&&(r.doctype=""),n=a.getAll("title")[0],n&&n.firstChild&&(r.title=n.firstChild.value),s(a.getAll("meta"),function(e){var t,n=e.attr("name"),l=e.attr("http-equiv");n?r[n.toLowerCase()]=e.attr("content"):"Content-Type"==l&&(t=/charset\s*=\s*(.*)\s*/gi.exec(e.attr("content")),t&&(r.docencoding=t[1]))}),n=a.getAll("html")[0],n&&(r.langcode=t(n,"lang")||t(n,"xml:lang")),r.stylesheets=[],tinymce.each(a.getAll("link"),function(e){"stylesheet"==e.attr("rel")&&r.stylesheets.push(e.attr("href"))}),n=a.getAll("body")[0],n&&(r.langdir=t(n,"dir"),r.style=t(n,"style"),r.visited_color=t(n,"vlink"),r.link_color=t(n,"link"),r.active_color=t(n,"alink")),r}function l(t){function n(e,t,n){e.attr(t,n?n:void 0)}function l(e){r.firstChild?r.insert(e,r.firstChild):r.append(e)}var a,r,o,d,u,g=e.dom;a=i(),r=a.getAll("head")[0],r||(d=a.getAll("html")[0],r=new m("head",1),d.firstChild?d.insert(r,d.firstChild,!0):d.append(r)),d=a.firstChild,t.xml_pi?(u='version="1.0"',t.docencoding&&(u+=' encoding="'+t.docencoding+'"'),7!=d.type&&(d=new m("xml",7),a.insert(d,a.firstChild,!0)),d.value=u):d&&7==d.type&&d.remove(),d=a.getAll("#doctype")[0],t.doctype?(d||(d=new m("#doctype",10),t.xml_pi?a.insert(d,a.firstChild):l(d)),d.value=t.doctype.substring(9,t.doctype.length-1)):d&&d.remove(),d=null,s(a.getAll("meta"),function(e){"Content-Type"==e.attr("http-equiv")&&(d=e)}),t.docencoding?(d||(d=new m("meta",1),d.attr("http-equiv","Content-Type"),d.shortEnded=!0,l(d)),d.attr("content","text/html; charset="+t.docencoding)):d&&d.remove(),d=a.getAll("title")[0],t.title?(d?d.empty():(d=new m("title",1),l(d)),d.append(new m("#text",3)).value=t.title):d&&d.remove(),s("keywords,description,author,copyright,robots".split(","),function(e){var n,i,r=a.getAll("meta"),o=t[e];for(n=0;n"))}function i(){return new tinymce.html.DomParser({validate:!1,root_name:"#document"}).parse(c)}function a(t){function n(e){return e.replace(/<\/?[A-Z]+/g,function(e){return e.toLowerCase()})}var l,a,o,m,u=t.content,g="",f=e.dom;if(!t.selection&&!("raw"==t.format&&c||t.source_view&&e.getParam("fullpage_hide_in_source_view"))){0!==u.length||t.source_view||(u=tinymce.trim(c)+"\n"+tinymce.trim(u)+"\n"+tinymce.trim(d)),u=u.replace(/<(\/?)BODY/gi,"<$1body"),l=u.indexOf("",l),c=n(u.substring(0,l+1)),a=u.indexOf("\n"),o=i(),s(o.getAll("style"),function(e){e.firstChild&&(g+=e.firstChild.value)}),m=o.getAll("body")[0],m&&f.setAttribs(e.getBody(),{style:m.attr("style")||"",dir:m.attr("dir")||"",vLink:m.attr("vlink")||"",link:m.attr("link")||"",aLink:m.attr("alink")||""}),f.remove("fullpage_styles");var y=e.getDoc().getElementsByTagName("head")[0];g&&(f.add(y,"style",{id:"fullpage_styles"},g),m=f.get("fullpage_styles"),m.styleSheet&&(m.styleSheet.cssText=g));var h={};tinymce.each(y.getElementsByTagName("link"),function(e){"stylesheet"==e.rel&&e.getAttribute("data-mce-fullpage")&&(h[e.href]=e)}),tinymce.each(o.getAll("link"),function(e){var t=e.attr("href");h[t]||"stylesheet"!=e.attr("rel")||f.add(y,"link",{rel:"stylesheet",text:"text/css",href:t,"data-mce-fullpage":"1"}),delete h[t]}),tinymce.each(h,function(e){e.parentNode.removeChild(e)})}}function r(){var t,n="",l="";return e.getParam("fullpage_default_xml_pi")&&(n+='\n'),n+=e.getParam("fullpage_default_doctype",""),n+="\n\n\n",(t=e.getParam("fullpage_default_title"))&&(n+=""+t+"\n"),(t=e.getParam("fullpage_default_encoding"))&&(n+='\n'),(t=e.getParam("fullpage_default_font_family"))&&(l+="font-family: "+t+";"),(t=e.getParam("fullpage_default_font_size"))&&(l+="font-size: "+t+";"),(t=e.getParam("fullpage_default_text_color"))&&(l+="color: "+t+";"),n+="\n\n"}function o(t){t.selection||t.source_view&&e.getParam("fullpage_hide_in_source_view")||(t.content=tinymce.trim(c)+"\n"+tinymce.trim(t.content)+"\n"+tinymce.trim(d))}var c,d,s=tinymce.each,m=tinymce.html.Node;e.addCommand("mceFullPageProperties",t),e.addButton("fullpage",{title:"Document properties",cmd:"mceFullPageProperties"}),e.addMenuItem("fullpage",{text:"Document properties",cmd:"mceFullPageProperties",context:"file"}),e.on("BeforeSetContent",a),e.on("GetContent",o)}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(p){"use strict";var s=function(e){var t=e;return{get:function(){return t},set:function(e){t=e}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=function(){return(u=Object.assign||function(e){for(var t,n=1,l=arguments.length;n"),(n=r.getAll("title")[0])&&n.firstChild&&(a.title=n.firstChild.value),y.each(r.getAll("meta"),function(e){var t,n=e.attr("name"),l=e.attr("http-equiv");n?a[n.toLowerCase()]=e.attr("content"):"Content-Type"===l&&(t=/charset\s*=\s*(.*)\s*/gi.exec(e.attr("content")))&&(a.docencoding=t[1])}),(n=r.getAll("html")[0])&&(a.langcode=s(n,"lang")||s(n,"xml:lang")),a.stylesheets=[],y.each(r.getAll("link"),function(e){"stylesheet"===e.attr("rel")&&a.stylesheets.push(e.attr("href"))}),(n=r.getAll("body")[0])&&(a.langdir=s(n,"dir"),a.style=s(n,"style"),a.visited_color=s(n,"vlink"),a.link_color=s(n,"link"),a.active_color=s(n,"alink")),a);function s(e,t){return e.attr(t)||""}var d=u(u({},{title:"",keywords:"",description:"",robots:"",author:"",docencoding:""}),c);l.windowManager.open({title:"Metadata and Document Properties",size:"normal",body:{type:"panel",items:[{name:"title",type:"input",label:"Title"},{name:"keywords",type:"input",label:"Keywords"},{name:"description",type:"input",label:"Description"},{name:"robots",type:"input",label:"Robots"},{name:"author",type:"input",label:"Author"},{name:"docencoding",type:"input",label:"Encoding"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:d,onSubmit:function(e){var t=e.getData(),n=function(e,o,t){var r,n,l,a,i,c=e.dom;function s(e,t,n){e.attr(t,n||undefined)}function d(e){n.firstChild?n.insert(e,n.firstChild):n.append(e)}r=_(t),(n=r.getAll("head")[0])||(a=r.getAll("html")[0],n=new m("head",1),a.firstChild?a.insert(n,a.firstChild,!0):a.append(n)),a=r.firstChild,o.xml_pi?(i='version="1.0"',o.docencoding&&(i+=' encoding="'+o.docencoding+'"'),7!==a.type&&(a=new m("xml",7),r.insert(a,r.firstChild,!0)),a.value=i):a&&7===a.type&&a.remove(),a=r.getAll("#doctype")[0],o.doctype?(a||(a=new m("#doctype",10),o.xml_pi?r.insert(a,r.firstChild):d(a)),a.value=o.doctype.substring(9,o.doctype.length-1)):a&&a.remove(),a=null,y.each(r.getAll("meta"),function(e){"Content-Type"===e.attr("http-equiv")&&(a=e)}),o.docencoding?(a||((a=new m("meta",1)).attr("http-equiv","Content-Type"),a.shortEnded=!0,d(a)),a.attr("content","text/html; charset="+o.docencoding)):a&&a.remove(),a=r.getAll("title")[0],o.title?(a?a.empty():d(a=new m("title",1)),a.append(new m("#text",3)).value=o.title):a&&a.remove(),y.each("keywords,description,author,copyright,robots".split(","),function(e){var t,n,l=r.getAll("meta"),i=o[e];for(t=0;t"))}(l,y.extend(c,t),i.get());i.set(n),e.close()}})},b=y.each,x=function(e){return e.replace(/<\/?[A-Z]+/g,function(e){return e.toLowerCase()})},k=function(e,t,n,l){var i,o,r,a,c,s,d="",u=e.dom;if(!l.selection&&(c=e.settings.protect,s=l.content,y.each(c,function(e){s=s.replace(e,function(e){return"\x3c!--mce:protected "+escape(e)+"--\x3e"})}),r=s,!("raw"===l.format&&t.get()||l.source_view&&h(e)))){0!==r.length||l.source_view||(r=y.trim(t.get())+"\n"+y.trim(r)+"\n"+y.trim(n.get())),-1!==(i=(r=r.replace(/<(\/?)BODY/gi,"<$1body")).indexOf("",i),t.set(x(r.substring(0,i+1))),-1===(o=r.indexOf("\n")),a=_(t.get()),b(a.getAll("style"),function(e){e.firstChild&&(d+=e.firstChild.value)});var m=a.getAll("body")[0];m&&u.setAttribs(e.getBody(),{style:m.attr("style")||"",dir:m.attr("dir")||"",vLink:m.attr("vlink")||"",link:m.attr("link")||"",aLink:m.attr("alink")||""}),u.remove("fullpage_styles");var f=e.getDoc().getElementsByTagName("head")[0];if(d)u.add(f,"style",{id:"fullpage_styles"}).appendChild(p.document.createTextNode(d));var g={};y.each(f.getElementsByTagName("link"),function(e){"stylesheet"===e.rel&&e.getAttribute("data-mce-fullpage")&&(g[e.href]=e)}),y.each(a.getAll("link"),function(e){var t=e.attr("href");if(!t)return!0;g[t]||"stylesheet"!==e.attr("rel")||u.add(f,"link",{rel:"stylesheet",text:"text/css",href:t,"data-mce-fullpage":"1"}),delete g[t]}),y.each(g,function(e){e.parentNode.removeChild(e)})}},C=function(e){var t,n="",l="";if(e.getParam("fullpage_default_xml_pi")){var i=o(e);n+='\n'}return n+=e.getParam("fullpage_default_doctype",""),n+="\n\n\n",(t=e.getParam("fullpage_default_title"))&&(n+=""+t+"\n"),(t=o(e))&&(n+='\n'),(t=g(e))&&(l+="font-family: "+t+";"),(t=v(e))&&(l+="font-size: "+t+";"),(t=e.getParam("fullpage_default_text_color"))&&(l+="color: "+t+";"),n+="\n\n"},A=function(e,t,n,l){l.selection||l.source_view&&h(e)||(l.content=(y.trim(t)+"\n"+y.trim(l.content)+"\n"+y.trim(n)).replace(//g,function(e,t){return unescape(t)}))};!function n(){e.add("fullpage",function(e){var t,n,l,i,o,r,a=s(""),c=s("");n=a,(t=e).addCommand("mceFullPageProperties",function(){d(t,n)}),(l=e).ui.registry.addButton("fullpage",{tooltip:"Metadata and document properties",icon:"document-properties",onAction:function(){l.execCommand("mceFullPageProperties")}}),l.ui.registry.addMenuItem("fullpage",{text:"Metadata and document properties",icon:"document-properties",onAction:function(){l.execCommand("mceFullPageProperties")}}),o=a,r=c,(i=e).on("BeforeSetContent",function(e){k(i,o,r,e)}),i.on("GetContent",function(e){A(i,o.get(),r.get(),e)})})}()}(window); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/fullscreen/plugin.min.js b/Resources/public/vendor/tinymce/plugins/fullscreen/plugin.min.js index 1bb1940d..6539fa4d 100644 --- a/Resources/public/vendor/tinymce/plugins/fullscreen/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/fullscreen/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("fullscreen",function(e){function t(){var e,t,n=window,i=document,l=i.body;return l.offsetWidth&&(e=l.offsetWidth,t=l.offsetHeight),n.innerWidth&&n.innerHeight&&(e=n.innerWidth,t=n.innerHeight),{w:e,h:t}}function n(){function n(){d.setStyle(a,"height",t().h-(h.clientHeight-a.clientHeight))}var u,h,a,f,m=document.body,g=document.documentElement;s=!s,h=e.getContainer(),u=h.style,a=e.getContentAreaContainer().firstChild,f=a.style,s?(i=f.width,l=f.height,f.width=f.height="100%",c=u.width,o=u.height,u.width=u.height="",d.addClass(m,"mce-fullscreen"),d.addClass(g,"mce-fullscreen"),d.addClass(h,"mce-fullscreen"),d.bind(window,"resize",n),n(),r=n):(f.width=i,f.height=l,c&&(u.width=c),o&&(u.height=o),d.removeClass(m,"mce-fullscreen"),d.removeClass(g,"mce-fullscreen"),d.removeClass(h,"mce-fullscreen"),d.unbind(window,"resize",r)),e.fire("FullscreenStateChanged",{state:s})}var i,l,r,c,o,s=!1,d=tinymce.DOM;return e.settings.inline?void 0:(e.on("init",function(){e.addShortcut("Ctrl+Alt+F","",n)}),e.on("remove",function(){r&&d.unbind(window,"resize",r)}),e.addCommand("mceFullScreen",n),e.addMenuItem("fullscreen",{text:"Fullscreen",shortcut:"Ctrl+Alt+F",selectable:!0,onClick:n,onPostRender:function(){var t=this;e.on("FullscreenStateChanged",function(e){t.active(e.state)})},context:"view"}),e.addButton("fullscreen",{tooltip:"Fullscreen",shortcut:"Ctrl+Alt+F",onClick:n,onPostRender:function(){var t=this;e.on("FullscreenStateChanged",function(e){t.active(e.state)})}}),{isFullscreen:function(){return s}})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(g){"use strict";var n,t,e,r,c=function(n){var t=n;return{get:function(){return t},set:function(n){t=n}}},o=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=function(n){return{isFullscreen:function(){return null!==n.get()}}},i=function(){},a=function(n){return function(){return n}},l=a(!1),f=a(!0),d=function(){return s},s=(n=function(n){return n.isNone()},{fold:function(n,t){return n()},is:l,isSome:l,isNone:f,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:a(null),getOrUndefined:a(undefined),or:e,orThunk:t,map:d,each:i,bind:d,exists:l,forall:f,filter:d,equals:n,equals_:n,toArray:function(){return[]},toString:a("none()")}),m=function(e){var n=a(e),t=function(){return o},r=function(n){return n(e)},o={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:f,isNone:l,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return m(n(e))},each:function(n){n(e)},bind:r,exists:r,forall:r,filter:function(n){return n(e)?o:s},toArray:function(){return[e]},toString:function(){return"some("+e+")"},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(l,function(n){return t(e,n)})}};return o},h={some:m,none:d,from:function(n){return null===n||n===undefined?s:m(n)}},p=function(){return n=function(n){n.unbind()},t=c(h.none()),e=function(){t.get().each(n)},{clear:function(){e(),t.set(h.none())},isSet:function(){return t.get().isSome()},set:function(n){e(),t.set(h.some(n))}};var n,t,e},v=function(r){return function(n){return e=typeof(t=n),(null===t?"null":"object"==e&&(Array.prototype.isPrototypeOf(t)||t.constructor&&"Array"===t.constructor.name)?"array":"object"==e&&(String.prototype.isPrototypeOf(t)||t.constructor&&"String"===t.constructor.name)?"string":e)===r;var t,e}},y=function(t){return function(n){return typeof n===t}},w=v("string"),b=v("array"),S=y("boolean"),T=y("function"),x=y("number"),C=Array.prototype.push,A=function(n,t){for(var e=n.length,r=new Array(e),o=0;o'+e.name+""};return{name:"plugins",title:"Plugins",items:[{type:"htmlpanel",presets:"document",html:[null==(n=e)?"":'
'+function(a){var t,e,n=(e=f((t=a).plugins),t.settings.forced_plugins===undefined?e:function(e,t){for(var n=[],a=0,o=e.length;a"+(t=a,n=e,g(C,function(e){return e.key===n}).fold(function(){var e=t.plugins[n].getMetadata;return"function"==typeof e?s(e()):n},function(e){return s({name:e.name,url:"https://www.tiny.cloud/docs/plugins/"+e.key})}))+"";var t,n}),i=o.length,r=o.join("");return"

"+A.translate(["Plugins installed ({0}):",i])+"

    "+r+"
"}(n)+"
",(t=p(["Accessibility Checker","Advanced Code Editor","Advanced Tables","Case Change","Checklist","Tiny Comments","Tiny Drive","Enhanced Media Embed","Format Painter","Link Checker","Mentions","MoxieManager","Page Embed","Permanent Pen","PowerPaste","Spell Checker Pro"],function(e){return"
  • "+A.translate(e)+"
  • "}).join(""),'

    '+A.translate("Premium plugins:")+"

    ")].join("")}]}},x=tinymce.util.Tools.resolve("tinymce.EditorManager"),M=function(e,t){var n,a,o,i,r,s={name:"shortcuts",title:"Handy Shortcuts",items:[{type:"table",header:["Action","Shortcut"],cells:p(k,function(e){var t=p(e.shortcuts,w).join(" or ");return[e.action,t]})}]},c={name:"keyboardnav",title:"Keyboard Navigation",items:[{type:"htmlpanel",presets:"document",html:"

    Editor UI keyboard navigation

    \n\n

    Activating keyboard navigation

    \n\n

    The sections of the outer UI of the editor - the menubar, toolbar, sidebar and footer - are all keyboard navigable. As such, there are multiple ways to activate keyboard navigation:

    \n
      \n
    • Focus the menubar: Alt + F9 (Windows) or ⌥F9 (MacOS)
    • \n
    • Focus the toolbar: Alt + F10 (Windows) or ⌥F10 (MacOS)
    • \n
    • Focus the footer: Alt + F11 (Windows) or ⌥F11 (MacOS)
    • \n
    \n\n

    Focusing the menubar or toolbar will start keyboard navigation at the first item in the menubar or toolbar, which will be highlighted with a gray background. Focusing the footer will start keyboard navigation at the first item in the element path, which will be highlighted with an underline.

    \n\n

    Moving between UI sections

    \n\n

    When keyboard navigation is active, pressing tab will move the focus to the next major section of the UI, where applicable. These sections are:

    \n
      \n
    • the menubar
    • \n
    • each group of the toolbar
    • \n
    • the sidebar
    • \n
    • the element path in the footer
    • \n
    • the wordcount toggle button in the footer
    • \n
    • the branding link in the footer
    • \n
    \n\n

    Pressing shift + tab will move backwards through the same sections, except when moving from the footer to the toolbar. Focusing the element path then pressing shift + tab will move focus to the first toolbar group, not the last.

    \n\n

    Moving within UI sections

    \n\n

    Keyboard navigation within UI sections can usually be achieved using the left and right arrow keys. This includes:

    \n
      \n
    • moving between menus in the menubar
    • \n
    • moving between buttons in a toolbar group
    • \n
    • moving between items in the element path
    • \n
    \n\n

    In all these UI sections, keyboard navigation will cycle within the section. For example, focusing the last button in a toolbar group then pressing right arrow will move focus to the first item in the same toolbar group.

    \n\n

    Executing buttons

    \n\n

    To execute a button, navigate the selection to the desired button and hit space or enter.

    \n\n

    Opening, navigating and closing menus

    \n\n

    When focusing a menubar button or a toolbar button with a menu, pressing space, enter or down arrow will open the menu. When the menu opens the first item will be selected. To move up or down the menu, press the up or down arrow key respectively. This is the same for submenus, which can also be opened and closed using the left and right arrow keys.

    \n\n

    To close any active menu, hit the escape key. When a menu is closed the selection will be restored to its previous selection. This also works for closing submenus.

    \n\n

    Context toolbars and menus

    \n\n

    To focus an open context toolbar such as the table context toolbar, press Ctrl + F9 (Windows) or ⌃F9 (MacOS).

    \n\n

    Context toolbar navigation is the same as toolbar navigation, and context menu navigation is the same as standard menu navigation.

    \n\n

    Dialog navigation

    \n\n

    There are two types of dialog UIs in TinyMCE: tabbed dialogs and non-tabbed dialogs.

    \n\n

    When a non-tabbed dialog is opened, the first interactive component in the dialog will be focused. Users can navigate between interactive components by pressing tab. This includes any footer buttons. Navigation will cycle back to the first dialog component if tab is pressed while focusing the last component in the dialog. Pressing shift + tab will navigate backwards.

    \n\n

    When a tabbed dialog is opened, the first button in the tab menu is focused. Pressing tab will navigate to the first interactive component in that tab, and will cycle through the tab\u2019s components, the footer buttons, then back to the tab button. To switch to another tab, focus the tab button for the current tab, then use the arrow keys to cycle through the tab buttons.

    "}]},l=T(e),u=(i='TinyMCE '+(a=x.majorVersion,o=x.minorVersion,0===a.indexOf("@")?"X.X.X":a+"."+o)+"",{name:"versions",title:"Version",items:[{type:"htmlpanel",html:"

    "+A.translate(["You are using {0}",i])+"

    ",presets:"document"}]}),h=m(((n={})[s.name]=s,n[c.name]=c,n[l.name]=l,n[u.name]=u,n),t.get());return r=e,d.from(r.getParam("help_tabs")).fold(function(){return t=f(e=h),-1!==(n=t.indexOf("versions"))&&(t.splice(n,1),t.push("versions")),{tabs:e,names:t};var e,t,n},function(e){return t=h,n={},a=p(e,function(e){return"string"==typeof e?(y(t,e)&&(n[e]=t[e]),e):(n[e.name]=e).name}),{tabs:n,names:a};var t,n,a})},P=function(o,i){return function(){var e=M(o,i),a=e.tabs,t=e.names,n={type:"tabpanel",tabs:function(e){for(var t=[],n=function(e){t.push(e)},a=0;a")}),n.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),n.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager");!function o(){n.add("hr",function(n){var o,t;(o=n).addCommand("InsertHorizontalRule",function(){o.execCommand("mceInsertContent",!1,"
    ")}),(t=n).ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return t.execCommand("InsertHorizontalRule")}}),t.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return t.execCommand("InsertHorizontalRule")}})})}()}(); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/image/plugin.min.js b/Resources/public/vendor/tinymce/plugins/image/plugin.min.js index 14e5bbd9..ee21f915 100644 --- a/Resources/public/vendor/tinymce/plugins/image/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/image/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("image",function(e){function t(e,t){function i(e,i){n.parentNode&&n.parentNode.removeChild(n),t({width:e,height:i})}var n=document.createElement("img");n.onload=function(){i(n.clientWidth,n.clientHeight)},n.onerror=function(){i()};var a=n.style;a.visibility="hidden",a.position="fixed",a.bottom=a.left=0,a.width=a.height="auto",document.body.appendChild(n),n.src=e}function i(e,t,i){function n(e,i){return i=i||[],tinymce.each(e,function(e){var a={text:e.text||e.title};e.menu?a.menu=n(e.menu):(a.value=e.value,t(a)),i.push(a)}),i}return n(e,i||[])}function n(t){return function(){var i=e.settings.image_list;"string"==typeof i?tinymce.util.XHR.send({url:i,success:function(e){t(tinymce.util.JSON.parse(e))}}):"function"==typeof i?i(t):t(i)}}function a(n){function a(){var e,t,i,n;e=c.find("#width")[0],t=c.find("#height")[0],e&&t&&(i=e.value(),n=t.value(),c.find("#constrain")[0].checked()&&d&&u&&i&&n&&(d!=i?(n=Math.round(i/d*n),t.value(n)):(i=Math.round(n/u*i),e.value(i))),d=i,u=n)}function l(){function t(t){function i(){t.onload=t.onerror=null,e.selection&&(e.selection.select(t),e.nodeChanged())}t.onload=function(){m.width||m.height||!y||p.setAttribs(t,{width:t.clientWidth,height:t.clientHeight}),i()},t.onerror=i}s(),a(),m=tinymce.extend(m,c.toJSON()),m.alt||(m.alt=""),""===m.width&&(m.width=null),""===m.height&&(m.height=null),m.style||(m.style=null),m={src:m.src,alt:m.alt,width:m.width,height:m.height,style:m.style,"class":m["class"]},e.undoManager.transact(function(){return m.src?(f?p.setAttribs(f,m):(m.id="__mcenew",e.focus(),e.selection.setContent(p.createHTML("img",m)),f=p.get("__mcenew"),p.setAttrib(f,"id",null)),void t(f)):void(f&&(p.remove(f),e.focus(),e.nodeChanged()))})}function o(e){return e&&(e=e.replace(/px$/,"")),e}function r(i){var n=i.meta||{};g&&g.value(e.convertURL(this.value(),"src")),tinymce.each(n,function(e,t){c.find("#"+t).value(e)}),n.width||n.height||t(this.value(),function(e){e.width&&e.height&&y&&(d=e.width,u=e.height,c.find("#width").value(d),c.find("#height").value(u))})}function s(){function t(e){return e.length>0&&/^[0-9]+$/.test(e)&&(e+="px"),e}if(e.settings.image_advtab){var i=c.toJSON(),n=p.parseStyle(i.style);delete n.margin,n["margin-top"]=n["margin-bottom"]=t(i.vspace),n["margin-left"]=n["margin-right"]=t(i.hspace),n["border-width"]=t(i.border),c.find("#style").value(p.serializeStyle(p.parseStyle(p.serializeStyle(n))))}}var c,d,u,g,h,m={},p=e.dom,f=e.selection.getNode(),y=e.settings.image_dimensions!==!1;d=p.getAttrib(f,"width"),u=p.getAttrib(f,"height"),"IMG"!=f.nodeName||f.getAttribute("data-mce-object")||f.getAttribute("data-mce-placeholder")?f=null:m={src:p.getAttrib(f,"src"),alt:p.getAttrib(f,"alt"),"class":p.getAttrib(f,"class"),width:d,height:u},n&&(g={type:"listbox",label:"Image list",values:i(n,function(t){t.value=e.convertURL(t.value||t.url,"src")},[{text:"None",value:""}]),value:m.src&&e.convertURL(m.src,"src"),onselect:function(e){var t=c.find("#alt");(!t.value()||e.lastControl&&t.value()==e.lastControl.text())&&t.value(e.control.text()),c.find("#src").value(e.control.value()).fire("change")},onPostRender:function(){g=this}}),e.settings.image_class_list&&(h={name:"class",type:"listbox",label:"Class",values:i(e.settings.image_class_list,function(t){t.value&&(t.textStyle=function(){return e.formatter.getCssText({inline:"img",classes:[t.value]})})})});var b=[{name:"src",type:"filepicker",filetype:"image",label:"Source",autofocus:!0,onchange:r},g];e.settings.image_description!==!1&&b.push({name:"alt",type:"textbox",label:"Image description"}),y&&b.push({type:"container",label:"Dimensions",layout:"flex",direction:"row",align:"center",spacing:5,items:[{name:"width",type:"textbox",maxLength:5,size:3,onchange:a,ariaLabel:"Width"},{type:"label",text:"x"},{name:"height",type:"textbox",maxLength:5,size:3,onchange:a,ariaLabel:"Height"},{name:"constrain",type:"checkbox",checked:!0,text:"Constrain proportions"}]}),b.push(h),e.settings.image_advtab?(f&&(m.hspace=o(f.style.marginLeft||f.style.marginRight),m.vspace=o(f.style.marginTop||f.style.marginBottom),m.border=o(f.style.borderWidth),m.style=e.dom.serializeStyle(e.dom.parseStyle(e.dom.getAttrib(f,"style")))),c=e.windowManager.open({title:"Insert/edit image",data:m,bodyType:"tabpanel",body:[{title:"General",type:"form",items:b},{title:"Advanced",type:"form",pack:"start",items:[{label:"Style",name:"style",type:"textbox"},{type:"form",layout:"grid",packV:"start",columns:2,padding:0,alignH:["left","right"],defaults:{type:"textbox",maxWidth:50,onchange:s},items:[{label:"Vertical space",name:"vspace"},{label:"Horizontal space",name:"hspace"},{label:"Border",name:"border"}]}]}],onSubmit:l})):c=e.windowManager.open({title:"Insert/edit image",data:m,body:b,onSubmit:l})}e.addButton("image",{icon:"image",tooltip:"Insert/edit image",onclick:n(a),stateSelector:"img:not([data-mce-object],[data-mce-placeholder])"}),e.addMenuItem("image",{icon:"image",text:"Insert image",onclick:n(a),context:"insert",prependToContext:!0}),e.addCommand("mceImage",n(a))}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(m){"use strict";var e,t,n,r,o,a=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(){},l=function(e){return function(){return e}},s=l(!1),u=l(!0),c=function(){return d},d=(e=function(e){return e.isNone()},{fold:function(e,t){return e()},is:s,isSome:s,isNone:u,getOr:n=function(e){return e},getOrThunk:t=function(e){return e()},getOrDie:function(e){throw new Error(e||"error: getOrDie called on none.")},getOrNull:l(null),getOrUndefined:l(undefined),or:n,orThunk:t,map:c,each:i,bind:c,exists:s,forall:u,filter:c,equals:e,equals_:e,toArray:function(){return[]},toString:l("none()")}),g=function(n){var e=l(n),t=function(){return a},r=function(e){return e(n)},a={fold:function(e,t){return t(n)},is:function(e){return n===e},isSome:u,isNone:s,getOr:e,getOrThunk:e,getOrDie:e,getOrNull:e,getOrUndefined:e,or:t,orThunk:t,map:function(e){return g(e(n))},each:function(e){e(n)},bind:r,exists:r,forall:r,filter:function(e){return e(n)?a:d},toArray:function(){return[n]},toString:function(){return"some("+n+")"},equals:function(e){return e.is(n)},equals_:function(e,t){return e.fold(s,function(e){return t(n,e)})}};return a},A={some:g,none:c,from:function(e){return null===e||e===undefined?d:g(e)}},f=function(r){return function(e){return n=typeof(t=e),(null===t?"null":"object"==n&&(Array.prototype.isPrototypeOf(t)||t.constructor&&"Array"===t.constructor.name)?"array":"object"==n&&(String.prototype.isPrototypeOf(t)||t.constructor&&"String"===t.constructor.name)?"string":n)===r;var t,n}},p=function(t){return function(e){return typeof e===t}},S=f("string"),h=f("object"),b=f("array"),v=(r=null,function(e){return r===e}),y=p("boolean"),w=p("number"),D=Array.prototype.push,x=function(e){for(var t=[],n=0,r=e.length;n'+n+"";var i=e.dom.getParent(e.selection.getStart(),"time");if(i)return void e.dom.setOuterHTML(i,n)}e.insertContent(n)}var n,r,i="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),d="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),c="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),m="January February March April May June July August September October November December".split(" "),u=[];e.addCommand("mceInsertDate",function(){a(e.getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d")))}),e.addCommand("mceInsertTime",function(){a(e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S")))}),e.addButton("insertdatetime",{type:"splitbutton",title:"Insert date/time",onclick:function(){a(n||r)},menu:u}),tinymce.each(e.settings.insertdatetime_formats||["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"],function(e){r||(r=e),u.push({text:t(e),onclick:function(){n=e,a(e)}})}),e.addMenuItem("insertdatetime",{icon:"date",text:"Insert date/time",menu:u,context:"insert"})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=function(e){return e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S"))},c=function(e){return e.getParam("insertdatetime_formats",["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"])},r="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),a="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),i="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),o="January February March April May June July August September October November December".split(" "),m=function(e,t){if((e=""+e).length'+n+"")}else e.insertContent(s(e,t));var i,o,u,c,m},t=function(t){t.addCommand("mceInsertDate",function(){var e;l(t,(e=t).getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d")))}),t.addCommand("mceInsertTime",function(){l(t,u(t))})},d=tinymce.util.Tools.resolve("tinymce.util.Tools"),n=function(n){var e,t,r,a,i=c(n),o=(a=c(r=n),e=0s&&n[d]==i&&(s=d);if(0>o){for(d=0;d-1?(n[s].style.zIndex=a[l],n[l].style.zIndex=a[s]):a[s]>0&&(n[s].style.zIndex=a[s]-1)}else{for(d=0;da[s]){l=d;break}l>-1?(n[s].style.zIndex=a[l],n[l].style.zIndex=a[s]):n[s].style.zIndex=a[s]+1}e.execCommand("mceRepaint")}function n(){var t=e.dom,o=t.getPos(t.getParent(e.selection.getNode(),"*")),d=e.getBody();e.dom.add(d,"div",{style:{position:"absolute",left:o.x,top:o.y>20?o.y:20,width:100,height:100},"class":"mceItemVisualAid mceItemLayer"},e.selection.getContent()||e.getLang("layer.content")),tinymce.Env.ie&&t.setHTML(d,d.innerHTML)}function a(){var o=t(e.selection.getNode());o||(o=e.dom.getParent(e.selection.getNode(),"DIV,P,IMG")),o&&("absolute"==o.style.position.toLowerCase()?(e.dom.setStyles(o,{position:"",left:"",top:"",width:"",height:""}),e.dom.removeClass(o,"mceItemVisualAid"),e.dom.removeClass(o,"mceItemLayer")):(o.style.left||(o.style.left="20px"),o.style.top||(o.style.top="20px"),o.style.width||(o.style.width=o.width?o.width+"px":"100px"),o.style.height||(o.style.height=o.height?o.height+"px":"100px"),o.style.position="absolute",e.dom.setAttrib(o,"data-mce-style",""),e.addVisual(e.getBody())),e.execCommand("mceRepaint"),e.nodeChanged())}e.addCommand("mceInsertLayer",n),e.addCommand("mceMoveForward",function(){d(1)}),e.addCommand("mceMoveBackward",function(){d(-1)}),e.addCommand("mceMakeAbsolute",function(){a()}),e.addButton("moveforward",{title:"layer.forward_desc",cmd:"mceMoveForward"}),e.addButton("movebackward",{title:"layer.backward_desc",cmd:"mceMoveBackward"}),e.addButton("absolute",{title:"layer.absolute_desc",cmd:"mceMakeAbsolute"}),e.addButton("insertlayer",{title:"layer.insertlayer_desc",cmd:"mceInsertLayer"}),e.on("init",function(){tinymce.Env.ie&&e.getDoc().execCommand("2D-Position",!1,!0)}),e.on("mouseup",function(o){var d=t(o.target);d&&e.dom.setAttrib(d,"data-mce-style","")}),e.on("mousedown",function(o){var d,n=o.target,a=e.getDoc();tinymce.Env.gecko&&(t(n)?"on"!==a.designMode&&(a.designMode="on",n=a.body,d=n.parentNode,d.removeChild(n),d.appendChild(n)):"on"==a.designMode&&(a.designMode="off"))}),e.on("NodeChange",o)}); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/legacyoutput/plugin.min.js b/Resources/public/vendor/tinymce/plugins/legacyoutput/plugin.min.js index f2002165..810721ae 100644 --- a/Resources/public/vendor/tinymce/plugins/legacyoutput/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/legacyoutput/plugin.min.js @@ -1 +1,9 @@ -!function(e){e.on("AddEditor",function(e){e.editor.settings.inline_styles=!1}),e.PluginManager.add("legacyoutput",function(t,n,i){t.on("init",function(){var n="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",i=e.explode(t.settings.font_size_style_values),a=t.schema;t.formatter.register({alignleft:{selector:n,attributes:{align:"left"}},aligncenter:{selector:n,attributes:{align:"center"}},alignright:{selector:n,attributes:{align:"right"}},alignjustify:{selector:n,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(t){return e.inArray(i,t.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}}),e.each("b,i,u,strike".split(","),function(e){a.addValidElements(e+"[*]")}),a.getElementRule("font")||a.addValidElements("font[face|size|color|style]"),e.each(n.split(","),function(e){var t=a.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))})}),t.addButton("fontsizeselect",function(){var e=[],n="8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7",i=t.settings.fontsize_formats||n;return t.$.each(i.split(" "),function(t,n){var i=n,a=n,o=n.split("=");o.length>1&&(i=o[0],a=o[1]),e.push({text:i,value:a})}),{type:"listbox",text:"Font Sizes",tooltip:"Font Sizes",values:e,fixedWidth:!0,onPostRender:function(){var e=this;t.on("NodeChange",function(){var n;n=t.dom.getParent(t.selection.getNode(),"font"),e.value(n?n.size:"")})},onclick:function(e){e.control.settings.value&&t.execCommand("FontSize",!1,e.control.settings.value)}}}),t.addButton("fontselect",function(){function e(e){e=e.replace(/;$/,"").split(";");for(var t=e.length;t--;)e[t]=e[t].split("=");return e}var n="Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",a=[],o=e(t.settings.font_formats||n);return i.each(o,function(e,t){a.push({text:{raw:t[0]},value:t[1],textStyle:-1==t[1].indexOf("dings")?"font-family:"+t[1]:""})}),{type:"listbox",text:"Font Family",tooltip:"Font Family",values:a,fixedWidth:!0,onPostRender:function(){var e=this;t.on("NodeChange",function(){var n;n=t.dom.getParent(t.selection.getNode(),"font"),e.value(n?n.face:"")})},onselect:function(e){e.control.settings.value&&t.execCommand("FontName",!1,e.control.settings.value)}}})})}(tinymce); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),l=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(s){var e,t,i,a;t=!1,(e=s).settings.inline_styles=t,e.getParam("fontsize_formats")||(i="8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7",e.settings.fontsize_formats=i),e.getParam("font_formats")||(a="Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats",e.settings.font_formats=a),s.on("PreInit",function(){return e=s,t="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table",i=l.explode(e.getParam("font_size_style_values","xx-small,x-small,small,medium,large,x-large,xx-large")),a=e.schema,e.formatter.register({alignleft:{selector:t,attributes:{align:"left"}},aligncenter:{selector:t,attributes:{align:"center"}},alignright:{selector:t,attributes:{align:"right"}},alignjustify:{selector:t,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all",preserve_attributes:["class","style"]},{inline:"strong",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all",preserve_attributes:["class","style"]},{inline:"em",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",toggle:!1,attributes:{face:"%value"}},fontsize:{inline:"font",toggle:!1,attributes:{size:function(e){return String(l.inArray(i,e.value)+1)}}},forecolor:{inline:"font",attributes:{color:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0}}),l.each("b,i,u,strike".split(","),function(e){a.addValidElements(e+"[*]")}),a.getElementRule("font")||a.addValidElements("font[face|size|color|style]"),void l.each(t.split(","),function(e){var t=a.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))});var e,t,i,a})};!function i(){e.add("legacyoutput",function(e){t(e)})}()}(); \ No newline at end of file diff --git a/Resources/public/vendor/tinymce/plugins/link/plugin.min.js b/Resources/public/vendor/tinymce/plugins/link/plugin.min.js index 703d6161..63b3b10c 100644 --- a/Resources/public/vendor/tinymce/plugins/link/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/link/plugin.min.js @@ -1 +1,9 @@ -tinymce.PluginManager.add("link",function(t){function e(e){return function(){var n=t.settings.link_list;"string"==typeof n?tinymce.util.XHR.send({url:n,success:function(t){e(tinymce.util.JSON.parse(t))}}):"function"==typeof n?n(e):e(n)}}function n(t,e,n){function i(t,n){return n=n||[],tinymce.each(t,function(t){var l={text:t.text||t.title};t.menu?l.menu=i(t.menu):(l.value=t.value,e&&e(l)),n.push(l)}),n}return i(t,n||[])}function i(e){function i(t){var e=f.find("#text");(!e.value()||t.lastControl&&e.value()==t.lastControl.text())&&e.value(t.control.text()),f.find("#href").value(t.control.value())}function l(e){var n=[];return tinymce.each(t.dom.select("a:not([href])"),function(t){var i=t.name||t.id;i&&n.push({text:i,value:"#"+i,selected:-1!=e.indexOf("#"+i)})}),n.length?(n.unshift({text:"None",value:""}),{name:"anchor",type:"listbox",label:"Anchors",values:n,onselect:i}):void 0}function a(){!c&&0===y.text.length&&d&&this.parent().parent().find("#text")[0].value(this.value())}function o(e){var n=e.meta||{};x&&x.value(t.convertURL(this.value(),"href")),tinymce.each(e.meta,function(t,e){f.find("#"+e).value(t)}),n.text||a.call(this)}function r(t){var e=b.getContent();if(/]+>[^<]+<\/a>$/.test(e)||-1==e.indexOf("href=")))return!1;if(t){var n,i=t.childNodes;if(0===i.length)return!1;for(n=i.length-1;n>=0;n--)if(3!=i[n].nodeType)return!1}return!0}var s,u,c,f,d,g,x,v,h,m,p,k,y={},b=t.selection,_=t.dom;s=b.getNode(),u=_.getParent(s,"a[href]"),d=r(),y.text=c=u?u.innerText||u.textContent:b.getContent({format:"text"}),y.href=u?_.getAttrib(u,"href"):"",(k=_.getAttrib(u,"target"))?y.target=k:t.settings.default_link_target&&(y.target=t.settings.default_link_target),(k=_.getAttrib(u,"rel"))&&(y.rel=k),(k=_.getAttrib(u,"class"))&&(y["class"]=k),(k=_.getAttrib(u,"title"))&&(y.title=k),d&&(g={name:"text",type:"textbox",size:40,label:"Text to display",onchange:function(){y.text=this.value()}}),e&&(x={type:"listbox",label:"Link list",values:n(e,function(e){e.value=t.convertURL(e.value||e.url,"href")},[{text:"None",value:""}]),onselect:i,value:t.convertURL(y.href,"href"),onPostRender:function(){x=this}}),t.settings.target_list!==!1&&(t.settings.target_list||(t.settings.target_list=[{text:"None",value:""},{text:"New window",value:"_blank"}]),h={name:"target",type:"listbox",label:"Target",values:n(t.settings.target_list)}),t.settings.rel_list&&(v={name:"rel",type:"listbox",label:"Rel",values:n(t.settings.rel_list)}),t.settings.link_class_list&&(m={name:"class",type:"listbox",label:"Class",values:n(t.settings.link_class_list,function(e){e.value&&(e.textStyle=function(){return t.formatter.getCssText({inline:"a",classes:[e.value]})})})}),t.settings.link_title!==!1&&(p={name:"title",type:"textbox",label:"Title",value:y.title}),f=t.windowManager.open({title:"Insert link",data:y,body:[{name:"href",type:"filepicker",filetype:"file",size:40,autofocus:!0,label:"Url",onchange:o,onkeyup:a},g,p,l(y.href),x,v,h,m],onSubmit:function(e){function n(e,n){var i=t.selection.getRng();window.setTimeout(function(){t.windowManager.confirm(e,function(e){t.selection.setRng(i),n(e)})},0)}function i(){var e={href:l,target:y.target?y.target:null,rel:y.rel?y.rel:null,"class":y["class"]?y["class"]:null,title:y.title?y.title:null};u?(t.focus(),d&&y.text!=c&&("innerText"in u?u.innerText=y.text:u.textContent=y.text),_.setAttribs(u,e),b.select(u),t.undoManager.add()):d?t.insertContent(_.createHTML("a",e,_.encode(y.text))):t.execCommand("mceInsertLink",!1,e)}var l;return y=tinymce.extend(y,e.data),(l=y.href)?l.indexOf("@")>0&&-1==l.indexOf("//")&&-1==l.indexOf("mailto:")?void n("The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",function(t){t&&(l="mailto:"+l),i()}):/^\s*www\./i.test(l)?void n("The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",function(t){t&&(l="http://"+l),i()}):void i():void t.execCommand("unlink")}})}t.addButton("link",{icon:"link",tooltip:"Insert/edit link",shortcut:"Ctrl+K",onclick:e(i),stateSelector:"a[href]"}),t.addButton("unlink",{icon:"unlink",tooltip:"Remove link",cmd:"unlink",stateSelector:"a[href]"}),t.addShortcut("Ctrl+K","",e(i)),t.addCommand("mceLink",e(i)),this.showDialog=i,t.addMenuItem("link",{icon:"link",text:"Insert link",shortcut:"Ctrl+K",onclick:e(i),stateSelector:"a[href]",context:"insert",prependToContext:!0})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(i){"use strict";var n,t,e,r,o=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=tinymce.util.Tools.resolve("tinymce.util.VK"),a=function(r){return function(t){return e=typeof(n=t),(null===n?"null":"object"==e&&(Array.prototype.isPrototypeOf(n)||n.constructor&&"Array"===n.constructor.name)?"array":"object"==e&&(String.prototype.isPrototypeOf(n)||n.constructor&&"String"===n.constructor.name)?"string":e)===r;var n,e}},l=function(n){return function(t){return typeof t===n}},c=a("string"),f=a("array"),s=function(t){return n===t},m=l("boolean"),g=l("function"),d=function(t){var n=t.getParam("link_assume_external_targets",!1);return m(n)&&n?1:!c(n)||"http"!==n&&"https"!==n?0:n},h=function(t){return t.getParam("default_link_target")},v=function(t){return t.getParam("target_list",!0)},p=function(t){return t.getParam("rel_list",[],"array")},y=function(t){return t.getParam("allow_unsafe_link_target",!1,"boolean")},k=function(t){var n=i.document.createElement("a");n.target="_blank",n.href=t,n.rel="noreferrer noopener";var e,r,o=i.document.createEvent("MouseEvents");o.initMouseEvent("click",!0,!0,i.window,0,0,0,0,0,!1,!1,!1,!1,0,null),e=n,r=o,i.document.body.appendChild(e),e.dispatchEvent(r),i.document.body.removeChild(e)},x=function(){return(x=Object.assign||function(t){for(var n,e=1,r=arguments.length;e]+>[^<]+<\/a>$/.test(t)||-1===t.indexOf("href=")))},G=function(t){return t&&"FIGURE"===t.nodeName&&/\bimage\b/i.test(t.className)},J=function(t){return n=["title","rel","class","target"],e=function(n,e){return t[e].each(function(t){n[e]=010)||a.appendChild(y.create("br",{"data-mce-bogus":"1"})):i.appendChild(y.create("br")),i}function f(){return tinymce.grep(k.getSelectedBlocks(),function(e){return/^(LI|DT|DD)$/.test(e.nodeName)})}function l(e,t,n){var r,a,o=y.select('span[data-mce-type="bookmark"]',e);n=n||s(t),r=y.createRng(),r.setStartAfter(t),r.setEndAfter(e),a=r.extractContents(),y.isEmpty(a)||y.insertAfter(a,e),y.insertAfter(n,e),y.isEmpty(t.parentNode)&&(tinymce.each(o,function(e){t.parentNode.parentNode.insertBefore(e,t.parentNode)}),y.remove(t.parentNode)),y.remove(t)}function c(e){var n,r;if(n=e.nextSibling,n&&t(n)&&n.nodeName==e.nodeName){for(;r=n.firstChild;)e.appendChild(r);y.remove(n)}if(n=e.previousSibling,n&&t(n)&&n.nodeName==e.nodeName){for(;r=n.firstChild;)e.insertBefore(r,e.firstChild);y.remove(n)}}function p(e){tinymce.each(tinymce.grep(y.select("ol,ul",e)),function(e){var n,r=e.parentNode;"LI"==r.nodeName&&r.firstChild==e&&(n=r.previousSibling,n&&"LI"==n.nodeName&&(n.appendChild(e),y.isEmpty(r)&&y.remove(r))),t(r)&&(n=r.previousSibling,n&&"LI"==n.nodeName&&n.appendChild(e))})}function m(e){function a(e){y.isEmpty(e)&&y.remove(e)}var o,i=e.parentNode,d=i.parentNode;return"DD"==e.nodeName?(y.rename(e,"DT"),!0):n(e)&&r(e)?("LI"==d.nodeName?(y.insertAfter(e,d),a(d),y.remove(i)):t(d)?y.remove(i,!0):(d.insertBefore(s(e),i),y.remove(i)),!0):n(e)?("LI"==d.nodeName?(y.insertAfter(e,d),e.appendChild(i),a(d)):t(d)?d.insertBefore(e,i):(d.insertBefore(s(e),i),y.remove(e)),!0):r(e)?("LI"==d.nodeName?y.insertAfter(e,d):t(d)?y.insertAfter(e,i):(y.insertAfter(s(e),i),y.remove(e)),!0):("LI"==d.nodeName?(i=d,o=s(e,"LI")):o=t(d)?s(e,"LI"):s(e),l(i,e,o),p(i.parentNode),!0)}function u(e){function n(n,r){var a;if(t(n)){for(;a=e.lastChild.firstChild;)r.appendChild(a);y.remove(n)}}var r,a;return"DT"==e.nodeName?(y.rename(e,"DD"),!0):(r=e.previousSibling,r&&t(r)?(r.appendChild(e),!0):r&&"LI"==r.nodeName&&t(r.lastChild)?(r.lastChild.appendChild(e),n(e.lastChild,r.lastChild),!0):(r=e.nextSibling,r&&t(r)?(r.insertBefore(e,r.firstChild),!0):r&&"LI"==r.nodeName&&t(e.lastChild)?!1:(r=e.previousSibling,r&&"LI"==r.nodeName?(a=y.create(e.parentNode.nodeName),r.appendChild(a),a.appendChild(e),n(e.lastChild,a),!0):!1)))}function h(){var t=f();if(t.length){for(var n=i(k.getRng(!0)),r=0;r0))return n;for(var a=new tinymce.dom.TreeWalker(e.startContainer);n=a[t?"next":"prev"]();)if(3==n.nodeType&&n.data.length>0)return n}function r(e,n){var r,a,o=e.parentNode;for(t(n.lastChild)&&(a=n.lastChild),r=n.lastChild,r&&"BR"==r.nodeName&&e.hasChildNodes()&&y.remove(r);r=e.firstChild;)n.appendChild(r);a&&n.appendChild(a),y.remove(e),y.isEmpty(o)&&y.remove(o)}if(k.isCollapsed()){var a=y.getParent(k.getStart(),"LI");if(a){var o=k.getRng(!0),s=y.getParent(n(o,e),"LI");if(s&&s!=a){var f=i(o);return e?r(s,a):r(a,s),d(f),!0}if(!s&&!e&&g(a.parentNode.nodeName))return!0}}},e.addCommand("Indent",function(){return h()?void 0:!0}),e.addCommand("Outdent",function(){return v()?void 0:!0}),e.addCommand("InsertUnorderedList",function(){N("UL")}),e.addCommand("InsertOrderedList",function(){N("OL")}),e.addCommand("InsertDefinitionList",function(){N("DL")}),e.addQueryStateHandler("InsertUnorderedList",L("UL")),e.addQueryStateHandler("InsertOrderedList",L("OL")),e.addQueryStateHandler("InsertDefinitionList",L("DL")),e.on("keydown",function(t){9==t.keyCode&&e.dom.getParent(e.selection.getStart(),"LI,DT,DD")&&(t.preventDefault(),t.shiftKey?v():h())})}),e.addButton("indent",{icon:"indent",title:"Increase indent",cmd:"Indent",onPostRender:function(){var t=this;e.on("nodechange",function(){for(var r=e.selection.getSelectedBlocks(),a=!1,o=0,i=r.length;!a&&i>o;o++){var d=r[o].nodeName;a="LI"==d&&n(r[o])||"UL"==d||"OL"==d||"DD"==d}t.disabled(a)})}}),e.on("keydown",function(e){e.keyCode==tinymce.util.VK.BACKSPACE?o.backspaceDelete()&&e.preventDefault():e.keyCode==tinymce.util.VK.DELETE&&o.backspaceDelete(!0)&&e.preventDefault()})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(a){"use strict";var e,n,t,r,o,i,u,f=tinymce.util.Tools.resolve("tinymce.PluginManager"),s=function(){},y=function(e){return function(){return e}},c=function(n){return function(e){return!n(e)}},d=y(!1),l=y(!0),m=function(){return p},p=(e=function(e){return e.isNone()},{fold:function(e,n){return e()},is:d,isSome:d,isNone:l,getOr:t=function(e){return e},getOrThunk:n=function(e){return e()},getOrDie:function(e){throw new Error(e||"error: getOrDie called on none.")},getOrNull:y(null),getOrUndefined:y(undefined),or:t,orThunk:n,map:m,each:s,bind:m,exists:d,forall:l,filter:m,equals:e,equals_:e,toArray:function(){return[]},toString:y("none()")}),g=function(t){var e=y(t),n=function(){return o},r=function(e){return e(t)},o={fold:function(e,n){return n(t)},is:function(e){return t===e},isSome:l,isNone:d,getOr:e,getOrThunk:e,getOrDie:e,getOrNull:e,getOrUndefined:e,or:n,orThunk:n,map:function(e){return g(e(t))},each:function(e){e(t)},bind:r,exists:r,forall:r,filter:function(e){return e(t)?o:p},toArray:function(){return[t]},toString:function(){return"some("+t+")"},equals:function(e){return e.is(t)},equals_:function(e,n){return e.fold(d,function(e){return n(t,e)})}};return o},v={some:g,none:m,from:function(e){return null===e||e===undefined?p:g(e)}},h=function(r){return function(e){return t=typeof(n=e),(null===n?"null":"object"==t&&(Array.prototype.isPrototypeOf(n)||n.constructor&&"Array"===n.constructor.name)?"array":"object"==t&&(String.prototype.isPrototypeOf(n)||n.constructor&&"String"===n.constructor.name)?"string":t)===r;var n,t}},S=function(n){return function(e){return typeof e===n}},b=h("string"),C=h("array"),O=S("boolean"),N=S("function"),L=S("number"),T=Array.prototype.slice,w=Array.prototype.push,D=function(e,n){for(var t=e.length,r=new Array(t),o=0;oe.length?hn:vn)(t,e,n)},[]),P(r).map(function(e){return e.list}).toArray()},xn=function(a,e,s){var n,t=wn(e,(n=D(Je(a),ge.fromDom),Ne(B(n,c(Sn)),B(R(n),c(Sn)),function(e,n){return{start:e,end:n}})));k(t,function(e){var n,t;n=e.entries,t=s,k(x(n,Cn),function(e){return function(e,n){switch(e){case"Indent":n.depth++;break;case"Outdent":n.depth--;break;case"Flatten":n.depth=0}n.dirty=!0}(t,e)});var r,o,i,u=(r=a,o=e.entries,I(function(e,n){if(0===e.length)return[];for(var t=n(e[0]),r=[],o=[],i=0,u=e.length;i=e.childNodes.length?t.data.length:0}:t.previousSibling&&_e(t.previousSibling)?{container:t.previousSibling,offset:t.previousSibling.data.length}:t.nextSibling&&_e(t.nextSibling)?{container:t.nextSibling,offset:0}:{container:e,offset:n}},Pn=function(e){var n=e.cloneRange(),t=Rn(e.startContainer,e.startOffset);n.setStart(t.container,t.offset);var r=Rn(e.endContainer,e.endOffset);return n.setEnd(r.container,r.offset),n},Mn=function(e,n){var t,r=D(nn(e),ge.fromDom),o=D(x(Je(e),qe),ge.fromDom),i=!1;if(r.length||o.length){var u=e.selection.getBookmark();xn(e,r,n),t=e,k(o,"Indent"===n?In:function(e){return Bn(t,e)}),e.selection.moveToBookmark(u),e.selection.setRng(Pn(e.selection.getRng())),e.nodeChanged(),i=!0}return i},Un=function(e){return Mn(e,"Indent")},_n=function(e){return Mn(e,"Outdent")},Fn=function(e){return Mn(e,"Flatten")},$n=tinymce.util.Tools.resolve("tinymce.dom.BookmarkManager"),Hn=An.DOM,jn=function(o){var i={},e=function(e){var n,t,r;t=o[e?"startContainer":"endContainer"],r=o[e?"startOffset":"endOffset"],1===t.nodeType&&(n=Hn.create("span",{"data-mce-type":"bookmark"}),t.hasChildNodes()?(r=Math.min(r,t.childNodes.length-1),e?t.insertBefore(n,t.childNodes[r]):Hn.insertAfter(n,t.childNodes[r])):t.appendChild(n),t=n,r=0),i[e?"startContainer":"endContainer"]=t,i[e?"startOffset":"endOffset"]=r};return e(!0),o.collapsed||e(),i},qn=function(o){function e(e){var n,t,r;n=r=o[e?"startContainer":"endContainer"],t=o[e?"startOffset":"endOffset"],n&&(1===n.nodeType&&(t=function(e){for(var n=e.parentNode.firstChild,t=0;n;){if(n===e)return t;1===n.nodeType&&"bookmark"===n.getAttribute("data-mce-type")||t++,n=n.nextSibling}return-1}(n),n=n.parentNode,Hn.remove(r),!n.hasChildNodes()&&Hn.isBlock(n)&&n.appendChild(Hn.create("br"))),o[e?"startContainer":"endContainer"]=n,o[e?"startOffset":"endOffset"]=t)}e(!0),e();var n=Hn.createRng();return n.setStart(o.startContainer,o.startOffset),o.endContainer&&n.setEnd(o.endContainer,o.endOffset),Pn(n)},Kn=function(e){return/\btox\-/.test(e.className)},Vn=function(n,t,r){return function(){var e=function(e){var n=E(e.parents,Fe,Ke).filter(function(e){return e.nodeName===t&&!Kn(e)}).isSome();r(n)};return n.on("NodeChange",e),function(){return n.off("NodeChange",e)}}},Wn=function(e){switch(e){case"UL":return"ToggleUlList";case"OL":return"ToggleOlList";case"DL":return"ToggleDLList"}},Qn=function(t,e){Pe.each(e,function(e,n){t.setAttribute(n,e)})},Xn=function(e,n,t){var r,o,i,u,a,s,c;r=e,o=n,u=(i=t)["list-style-type"]?i["list-style-type"]:null,r.setStyle(o,"list-style-type",u),a=e,Qn(s=n,(c=t)["list-attributes"]),Pe.each(a.select("li",s),function(e){Qn(e,c["list-item-attributes"])})},zn=function(e,n,t,r){var o,i;for(o=n[t?"startContainer":"endContainer"],i=n[t?"startOffset":"endOffset"],1===o.nodeType&&(o=o.childNodes[Math.min(i,o.childNodes.length-1)]||o),!t&&Ve(o.nextSibling)&&(o=o.nextSibling);o.parentNode!==r;){if(We(e,o))return o;if(/^(TD|TH)$/.test(o.parentNode.nodeName))return o;o=o.parentNode}return o},Yn=function(f,d,l){void 0===l&&(l={});var e,n=f.selection.getRng(!0),m="LI",t=Ze(f,f.selection.getStart(!0)),p=f.dom;"false"!==p.getContentEditable(f.selection.getNode())&&("DL"===(d=d.toUpperCase())&&(m="DT"),e=jn(n),Pe.each(function(t,e,r){for(var o,i=[],u=t.dom,n=zn(t,e,!0,r),a=zn(t,e,!1,r),s=[],c=n;c&&(s.push(c),c!==a);c=c.nextSibling);return Pe.each(s,function(e){if(We(t,e))return i.push(e),void(o=null);if(u.isBlock(e)||Ve(e))return Ve(e)&&u.remove(e),void(o=null);var n=e.nextSibling;$n.isBookmarkNode(e)&&(We(t,n)||!n&&e.parentNode===r)?o=null:(o||(o=u.create("p"),e.parentNode.insertBefore(o,e),i.push(o)),o.appendChild(e))}),i}(f,n,t),function(e){var n,t,r,o,i,u,a,s,c;(t=e.previousSibling)&&Fe(t)&&t.nodeName===d&&(r=t,o=l,i=p.getStyle(r,"list-style-type"),u=o?o["list-style-type"]:"",i===(u=null===u?"":u))?(n=t,e=p.rename(e,m),t.appendChild(e)):(n=p.create(d),e.parentNode.insertBefore(n,e),n.appendChild(e),e=p.rename(e,m)),a=p,s=e,c=["margin","margin-right","margin-bottom","margin-left","margin-top","padding","padding-right","padding-bottom","padding-left","padding-top"],Pe.each(c,function(e){var n;return a.setStyle(s,((n={})[e]="",n))}),Xn(p,n,l),Jn(f.dom,n)}),f.selection.setRng(qn(e)))},Gn=function(e,n,t){return s=t,(a=n)&&s&&Fe(a)&&a.nodeName===s.nodeName&&(i=n,u=t,(o=e).getStyle(i,"list-style-type",!0)===o.getStyle(u,"list-style-type",!0))&&(r=t,n.className===r.className);var r,o,i,u,a,s},Jn=function(e,n){var t,r;if(t=n.nextSibling,Gn(e,n,t)){for(;r=t.firstChild;)n.appendChild(r);e.remove(t)}if(t=n.previousSibling,Gn(e,n,t)){for(;r=t.lastChild;)n.insertBefore(r,n.firstChild);e.remove(t)}},Zn=function(n,e,t,r,o){if(e.nodeName!==r||et(o)){var i=jn(n.selection.getRng(!0));Pe.each([e].concat(t),function(e){!function(e,n,t,r){if(n.nodeName!==t){var o=e.dom.rename(n,t);Xn(e.dom,o,r),Ie(e,Wn(t),o)}else Xn(e.dom,n,r),Ie(e,Wn(t),n)}(n,e,r,o)}),n.selection.setRng(qn(i))}else Fn(n)},et=function(e){return"list-style-type"in e},nt=function(e,n,t){var r=Ye(e),o=Ge(e);t=t||{},r&&0L zQ+;Np)nd>ixyb(2?Pi;ycRzh!V|9~NZ#OrN^dMrNY)iJ)*fcuLmTC-*wHo_})(MUF z^k>)-3L>X@Cfd|%nR@J9!(dB~%*?W-&)~uxstrbZm*WU0tHnJb{V(31+iiUDn2^IU*QV~jJhS1j`jgDTv-Bw`rkT+#7X3X$oG_+T zm%sEE)&!Jj`A3AmA^WdbDsPcHI`;IWnk$B6cKVG326kAK_xqyIiVAaP%;*xKRrh!3 z)}zm=?aSKdbbflH%*`k72LICR%-cadIzK%(qo7IMq+jnXo1KwrahzV6kg!lJ*FUs) z$ftd+5p_(*XC~g>`}%=laqEforbq9M+8DPrAhBNk`kSXu4>pwg!>8En#M05mgoK2M z)92402?+@qZ=4j_*4i;$nD+B1f8B^XckXmtc=6)J#M|?}dJs3_!S2T=Pv8Fb(+5#* zV#{K-|Jt`(uk5>Pw}%`H?J@KGl8cIn*UumNKMn2Fx%2YaS#1w>k-yx3pvsxp4qdx; zRXz=UdiPwU?+=7a88P?Me%~hT$c*mXeolpvbDIrr8vfw?M#H^>C3m(A#&fAKp7KrkM50?g6r6*Du-j6;JPVbWH678y@a`T_gO#Y}?*| zy$Q?PkNLX)x;1@h!{H09-AU7lUGpDLbSZeY{wcU!h@m2$~VA0MwBGketOiOt^K zzES(DXZIGJXnE?^k;#=dK6-Iy_4-zqz8`;g`Q5wg_w`+SYSo0&^$#62JiM~!-m%Di z(u81zr^ej9cdyQ&SC$(`r;V9Y{`Ir_#V&Q2+UL`RU7NznHpu*ON0R#KjobIPUv2;7 z`PfGd`v0|H-JAw3$M@Oy^7O4g=k~ku%dw}!%9lsMF-rDrX zrdJsou1U5({#}H?dCOZ_{$H4T|fVPMIVbMxJ=4;Ep7+fw%d>l% zPmQ&_+urbL{jf79n;kuR^b5!4J&nbL`EhH?G=1||%bZIaV#Wn;>@oQ5w6#6}_iKZyWH~1jsU<;L(pJw=Sn|R`{m&?7F>!XV)^0 zT{*aM;-^gqeYWw=o9h#sHMU$DIq21&%d@U-DE`S88(@#lcboWU!SdD_1qlc6KffNesPp<{+m*qEZ@(E-Vd0|=uXk=q|GDq|i#N)CcK7UB!<)-Nf1iE; zLN>KQcIr?))k`+5G(c7?6`Kgnx-;o8A*f9{BXRDVj= z!mH0)4es~nz=hV*lS?NR!im}a%{cn5e2t76zuqiA@OFiV7biD4Irh=JvF~~|FD!BY z-aYNBuMU@9K$&h=}vmw_o0$vG=7Z{Bv#fme&uNt(DK^92<71 zRsN3YQ>FxNZ2#nV|4yBzg*RM(Y3YRN3ymxNl4sa=*>9b!TzUH81<}I}{NN}lywxcJK5yDxvzX=T%?OHOTS zcHS_t$)VsH-K#!<^D?lqC4WiW#zzY_4u4YU*RaZgdQDqRC`jL3qxV<-O<#n5bz@rR z^Kf?VO}iZYdPhi9O74rbdFMK^Ro3?Cu)3`fh%B|HtBGB<3Cd>h|WIr*7U}JhAE6 z?&aU6KiTgS8Ps@U`EOntxHJ@w1YX zp6m`hH6rWC;m0}K8sFYAwp0118&~f9TfkVHNV;X#m}z}ZuW4ec$f27J&n=($dAk?0 zw*I)ya#`DCcI)fA<3?^=eKM!o_2`(LnZNHJTF!8B$LS+aJCt2@yDTaH^nJ)#97E0q06YOzYi#_*XMZU3v24&w@RD z*6EtQv|ZkchK*Y?qZFL17Yo;R+n)UH+PKIzb=qx9J@$Kap>U=);rGi;XVFHvJ=D?%6)q50$+!xG-s9zp8)dESPe$8-Hle^DWoM zo_$L9{5<+y#rImI7dTl988i^nw&#Vs=qKG3k)qA3#}SGx1CQ{c|9mtPfs`U;Hn%SF#8 z)W5Q0@#4kTEAA;V;!2;RF$HP3kj&IuC+A+9`^UaFk9=N(jvo$kf26Z|r=wnphA(~^ z^r`B}-m{^1diUzpcU|(HSGsR}E9KR>u%t(s&$iru`&-koJFg6I3>??5_mSu2{oaZo@nj~G=*L&rXmoWog%!_aOaL>AY`xnjLJ}I`V|KE#l_gpaL)YLuUZ_4euCr%zV z(6`g?eIGr4^0vj{Z_oQjXEr-n`ND%Y4ed8aH+`_@tLGgXHoLit9(dXOa0kuhtJ5;) zFFG>hP^0cUvqr>!KQW<4%GGsCC-zGmH0bTCb3F#nedYL}(Wjs8+Vs`}d`Q{#L>qpi zd52$a`Rr`=M^53GxT#g%j=Iw6<=f|1$L&3FY(}I{UY+feACAfGQyBMfV%1w>dhf~n zo`iG$4;Gi)_jbyYmjO4PkNvjv#`4y`N{+q1@|?e6{=P9Y3&kVPpUyeivrmolztv1? z^5X3@%P)(=%Xik_UU_RkmnkoPy-UdG1E1(<}&foC&+O;hPmv1(tow@9( zDjj~Qo7{Hd^Ed1ItgF|%N$~u=Z*Je5-n-W?t1eVLw`0fCEe*7*4{TA??NP9zFz$u< z;^R*b?Yvm#&fh&|T)xq|?u2W-Qcvt&G9aQ;+`iu3OLptfq(;-arbNTkNprrqzv^n; z8e>naZ!%jq!E&vj-Gm8iRxbSf{K|Xvs=r;==X0xk-#Fcb&(Ad2wD9%r3Ww^RJQ$of z5o#!+2@EAsz()w^JK z;_{_zknK&N=gL#PhA$g<;$cXML#EX|hhN{cM4$8X@H?Y?ON7)on4TEFulJnQC%%|? zVtM4lt<#>ae*CjKYm9y4g*zKxKDlvsTuW?SGQ%ajteV1_X}9{d7ZH4 z>-w}zJ$wCHg5g2guOHTZo4&#E+nOU)j%92*u=C=Y`(3|&^(c8wVEHiQ?RhBl^WDAr zcAXvW zaq#Ay=g*C+YPHDva_j1E&h4mLZ{IU()4H)YOI>b%sG-F3Q(NYaOX@VO)4V4hPOf-) zyYCrb&%vAL=AD>v`q{n7Q?7=@N7OJi`6)f|rZ#eKse<+StGlgl{R){)?<)T?u39zz z*xjpxADxbT@#*J7`uJ^IFtGdAhiu7t&j)TYEp^qgxg&JVrQ=kGsjT8{kudgPSo zLl1j&y|({iMA^6Nj$Pba{07^N!w17F@0(C1>*(}5Ti*HB?FP&F<>9rv!Ih>x{c1|R zx92w<9042A=WpZEn=1|_nqf^*+kS+RdZ`EXp7=@lzBTP$N&62Q^7iuz`#!09uIttj zW5%UE?tSWJLh5N-*s6`uS39c5`WSrHz)}x>*ZXk$0lD3;A2q;U)IR9w*Z$bCb<dr7-z*pN)y^c|EY^FR zk74tfggZO5oh_D?lYUv}p2zN)Q#uZwHeLRD*tPgdr#pZD;}1bQ<6li5{V;7@zOHiR z->)q?-~H`$qp^LjZ<6O#fYO_bn_oVeS!bnf{@!21()CUxHP)|BBv4lKmU{a=IuN%gIJ?z;KSyl{9 z)f;;E%(CTVq+$P1?Dhe=KF4nS82-o6``WBI>Bb&8ng1|E-Kc-;lLkTa#|QdYCsU5q z3K6l<_z!(*Mt!7H2Hqh2OSfA8&@bEAKf7Y6$(8}U{lb`)rq9q<47FPZ8ez|BRtz=R zthTHs6)VNEA0TP7VyCPeqjMW-1Gdp>G-T^jta$%_u^LU;Oe9imAUWx*4^9Dwl4L2A zt=J=3uAxz6T-|F%Ir}IZ!{nSDyk#oV)ocT~{#OLt@P9=xTe7o__UwPbX&fod^*>t% zin7-_Li<|m7OxHY$hy3R|Kkh$C`OT$eH7#UrF{gc=-Q;J%q&~aETi3?s?YK)%Two; zjq0`PdZ~kkMMa}h6#H??W&;mL>bhC*G5YTjaS40m$NHq^m`uj3_j^s}Yt#QTLs+Mdm#(YZ@PpYl{0B?uny$+n)@HV@>`4H|(TqP4B6ke_7-IRGV3=LEZn*WTKoD;m-dUvng2=Y3>c&4#5Aj_QT^V zIG0@Ozh3kIRF?r`2bZm6Ypmb0M zoGDA6Zmh{^xEh>{TSIGg;OO_W@MmYUJb@GX+AL{m_DMkv*sqLiyDSDDs`UPr8q(Ww z-JFi~b@Ux|L2#f}tJEiBpT z`pj1PY`xgRX0sag8G=41+veL!YL`gLfL>2yaFIHkh~5HRmAB7HPc>$#B)UC~wsd7j zyiCaGX*J5Cv$FI9l!;mT3_E@xA?skXzq7^*G>R&rw4_P$Q1aUKC z^%ko!%@?NXDXAV1jpdGfvt}?@1 zBy5%4Z0jdwl~~JWud*BTRw*kWVKuh6$f>c1tKgpodOgcFz*Sbo;TJj4cDpg#uf>3D zBNI?obn+-C+hVmV-A%#HoorMTxtP~R_Hb^P3Moqx8R+WesZwOyq|;g=uC0E6EhoE` zB}>}680n*<@~%Gr(C%+7T3yPL(HFRjU*WvhA&{-H$Z7SDa~||8eLuYB)5I}`BaS}X zU^ZrjxJUn>uaIT4Wy|cS0)!0EUnq^xS4h{}dy7uboAf6GTA%$45IDQ3^le)eV-g-3%6#5y@rjmqD~P_7AwesT?r#* zq_qPrtIT$(7D*%;w$8Go`S!HhQuWqETU#5{`C2hew6$iH%AUsT7D(1ELJow@AKX4@i_WT4nXVyDu@>MrhFS9k79X?MQV^mtF2 zcx!f+8qOgsg!vCyA$WYF)B5T&492vgW0i2pom;O{+n5{~F3BZHxh*#WkUL|acV)3UJjla@CY^E3J>5 z2vL&oF3x9H=krS+>B$bL%B?=Sc(PqR*)N?+x1;Mwy;tt~UinM4R8C-;(7VvpyWm2T zj*Xvpp>`|5Vz1pwCDp}2R-SIj%CcoC(7=PL?&8XH^)uMgGjpcDk)yWtOC6^%=mjF zut}hk<1*4LV3AZ7dn=nEhdBsYPE2Q$(p9#X^tfU!YRr|f2YPRi#67tb?Z{9MWeIqM z1$3?gnFRq42p8Crq3~8)&xntHvRo@Fsvi4XIWoO}qy=#^^j7hUn2rf?y7oSGYSgR| zRikFTsQUFZ=xlr;ya!0E5+H=G`oRI6h8npOLC=%{PmF(x5FYVmdL18emCLf5uaJLuFV zx_#>yr{*@m8R=>ClbSkpaQ1Uu*sy*Ysj-!=b9<@T-*bs2A;flS+cu$P$Cwxwg2xa@ z2<>$p+Z93Z7zT!*$i(x~Da$Hlz$pp!kJGsK@B&MVZ35mK6 zYG*eV7(fKo!?nwP&hWLrR1Ao5X5z5jq&FCSz?Rt|(5wN{BY-lrs#tJiL^+QOJ8BV8cKv0ngw~^!lgcYs) zcqm)GC=#193s#I0V(EV&QpP)OZ}grbRIva$8m}r8z`Y)AV`39!?B*gEPgpCXNuOh7 z^8m)RGiK!Yu@1~wpqr~`uj`S}GP-Sy((bB~gA3d<+pNaZ&?zw%!xKA528#z(l7c}+ z;;+xn2KU+%7Q#-0Kqy-3+I46flNck%Eif93NuE>@?@ICrvXE#t#?MmJ9^fo`Vt7@j zj%_;{K?d#FayV9S24w8)32>IpGLzM213h9i_V!Ca-Qo5b{p>}G0c^!imNE_Og9oUG zbU@T;UJY_QIMHo=+UfALw~dMZB1R?U+vy<7A{Ay>d{|a8Eq>9hTE(>LkqC@TjBXvH z0AI4D*O9GT54d}t1`K7PgI`ct8j*j78$#B5Kve8q~Z=RuB540 zJ`psgRb|Tn8>Pn!7P*0Ga8>)5M4Urnrvy1DrMNF+d}7)s#&qlv+cCObj4x~sn^zo) zxR10gtim@st0&X*G3X9ZV}BmZrc4TvT#Jd$R(5(S+0x-G`5JPv zFi4b2K`vv~$V=b*!l?zpXQl~CXieRvAoOK`oD^+2JG^(UrJ%{jX;pgE=@BJkTkPxh z-Z0*hr!#}X>r?IS0K3u0!-Sj44=BUBL4#ldKk;8tDusXQji$LsP}78TVfDoWwH!If8M<>IdSxSXJtXw`yTwNebw zl35iJMWdofBM~gN4ZKofCKh6sOYwr3sZaaTm}QfL!pJfhA%Zo71E|#Jfa?dUeSiX( z#uSl&86gwwn_#xtvxQ7sR<(H9#;~tVS6qt*ikG6Zp7zu;d+$ zJ!AT3&LGKEn>DK1ExA$m$Yzz2KB?BIS~IBV9@#yzYBg+u-)c^b=1CFN8Z~p}sx@m~ zt(m)H1R^!6+C2>$;8*J8BGE0mS*7lgNfF&6s{vv)XAKg;v5*QY;K-G#)?g$AV}GMT zk&|HrBamsN-9I5cNvN2G5x2oes>tA6Sh7hIA-TIfLI4OW4u|UV4-7wT)JO%k9Ky#m zV{|s@K`m*d8%^pa^s-qpND`^xn_z_F3!G)@z_*B3!8E)zo7m6>qn9Zdj25d?{h~9Z zkg}aR2w-UJ0ti(XOuC9v*wMxL?5cFf8VXmOp={y0){%j87t>Mf(ylEUBZceF@_e#w zZEgL)71rC0GWL>yx25)y8Bms~(dvVL7zY&efT{$$mt}#IWt2-Xg@6?T^Y+tO(15G} zR~{n=8N0$)dEN%loJ=t%lNlQU-!>^Rk&1WP768W6!pj1_WeFw{FHx;2E-w;$e5?(pL;}>4lYC3QT0oO35Xw zL@S5UAZ{!8BaozL*_ybP{Tv! z6U>AxhDQlm$TC(cafE~%#foDj)$|Lt67~B1^})DhRKPCy}3( zZCkEg17-C{(!RVdv_k_@o`|X{B=U2)EMO9I#CMrJ>d9A3ZE($e7Rg_3-ib5?>U0Wn|M0H(JT~Ack7u5|! zbwknjQ&HVm^lc)ln~LgYqF=PAZXxn5MRhAt9V4n^MRjXY-9}W$iRyS!{h6q4E2`Ux z>h_{qC#pM$>d!@WN0B6m>O@i9NmPF!syd6RE~5XJ%FaY2-9=TBNP38>6tP&USj-@* z(v(K3H1T4PSq!p>LA}JF-eQnd3`!S+GQ=R87?ddn^$~-z#2~vElr0A3h(UeDpnhUd ze=%r)7&K4}`brG?S_~Q_27Mz24HkoPi5N5lU?{*afZ+fm07e3g0vHW224E~~#yFx( zBgzya22TL^7HTHKBr`-%(PR?j`ijAm;n7bdQ{XWb;5&e9kz|Ubk4UCLr|D3UDiWYf zfHECecEVTgg3jr1ZECE;wu$+ke3V5z0VwrkknfhXx zRghZ^um)f)z&e2S02=@{0&D`<46p@YE5J5@?EpIfb^`nWqwNBUZA7vg9(w@x0_=mP z&%`o6!s91^{ZREYzyZh~gy$iE!$d6m3lYm7Ct`(D01kjWfP8=gfYShH0L}uO12_+G z0pKFQC4kESzXDtVxC-za!0!Op0Imc40b|?*xJATDw*mfy{2h3HCRVx&k9z?3iAWz3 zu}VF$N`0})-;jF*@EG6;AU_3o2JjrpF92QwyaIR)@CM*5z&n6KfLtn883HgAU>Lw~ zfDsh-3t%)A{l`$TDr`u#@l>of0pMGJi2#$JeF_ynnF`PE0H#qfVmdr$P*FRJiovr1 z=0JHazZ0xSnu39uSqEx>w!4FDUdSbY;bHv?<|*b1->UG~ju-vM!*c?_w*V6XuE2CA@yael*#1<=gWsXv8f%32l@Y6-Q8Xju^)&i{K#TIRpRTZ$&yz)D$QceT?O*ZnP?}jC=}2U+|*tCBQ3y*8o6C_l8#=P7M2+Bo> zvPe)a!RHb|xfGvE1?4h)E)$e_FdSJWC|6>6CG=Yj{nh}ih5R~rt_Rp4C~p#t@)p2& z7Eik*Sf*AP&z&LwL0kDGjD78MN13=sYK->b9yNE&=1v~@sY_k$JeC9TByBX~#`{ZRq3dlql)z>rJ>6CL!)zsUqisdTNU_5g`~8UqlElIwgE6TvK(e zLMFHpLHLj@L_o)H-6(veK)tmq+?3;?mcEU48sZi;0h@ljKb!9PE4wLejgkn+w zlZue=l>`~)A)!PjW3tRCLGY+b<>NzrO9BN-IN3kRt#5HQvwxLWw=z(A7hD-a!rmtu zfRe)V9_b;xbfiibcjA<&Tt(@_(X!zjSCy-VNd#1?)t_)&Nwr#w0$rWsYH*Pp7sb_t zCaxC8)#mDOTwS%g9?V3gst>7;PXm@VgdGw1M!0F85{_>SOl<;-Zb~?@8Q}t&6Rt!w zaI^*CO0^_hNGrmXjv-u`Si+TUO}KJx2vruJ;Ay>UO4Fy)Kli--YKIbfsLwFDcjPOP>3* z8|4~ztN!!&wEm?V^5w-FjFqk%yXSAl>5TMbDeupu1hbT z>)M-gU-ss?ZdS^5xAI(4I^mKt2-m|#xRgx7>HAPFHH&ZtJK@r@DQC>)Ia3bhdiJH9 zxgX&y{R!7=Kzn6zzU{!TGOB!y8#IXHzTpN}12Si1UD5#g(^#O(+QcudmN;K5tZCb$6^OZbh_W0UmQ4390K zGPc6|TjysB3nKG2iBOoC%?hUDW z5QaHT4#JRUAnNA1vyf8m97NwdcOFv8T_8swy$C7KT_V3gdKps6{Ys8P{tBd&yGo8h z{x?V|_d7Wb`D>6;?m9UE`9C0~+zoOP@;4!++%0kn^0y(S+@Hh&`8$wO?k>rL{5?o1 zcc0`#{sE+vdq@f({}-f``0@#h(kGDe+*5K6^3NdUx##3Ol7QlCo%r3lu-9={TFm##n>O!%vSSxBxz-(30|ux}VeCJv{+Lpp+9 zgLEXl4(TWwLX~0MSjvRb7X<4MqO8nKpe1ggWWicNuwbp2-ewqovh)sf1MZ@%(|aiE z^ghZueE{iX`Vi77^e;%K(!U}7jy{5P8hs4ubovC+8T2WnGwCx(XVK><_4Ea#v*}An z=g?P>&ZVy*okuHFQHFC1DSZQDR^i^VbPIV$lvTMUlrMCjo~0B|&oUYYGuucNxfG<5 z=7JBgiVlJNYC06sHIRZ-(qWKa2Px03r^CT!ZJ=e#DI>ToR5k+KuK-{V$GrnN9|djO z=x9i{(=m|l0H=K{4d7wCFfxwHiSRuo;ar3}Ujyt$I`1ltryQ*c?Bw{W+!SB|QGSap z^C+1}>e8^GL7$$XsBPD&Qwly*_F5T~?Rm`KWsupfzynmBt+l>=EHoUF%Vc+LEwrl zr(_EhgEmnTCUC`J6=el3_&9`b5Cig#sMg>e@KmAnb3~;qrrMuqo^A=HP)h}cQgw4tFzxx=I#Y7jM*LD!~=sq%6#RH^`- zQf0BT0CP1Zf#CfBR;sMm8d|NEC=WPYSf~&c@|3kSWgRuGr}_;P^5Oc8_(<7AO`EBH z3w7u|Y+Li9Y+%2 zR*#P&=17MrGEAl4K^;l8<7;!~S`HKZM(SWk99o608FA>E;}CKlJip3$rXOeuHSMDL zrrlJxhtlMlSY_HvP5Y?1W>O1X3q%$Ls#1UEi0T}12FB59n<9?_a56@c^dpV`k#e~| z(sW`ZR$}@|qS#!n`<_s&N!m|YC({}lzn>Ca3~9}gpWz@wHw6!YRKt{d(<1^QD6W>G z)gGWoyl)`Hnn^LN4E>;w2Dp$CsXIWq!!Y_03d3_gh!T?A5ZlcSQzDaop(zakG5!}y^hZ%J z)f6z4DRsiqbYK#p!q-*7IV=2d=)j~lx;7jN!7*w&PW30Sum1-vC!H-CTyI&dq^46e zB^G&vrBWsbO=*oKKnf6fmHG-nexHpplDu@--@3?2kOzpDo2xvfDYUtdr!mlUKvskN>(r}1MIcnVT3Qr#%Zr8K~k&bn$Ko=>h9ZmyTqO4kYr z6-PqV*(Uzyoq}q(qu7QT;Z;a+fJ2ztY8FX^ZsRadjnlI8|+3rz%og zNSgnwMj5{(A7Bq}fJOD^JUMARqgq^yFrCcYIa|3Pn1u9N_}YZF2J zQ*(MmfQ+f12JT$FzDy6n>5?Q7uuMbAVo4yeFq|xoy-8`#87Kgj)SkB}_7G!skd@PE9bDv@@ScwvdYk6U_f1(%wdYvJ)mw?<}kI!BA)gA za6YfI9Pr%{YOVuRLMgZfl^sz=E=3lV@&}1ZQAMRZq){pAsFW)3+l4F3e$16yV{Alt z9>=Z(y{O6&mDD!03o*w*O&DIGs2x$s!Tn;mg!p0p7anKS4%#CqV81u)CxTqz8;^o# z5G0*#B>CxJ{|eH12kLGBw1#{fpZtiX93YO^*_4k4Y7iWG z`2}%&%6J+Y^a%*XOKN&Wp#gZIoyEt#28SvL6yD$$Rp(4}t#Hdce2 zb`EcPi&ffrnAs2rN6i7^^$x^mDsgH!8wHONrP(wnG)Msm!r&aq!VEGUBssu|ObU)> zRm2#a7bG2BCu*K-utv>L^YjNn_@@!v?mkGdw38w_enKvBlRU&oW+BN4M9C#yG?k2I zE^!k*&>O=V*91id>HVlzXE6aH1XGpXl)a=0ue^QQQk>Z=7j=oM|l1 zbohre9Zob=F=HMk>E&Jiqmtr^7wZ0Uzwr2+uAZX9Es&@6w152OQzqrQ>d*UwuGy zq=)DUM)Yep(UBh#9qA!@!cBD02Si7Ch@NCbzi|^C^&!zw9-=4RLJ7u^)~!mT1a4M*^wvjPos7ghJ#TXT*o&jPs0>$Hp1yVbr(}#~J5g zRGypcD1y2ikB}<4Ndhh`{`rdpDjWb;yhDKun*n zp5FItKB#9Y{u~s#IuLoK`;Op3LW@ZY%GaNj7NiN~xO|`@If;Y%25O47gY6%LOvp2_ zDdYuwU04W<8c!%p4y=nK4?LWF@MNHJ0;@#lBhL(uQoeaO)_x0yNugArCnGUrA`t-X z7?I4-nb6#C&N@tAhX%FtvO#C^w2LJZg!4(N%8HWxF@KHfC0&^`WZ4#vnwp#{mzN09=#$;T~+ea%N50g50Wk2Rd#d^|I7FyJ{D>`gve z4=@q=sPI9n=cBeoX+~X!(w1)?1dE!)gsrwDY{jZdGIp9^G~*BoDV8pRr^su3Jrx(g z1LUFaWax_@Iz=Uo;EQ?z?cukJD0x)_0CNiQ+{{dcyi(4bsdO)!*&or7hjp5zdu{`>>`$=AY@r#9pjxRX#Eab&(n3qz8 z!pv$Ue$HY13vN1&)I? zCA}k{{m@YjQ?ZaDOcno*P}U)N5?{qUiAV1>WioG?!Z)8soR>SSVk+N!zPm#A9S@7< zr|}#Kru=vw|BvjqJjcHy+`1U)r)%3Wu04H4mvGkG^Cwg4tXCnGX@*b z7_1-y^-)JL6}SN`(pECvrHNOQzUVSzM!TMOU|Z~u1SDeya%rW9&_*P*ipY5%^+ZsT zRnG#gjX-M^2}I=qPe&g1gpNooFt{kuyoD~Z4$~UqHUwK?_@>OMT0=mCEy9|`Ij9v` z*^k|wvTP2h<9S3oifa4jYx}Xv;RKG~eRl3v6FID~HCy2(^1%?FAQ|XA8hSIse3;@@ zo@>+(>8-}CXMh;9#yf7cV4(nmd+S)3oKK^~ern>UD|xm64byq(T7FMv+-Nq#{* z98mK-f-7+3r3$Gs-8~{WbU#2eTqV8=ms=&mps1ps!>203^>ZOL%>&tw(9P$mE6+MD z;00FJE#$dW1)Ge+w2R3nMEX#(h@a}b`q%&xs8%bI*O4mbbvW0J?uu}!ViPc2tqxCG z%qQ{eQjlGcF5y!cNAY3`c^uDE-C`CbZUzxltAkzmQ`l{)r+Eu_R%&%j$^xQQ1VMz5 zvXq4DC-EuE2y;M|kt$Gfb^eaV^8`C;@K(-QIn`AO)V97)ZJ9)EsYGpQ5o%LEM(sN< zYTIBt)#^Z3(=@N9?M0iWdo}IAIruFVr28Y(EkPK^W|K zmcXto<(qFH(q$+sFXNkUl*+8vUc$PqCrlFYW)w4FoNhVq#F)r4jKzSlSTgnSbZ+-< zFG@Ek!&?G)OPqL1TzGrD@b*dc*05t0Sd-(7r1>U-%VDSHjnoHKqcm%%d;4A;qw}Lg zXE}6RPVh(qoy~;t11eHNO!HAsQi%wwSm3E(6n>H@ECmWnB_9l)Y^3H}yaw7Yp)CWn zWlpqZPPDCFXfLJpuK=_aPP7$Hv~6B!KTFhB0@_L^+Da$db}zI8651+BC8{Kqs6EJ| z#$yPFB!tz3sYjJlJs#$nrll*uECg{Y!72oCJHdCC^apI535+Wu=jnD6_TmC^lK%Js zB+N%$3SC&d4tL7nL@ycK<-yqJ!IjQ}$|#t+pV=NCYgYym^I(lE}i6k@t?X*78cMb?IsuZBJJ<<`I+ z`f_W*vioxDc>IKGJFjyONcbZ;{P;7CgX_b>;y|bz|3)olWPizYwS9BHtPr|2hnL#MS|0`>7SjZa`4+l zUDo9{)rEeC2)@ad{HDXiPvnJM;HFr@Y_ zAG;HABMbr}gW$8EJIzW`g)j~<@cp$^BF+*{Q#KjMrOHy}#kUj|=EF>X0Ug5&pE#oO z0>GioYr{@APVXM@LrZXKSi0{nL7$_*b3x|zcaP!L@fueIChOu`*8DSy{&B#A=$-A& z2|(iU`rUnVocukUOa1rgubd%*vqBck_BdoaLI?Uy3|K=B*%}@HCMi^u!NPjfQap^FoLavZ4fR&sg zGC@%8q^`3FDvQMtDpW*JKrNQ*?^a`YYOqc72W$lD9Mdp*bD{jV;n)IeZt4?;mHE+Gk(DWMgcWn=xV%6MYIw44wT_PXR44c7%{@B zYjNfh53GD>P_e>7=_Oe{zL+@Yd@q5Gv<<1efG(kX`6pDi5A=wN`w`Tq!2Ja3Q^oBE z^(k;agZlL69C%8FX83W(*}N2CGczkG!l)5v(X9N38xA{`S5)@$nd}9C+Bm>V!sl1k zd;o>7fVf_8yhR-912_ly&@TSwZ(8FAMV`RAkO&ZZ;Vlb$2X~p620Kib+F>a0`HWw&uH+P8E|3C!_u#AP#vP#$I!!4~OAnn~hk63%>yxU-jugS~Zkn0|A;3mFO%@$o5> ze3iI7`JyYhigbrj5u)btyi43+wz%W?;H8HkJzN6sV#rW}Zx?|M!)GfP&ejBvwSk}= zU5LY7jSF2Jq?`6^?-7djU+?bkUHf5wnIp+B3p>Ej34FK}@DxubA!g1KXGaDutxaBzaT6L4^Xx#3I}@OoT# zjc`Qk7~C=Y)zBrQ|(S_o==k(Q0*>iUO_GB z0bJ%e?RWuS;~ClfQr{TCj?D( zn@)xZ;1P(7A;5)Na#_G}m>_ruse(dqjs%wW7SBnM zv%?{U9>A&C=Y;8(*q4On%Gj;I9qF^Td}bSUuTe4cw_%wA_a`h;DsT}=6=0#MLYr_9$tmFV$x*FHmLMD%$yn-eE+KUF^mM8z z{+``um~P{*DPIXcOrZDJ8t=mzmE2S+m&xP<(DRkS;>v>e8(MyAJ+g%kOK#@jL*;FCl^oWlyOM$GTARjqgfc^D@ z3$PEU>;hQYca&GikKaiMDkMwROKk%2PE;%FJQBR2b&c-F4L$C{FYvzZOX@& z=W@$?=92Hw&JrN(ct&{r6CO&lU8Sd3n(Hb(!_s_L={f)2AO)rue0T_)n|uuFameXZ zEtko603(t@<3qXJ(6dP|`S_PSm-~`Gr(Gmy7Yo`Y5G`nz3SmClWkR?%kEXohO|Nbqfm0kcLL9m~5qK}A!kA{d6;E@*cMc;^rs z%$h2(nE)^FMq;PX0>9FqA+Yy3`OraDw8LZeS{&2~-mvW8S;g-}8aZ|*Z2K-@HBvo6 zJhS-;^4i^kb`Nq;yI1%^z#A61)B(fNutLO&XL| zx*Gj7ouJs)S@PGw!PoY4mNc4%P}=N54Zy<-`|m6UYDz;fk2;IR@DmWcE({AoPdO|| zp)CE=yTYKDw}pe>7S4EEnD@5uPxkxN^(%i@Sm9lv!Rxo5*YB`*h0q_p+M92fSDUZR zV1J%~mqB412y?#H=3Vg@Gm~?`0hP%!@U$6Z=n3Sb7oaQhCm~LChsG(NPYK%0?sGt! z76ihQ@<0y17ua=h9$pQ~obvEq8U2G*l7El~!_H-n?JVBq*m^F`J+3V%D5sv&t|USD zl1V$-siv5=)*cX~OYeiiP;>>`NOx3B$AFiM9i7g&=@uU_5|xqUExSy^zc|b9*@pkh zS^kGH1Dy&H6)i&nwb%yF?;$w9h{R5C3s?M51dqKAKpYpomc-5$XpZwPiw{d%jH-VT z42MAqVjcFTTI*k_@-E7U-INysr6gb0-xn0LOj6Ld*_GBD0pAGB74VI~JOSgAc~k^X z_m%sSR{=T!+{%>T&4DHH+ot(~Zh^p_Sgl(q5X~5nJ4Er{95_hILeC^czG;yVC>?n8 z-#|~>(GiGO&|F0XTJjsjG?Y*BD_|zLAPoI;)T|Hq*cN{d_z;rd09{azZ9XKZ@ZUJo|lV$(lenyX=0;o--)t[r]==i[o]&&i.splice(o,1);e.selection.select(i[0]),e.nodeChanged()}})}function a(){var t=e.selection.getNode();return t.getAttribute("data-mce-object")?e.selection.getContent():void 0}function c(o){var a="";if(!o.source1&&(tinymce.extend(o,n(o.embed)),!o.source1))return"";if(o.source2||(o.source2=""),o.poster||(o.poster=""),o.source1=e.convertURL(o.source1,"source"),o.source2=e.convertURL(o.source2,"source"),o.source1mime=i(o.source1),o.source2mime=i(o.source2),o.poster=e.convertURL(o.poster,"poster"),o.flashPlayerUrl=e.convertURL(t+"/moxieplayer.swf","movie"),tinymce.each(d,function(e){var t,i,r;if(t=e.regex.exec(o.source1)){for(r=e.url,i=0;t[i];i++)r=r.replace("$"+i,function(){return t[i]});o.source1=r,o.type=e.type,o.width=o.width||e.w,o.height=o.height||e.h}}),o.embed)a=u(o.embed,o,!0);else{var c=r(o.source1);c&&(o.type="script",o.width=c.width,o.height=c.height),o.width=o.width||300,o.height=o.height||150,tinymce.each(o,function(t,i){o[i]=e.dom.encode(t)}),"iframe"==o.type?a+='':"application/x-shockwave-flash"==o.source1mime?(a+='',o.poster&&(a+=''),a+=""):-1!=o.source1mime.indexOf("audio")?e.settings.audio_template_callback?a=e.settings.audio_template_callback(o):a+='":"script"==o.type?a+='':a=e.settings.video_template_callback?e.settings.video_template_callback(o):'"}return a}function n(e){var t={};return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!0,special:"script,noscript",start:function(e,i){if(t.source1||"param"!=e||(t.source1=i.map.movie),("iframe"==e||"object"==e||"embed"==e||"video"==e||"audio"==e)&&(t.type||(t.type=e),t=tinymce.extend(i.map,t)),"script"==e){var o=r(i.map.src);if(!o)return;t={type:"script",source1:i.map.src,width:o.width,height:o.height}}"source"==e&&(t.source1?t.source2||(t.source2=i.map.src):t.source1=i.map.src),"img"!=e||t.poster||(t.poster=i.map.src)}}).parse(e),t.source1=t.source1||t.src||t.data,t.source2=t.source2||"",t.poster=t.poster||"",t}function s(t){return t.getAttribute("data-mce-object")?n(e.serializer.serialize(t,{selection:!0})):{}}function m(t){if(e.settings.media_filter_html===!1)return t;var i=new tinymce.html.Writer;return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!1,special:"script,noscript",comment:function(e){i.comment(e)},cdata:function(e){i.cdata(e)},text:function(e,t){i.text(e,t)},start:function(e,t,r){if("script"!=e&&"noscript"!=e){for(var o=0;o=c&&(r(n,{src:t["source"+c],type:t["source"+c+"mime"]}),!t["source"+c]))return;break;case"img":if(!t.poster)return;o=!0}a.start(e,n,s)},end:function(e){if("video"==e&&i)for(var n=1;2>=n;n++)if(t["source"+n]){var s=[];s.map={},n>c&&(r(s,{src:t["source"+n],type:t["source"+n+"mime"]}),a.start("source",s,!0))}if(t.poster&&"object"==e&&i&&!o){var m=[];m.map={},r(m,{src:t.poster,width:t.width,height:t.height}),a.start("img",m,!0)}a.end(e)}},new tinymce.html.Schema({})).parse(e),a.getContent()}var d=[{regex:/youtu\.be\/([\w\-.]+)/,type:"iframe",w:425,h:350,url:"//www.youtube.com/embed/$1"},{regex:/youtube\.com(.+)v=([^&]+)/,type:"iframe",w:425,h:350,url:"//www.youtube.com/embed/$2"},{regex:/vimeo\.com\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$1?title=0&byline=0&portrait=0&color=8dc7dc"},{regex:/vimeo\.com\/(.*)\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$2?title=0&byline=0"},{regex:/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/,type:"iframe",w:425,h:350,url:'//maps.google.com/maps/ms?msid=$2&output=embed"'}],l=tinymce.Env.ie&&tinymce.Env.ie<=8?"onChange":"onInput";e.on("ResolveName",function(e){var t;1==e.target.nodeType&&(t=e.target.getAttribute("data-mce-object"))&&(e.name=t)}),e.on("preInit",function(){var t=e.schema.getSpecialElements();tinymce.each("video audio iframe object".split(" "),function(e){t[e]=new RegExp("]*>","gi")});var i=e.schema.getBoolAttrs();tinymce.each("webkitallowfullscreen mozallowfullscreen allowfullscreen".split(" "),function(e){i[e]={}}),e.parser.addNodeFilter("iframe,video,audio,object,embed,script",function(t,i){for(var o,a,c,n,s,m,u,d,l=t.length;l--;)if(a=t[l],a.parent&&("script"!=a.name||(d=r(a.attr("src"))))){for(c=new tinymce.html.Node("img",1),c.shortEnded=!0,d&&(d.width&&a.attr("width",d.width.toString()),d.height&&a.attr("height",d.height.toString())),m=a.attributes,o=m.length;o--;)n=m[o].name,s=m[o].value,"width"!==n&&"height"!==n&&"style"!==n&&(("data"==n||"src"==n)&&(s=e.convertURL(s,n)),c.attr("data-mce-p-"+n,s));u=a.firstChild&&a.firstChild.value,u&&(c.attr("data-mce-html",escape(u)),c.firstChild=null),c.attr({width:a.attr("width")||"300",height:a.attr("height")||("audio"==i?"30":"150"),style:a.attr("style"),src:tinymce.Env.transparentSrc,"data-mce-object":i,"class":"mce-object mce-object-"+i}),a.replace(c)}}),e.serializer.addAttributeFilter("data-mce-object",function(e,t){for(var i,r,o,a,c,n,s,u=e.length;u--;)if(i=e[u],i.parent){for(s=i.attr(t),r=new tinymce.html.Node(s,1),"audio"!=s&&"script"!=s&&r.attr({width:i.attr("width"),height:i.attr("height")}),r.attr({style:i.attr("style")}),a=i.attributes,o=a.length;o--;){var d=a[o].name;0===d.indexOf("data-mce-p-")&&r.attr(d.substr(11),a[o].value)}"script"==s&&r.attr("type","text/javascript"),c=i.attr("data-mce-html"),c&&(n=new tinymce.html.Node("#text",3),n.raw=!0,n.value=m(unescape(c)),r.append(n)),i.replace(r)}})}),e.on("ObjectSelected",function(e){var t=e.target.getAttribute("data-mce-object");("audio"==t||"script"==t)&&e.preventDefault()}),e.on("objectResized",function(e){var t,i=e.target;i.getAttribute("data-mce-object")&&(t=i.getAttribute("data-mce-html"),t&&(t=unescape(t),i.setAttribute("data-mce-html",escape(u(t,{width:e.width,height:e.height})))))}),e.addButton("media",{tooltip:"Insert/edit video",onclick:o,stateSelector:["img[data-mce-object=video]","img[data-mce-object=iframe]"]}),e.addMenuItem("media",{icon:"media",text:"Insert video",onclick:o,context:"insert",prependToContext:!0})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e,t,r,n=tinymce.util.Tools.resolve("tinymce.PluginManager"),p=function(){return(p=Object.assign||function(e){for(var t,r=1,n=arguments.length;r"):"application/x-shockwave-flash"===n.sourcemime?(l='',s.poster&&(l+=''),l+=""):-1!==n.sourcemime.indexOf("audio")?(c=n,(u=h)?u(c):'"):"script"===n.type?' {% endif %} - + +{% block tinymce_widget_initializer %} + + +{% endblock %} + +{% block tinymce_widget_extra %} +{% endblock %} diff --git a/Resources/views/Script/textarea.html.twig b/Resources/views/Script/textarea.html.twig new file mode 100644 index 00000000..19d04058 --- /dev/null +++ b/Resources/views/Script/textarea.html.twig @@ -0,0 +1,2 @@ + +{{ form_widget(form) }} diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index a3dc75d1..eef246d2 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -3,6 +3,7 @@ use Stfalcon\Bundle\TinymceBundle\Helper\LocaleHelper; use Symfony\Component\DependencyInjection\ContainerInterface; +use Symfony\Component\Form\FormView; /** * Twig Extension for TinyMce support. @@ -24,6 +25,12 @@ class StfalconTinymceExtension extends \Twig_Extension * @var String */ protected $baseUrl; + /** + * Trigger of initialization + * + * @var bool + */ + private $initialized = false; /** * Initialize tinymce helper @@ -69,20 +76,39 @@ public function getFunctions() return array( 'tinymce_init' => new \Twig_SimpleFunction( 'tinymce_init', - array($this, 'tinymceInit'), + array($this, 'printIfNotInit'), array('is_safe' => array('html')) ), ); } + /** + * Be smart - initialize things only once + * + * @param FormView $form + * @param array $options + * @return string|null + */ + public function printIfNotInit($form, $options = array()) + { + $html = ''; + if(!$this->initialized) { + $this->initialized = true; + $html .= $this->tinymceInit($form, $options); + } + + return $html . $this->getService('templating')->render('StfalconTinymceBundle:Script:textarea.html.twig', ['form' => $form]); + } + /** * TinyMce initializations * + * @param FormView $form * @param array $options * * @return string */ - public function tinymceInit($options = array()) + public function tinymceInit($form, $options = array()) { $config = $this->getParameter('stfalcon_tinymce.config'); $config = array_merge_recursive($config, $options); @@ -135,7 +161,7 @@ public function tinymceInit($options = array()) $langDirectory = __DIR__.'/../../Resources/public/vendor/tinymce/langs/'; // A language code coming from the locale may not match an existing language file - if (!file_exists($langDirectory.$config['language'].'.js')) { + if (!file_exists($langDirectory . $config['language'].'.js')) { unset($config['language']); } @@ -146,6 +172,18 @@ public function tinymceInit($options = array()) } } + if(!isset($config['theme']['simple'])) { + $config['theme']['simple'] = [ + 'language' => $config['language'] + ]; + } + + if(!isset($config['theme']['advanced'])) { + $config['theme']['advanced'] = [ + 'language' => $config['language'] + ]; + } + if (isset($config['theme']) && $config['theme']) { // Parse the content_css of each theme so we can use 'asset[path/to/asset]' in there foreach ($config['theme'] as $themeName => $themeOptions) { @@ -186,6 +224,7 @@ public function tinymceInit($options = array()) 'tinymce_jquery' => $config['tinymce_jquery'], 'asset_package_name' => $assetPackageName, 'base_url' => $this->baseUrl, + 'form' => $form, )); } diff --git a/composer.json b/composer.json index adf8d374..0ab2dac0 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "issues": "https://github.com/stfalcon/TinymceBundle/issues" }, "require": { - "php": ">=5.6.*", + "php": ">=5.6", "symfony/symfony": ">=2.8" }, "autoload": { From a0a378304accd3dfe6a7cb462e7c9d6905086aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Thu, 25 Jun 2020 11:54:55 +0200 Subject: [PATCH 10/43] Finalize plugin --- DependencyInjection/Configuration.php | 86 +++------ .../StfalconTinymceExtension.php | 16 +- README.md | 27 --- Resources/public/js/elfinder.js | 32 ++++ Resources/public/js/init.jquery.js | 69 ------- Resources/public/js/init.standard.js | 169 +++++++----------- .../vendor/tinymce/jquery.tinymce.min.js | 92 ---------- Resources/views/Script/init.html.twig | 17 +- Twig/Extension/StfalconTinymceExtension.php | 127 +++++++------ UPGRADE.md | 4 - 10 files changed, 190 insertions(+), 449 deletions(-) create mode 100644 Resources/public/js/elfinder.js delete mode 100644 Resources/public/js/init.jquery.js delete mode 100644 Resources/public/vendor/tinymce/jquery.tinymce.min.js diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index c49dfaa1..56f823f7 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -17,85 +17,47 @@ class Configuration implements ConfigurationInterface */ public function getConfigTreeBuilder() { - $defaults = $this->getTinymceDefaults(); - $treeBuilder = new TreeBuilder(); return $treeBuilder - ->root('stfalcon_tinymce', 'array') + ->root('tinymce', 'array') ->children() - // Include jQuery (true) library or not (false) - ->booleanNode('include_jquery')->defaultFalse()->end() - // Use jQuery (true) or standalone (false) build of the TinyMCE - ->booleanNode('tinymce_jquery')->defaultFalse()->end() - // Set init to true to use callback on the event init - ->booleanNode('use_callback_tinymce_init')->defaultFalse()->end() + // Default language for all instances of the editor + ->scalarNode('language')->defaultNull()->end() // Selector ->scalarNode('selector')->defaultValue('[data-tinymce]')->end() + // Set init to true to use callback on the event init + ->booleanNode('use_callback_tinymce_init')->defaultFalse()->end() // base url for content ->scalarNode('base_url')->end() // asset packageName ->scalarNode('asset_package_name')->end() - // Default language for all instances of the editor - ->scalarNode('language')->defaultNull()->end() - ->arrayNode('theme') - ->useAttributeAsKey('name') - ->prototype('array') - ->useAttributeAsKey('name') - ->prototype('variable')->end() - ->end() - // Add default theme if it doesn't set - ->defaultValue($defaults) - ->end() - // Configure custom TinyMCE buttons - ->arrayNode('tinymce_buttons') - ->useAttributeAsKey('name') - ->prototype('array') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('text')->defaultNull()->end() - ->scalarNode('title')->defaultNull()->end() - ->scalarNode('image')->defaultNull()->end() - ->scalarNode('icon')->defaultNull()->end() + // plugins + ->scalarNode('plugins')->defaultValue('')->end() + // toolbar + ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() + ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() + ->arrayNode('file_picker') + ->children() + ->scalarNode('engine')->defaultNull()->end() + ->scalarNode('name')->defaultNull()->end() + ->scalarNode('route')->defaultNull()->end() + ->arrayNode('route_parameters') + ->prototype('scalar')->end() ->end() ->end() ->end() - // Configure external TinyMCE plugins - ->arrayNode('external_plugins') - ->useAttributeAsKey('name') - ->prototype('array') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('url')->isRequired()->end() + ->arrayNode('file_browser') + ->children() + ->scalarNode('engine')->defaultNull()->end() + ->scalarNode('name')->defaultNull()->end() + ->scalarNode('route')->defaultNull()->end() + ->arrayNode('route_parameters') + ->prototype('scalar')->end() ->end() ->end() ->end() ->end() ->end(); } - - /** - * Get default configuration of the each instance of editor - * - * @return array - */ - private function getTinymceDefaults() - { - return array( - 'advanced' => array( - "theme" => "modern", - "plugins" => array( - "advlist autolink lists link image charmap print preview hr anchor pagebreak", - "searchreplace wordcount visualblocks visualchars code fullscreen", - "insertdatetime media nonbreaking save table contextmenu directionality", - "emoticons template paste textcolor", - ), - "toolbar1" => "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify - | bullist numlist outdent indent | link image", - "toolbar2" => "print preview media | forecolor backcolor emoticons", - "image_advtab" => true, - ), - 'simple' => array(), - ); - } } diff --git a/DependencyInjection/StfalconTinymceExtension.php b/DependencyInjection/StfalconTinymceExtension.php index ce97459b..d25e6a38 100644 --- a/DependencyInjection/StfalconTinymceExtension.php +++ b/DependencyInjection/StfalconTinymceExtension.php @@ -13,7 +13,7 @@ class StfalconTinymceExtension extends Extension { /** - * Loads the StfalconTinymce configuration. + * Loads the Tinymce configuration. * * @param array $configs An array of configuration values * @param ContainerBuilder $container A ContainerBuilder instance @@ -23,20 +23,6 @@ public function load(array $configs, ContainerBuilder $container) // Get default configuration of the bundle $config = $this->processConfiguration(new Configuration(), $configs); - if (empty($config['theme'])) { - $config['theme'] = array( - 'simple' => array(), - ); - } else { - foreach ($config['theme'] as &$bundleTheme) { - // Quick fix for the removed obsolete themes - if (isset($bundleTheme['theme']) && in_array($bundleTheme['theme'], array('advanced', 'simple'))) { - $bundleTheme['theme'] = 'modern'; - } - unset($bundleTheme); - } - } - $container->setParameter('stfalcon_tinymce.config', $config); // load dependency injection config diff --git a/README.md b/README.md index 9b4db420..a7162583 100644 --- a/README.md +++ b/README.md @@ -79,17 +79,6 @@ Add class "tinymce" to textarea field to initialize TinyMCE. ``` -If you want to use jQuery version of the editor set the following parameters: - -```yaml - stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true - ... -``` - -The option `include_jquery` allows you to load external jQuery library from the Google CDN. Set it to `true` if you haven't included jQuery on your page. - If you are using FormBuilder, use an array to add the class, you can also use the `theme` option to change the used theme to something other than 'simple' (i.e. on of the other defined themes in your config - the example above defined 'bbcode'). e.g.: @@ -111,8 +100,6 @@ You can change the language of your TinyMCE editor by adding language selector i ```yaml // app/config/config.yml stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true selector: ".tinymce" language: %locale% theme: @@ -135,8 +122,6 @@ According to the TinyMCE documentation you can configure your editor as you wish ```yaml // app/config/config.yml stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true selector: ".tinymce" base_url: "http://yourdomain.com/" # this parameter may be included if you need to override the assets_base_urls for your template engine (to override a CDN base url) # Get current language from the parameters.ini @@ -250,8 +235,6 @@ If you specify a relative path, it is resolved in relation to the URL of the (HT ## Init Event -As $(document).ready() in jQuery you can listen to the init event as well in Tinymce. - To do so you must edit your config and set `use_callback_tinymce_init` to true. `app/config/config.yml`: @@ -277,13 +260,3 @@ function callback_tinymce_init(editor) { ## How to init TinyMCE for dynamically loaded elements To initialize TinyMCE for new loaded textareas you should just call `initTinyMCE()` function. - -#### Example for Sonata Admin Bundle - -```javascript - jQuery(document).ready(function() { - $('form').on('sonata.add_element', function(){ - initTinyMCE(); - }); - }); -``` diff --git a/Resources/public/js/elfinder.js b/Resources/public/js/elfinder.js new file mode 100644 index 00000000..26f01e06 --- /dev/null +++ b/Resources/public/js/elfinder.js @@ -0,0 +1,32 @@ +function getBrowser(browser, browserTitle) { + return (callback, value, meta) => { + + tinymce.activeEditor.activeWindow = tinymce.activeEditor.windowManager.openUrl({ + url: browser, + title: browserTitle + }); + tinymce.activeEditor.getFileCallback = (url, name, size, mime) => { + let info; + + // Make file info + info = name + ' (' + humanFileSize(size) + ')'; + + // Provide file and text for the link dialog + if (mime.substr(0, 4) === 'file') { + callback(url, {text: info, title: info}); + } + + // Provide image and alt text for the image dialog + if (mime.substr(0, 5) === 'image') { + callback(url, {alt: info}); + } + + // Provide alternative source and posted for the media dialog + if (mime.substr(0, 5) === 'media') { + callback(url); + } + }; + + return false; + }; +} diff --git a/Resources/public/js/init.jquery.js b/Resources/public/js/init.jquery.js deleted file mode 100644 index 0f08658b..00000000 --- a/Resources/public/js/init.jquery.js +++ /dev/null @@ -1,69 +0,0 @@ -/** - * Initialize standard build of the TinyMCE - * - * @param options - */ -function initTinyMCE(options) { - if (typeof options == 'undefined') options = stfalcon_tinymce_config; - (function($, undefined) { - $(function() { - var textareas = $('textarea'); - - if (options.selector) { - textareas = $('textarea' + options.selector); - } - textareas.each(function() { - var textarea = $(this), - theme = textarea.attr('data-theme') || 'simple'; - - // Get selected theme options - var settings = (typeof options.theme[theme] != 'undefined') - ? options.theme[theme] - : options.theme['simple']; - - settings.script_url = options.jquery_script_url; - settings.external_plugins = settings.external_plugins || {}; - // workaround for an incompatibility with html5-validation - if (textarea.is('[required]')) { - textarea.prop('required', false); - } - settings.setup = function(ed) { - // Add custom buttons to current editor - $.each(options.tinymce_buttons || {}, function(id, opts) { - opts = $.extend({}, opts, { - onclick: function() { - var callback = window['tinymce_button_' + id]; - if (typeof callback == 'function') { - callback(ed); - } else { - alert('You have to create callback function: "tinymce_button_' + id + '"'); - } - } - }); - ed.addButton(id, opts); - }); - // Load external plugins - $.each(options.external_plugins || {}, function(id, opts) { - var url = opts.url || null; - if (url) { - settings.external_plugins[id] = url; - tinymce.PluginManager.load(id, url); - } - }); - //Init Event - if (options.use_callback_tinymce_init) { - ed.on('init', function() { - var callback = window['callback_tinymce_init']; - if (typeof callback == 'function') { - callback(ed); - } else { - alert('You have to create callback function: callback_tinymce_init'); - } - }); - } - }; - textarea.tinymce(settings); - }); - }); - }(jQuery)); -} \ No newline at end of file diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 2d6bc2da..ae00eb33 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -5,59 +5,46 @@ */ function initTinyMCE(options) { if (typeof tinymce == 'undefined') return false; - if (typeof options == 'undefined') options = stfalcon_tinymce_config; // Load when DOM is ready domready(function() { let i, t = tinymce.editors, textareas = []; for (i in t) { if (t.hasOwnProperty(i)) t[i].remove(); } - switch (options.selector.substring(0, 1)) { - case "#": - const _t = document.getElementById(options.selector.substring(1)); - if (_t) textareas.push(_t); - break; - case ".": - textareas = getElementsByClassName(options.selector.substring(1), 'textarea'); - break; - default : - textareas = document.getElementsByTagName('textarea'); + if(!(options.selector instanceof Array)) { + options.selector = [options.selector]; } + options.selector.forEach(function(selector) { + textareas = processSelector(selector, textareas); + }); if (!textareas.length) { return false; } - let externalPlugins = []; - // Load external plugins - if (typeof options.external_plugins == 'object') { - for (const pluginId in options.external_plugins) { - if (!options.external_plugins.hasOwnProperty(pluginId)) { - continue; - } - const opts = options.external_plugins[pluginId], - url = opts.url || null; - if (url) { - externalPlugins.push({ - 'id': pluginId, - 'url': url - }); - tinymce.PluginManager.load(pluginId, url); - } - } - } - for (i = 0; i < textareas.length; i++) { - // Get editor's theme from the textarea data - const theme = textareas[i].getAttribute("data-theme") || 'simple'; - // Get selected theme options - let settings = (typeof options.theme[theme] != 'undefined') - ? options.theme[theme] - : options.theme['simple']; + // Get selected options + let settings = {...{ + plugins: 'importcss searchreplace autolink directionality fullscreen image link media table charmap hr anchor advlist lists wordcount textpattern noneditable help charmap quickbars code', + + language: options.language, + selector: options.selector, + menu: { + }, + menubar: false, + toolbar: 'undo redo | formatselect | bold italic underline strikethrough | removeformat | numlist bullist | alignleft aligncenter alignright alignjustify | ' + +' link unlink anchor blockquote | image media table | fullscreen code', + + // image_advtab: true, + content_css: options.content_css, + importcss_append: true, + quickbars_selection_toolbar: 'bold italic | quicklink h2 h3 blockquote quickimage quicktable', + noneditable_noneditable_class: "mceNonEditable", + toolbar_mode: 'sliding', + spellchecker_whitelist: ['Ephox', 'Moxiecode'], + + contextmenu: "link image imagetools table configurepermanentpen", + }, ...options}; - settings.external_plugins = settings.external_plugins || {}; - for (let p = 0; p < externalPlugins.length; p++) { - settings.external_plugins[externalPlugins[p]['id']] = externalPlugins[p]['url']; - } // workaround for an incompatibility with html5-validation if (textareas[i].getAttribute("required") !== '') { textareas[i].removeAttribute("required") @@ -66,41 +53,9 @@ function initTinyMCE(options) { if (textAreaId === '' || textAreaId === null) { textareas[i].setAttribute("id", "tinymce_" + Math.random().toString(36).substr(2)); } - // Add custom buttons to current editor - if (typeof options.tinymce_buttons == 'object') { - settings.setup = function(editor) { - for (const buttonId in options.tinymce_buttons) { - if (!options.tinymce_buttons.hasOwnProperty(buttonId)) continue; - - // Some tricky function to isolate variables values - (function(id, opts) { - opts.onclick = function() { - const callback = window['tinymce_button_' + id]; - if (typeof callback == 'function') { - callback(editor); - } else { - alert('You have to create callback function: "tinymce_button_' + id + '"'); - } - } - editor.ui.registry.addButton(id, opts); - })(buttonId, clone(options.tinymce_buttons[buttonId])); - } - //Init Event - if (options.use_callback_tinymce_init) { - editor.on('init', function() { - const callback = window['callback_tinymce_init']; - if (typeof callback == 'function') { - callback(editor); - } else { - alert('You have to create callback function: callback_tinymce_init'); - } - }); - } - } - } // Initialize textarea by its ID attribute - tinymce + const editor = tinymce .createEditor(textareas[i].getAttribute('id'), settings) .render(); } @@ -108,39 +63,47 @@ function initTinyMCE(options) { } /** - * Get elements by class name - * - * @param classname - * @param node + * @param selector + * @param textareas */ -function getElementsByClassName(classname, node) { - let elements = document.getElementsByTagName(node), - array = [], - re = new RegExp('\\b' + classname + '\\b'); - for (let i = 0, j = elements.length; i < j; i++) { - if (re.test(elements[i].className)) array.push(elements[i]); +function processSelector(selector, textareas) { + let elements; + switch (selector.substring(0, 1)) { + case "#": + const _t = document.getElementById(selector.substring(1)); + if (_t) textareas.push(_t); + break; + case ".": + elements = document.getElementsByClassName(selector.substring(1)); + for (element of elements) { + textareas.push(element); + } + break; + default: + elements = document.getElementsByTagName('textarea'); + for (element of elements) { + textareas.push(element); + } } - return array; + return textareas; } -/** - * Clone object - * - * @param o - */ -function clone(o) { - if (!o || "object" !== typeof o) { - return o; - } - let c = "function" === typeof o.pop ? [] : {}, p, v; - for (p in o) { - if (o.hasOwnProperty(p)) { - v = o[p]; - if (v && "object" === typeof v) { - c[p] = clone(v); - } - else c[p] = v; - } +function humanFileSize(bytes, si = false, dp = 1) { + const thresh = si ? 1000 : 1024; + + if (Math.abs(bytes) < thresh) { + return bytes + ' B'; } - return c; + + const units = ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; + let u = -1; + const r = 10**dp; + + do { + bytes /= thresh; + ++u; + } while (Math.round(Math.abs(bytes) * r) / r >= thresh && u < units.length - 1); + + + return bytes.toFixed(dp) + ' ' + units[u]; } diff --git a/Resources/public/vendor/tinymce/jquery.tinymce.min.js b/Resources/public/vendor/tinymce/jquery.tinymce.min.js deleted file mode 100644 index eb24fdd5..00000000 --- a/Resources/public/vendor/tinymce/jquery.tinymce.min.js +++ /dev/null @@ -1,92 +0,0 @@ -/** - * Copyright (c) Tiny Technologies, Inc. All rights reserved. - * Licensed under the LGPL or a commercial license. - * For LGPL see License.txt in the project root for license information. - * For commercial licenses see https://www.tiny.cloud/ - */ -/** - * Jquery integration plugin. - * - * @class tinymce.core.JqueryIntegration - * @private - */ -!function(){var f,c,u,p,d,s=[];d="undefined"!=typeof global?global:window,p=d.jQuery;var v=function(){ -// Reference to tinymce needs to be lazily evaluated since tinymce -// might be loaded through the compressor or other means -return d.tinymce};p.fn.tinymce=function(o){var e,t,i,l=this,r=""; -// No match then just ignore the call -if(!l.length)return l; -// Get editor instance -if(!o)return v()?v().get(l[0].id):null;l.css("visibility","hidden");// Hide textarea to avoid flicker -var n=function(){var a=[],c=0; -// Apply patches to the jQuery object, only once -u||(m(),u=!0), -// Create an editor instance for each matched node -l.each(function(e,t){var n,i=t.id,r=o.oninit; -// Generate unique id for target element if needed -i||(t.id=i=v().DOM.uniqueId()), -// Only init the editor once -v().get(i)||( -// Create editor instance and render it -n=v().createEditor(i,o),a.push(n),n.on("init",function(){var e,t=r;l.css("visibility",""), -// Run this if the oninit setting is defined -// this logic will fire the oninit callback ones each -// matched editor instance is initialized -r&&++c==a.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:v().resolve(t.replace(/\.\w+$/,"")),t=v().resolve(t)), -// Call the oninit function with the object -t.apply(e||v(),a))}))}), -// Render the editor instances in a separate loop since we -// need to have the full editors array used in the onInit calls -p.each(a,function(e,t){t.render()})}; -// Load TinyMCE on demand, if we need to -if(d.tinymce||c||!(e=o.script_url)) -// Delay the init call until tinymce is loaded -1===c?s.push(n):n();else{c=1,t=e.substring(0,e.lastIndexOf("/")), -// Check if it's a dev/src version they want to load then -// make sure that all plugins, themes etc are loaded in source mode as well --1!=e.indexOf(".min")&&(r=".min"), -// Setup tinyMCEPreInit object this will later be used by the TinyMCE -// core script to locate other resources like CSS files, dialogs etc -// You can also predefined a tinyMCEPreInit object and then it will use that instead -d.tinymce=d.tinyMCEPreInit||{base:t,suffix:r}, -// url contains gzip then we assume it's a compressor --1!=e.indexOf("gzip")&&(i=o.language||"en",e=e+(/\?/.test(e)?"&":"?")+"js=true&core=true&suffix="+escape(r)+"&themes="+escape(o.theme||"modern")+"&plugins="+escape(o.plugins||"")+"&languages="+(i||""), -// Check if compressor script is already loaded otherwise setup a basic one -d.tinyMCE_GZ||(d.tinyMCE_GZ={start:function(){var n=function(e){v().ScriptLoader.markDone(v().baseURI.toAbsolute(e))}; -// Add core languages -n("langs/"+i+".js"), -// Add themes with languages -n("themes/"+o.theme+"/theme"+r+".js"),n("themes/"+o.theme+"/langs/"+i+".js"), -// Add plugins with languages -p.each(o.plugins.split(","),function(e,t){t&&(n("plugins/"+t+"/plugin"+r+".js"),n("plugins/"+t+"/langs/"+i+".js"))})},end:function(){}}));var a=document.createElement("script");a.type="text/javascript",a.onload=a.onreadystatechange=function(e){e=e||window.event,2===c||"load"!=e.type&&!/complete|loaded/.test(a.readyState)||(v().dom.Event.domLoaded=1,c=2, -// Execute callback after mainscript has been loaded and before the initialization occurs -o.script_loaded&&o.script_loaded(),n(),p.each(s,function(e,t){t()}))},a.src=e,document.body.appendChild(a)}return l}, -// Add :tinymce pseudo selector this will select elements that has been converted into editor instances -// it's now possible to use things like $('*:tinymce') to get all TinyMCE bound elements. -p.extend(p.expr[":"],{tinymce:function(e){var t;return!!(e.id&&"tinymce"in d&&(t=v().get(e.id))&&t.editorManager===v())}}); -// This function patches internal jQuery functions so that if -// you for example remove an div element containing an editor it's -// automatically destroyed by the TinyMCE API -var m=function(){ -// Removes any child editor instances by looking for editor wrapper elements -var r=function(e){ -// If the function is remove -"remove"===e&&this.each(function(e,t){var n=l(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=v().get(t.id.replace(/_parent$/,""));n&&n.remove()})},o=function(i){var e,t=this; -// Handle set value -/*jshint eqnull:true */if(null!=i)r.call(t), -// Saves the contents before get/set value of textarea/div -t.each(function(e,t){var n;(n=v().get(t.id))&&n.setContent(i)});else if(0])*>/g,""):n.getContent({save:!0}):a.apply(p(t),r)}),i}}), -// Makes it possible to use $('#id').append("content"); to append contents to the TinyMCE editor iframe -p.each(["append","prepend"],function(e,t){var n=s[t]=p.fn[t],r="prepend"===t;p.fn[t]=function(i){var e=this;return u(e)?i!==f?("string"==typeof i&&e.filter(":tinymce").each(function(e,t){var n=l(t);n&&n.setContent(r?i+n.getContent():n.getContent()+i)}),n.apply(e.not(":tinymce"),arguments),e):void 0:n.apply(e,arguments)}}), -// Makes sure that the editor instance gets properly destroyed when the parent element is removed -p.each(["remove","replaceWith","replaceAll","empty"],function(e,t){var n=s[t]=p.fn[t];p.fn[t]=function(){return r.call(this,t),n.apply(this,arguments)}}),s.attr=p.fn.attr, -// Makes sure that $('#tinymce_id').attr('value') gets the editors current HTML contents -p.fn.attr=function(e,t){var n=this,i=arguments;if(!e||"value"!==e||!u(n))return s.attr.apply(n,i);if(t!==f)return o.call(n.filter(":tinymce"),t),s.attr.apply(n.not(":tinymce"),i),n;// return original set for chaining -var r=n[0],a=l(r);return a?a.getContent({save:!0}):s.attr.apply(p(r),i)}}}(); \ No newline at end of file diff --git a/Resources/views/Script/init.html.twig b/Resources/views/Script/init.html.twig index fa6dc350..cffcf637 100644 --- a/Resources/views/Script/init.html.twig +++ b/Resources/views/Script/init.html.twig @@ -1,14 +1,9 @@ -{% if include_jquery %} - -{% endif %} -{% if tinymce_jquery %} - - -{% else %} - - - -{% endif %} + + +{% for browser in file_browsers %} + +{% endfor %} + {% block tinymce_widget_initializer %} {% endblock %} diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index c1ab50f3..ebe29ce0 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -2,6 +2,7 @@ namespace Stfalcon\Bundle\TinymceBundle\Twig\Extension; use Stfalcon\Bundle\TinymceBundle\Helper\LocaleHelper; +use Stfalcon\Bundle\TinymceBundle\Model\ConfigManager; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Form\FormView; use Symfony\Component\Routing\RouterInterface; @@ -32,15 +33,21 @@ class StfalconTinymceExtension extends \Twig_Extension * @var bool */ private $initialized = false; + /** + * @var ConfigManager + */ + private $configManager; /** * Initialize tinymce helper * * @param ContainerInterface $container + * @param ConfigManager $configManager */ - public function __construct(ContainerInterface $container) + public function __construct(ContainerInterface $container, ConfigManager $configManager) { $this->container = $container; + $this->configManager = $configManager; } /** @@ -120,12 +127,20 @@ public function tinymceInit($form, $options = array()) $config = array_merge_recursive($config, $options); $this->baseUrl = (!isset($config['base_url']) ? null : $config['base_url']); + if($this->configManager->hasConfig('config')) { + $config = array_merge($config, $this->configManager->getConfig('config')); + } // Asset package name $assetPackageName = (!isset($config['asset_package_name']) ? null : $config['asset_package_name']); unset($config['asset_package_name']); $browsers = $this->getFileBrowsers($config); + // overwrite config + if($config['config_name'] !== 'default' && isset($config['theme'][$config['config_name']])) { + $config = array_merge($config, $config['theme'][$config['config_name']]); + } + // If the language is not set in the config... if (!isset($config['language']) || empty($config['language'])) { // get it from the request @@ -136,6 +151,7 @@ public function tinymceInit($form, $options = array()) $langDirectory = __DIR__.'/../../Resources/public/vendor/tinymce/langs/'; + // A language code coming from the locale may not match an existing language file if (!file_exists($langDirectory . $config['language'].'.js')) { unset($config['language']); @@ -147,16 +163,19 @@ public function tinymceInit($form, $options = array()) 'base_url' => $this->baseUrl, 'form' => $form, 'file_browsers' => $browsers, + 'initializeFunction' => false, )); } /** * Initialize TinyMCE in simple mode * @param $config + * @param null $initializeFunctionName * @return mixed */ - public function initSimple($config) + public function initSimple($config, $initializeFunctionName = null) { + $config = array_merge_recursive($this->getParameter('stfalcon_tinymce.config'), $config); // Asset package name $assetPackageName = (!isset($config['asset_package_name']) ? null : $config['asset_package_name']); $browsers = $this->getFileBrowsers($config); @@ -166,6 +185,7 @@ public function initSimple($config) 'asset_package_name' => $assetPackageName, 'base_url' => $this->baseUrl, 'file_browsers' => $browsers, + 'initializeFunction' => $initializeFunctionName, )); } @@ -176,7 +196,7 @@ public function initSimple($config) */ private function getTinyMCEConfiguration($config) { - unset($config['asset_package_name']); + unset($config['asset_package_name'], $config['init'], $config['theme']); return preg_replace( array( '/"file_browser_callback":"([^"]+)"\s*/', diff --git a/composer.json b/composer.json index 0ab2dac0..95ebf7c1 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "issues": "https://github.com/stfalcon/TinymceBundle/issues" }, "require": { - "php": ">=5.6", + "php": ">=7.0", "symfony/symfony": ">=2.8" }, "autoload": { From 9ce5f308027e894cc6a30c399086f74b694ef7b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Fri, 26 Jun 2020 15:15:34 +0200 Subject: [PATCH 13/43] Add variable plugin, advanced form type, fix async --- Form/Type/TinyMCEType.php | 43 +++- Resources/public/js/init.standard.js | 50 ++-- .../vendor/tinymce/plugins/variable/plugin.js | 238 ++++++++++++++++++ .../tinymce/plugins/variable/plugin.min.js | 13 + Resources/views/Script/init.html.twig | 2 +- Twig/Extension/StfalconTinymceExtension.php | 15 +- 6 files changed, 331 insertions(+), 30 deletions(-) create mode 100644 Resources/public/vendor/tinymce/plugins/variable/plugin.js create mode 100644 Resources/public/vendor/tinymce/plugins/variable/plugin.min.js diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index b4195008..bba10a2e 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -72,18 +72,25 @@ public function buildView(FormView $view, FormInterface $form, array $options) public function buildForm(FormBuilderInterface $builder, array $options) { $builder->setAttribute('enable', $options['enable']); + if($this->configManager->hasConfig('config')) { + $config = $this->configManager->getConfig('config'); + } else { + $config = []; + } - if(isset($options['config_name'])) { - if($this->configManager->hasConfig('config')) { - $config = $this->configManager->getConfig('config'); - } else { - $config = []; - } + $checkTypes = [ + 'config_name', 'language', 'selector', 'plugins', + 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', + 'valid_elements', 'file_picker', + ]; - $config['config_name'] = $options['config_name']; - $this->configManager->setConfig('config', $config); + foreach ($checkTypes as $type) { + if(isset($options[$type]) && $options[$type] !== null) { + $config[$type] = $options[$type]; + } } + $this->configManager->setConfig('config', $config); if (!$options['enable']) { return; } @@ -97,9 +104,27 @@ public function configureOptions(OptionsResolver $resolver) $resolver ->setDefaults([ 'config_name' => $this->configManager->getDefaultConfig(), + 'language' => null, + 'selector' => null, + 'plugins' => null, + 'toolbar' => null, + 'quickbars_selection_toolbar' => null, + 'quickbars_insert_toolbar' => null, + 'valid_elements' => null, + 'file_picker' => null, 'enable' => $this->enable, ]) - ->setAllowedTypes('enable', 'bool'); + ->setAllowedTypes('config_name', ['string', 'null']) + ->setAllowedTypes('language', ['string', 'null']) + ->setAllowedTypes('selector', ['string', 'null']) + ->setAllowedTypes('plugins', ['string', 'null']) + ->setAllowedTypes('toolbar', ['string', 'null']) + ->setAllowedTypes('quickbars_selection_toolbar', ['string', 'null']) + ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) + ->setAllowedTypes('valid_elements', ['string', 'null']) + ->setAllowedTypes('file_picker', ['array', 'null']) + ->setAllowedTypes('enable', 'bool') + ; } /** diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 67918436..5cf2b353 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -23,33 +23,45 @@ async function initTinyMCE(options) { options.selector.forEach(function(selector) { textareas = processSelector(selector, textareas); }); + if (!textareas.length) { + rejector('TinyMCE error: no target found from selector'); return false; } for (i = 0; i < textareas.length; i++) { // Get selected options let settings = {...{ - plugins: 'importcss searchreplace autolink directionality fullscreen image link media table charmap hr anchor advlist lists wordcount textpattern noneditable help charmap quickbars code', + plugins: 'importcss searchreplace autolink directionality fullscreen image link media table charmap hr anchor advlist lists wordcount textpattern noneditable help charmap quickbars code', - language: options.language, - selector: options.selector, - menu: { - }, - menubar: false, - toolbar: 'undo redo | formatselect | bold italic underline strikethrough | removeformat | numlist bullist | alignleft aligncenter alignright alignjustify | ' - +' link unlink anchor blockquote | image media table | fullscreen code', + language: options.language, + selector: options.selector, + menu: { + }, + content_style: '.variable,[data-original-variable]{\n' + + ' cursor: default;\n' + + ' background-color: #65b9dd;\n' + + ' color: #FFF;\n' + + ' padding: 2px 8px;\n' + + ' border-radius: 3px;\n' + + ' font-weight: bold;\n' + + ' font-style: normal;\n' + + ' display: inline-block;\n' + + '}', + menubar: false, + toolbar: 'undo redo | formatselect | bold italic underline strikethrough | removeformat | numlist bullist | alignleft aligncenter alignright alignjustify | ' + +' link unlink anchor blockquote | image media table | fullscreen code', - // image_advtab: true, - content_css: options.content_css, - importcss_append: true, - quickbars_selection_toolbar: 'bold italic | quicklink h2 h3 blockquote quickimage quicktable', - noneditable_noneditable_class: "mceNonEditable", - toolbar_mode: 'sliding', - spellchecker_whitelist: ['Ephox', 'Moxiecode'], + // image_advtab: true, + // content_css: options.content_css, + importcss_append: true, + quickbars_selection_toolbar: 'bold italic | quicklink h2 h3 blockquote quickimage quicktable', + // noneditable_noneditable_class: "mceNonEditable", + toolbar_mode: 'sliding', + spellchecker_whitelist: ['Ephox', 'Moxiecode'], - contextmenu: "link image imagetools table configurepermanentpen", - }, ...options}; + contextmenu: "link image imagetools table configurepermanentpen", + }, ...options}; // workaround for an incompatibility with html5-validation if (textareas[i].getAttribute("required") !== '') { @@ -66,7 +78,7 @@ async function initTinyMCE(options) { editor.render(); editors.push(editor); } - resolver(editors); + resolver(editors.length > 1 ? editors : editors[0]); }); return prom; @@ -97,7 +109,7 @@ function processSelector(selector, textareas) { } } } else { - textareas = textareas.push(selector); + textareas.push(selector); } return textareas; } diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.js new file mode 100644 index 00000000..52894d96 --- /dev/null +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.js @@ -0,0 +1,238 @@ +/** + * plugin.js + * + * Copyright, BuboBox + * Released under MIT License. + * + * License: https://www.bubobox.com + * Contributing: https://www.bubobox.com/contributing + */ + +/*global tinymce:true */ + +tinymce.PluginManager.add('variable', function(editor) { + + var VK = tinymce.util.VK; + + /** + * Object that is used to replace the variable string to be used + * in the HTML view + * @type {object} + */ + var mapper = editor.getParam("variable_mapper", {}); + + /** + * define a list of variables that are allowed + * if the variable is not in the list it will not be automatically converterd + * by default no validation is done + * @todo make it possible to pass in a function to be used a callback for validation + * @type {array} + */ + var valid = editor.getParam("variable_valid", null); + + /** + * Get custom variable class name + * @type {string} + */ + var className = editor.getParam("variable_class", "variable"); + + /** + * Prefix and suffix to use to mark a variable + * @type {string} + */ + var prefix = editor.getParam("variable_prefix", "{{"); + var suffix = editor.getParam("variable_suffix", "}}"); + var stringVariableRegex = new RegExp(prefix + '[ \s\t]*([a-z. _]*)?[ \s\t]*' + suffix, 'gi'); + + /** + * check if a certain variable is valid + * @param {string} name + * @return {bool} + */ + function isValid( name ) + { + + if( ! valid || valid.length === 0 ) + return true; + + var validString = '|' + valid.join('|') + '|'; + + return validString.indexOf( '|' + name + '|' ) > -1 ? true : false; + } + + function getMappedValue( cleanValue ) { + if(typeof mapper === 'function') + return mapper(cleanValue); + + return mapper.hasOwnProperty(cleanValue) ? mapper[cleanValue] : cleanValue; + } + + /** + * Strip variable to keep the plain variable string + * @example "{test}" => "test" + * @param {string} value + * @return {string} + */ + function cleanVariable(value) { + return value.replace(/[^a-zA-Z0-9._]/g, ""); + } + + /** + * convert a text variable "x" to a span with the needed + * attributes to style it with CSS + * @param {string} value + * @return {string} + */ + function createHTMLVariable( value ) { + + var cleanValue = cleanVariable(value); + + // check if variable is valid + if( ! isValid(cleanValue) ) + return value; + + var cleanMappedValue = getMappedValue(cleanValue); + + editor.fire('variableToHTML', { + value: value, + cleanValue: cleanValue + }); + + var variable = prefix + cleanValue + suffix; + return '' + cleanMappedValue + ''; + } + + /** + * convert variable strings into html elements + * @return {void} + */ + function stringToHTML() + { + var nodeList = [], + nodeValue, + node, + div; + + // find nodes that contain a string variable + tinymce.walk(editor.getBody(), function(n) { + if (n.nodeType == 3 && n.nodeValue && stringVariableRegex.test(n.nodeValue)) { + nodeList.push(n); + } + }, 'childNodes'); + + // loop over all nodes that contain a string variable + for (var i = 0; i < nodeList.length; i++) { + nodeValue = nodeList[i].nodeValue.replace(stringVariableRegex, createHTMLVariable); + div = editor.dom.create('div', null, nodeValue); + while ((node = div.lastChild)) { + editor.dom.insertAfter(node, nodeList[i]); + + if(isVariable(node)) { + var next = node.nextSibling; + editor.selection.setCursorLocation(next); + } + } + + editor.dom.remove(nodeList[i]); + } + } + + /** + * convert HTML variables back into their original string format + * for example when a user opens source view + * @return {void} + */ + function htmlToString() + { + var nodeList = [], + nodeValue, + node, + div; + + // find nodes that contain a HTML variable + tinymce.walk( editor.getBody(), function(n) { + if (n.nodeType == 1) { + var original = n.getAttribute('data-original-variable'); + if (original !== null) { + nodeList.push(n); + } + } + }, 'childNodes'); + + // loop over all nodes that contain a HTML variable + for (var i = 0; i < nodeList.length; i++) { + nodeValue = nodeList[i].getAttribute('data-original-variable'); + div = editor.dom.create('div', null, nodeValue); + while ((node = div.lastChild)) { + editor.dom.insertAfter(node, nodeList[i]); + } + + // remove HTML variable node + // because we now have an text representation of the variable + editor.dom.remove(nodeList[i]); + } + + } + + function setCursor(selector) { + var ell = editor.dom.select(selector)[0]; + if(ell) { + var next = ell.nextSibling; + editor.selection.setCursorLocation(next); + } + } + + /** + * handle formatting the content of the editor based on + * the current format. For example if a user switches to source view and back + * @param {object} e + * @return {void} + */ + function handleContentRerender(e) { + // store cursor location + return e.format === 'raw' ? stringToHTML() : htmlToString(); + // restore cursor location + } + + /** + * insert a variable into the editor at the current cursor location + * @param {string} value + * @return {void} + */ + function addVariable(value) { + var htmlVariable = createHTMLVariable(value); + editor.execCommand('mceInsertContent', false, htmlVariable); + } + + function isVariable(element) { + if(typeof element.getAttribute === 'function' && element.hasAttribute('data-original-variable')) + return true; + + return false; + } + + /** + * Trigger special event when user clicks on a variable + * @return {void} + */ + function handleClick(e) { + var target = e.target; + + if(!isVariable(target)) + return null; + + var value = target.getAttribute('data-original-variable'); + editor.fire('variableClick', { + value: cleanVariable(value), + target: target + }); + } + + editor.on('nodechange', stringToHTML ); + editor.on('keyup', stringToHTML ); + editor.on('beforegetcontent', handleContentRerender); + editor.on('click', handleClick); + + this.addVariable = addVariable; + +}); diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js new file mode 100644 index 00000000..74641202 --- /dev/null +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js @@ -0,0 +1,13 @@ +/** + * plugin.js + * + * Copyright, BuboBox + * Released under MIT License. + * + * License: https://www.bubobox.com + * Contributing: https://www.bubobox.com/contributing + */ + +/*global tinymce:true */ + +tinymce.PluginManager.add("variable",function(e){tinymce.util.VK;var a=e.getParam("variable_mapper",{}),t=e.getParam("variable_valid",null),n=e.getParam("variable_class","variable"),r=e.getParam("variable_prefix","{{"),i=e.getParam("variable_suffix","}}"),l=new RegExp(r+"[ s\t]*([a-z. _]*)?[ s\t]*"+i,"gi");function o(e){return e.replace(/[^a-zA-Z0-9._]/g,"")}function u(l){var u,c=o(l);if(u=c,t&&0!==t.length&&!(("|"+t.join("|")+"|").indexOf("|"+u+"|")>-1))return l;var d=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(c);return e.fire("variableToHTML",{value:l,cleanValue:c}),''+d+""}function c(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&l.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;i diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index ebe29ce0..a5a2fd4f 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -128,7 +128,20 @@ public function tinymceInit($form, $options = array()) $this->baseUrl = (!isset($config['base_url']) ? null : $config['base_url']); if($this->configManager->hasConfig('config')) { - $config = array_merge($config, $this->configManager->getConfig('config')); + foreach ($this->configManager->getConfig('config') as $key => $value) { + if( + isset($config[$key]) + && + ( + is_array($config[$key]) + && $value + || in_array(strtolower(gettype($config[$key])), ['string', 'integer', 'float', 'double', 'boolean']) + && $value !== null + ) + ) { + $config[$key] = is_array($config[$key]) ? array_merge_recursive($config[$key], $value) : $value; + } + } } // Asset package name From 9f31d62b7c97ab961b34e38b02406875bc5a2a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Mon, 29 Jun 2020 12:03:14 +0200 Subject: [PATCH 14/43] Advanced variable plugin --- DependencyInjection/Configuration.php | 12 +++++ Form/Type/TinyMCEType.php | 4 +- Resources/public/js/init.standard.js | 5 ++- .../vendor/tinymce/plugins/variable/plugin.js | 3 +- .../tinymce/plugins/variable/plugin.min.js | 4 +- Twig/Extension/StfalconTinymceExtension.php | 44 ++++++++++++++++++- 6 files changed, 64 insertions(+), 8 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 5db0b7c2..96586893 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -62,6 +62,18 @@ public function getConfigTreeBuilder() ->end() ->end() ->end() + ->scalarNode('variable_prefix')->defaultValue('{{')->end() + ->scalarNode('variable_suffix')->defaultValue('}}')->end() + // allow paste images into editor + ->booleanNode('paste_data_images')->defaultTrue()->end() + ->arrayNode('variables') + ->children() + ->scalarNode('title')->defaultNull()->end() + ->arrayNode('list') + ->prototype('scalar')->end() + ->end() + ->end() + ->end() ->arrayNode('theme') ->useAttributeAsKey('name') ->prototype('array') diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index bba10a2e..6b905729 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -81,7 +81,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $checkTypes = [ 'config_name', 'language', 'selector', 'plugins', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', + 'valid_elements', 'file_picker', 'variables', ]; foreach ($checkTypes as $type) { @@ -113,6 +113,7 @@ public function configureOptions(OptionsResolver $resolver) 'valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, + 'variables' => null, ]) ->setAllowedTypes('config_name', ['string', 'null']) ->setAllowedTypes('language', ['string', 'null']) @@ -123,6 +124,7 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) + ->setAllowedTypes('variables', ['array', 'null']) ->setAllowedTypes('enable', 'bool') ; } diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 5cf2b353..0d40de31 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -36,8 +36,9 @@ async function initTinyMCE(options) { language: options.language, selector: options.selector, - menu: { - }, + variable_prefix: '{', + variable_suffix: '}', + menu: {}, content_style: '.variable,[data-original-variable]{\n' + ' cursor: default;\n' + ' background-color: #65b9dd;\n' + diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.js index 52894d96..8fcf8a8e 100644 --- a/Resources/public/vendor/tinymce/plugins/variable/plugin.js +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.js @@ -29,6 +29,7 @@ tinymce.PluginManager.add('variable', function(editor) { * @type {array} */ var valid = editor.getParam("variable_valid", null); + var tag = editor.getParam("variable_tag", 'span') || 'span'; /** * Get custom variable class name @@ -99,7 +100,7 @@ tinymce.PluginManager.add('variable', function(editor) { }); var variable = prefix + cleanValue + suffix; - return '' + cleanMappedValue + ''; + return '<' + tag + ' class="' + className + '" data-original-variable="' + variable + '" contenteditable="false">' + cleanMappedValue + ''; } /** diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js index 74641202..4938d029 100644 --- a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js @@ -7,7 +7,5 @@ * License: https://www.bubobox.com * Contributing: https://www.bubobox.com/contributing */ - /*global tinymce:true */ - -tinymce.PluginManager.add("variable",function(e){tinymce.util.VK;var a=e.getParam("variable_mapper",{}),t=e.getParam("variable_valid",null),n=e.getParam("variable_class","variable"),r=e.getParam("variable_prefix","{{"),i=e.getParam("variable_suffix","}}"),l=new RegExp(r+"[ s\t]*([a-z. _]*)?[ s\t]*"+i,"gi");function o(e){return e.replace(/[^a-zA-Z0-9._]/g,"")}function u(l){var u,c=o(l);if(u=c,t&&0!==t.length&&!(("|"+t.join("|")+"|").indexOf("|"+u+"|")>-1))return l;var d=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(c);return e.fire("variableToHTML",{value:l,cleanValue:c}),''+d+""}function c(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&l.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;i-1))return o;var f=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(d);return e.fire("variableToHTML",{value:o,cleanValue:d}),"<"+n+' class="'+r+'" data-original-variable="'+(i+d+l)+'" contenteditable="false">'+f+""}function d(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&o.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;igetParameter('stfalcon_tinymce.config'); $config = array_merge_recursive($config, $options); + if(!isset($config['variables'])) { + $config['variables'] = []; + } + $this->baseUrl = (!isset($config['base_url']) ? null : $config['base_url']); if($this->configManager->hasConfig('config')) { foreach ($this->configManager->getConfig('config') as $key => $value) { @@ -139,11 +143,40 @@ public function tinymceInit($form, $options = array()) && $value !== null ) ) { - $config[$key] = is_array($config[$key]) ? array_merge_recursive($config[$key], $value) : $value; + $config[$key] = is_array($config[$key]) ? array_merge($config[$key], $value) : $value; } } } + if(isset($config['variables'], $config['variables']['list'], $config['variables']['title']) && $config['variables']) { + $config['variable_mapper'] = $config['variables']['list']; + if(!isset($config['variables']['tag'])) { + $config['variables']['tag'] = 'span'; + } + $config['setup'] = 'ed => { ' . + 'ed.ui.registry.addMenuButton(\'variables\', {' . + 'text: \'' . str_replace(['""', "''"], '', $config['variables']['title']) . '\',' . + 'classes: \'tinymce_erpbox_var\',' . + 'fetch: callback => {' . + 'let items = [];' . + 'for (const key in ed.settings.variable_mapper) {' . + 'items.push({' . + 'type: \'menuitem\',' . + 'text: ed.settings.variable_mapper[key],' . + 'onAction: () => {' . + 'ed.plugins.variable.addVariable(key);' . + '}' . + '});' . + '}' . + 'callback(items);' . + '}' . + '});' . + '}'; + $config['variable_tag'] = $config['variables']['tag']; + unset($config['variables']); + $config['valid_elements'] .= ',*[]'; + } + // Asset package name $assetPackageName = (!isset($config['asset_package_name']) ? null : $config['asset_package_name']); unset($config['asset_package_name']); @@ -210,16 +243,23 @@ public function initSimple($config, $initializeFunctionName = null) private function getTinyMCEConfiguration($config) { unset($config['asset_package_name'], $config['init'], $config['theme']); + + if(isset($config['paste_data_images']) && is_string($config['paste_data_images'])) { + $config['paste_data_images'] = $config['paste_data_images'] === 'true'; + } + return preg_replace( array( '/"file_browser_callback":"([^"]+)"\s*/', '/"file_picker_callback":"([^"]+)"\s*/', '/"paste_preprocess":"([^"]+)"\s*/', + '/"setup":"([^"]+)"\s*/', ), array( 'file_browser_callback:$1', 'file_picker_callback:$1', 'paste_preprocess:$1', + 'setup:$1', ), json_encode($config) ); @@ -252,6 +292,7 @@ public function getFileBrowsers(&$config) '', $config['file_browser']['name'] ?: $browsers[$type]['name'] ) . '\')'; + unset($config['file_browser']); } // set route of filepicker @@ -273,6 +314,7 @@ public function getFileBrowsers(&$config) '', $config['file_picker']['name'] ?: $browsers[$type]['name'] ) . '\')'; + unset($config['file_picker']); } return $browsers; From b4eb2fcf538d4ebb739dace0d37449bb3df19b41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Mon, 29 Jun 2020 15:15:36 +0200 Subject: [PATCH 15/43] Count words PL translation --- Resources/public/vendor/tinymce/langs/pl.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Resources/public/vendor/tinymce/langs/pl.js b/Resources/public/vendor/tinymce/langs/pl.js index dbbd1970..90d596cb 100644 --- a/Resources/public/vendor/tinymce/langs/pl.js +++ b/Resources/public/vendor/tinymce/langs/pl.js @@ -187,5 +187,7 @@ tinymce.addI18n('pl',{ "Tools": "Narz\u0119dzia", "View": "Widok", "Table": "Tabela", -"Format": "Format" -}); \ No newline at end of file +"Format": "Format", +"{0} characters": "{0} znaków", +"{0} words": "{0} słów" +}); From 488c39a509f07ebff2e24ad0ed67b77ba5776b26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Mon, 29 Jun 2020 15:54:39 +0200 Subject: [PATCH 16/43] Textarea selector fix --- Resources/public/js/init.standard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 0d40de31..345895ad 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -104,7 +104,7 @@ function processSelector(selector, textareas) { } break; default: - elements = document.getElementsByTagName('textarea'); + elements = document.querySelectorAll(selector); for (element of elements) { textareas.push(element); } From 7f6a39f63a4a1974c1acb8302499cfe029ddae29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Fri, 3 Jul 2020 08:56:53 +0200 Subject: [PATCH 17/43] Enable native spell checking --- Resources/public/js/init.standard.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index 345895ad..f991d1c2 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -50,6 +50,7 @@ async function initTinyMCE(options) { ' display: inline-block;\n' + '}', menubar: false, + browser_spellcheck: true, toolbar: 'undo redo | formatselect | bold italic underline strikethrough | removeformat | numlist bullist | alignleft aligncenter alignright alignjustify | ' +' link unlink anchor blockquote | image media table | fullscreen code', From 0ec9ee83090c0cef62759f1e6604114e8c5120ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Fri, 3 Jul 2020 14:51:46 +0200 Subject: [PATCH 18/43] Some default options --- DependencyInjection/Configuration.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 96586893..34f1fd2b 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -42,6 +42,10 @@ public function getConfigTreeBuilder() ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() ->scalarNode('quickbars_insert_toolbar')->defaultValue('')->end() + ->booleanNode('relative_urls')->defaultFalse()->end() + ->booleanNode('remove_script_host')->defaultFalse()->end() + ->booleanNode('convert_urls')->defaultFalse()->end() + ->booleanNode('browser_spellcheck')->defaultTrue()->end() ->arrayNode('file_picker') ->children() ->scalarNode('engine')->defaultNull()->end() From 1a9a712105b034f93fddc7cf1a890165fdcc73ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 21 Jul 2020 09:55:43 +0200 Subject: [PATCH 19/43] Provide valid_children and extended_valid_elements option --- DependencyInjection/Configuration.php | 4 ++++ Form/Type/TinyMCEType.php | 9 +++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 34f1fd2b..680e9720 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -38,6 +38,10 @@ public function getConfigTreeBuilder() ->scalarNode('valid_elements')->end() // plugins ->scalarNode('plugins')->defaultValue('')->end() + // extended valid elements (tags) + ->scalarNode('extended_valid_elements')->defaultValue('')->end() + // extended valid elements for tags (tags in tags) + ->scalarNode('valid_children')->defaultValue('')->end() // toolbar ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index 6b905729..58eeebdd 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -79,9 +79,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) } $checkTypes = [ - 'config_name', 'language', 'selector', 'plugins', + 'config_name', 'language', 'selector', 'plugins', 'extended_valid_elements', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', 'variables', + 'valid_elements', 'file_picker', 'variables', 'valid_children', ]; foreach ($checkTypes as $type) { @@ -89,6 +89,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $config[$type] = $options[$type]; } } + dump($options, $config); $this->configManager->setConfig('config', $config); if (!$options['enable']) { @@ -111,6 +112,8 @@ public function configureOptions(OptionsResolver $resolver) 'quickbars_selection_toolbar' => null, 'quickbars_insert_toolbar' => null, 'valid_elements' => null, + 'valid_children' => null, + 'extended_valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, 'variables' => null, @@ -123,6 +126,8 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_selection_toolbar', ['string', 'null']) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) + ->setAllowedTypes('valid_children', ['string', 'null']) + ->setAllowedTypes('extended_valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) ->setAllowedTypes('variables', ['array', 'null']) ->setAllowedTypes('enable', 'bool') From 0d22f5c61dda69854678ab93ca4b18b677f93793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 1 Sep 2020 14:45:23 +0200 Subject: [PATCH 20/43] Add entity_encoding option --- DependencyInjection/Configuration.php | 4 +++- Form/Type/TinyMCEType.php | 5 +++-- Resources/public/js/init.standard.js | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 680e9720..d2014c64 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -17,7 +17,7 @@ class Configuration implements ConfigurationInterface */ public function getConfigTreeBuilder() { - $treeBuilder = new TreeBuilder(); + $treeBuilder = new TreeBuilder("TinyMCEBundle"); return $treeBuilder ->root('tinymce', 'array') @@ -38,6 +38,8 @@ public function getConfigTreeBuilder() ->scalarNode('valid_elements')->end() // plugins ->scalarNode('plugins')->defaultValue('')->end() + // character encoding + ->scalarNode('entity_encoding ')->defaultValue('raw')->end() // extended valid elements (tags) ->scalarNode('extended_valid_elements')->defaultValue('')->end() // extended valid elements for tags (tags in tags) diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index 58eeebdd..61638bae 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -81,7 +81,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $checkTypes = [ 'config_name', 'language', 'selector', 'plugins', 'extended_valid_elements', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', 'variables', 'valid_children', + 'valid_elements', 'file_picker', 'variables', 'valid_children', 'entity_encoding ', ]; foreach ($checkTypes as $type) { @@ -89,7 +89,6 @@ public function buildForm(FormBuilderInterface $builder, array $options) $config[$type] = $options[$type]; } } - dump($options, $config); $this->configManager->setConfig('config', $config); if (!$options['enable']) { @@ -113,6 +112,7 @@ public function configureOptions(OptionsResolver $resolver) 'quickbars_insert_toolbar' => null, 'valid_elements' => null, 'valid_children' => null, + 'entity_encoding ' => 'raw', 'extended_valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, @@ -127,6 +127,7 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) ->setAllowedTypes('valid_children', ['string', 'null']) + ->setAllowedTypes('entity_encoding ', ['string']) ->setAllowedTypes('extended_valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) ->setAllowedTypes('variables', ['array', 'null']) diff --git a/Resources/public/js/init.standard.js b/Resources/public/js/init.standard.js index f991d1c2..25994e80 100644 --- a/Resources/public/js/init.standard.js +++ b/Resources/public/js/init.standard.js @@ -51,6 +51,7 @@ async function initTinyMCE(options) { '}', menubar: false, browser_spellcheck: true, + entity_encoding: 'raw', toolbar: 'undo redo | formatselect | bold italic underline strikethrough | removeformat | numlist bullist | alignleft aligncenter alignright alignjustify | ' +' link unlink anchor blockquote | image media table | fullscreen code', From 25cef017fb36e070a6b9363feb67caf720b2c0ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 1 Sep 2020 14:50:31 +0200 Subject: [PATCH 21/43] Upgrade loaded version of init.standard.js --- Resources/views/Script/init.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/views/Script/init.html.twig b/Resources/views/Script/init.html.twig index b0f4f376..450c7838 100644 --- a/Resources/views/Script/init.html.twig +++ b/Resources/views/Script/init.html.twig @@ -1,9 +1,9 @@ {% for browser in file_browsers %} - + {% endfor %} - + {% block tinymce_widget_initializer %} {% endif %} - + +{% block tinymce_widget_initializer %} + + +{% endblock %} + +{% block tinymce_widget_extra %} +{% endblock %} diff --git a/Resources/views/Script/textarea.html.twig b/Resources/views/Script/textarea.html.twig new file mode 100644 index 00000000..19d04058 --- /dev/null +++ b/Resources/views/Script/textarea.html.twig @@ -0,0 +1,2 @@ + +{{ form_widget(form) }} diff --git a/Twig/Extension/StfalconTinymceExtension.php b/Twig/Extension/StfalconTinymceExtension.php index dfc03a0f..0356e341 100644 --- a/Twig/Extension/StfalconTinymceExtension.php +++ b/Twig/Extension/StfalconTinymceExtension.php @@ -4,6 +4,7 @@ use Stfalcon\Bundle\TinymceBundle\Helper\LocaleHelper; use Symfony\Component\Asset\Packages; use Symfony\Component\DependencyInjection\ContainerInterface; +use Symfony\Component\Form\FormView; /** * Twig Extension for TinyMce support. @@ -25,6 +26,12 @@ class StfalconTinymceExtension extends \Twig_Extension * @var String */ protected $baseUrl; + /** + * Trigger of initialization + * + * @var bool + */ + private $initialized = false; /** * @var Packages @@ -73,20 +80,39 @@ public function getFunctions() return [ 'tinymce_init' => new \Twig_SimpleFunction( 'tinymce_init', - [$this, 'tinymceInit'], + [$this, 'printIfNotInit'], ['is_safe' => ['html']] ), ]; } + /** + * Be smart - initialize things only once + * + * @param FormView $form + * @param array $options + * @return string|null + */ + public function printIfNotInit($form, $options = array()) + { + $html = ''; + if(!$this->initialized) { + $this->initialized = true; + $html .= $this->tinymceInit($form, $options); + } + + return $html . $this->getService('templating')->render('StfalconTinymceBundle:Script:textarea.html.twig', ['form' => $form]); + } + /** * TinyMce initializations * + * @param FormView $form * @param array $options * * @return string */ - public function tinymceInit($options = []): string + public function tinymceInit($form, $options = []): string { $config = $this->getParameter('stfalcon_tinymce.config'); $config = array_merge_recursive($config, $options); @@ -139,7 +165,7 @@ public function tinymceInit($options = []): string $langDirectory = __DIR__.'/../../Resources/public/vendor/tinymce/langs/'; // A language code coming from the locale may not match an existing language file - if (!file_exists($langDirectory.$config['language'].'.js')) { + if (!file_exists($langDirectory . $config['language'].'.js')) { unset($config['language']); } @@ -150,6 +176,18 @@ public function tinymceInit($options = []): string } } + if(!isset($config['theme']['simple'])) { + $config['theme']['simple'] = [ + 'language' => $config['language'] + ]; + } + + if(!isset($config['theme']['advanced'])) { + $config['theme']['advanced'] = [ + 'language' => $config['language'] + ]; + } + if (isset($config['theme']) && $config['theme']) { // Parse the content_css of each theme so we can use 'asset[path/to/asset]' in there foreach ($config['theme'] as $themeName => $themeOptions) { @@ -192,6 +230,7 @@ public function tinymceInit($options = []): string 'tinymce_jquery' => $config['tinymce_jquery'], 'asset_package_name' => $assetPackageName, 'base_url' => $this->baseUrl, + 'form' => $form, ] ); } From 79dc709f5f937cc027b046466c84e85e47a853b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Thu, 25 Jun 2020 11:54:55 +0200 Subject: [PATCH 29/43] Finalize plugin --- DependencyInjection/Configuration.php | 61 ++++++--------- README.md | 27 ------- Resources/public/js/elfinder.js | 32 ++++++++ Resources/public/js/init.jquery.js | 69 ----------------- Resources/views/Script/init.html.twig | 17 ++--- Twig/Extension/StfalconTinymceExtension.php | 83 +++++++++++++++------ UPGRADE.md | 4 - 7 files changed, 123 insertions(+), 170 deletions(-) create mode 100644 Resources/public/js/elfinder.js delete mode 100644 Resources/public/js/init.jquery.js diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 49723f62..bfb75e7c 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -17,56 +17,43 @@ class Configuration implements ConfigurationInterface */ public function getConfigTreeBuilder(): TreeBuilder { - $defaults = $this->getTinymceDefaults(); - $treeBuilder = new TreeBuilder(); return $treeBuilder - ->root('stfalcon_tinymce', 'array') + ->root('tinymce', 'array') ->children() - // Include jQuery (true) library or not (false) - ->booleanNode('include_jquery')->defaultFalse()->end() - // Use jQuery (true) or standalone (false) build of the TinyMCE - ->booleanNode('tinymce_jquery')->defaultFalse()->end() - // Set init to true to use callback on the event init - ->booleanNode('use_callback_tinymce_init')->defaultFalse()->end() + // Default language for all instances of the editor + ->scalarNode('language')->defaultNull()->end() // Selector ->scalarNode('selector')->defaultValue('[data-tinymce]')->end() + // Set init to true to use callback on the event init + ->booleanNode('use_callback_tinymce_init')->defaultFalse()->end() // base url for content ->scalarNode('base_url')->end() // asset packageName ->scalarNode('asset_package_name')->end() - // Default language for all instances of the editor - ->scalarNode('language')->defaultNull()->end() - ->arrayNode('theme') - ->useAttributeAsKey('name') - ->prototype('array') - ->useAttributeAsKey('name') - ->prototype('variable')->end() - ->end() - // Add default theme if it doesn't set - ->defaultValue($defaults) - ->end() - // Configure custom TinyMCE buttons - ->arrayNode('tinymce_buttons') - ->useAttributeAsKey('name') - ->prototype('array') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('text')->defaultNull()->end() - ->scalarNode('title')->defaultNull()->end() - ->scalarNode('image')->defaultNull()->end() - ->scalarNode('icon')->defaultNull()->end() + // plugins + ->scalarNode('plugins')->defaultValue('')->end() + // toolbar + ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() + ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() + ->arrayNode('file_picker') + ->children() + ->scalarNode('engine')->defaultNull()->end() + ->scalarNode('name')->defaultNull()->end() + ->scalarNode('route')->defaultNull()->end() + ->arrayNode('route_parameters') + ->prototype('scalar')->end() ->end() ->end() ->end() - // Configure external TinyMCE plugins - ->arrayNode('external_plugins') - ->useAttributeAsKey('name') - ->prototype('array') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('url')->isRequired()->end() + ->arrayNode('file_browser') + ->children() + ->scalarNode('engine')->defaultNull()->end() + ->scalarNode('name')->defaultNull()->end() + ->scalarNode('route')->defaultNull()->end() + ->arrayNode('route_parameters') + ->prototype('scalar')->end() ->end() ->end() ->end() diff --git a/README.md b/README.md index 41c032aa..8532d9d2 100644 --- a/README.md +++ b/README.md @@ -80,17 +80,6 @@ Add class "tinymce" to textarea field to initialize TinyMCE. ``` -If you want to use jQuery version of the editor set the following parameters: - -```yaml - stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true - ... -``` - -The option `include_jquery` allows you to load external jQuery library from the Google CDN. Set it to `true` if you haven't included jQuery on your page. - If you are using FormBuilder, use an array to add the class, you can also use the `theme` option to change the used theme to something other than 'simple' (i.e. on of the other defined themes in your config - the example above defined 'bbcode'). e.g.: @@ -112,8 +101,6 @@ You can change the language of your TinyMCE editor by adding language selector i ```yaml // app/config/config.yml stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true selector: ".tinymce" language: %locale% theme: @@ -136,8 +123,6 @@ According to the TinyMCE documentation you can configure your editor as you wish ```yaml // app/config/config.yml stfalcon_tinymce: - include_jquery: true - tinymce_jquery: true selector: ".tinymce" base_url: "http://yourdomain.com/" # this parameter may be included if you need to override the assets_base_urls for your template engine (to override a CDN base url) # Get current language from the parameters.ini @@ -251,8 +236,6 @@ If you specify a relative path, it is resolved in relation to the URL of the (HT ## Init Event -As $(document).ready() in jQuery you can listen to the init event as well in Tinymce. - To do so you must edit your config and set `use_callback_tinymce_init` to true. `app/config/config.yml`: @@ -278,13 +261,3 @@ function callback_tinymce_init(editor) { ## How to init TinyMCE for dynamically loaded elements To initialize TinyMCE for new loaded textareas you should just call `initTinyMCE()` function. - -#### Example for Sonata Admin Bundle - -```javascript - jQuery(document).ready(function() { - $('form').on('sonata.add_element', function(){ - initTinyMCE(); - }); - }); -``` diff --git a/Resources/public/js/elfinder.js b/Resources/public/js/elfinder.js new file mode 100644 index 00000000..26f01e06 --- /dev/null +++ b/Resources/public/js/elfinder.js @@ -0,0 +1,32 @@ +function getBrowser(browser, browserTitle) { + return (callback, value, meta) => { + + tinymce.activeEditor.activeWindow = tinymce.activeEditor.windowManager.openUrl({ + url: browser, + title: browserTitle + }); + tinymce.activeEditor.getFileCallback = (url, name, size, mime) => { + let info; + + // Make file info + info = name + ' (' + humanFileSize(size) + ')'; + + // Provide file and text for the link dialog + if (mime.substr(0, 4) === 'file') { + callback(url, {text: info, title: info}); + } + + // Provide image and alt text for the image dialog + if (mime.substr(0, 5) === 'image') { + callback(url, {alt: info}); + } + + // Provide alternative source and posted for the media dialog + if (mime.substr(0, 5) === 'media') { + callback(url); + } + }; + + return false; + }; +} diff --git a/Resources/public/js/init.jquery.js b/Resources/public/js/init.jquery.js deleted file mode 100644 index 0f08658b..00000000 --- a/Resources/public/js/init.jquery.js +++ /dev/null @@ -1,69 +0,0 @@ -/** - * Initialize standard build of the TinyMCE - * - * @param options - */ -function initTinyMCE(options) { - if (typeof options == 'undefined') options = stfalcon_tinymce_config; - (function($, undefined) { - $(function() { - var textareas = $('textarea'); - - if (options.selector) { - textareas = $('textarea' + options.selector); - } - textareas.each(function() { - var textarea = $(this), - theme = textarea.attr('data-theme') || 'simple'; - - // Get selected theme options - var settings = (typeof options.theme[theme] != 'undefined') - ? options.theme[theme] - : options.theme['simple']; - - settings.script_url = options.jquery_script_url; - settings.external_plugins = settings.external_plugins || {}; - // workaround for an incompatibility with html5-validation - if (textarea.is('[required]')) { - textarea.prop('required', false); - } - settings.setup = function(ed) { - // Add custom buttons to current editor - $.each(options.tinymce_buttons || {}, function(id, opts) { - opts = $.extend({}, opts, { - onclick: function() { - var callback = window['tinymce_button_' + id]; - if (typeof callback == 'function') { - callback(ed); - } else { - alert('You have to create callback function: "tinymce_button_' + id + '"'); - } - } - }); - ed.addButton(id, opts); - }); - // Load external plugins - $.each(options.external_plugins || {}, function(id, opts) { - var url = opts.url || null; - if (url) { - settings.external_plugins[id] = url; - tinymce.PluginManager.load(id, url); - } - }); - //Init Event - if (options.use_callback_tinymce_init) { - ed.on('init', function() { - var callback = window['callback_tinymce_init']; - if (typeof callback == 'function') { - callback(ed); - } else { - alert('You have to create callback function: callback_tinymce_init'); - } - }); - } - }; - textarea.tinymce(settings); - }); - }); - }(jQuery)); -} \ No newline at end of file diff --git a/Resources/views/Script/init.html.twig b/Resources/views/Script/init.html.twig index fa6dc350..cffcf637 100644 --- a/Resources/views/Script/init.html.twig +++ b/Resources/views/Script/init.html.twig @@ -1,14 +1,9 @@ -{% if include_jquery %} - -{% endif %} -{% if tinymce_jquery %} - - -{% else %} - - - -{% endif %} + + +{% for browser in file_browsers %} + +{% endfor %} + {% block tinymce_widget_initializer %} {% endblock %} From 269021536e683d1718280ef52f85eb756708efff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Fri, 26 Jun 2020 15:15:34 +0200 Subject: [PATCH 32/43] Add variable plugin, advanced form type, fix async --- Form/Type/TinyMCEType.php | 43 +++- .../vendor/tinymce/plugins/variable/plugin.js | 238 ++++++++++++++++++ .../tinymce/plugins/variable/plugin.min.js | 13 + Resources/views/Script/init.html.twig | 2 +- 4 files changed, 286 insertions(+), 10 deletions(-) create mode 100644 Resources/public/vendor/tinymce/plugins/variable/plugin.js create mode 100644 Resources/public/vendor/tinymce/plugins/variable/plugin.min.js diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index b4195008..bba10a2e 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -72,18 +72,25 @@ public function buildView(FormView $view, FormInterface $form, array $options) public function buildForm(FormBuilderInterface $builder, array $options) { $builder->setAttribute('enable', $options['enable']); + if($this->configManager->hasConfig('config')) { + $config = $this->configManager->getConfig('config'); + } else { + $config = []; + } - if(isset($options['config_name'])) { - if($this->configManager->hasConfig('config')) { - $config = $this->configManager->getConfig('config'); - } else { - $config = []; - } + $checkTypes = [ + 'config_name', 'language', 'selector', 'plugins', + 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', + 'valid_elements', 'file_picker', + ]; - $config['config_name'] = $options['config_name']; - $this->configManager->setConfig('config', $config); + foreach ($checkTypes as $type) { + if(isset($options[$type]) && $options[$type] !== null) { + $config[$type] = $options[$type]; + } } + $this->configManager->setConfig('config', $config); if (!$options['enable']) { return; } @@ -97,9 +104,27 @@ public function configureOptions(OptionsResolver $resolver) $resolver ->setDefaults([ 'config_name' => $this->configManager->getDefaultConfig(), + 'language' => null, + 'selector' => null, + 'plugins' => null, + 'toolbar' => null, + 'quickbars_selection_toolbar' => null, + 'quickbars_insert_toolbar' => null, + 'valid_elements' => null, + 'file_picker' => null, 'enable' => $this->enable, ]) - ->setAllowedTypes('enable', 'bool'); + ->setAllowedTypes('config_name', ['string', 'null']) + ->setAllowedTypes('language', ['string', 'null']) + ->setAllowedTypes('selector', ['string', 'null']) + ->setAllowedTypes('plugins', ['string', 'null']) + ->setAllowedTypes('toolbar', ['string', 'null']) + ->setAllowedTypes('quickbars_selection_toolbar', ['string', 'null']) + ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) + ->setAllowedTypes('valid_elements', ['string', 'null']) + ->setAllowedTypes('file_picker', ['array', 'null']) + ->setAllowedTypes('enable', 'bool') + ; } /** diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.js new file mode 100644 index 00000000..52894d96 --- /dev/null +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.js @@ -0,0 +1,238 @@ +/** + * plugin.js + * + * Copyright, BuboBox + * Released under MIT License. + * + * License: https://www.bubobox.com + * Contributing: https://www.bubobox.com/contributing + */ + +/*global tinymce:true */ + +tinymce.PluginManager.add('variable', function(editor) { + + var VK = tinymce.util.VK; + + /** + * Object that is used to replace the variable string to be used + * in the HTML view + * @type {object} + */ + var mapper = editor.getParam("variable_mapper", {}); + + /** + * define a list of variables that are allowed + * if the variable is not in the list it will not be automatically converterd + * by default no validation is done + * @todo make it possible to pass in a function to be used a callback for validation + * @type {array} + */ + var valid = editor.getParam("variable_valid", null); + + /** + * Get custom variable class name + * @type {string} + */ + var className = editor.getParam("variable_class", "variable"); + + /** + * Prefix and suffix to use to mark a variable + * @type {string} + */ + var prefix = editor.getParam("variable_prefix", "{{"); + var suffix = editor.getParam("variable_suffix", "}}"); + var stringVariableRegex = new RegExp(prefix + '[ \s\t]*([a-z. _]*)?[ \s\t]*' + suffix, 'gi'); + + /** + * check if a certain variable is valid + * @param {string} name + * @return {bool} + */ + function isValid( name ) + { + + if( ! valid || valid.length === 0 ) + return true; + + var validString = '|' + valid.join('|') + '|'; + + return validString.indexOf( '|' + name + '|' ) > -1 ? true : false; + } + + function getMappedValue( cleanValue ) { + if(typeof mapper === 'function') + return mapper(cleanValue); + + return mapper.hasOwnProperty(cleanValue) ? mapper[cleanValue] : cleanValue; + } + + /** + * Strip variable to keep the plain variable string + * @example "{test}" => "test" + * @param {string} value + * @return {string} + */ + function cleanVariable(value) { + return value.replace(/[^a-zA-Z0-9._]/g, ""); + } + + /** + * convert a text variable "x" to a span with the needed + * attributes to style it with CSS + * @param {string} value + * @return {string} + */ + function createHTMLVariable( value ) { + + var cleanValue = cleanVariable(value); + + // check if variable is valid + if( ! isValid(cleanValue) ) + return value; + + var cleanMappedValue = getMappedValue(cleanValue); + + editor.fire('variableToHTML', { + value: value, + cleanValue: cleanValue + }); + + var variable = prefix + cleanValue + suffix; + return '' + cleanMappedValue + ''; + } + + /** + * convert variable strings into html elements + * @return {void} + */ + function stringToHTML() + { + var nodeList = [], + nodeValue, + node, + div; + + // find nodes that contain a string variable + tinymce.walk(editor.getBody(), function(n) { + if (n.nodeType == 3 && n.nodeValue && stringVariableRegex.test(n.nodeValue)) { + nodeList.push(n); + } + }, 'childNodes'); + + // loop over all nodes that contain a string variable + for (var i = 0; i < nodeList.length; i++) { + nodeValue = nodeList[i].nodeValue.replace(stringVariableRegex, createHTMLVariable); + div = editor.dom.create('div', null, nodeValue); + while ((node = div.lastChild)) { + editor.dom.insertAfter(node, nodeList[i]); + + if(isVariable(node)) { + var next = node.nextSibling; + editor.selection.setCursorLocation(next); + } + } + + editor.dom.remove(nodeList[i]); + } + } + + /** + * convert HTML variables back into their original string format + * for example when a user opens source view + * @return {void} + */ + function htmlToString() + { + var nodeList = [], + nodeValue, + node, + div; + + // find nodes that contain a HTML variable + tinymce.walk( editor.getBody(), function(n) { + if (n.nodeType == 1) { + var original = n.getAttribute('data-original-variable'); + if (original !== null) { + nodeList.push(n); + } + } + }, 'childNodes'); + + // loop over all nodes that contain a HTML variable + for (var i = 0; i < nodeList.length; i++) { + nodeValue = nodeList[i].getAttribute('data-original-variable'); + div = editor.dom.create('div', null, nodeValue); + while ((node = div.lastChild)) { + editor.dom.insertAfter(node, nodeList[i]); + } + + // remove HTML variable node + // because we now have an text representation of the variable + editor.dom.remove(nodeList[i]); + } + + } + + function setCursor(selector) { + var ell = editor.dom.select(selector)[0]; + if(ell) { + var next = ell.nextSibling; + editor.selection.setCursorLocation(next); + } + } + + /** + * handle formatting the content of the editor based on + * the current format. For example if a user switches to source view and back + * @param {object} e + * @return {void} + */ + function handleContentRerender(e) { + // store cursor location + return e.format === 'raw' ? stringToHTML() : htmlToString(); + // restore cursor location + } + + /** + * insert a variable into the editor at the current cursor location + * @param {string} value + * @return {void} + */ + function addVariable(value) { + var htmlVariable = createHTMLVariable(value); + editor.execCommand('mceInsertContent', false, htmlVariable); + } + + function isVariable(element) { + if(typeof element.getAttribute === 'function' && element.hasAttribute('data-original-variable')) + return true; + + return false; + } + + /** + * Trigger special event when user clicks on a variable + * @return {void} + */ + function handleClick(e) { + var target = e.target; + + if(!isVariable(target)) + return null; + + var value = target.getAttribute('data-original-variable'); + editor.fire('variableClick', { + value: cleanVariable(value), + target: target + }); + } + + editor.on('nodechange', stringToHTML ); + editor.on('keyup', stringToHTML ); + editor.on('beforegetcontent', handleContentRerender); + editor.on('click', handleClick); + + this.addVariable = addVariable; + +}); diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js new file mode 100644 index 00000000..74641202 --- /dev/null +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js @@ -0,0 +1,13 @@ +/** + * plugin.js + * + * Copyright, BuboBox + * Released under MIT License. + * + * License: https://www.bubobox.com + * Contributing: https://www.bubobox.com/contributing + */ + +/*global tinymce:true */ + +tinymce.PluginManager.add("variable",function(e){tinymce.util.VK;var a=e.getParam("variable_mapper",{}),t=e.getParam("variable_valid",null),n=e.getParam("variable_class","variable"),r=e.getParam("variable_prefix","{{"),i=e.getParam("variable_suffix","}}"),l=new RegExp(r+"[ s\t]*([a-z. _]*)?[ s\t]*"+i,"gi");function o(e){return e.replace(/[^a-zA-Z0-9._]/g,"")}function u(l){var u,c=o(l);if(u=c,t&&0!==t.length&&!(("|"+t.join("|")+"|").indexOf("|"+u+"|")>-1))return l;var d=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(c);return e.fire("variableToHTML",{value:l,cleanValue:c}),''+d+""}function c(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&l.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;i From 403ea2a68e311ca04ca509dd2a1fda3f3bfac85f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Mon, 29 Jun 2020 12:03:14 +0200 Subject: [PATCH 33/43] Advanced variable plugin --- DependencyInjection/Configuration.php | 12 ++++++++++++ Form/Type/TinyMCEType.php | 4 +++- .../public/vendor/tinymce/plugins/variable/plugin.js | 3 ++- .../vendor/tinymce/plugins/variable/plugin.min.js | 4 +--- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index dab46e98..60b75cb9 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -62,6 +62,18 @@ public function getConfigTreeBuilder(): TreeBuilder ->end() ->end() ->end() + ->scalarNode('variable_prefix')->defaultValue('{{')->end() + ->scalarNode('variable_suffix')->defaultValue('}}')->end() + // allow paste images into editor + ->booleanNode('paste_data_images')->defaultTrue()->end() + ->arrayNode('variables') + ->children() + ->scalarNode('title')->defaultNull()->end() + ->arrayNode('list') + ->prototype('scalar')->end() + ->end() + ->end() + ->end() ->arrayNode('theme') ->useAttributeAsKey('name') ->prototype('array') diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index bba10a2e..6b905729 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -81,7 +81,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $checkTypes = [ 'config_name', 'language', 'selector', 'plugins', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', + 'valid_elements', 'file_picker', 'variables', ]; foreach ($checkTypes as $type) { @@ -113,6 +113,7 @@ public function configureOptions(OptionsResolver $resolver) 'valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, + 'variables' => null, ]) ->setAllowedTypes('config_name', ['string', 'null']) ->setAllowedTypes('language', ['string', 'null']) @@ -123,6 +124,7 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) + ->setAllowedTypes('variables', ['array', 'null']) ->setAllowedTypes('enable', 'bool') ; } diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.js index 52894d96..8fcf8a8e 100644 --- a/Resources/public/vendor/tinymce/plugins/variable/plugin.js +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.js @@ -29,6 +29,7 @@ tinymce.PluginManager.add('variable', function(editor) { * @type {array} */ var valid = editor.getParam("variable_valid", null); + var tag = editor.getParam("variable_tag", 'span') || 'span'; /** * Get custom variable class name @@ -99,7 +100,7 @@ tinymce.PluginManager.add('variable', function(editor) { }); var variable = prefix + cleanValue + suffix; - return '' + cleanMappedValue + ''; + return '<' + tag + ' class="' + className + '" data-original-variable="' + variable + '" contenteditable="false">' + cleanMappedValue + ''; } /** diff --git a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js index 74641202..4938d029 100644 --- a/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js +++ b/Resources/public/vendor/tinymce/plugins/variable/plugin.min.js @@ -7,7 +7,5 @@ * License: https://www.bubobox.com * Contributing: https://www.bubobox.com/contributing */ - /*global tinymce:true */ - -tinymce.PluginManager.add("variable",function(e){tinymce.util.VK;var a=e.getParam("variable_mapper",{}),t=e.getParam("variable_valid",null),n=e.getParam("variable_class","variable"),r=e.getParam("variable_prefix","{{"),i=e.getParam("variable_suffix","}}"),l=new RegExp(r+"[ s\t]*([a-z. _]*)?[ s\t]*"+i,"gi");function o(e){return e.replace(/[^a-zA-Z0-9._]/g,"")}function u(l){var u,c=o(l);if(u=c,t&&0!==t.length&&!(("|"+t.join("|")+"|").indexOf("|"+u+"|")>-1))return l;var d=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(c);return e.fire("variableToHTML",{value:l,cleanValue:c}),''+d+""}function c(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&l.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;i-1))return o;var f=function(e){return"function"==typeof a?a(e):a.hasOwnProperty(e)?a[e]:e}(d);return e.fire("variableToHTML",{value:o,cleanValue:d}),"<"+n+' class="'+r+'" data-original-variable="'+(i+d+l)+'" contenteditable="false">'+f+""}function d(){var a,t,n,r=[];tinymce.walk(e.getBody(),function(e){3==e.nodeType&&e.nodeValue&&o.test(e.nodeValue)&&r.push(e)},"childNodes");for(var i=0;i Date: Mon, 29 Jun 2020 15:15:36 +0200 Subject: [PATCH 34/43] Count words PL translation --- Resources/public/vendor/tinymce/langs/pl.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Resources/public/vendor/tinymce/langs/pl.js b/Resources/public/vendor/tinymce/langs/pl.js index dbbd1970..90d596cb 100644 --- a/Resources/public/vendor/tinymce/langs/pl.js +++ b/Resources/public/vendor/tinymce/langs/pl.js @@ -187,5 +187,7 @@ tinymce.addI18n('pl',{ "Tools": "Narz\u0119dzia", "View": "Widok", "Table": "Tabela", -"Format": "Format" -}); \ No newline at end of file +"Format": "Format", +"{0} characters": "{0} znaków", +"{0} words": "{0} słów" +}); From b4ba011438e2fbc478d243eac6ea60606b03bc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Fri, 3 Jul 2020 14:51:46 +0200 Subject: [PATCH 35/43] Some default options --- DependencyInjection/Configuration.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 60b75cb9..280ff2bd 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -42,6 +42,10 @@ public function getConfigTreeBuilder(): TreeBuilder ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() ->scalarNode('quickbars_insert_toolbar')->defaultValue('')->end() + ->booleanNode('relative_urls')->defaultFalse()->end() + ->booleanNode('remove_script_host')->defaultFalse()->end() + ->booleanNode('convert_urls')->defaultFalse()->end() + ->booleanNode('browser_spellcheck')->defaultTrue()->end() ->arrayNode('file_picker') ->children() ->scalarNode('engine')->defaultNull()->end() From a72d7a1bea4061e544aa2ff8343cc11617fbe065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 21 Jul 2020 09:55:43 +0200 Subject: [PATCH 36/43] Provide valid_children and extended_valid_elements option --- DependencyInjection/Configuration.php | 4 ++++ Form/Type/TinyMCEType.php | 9 +++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 280ff2bd..af5ce299 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -38,6 +38,10 @@ public function getConfigTreeBuilder(): TreeBuilder ->scalarNode('valid_elements')->end() // plugins ->scalarNode('plugins')->defaultValue('')->end() + // extended valid elements (tags) + ->scalarNode('extended_valid_elements')->defaultValue('')->end() + // extended valid elements for tags (tags in tags) + ->scalarNode('valid_children')->defaultValue('')->end() // toolbar ->scalarNode('toolbar')->defaultValue('undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent')->end() ->scalarNode('quickbars_selection_toolbar')->defaultValue('')->end() diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index 6b905729..58eeebdd 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -79,9 +79,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) } $checkTypes = [ - 'config_name', 'language', 'selector', 'plugins', + 'config_name', 'language', 'selector', 'plugins', 'extended_valid_elements', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', 'variables', + 'valid_elements', 'file_picker', 'variables', 'valid_children', ]; foreach ($checkTypes as $type) { @@ -89,6 +89,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $config[$type] = $options[$type]; } } + dump($options, $config); $this->configManager->setConfig('config', $config); if (!$options['enable']) { @@ -111,6 +112,8 @@ public function configureOptions(OptionsResolver $resolver) 'quickbars_selection_toolbar' => null, 'quickbars_insert_toolbar' => null, 'valid_elements' => null, + 'valid_children' => null, + 'extended_valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, 'variables' => null, @@ -123,6 +126,8 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_selection_toolbar', ['string', 'null']) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) + ->setAllowedTypes('valid_children', ['string', 'null']) + ->setAllowedTypes('extended_valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) ->setAllowedTypes('variables', ['array', 'null']) ->setAllowedTypes('enable', 'bool') From 9d1a671238c9987287bbe63bea35bb71055b4870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 1 Sep 2020 14:45:23 +0200 Subject: [PATCH 37/43] Add entity_encoding option --- DependencyInjection/Configuration.php | 4 +++- Form/Type/TinyMCEType.php | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index af5ce299..863ec57e 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -17,7 +17,7 @@ class Configuration implements ConfigurationInterface */ public function getConfigTreeBuilder(): TreeBuilder { - $treeBuilder = new TreeBuilder(); + $treeBuilder = new TreeBuilder("TinyMCEBundle"); return $treeBuilder ->root('tinymce', 'array') @@ -38,6 +38,8 @@ public function getConfigTreeBuilder(): TreeBuilder ->scalarNode('valid_elements')->end() // plugins ->scalarNode('plugins')->defaultValue('')->end() + // character encoding + ->scalarNode('entity_encoding ')->defaultValue('raw')->end() // extended valid elements (tags) ->scalarNode('extended_valid_elements')->defaultValue('')->end() // extended valid elements for tags (tags in tags) diff --git a/Form/Type/TinyMCEType.php b/Form/Type/TinyMCEType.php index 58eeebdd..61638bae 100644 --- a/Form/Type/TinyMCEType.php +++ b/Form/Type/TinyMCEType.php @@ -81,7 +81,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) $checkTypes = [ 'config_name', 'language', 'selector', 'plugins', 'extended_valid_elements', 'toolbar', 'quickbars_selection_toolbar', 'quickbars_insert_toolbar', - 'valid_elements', 'file_picker', 'variables', 'valid_children', + 'valid_elements', 'file_picker', 'variables', 'valid_children', 'entity_encoding ', ]; foreach ($checkTypes as $type) { @@ -89,7 +89,6 @@ public function buildForm(FormBuilderInterface $builder, array $options) $config[$type] = $options[$type]; } } - dump($options, $config); $this->configManager->setConfig('config', $config); if (!$options['enable']) { @@ -113,6 +112,7 @@ public function configureOptions(OptionsResolver $resolver) 'quickbars_insert_toolbar' => null, 'valid_elements' => null, 'valid_children' => null, + 'entity_encoding ' => 'raw', 'extended_valid_elements' => null, 'file_picker' => null, 'enable' => $this->enable, @@ -127,6 +127,7 @@ public function configureOptions(OptionsResolver $resolver) ->setAllowedTypes('quickbars_insert_toolbar', ['string', 'null']) ->setAllowedTypes('valid_elements', ['string', 'null']) ->setAllowedTypes('valid_children', ['string', 'null']) + ->setAllowedTypes('entity_encoding ', ['string']) ->setAllowedTypes('extended_valid_elements', ['string', 'null']) ->setAllowedTypes('file_picker', ['array', 'null']) ->setAllowedTypes('variables', ['array', 'null']) From 76a3b27593d9591da71de1758a5d6fd369fcc19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz?= Date: Tue, 1 Sep 2020 14:50:31 +0200 Subject: [PATCH 38/43] Upgrade loaded version of init.standard.js --- Resources/views/Script/init.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/views/Script/init.html.twig b/Resources/views/Script/init.html.twig index b0f4f376..450c7838 100644 --- a/Resources/views/Script/init.html.twig +++ b/Resources/views/Script/init.html.twig @@ -1,9 +1,9 @@ {% for browser in file_browsers %} - + {% endfor %} - + {% block tinymce_widget_initializer %} ':a=e.settings.video_template_callback?e.settings.video_template_callback(o):'"}return a}function n(e){var t={};return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!0,special:"script,noscript",start:function(e,i){if(t.source1||"param"!=e||(t.source1=i.map.movie),("iframe"==e||"object"==e||"embed"==e||"video"==e||"audio"==e)&&(t.type||(t.type=e),t=tinymce.extend(i.map,t)),"script"==e){var o=r(i.map.src);if(!o)return;t={type:"script",source1:i.map.src,width:o.width,height:o.height}}"source"==e&&(t.source1?t.source2||(t.source2=i.map.src):t.source1=i.map.src),"img"!=e||t.poster||(t.poster=i.map.src)}}).parse(e),t.source1=t.source1||t.src||t.data,t.source2=t.source2||"",t.poster=t.poster||"",t}function s(t){return t.getAttribute("data-mce-object")?n(e.serializer.serialize(t,{selection:!0})):{}}function m(t){if(e.settings.media_filter_html===!1)return t;var i=new tinymce.html.Writer;return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!1,special:"script,noscript",comment:function(e){i.comment(e)},cdata:function(e){i.cdata(e)},text:function(e,t){i.text(e,t)},start:function(e,t,r){if("script"!=e&&"noscript"!=e){for(var o=0;o=c&&(r(n,{src:t["source"+c],type:t["source"+c+"mime"]}),!t["source"+c]))return;break;case"img":if(!t.poster)return;o=!0}a.start(e,n,s)},end:function(e){if("video"==e&&i)for(var n=1;2>=n;n++)if(t["source"+n]){var s=[];s.map={},n>c&&(r(s,{src:t["source"+n],type:t["source"+n+"mime"]}),a.start("source",s,!0))}if(t.poster&&"object"==e&&i&&!o){var m=[];m.map={},r(m,{src:t.poster,width:t.width,height:t.height}),a.start("img",m,!0)}a.end(e)}},new tinymce.html.Schema({})).parse(e),a.getContent()}var d=[{regex:/youtu\.be\/([\w\-.]+)/,type:"iframe",w:425,h:350,url:"//www.youtube.com/embed/$1"},{regex:/youtube\.com(.+)v=([^&]+)/,type:"iframe",w:425,h:350,url:"//www.youtube.com/embed/$2"},{regex:/vimeo\.com\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$1?title=0&byline=0&portrait=0&color=8dc7dc"},{regex:/vimeo\.com\/(.*)\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$2?title=0&byline=0"},{regex:/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/,type:"iframe",w:425,h:350,url:'//maps.google.com/maps/ms?msid=$2&output=embed"'}],l=tinymce.Env.ie&&tinymce.Env.ie<=8?"onChange":"onInput";e.on("ResolveName",function(e){var t;1==e.target.nodeType&&(t=e.target.getAttribute("data-mce-object"))&&(e.name=t)}),e.on("preInit",function(){var t=e.schema.getSpecialElements();tinymce.each("video audio iframe object".split(" "),function(e){t[e]=new RegExp("]*>","gi")});var i=e.schema.getBoolAttrs();tinymce.each("webkitallowfullscreen mozallowfullscreen allowfullscreen".split(" "),function(e){i[e]={}}),e.parser.addNodeFilter("iframe,video,audio,object,embed,script",function(t,i){for(var o,a,c,n,s,m,u,d,l=t.length;l--;)if(a=t[l],a.parent&&("script"!=a.name||(d=r(a.attr("src"))))){for(c=new tinymce.html.Node("img",1),c.shortEnded=!0,d&&(d.width&&a.attr("width",d.width.toString()),d.height&&a.attr("height",d.height.toString())),m=a.attributes,o=m.length;o--;)n=m[o].name,s=m[o].value,"width"!==n&&"height"!==n&&"style"!==n&&(("data"==n||"src"==n)&&(s=e.convertURL(s,n)),c.attr("data-mce-p-"+n,s));u=a.firstChild&&a.firstChild.value,u&&(c.attr("data-mce-html",escape(u)),c.firstChild=null),c.attr({width:a.attr("width")||"300",height:a.attr("height")||("audio"==i?"30":"150"),style:a.attr("style"),src:tinymce.Env.transparentSrc,"data-mce-object":i,"class":"mce-object mce-object-"+i}),a.replace(c)}}),e.serializer.addAttributeFilter("data-mce-object",function(e,t){for(var i,r,o,a,c,n,s,u=e.length;u--;)if(i=e[u],i.parent){for(s=i.attr(t),r=new tinymce.html.Node(s,1),"audio"!=s&&"script"!=s&&r.attr({width:i.attr("width"),height:i.attr("height")}),r.attr({style:i.attr("style")}),a=i.attributes,o=a.length;o--;){var d=a[o].name;0===d.indexOf("data-mce-p-")&&r.attr(d.substr(11),a[o].value)}"script"==s&&r.attr("type","text/javascript"),c=i.attr("data-mce-html"),c&&(n=new tinymce.html.Node("#text",3),n.raw=!0,n.value=m(unescape(c)),r.append(n)),i.replace(r)}})}),e.on("ObjectSelected",function(e){var t=e.target.getAttribute("data-mce-object");("audio"==t||"script"==t)&&e.preventDefault()}),e.on("objectResized",function(e){var t,i=e.target;i.getAttribute("data-mce-object")&&(t=i.getAttribute("data-mce-html"),t&&(t=unescape(t),i.setAttribute("data-mce-html",escape(u(t,{width:e.width,height:e.height})))))}),e.addButton("media",{tooltip:"Insert/edit video",onclick:o,stateSelector:["img[data-mce-object=video]","img[data-mce-object=iframe]"]}),e.addMenuItem("media",{icon:"media",text:"Insert video",onclick:o,context:"insert",prependToContext:!0})}); \ No newline at end of file +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + * + * Version: 5.3.2 (2020-06-10) + */ +!function(){"use strict";var e,t,r,n=tinymce.util.Tools.resolve("tinymce.PluginManager"),p=function(){return(p=Object.assign||function(e){for(var t,r=1,n=arguments.length;r"):"application/x-shockwave-flash"===n.sourcemime?(l='',s.poster&&(l+=''),l+=""):-1!==n.sourcemime.indexOf("audio")?(c=n,(u=h)?u(c):'"):"script"===n.type?'