From 85ce929073cef9a1f538bf48a3a15f1d5270bba3 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Mon, 26 Feb 2024 15:21:56 +0100 Subject: [PATCH 001/279] [6.0] Switching Input object from CMS to framework class (#42805) * Switching Input object from CMS to framework class * Docblock fixes * Reverting switch of Input class in CliApplication --- .../src/Controller/ActionlogsController.php | 14 ++++++------ .../src/Controller/UsersController.php | 10 ++++----- .../src/View/Transition/HtmlView.php | 2 +- .../src/Controller/ConfigController.php | 13 ++++++----- .../src/Controller/ModulesController.php | 13 ++++++----- .../src/Controller/TemplatesController.php | 13 ++++++----- .../src/Controller/DisplayController.php | 13 ++++++----- .../src/Controller/DisplayController.php | 13 ++++++----- .../src/Controller/DisplayController.php | 10 ++++----- .../src/Controller/DisplayController.php | 13 ++++++----- .../src/Controller/DisplayController.php | 14 ++++++------ .../Application/InstallationApplication.php | 22 +++++++++---------- .../src/Controller/InstallationController.php | 13 ++++++----- .../Application/AdministratorApplication.php | 6 ++--- libraries/src/Application/BaseApplication.php | 4 ++-- libraries/src/Application/CMSApplication.php | 4 ++-- libraries/src/Application/SiteApplication.php | 4 ++-- libraries/src/Application/WebApplication.php | 6 ++--- .../email/src/Extension/Email.php | 2 +- 19 files changed, 98 insertions(+), 91 deletions(-) diff --git a/administrator/components/com_actionlogs/src/Controller/ActionlogsController.php b/administrator/components/com_actionlogs/src/Controller/ActionlogsController.php index fee0dc2470129..8fed469a766cb 100644 --- a/administrator/components/com_actionlogs/src/Controller/ActionlogsController.php +++ b/administrator/components/com_actionlogs/src/Controller/ActionlogsController.php @@ -14,13 +14,13 @@ use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Date\Date; use Joomla\CMS\Event\ActionLog\AfterLogExportEvent; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\AdminController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Router\Route; use Joomla\Component\Actionlogs\Administrator\Helper\ActionlogsHelper; use Joomla\Component\Actionlogs\Administrator\Model\ActionlogsModel; +use Joomla\Input\Input; use Joomla\Utilities\ArrayHelper; // phpcs:disable PSR1.Files.SideEffects @@ -37,12 +37,12 @@ class ActionlogsController extends AdminController /** * Constructor. * - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface $factory The factory. - * @param CMSApplication $app The Application for the dispatcher - * @param Input $input Input + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input Input * * @since 3.9.0 * diff --git a/administrator/components/com_users/src/Controller/UsersController.php b/administrator/components/com_users/src/Controller/UsersController.php index 04cb09ebd3bc8..f0eb47003fe94 100644 --- a/administrator/components/com_users/src/Controller/UsersController.php +++ b/administrator/components/com_users/src/Controller/UsersController.php @@ -11,12 +11,12 @@ namespace Joomla\Component\Users\Administrator\Controller; use Joomla\CMS\Application\CMSApplication; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\AdminController; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Response\JsonResponse; +use Joomla\Input\Input; use Joomla\Utilities\ArrayHelper; // phpcs:disable PSR1.Files.SideEffects @@ -39,10 +39,10 @@ class UsersController extends AdminController /** * Constructor. * - * @param array $config An optional associative array of configuration settings. - * @param MVCFactoryInterface $factory The factory. - * @param CMSApplication $app The CMSApplication for the dispatcher - * @param Input $input Input + * @param array $config An optional associative array of configuration settings. + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The CMSApplication for the dispatcher + * @param ?Input $input Input * * @since 1.6 * @see BaseController diff --git a/administrator/components/com_workflow/src/View/Transition/HtmlView.php b/administrator/components/com_workflow/src/View/Transition/HtmlView.php index f7d198222c1ad..133a4855b5d51 100644 --- a/administrator/components/com_workflow/src/View/Transition/HtmlView.php +++ b/administrator/components/com_workflow/src/View/Transition/HtmlView.php @@ -65,7 +65,7 @@ class HtmlView extends BaseHtmlView /** * The application input object. * - * @var \Joomla\CMS\Input\Input + * @var \Joomla\Input\Input * @since 4.0.0 */ protected $input; diff --git a/components/com_config/src/Controller/ConfigController.php b/components/com_config/src/Controller/ConfigController.php index 5866bc0955b44..a9f8630f51f97 100644 --- a/components/com_config/src/Controller/ConfigController.php +++ b/components/com_config/src/Controller/ConfigController.php @@ -17,6 +17,7 @@ use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -30,12 +31,12 @@ class ConfigController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The JApplication for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The JApplication for the dispatcher + * @param ?Input $input The Input object for the request * * @since 1.6 */ diff --git a/components/com_config/src/Controller/ModulesController.php b/components/com_config/src/Controller/ModulesController.php index 97882c670d850..41afeab23cba7 100644 --- a/components/com_config/src/Controller/ModulesController.php +++ b/components/com_config/src/Controller/ModulesController.php @@ -21,6 +21,7 @@ use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; use Joomla\Component\Modules\Administrator\Controller\ModuleController; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -34,12 +35,12 @@ class ModulesController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 1.6 */ diff --git a/components/com_config/src/Controller/TemplatesController.php b/components/com_config/src/Controller/TemplatesController.php index e4b54296263ab..6d1039e08cf9e 100644 --- a/components/com_config/src/Controller/TemplatesController.php +++ b/components/com_config/src/Controller/TemplatesController.php @@ -17,6 +17,7 @@ use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -30,12 +31,12 @@ class TemplatesController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 1.6 */ diff --git a/components/com_contact/src/Controller/DisplayController.php b/components/com_contact/src/Controller/DisplayController.php index 74fce34b4da98..0b8d8a9ccb4b5 100644 --- a/components/com_contact/src/Controller/DisplayController.php +++ b/components/com_contact/src/Controller/DisplayController.php @@ -14,6 +14,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -27,12 +28,12 @@ class DisplayController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 3.0 */ diff --git a/components/com_content/src/Controller/DisplayController.php b/components/com_content/src/Controller/DisplayController.php index 20ede3f6f5510..bab291c7d39b3 100644 --- a/components/com_content/src/Controller/DisplayController.php +++ b/components/com_content/src/Controller/DisplayController.php @@ -15,6 +15,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -28,12 +29,12 @@ class DisplayController extends \Joomla\CMS\MVC\Controller\BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 3.0.1 */ diff --git a/components/com_contenthistory/src/Controller/DisplayController.php b/components/com_contenthistory/src/Controller/DisplayController.php index bffb0d31e856d..d6dabea44693c 100644 --- a/components/com_contenthistory/src/Controller/DisplayController.php +++ b/components/com_contenthistory/src/Controller/DisplayController.php @@ -11,9 +11,9 @@ namespace Joomla\Component\Contenthistory\Site\Controller; use Joomla\CMS\Application\CMSApplication; -use Joomla\CMS\Input\Input; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -27,10 +27,10 @@ class DisplayController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param ?Input $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 3.0 */ diff --git a/components/com_fields/src/Controller/DisplayController.php b/components/com_fields/src/Controller/DisplayController.php index 99bc0c0a2b217..4ae7117ac67df 100644 --- a/components/com_fields/src/Controller/DisplayController.php +++ b/components/com_fields/src/Controller/DisplayController.php @@ -12,6 +12,7 @@ use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -25,12 +26,12 @@ class DisplayController extends \Joomla\CMS\MVC\Controller\BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The request's input object + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The request's input object * * @since 3.7.0 */ diff --git a/components/com_modules/src/Controller/DisplayController.php b/components/com_modules/src/Controller/DisplayController.php index 7123321240811..c268d653473a5 100644 --- a/components/com_modules/src/Controller/DisplayController.php +++ b/components/com_modules/src/Controller/DisplayController.php @@ -12,9 +12,9 @@ use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Factory; -use Joomla\CMS\Input\Input; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -28,12 +28,12 @@ class DisplayController extends BaseController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param Input|null $input The Input object for the request + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object for the request * * @since 3.0 */ diff --git a/installation/src/Application/InstallationApplication.php b/installation/src/Application/InstallationApplication.php index 8385974fe05ab..89ff270fcca2b 100644 --- a/installation/src/Application/InstallationApplication.php +++ b/installation/src/Application/InstallationApplication.php @@ -19,7 +19,6 @@ use Joomla\CMS\Exception\ExceptionHandler; use Joomla\CMS\Factory; use Joomla\CMS\Filesystem\Folder; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Language\LanguageHelper; use Joomla\CMS\Language\Text; @@ -27,6 +26,7 @@ use Joomla\CMS\Uri\Uri; use Joomla\Database\DatabaseInterface; use Joomla\DI\Container; +use Joomla\Input\Input; use Joomla\Registry\Registry; use Joomla\Session\SessionEvent; @@ -46,16 +46,16 @@ final class InstallationApplication extends CMSApplication /** * Class constructor. * - * @param Input|null $input An optional argument to provide dependency injection for the application's input - * object. If the argument is a JInput object that object will become the - * application's input object, otherwise a default input object is created. - * @param Registry|null $config An optional argument to provide dependency injection for the application's - * config object. If the argument is a Registry object that object will become - * the application's config object, otherwise a default config object is created. - * @param WebClient|null $client An optional argument to provide dependency injection for the application's - * client object. If the argument is a WebClient object that object will become the - * application's client object, otherwise a default client object is created. - * @param Container|null $container Dependency injection container. + * @param ?Input $input An optional argument to provide dependency injection for the application's input + * object. If the argument is a Input object that object will become the + * application's input object, otherwise a default input object is created. + * @param ?Registry $config An optional argument to provide dependency injection for the application's + * config object. If the argument is a Registry object that object will become + * the application's config object, otherwise a default config object is created. + * @param ?WebClient $client An optional argument to provide dependency injection for the application's + * client object. If the argument is a WebClient object that object will become the + * application's client object, otherwise a default client object is created. + * @param ?Container $container Dependency injection container. * * @since 3.1 */ diff --git a/installation/src/Controller/InstallationController.php b/installation/src/Controller/InstallationController.php index 558f5fe20d34f..5e24f91681fff 100644 --- a/installation/src/Controller/InstallationController.php +++ b/installation/src/Controller/InstallationController.php @@ -14,6 +14,7 @@ use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Session\Session; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -27,12 +28,12 @@ class InstallationController extends JSONController { /** - * @param array $config An optional associative array of configuration settings. - * Recognized key values include 'name', 'default_task', 'model_path', and - * 'view_path' (this list is not meant to be comprehensive). - * @param MVCFactoryInterface|null $factory The factory. - * @param CMSApplication|null $app The Application for the dispatcher - * @param \Joomla\CMS\Input\Input|null $input The Input object. + * @param array $config An optional associative array of configuration settings. + * Recognized key values include 'name', 'default_task', 'model_path', and + * 'view_path' (this list is not meant to be comprehensive). + * @param ?MVCFactoryInterface $factory The factory. + * @param ?CMSApplication $app The Application for the dispatcher + * @param ?Input $input The Input object. * * @since 3.0 */ diff --git a/libraries/src/Application/AdministratorApplication.php b/libraries/src/Application/AdministratorApplication.php index 672a206e4416c..b76626d3456c3 100644 --- a/libraries/src/Application/AdministratorApplication.php +++ b/libraries/src/Application/AdministratorApplication.php @@ -16,7 +16,6 @@ use Joomla\CMS\Event\Application\AfterRouteEvent; use Joomla\CMS\Factory; use Joomla\CMS\Filter\InputFilter; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\LanguageHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\PluginHelper; @@ -24,6 +23,7 @@ use Joomla\CMS\Session\Session; use Joomla\CMS\Uri\Uri; use Joomla\DI\Container; +use Joomla\Input\Input; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -59,7 +59,7 @@ class AdministratorApplication extends CMSApplication * Class constructor. * * @param ?Input $input An optional argument to provide dependency injection for the application's input - * object. If the argument is a JInput object that object will become the + * object. If the argument is a Input object that object will become the * application's input object, otherwise a default input object is created. * @param ?Registry $config An optional argument to provide dependency injection for the application's config * object. If the argument is a Registry object that object will become the @@ -394,7 +394,7 @@ public static function purgeMessages() */ protected function render() { - // Get the \JInput object + // Get the Input object $input = $this->input; $component = $input->getCmd('option', 'com_login'); diff --git a/libraries/src/Application/BaseApplication.php b/libraries/src/Application/BaseApplication.php index 365bf91eb7662..9b1dd1e3bfbfd 100644 --- a/libraries/src/Application/BaseApplication.php +++ b/libraries/src/Application/BaseApplication.php @@ -10,9 +10,9 @@ namespace Joomla\CMS\Application; use Joomla\Application\AbstractApplication; -use Joomla\CMS\Input\Input; use Joomla\Event\DispatcherAwareInterface; use Joomla\Event\DispatcherAwareTrait; +use Joomla\Input\Input; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -40,7 +40,7 @@ abstract class BaseApplication extends AbstractApplication implements Dispatcher * Class constructor. * * @param ?Input $input An optional argument to provide dependency injection for the application's - * input object. If the argument is a \JInput object that object will become + * input object. If the argument is a Input object that object will become * the application's input object, otherwise a default input object is created. * @param ?Registry $config An optional argument to provide dependency injection for the application's * config object. If the argument is a Registry object that object will become diff --git a/libraries/src/Application/CMSApplication.php b/libraries/src/Application/CMSApplication.php index 2ea7735bbee92..79e2b1cfa6225 100644 --- a/libraries/src/Application/CMSApplication.php +++ b/libraries/src/Application/CMSApplication.php @@ -31,7 +31,6 @@ use Joomla\CMS\Extension\ExtensionManagerTrait; use Joomla\CMS\Factory; use Joomla\CMS\Filter\InputFilter; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; @@ -48,6 +47,7 @@ use Joomla\DI\Container; use Joomla\DI\ContainerAwareInterface; use Joomla\DI\ContainerAwareTrait; +use Joomla\Input\Input; use Joomla\Registry\Registry; use Joomla\String\StringHelper; @@ -168,7 +168,7 @@ abstract class CMSApplication extends WebApplication implements ContainerAwareIn * Class constructor. * * @param ?Input $input An optional argument to provide dependency injection for the application's input - * object. If the argument is a JInput object that object will become the + * object. If the argument is a Input object that object will become the * application's input object, otherwise a default input object is created. * @param ?Registry $config An optional argument to provide dependency injection for the application's config * object. If the argument is a Registry object that object will become the diff --git a/libraries/src/Application/SiteApplication.php b/libraries/src/Application/SiteApplication.php index 5450677e9209a..4d281e451efd0 100644 --- a/libraries/src/Application/SiteApplication.php +++ b/libraries/src/Application/SiteApplication.php @@ -18,7 +18,6 @@ use Joomla\CMS\Event\Application\AfterRouteEvent; use Joomla\CMS\Factory; use Joomla\CMS\Filter\InputFilter; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\LanguageHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Pathway\Pathway; @@ -27,6 +26,7 @@ use Joomla\CMS\Router\SiteRouter; use Joomla\CMS\Uri\Uri; use Joomla\DI\Container; +use Joomla\Input\Input; use Joomla\Registry\Registry; use Joomla\String\StringHelper; @@ -72,7 +72,7 @@ final class SiteApplication extends CMSApplication * Class constructor. * * @param ?Input $input An optional argument to provide dependency injection for the application's input - * object. If the argument is a JInput object that object will become the + * object. If the argument is a Input object that object will become the * application's input object, otherwise a default input object is created. * @param ?Registry $config An optional argument to provide dependency injection for the application's config * object. If the argument is a Registry object that object will become the diff --git a/libraries/src/Application/WebApplication.php b/libraries/src/Application/WebApplication.php index 968b31d6e3488..10df312522b21 100644 --- a/libraries/src/Application/WebApplication.php +++ b/libraries/src/Application/WebApplication.php @@ -19,13 +19,13 @@ use Joomla\CMS\Event\Application\BeforeRenderEvent; use Joomla\CMS\Event\Application\BeforeRespondEvent; use Joomla\CMS\Factory; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\Language; use Joomla\CMS\Session\Session; use Joomla\CMS\Uri\Uri; use Joomla\CMS\User\User; use Joomla\CMS\Version; use Joomla\Filter\OutputFilter; +use Joomla\Input\Input; use Joomla\Registry\Registry; use Joomla\Session\SessionEvent; use Psr\Http\Message\ResponseInterface; @@ -90,7 +90,7 @@ abstract class WebApplication extends AbstractWebApplication * Class constructor. * * @param ?Input $input An optional argument to provide dependency injection for the application's - * input object. If the argument is a JInput object that object will become + * input object. If the argument is a Input object that object will become * the application's input object, otherwise a default input object is created. * @param ?Registry $config An optional argument to provide dependency injection for the application's * config object. If the argument is a Registry object that object will become @@ -107,7 +107,7 @@ abstract class WebApplication extends AbstractWebApplication */ public function __construct(Input $input = null, Registry $config = null, WebClient $client = null, ResponseInterface $response = null) { - // Ensure we have a CMS Input object otherwise the DI for \Joomla\CMS\Session\Storage\JoomlaStorage fails + // Ensure we have a Input object otherwise the DI for \Joomla\CMS\Session\Storage\JoomlaStorage fails $input = $input ?: new Input(); parent::__construct($input, $config, $client, $response); diff --git a/plugins/multifactorauth/email/src/Extension/Email.php b/plugins/multifactorauth/email/src/Extension/Email.php index 1703e9989cf1e..736d5f96878b0 100644 --- a/plugins/multifactorauth/email/src/Extension/Email.php +++ b/plugins/multifactorauth/email/src/Extension/Email.php @@ -19,7 +19,6 @@ use Joomla\CMS\Event\MultiFactor\SaveSetup; use Joomla\CMS\Event\MultiFactor\Validate; use Joomla\CMS\Factory; -use Joomla\CMS\Input\Input; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Mail\Exception\MailDisabledException; @@ -35,6 +34,7 @@ use Joomla\Component\Users\Administrator\Helper\Mfa as MfaHelper; use Joomla\Component\Users\Administrator\Table\MfaTable; use Joomla\Event\SubscriberInterface; +use Joomla\Input\Input; use PHPMailer\PHPMailer\Exception as phpMailerException; use RuntimeException; From 0fb6c085d122fe4d993b138f58cf6415b4e19fff Mon Sep 17 00:00:00 2001 From: Fedir Zinchuk Date: Tue, 5 Mar 2024 15:49:16 +0200 Subject: [PATCH 002/279] [6.x] Use Dialog for Article links, when "modal option" is selected (#42461) * Use Dialog for Article links * Use Dialog for Article links * Missing class * Missing class * Document --- .../tmpl/article/default_links.php | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/components/com_content/tmpl/article/default_links.php b/components/com_content/tmpl/article/default_links.php index 91869c64b99b9..49991949a3864 100644 --- a/components/com_content/tmpl/article/default_links.php +++ b/components/com_content/tmpl/article/default_links.php @@ -10,7 +10,8 @@ defined('_JEXEC') or die; -use Joomla\CMS\HTML\HTMLHelper; +/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */ +$wa = $this->getDocument()->getWebAssetManager(); // Create shortcut $urls = json_decode($this->item->urls); @@ -61,22 +62,13 @@ htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . ''; break; case 3: - echo '' . + $wa->useScript('joomla.dialog-autocreate'); + $popupOptions = ['textHeader' => $label, 'className' => 'dialog-content-link', 'width' => '800px', 'height' => '500px', 'preferredParent' => 'body']; + + echo '' . htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . ' '; - echo HTMLHelper::_( - 'bootstrap.renderModal', - 'linkModal', - [ - 'url' => $link, - 'title' => $label, - 'height' => '100%', - 'width' => '100%', - 'modalWidth' => '500', - 'bodyHeight' => '500', - 'footer' => '' - ] - ); + break; default: From 2ad23167fa83c582a4934f36e55527c364e95594 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Wed, 6 Mar 2024 11:08:46 +0100 Subject: [PATCH 003/279] [6.0] Set version to 6.0 (#42969) * Set version to 6.0 * Fixing readme, etc. * Fixing unittest --- .drone.yml | 6 +++--- README.md | 18 +++++++++--------- README.txt | 19 ++++++++++--------- libraries/src/Version.php | 6 +++--- package.json | 2 +- renovate.json | 4 ++-- .../Cms/Updater/ConstraintCheckerTest.php | 4 ++-- 7 files changed, 30 insertions(+), 29 deletions(-) diff --git a/.drone.yml b/.drone.yml index e26f6006bec81..888aa33e9f637 100644 --- a/.drone.yml +++ b/.drone.yml @@ -380,7 +380,7 @@ steps: - rclone delete nightly:/home/devj/public_html/nightlies/ --include "Joomla_$MINORVERSION.*" - rclone delete nightly:/home/devj/public_html/cache/com_content/ - rclone copy ./transfer/ nightly:/home/devj/public_html/nightlies/ - - curl -i -X POST -H 'Content-Type:application/json' -d '{"text":"Nightly Build for [Joomla 5.1](https://developer.joomla.org/nightly-builds.html) successfully built."}' $MATTERMOST_NIGHTLY_HOOK + - curl -i -X POST -H 'Content-Type:application/json' -d '{"text":"Nightly Build for [Joomla 6.0](https://developer.joomla.org/nightly-builds.html) successfully built."}' $MATTERMOST_NIGHTLY_HOOK - name: buildfailure image: joomlaprojects/docker-images:packager @@ -388,7 +388,7 @@ steps: MATTERMOST_NIGHTLY_HOOK: from_secret: mattermost_nightly_hook commands: - - curl -i -X POST -H 'Content-Type:application/json' -d '{"text":"Nightly Build for [Joomla 5.1](https://developer.joomla.org/nightly-builds.html) FAILED to built."}' $MATTERMOST_NIGHTLY_HOOK + - curl -i -X POST -H 'Content-Type:application/json' -d '{"text":"Nightly Build for [Joomla 6.0](https://developer.joomla.org/nightly-builds.html) FAILED to built."}' $MATTERMOST_NIGHTLY_HOOK when: status: - failure @@ -403,6 +403,6 @@ trigger: --- kind: signature -hmac: c1434b09300896f8627ccb11c92e97878caf7a303772db01a647dca53a92fa3f +hmac: bab6a0eee160708fd4852f35e377cf8ca909cd0e90047e5de100e56605d90f0c ... diff --git a/README.md b/README.md index a5a1d888b6ee9..1235cf830a13b 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,21 @@ Joomla! CMS™ ==================== -The Joomla! 5.1 branch is under heavy development and not all links in this document are available yet +The Joomla! 6.0 branch is under heavy development and not all links in this document are available yet ------------------------------------------------------------------------------------------------------ Build Status --------------------- -| Drone-CI | AppVeyor | PHP | Node | npm | -|------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| -| [![Build Status](https://ci.joomla.org/api/badges/joomla/joomla-cms/status.svg?branch=5.1-dev)](https://ci.joomla.org/joomla/joomla-cms) | [![Build status](https://ci.appveyor.com/api/projects/status/ru6sxal8jmfckvjc/branch/5.1-dev?svg=true)](https://ci.appveyor.com/project/release-joomla/joomla-cms) | [![PHP](https://img.shields.io/badge/PHP-V8.1.0-green)](https://www.php.net/) | [![node-lts](https://img.shields.io/badge/Node-V18.0-green)](https://nodejs.org/en/) | [![npm](https://img.shields.io/badge/npm-v9.6.7-green)](https://nodejs.org/en/) | +| Drone-CI | AppVeyor | PHP | Node | npm | +|--------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| +| [![Build Status](https://ci.joomla.org/api/badges/joomla/joomla-cms/status.svg?branch=6.0-dev)](https://ci.joomla.org/joomla/joomla-cms) | [![Build status](https://ci.appveyor.com/api/projects/status/ru6sxal8jmfckvjc/branch/6.0-dev?svg=true)](https://ci.appveyor.com/project/release-joomla/joomla-cms) | [![PHP](https://img.shields.io/badge/PHP-V8.1.0-green)](https://www.php.net/) | [![node-lts](https://img.shields.io/badge/Node-V18.0-green)](https://nodejs.org/en/) | [![npm](https://img.shields.io/badge/npm-v9.6.7-green)](https://nodejs.org/en/) | Overview --------------------- -* This is the source of Joomla! 5.x. +* This is the source of Joomla! 6.x. * Joomla's [Official website](https://www.joomla.org). -* Joomla! 5.1 [version history](https://docs.joomla.org/Special:MyLanguage/Joomla_5.1_version_history). -* Detailed changes are in the [changelog](https://github.com/joomla/joomla-cms/commits/5.1-dev). +* Joomla! 6.0 [version history](https://docs.joomla.org/Special:MyLanguage/Joomla_6.0_version_history). +* Detailed changes are in the [changelog](https://github.com/joomla/joomla-cms/commits/6.0-dev). What is Joomla? --------------------- @@ -48,9 +48,9 @@ git clone https://github.com/joomla/joomla-cms.git ```bash cd joomla-cms ``` -- Go to the 5.1-dev branch: +- Go to the 6.0-dev branch: ```bash -git checkout 5.1-dev +git checkout 6.0-dev ``` - Install all the needed composer packages: ```bash diff --git a/README.txt b/README.txt index e0fb78d5d9457..3be3782a4724b 100644 --- a/README.txt +++ b/README.txt @@ -1,13 +1,13 @@ Joomla! CMS™ -The Joomla! 5.1 branch is under heavy development and not all links in this document are available yet +The Joomla! 6.0 branch is under heavy development and not all links in this document are available yet ------------------------------------------------------------------------------------------------------ 1- Overview - * This is a Joomla! 5.x installation/upgrade package. + * This is a Joomla! 6.x installation/upgrade package. * Joomla! Official site: https://www.joomla.org - * Joomla! 5.1 version history - https://docs.joomla.org/Special:MyLanguage/Joomla_5.1_version_history - * Detailed changes in the Changelog: https://github.com/joomla/joomla-cms/commits/5.1-dev + * Joomla! 6.0 version history - https://docs.joomla.org/Special:MyLanguage/Joomla_6.0_version_history + * Detailed changes in the Changelog: https://github.com/joomla/joomla-cms/commits/6.0-dev 2- What is Joomla? * Joomla! is a Content Management System (CMS) which enables you to build websites and powerful online applications. @@ -23,10 +23,10 @@ The Joomla! 5.1 branch is under heavy development and not all links in this docu 4- How to find a Joomla! translation? * Repository of accredited language packs: https://downloads.joomla.org/language-packs * You can also add languages directly to your website via your Joomla! administration panel: https://docs.joomla.org/Special:MyLanguage/J5.x:Setup_a_Multilingual_Site/Installing_New_Language - * Learn how to setup a Multilingual Joomla! Site: https://docs.joomla.org/Special:MyLanguage/J5.x:Setup_a_Multilingual_Site + * Learn how to setup a Multilingual Joomla! Site: https://docs.joomla.org/Special:MyLanguage/J6.x:Setup_a_Multilingual_Site 5- Learn Joomla! - * Read Getting Started with Joomla to find out the basics: https://docs.joomla.org/Special:MyLanguage/J5.x:Getting_Started_with_Joomla! + * Read Getting Started with Joomla to find out the basics: https://docs.joomla.org/Special:MyLanguage/J6.x:Getting_Started_with_Joomla! * Before installing, read the beginners guide: https://docs.joomla.org/Special:MyLanguage/Portal:Beginners 6- What are the benefits of Joomla? @@ -57,9 +57,10 @@ The Joomla! 5.1 branch is under heavy development and not all links in this docu * Post questions at our forums: https://forum.joomla.org * Joomla! Resources Directory (JRD): https://community.joomla.org/service-providers-directory/ -11- Do you already have a Joomla! site that's not built with Joomla! 5.x ? - * What's new in Joomla! 5.x: https://www.joomla.org/5 - * What are the main differences between 4.x and 5.x? https://docs.joomla.org/Special:MyLanguage/What_are_the_major_differences_between_Joomla!_4.x_and_5.x +11- Do you already have a Joomla! site that's not built with Joomla! 6.x ? + * What's new in Joomla! 6.x: https://www.joomla.org/6 + * What are the main differences between 5.x and 6.x? https://docs.joomla.org/Special:MyLanguage/What_are_the_major_differences_between_Joomla!_5.x_and_6.x + * How to migrate from 5.x to 6.x? Tutorial: https://docs.joomla.org/Special:MyLanguage/Joomla_5.x_to_6.x_Step_by_Step_Migration * How to migrate from 4.x to 5.x? Tutorial: https://docs.joomla.org/Special:MyLanguage/Joomla_4.x_to_5.x_Step_by_Step_Migration * How to migrate from 3.x to 4.x? Tutorial: https://docs.joomla.org/Special:MyLanguage/Joomla_3.x_to_4.x_Step_by_Step_Migration * How to migrate from 2.5.x to 3.x? Tutorial: https://docs.joomla.org/Special:MyLanguage/Joomla_2.5_to_3.x_Step_by_Step_Migration diff --git a/libraries/src/Version.php b/libraries/src/Version.php index 7b38810924b42..4e4d2b0d136b6 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -39,7 +39,7 @@ final class Version * @var integer * @since 3.8.0 */ - public const MAJOR_VERSION = 5; + public const MAJOR_VERSION = 6; /** * Minor release version. @@ -47,7 +47,7 @@ final class Version * @var integer * @since 3.8.0 */ - public const MINOR_VERSION = 1; + public const MINOR_VERSION = 0; /** * Patch release version. @@ -66,7 +66,7 @@ final class Version * @var string * @since 3.8.0 */ - public const EXTRA_VERSION = 'beta1-dev'; + public const EXTRA_VERSION = 'alpha-dev'; /** * Development status. diff --git a/package.json b/package.json index 40453df95bc39..86a75ae05581b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joomla", - "version": "5.1.0", + "version": "6.0.0", "description": "Joomla CMS", "license": "GPL-2.0-or-later", "repository": { diff --git a/renovate.json b/renovate.json index 1105626107a71..0117105124924 100644 --- a/renovate.json +++ b/renovate.json @@ -10,11 +10,11 @@ "lockFileMaintenance": { "enabled": true }, "composerIgnorePlatformReqs": ["ext-*", "lib-*"], "rangeStrategy": "update-lockfile", - "baseBranches": ["4.2-dev", "4.3-dev", "5.0-dev"], + "baseBranches": ["4.4-dev", "5.0-dev", "5.1-dev", "5.2-dev", "6.0-dev"], "packageRules": [ { "enabled": false, - "matchBaseBranches": "4.2-dev", + "matchBaseBranches": "6.0-dev", "matchPackagePatterns": ["*"] } ], diff --git a/tests/Unit/Libraries/Cms/Updater/ConstraintCheckerTest.php b/tests/Unit/Libraries/Cms/Updater/ConstraintCheckerTest.php index 1ebf22cde8fcc..1837d3dc205ca 100644 --- a/tests/Unit/Libraries/Cms/Updater/ConstraintCheckerTest.php +++ b/tests/Unit/Libraries/Cms/Updater/ConstraintCheckerTest.php @@ -197,11 +197,11 @@ protected function targetplatformDataProvider() [(array) ["name" => "foobar", "version" => "4.*"], false], [(array) ["name" => "joomla", "version" => "1.*"], false], [(array) ["name" => "joomla", "version" => "3.1.2"], false], - [(array) ["name" => "joomla", "version" => "6.*"], false], + [(array) ["name" => "joomla", "version" => "6.*"], true], [(array) ["name" => "joomla", "version" => ""], true], [(array) ["name" => "joomla", "version" => ".*"], true], [(array) ["name" => "joomla", "version" => JVERSION], true], - [(array) ["name" => "joomla", "version" => "5.*"], true], + [(array) ["name" => "joomla", "version" => "5.*"], false], ]; } From f98754d5476910bda350da0c9a6bd3d34c12cabd Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Fri, 15 Mar 2024 08:35:55 +0100 Subject: [PATCH 004/279] Drone: Fix artifacts upload for 6.0-dev (#43036) --- .drone.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 888aa33e9f637..cbc89d36ad558 100644 --- a/.drone.yml +++ b/.drone.yml @@ -227,6 +227,10 @@ steps: - phpmin-system-mysql - phpmin-system-postgres environment: + WEB_SERVER: + from_secret: webserver + FTP_SERVER: + from_secret: ftpserver FTP_USERNAME: from_secret: ftpusername FTP_PASSWORD: @@ -235,11 +239,11 @@ steps: from_secret: github_token commands: - export PLUGIN_DEST_DIR=/artifacts/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER - - echo https://ci.joomla.org$PLUGIN_DEST_DIR - - rclone config create artifacts ftp host ci.joomla.org user $FTP_USERNAME port 21 pass $FTP_PASSWORD + - echo https://$WEB_SERVER$PLUGIN_DEST_DIR + - rclone config create artifacts ftp host $FTP_SERVER user $FTP_USERNAME port 21 pass $FTP_PASSWORD - rclone mkdir artifacts:$PLUGIN_DEST_DIR - rclone copy tests/System/output/ artifacts:$PLUGIN_DEST_DIR - - 'curl -X POST "https://api.github.com/repos/$DRONE_REPO/statuses/$DRONE_COMMIT" -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" -d "{\"state\":\"failure\", \"context\": \"Artifacts from Failure\", \"description\": \"You can find artifacts from the failure of the build here:\", \"target_url\": \"https://ci.joomla.org$PLUGIN_DEST_DIR\"}" > /dev/null' + - 'curl -X POST "https://api.github.com/repos/$DRONE_REPO/statuses/$DRONE_COMMIT" -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" -d "{\"state\":\"failure\", \"context\": \"Artifacts from Failure\", \"description\": \"You can find artifacts from the failure of the build here:\", \"target_url\": \"https://$WEB_SERVER$PLUGIN_DEST_DIR\"}" > /dev/null' when: status: - failure @@ -403,6 +407,6 @@ trigger: --- kind: signature -hmac: bab6a0eee160708fd4852f35e377cf8ca909cd0e90047e5de100e56605d90f0c +hmac: dfb66e9a5f864abc1593bf735189846336cabd36fbb8b2e34be7731e8a748226 ... From 3b2e07be1a9fd3fd82496dfbc26da2637632a084 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Thu, 4 Apr 2024 11:03:02 +0200 Subject: [PATCH 005/279] Remove deprecated BaseApplication and CLI classes (#42884) --- libraries/src/Application/BaseApplication.php | 55 --- libraries/src/Application/CLI/CliInput.php | 38 -- libraries/src/Application/CLI/CliOutput.php | 93 ---- libraries/src/Application/CLI/ColorStyle.php | 263 ----------- .../CLI/Output/Processor/ColorProcessor.php | 194 -------- .../Output/Processor/ProcessorInterface.php | 36 -- .../src/Application/CLI/Output/Stdout.php | 45 -- libraries/src/Application/CLI/Output/Xml.php | 46 -- libraries/src/Application/CliApplication.php | 428 ------------------ .../compat/src/classmap/classmap.php | 16 - 10 files changed, 1214 deletions(-) delete mode 100644 libraries/src/Application/BaseApplication.php delete mode 100644 libraries/src/Application/CLI/CliInput.php delete mode 100644 libraries/src/Application/CLI/CliOutput.php delete mode 100644 libraries/src/Application/CLI/ColorStyle.php delete mode 100644 libraries/src/Application/CLI/Output/Processor/ColorProcessor.php delete mode 100644 libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php delete mode 100644 libraries/src/Application/CLI/Output/Stdout.php delete mode 100644 libraries/src/Application/CLI/Output/Xml.php delete mode 100644 libraries/src/Application/CliApplication.php diff --git a/libraries/src/Application/BaseApplication.php b/libraries/src/Application/BaseApplication.php deleted file mode 100644 index 79a245f480529..0000000000000 --- a/libraries/src/Application/BaseApplication.php +++ /dev/null @@ -1,55 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application; - -use Joomla\Application\AbstractApplication; -use Joomla\Input\Input; -use Joomla\Registry\Registry; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Joomla Platform Base Application Class - * - * @property-read Input $input The application input object - * - * @since 3.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Application classes should directly be based on \Joomla\Application\AbstractApplication - * don't use this class anymore - */ -abstract class BaseApplication extends AbstractApplication -{ - use EventAware; - use IdentityAware; - - /** - * Class constructor. - * - * @param ?Input $input An optional argument to provide dependency injection for the application's - * input object. If the argument is a Input object that object will become - * the application's input object, otherwise a default input object is created. - * @param ?Registry $config An optional argument to provide dependency injection for the application's - * config object. If the argument is a Registry object that object will become - * the application's config object, otherwise a default config object is created. - * - * @since 3.0.0 - */ - public function __construct(Input $input = null, Registry $config = null) - { - $this->input = $input instanceof Input ? $input : new Input(); - $this->config = $config instanceof Registry ? $config : new Registry(); - - $this->initialise(); - } -} diff --git a/libraries/src/Application/CLI/CliInput.php b/libraries/src/Application/CLI/CliInput.php deleted file mode 100644 index c704982ae3b8d..0000000000000 --- a/libraries/src/Application/CLI/CliInput.php +++ /dev/null @@ -1,38 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Class CliInput - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -class CliInput -{ - /** - * Get a value from standard input. - * - * @return string The input string from standard input. - * - * @codeCoverageIgnore - * @since 4.0.0 - */ - public function in() - { - return rtrim(fread(STDIN, 8192), "\n\r"); - } -} diff --git a/libraries/src/Application/CLI/CliOutput.php b/libraries/src/Application/CLI/CliOutput.php deleted file mode 100644 index a81b2732249f7..0000000000000 --- a/libraries/src/Application/CLI/CliOutput.php +++ /dev/null @@ -1,93 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI; - -use Joomla\CMS\Application\CLI\Output\Processor\ProcessorInterface; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Base class defining a command line output handler - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -abstract class CliOutput -{ - /** - * Output processing object - * - * @var ProcessorInterface - * @since 4.0.0 - */ - protected $processor; - - /** - * Constructor - * - * @param ?ProcessorInterface $processor The output processor. - * - * @since 4.0.0 - */ - public function __construct(ProcessorInterface $processor = null) - { - $this->setProcessor($processor ?: new Output\Processor\ColorProcessor()); - } - - /** - * Set a processor - * - * @param ProcessorInterface $processor The output processor. - * - * @return $this - * - * @since 4.0.0 - */ - public function setProcessor(ProcessorInterface $processor) - { - $this->processor = $processor; - - return $this; - } - - /** - * Get a processor - * - * @return ProcessorInterface - * - * @since 4.0.0 - * @throws \RuntimeException - */ - public function getProcessor() - { - if ($this->processor) { - return $this->processor; - } - - throw new \RuntimeException('A ProcessorInterface object has not been set.'); - } - - /** - * Write a string to an output handler. - * - * @param string $text The text to display. - * @param boolean $nl True (default) to append a new line at the end of the output string. - * - * @return $this - * - * @since 4.0.0 - * @codeCoverageIgnore - */ - abstract public function out($text = '', $nl = true); -} diff --git a/libraries/src/Application/CLI/ColorStyle.php b/libraries/src/Application/CLI/ColorStyle.php deleted file mode 100644 index 3017f61b75ca6..0000000000000 --- a/libraries/src/Application/CLI/ColorStyle.php +++ /dev/null @@ -1,263 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Class defining ANSI-color styles for command line output - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -final class ColorStyle -{ - /** - * Known colors - * - * @var array - * @since 4.0.0 - */ - private static $knownColors = [ - 'black' => 0, - 'red' => 1, - 'green' => 2, - 'yellow' => 3, - 'blue' => 4, - 'magenta' => 5, - 'cyan' => 6, - 'white' => 7, - ]; - - /** - * Known styles - * - * @var array - * @since 4.0.0 - */ - private static $knownOptions = [ - 'bold' => 1, - 'underscore' => 4, - 'blink' => 5, - 'reverse' => 7, - ]; - - /** - * Foreground base value - * - * @var integer - * @since 4.0.0 - */ - private static $fgBase = 30; - - /** - * Background base value - * - * @var integer - * @since 4.0.0 - */ - private static $bgBase = 40; - - /** - * Foreground color - * - * @var integer - * @since 4.0.0 - */ - private $fgColor = 0; - - /** - * Background color - * - * @var integer - * @since 4.0.0 - */ - private $bgColor = 0; - - /** - * Array of style options - * - * @var array - * @since 4.0.0 - */ - private $options = []; - - /** - * Constructor - * - * @param string $fg Foreground color. - * @param string $bg Background color. - * @param array $options Style options. - * - * @since 4.0.0 - * @throws \InvalidArgumentException - */ - public function __construct(string $fg = '', string $bg = '', array $options = []) - { - if ($fg) { - if (\array_key_exists($fg, static::$knownColors) == false) { - throw new \InvalidArgumentException( - sprintf( - 'Invalid foreground color "%1$s" [%2$s]', - $fg, - implode(', ', $this->getKnownColors()) - ) - ); - } - - $this->fgColor = static::$fgBase + static::$knownColors[$fg]; - } - - if ($bg) { - if (\array_key_exists($bg, static::$knownColors) == false) { - throw new \InvalidArgumentException( - sprintf( - 'Invalid background color "%1$s" [%2$s]', - $bg, - implode(', ', $this->getKnownColors()) - ) - ); - } - - $this->bgColor = static::$bgBase + static::$knownColors[$bg]; - } - - foreach ($options as $option) { - if (\array_key_exists($option, static::$knownOptions) == false) { - throw new \InvalidArgumentException( - sprintf( - 'Invalid option "%1$s" [%2$s]', - $option, - implode(', ', $this->getKnownOptions()) - ) - ); - } - - $this->options[] = $option; - } - } - - /** - * Convert to a string. - * - * @return string - * - * @since 4.0.0 - */ - public function __toString() - { - return $this->getStyle(); - } - - /** - * Create a color style from a parameter string. - * - * Example: fg=red;bg=blue;options=bold,blink - * - * @param string $string The parameter string. - * - * @return $this - * - * @since 4.0.0 - * @throws \RuntimeException - */ - public static function fromString(string $string): self - { - $fg = ''; - $bg = ''; - $options = []; - - $parts = explode(';', $string); - - foreach ($parts as $part) { - $subParts = explode('=', $part); - - if (\count($subParts) < 2) { - continue; - } - - switch ($subParts[0]) { - case 'fg': - $fg = $subParts[1]; - - break; - - case 'bg': - $bg = $subParts[1]; - - break; - - case 'options': - $options = explode(',', $subParts[1]); - - break; - - default: - throw new \RuntimeException('Invalid option: ' . $subParts[0]); - } - } - - return new self($fg, $bg, $options); - } - - /** - * Get the translated color code. - * - * @return string - * - * @since 4.0.0 - */ - public function getStyle(): string - { - $values = []; - - if ($this->fgColor) { - $values[] = $this->fgColor; - } - - if ($this->bgColor) { - $values[] = $this->bgColor; - } - - foreach ($this->options as $option) { - $values[] = static::$knownOptions[$option]; - } - - return implode(';', $values); - } - - /** - * Get the known colors. - * - * @return string[] - * - * @since 4.0.0 - */ - public function getKnownColors(): array - { - return array_keys(static::$knownColors); - } - - /** - * Get the known options. - * - * @return string[] - * - * @since 4.0.0 - */ - public function getKnownOptions(): array - { - return array_keys(static::$knownOptions); - } -} diff --git a/libraries/src/Application/CLI/Output/Processor/ColorProcessor.php b/libraries/src/Application/CLI/Output/Processor/ColorProcessor.php deleted file mode 100644 index 559038925af4b..0000000000000 --- a/libraries/src/Application/CLI/Output/Processor/ColorProcessor.php +++ /dev/null @@ -1,194 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI\Output\Processor; - -use Joomla\CMS\Application\CLI\ColorStyle; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Command line output processor supporting ANSI-colored output - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -class ColorProcessor implements ProcessorInterface -{ - /** - * Flag to remove color codes from the output - * - * @var boolean - * @since 4.0.0 - */ - public $noColors = false; - - /** - * Regex to match tags - * - * @var string - * @since 4.0.0 - */ - protected $tagFilter = '/<([a-z=;]+)>(.*?)<\/\\1>/s'; - - /** - * Regex used for removing color codes - * - * @var string - * @since 4.0.0 - */ - protected static $stripFilter = '/<[\/]?[a-z=;]+>/'; - - /** - * Array of ColorStyle objects - * - * @var ColorStyle[] - * @since 4.0.0 - */ - protected $styles = []; - - /** - * Class constructor - * - * @param boolean $noColors Defines non-colored mode on construct - * - * @since 4.0.0 - */ - public function __construct($noColors = null) - { - if ($noColors === null) { - /* - * By default windows cmd.exe and PowerShell does not support ANSI-colored output - * if the variable is not set explicitly colors should be disabled on Windows - */ - $noColors = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'); - } - - $this->noColors = $noColors; - - $this->addPredefinedStyles(); - } - - /** - * Add a style. - * - * @param string $name The style name. - * @param ColorStyle $style The color style. - * - * @return $this - * - * @since 4.0.0 - */ - public function addStyle($name, ColorStyle $style) - { - $this->styles[$name] = $style; - - return $this; - } - - /** - * Strip color tags from a string. - * - * @param string $string The string. - * - * @return string - * - * @since 4.0.0 - */ - public static function stripColors($string) - { - return preg_replace(static::$stripFilter, '', $string); - } - - /** - * Process a string. - * - * @param string $string The string to process. - * - * @return string - * - * @since 4.0.0 - */ - public function process($string) - { - preg_match_all($this->tagFilter, $string, $matches); - - if (!$matches) { - return $string; - } - - foreach ($matches[0] as $i => $m) { - if (\array_key_exists($matches[1][$i], $this->styles)) { - $string = $this->replaceColors($string, $matches[1][$i], $matches[2][$i], $this->styles[$matches[1][$i]]); - } elseif (strpos($matches[1][$i], '=')) { - // Custom format - $string = $this->replaceColors($string, $matches[1][$i], $matches[2][$i], ColorStyle::fromString($matches[1][$i])); - } - } - - return $string; - } - - /** - * Replace color tags in a string. - * - * @param string $text The original text. - * @param string $tag The matched tag. - * @param string $match The match. - * @param ColorStyle $style The color style to apply. - * - * @return mixed - * - * @since 4.0.0 - */ - private function replaceColors($text, $tag, $match, ColorStyle $style) - { - $replace = $this->noColors - ? $match - : "\033[" . $style . 'm' . $match . "\033[0m"; - - return str_replace('<' . $tag . '>' . $match . '', $replace, $text); - } - - /** - * Adds predefined color styles to the ColorProcessor object - * - * @return $this - * - * @since 4.0.0 - */ - private function addPredefinedStyles() - { - $this->addStyle( - 'info', - new ColorStyle('green', '', ['bold']) - ); - - $this->addStyle( - 'comment', - new ColorStyle('yellow', '', ['bold']) - ); - - $this->addStyle( - 'question', - new ColorStyle('black', 'cyan') - ); - - $this->addStyle( - 'error', - new ColorStyle('white', 'red') - ); - - return $this; - } -} diff --git a/libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php b/libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php deleted file mode 100644 index 2c7e0bdbcd47a..0000000000000 --- a/libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php +++ /dev/null @@ -1,36 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI\Output\Processor; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Interface for a command line output processor - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -interface ProcessorInterface -{ - /** - * Process the provided output into a string. - * - * @param string $output The string to process. - * - * @return string - * - * @since 4.0.0 - */ - public function process($output); -} diff --git a/libraries/src/Application/CLI/Output/Stdout.php b/libraries/src/Application/CLI/Output/Stdout.php deleted file mode 100644 index ccae44b56ffa9..0000000000000 --- a/libraries/src/Application/CLI/Output/Stdout.php +++ /dev/null @@ -1,45 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI\Output; - -use Joomla\CMS\Application\CLI\CliOutput; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Output handler for writing command line output to the stdout interface - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -class Stdout extends CliOutput -{ - /** - * Write a string to standard output - * - * @param string $text The text to display. - * @param boolean $nl True (default) to append a new line at the end of the output string. - * - * @return $this - * - * @codeCoverageIgnore - * @since 4.0.0 - */ - public function out($text = '', $nl = true) - { - fwrite(STDOUT, $this->getProcessor()->process($text) . ($nl ? "\n" : null)); - - return $this; - } -} diff --git a/libraries/src/Application/CLI/Output/Xml.php b/libraries/src/Application/CLI/Output/Xml.php deleted file mode 100644 index 36ab151db6441..0000000000000 --- a/libraries/src/Application/CLI/Output/Xml.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application\CLI\Output; - -use Joomla\CMS\Application\CLI\CliOutput; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Output handler for writing command line output to the stdout interface - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the `joomla/console` package instead - */ -class Xml extends CliOutput -{ - /** - * Write a string to standard output. - * - * @param string $text The text to display. - * @param boolean $nl True (default) to append a new line at the end of the output string. - * - * @return $this - * - * @since 4.0.0 - * @throws \RuntimeException - * @codeCoverageIgnore - */ - public function out($text = '', $nl = true) - { - fwrite(STDOUT, $text . ($nl ? "\n" : null)); - - return $this; - } -} diff --git a/libraries/src/Application/CliApplication.php b/libraries/src/Application/CliApplication.php deleted file mode 100644 index 265087a1c0ae7..0000000000000 --- a/libraries/src/Application/CliApplication.php +++ /dev/null @@ -1,428 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Application; - -use Joomla\Application\AbstractApplication; -use Joomla\CMS\Application\CLI\CliInput; -use Joomla\CMS\Application\CLI\CliOutput; -use Joomla\CMS\Application\CLI\Output\Stdout; -use Joomla\CMS\Event\Application\AfterExecuteEvent; -use Joomla\CMS\Event\Application\BeforeExecuteEvent; -use Joomla\CMS\Extension\ExtensionManagerTrait; -use Joomla\CMS\Factory; -use Joomla\CMS\Language\Language; -use Joomla\DI\Container; -use Joomla\DI\ContainerAwareTrait; -use Joomla\Event\DispatcherInterface; -use Joomla\Input\Input; -use Joomla\Registry\Registry; -use Joomla\Session\SessionInterface; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Base class for a Joomla! command line application. - * - * @since 2.5.0 - * - * @deprecated 4.0 will be removed in 6.0 - * Use the ConsoleApplication instead - */ -abstract class CliApplication extends AbstractApplication implements CMSApplicationInterface -{ - use EventAware; - use IdentityAware; - use ContainerAwareTrait; - use ExtensionManagerTrait; - use ExtensionNamespaceMapper; - - /** - * Output object - * - * @var CliOutput - * @since 4.0.0 - */ - protected $output; - - /** - * The input. - * - * @var \Joomla\Input\Input - * @since 4.0.0 - */ - protected $input = null; - - /** - * CLI Input object - * - * @var CliInput - * @since 4.0.0 - */ - protected $cliInput; - - /** - * The application language object. - * - * @var Language - * @since 4.0.0 - */ - protected $language; - - /** - * The application message queue. - * - * @var array - * @since 4.0.0 - */ - protected $messages = []; - - /** - * The application instance. - * - * @var CliApplication - * @since 1.7.0 - */ - protected static $instance; - - /** - * Class constructor. - * - * @param ?Input $input An optional argument to provide dependency injection for the application's - * input object. If the argument is a JInputCli object that object will become - * the application's input object, otherwise a default input object is created. - * @param ?Registry $config An optional argument to provide dependency injection for the application's - * config object. If the argument is a Registry object that object will become - * the application's config object, otherwise a default config object is created. - * @param ?CliOutput $output The output handler. - * @param ?CliInput $cliInput The CLI input handler. - * @param ?DispatcherInterface $dispatcher An optional argument to provide dependency injection for the application's - * event dispatcher. If the argument is a DispatcherInterface object that object will become - * the application's event dispatcher, if it is null then the default event dispatcher - * will be created based on the application's loadDispatcher() method. - * @param ?Container $container Dependency injection container. - * - * @since 1.7.0 - */ - public function __construct( - Input $input = null, - Registry $config = null, - CliOutput $output = null, - CliInput $cliInput = null, - DispatcherInterface $dispatcher = null, - Container $container = null - ) { - // Close the application if we are not executed from the command line. - if (!\defined('STDOUT') || !\defined('STDIN') || !isset($_SERVER['argv'])) { - $this->close(); - } - - $container = $container ?: Factory::getContainer(); - $this->setContainer($container); - $this->setDispatcher($dispatcher ?: $container->get(\Joomla\Event\DispatcherInterface::class)); - - if (!$container->has('session')) { - $container->alias('session', 'session.cli') - ->alias('JSession', 'session.cli') - ->alias(\Joomla\CMS\Session\Session::class, 'session.cli') - ->alias(\Joomla\Session\Session::class, 'session.cli') - ->alias(\Joomla\Session\SessionInterface::class, 'session.cli'); - } - - $this->input = new \Joomla\CMS\Input\Cli(); - $this->language = Factory::getLanguage(); - $this->output = $output ?: new Stdout(); - $this->cliInput = $cliInput ?: new CliInput(); - - parent::__construct($config); - - // Set the current directory. - $this->set('cwd', getcwd()); - - // Set up the environment - $this->input->set('format', 'cli'); - } - - /** - * Magic method to access properties of the application. - * - * @param string $name The name of the property. - * - * @return mixed A value if the property name is valid, null otherwise. - * - * @since 4.0.0 - * - * @deprecated 4.0 will be removed in 6.0 - * This is a B/C proxy for deprecated read accesses - * Example: Factory::getApplication()->getInput(); - */ - public function __get($name) - { - switch ($name) { - case 'input': - @trigger_error( - 'Accessing the input property of the application is deprecated, use the getInput() method instead.', - E_USER_DEPRECATED - ); - - return $this->getInput(); - - default: - $trace = debug_backtrace(); - trigger_error( - sprintf( - 'Undefined property via __get(): %1$s in %2$s on line %3$s', - $name, - $trace[0]['file'], - $trace[0]['line'] - ), - E_USER_NOTICE - ); - } - } - - /** - * Method to get the application input object. - * - * @return Input - * - * @since 4.0.0 - */ - public function getInput(): Input - { - return $this->input; - } - - /** - * Method to get the application language object. - * - * @return Language The language object - * - * @since 4.0.0 - */ - public function getLanguage() - { - return $this->language; - } - - /** - * Returns a reference to the global CliApplication object, only creating it if it doesn't already exist. - * - * This method must be invoked as: $cli = CliApplication::getInstance(); - * - * @param string $name The name (optional) of the Application Cli class to instantiate. - * - * @return CliApplication - * - * @since 1.7.0 - * - * @deprecated 4.0 will be removed in 6.0 - * Load the app through the container or via the Factory - * Example: Factory::getContainer()->get(CliApplication::class) - * - * @throws \RuntimeException - */ - public static function getInstance($name = null) - { - // Only create the object if it doesn't exist. - if (empty(static::$instance)) { - if (!class_exists($name)) { - throw new \RuntimeException(sprintf('Unable to load application: %s', $name), 500); - } - - static::$instance = new $name(); - } - - return static::$instance; - } - - /** - * Execute the application. - * - * @return void - * - * @since 1.7.0 - */ - public function execute() - { - $this->createExtensionNamespaceMap(); - - // Trigger the onBeforeExecute event - $this->dispatchEvent( - 'onBeforeExecute', - new BeforeExecuteEvent('onBeforeExecute', ['subject' => $this, 'container' => $this->getContainer()]) - ); - - // Perform application routines. - $this->doExecute(); - - // Trigger the onAfterExecute event. - $this->dispatchEvent( - 'onAfterExecute', - new AfterExecuteEvent('onAfterExecute', ['subject' => $this]) - ); - } - - /** - * Get an output object. - * - * @return CliOutput - * - * @since 4.0.0 - */ - public function getOutput() - { - return $this->output; - } - - /** - * Get a CLI input object. - * - * @return CliInput - * - * @since 4.0.0 - */ - public function getCliInput() - { - return $this->cliInput; - } - - /** - * Write a string to standard output. - * - * @param string $text The text to display. - * @param boolean $nl True (default) to append a new line at the end of the output string. - * - * @return $this - * - * @since 4.0.0 - */ - public function out($text = '', $nl = true) - { - $this->getOutput()->out($text, $nl); - - return $this; - } - - /** - * Get a value from standard input. - * - * @return string The input string from standard input. - * - * @codeCoverageIgnore - * @since 4.0.0 - */ - public function in() - { - return $this->getCliInput()->in(); - } - - /** - * Set an output object. - * - * @param CliOutput $output CliOutput object - * - * @return $this - * - * @since 3.3 - */ - public function setOutput(CliOutput $output) - { - $this->output = $output; - - return $this; - } - - /** - * Enqueue a system message. - * - * @param string $msg The message to enqueue. - * @param string $type The message type. - * - * @return void - * - * @since 4.0.0 - */ - public function enqueueMessage($msg, $type = self::MSG_INFO) - { - if (!\array_key_exists($type, $this->messages)) { - $this->messages[$type] = []; - } - - $this->messages[$type][] = $msg; - } - - /** - * Get the system message queue. - * - * @return array The system message queue. - * - * @since 4.0.0 - */ - public function getMessageQueue() - { - return $this->messages; - } - - /** - * Check the client interface by name. - * - * @param string $identifier String identifier for the application interface - * - * @return boolean True if this application is of the given type client interface. - * - * @since 4.0.0 - */ - public function isClient($identifier) - { - return $identifier === 'cli'; - } - - /** - * Method to get the application session object. - * - * @return SessionInterface The session object - * - * @since 4.0.0 - */ - public function getSession() - { - return $this->container->get(SessionInterface::class); - } - - /** - * Retrieve the application configuration object. - * - * @return Registry - * - * @since 4.0.0 - */ - public function getConfig() - { - return $this->config; - } - - /** - * Flag if the application instance is a CLI or web based application. - * - * Helper function, you should use the native PHP functions to detect if it is a CLI application. - * - * @return boolean - * - * @since 4.0.0 - * @deprecated 4.0 will be removed in 6.0 - * Will be removed without replacements - */ - public function isCli() - { - return true; - } -} diff --git a/plugins/behaviour/compat/src/classmap/classmap.php b/plugins/behaviour/compat/src/classmap/classmap.php index 03c7ebb795f1f..f46d916d1a727 100644 --- a/plugins/behaviour/compat/src/classmap/classmap.php +++ b/plugins/behaviour/compat/src/classmap/classmap.php @@ -467,22 +467,6 @@ JLoader::registerAlias('JHtml', '\\Joomla\\CMS\\HTML\\HTMLHelper', '6.0'); -JLoader::registerAlias('\\Joomla\\Application\\Cli\\CliInput', '\\Joomla\\CMS\\Application\\CLI\\CliInput', '6.0'); -JLoader::registerAlias('\\Joomla\\Application\\Cli\\CliOutput', '\\Joomla\\CMS\\Application\\CLI\\CliOutput', '6.0'); -JLoader::registerAlias('\\Joomla\\Application\\Cli\\ColorStyle', '\\Joomla\\CMS\\Application\\CLI\\ColorStyle', '6.0'); -JLoader::registerAlias('\\Joomla\\Application\\Cli\\Output\\Stdout', '\\Joomla\\CMS\\Application\\CLI\\Output\\Stdout', '6.0'); -JLoader::registerAlias('\\Joomla\\Application\\Cli\\Output\\Xml', '\\Joomla\\CMS\\Application\\CLI\\Output\\Xml', '6.0'); -JLoader::registerAlias( - '\\Joomla\\Application\\Cli\\Output\\Processor\\ColorProcessor', - '\\Joomla\\CMS\\Application\\CLI\\Output\\Processor\\ColorProcessor', - '6.0' -); -JLoader::registerAlias( - '\\Joomla\\Application\\Cli\\Output\\Processor\\ProcessorInterface', - '\\Joomla\\CMS\\Application\\CLI\\Output\\Processor\\ProcessorInterface', - '6.0' -); - JLoader::registerAlias('JFile', '\\Joomla\\CMS\\Filesystem\\File', '6.0'); JLoader::registerAlias('JFolder', '\\Joomla\\CMS\\Filesystem\\Folder', '6.0'); JLoader::registerAlias('JFilesystemHelper', '\\Joomla\\CMS\\Filesystem\\FilesystemHelper', '6.0'); From 1be141535132bc985d08a24a5ca7795598b4649a Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Thu, 4 Apr 2024 11:12:15 +0200 Subject: [PATCH 006/279] [6.0] Removing CMS Input package (#42890) * Removing CMS Input package * d'oh * Removing remnants of Input package * Codestyle --------- Co-authored-by: Allon Moritz --- .../src/Service/Provider/Application.php | 2 +- libraries/src/Input/Cli.php | 1 + libraries/src/Input/Cookie.php | 159 ------------- libraries/src/Input/Files.php | 152 ------------ libraries/src/Input/Input.php | 222 ------------------ libraries/src/Input/Json.php | 87 ------- .../src/Service/Provider/Application.php | 2 +- libraries/src/Service/Provider/Input.php | 2 +- libraries/src/Service/Provider/Session.php | 2 +- 9 files changed, 5 insertions(+), 624 deletions(-) delete mode 100644 libraries/src/Input/Cookie.php delete mode 100644 libraries/src/Input/Files.php delete mode 100644 libraries/src/Input/Input.php delete mode 100644 libraries/src/Input/Json.php diff --git a/installation/src/Service/Provider/Application.php b/installation/src/Service/Provider/Application.php index b8da47fb3b480..dab5283f079c8 100644 --- a/installation/src/Service/Provider/Application.php +++ b/installation/src/Service/Provider/Application.php @@ -11,13 +11,13 @@ namespace Joomla\CMS\Installation\Service\Provider; use Joomla\CMS\Error\Renderer\JsonRenderer; -use Joomla\CMS\Input\Input as CMSInput; use Joomla\CMS\Installation\Application\CliInstallationApplication; use Joomla\CMS\Installation\Application\InstallationApplication; use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; use Joomla\Event\Priority; +use Joomla\Input\Input as CMSInput; use Joomla\Session\SessionEvents; use Joomla\Session\SessionInterface; use Psr\Log\LoggerInterface; diff --git a/libraries/src/Input/Cli.php b/libraries/src/Input/Cli.php index 443202f6e9ee8..7d56b9202a0e7 100644 --- a/libraries/src/Input/Cli.php +++ b/libraries/src/Input/Cli.php @@ -10,6 +10,7 @@ namespace Joomla\CMS\Input; use Joomla\CMS\Filter\InputFilter; +use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; diff --git a/libraries/src/Input/Cookie.php b/libraries/src/Input/Cookie.php deleted file mode 100644 index 09acbdb351d09..0000000000000 --- a/libraries/src/Input/Cookie.php +++ /dev/null @@ -1,159 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Input; - -use Joomla\CMS\Filter\InputFilter; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Joomla! Input Cookie Class - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Cookie instead - */ -class Cookie extends Input -{ - /** - * Constructor. - * - * @param array $source Ignored. - * @param array $options Array of configuration parameters (Optional) - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Cookie instead - */ - public function __construct(array $source = null, array $options = []) - { - if (isset($options['filter'])) { - $this->filter = $options['filter']; - } else { - $this->filter = InputFilter::getInstance(); - } - - // Set the data source. - $this->data = &$_COOKIE; - - // Set the options for the class. - $this->options = $options; - } - - /** - * Sets a value - * - * @param string $name Name of the value to set. - * @param mixed $value Value to assign to the input. - * @param array $options An associative array which may have any of the keys expires, path, domain, - * secure, httponly and samesite. The values have the same meaning as described - * for the parameters with the same name. The value of the samesite element - * should be either Lax or Strict. If any of the allowed options are not given, - * their default values are the same as the default values of the explicit - * parameters. If the samesite element is omitted, no SameSite cookie attribute - * is set. - * - * @return void - * - * @link http://www.ietf.org/rfc/rfc2109.txt - * @see setcookie() - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Cookie instead - */ - public function set($name, $value, $options = []) - { - // BC layer to convert old method parameters. - if (\is_array($options) === false) { - trigger_deprecation( - 'joomla/input', - '1.4.0', - 'The %s($name, $value, $expire, $path, $domain, $secure, $httpOnly) signature is deprecated and' - . ' will not be supported once support' - . ' for PHP 7.2 and earlier is dropped, use the %s($name, $value, $options) signature instead', - __METHOD__, - __METHOD__ - ); - - $argList = \func_get_args(); - - $options = [ - 'expires' => $argList[2] ?? 0, - 'path' => $argList[3] ?? '', - 'domain' => $argList[4] ?? '', - 'secure' => $argList[5] ?? false, - 'httponly' => $argList[6] ?? false, - ]; - } - - // Set the cookie - if (version_compare(PHP_VERSION, '7.3', '>=')) { - if (\is_array($value)) { - foreach ($value as $key => $val) { - setcookie($name . "[$key]", $val, $options); - } - } else { - setcookie($name, $value, $options); - } - } else { - // Using the setcookie function before php 7.3, make sure we have default values. - if (\array_key_exists('expires', $options) === false) { - $options['expires'] = 0; - } - - if (\array_key_exists('path', $options) === false) { - $options['path'] = ''; - } - - if (\array_key_exists('domain', $options) === false) { - $options['domain'] = ''; - } - - if (\array_key_exists('secure', $options) === false) { - $options['secure'] = false; - } - - if (\array_key_exists('httponly', $options) === false) { - $options['httponly'] = false; - } - - if (\is_array($value)) { - foreach ($value as $key => $val) { - setcookie( - $name . "[$key]", - $val, - $options['expires'], - $options['path'], - $options['domain'], - $options['secure'], - $options['httponly'] - ); - } - } else { - setcookie( - $name, - $value, - $options['expires'], - $options['path'], - $options['domain'], - $options['secure'], - $options['httponly'] - ); - } - } - - $this->data[$name] = $value; - } -} diff --git a/libraries/src/Input/Files.php b/libraries/src/Input/Files.php deleted file mode 100644 index 17e5722c499fb..0000000000000 --- a/libraries/src/Input/Files.php +++ /dev/null @@ -1,152 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Input; - -use Joomla\CMS\Filter\InputFilter; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Joomla! Input Files Class - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ -class Files extends Input -{ - /** - * The pivoted data from a $_FILES or compatible array. - * - * @var array - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ - protected $decodedData = []; - - /** - * The class constructor. - * - * @param array $source The source argument is ignored. $_FILES is always used. - * @param array $options An optional array of configuration options: - * filter : a custom InputFilter object. - * - * @since 3.0.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ - public function __construct(array $source = null, array $options = []) - { - if (isset($options['filter'])) { - $this->filter = $options['filter']; - } else { - $this->filter = InputFilter::getInstance(); - } - - // Set the data source. - $this->data = &$_FILES; - - // Set the options for the class. - $this->options = $options; - } - - /** - * Gets a value from the input data. - * - * @param string $name The name of the input property (usually the name of the files INPUT tag) to get. - * @param mixed $default The default value to return if the named property does not exist. - * @param string $filter The filter to apply to the value. - * - * @return mixed The filtered input value. - * - * @see InputFilter::clean() - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ - public function get($name, $default = null, $filter = 'cmd') - { - if (isset($this->data[$name])) { - $results = $this->decodeData( - [ - $this->data[$name]['name'], - $this->data[$name]['type'], - $this->data[$name]['tmp_name'], - $this->data[$name]['error'], - $this->data[$name]['size'], - ] - ); - - // Prevent returning an unsafe file unless specifically requested - if (strtoupper($filter) !== 'RAW') { - $isSafe = InputFilter::isSafeFile($results); - - if (!$isSafe) { - return $default; - } - } - - return $results; - } - - return $default; - } - - /** - * Method to decode a data array. - * - * @param array $data The data array to decode. - * - * @return array - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ - protected function decodeData(array $data) - { - $result = []; - - if (\is_array($data[0])) { - foreach ($data[0] as $k => $v) { - $result[$k] = $this->decodeData([$data[0][$k], $data[1][$k], $data[2][$k], $data[3][$k], $data[4][$k]]); - } - - return $result; - } - - return ['name' => $data[0], 'type' => $data[1], 'tmp_name' => $data[2], 'error' => $data[3], 'size' => $data[4]]; - } - - /** - * Sets a value. - * - * @param string $name The name of the input property to set. - * @param mixed $value The value to assign to the input property. - * - * @return void - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Files instead - */ - public function set($name, $value) - { - } -} diff --git a/libraries/src/Input/Input.php b/libraries/src/Input/Input.php deleted file mode 100644 index e3f5544d32ae5..0000000000000 --- a/libraries/src/Input/Input.php +++ /dev/null @@ -1,222 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Input; - -use Joomla\CMS\Filter\InputFilter; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Joomla! Input Base Class - * - * This is an abstracted input class used to manage retrieving data from the application environment. - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - * - * @property-read Input $get - * @property-read Input $post - * @property-read Input $request - * @property-read Input $server - * @property-read Input $env - * @property-read Files $files - * @property-read Cookie $cookie - * @property-read Json $json - */ -class Input extends \Joomla\Input\Input -{ - /** - * Container with allowed superglobals - * - * @var array - * @since 3.8.9 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - private static $allowedGlobals = ['REQUEST', 'GET', 'POST', 'FILES', 'SERVER', 'ENV']; - - /** - * Input objects - * - * @var Input[] - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - protected $inputs = []; - - /** - * Constructor. - * - * @param array $source Source data (Optional, default is $_REQUEST) - * @param array $options Array of configuration parameters (Optional) - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - public function __construct($source = null, array $options = []) - { - if (!isset($options['filter'])) { - $this->filter = InputFilter::getInstance(); - } - - parent::__construct($source, $options); - } - - /** - * Magic method to get an input object - * - * @param mixed $name Name of the input object to retrieve. - * - * @return \Joomla\Input\Input The request input object - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - public function __get($name) - { - if (isset($this->inputs[$name])) { - return $this->inputs[$name]; - } - - $className = '\\Joomla\\CMS\\Input\\' . ucfirst($name); - - if (class_exists($className)) { - $this->inputs[$name] = new $className(null, $this->options); - - return $this->inputs[$name]; - } - - $superGlobal = '_' . strtoupper($name); - - if (\in_array(strtoupper($name), self::$allowedGlobals, true) && isset($GLOBALS[$superGlobal])) { - $this->inputs[$name] = new Input($GLOBALS[$superGlobal], $this->options); - - return $this->inputs[$name]; - } - - // Try using the parent class - return parent::__get($name); - } - - /** - * Gets an array of values from the request. - * - * @param array $vars Associative array of keys and filter types to apply. - * If empty and datasource is null, all the input data will be returned - * but filtered using the filter given by the parameter defaultFilter in - * InputFilter::clean. - * @param mixed $datasource Array to retrieve data from, or null. - * @param string $defaultFilter Default filter used in InputFilter::clean if vars is empty and - * datasource is null. If 'unknown', the default case is used in - * InputFilter::clean. - * - * @return mixed The filtered input data. - * - * @since 1.7.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - public function getArray(array $vars = [], $datasource = null, $defaultFilter = 'unknown') - { - return $this->getArrayRecursive($vars, $datasource, $defaultFilter, false); - } - - /** - * Gets an array of values from the request. - * - * @param array $vars Associative array of keys and filter types to apply. - * If empty and datasource is null, all the input data will be returned - * but filtered using the filter given by the parameter defaultFilter in - * InputFilter::clean. - * @param mixed $datasource Array to retrieve data from, or null. - * @param string $defaultFilter Default filter used in InputFilter::clean if vars is empty and - * datasource is null. If 'unknown', the default case is used in - * InputFilter::clean. - * @param bool $recursion Flag to indicate a recursive function call. - * - * @return mixed The filtered input data. - * - * @since 3.4.2 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - protected function getArrayRecursive(array $vars = [], $datasource = null, $defaultFilter = 'unknown', $recursion = false) - { - if (empty($vars) && \is_null($datasource)) { - $vars = $this->data; - } else { - if (!$recursion) { - $defaultFilter = null; - } - } - - $results = []; - - foreach ($vars as $k => $v) { - if (\is_array($v)) { - if (\is_null($datasource)) { - $results[$k] = $this->getArrayRecursive($v, $this->get($k, null, 'array'), $defaultFilter, true); - } else { - $results[$k] = $this->getArrayRecursive($v, $datasource[$k], $defaultFilter, true); - } - } else { - $filter = $defaultFilter ?? $v; - - if (\is_null($datasource)) { - $results[$k] = $this->get($k, null, $filter); - } elseif (isset($datasource[$k])) { - $results[$k] = $this->filter->clean($datasource[$k], $filter); - } else { - $results[$k] = $this->filter->clean(null, $filter); - } - } - } - - return $results; - } - - /** - * Method to unserialize the input. - * - * @param string $input The serialized input. - * - * @return void - * - * @since 3.0.0 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Input instead - */ - public function unserialize($input) - { - // Unserialize the options, data, and inputs. - list($this->options, $this->data, $this->inputs) = unserialize($input); - - // Load the filter. - if (isset($this->options['filter'])) { - $this->filter = $this->options['filter']; - } else { - $this->filter = InputFilter::getInstance(); - } - } -} diff --git a/libraries/src/Input/Json.php b/libraries/src/Input/Json.php deleted file mode 100644 index fa3cdba64455c..0000000000000 --- a/libraries/src/Input/Json.php +++ /dev/null @@ -1,87 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\Input; - -use Joomla\CMS\Filter\InputFilter; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Joomla! Input JSON Class - * - * This class decodes a JSON string from the raw request data and makes it available via - * the standard JInput interface. - * - * @since 3.0.1 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Json instead - */ -class Json extends Input -{ - /** - * @var string The raw JSON string from the request. - * @since 3.0.1 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Json instead - */ - private $_raw; - - /** - * Constructor. - * - * @param array $source Source data (Optional, default is the raw HTTP input decoded from JSON) - * @param array $options Array of configuration parameters (Optional) - * - * @since 3.0.1 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Json instead - */ - public function __construct(array $source = null, array $options = []) - { - if (isset($options['filter'])) { - $this->filter = $options['filter']; - } else { - $this->filter = InputFilter::getInstance(); - } - - if (\is_null($source)) { - $this->_raw = file_get_contents('php://input'); - $this->data = json_decode($this->_raw, true); - - if (!\is_array($this->data)) { - $this->data = []; - } - } else { - $this->data = &$source; - } - - $this->options = $options; - } - - /** - * Gets the raw JSON string from the request. - * - * @return string The raw JSON string from the request. - * - * @since 3.0.1 - * - * @deprecated 4.3 will be removed in 6.0. - * Use Joomla\Input\Json instead - */ - public function getRaw() - { - return $this->_raw; - } -} diff --git a/libraries/src/Service/Provider/Application.php b/libraries/src/Service/Provider/Application.php index c3555a91c97d4..292c1c408d527 100644 --- a/libraries/src/Service/Provider/Application.php +++ b/libraries/src/Service/Provider/Application.php @@ -36,7 +36,6 @@ use Joomla\CMS\Console\TasksRunCommand; use Joomla\CMS\Console\TasksStateCommand; use Joomla\CMS\Console\UpdateCoreCommand; -use Joomla\CMS\Input\Input as CMSInput; use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Menu\MenuFactoryInterface; use Joomla\CMS\User\UserFactoryInterface; @@ -49,6 +48,7 @@ use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Event\Priority; +use Joomla\Input\Input as CMSInput; use Joomla\Session\SessionEvents; use Joomla\Session\SessionInterface; use Psr\Log\LoggerInterface; diff --git a/libraries/src/Service/Provider/Input.php b/libraries/src/Service/Provider/Input.php index f1d2f82dd3f6f..15e4286db0f4d 100644 --- a/libraries/src/Service/Provider/Input.php +++ b/libraries/src/Service/Provider/Input.php @@ -9,9 +9,9 @@ namespace Joomla\CMS\Service\Provider; -use Joomla\CMS\Input\Input as CMSInput; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; +use Joomla\Input\Input as CMSInput; /** * Service provider for the the Joomla Input object. diff --git a/libraries/src/Service/Provider/Session.php b/libraries/src/Service/Provider/Session.php index df97bb95196e7..5cbac113b3535 100644 --- a/libraries/src/Service/Provider/Session.php +++ b/libraries/src/Service/Provider/Session.php @@ -13,7 +13,6 @@ use Joomla\CMS\Application\ConsoleApplication; use Joomla\CMS\Application\SiteApplication; use Joomla\CMS\Factory; -use Joomla\CMS\Input\Input as CMSInput; use Joomla\CMS\Installation\Application\InstallationApplication; use Joomla\CMS\Session\EventListener\MetadataManagerListener; use Joomla\CMS\Session\MetadataManager; @@ -26,6 +25,7 @@ use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Event\LazyServiceEventListener; +use Joomla\Input\Input as CMSInput; use Joomla\Registry\Registry; use Joomla\Session\HandlerInterface; use Joomla\Session\SessionEvents; From 64b85302070f3c1ca1d068ce8b2b655b27cbee88 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Tue, 9 Apr 2024 08:21:31 +0200 Subject: [PATCH 007/279] Drone: Switching to key authentication for artifacts (#43238) --- .drone.yml | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/.drone.yml b/.drone.yml index cbc89d36ad558..b6a399eea2402 100644 --- a/.drone.yml +++ b/.drone.yml @@ -229,21 +229,29 @@ steps: environment: WEB_SERVER: from_secret: webserver - FTP_SERVER: - from_secret: ftpserver - FTP_USERNAME: - from_secret: ftpusername - FTP_PASSWORD: - from_secret: ftppassword + FTP_KEY: + from_secret: ftp_key + FTP_USER: + from_secret: ftp_user + FTP_HOST: + from_secret: ftp_host + ARTIFACTS_ROOT: + from_secret: artifacts_root GITHUB_TOKEN: from_secret: github_token commands: - - export PLUGIN_DEST_DIR=/artifacts/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER - - echo https://$WEB_SERVER$PLUGIN_DEST_DIR - - rclone config create artifacts ftp host $FTP_SERVER user $FTP_USERNAME port 21 pass $FTP_PASSWORD - - rclone mkdir artifacts:$PLUGIN_DEST_DIR - - rclone copy tests/System/output/ artifacts:$PLUGIN_DEST_DIR - - 'curl -X POST "https://api.github.com/repos/$DRONE_REPO/statuses/$DRONE_COMMIT" -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" -d "{\"state\":\"failure\", \"context\": \"Artifacts from Failure\", \"description\": \"You can find artifacts from the failure of the build here:\", \"target_url\": \"https://$WEB_SERVER$PLUGIN_DEST_DIR\"}" > /dev/null' + - export PLUGIN_DEST_DIR=$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER + - echo https://$WEB_SERVER/drone/$PLUGIN_DEST_DIR + - mkdir -p ~/.ssh + - eval $(ssh-agent -s) + - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + - echo "$FTP_KEY" > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - ssh-add + - rclone config create artifacts sftp host $FTP_HOST user $FTP_USER port 22 + - rclone mkdir artifacts:$ARTIFACTS_ROOT/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER + - rclone copy tests/System/output/ artifacts:$ARTIFACTS_ROOT/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER + - 'curl -X POST "https://api.github.com/repos/$DRONE_REPO/statuses/$DRONE_COMMIT" -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" -d "{\"state\":\"failure\", \"context\": \"Artifacts from Failure\", \"description\": \"You can find artifacts from the failure of the build here:\", \"target_url\": \"https://$WEB_SERVER/drone/$PLUGIN_DEST_DIR\"}" > /dev/null' when: status: - failure @@ -407,6 +415,6 @@ trigger: --- kind: signature -hmac: dfb66e9a5f864abc1593bf735189846336cabd36fbb8b2e34be7731e8a748226 +hmac: 3e27d8cd2799f97105892b5e08d8283271a4d5c5e21aa1fe2b7ae1c4df3e349b ... From af66841445d1affad6e191880c3643e361b8d661 Mon Sep 17 00:00:00 2001 From: zero-24 Date: Wed, 22 May 2024 20:29:18 +0200 Subject: [PATCH 008/279] add new signature for drone --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 90cbd0256955e..f18730fc4a829 100644 --- a/.drone.yml +++ b/.drone.yml @@ -414,6 +414,6 @@ trigger: --- kind: signature -hmac: 3e27d8cd2799f97105892b5e08d8283271a4d5c5e21aa1fe2b7ae1c4df3e349b +hmac: d4131ffaa91f4925cae9118af99cf2a7d8bd6fc2dc59fb50259c7ced220c48d5 ... From 20bc3f6fab317a11f59ba97d9d6508f56e327831 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Wed, 22 May 2024 20:44:01 +0200 Subject: [PATCH 009/279] [5.2] Custom Fields: Correcting typehint for $this in layout (#43357) --- plugins/fields/checkboxes/tmpl/checkboxes.php | 2 +- plugins/fields/list/tmpl/list.php | 2 +- plugins/fields/radio/tmpl/radio.php | 2 +- plugins/fields/user/tmpl/user.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/fields/checkboxes/tmpl/checkboxes.php b/plugins/fields/checkboxes/tmpl/checkboxes.php index 8527b66a8d451..9b995b718f25e 100644 --- a/plugins/fields/checkboxes/tmpl/checkboxes.php +++ b/plugins/fields/checkboxes/tmpl/checkboxes.php @@ -12,7 +12,7 @@ use Joomla\CMS\Language\Text; -/** @var \Joomla\CMS\Layout\FileLayout $this */ +/** @var \Joomla\Plugin\Fields\Checkboxes\Extension\Checkboxes $this */ $fieldValue = $field->value; if ($fieldValue === '' || $fieldValue === null) { diff --git a/plugins/fields/list/tmpl/list.php b/plugins/fields/list/tmpl/list.php index e253ebc7cc0da..ce4b6d33228b0 100644 --- a/plugins/fields/list/tmpl/list.php +++ b/plugins/fields/list/tmpl/list.php @@ -12,7 +12,7 @@ use Joomla\CMS\Language\Text; -/** @var \Joomla\CMS\Layout\FileLayout $this */ +/** @var \Joomla\Plugin\Fields\ListField\Extension\ListPlugin $this */ $fieldValue = $field->value; if ($fieldValue == '') { diff --git a/plugins/fields/radio/tmpl/radio.php b/plugins/fields/radio/tmpl/radio.php index 0a85f45968de5..3a3588f118c4b 100644 --- a/plugins/fields/radio/tmpl/radio.php +++ b/plugins/fields/radio/tmpl/radio.php @@ -12,7 +12,7 @@ use Joomla\CMS\Language\Text; -/** @var \Joomla\CMS\Layout\FileLayout $this */ +/** @var \Joomla\Plugin\Fields\Radio\Extension\Radio $this */ $value = $field->value; if ($value == '') { diff --git a/plugins/fields/user/tmpl/user.php b/plugins/fields/user/tmpl/user.php index 5a71062c8267a..aca079054beb1 100644 --- a/plugins/fields/user/tmpl/user.php +++ b/plugins/fields/user/tmpl/user.php @@ -10,7 +10,7 @@ defined('_JEXEC') or die; -/** @var \Joomla\CMS\Layout\FileLayout $this */ +/** @var \Joomla\Plugin\Fields\User\Extension\User $this */ $value = $field->value; if ($value == '') { From efc29ecd15708765cb6bef7c660232de3b47203c Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Wed, 5 Jun 2024 19:22:18 +0200 Subject: [PATCH 010/279] [6.0] Initial update script clean up for 6.0 (#43598) * Remove 5.x update SQL scripts + add 6.0.0 dummy * Clean up uninstallExtensions and adapt to 6.0.0 Clean up core extensions uninstallation and migration on update for Joomla 6 and remove obsolete migration functions. * Init lists of deleted files and folders and renamed files * Clean up postflight migrations and adapt to 6.0.0 Clean up postflight method for Joomla 6 and remove obsolete migration functions. * Clean up updateAssets method * Add files and folders to be deleted on update - Add 5.x update SQL scripts - Add files abd folder from PR #42884 - Add files from PR #42890 * Fix "From" version in comment * Add example to comment in uninstallExtensions method * Remove obsolete exclusions from deleted_file_check.php * Change old J3 comment * Fix PHPCS unused imports in script.php --- administrator/components/com_admin/script.php | 2593 +---------------- .../sql/updates/mysql/5.0.0-2023-03-11.sql | 1 - .../sql/updates/mysql/5.0.0-2023-03-17.sql | 1 - .../sql/updates/mysql/5.0.0-2023-07-12.sql | 2 - .../sql/updates/mysql/5.0.0-2023-07-25.sql | 23 - .../sql/updates/mysql/5.0.0-2023-07-29.sql | 3 - .../sql/updates/mysql/5.0.0-2023-08-21.sql | 17 - .../sql/updates/mysql/5.0.0-2023-08-26.sql | 3 - .../sql/updates/mysql/5.0.0-2023-08-28.sql | 13 - .../sql/updates/mysql/5.0.0-2023-08-29.sql | 14 - .../sql/updates/mysql/5.0.0-2023-08-30.sql | 3 - .../sql/updates/mysql/5.0.0-2023-09-02.sql | 14 - .../sql/updates/mysql/5.0.0-2023-09-06.sql | 5 - .../sql/updates/mysql/5.0.0-2023-09-09.sql | 5 - .../sql/updates/mysql/5.0.0-2023-09-11.sql | 1 - .../sql/updates/mysql/5.1.0-2023-11-28.sql | 2 - .../sql/updates/mysql/5.1.0-2024-01-04.sql | 1 - .../sql/updates/mysql/5.1.0-2024-02-10.sql | 1 - .../sql/updates/mysql/5.1.0-2024-02-24.sql | 34 - .../sql/updates/mysql/5.1.0-2024-02-25.sql | 2 - .../sql/updates/mysql/5.1.0-2024-03-08.sql | 13 - .../sql/updates/mysql/5.1.0-2024-03-28.sql | 12 - .../sql/updates/mysql/5.1.1-2024-04-18.sql | 10 - .../sql/updates/mysql/6.0.0-2024-06-01.sql | 2 + .../updates/postgresql/5.0.0-2023-03-11.sql | 1 - .../updates/postgresql/5.0.0-2023-03-17.sql | 1 - .../updates/postgresql/5.0.0-2023-07-12.sql | 2 - .../updates/postgresql/5.0.0-2023-07-25.sql | 23 - .../updates/postgresql/5.0.0-2023-07-29.sql | 3 - .../updates/postgresql/5.0.0-2023-08-21.sql | 13 - .../updates/postgresql/5.0.0-2023-08-26.sql | 3 - .../updates/postgresql/5.0.0-2023-08-28.sql | 14 - .../updates/postgresql/5.0.0-2023-08-29.sql | 14 - .../updates/postgresql/5.0.0-2023-08-30.sql | 3 - .../updates/postgresql/5.0.0-2023-09-02.sql | 14 - .../updates/postgresql/5.0.0-2023-09-06.sql | 5 - .../updates/postgresql/5.0.0-2023-09-09.sql | 5 - .../updates/postgresql/5.0.0-2023-09-11.sql | 1 - .../updates/postgresql/5.1.0-2023-11-28.sql | 2 - .../updates/postgresql/5.1.0-2024-02-10.sql | 1 - .../updates/postgresql/5.1.0-2024-02-24.sql | 37 - .../updates/postgresql/5.1.0-2024-02-25.sql | 2 - .../updates/postgresql/5.1.0-2024-03-08.sql | 15 - .../updates/postgresql/5.1.0-2024-03-28.sql | 12 - .../updates/postgresql/5.1.1-2024-04-18.sql | 10 - .../updates/postgresql/6.0.0-2024-06-01.sql | 2 + build/deleted_file_check.php | 63 +- 47 files changed, 78 insertions(+), 2943 deletions(-) delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-11.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-17.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-12.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-25.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-29.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-21.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-26.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-29.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-30.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-02.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-06.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-09.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-11.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2023-11-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-01-04.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-10.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-24.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-25.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql create mode 100644 administrator/components/com_admin/sql/updates/mysql/6.0.0-2024-06-01.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-25.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-29.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-21.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-26.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-29.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-30.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-02.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-06.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-09.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-11.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2023-11-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-10.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-24.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-25.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql create mode 100644 administrator/components/com_admin/sql/updates/postgresql/6.0.0-2024-06-01.sql diff --git a/administrator/components/com_admin/script.php b/administrator/components/com_admin/script.php index 8932fd19a54db..b3b87c0434b78 100644 --- a/administrator/components/com_admin/script.php +++ b/administrator/components/com_admin/script.php @@ -10,19 +10,15 @@ * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace */ -use Joomla\CMS\Application\ApplicationHelper; -use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Extension\ExtensionHelper; use Joomla\CMS\Factory; use Joomla\CMS\Installer\Installer; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Table\Table; -use Joomla\CMS\Uri\Uri; use Joomla\Database\ParameterType; use Joomla\Filesystem\File; use Joomla\Filesystem\Folder; -use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -264,7 +260,7 @@ protected function updateDatabaseMysql() /** * Uninstall extensions and optionally migrate their parameters when - * updating from a version older than 5.0.1. + * updating from a version older than 6.0.0. * * @return void * @@ -272,8 +268,8 @@ protected function updateDatabaseMysql() */ protected function uninstallExtensions() { - // Don't uninstall extensions when not updating from a version older than 5.0.1 - if (empty($this->fromVersion) || version_compare($this->fromVersion, '5.0.1', 'ge')) { + // Don't uninstall extensions when not updating from a version older than 6.0.0 + if (empty($this->fromVersion) || version_compare($this->fromVersion, '6.0.0', 'ge')) { return true; } @@ -287,13 +283,10 @@ protected function uninstallExtensions() * 'client_id' => Field `client_id` in the `#__extensions` table * 'pre_function' => Name of an optional migration function to be called before * uninstalling, `null` if not used. + * Examples: + * ['type' => 'plugin', 'element' => 'demotasks', 'folder' => 'task', 'client_id' => 0, 'pre_function' => null], + * ['type' => 'plugin', 'element' => 'compat', 'folder' => 'system', 'client_id' => 0, 'pre_function' => 'migrateCompatPlugin'], */ - ['type' => 'plugin', 'element' => 'demotasks', 'folder' => 'task', 'client_id' => 0, 'pre_function' => null], - ['type' => 'plugin', 'element' => 'compat', 'folder' => 'system', 'client_id' => 0, 'pre_function' => 'migrateCompatPlugin'], - ['type' => 'plugin', 'element' => 'logrotation', 'folder' => 'system', 'client_id' => 0, 'pre_function' => 'migrateLogRotationPlugin'], - ['type' => 'plugin', 'element' => 'recaptcha', 'folder' => 'captcha', 'client_id' => 0, 'pre_function' => null], - ['type' => 'plugin', 'element' => 'sessiongc', 'folder' => 'system', 'client_id' => 0, 'pre_function' => 'migrateSessionGCPlugin'], - ['type' => 'plugin', 'element' => 'updatenotification', 'folder' => 'system', 'client_id' => 0, 'pre_function' => 'migrateUpdatenotificationPlugin'], ]; $db = Factory::getDbo(); @@ -345,162 +338,6 @@ protected function uninstallExtensions() } } - /** - * Migrate plugin parameters of obsolete compat system plugin to compat behaviour plugin - * - * @param \stdClass $rowOld Object with the obsolete plugin's record in the `#__extensions` table - * - * @return void - * - * @since 5.0.0 - */ - private function migrateCompatPlugin($rowOld) - { - $db = Factory::getDbo(); - - $db->setQuery( - $db->getQuery(true) - ->update($db->quoteName('#__extensions')) - ->set($db->quoteName('enabled') . ' = :enabled') - ->set($db->quoteName('params') . ' = :params') - ->where($db->quoteName('type') . ' = ' . $db->quote('plugin')) - ->where($db->quoteName('element') . ' = ' . $db->quote('compat')) - ->where($db->quoteName('folder') . ' = ' . $db->quote('behaviour')) - ->where($db->quoteName('client_id') . ' = 0') - ->bind(':enabled', $rowOld->enabled, ParameterType::INTEGER) - ->bind(':params', $rowOld->params) - )->execute(); - } - - /** - * This method is for migration for old logrotation system plugin migration to task. - * - * @param \stdClass $data Object with the extension's record in the `#__extensions` table - * - * @return void - * - * @since 5.0.0 - */ - private function migrateLogRotationPlugin($data) - { - if (!$data->enabled) { - return; - } - - /** @var \Joomla\Component\Scheduler\Administrator\Extension\SchedulerComponent $component */ - $component = Factory::getApplication()->bootComponent('com_scheduler'); - - /** @var \Joomla\Component\Scheduler\Administrator\Model\TaskModel $model */ - $model = $component->getMVCFactory()->createModel('Task', 'Administrator', ['ignore_request' => true]); - - // Get the timeout, as configured in plg_system_logrotation - $params = new Registry($data->params); - $cachetimeout = (int) $params->get('cachetimeout', 30); - $lastrun = (int) $params->get('lastrun', time()); - - $task = [ - 'title' => 'Rotate Logs', - 'type' => 'rotation.logs', - 'execution_rules' => [ - 'rule-type' => 'interval-days', - 'interval-days' => $cachetimeout, - 'exec-time' => gmdate('H:i', $lastrun), - 'exec-day' => gmdate('d'), - ], - 'state' => 1, - 'params' => [ - 'logstokeep' => $params->get('logstokeep', 1), - ], - ]; - $model->save($task); - } - - /** - * This method is for migration for old updatenotification system plugin migration to task. - * - * @param \stdClass $data Object with the extension's record in the `#__extensions` table - * - * @return void - * - * @since 5.0.0 - */ - private function migrateSessionGCPlugin($data) - { - if (!$data->enabled) { - return; - } - - // Get the plugin parameters - $params = new Registry($data->params); - - /** @var \Joomla\Component\Scheduler\Administrator\Extension\SchedulerComponent $component */ - $component = Factory::getApplication()->bootComponent('com_scheduler'); - - /** @var \Joomla\Component\Scheduler\Administrator\Model\TaskModel $model */ - $model = $component->getMVCFactory()->createModel('Task', 'Administrator', ['ignore_request' => true]); - $task = [ - 'title' => 'Session GC', - 'type' => 'session.gc', - 'execution_rules' => [ - 'rule-type' => 'interval-hours', - 'interval-hours' => 24, - 'exec-time' => gmdate('H:i'), - 'exec-day' => gmdate('d'), - ], - 'state' => 1, - 'params' => [ - 'enable_session_gc' => $params->get('enable_session_gc', 1), - 'enable_session_metadata_gc' => $params->get('enable_session_metadata_gc', 1), - ], - ]; - $model->save($task); - } - - /** - * This method is for migration for old updatenotification system plugin migration to task. - * - * @param \stdClass $data Object with the extension's record in the `#__extensions` table - * - * @return void - * - * @since 5.0.0 - */ - private function migrateUpdatenotificationPlugin($data) - { - if (!$data->enabled) { - return; - } - - // Get the timeout for Joomla! updates, as configured in com_installer's component parameters - $component = ComponentHelper::getComponent('com_installer'); - $paramsc = $component->getParams(); - $cachetimeout = (int) $paramsc->get('cachetimeout', 6); - $params = new Registry($data->params); - $lastrun = (int) $params->get('lastrun', time()); - - /** @var \Joomla\Component\Scheduler\Administrator\Extension\SchedulerComponent $component */ - $component = Factory::getApplication()->bootComponent('com_scheduler'); - - /** @var \Joomla\Component\Scheduler\Administrator\Model\TaskModel $model */ - $model = $component->getMVCFactory()->createModel('Task', 'Administrator', ['ignore_request' => true]); - $task = [ - 'title' => 'Update Notification', - 'type' => 'update.notification', - 'execution_rules' => [ - 'rule-type' => 'interval-hours', - 'interval-hours' => $cachetimeout, - 'exec-time' => gmdate('H:i', $lastrun), - 'exec-day' => gmdate('d'), - ], - 'state' => 1, - 'params' => [ - 'email' => $params->get('email', ''), - 'language_override' => $params->get('language_override', ''), - ], - ]; - $model->save($task); - } - /** * Update the manifest caches * @@ -575,2028 +412,70 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) ]; $files = [ - // From 4.4 to 5.0 - '/administrator/components/com_admin/sql/others/mysql/utf8mb4-conversion.sql', - '/administrator/components/com_admin/sql/others/mysql/utf8mb4-conversion_optional.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-03-05.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-05-15.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-07-19.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-07-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2018-08-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-03-09.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-03-30.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-04-15.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-04-22.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-05-20.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-06-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-07-13.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-09-13.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-09-22.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-10-06.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2019-10-17.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-02-02.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-03-10.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-03-25.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-05-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-09-27.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2020-12-20.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-04-22.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-04-27.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-05-30.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-06-04.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-08-13.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.0-2021-08-17.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.3-2021-09-04.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.3-2021-09-05.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.0.6-2021-12-23.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2021-11-20.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2021-11-28.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2021-12-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2022-01-08.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2022-01-19.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.0-2022-01-24.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.1-2022-02-20.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.3-2022-04-07.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.1.3-2022-04-08.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.0-2022-05-15.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.0-2022-06-15.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.0-2022-06-19.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.0-2022-06-22.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.0-2022-07-07.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.1-2022-08-23.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.3-2022-09-07.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.7-2022-12-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.2.9-2023-03-07.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2022-09-23.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2022-11-06.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-01-30.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-02-15.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-02-25.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-03-07.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-03-09.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-03-10.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-03-28.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.0-2023-03-29.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.2-2023-03-31.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.2-2023-05-03.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.3.2-2023-05-20.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.4.0-2023-05-08.sql', - '/administrator/components/com_admin/sql/updates/mysql/4.4.0-2023-09-13.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-03-05.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-05-15.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-07-19.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-07-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2018-08-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-03-09.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-03-30.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-04-15.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-04-22.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-05-20.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-06-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-07-13.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-09-13.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-09-22.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-10-06.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2019-10-17.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-02-02.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-03-10.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-03-25.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-05-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-08-01.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-09-27.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2020-12-20.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-04-22.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-04-27.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-05-30.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-06-04.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-08-13.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.0-2021-08-17.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.3-2021-09-04.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.3-2021-09-05.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.0.6-2021-12-23.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2021-11-20.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2021-11-28.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2021-12-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2022-01-08.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2022-01-19.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.0-2022-01-24.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.1-2022-02-20.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.3-2022-04-07.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.1.3-2022-04-08.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.0-2022-05-15.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.0-2022-06-19.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.0-2022-06-22.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.0-2022-07-07.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.1-2022-08-23.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.3-2022-09-07.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.7-2022-12-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.2.9-2023-03-07.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2022-09-23.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2022-11-06.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-01-30.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-02-15.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-02-25.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-03-07.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-03-09.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-03-10.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-03-28.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.0-2023-03-29.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.2-2023-03-31.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.2-2023-05-03.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.3.2-2023-05-20.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.4.0-2023-05-08.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.4.0-2023-09-13.sql', - '/libraries/src/Schema/ChangeItem/SqlsrvChangeItem.php', - '/libraries/vendor/beberlei/assert/lib/Assert/Assert.php', - '/libraries/vendor/beberlei/assert/lib/Assert/Assertion.php', - '/libraries/vendor/beberlei/assert/lib/Assert/AssertionChain.php', - '/libraries/vendor/beberlei/assert/lib/Assert/AssertionFailedException.php', - '/libraries/vendor/beberlei/assert/lib/Assert/functions.php', - '/libraries/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php', - '/libraries/vendor/beberlei/assert/lib/Assert/LazyAssertion.php', - '/libraries/vendor/beberlei/assert/lib/Assert/LazyAssertionException.php', - '/libraries/vendor/beberlei/assert/LICENSE', - '/libraries/vendor/google/recaptcha/ARCHITECTURE.md', - '/libraries/vendor/jfcherng/php-color-output/src/helpers.php', - '/libraries/vendor/joomla/ldap/LICENSE', - '/libraries/vendor/joomla/ldap/src/LdapClient.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/config/replacements.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/COPYRIGHT.md', - '/libraries/vendor/laminas/laminas-zendframework-bridge/LICENSE.md', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/autoload.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/Autoloader.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/ConfigPostProcessor.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/Module.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/Replacements.php', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src/RewriteRules.php', - '/libraries/vendor/lcobucci/jwt/compat/class-aliases.php', - '/libraries/vendor/lcobucci/jwt/compat/json-exception-polyfill.php', - '/libraries/vendor/lcobucci/jwt/compat/lcobucci-clock-polyfill.php', - '/libraries/vendor/lcobucci/jwt/src/Claim.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/Basic.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/EqualsTo.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/Factory.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/GreaterOrEqualsTo.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/LesserOrEqualsTo.php', - '/libraries/vendor/lcobucci/jwt/src/Claim/Validatable.php', - '/libraries/vendor/lcobucci/jwt/src/Parsing/Decoder.php', - '/libraries/vendor/lcobucci/jwt/src/Parsing/Encoder.php', - '/libraries/vendor/lcobucci/jwt/src/Signature.php', - '/libraries/vendor/lcobucci/jwt/src/Signer/BaseSigner.php', - '/libraries/vendor/lcobucci/jwt/src/Signer/Keychain.php', - '/libraries/vendor/lcobucci/jwt/src/ValidationData.php', - '/libraries/vendor/nyholm/psr7/LICENSE', - '/libraries/vendor/nyholm/psr7/phpstan-baseline.neon', - '/libraries/vendor/nyholm/psr7/psalm.baseline.xml', - '/libraries/vendor/nyholm/psr7/src/Factory/HttplugFactory.php', - '/libraries/vendor/nyholm/psr7/src/Factory/Psr17Factory.php', - '/libraries/vendor/nyholm/psr7/src/MessageTrait.php', - '/libraries/vendor/nyholm/psr7/src/Request.php', - '/libraries/vendor/nyholm/psr7/src/RequestTrait.php', - '/libraries/vendor/nyholm/psr7/src/Response.php', - '/libraries/vendor/nyholm/psr7/src/ServerRequest.php', - '/libraries/vendor/nyholm/psr7/src/Stream.php', - '/libraries/vendor/nyholm/psr7/src/StreamTrait.php', - '/libraries/vendor/nyholm/psr7/src/UploadedFile.php', - '/libraries/vendor/nyholm/psr7/src/Uri.php', - '/libraries/vendor/psr/log/Psr/Log/AbstractLogger.php', - '/libraries/vendor/psr/log/Psr/Log/InvalidArgumentException.php', - '/libraries/vendor/psr/log/Psr/Log/LoggerAwareInterface.php', - '/libraries/vendor/psr/log/Psr/Log/LoggerAwareTrait.php', - '/libraries/vendor/psr/log/Psr/Log/LoggerInterface.php', - '/libraries/vendor/psr/log/Psr/Log/LoggerTrait.php', - '/libraries/vendor/psr/log/Psr/Log/LogLevel.php', - '/libraries/vendor/psr/log/Psr/Log/NullLogger.php', - '/libraries/vendor/ramsey/uuid/LICENSE', - '/libraries/vendor/ramsey/uuid/src/BinaryUtils.php', - '/libraries/vendor/ramsey/uuid/src/Builder/DefaultUuidBuilder.php', - '/libraries/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php', - '/libraries/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php', - '/libraries/vendor/ramsey/uuid/src/Codec/CodecInterface.php', - '/libraries/vendor/ramsey/uuid/src/Codec/GuidStringCodec.php', - '/libraries/vendor/ramsey/uuid/src/Codec/OrderedTimeCodec.php', - '/libraries/vendor/ramsey/uuid/src/Codec/StringCodec.php', - '/libraries/vendor/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php', - '/libraries/vendor/ramsey/uuid/src/Codec/TimestampLastCombCodec.php', - '/libraries/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php', - '/libraries/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php', - '/libraries/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php', - '/libraries/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php', - '/libraries/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php', - '/libraries/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php', - '/libraries/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php', - '/libraries/vendor/ramsey/uuid/src/DegradedUuid.php', - '/libraries/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php', - '/libraries/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php', - '/libraries/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php', - '/libraries/vendor/ramsey/uuid/src/FeatureSet.php', - '/libraries/vendor/ramsey/uuid/src/functions.php', - '/libraries/vendor/ramsey/uuid/src/Generator/CombGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php', - '/libraries/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php', - '/libraries/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php', - '/libraries/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php', - '/libraries/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php', - '/libraries/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php', - '/libraries/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php', - '/libraries/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php', - '/libraries/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php', - '/libraries/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php', - '/libraries/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php', - '/libraries/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php', - '/libraries/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php', - '/libraries/vendor/ramsey/uuid/src/Uuid.php', - '/libraries/vendor/ramsey/uuid/src/UuidFactory.php', - '/libraries/vendor/ramsey/uuid/src/UuidFactoryInterface.php', - '/libraries/vendor/ramsey/uuid/src/UuidInterface.php', - '/libraries/vendor/spomky-labs/base64url/LICENSE', - '/libraries/vendor/spomky-labs/base64url/src/Base64Url.php', - '/libraries/vendor/spomky-labs/cbor-php/src/ByteStringWithChunkObject.php', - '/libraries/vendor/spomky-labs/cbor-php/src/InfiniteListObject.php', - '/libraries/vendor/spomky-labs/cbor-php/src/InfiniteMapObject.php', - '/libraries/vendor/spomky-labs/cbor-php/src/SignedIntegerObject.php', - '/libraries/vendor/spomky-labs/cbor-php/src/Tag/EpochTag.php', - '/libraries/vendor/spomky-labs/cbor-php/src/Tag/PositiveBigIntegerTag.php', - '/libraries/vendor/spomky-labs/cbor-php/src/Tag/TagObjectManager.php', - '/libraries/vendor/spomky-labs/cbor-php/src/TagObject.php', - '/libraries/vendor/spomky-labs/cbor-php/src/TextStringWithChunkObject.php', - '/libraries/vendor/symfony/polyfill-php72/bootstrap.php', - '/libraries/vendor/symfony/polyfill-php72/LICENSE', - '/libraries/vendor/symfony/polyfill-php72/Php72.php', - '/libraries/vendor/symfony/polyfill-php73/bootstrap.php', - '/libraries/vendor/symfony/polyfill-php73/LICENSE', - '/libraries/vendor/symfony/polyfill-php73/Php73.php', - '/libraries/vendor/symfony/polyfill-php73/Resources/stubs/JsonException.php', - '/libraries/vendor/symfony/polyfill-php80/bootstrap.php', - '/libraries/vendor/symfony/polyfill-php80/LICENSE', - '/libraries/vendor/symfony/polyfill-php80/Php80.php', - '/libraries/vendor/symfony/polyfill-php80/PhpToken.php', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php', - '/libraries/vendor/symfony/polyfill-php81/bootstrap.php', - '/libraries/vendor/symfony/polyfill-php81/LICENSE', - '/libraries/vendor/symfony/polyfill-php81/Php81.php', - '/libraries/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php', - '/libraries/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php', - '/libraries/vendor/web-auth/cose-lib/src/Verifier.php', - '/libraries/vendor/web-auth/metadata-service/src/AuthenticatorStatus.php', - '/libraries/vendor/web-auth/metadata-service/src/BiometricAccuracyDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/BiometricStatusReport.php', - '/libraries/vendor/web-auth/metadata-service/src/CodeAccuracyDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/DisplayPNGCharacteristicsDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/DistantSingleMetadata.php', - '/libraries/vendor/web-auth/metadata-service/src/DistantSingleMetadataFactory.php', - '/libraries/vendor/web-auth/metadata-service/src/EcdaaTrustAnchor.php', - '/libraries/vendor/web-auth/metadata-service/src/ExtensionDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataService.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataServiceFactory.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataStatement.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataStatementFetcher.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataTOCPayload.php', - '/libraries/vendor/web-auth/metadata-service/src/MetadataTOCPayloadEntry.php', - '/libraries/vendor/web-auth/metadata-service/src/PatternAccuracyDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/RgbPaletteEntry.php', - '/libraries/vendor/web-auth/metadata-service/src/RogueListEntry.php', - '/libraries/vendor/web-auth/metadata-service/src/SimpleMetadataStatementRepository.php', - '/libraries/vendor/web-auth/metadata-service/src/SingleMetadata.php', - '/libraries/vendor/web-auth/metadata-service/src/StatusReport.php', - '/libraries/vendor/web-auth/metadata-service/src/VerificationMethodANDCombinations.php', - '/libraries/vendor/web-auth/metadata-service/src/VerificationMethodDescriptor.php', - '/libraries/vendor/web-auth/metadata-service/src/Version.php', - '/libraries/vendor/web-auth/webauthn-lib/src/Server.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RSA.php', - '/media/com_templates/js/admin-template-compare-es5.js', - '/media/com_templates/js/admin-template-compare-es5.min.js', - '/media/com_templates/js/admin-template-compare-es5.min.js.gz', - '/media/com_templates/js/admin-template-compare.js', - '/media/com_templates/js/admin-template-compare.min.js', - '/media/com_templates/js/admin-template-compare.min.js.gz', - '/media/com_users/js/admin-users-mail-es5.js', - '/media/com_users/js/admin-users-mail-es5.min.js', - '/media/com_users/js/admin-users-mail-es5.min.js.gz', - '/media/com_users/js/admin-users-mail.js', - '/media/com_users/js/admin-users-mail.min.js', - '/media/com_users/js/admin-users-mail.min.js.gz', - '/media/vendor/fontawesome-free/scss/_larger.scss', - '/media/vendor/fontawesome-free/webfonts/fa-brands-400.eot', - '/media/vendor/fontawesome-free/webfonts/fa-brands-400.svg', - '/media/vendor/fontawesome-free/webfonts/fa-brands-400.woff', - '/media/vendor/fontawesome-free/webfonts/fa-regular-400.eot', - '/media/vendor/fontawesome-free/webfonts/fa-regular-400.svg', - '/media/vendor/fontawesome-free/webfonts/fa-regular-400.woff', - '/media/vendor/fontawesome-free/webfonts/fa-solid-900.eot', - '/media/vendor/fontawesome-free/webfonts/fa-solid-900.svg', - '/media/vendor/fontawesome-free/webfonts/fa-solid-900.woff', - '/media/vendor/tinymce/plugins/bbcode/index.js', - '/media/vendor/tinymce/plugins/bbcode/plugin.js', - '/media/vendor/tinymce/plugins/bbcode/plugin.min.js', - '/media/vendor/tinymce/plugins/bbcode/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/colorpicker/index.js', - '/media/vendor/tinymce/plugins/colorpicker/plugin.js', - '/media/vendor/tinymce/plugins/colorpicker/plugin.min.js', - '/media/vendor/tinymce/plugins/colorpicker/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/contextmenu/index.js', - '/media/vendor/tinymce/plugins/contextmenu/plugin.js', - '/media/vendor/tinymce/plugins/contextmenu/plugin.min.js', - '/media/vendor/tinymce/plugins/contextmenu/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/fullpage/index.js', - '/media/vendor/tinymce/plugins/fullpage/plugin.js', - '/media/vendor/tinymce/plugins/fullpage/plugin.min.js', - '/media/vendor/tinymce/plugins/fullpage/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/hr/index.js', - '/media/vendor/tinymce/plugins/hr/plugin.js', - '/media/vendor/tinymce/plugins/hr/plugin.min.js', - '/media/vendor/tinymce/plugins/hr/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/imagetools/index.js', - '/media/vendor/tinymce/plugins/imagetools/plugin.js', - '/media/vendor/tinymce/plugins/imagetools/plugin.min.js', - '/media/vendor/tinymce/plugins/imagetools/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/legacyoutput/index.js', - '/media/vendor/tinymce/plugins/legacyoutput/plugin.js', - '/media/vendor/tinymce/plugins/legacyoutput/plugin.min.js', - '/media/vendor/tinymce/plugins/legacyoutput/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/noneditable/index.js', - '/media/vendor/tinymce/plugins/noneditable/plugin.js', - '/media/vendor/tinymce/plugins/noneditable/plugin.min.js', - '/media/vendor/tinymce/plugins/noneditable/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/paste/index.js', - '/media/vendor/tinymce/plugins/paste/plugin.js', - '/media/vendor/tinymce/plugins/paste/plugin.min.js', - '/media/vendor/tinymce/plugins/paste/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/print/index.js', - '/media/vendor/tinymce/plugins/print/plugin.js', - '/media/vendor/tinymce/plugins/print/plugin.min.js', - '/media/vendor/tinymce/plugins/print/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/spellchecker/index.js', - '/media/vendor/tinymce/plugins/spellchecker/plugin.js', - '/media/vendor/tinymce/plugins/spellchecker/plugin.min.js', - '/media/vendor/tinymce/plugins/spellchecker/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/tabfocus/index.js', - '/media/vendor/tinymce/plugins/tabfocus/plugin.js', - '/media/vendor/tinymce/plugins/tabfocus/plugin.min.js', - '/media/vendor/tinymce/plugins/tabfocus/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/template/index.js', - '/media/vendor/tinymce/plugins/template/plugin.js', - '/media/vendor/tinymce/plugins/template/plugin.min.js', - '/media/vendor/tinymce/plugins/template/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/textcolor/index.js', - '/media/vendor/tinymce/plugins/textcolor/plugin.js', - '/media/vendor/tinymce/plugins/textcolor/plugin.min.js', - '/media/vendor/tinymce/plugins/textcolor/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/textpattern/index.js', - '/media/vendor/tinymce/plugins/textpattern/plugin.js', - '/media/vendor/tinymce/plugins/textpattern/plugin.min.js', - '/media/vendor/tinymce/plugins/textpattern/plugin.min.js.gz', - '/media/vendor/tinymce/plugins/toc/index.js', - '/media/vendor/tinymce/plugins/toc/plugin.js', - '/media/vendor/tinymce/plugins/toc/plugin.min.js', - '/media/vendor/tinymce/plugins/toc/plugin.min.js.gz', - '/media/vendor/tinymce/skins/ui/oxide-dark/content.mobile.css', - '/media/vendor/tinymce/skins/ui/oxide-dark/content.mobile.min.css', - '/media/vendor/tinymce/skins/ui/oxide-dark/content.mobile.min.css.gz', - '/media/vendor/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff', - '/media/vendor/tinymce/skins/ui/oxide-dark/skin.mobile.css', - '/media/vendor/tinymce/skins/ui/oxide-dark/skin.mobile.min.css', - '/media/vendor/tinymce/skins/ui/oxide-dark/skin.mobile.min.css.gz', - '/media/vendor/tinymce/skins/ui/oxide/content.mobile.css', - '/media/vendor/tinymce/skins/ui/oxide/content.mobile.min.css', - '/media/vendor/tinymce/skins/ui/oxide/content.mobile.min.css.gz', - '/media/vendor/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff', - '/media/vendor/tinymce/skins/ui/oxide/skin.mobile.css', - '/media/vendor/tinymce/skins/ui/oxide/skin.mobile.min.css', - '/media/vendor/tinymce/skins/ui/oxide/skin.mobile.min.css.gz', - '/media/vendor/tinymce/themes/mobile/index.js', - '/media/vendor/tinymce/themes/mobile/theme.js', - '/media/vendor/tinymce/themes/mobile/theme.min.js', - '/media/vendor/tinymce/themes/mobile/theme.min.js.gz', - '/plugins/multifactorauth/webauthn/src/Hotfix/AndroidKeyAttestationStatementSupport.php', - '/plugins/multifactorauth/webauthn/src/Hotfix/FidoU2FAttestationStatementSupport.php', - '/plugins/multifactorauth/webauthn/src/Hotfix/Server.php', - '/plugins/system/webauthn/src/Hotfix/AndroidKeyAttestationStatementSupport.php', - '/plugins/system/webauthn/src/Hotfix/FidoU2FAttestationStatementSupport.php', - '/plugins/system/webauthn/src/Hotfix/Server.php', - // From 5.0.0-alpha1 to 5.0.0-alpha2 - '/libraries/vendor/jfcherng/php-diff/src/languages/readme.txt', - '/media/com_actionlogs/js/admin-actionlogs-default-es5.js', - '/media/com_actionlogs/js/admin-actionlogs-default-es5.min.js', - '/media/com_actionlogs/js/admin-actionlogs-default-es5.min.js.gz', - '/media/com_admin/js/admin-help-es5.js', - '/media/com_admin/js/admin-help-es5.min.js', - '/media/com_admin/js/admin-help-es5.min.js.gz', - '/media/com_associations/js/admin-associations-default-es5.js', - '/media/com_associations/js/admin-associations-default-es5.min.js', - '/media/com_associations/js/admin-associations-default-es5.min.js.gz', - '/media/com_associations/js/admin-associations-modal-es5.js', - '/media/com_associations/js/admin-associations-modal-es5.min.js', - '/media/com_associations/js/admin-associations-modal-es5.min.js.gz', - '/media/com_associations/js/associations-edit-es5.js', - '/media/com_associations/js/associations-edit-es5.min.js', - '/media/com_associations/js/associations-edit-es5.min.js.gz', - '/media/com_banners/js/admin-banner-edit-es5.js', - '/media/com_banners/js/admin-banner-edit-es5.min.js', - '/media/com_banners/js/admin-banner-edit-es5.min.js.gz', - '/media/com_cache/js/admin-cache-default-es5.js', - '/media/com_cache/js/admin-cache-default-es5.min.js', - '/media/com_cache/js/admin-cache-default-es5.min.js.gz', - '/media/com_categories/js/shared-categories-accordion-es5.js', - '/media/com_categories/js/shared-categories-accordion-es5.min.js', - '/media/com_categories/js/shared-categories-accordion-es5.min.js.gz', - '/media/com_config/js/config-default-es5.js', - '/media/com_config/js/config-default-es5.min.js', - '/media/com_config/js/config-default-es5.min.js.gz', - '/media/com_config/js/config-filters-es5.js', - '/media/com_config/js/config-filters-es5.min.js', - '/media/com_config/js/config-filters-es5.min.js.gz', - '/media/com_config/js/modules-default-es5.js', - '/media/com_config/js/modules-default-es5.min.js', - '/media/com_config/js/modules-default-es5.min.js.gz', - '/media/com_config/js/templates-default-es5.js', - '/media/com_config/js/templates-default-es5.min.js', - '/media/com_config/js/templates-default-es5.min.js.gz', - '/media/com_contact/js/admin-contacts-modal-es5.js', - '/media/com_contact/js/admin-contacts-modal-es5.min.js', - '/media/com_contact/js/admin-contacts-modal-es5.min.js.gz', - '/media/com_contact/js/contacts-list-es5.js', - '/media/com_contact/js/contacts-list-es5.min.js', - '/media/com_contact/js/contacts-list-es5.min.js.gz', - '/media/com_content/js/admin-article-pagebreak-es5.js', - '/media/com_content/js/admin-article-pagebreak-es5.min.js', - '/media/com_content/js/admin-article-pagebreak-es5.min.js.gz', - '/media/com_content/js/admin-article-readmore-es5.js', - '/media/com_content/js/admin-article-readmore-es5.min.js', - '/media/com_content/js/admin-article-readmore-es5.min.js.gz', - '/media/com_content/js/admin-articles-default-batch-footer-es5.js', - '/media/com_content/js/admin-articles-default-batch-footer-es5.min.js', - '/media/com_content/js/admin-articles-default-batch-footer-es5.min.js.gz', - '/media/com_content/js/admin-articles-default-stage-footer-es5.js', - '/media/com_content/js/admin-articles-default-stage-footer-es5.min.js', - '/media/com_content/js/admin-articles-default-stage-footer-es5.min.js.gz', - '/media/com_content/js/admin-articles-modal-es5.js', - '/media/com_content/js/admin-articles-modal-es5.min.js', - '/media/com_content/js/admin-articles-modal-es5.min.js.gz', - '/media/com_content/js/articles-list-es5.js', - '/media/com_content/js/articles-list-es5.min.js', - '/media/com_content/js/articles-list-es5.min.js.gz', - '/media/com_content/js/articles-status-es5.js', - '/media/com_content/js/articles-status-es5.min.js', - '/media/com_content/js/articles-status-es5.min.js.gz', - '/media/com_content/js/form-edit-es5.js', - '/media/com_content/js/form-edit-es5.min.js', - '/media/com_content/js/form-edit-es5.min.js.gz', - '/media/com_contenthistory/js/admin-compare-compare-es5.js', - '/media/com_contenthistory/js/admin-compare-compare-es5.min.js', - '/media/com_contenthistory/js/admin-compare-compare-es5.min.js.gz', - '/media/com_contenthistory/js/admin-history-modal-es5.js', - '/media/com_contenthistory/js/admin-history-modal-es5.min.js', - '/media/com_contenthistory/js/admin-history-modal-es5.min.js.gz', - '/media/com_contenthistory/js/admin-history-versions-es5.js', - '/media/com_contenthistory/js/admin-history-versions-es5.min.js', - '/media/com_contenthistory/js/admin-history-versions-es5.min.js.gz', - '/media/com_cpanel/js/admin-add_module-es5.js', - '/media/com_cpanel/js/admin-add_module-es5.min.js', - '/media/com_cpanel/js/admin-add_module-es5.min.js.gz', - '/media/com_cpanel/js/admin-cpanel-default-es5.js', - '/media/com_cpanel/js/admin-cpanel-default-es5.min.js', - '/media/com_cpanel/js/admin-cpanel-default-es5.min.js.gz', - '/media/com_cpanel/js/admin-system-loader-es5.js', - '/media/com_cpanel/js/admin-system-loader-es5.min.js', - '/media/com_cpanel/js/admin-system-loader-es5.min.js.gz', - '/media/com_fields/js/admin-field-changecontext-es5.js', - '/media/com_fields/js/admin-field-changecontext-es5.min.js', - '/media/com_fields/js/admin-field-changecontext-es5.min.js.gz', - '/media/com_fields/js/admin-field-edit-es5.js', - '/media/com_fields/js/admin-field-edit-es5.min.js', - '/media/com_fields/js/admin-field-edit-es5.min.js.gz', - '/media/com_fields/js/admin-field-typehaschanged-es5.js', - '/media/com_fields/js/admin-field-typehaschanged-es5.min.js', - '/media/com_fields/js/admin-field-typehaschanged-es5.min.js.gz', - '/media/com_fields/js/admin-fields-default-batch-es5.js', - '/media/com_fields/js/admin-fields-default-batch-es5.min.js', - '/media/com_fields/js/admin-fields-default-batch-es5.min.js.gz', - '/media/com_fields/js/admin-fields-modal-es5.js', - '/media/com_fields/js/admin-fields-modal-es5.min.js', - '/media/com_fields/js/admin-fields-modal-es5.min.js.gz', - '/media/com_finder/js/debug-es5.js', - '/media/com_finder/js/debug-es5.min.js', - '/media/com_finder/js/debug-es5.min.js.gz', - '/media/com_finder/js/filters-es5.js', - '/media/com_finder/js/filters-es5.min.js', - '/media/com_finder/js/filters-es5.min.js.gz', - '/media/com_finder/js/finder-edit-es5.js', - '/media/com_finder/js/finder-edit-es5.min.js', - '/media/com_finder/js/finder-edit-es5.min.js.gz', - '/media/com_finder/js/finder-es5.js', - '/media/com_finder/js/finder-es5.min.js', - '/media/com_finder/js/finder-es5.min.js.gz', - '/media/com_finder/js/indexer-es5.js', - '/media/com_finder/js/indexer-es5.min.js', - '/media/com_finder/js/indexer-es5.min.js.gz', - '/media/com_finder/js/maps-es5.js', - '/media/com_finder/js/maps-es5.min.js', - '/media/com_finder/js/maps-es5.min.js.gz', - '/media/com_installer/js/changelog-es5.js', - '/media/com_installer/js/changelog-es5.min.js', - '/media/com_installer/js/changelog-es5.min.js.gz', - '/media/com_installer/js/installer-es5.js', - '/media/com_installer/js/installer-es5.min.js', - '/media/com_installer/js/installer-es5.min.js.gz', - '/media/com_joomlaupdate/js/admin-update-default-es5.js', - '/media/com_joomlaupdate/js/admin-update-default-es5.min.js', - '/media/com_joomlaupdate/js/admin-update-default-es5.min.js.gz', - '/media/com_joomlaupdate/js/default-es5.js', - '/media/com_joomlaupdate/js/default-es5.min.js', - '/media/com_joomlaupdate/js/default-es5.min.js.gz', - '/media/com_languages/js/admin-language-edit-change-flag-es5.js', - '/media/com_languages/js/admin-language-edit-change-flag-es5.min.js', - '/media/com_languages/js/admin-language-edit-change-flag-es5.min.js.gz', - '/media/com_languages/js/admin-override-edit-refresh-searchstring-es5.js', - '/media/com_languages/js/admin-override-edit-refresh-searchstring-es5.min.js', - '/media/com_languages/js/admin-override-edit-refresh-searchstring-es5.min.js.gz', - '/media/com_languages/js/overrider-es5.js', - '/media/com_languages/js/overrider-es5.min.js', - '/media/com_languages/js/overrider-es5.min.js.gz', - '/media/com_mails/js/admin-email-template-edit-es5.js', - '/media/com_mails/js/admin-email-template-edit-es5.min.js', - '/media/com_mails/js/admin-email-template-edit-es5.min.js.gz', - '/media/com_media/js/edit-images-es5.js', - '/media/com_media/js/edit-images-es5.min.js', - '/media/com_media/js/edit-images-es5.min.js.gz', - '/media/com_media/js/media-manager-es5.js', - '/media/com_media/js/media-manager-es5.min.js', - '/media/com_media/js/media-manager-es5.min.js.gz', - '/media/com_menus/js/admin-item-edit-es5.js', - '/media/com_menus/js/admin-item-edit-es5.min.js', - '/media/com_menus/js/admin-item-edit-es5.min.js.gz', - '/media/com_menus/js/admin-item-edit_container-es5.js', - '/media/com_menus/js/admin-item-edit_container-es5.min.js', - '/media/com_menus/js/admin-item-edit_container-es5.min.js.gz', - '/media/com_menus/js/admin-item-edit_modules-es5.js', - '/media/com_menus/js/admin-item-edit_modules-es5.min.js', - '/media/com_menus/js/admin-item-edit_modules-es5.min.js.gz', - '/media/com_menus/js/admin-item-modal-es5.js', - '/media/com_menus/js/admin-item-modal-es5.min.js', - '/media/com_menus/js/admin-item-modal-es5.min.js.gz', - '/media/com_menus/js/admin-items-modal-es5.js', - '/media/com_menus/js/admin-items-modal-es5.min.js', - '/media/com_menus/js/admin-items-modal-es5.min.js.gz', - '/media/com_menus/js/admin-menus-default-es5.js', - '/media/com_menus/js/admin-menus-default-es5.min.js', - '/media/com_menus/js/admin-menus-default-es5.min.js.gz', - '/media/com_menus/js/default-batch-body-es5.js', - '/media/com_menus/js/default-batch-body-es5.min.js', - '/media/com_menus/js/default-batch-body-es5.min.js.gz', - '/media/com_modules/js/admin-module-edit-es5.js', - '/media/com_modules/js/admin-module-edit-es5.min.js', - '/media/com_modules/js/admin-module-edit-es5.min.js.gz', - '/media/com_modules/js/admin-module-edit_assignment-es5.js', - '/media/com_modules/js/admin-module-edit_assignment-es5.min.js', - '/media/com_modules/js/admin-module-edit_assignment-es5.min.js.gz', - '/media/com_modules/js/admin-module-search-es5.js', - '/media/com_modules/js/admin-module-search-es5.min.js', - '/media/com_modules/js/admin-module-search-es5.min.js.gz', - '/media/com_modules/js/admin-modules-modal-es5.js', - '/media/com_modules/js/admin-modules-modal-es5.min.js', - '/media/com_modules/js/admin-modules-modal-es5.min.js.gz', - '/media/com_modules/js/admin-select-modal-es5.js', - '/media/com_modules/js/admin-select-modal-es5.min.js', - '/media/com_modules/js/admin-select-modal-es5.min.js.gz', - '/media/com_scheduler/js/admin-view-run-test-task-es5.js', - '/media/com_scheduler/js/admin-view-run-test-task-es5.min.js', - '/media/com_scheduler/js/admin-view-run-test-task-es5.min.js.gz', - '/media/com_scheduler/js/admin-view-select-task-search-es5.js', - '/media/com_scheduler/js/admin-view-select-task-search-es5.min.js', - '/media/com_scheduler/js/admin-view-select-task-search-es5.min.js.gz', - '/media/com_scheduler/js/scheduler-config-es5.js', - '/media/com_scheduler/js/scheduler-config-es5.min.js', - '/media/com_scheduler/js/scheduler-config-es5.min.js.gz', - '/media/com_tags/js/tag-default-es5.js', - '/media/com_tags/js/tag-default-es5.min.js', - '/media/com_tags/js/tag-default-es5.min.js.gz', - '/media/com_tags/js/tag-list-es5.js', - '/media/com_tags/js/tag-list-es5.min.js', - '/media/com_tags/js/tag-list-es5.min.js.gz', - '/media/com_tags/js/tags-default-es5.js', - '/media/com_tags/js/tags-default-es5.min.js', - '/media/com_tags/js/tags-default-es5.min.js.gz', - '/media/com_templates/js/admin-template-compare-es5.js', - '/media/com_templates/js/admin-template-compare-es5.min.js', - '/media/com_templates/js/admin-template-compare-es5.min.js.gz', - '/media/com_templates/js/admin-template-toggle-assignment-es5.js', - '/media/com_templates/js/admin-template-toggle-assignment-es5.min.js', - '/media/com_templates/js/admin-template-toggle-assignment-es5.min.js.gz', - '/media/com_templates/js/admin-template-toggle-switch-es5.js', - '/media/com_templates/js/admin-template-toggle-switch-es5.min.js', - '/media/com_templates/js/admin-template-toggle-switch-es5.min.js.gz', - '/media/com_templates/js/admin-templates-default-es5.js', - '/media/com_templates/js/admin-templates-default-es5.min.js', - '/media/com_templates/js/admin-templates-default-es5.min.js.gz', - '/media/com_users/js/admin-users-groups-es5.js', - '/media/com_users/js/admin-users-groups-es5.min.js', - '/media/com_users/js/admin-users-groups-es5.min.js.gz', - '/media/com_users/js/admin-users-mail-es5.js', - '/media/com_users/js/admin-users-mail-es5.min.js', - '/media/com_users/js/admin-users-mail-es5.min.js.gz', - '/media/com_users/js/two-factor-focus-es5.js', - '/media/com_users/js/two-factor-focus-es5.min.js', - '/media/com_users/js/two-factor-focus-es5.min.js.gz', - '/media/com_users/js/two-factor-list-es5.js', - '/media/com_users/js/two-factor-list-es5.min.js', - '/media/com_users/js/two-factor-list-es5.min.js.gz', - '/media/com_workflow/js/admin-items-workflow-buttons-es5.js', - '/media/com_workflow/js/admin-items-workflow-buttons-es5.min.js', - '/media/com_workflow/js/admin-items-workflow-buttons-es5.min.js.gz', - '/media/com_wrapper/js/iframe-height-es5.js', - '/media/com_wrapper/js/iframe-height-es5.min.js', - '/media/com_wrapper/js/iframe-height-es5.min.js.gz', - '/media/layouts/js/joomla/form/field/category-change-es5.js', - '/media/layouts/js/joomla/form/field/category-change-es5.min.js', - '/media/layouts/js/joomla/form/field/category-change-es5.min.js.gz', - '/media/layouts/js/joomla/html/batch/batch-copymove-es5.js', - '/media/layouts/js/joomla/html/batch/batch-copymove-es5.min.js', - '/media/layouts/js/joomla/html/batch/batch-copymove-es5.min.js.gz', - '/media/mod_login/js/admin-login-es5.js', - '/media/mod_login/js/admin-login-es5.min.js', - '/media/mod_login/js/admin-login-es5.min.js.gz', - '/media/mod_menu/js/admin-menu-es5.js', - '/media/mod_menu/js/admin-menu-es5.min.js', - '/media/mod_menu/js/admin-menu-es5.min.js.gz', - '/media/mod_menu/js/menu-es5.js', - '/media/mod_menu/js/menu-es5.min.js', - '/media/mod_menu/js/menu-es5.min.js.gz', - '/media/mod_multilangstatus/js/admin-multilangstatus-es5.js', - '/media/mod_multilangstatus/js/admin-multilangstatus-es5.min.js', - '/media/mod_multilangstatus/js/admin-multilangstatus-es5.min.js.gz', - '/media/mod_quickicon/js/quickicon-es5.js', - '/media/mod_quickicon/js/quickicon-es5.min.js', - '/media/mod_quickicon/js/quickicon-es5.min.js.gz', - '/media/mod_sampledata/js/sampledata-process-es5.js', - '/media/mod_sampledata/js/sampledata-process-es5.min.js', - '/media/mod_sampledata/js/sampledata-process-es5.min.js.gz', - '/media/plg_captcha_recaptcha/js/recaptcha-es5.js', - '/media/plg_captcha_recaptcha/js/recaptcha-es5.min.js', - '/media/plg_captcha_recaptcha/js/recaptcha-es5.min.js.gz', - '/media/plg_captcha_recaptcha_invisible/js/recaptcha-es5.js', - '/media/plg_captcha_recaptcha_invisible/js/recaptcha-es5.min.js', - '/media/plg_captcha_recaptcha_invisible/js/recaptcha-es5.min.js.gz', - '/media/plg_editors_codemirror/js/joomla-editor-codemirror-es5.js', - '/media/plg_editors_codemirror/js/joomla-editor-codemirror-es5.min.js', - '/media/plg_editors_codemirror/js/joomla-editor-codemirror-es5.min.js.gz', - '/media/plg_editors_none/js/joomla-editor-none-es5.js', - '/media/plg_editors_none/js/joomla-editor-none-es5.min.js', - '/media/plg_editors_none/js/joomla-editor-none-es5.min.js.gz', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin-es5.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin-es5.min.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin-es5.min.js.gz', - '/media/plg_editors_tinymce/js/plugins/highlighter/source-es5.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/source-es5.min.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/source-es5.min.js.gz', - '/media/plg_editors_tinymce/js/tinymce-builder-es5.js', - '/media/plg_editors_tinymce/js/tinymce-builder-es5.min.js', - '/media/plg_editors_tinymce/js/tinymce-builder-es5.min.js.gz', - '/media/plg_editors_tinymce/js/tinymce-es5.js', - '/media/plg_editors_tinymce/js/tinymce-es5.min.js', - '/media/plg_editors_tinymce/js/tinymce-es5.min.js.gz', - '/media/plg_installer_folderinstaller/js/folderinstaller-es5.js', - '/media/plg_installer_folderinstaller/js/folderinstaller-es5.min.js', - '/media/plg_installer_folderinstaller/js/folderinstaller-es5.min.js.gz', - '/media/plg_installer_packageinstaller/js/packageinstaller-es5.js', - '/media/plg_installer_packageinstaller/js/packageinstaller-es5.min.js', - '/media/plg_installer_packageinstaller/js/packageinstaller-es5.min.js.gz', - '/media/plg_installer_urlinstaller/js/urlinstaller-es5.js', - '/media/plg_installer_urlinstaller/js/urlinstaller-es5.min.js', - '/media/plg_installer_urlinstaller/js/urlinstaller-es5.min.js.gz', - '/media/plg_installer_webinstaller/js/client-es5.js', - '/media/plg_installer_webinstaller/js/client-es5.min.js', - '/media/plg_installer_webinstaller/js/client-es5.min.js.gz', - '/media/plg_media-action_crop/js/crop-es5.js', - '/media/plg_media-action_crop/js/crop-es5.min.js', - '/media/plg_media-action_crop/js/crop-es5.min.js.gz', - '/media/plg_media-action_resize/js/resize-es5.js', - '/media/plg_media-action_resize/js/resize-es5.min.js', - '/media/plg_media-action_resize/js/resize-es5.min.js.gz', - '/media/plg_media-action_rotate/js/rotate-es5.js', - '/media/plg_media-action_rotate/js/rotate-es5.min.js', - '/media/plg_media-action_rotate/js/rotate-es5.min.js.gz', - '/media/plg_multifactorauth_totp/js/setup-es5.js', - '/media/plg_multifactorauth_totp/js/setup-es5.min.js', - '/media/plg_multifactorauth_totp/js/setup-es5.min.js.gz', - '/media/plg_multifactorauth_webauthn/js/webauthn-es5.js', - '/media/plg_multifactorauth_webauthn/js/webauthn-es5.min.js', - '/media/plg_multifactorauth_webauthn/js/webauthn-es5.min.js.gz', - '/media/plg_quickicon_eos/js/snooze-es5.js', - '/media/plg_quickicon_eos/js/snooze-es5.min.js', - '/media/plg_quickicon_eos/js/snooze-es5.min.js.gz', - '/media/plg_quickicon_extensionupdate/js/extensionupdatecheck-es5.js', - '/media/plg_quickicon_extensionupdate/js/extensionupdatecheck-es5.min.js', - '/media/plg_quickicon_extensionupdate/js/extensionupdatecheck-es5.min.js.gz', - '/media/plg_quickicon_joomlaupdate/js/jupdatecheck-es5.js', - '/media/plg_quickicon_joomlaupdate/js/jupdatecheck-es5.min.js', - '/media/plg_quickicon_joomlaupdate/js/jupdatecheck-es5.min.js.gz', - '/media/plg_quickicon_overridecheck/js/overridecheck-es5.js', - '/media/plg_quickicon_overridecheck/js/overridecheck-es5.min.js', - '/media/plg_quickicon_overridecheck/js/overridecheck-es5.min.js.gz', - '/media/plg_quickicon_privacycheck/js/privacycheck-es5.js', - '/media/plg_quickicon_privacycheck/js/privacycheck-es5.min.js', - '/media/plg_quickicon_privacycheck/js/privacycheck-es5.min.js.gz', - '/media/plg_system_debug/js/debug-es5.js', - '/media/plg_system_debug/js/debug-es5.min.js', - '/media/plg_system_debug/js/debug-es5.min.js.gz', - '/media/plg_system_guidedtours/js/guidedtours-es5.js', - '/media/plg_system_guidedtours/js/guidedtours-es5.min.js', - '/media/plg_system_guidedtours/js/guidedtours-es5.min.js.gz', - '/media/plg_system_jooa11y/js/jooa11y-es5.js', - '/media/plg_system_jooa11y/js/jooa11y-es5.min.js', - '/media/plg_system_jooa11y/js/jooa11y-es5.min.js.gz', - '/media/plg_system_schedulerunner/js/run-schedule-es5.js', - '/media/plg_system_schedulerunner/js/run-schedule-es5.min.js', - '/media/plg_system_schedulerunner/js/run-schedule-es5.min.js.gz', - '/media/plg_system_shortcut/js/shortcut-es5.js', - '/media/plg_system_shortcut/js/shortcut-es5.min.js', - '/media/plg_system_shortcut/js/shortcut-es5.min.js.gz', - '/media/plg_system_stats/js/stats-es5.js', - '/media/plg_system_stats/js/stats-es5.min.js', - '/media/plg_system_stats/js/stats-es5.min.js.gz', - '/media/plg_system_stats/js/stats-message-es5.js', - '/media/plg_system_stats/js/stats-message-es5.min.js', - '/media/plg_system_stats/js/stats-message-es5.min.js.gz', - '/media/plg_system_webauthn/js/login-es5.js', - '/media/plg_system_webauthn/js/login-es5.min.js', - '/media/plg_system_webauthn/js/login-es5.min.js.gz', - '/media/plg_system_webauthn/js/management-es5.js', - '/media/plg_system_webauthn/js/management-es5.min.js', - '/media/plg_system_webauthn/js/management-es5.min.js.gz', - '/media/plg_user_token/js/token-es5.js', - '/media/plg_user_token/js/token-es5.min.js', - '/media/plg_user_token/js/token-es5.min.js.gz', - '/media/system/js/core-es5.js', - '/media/system/js/core-es5.min.js', - '/media/system/js/core-es5.min.js.gz', - '/media/system/js/draggable-es5.js', - '/media/system/js/draggable-es5.min.js', - '/media/system/js/draggable-es5.min.js.gz', - '/media/system/js/fields/joomla-field-color-slider-es5.js', - '/media/system/js/fields/joomla-field-color-slider-es5.min.js', - '/media/system/js/fields/joomla-field-color-slider-es5.min.js.gz', - '/media/system/js/fields/joomla-field-fancy-select-es5.js', - '/media/system/js/fields/joomla-field-fancy-select-es5.min.js', - '/media/system/js/fields/joomla-field-fancy-select-es5.min.js.gz', - '/media/system/js/fields/joomla-field-media-es5.js', - '/media/system/js/fields/joomla-field-media-es5.min.js', - '/media/system/js/fields/joomla-field-media-es5.min.js.gz', - '/media/system/js/fields/joomla-field-module-order-es5.js', - '/media/system/js/fields/joomla-field-module-order-es5.min.js', - '/media/system/js/fields/joomla-field-module-order-es5.min.js.gz', - '/media/system/js/fields/joomla-field-permissions-es5.js', - '/media/system/js/fields/joomla-field-permissions-es5.min.js', - '/media/system/js/fields/joomla-field-permissions-es5.min.js.gz', - '/media/system/js/fields/joomla-field-send-test-mail-es5.js', - '/media/system/js/fields/joomla-field-send-test-mail-es5.min.js', - '/media/system/js/fields/joomla-field-send-test-mail-es5.min.js.gz', - '/media/system/js/fields/joomla-field-simple-color-es5.js', - '/media/system/js/fields/joomla-field-simple-color-es5.min.js', - '/media/system/js/fields/joomla-field-simple-color-es5.min.js.gz', - '/media/system/js/fields/joomla-field-subform-es5.js', - '/media/system/js/fields/joomla-field-subform-es5.min.js', - '/media/system/js/fields/joomla-field-subform-es5.min.js.gz', - '/media/system/js/fields/joomla-field-user-es5.js', - '/media/system/js/fields/joomla-field-user-es5.min.js', - '/media/system/js/fields/joomla-field-user-es5.min.js.gz', - '/media/system/js/fields/joomla-media-select-es5.js', - '/media/system/js/fields/joomla-media-select-es5.min.js', - '/media/system/js/fields/joomla-media-select-es5.min.js.gz', - '/media/system/js/fields/passwordstrength-es5.js', - '/media/system/js/fields/passwordstrength-es5.min.js', - '/media/system/js/fields/passwordstrength-es5.min.js.gz', - '/media/system/js/fields/passwordview-es5.js', - '/media/system/js/fields/passwordview-es5.min.js', - '/media/system/js/fields/passwordview-es5.min.js.gz', - '/media/system/js/fields/select-colour-es5.js', - '/media/system/js/fields/select-colour-es5.min.js', - '/media/system/js/fields/select-colour-es5.min.js.gz', - '/media/system/js/fields/validate-es5.js', - '/media/system/js/fields/validate-es5.min.js', - '/media/system/js/fields/validate-es5.min.js.gz', - '/media/system/js/highlight-es5.js', - '/media/system/js/highlight-es5.min.js', - '/media/system/js/highlight-es5.min.js.gz', - '/media/system/js/inlinehelp-es5.js', - '/media/system/js/inlinehelp-es5.min.js', - '/media/system/js/inlinehelp-es5.min.js.gz', - '/media/system/js/joomla-core-loader-es5.js', - '/media/system/js/joomla-core-loader-es5.min.js', - '/media/system/js/joomla-core-loader-es5.min.js.gz', - '/media/system/js/joomla-hidden-mail-es5.js', - '/media/system/js/joomla-hidden-mail-es5.min.js', - '/media/system/js/joomla-hidden-mail-es5.min.js.gz', - '/media/system/js/joomla-toolbar-button-es5.js', - '/media/system/js/joomla-toolbar-button-es5.min.js', - '/media/system/js/joomla-toolbar-button-es5.min.js.gz', - '/media/system/js/keepalive-es5.js', - '/media/system/js/keepalive-es5.min.js', - '/media/system/js/keepalive-es5.min.js.gz', - '/media/system/js/list-view-es5.js', - '/media/system/js/list-view-es5.min.js', - '/media/system/js/list-view-es5.min.js.gz', - '/media/system/js/messages-es5.js', - '/media/system/js/messages-es5.min.js', - '/media/system/js/messages-es5.min.js.gz', - '/media/system/js/multiselect-es5.js', - '/media/system/js/multiselect-es5.min.js', - '/media/system/js/multiselect-es5.min.js.gz', - '/media/system/js/searchtools-es5.js', - '/media/system/js/searchtools-es5.min.js', - '/media/system/js/searchtools-es5.min.js.gz', - '/media/system/js/showon-es5.js', - '/media/system/js/showon-es5.min.js', - '/media/system/js/showon-es5.min.js.gz', - '/media/system/js/table-columns-es5.js', - '/media/system/js/table-columns-es5.min.js', - '/media/system/js/table-columns-es5.min.js.gz', - '/media/templates/administrator/atum/js/template-es5.js', - '/media/templates/administrator/atum/js/template-es5.min.js', - '/media/templates/administrator/atum/js/template-es5.min.js.gz', - '/media/templates/site/cassiopeia/js/mod_menu/menu-metismenu-es5.js', - '/media/templates/site/cassiopeia/js/mod_menu/menu-metismenu-es5.min.js', - '/media/templates/site/cassiopeia/js/mod_menu/menu-metismenu-es5.min.js.gz', - '/media/vendor/bootstrap/js/bootstrap-es5.js', - '/media/vendor/bootstrap/js/bootstrap-es5.min.js', - '/media/vendor/bootstrap/js/bootstrap-es5.min.js.gz', - '/media/vendor/joomla-custom-elements/js/joomla-alert-es5.js', - '/media/vendor/joomla-custom-elements/js/joomla-alert-es5.min.js', - '/media/vendor/joomla-custom-elements/js/joomla-alert-es5.min.js.gz', - '/media/vendor/joomla-custom-elements/js/joomla-tab-es5.js', - '/media/vendor/joomla-custom-elements/js/joomla-tab-es5.min.js', - '/media/vendor/joomla-custom-elements/js/joomla-tab-es5.min.js.gz', - '/media/vendor/mediaelement/js/mediaelement-flash-audio-ogg.swf', - '/media/vendor/mediaelement/js/mediaelement-flash-audio.swf', - '/media/vendor/mediaelement/js/mediaelement-flash-video-hls.swf', - '/media/vendor/mediaelement/js/mediaelement-flash-video-mdash.swf', - '/media/vendor/mediaelement/js/mediaelement-flash-video.swf', - '/plugins/editors-xtd/pagebreak/pagebreak.php', - // From 5.0.0-alpha2 to 5.0.0-alpha3 - '/libraries/classmap.php', - '/libraries/extensions.classmap.php', - '/media/vendor/codemirror/addon/comment/comment.js', - '/media/vendor/codemirror/addon/comment/comment.min.js', - '/media/vendor/codemirror/addon/comment/comment.min.js.gz', - '/media/vendor/codemirror/addon/comment/continuecomment.js', - '/media/vendor/codemirror/addon/comment/continuecomment.min.js', - '/media/vendor/codemirror/addon/comment/continuecomment.min.js.gz', - '/media/vendor/codemirror/addon/dialog/dialog.css', - '/media/vendor/codemirror/addon/dialog/dialog.js', - '/media/vendor/codemirror/addon/dialog/dialog.min.js', - '/media/vendor/codemirror/addon/dialog/dialog.min.js.gz', - '/media/vendor/codemirror/addon/display/autorefresh.js', - '/media/vendor/codemirror/addon/display/autorefresh.min.js', - '/media/vendor/codemirror/addon/display/autorefresh.min.js.gz', - '/media/vendor/codemirror/addon/display/fullscreen.css', - '/media/vendor/codemirror/addon/display/fullscreen.js', - '/media/vendor/codemirror/addon/display/fullscreen.min.js', - '/media/vendor/codemirror/addon/display/fullscreen.min.js.gz', - '/media/vendor/codemirror/addon/display/panel.js', - '/media/vendor/codemirror/addon/display/panel.min.js', - '/media/vendor/codemirror/addon/display/panel.min.js.gz', - '/media/vendor/codemirror/addon/display/placeholder.js', - '/media/vendor/codemirror/addon/display/placeholder.min.js', - '/media/vendor/codemirror/addon/display/placeholder.min.js.gz', - '/media/vendor/codemirror/addon/display/rulers.js', - '/media/vendor/codemirror/addon/display/rulers.min.js', - '/media/vendor/codemirror/addon/display/rulers.min.js.gz', - '/media/vendor/codemirror/addon/edit/closebrackets.js', - '/media/vendor/codemirror/addon/edit/closebrackets.min.js', - '/media/vendor/codemirror/addon/edit/closebrackets.min.js.gz', - '/media/vendor/codemirror/addon/edit/closetag.js', - '/media/vendor/codemirror/addon/edit/closetag.min.js', - '/media/vendor/codemirror/addon/edit/closetag.min.js.gz', - '/media/vendor/codemirror/addon/edit/continuelist.js', - '/media/vendor/codemirror/addon/edit/continuelist.min.js', - '/media/vendor/codemirror/addon/edit/continuelist.min.js.gz', - '/media/vendor/codemirror/addon/edit/matchbrackets.js', - '/media/vendor/codemirror/addon/edit/matchbrackets.min.js', - '/media/vendor/codemirror/addon/edit/matchbrackets.min.js.gz', - '/media/vendor/codemirror/addon/edit/matchtags.js', - '/media/vendor/codemirror/addon/edit/matchtags.min.js', - '/media/vendor/codemirror/addon/edit/matchtags.min.js.gz', - '/media/vendor/codemirror/addon/edit/trailingspace.js', - '/media/vendor/codemirror/addon/edit/trailingspace.min.js', - '/media/vendor/codemirror/addon/edit/trailingspace.min.js.gz', - '/media/vendor/codemirror/addon/fold/brace-fold.js', - '/media/vendor/codemirror/addon/fold/brace-fold.min.js', - '/media/vendor/codemirror/addon/fold/brace-fold.min.js.gz', - '/media/vendor/codemirror/addon/fold/comment-fold.js', - '/media/vendor/codemirror/addon/fold/comment-fold.min.js', - '/media/vendor/codemirror/addon/fold/comment-fold.min.js.gz', - '/media/vendor/codemirror/addon/fold/foldcode.js', - '/media/vendor/codemirror/addon/fold/foldcode.min.js', - '/media/vendor/codemirror/addon/fold/foldcode.min.js.gz', - '/media/vendor/codemirror/addon/fold/foldgutter.css', - '/media/vendor/codemirror/addon/fold/foldgutter.js', - '/media/vendor/codemirror/addon/fold/foldgutter.min.js', - '/media/vendor/codemirror/addon/fold/foldgutter.min.js.gz', - '/media/vendor/codemirror/addon/fold/indent-fold.js', - '/media/vendor/codemirror/addon/fold/indent-fold.min.js', - '/media/vendor/codemirror/addon/fold/indent-fold.min.js.gz', - '/media/vendor/codemirror/addon/fold/markdown-fold.js', - '/media/vendor/codemirror/addon/fold/markdown-fold.min.js', - '/media/vendor/codemirror/addon/fold/markdown-fold.min.js.gz', - '/media/vendor/codemirror/addon/fold/xml-fold.js', - '/media/vendor/codemirror/addon/fold/xml-fold.min.js', - '/media/vendor/codemirror/addon/fold/xml-fold.min.js.gz', - '/media/vendor/codemirror/addon/hint/anyword-hint.js', - '/media/vendor/codemirror/addon/hint/anyword-hint.min.js', - '/media/vendor/codemirror/addon/hint/anyword-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/css-hint.js', - '/media/vendor/codemirror/addon/hint/css-hint.min.js', - '/media/vendor/codemirror/addon/hint/css-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/html-hint.js', - '/media/vendor/codemirror/addon/hint/html-hint.min.js', - '/media/vendor/codemirror/addon/hint/html-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/javascript-hint.js', - '/media/vendor/codemirror/addon/hint/javascript-hint.min.js', - '/media/vendor/codemirror/addon/hint/javascript-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/show-hint.css', - '/media/vendor/codemirror/addon/hint/show-hint.js', - '/media/vendor/codemirror/addon/hint/show-hint.min.js', - '/media/vendor/codemirror/addon/hint/show-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/sql-hint.js', - '/media/vendor/codemirror/addon/hint/sql-hint.min.js', - '/media/vendor/codemirror/addon/hint/sql-hint.min.js.gz', - '/media/vendor/codemirror/addon/hint/xml-hint.js', - '/media/vendor/codemirror/addon/hint/xml-hint.min.js', - '/media/vendor/codemirror/addon/hint/xml-hint.min.js.gz', - '/media/vendor/codemirror/addon/lint/coffeescript-lint.js', - '/media/vendor/codemirror/addon/lint/coffeescript-lint.min.js', - '/media/vendor/codemirror/addon/lint/coffeescript-lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/css-lint.js', - '/media/vendor/codemirror/addon/lint/css-lint.min.js', - '/media/vendor/codemirror/addon/lint/css-lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/html-lint.js', - '/media/vendor/codemirror/addon/lint/html-lint.min.js', - '/media/vendor/codemirror/addon/lint/html-lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/javascript-lint.js', - '/media/vendor/codemirror/addon/lint/javascript-lint.min.js', - '/media/vendor/codemirror/addon/lint/javascript-lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/json-lint.js', - '/media/vendor/codemirror/addon/lint/json-lint.min.js', - '/media/vendor/codemirror/addon/lint/json-lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/lint.css', - '/media/vendor/codemirror/addon/lint/lint.js', - '/media/vendor/codemirror/addon/lint/lint.min.js', - '/media/vendor/codemirror/addon/lint/lint.min.js.gz', - '/media/vendor/codemirror/addon/lint/yaml-lint.js', - '/media/vendor/codemirror/addon/lint/yaml-lint.min.js', - '/media/vendor/codemirror/addon/lint/yaml-lint.min.js.gz', - '/media/vendor/codemirror/addon/merge/merge.css', - '/media/vendor/codemirror/addon/merge/merge.js', - '/media/vendor/codemirror/addon/merge/merge.min.js', - '/media/vendor/codemirror/addon/merge/merge.min.js.gz', - '/media/vendor/codemirror/addon/mode/loadmode.js', - '/media/vendor/codemirror/addon/mode/loadmode.min.js', - '/media/vendor/codemirror/addon/mode/loadmode.min.js.gz', - '/media/vendor/codemirror/addon/mode/multiplex.js', - '/media/vendor/codemirror/addon/mode/multiplex.min.js', - '/media/vendor/codemirror/addon/mode/multiplex.min.js.gz', - '/media/vendor/codemirror/addon/mode/multiplex_test.js', - '/media/vendor/codemirror/addon/mode/multiplex_test.min.js', - '/media/vendor/codemirror/addon/mode/multiplex_test.min.js.gz', - '/media/vendor/codemirror/addon/mode/overlay.js', - '/media/vendor/codemirror/addon/mode/overlay.min.js', - '/media/vendor/codemirror/addon/mode/overlay.min.js.gz', - '/media/vendor/codemirror/addon/mode/simple.js', - '/media/vendor/codemirror/addon/mode/simple.min.js', - '/media/vendor/codemirror/addon/mode/simple.min.js.gz', - '/media/vendor/codemirror/addon/runmode/colorize.js', - '/media/vendor/codemirror/addon/runmode/colorize.min.js', - '/media/vendor/codemirror/addon/runmode/colorize.min.js.gz', - '/media/vendor/codemirror/addon/runmode/runmode-standalone.js', - '/media/vendor/codemirror/addon/runmode/runmode-standalone.min.js', - '/media/vendor/codemirror/addon/runmode/runmode-standalone.min.js.gz', - '/media/vendor/codemirror/addon/runmode/runmode.js', - '/media/vendor/codemirror/addon/runmode/runmode.min.js', - '/media/vendor/codemirror/addon/runmode/runmode.min.js.gz', - '/media/vendor/codemirror/addon/runmode/runmode.node.js', - '/media/vendor/codemirror/addon/runmode/runmode.node.min.js', - '/media/vendor/codemirror/addon/runmode/runmode.node.min.js.gz', - '/media/vendor/codemirror/addon/scroll/annotatescrollbar.js', - '/media/vendor/codemirror/addon/scroll/annotatescrollbar.min.js', - '/media/vendor/codemirror/addon/scroll/annotatescrollbar.min.js.gz', - '/media/vendor/codemirror/addon/scroll/scrollpastend.js', - '/media/vendor/codemirror/addon/scroll/scrollpastend.min.js', - '/media/vendor/codemirror/addon/scroll/scrollpastend.min.js.gz', - '/media/vendor/codemirror/addon/scroll/simplescrollbars.css', - '/media/vendor/codemirror/addon/scroll/simplescrollbars.js', - '/media/vendor/codemirror/addon/scroll/simplescrollbars.min.js', - '/media/vendor/codemirror/addon/scroll/simplescrollbars.min.js.gz', - '/media/vendor/codemirror/addon/search/jump-to-line.js', - '/media/vendor/codemirror/addon/search/jump-to-line.min.js', - '/media/vendor/codemirror/addon/search/jump-to-line.min.js.gz', - '/media/vendor/codemirror/addon/search/match-highlighter.js', - '/media/vendor/codemirror/addon/search/match-highlighter.min.js', - '/media/vendor/codemirror/addon/search/match-highlighter.min.js.gz', - '/media/vendor/codemirror/addon/search/matchesonscrollbar.css', - '/media/vendor/codemirror/addon/search/matchesonscrollbar.js', - '/media/vendor/codemirror/addon/search/matchesonscrollbar.min.js', - '/media/vendor/codemirror/addon/search/matchesonscrollbar.min.js.gz', - '/media/vendor/codemirror/addon/search/search.js', - '/media/vendor/codemirror/addon/search/search.min.js', - '/media/vendor/codemirror/addon/search/search.min.js.gz', - '/media/vendor/codemirror/addon/search/searchcursor.js', - '/media/vendor/codemirror/addon/search/searchcursor.min.js', - '/media/vendor/codemirror/addon/search/searchcursor.min.js.gz', - '/media/vendor/codemirror/addon/selection/active-line.js', - '/media/vendor/codemirror/addon/selection/active-line.min.js', - '/media/vendor/codemirror/addon/selection/active-line.min.js.gz', - '/media/vendor/codemirror/addon/selection/mark-selection.js', - '/media/vendor/codemirror/addon/selection/mark-selection.min.js', - '/media/vendor/codemirror/addon/selection/mark-selection.min.js.gz', - '/media/vendor/codemirror/addon/selection/selection-pointer.js', - '/media/vendor/codemirror/addon/selection/selection-pointer.min.js', - '/media/vendor/codemirror/addon/selection/selection-pointer.min.js.gz', - '/media/vendor/codemirror/addon/tern/tern.css', - '/media/vendor/codemirror/addon/tern/tern.js', - '/media/vendor/codemirror/addon/tern/tern.min.js', - '/media/vendor/codemirror/addon/tern/tern.min.js.gz', - '/media/vendor/codemirror/addon/tern/worker.js', - '/media/vendor/codemirror/addon/tern/worker.min.js', - '/media/vendor/codemirror/addon/tern/worker.min.js.gz', - '/media/vendor/codemirror/addon/wrap/hardwrap.js', - '/media/vendor/codemirror/addon/wrap/hardwrap.min.js', - '/media/vendor/codemirror/addon/wrap/hardwrap.min.js.gz', - '/media/vendor/codemirror/keymap/emacs.js', - '/media/vendor/codemirror/keymap/emacs.min.js', - '/media/vendor/codemirror/keymap/emacs.min.js.gz', - '/media/vendor/codemirror/keymap/sublime.js', - '/media/vendor/codemirror/keymap/sublime.min.js', - '/media/vendor/codemirror/keymap/sublime.min.js.gz', - '/media/vendor/codemirror/keymap/vim.js', - '/media/vendor/codemirror/keymap/vim.min.js', - '/media/vendor/codemirror/keymap/vim.min.js.gz', - '/media/vendor/codemirror/lib/addons.css', - '/media/vendor/codemirror/lib/addons.js', - '/media/vendor/codemirror/lib/addons.min.js', - '/media/vendor/codemirror/lib/addons.min.js.gz', - '/media/vendor/codemirror/lib/codemirror.css', - '/media/vendor/codemirror/lib/codemirror.js', - '/media/vendor/codemirror/lib/codemirror.min.js', - '/media/vendor/codemirror/lib/codemirror.min.js.gz', - '/media/vendor/codemirror/mode/apl/apl.js', - '/media/vendor/codemirror/mode/apl/apl.min.js', - '/media/vendor/codemirror/mode/apl/apl.min.js.gz', - '/media/vendor/codemirror/mode/asciiarmor/asciiarmor.js', - '/media/vendor/codemirror/mode/asciiarmor/asciiarmor.min.js', - '/media/vendor/codemirror/mode/asciiarmor/asciiarmor.min.js.gz', - '/media/vendor/codemirror/mode/asn.1/asn.1.js', - '/media/vendor/codemirror/mode/asn.1/asn.1.min.js', - '/media/vendor/codemirror/mode/asn.1/asn.1.min.js.gz', - '/media/vendor/codemirror/mode/asterisk/asterisk.js', - '/media/vendor/codemirror/mode/asterisk/asterisk.min.js', - '/media/vendor/codemirror/mode/asterisk/asterisk.min.js.gz', - '/media/vendor/codemirror/mode/brainfuck/brainfuck.js', - '/media/vendor/codemirror/mode/brainfuck/brainfuck.min.js', - '/media/vendor/codemirror/mode/brainfuck/brainfuck.min.js.gz', - '/media/vendor/codemirror/mode/clike/clike.js', - '/media/vendor/codemirror/mode/clike/clike.min.js', - '/media/vendor/codemirror/mode/clike/clike.min.js.gz', - '/media/vendor/codemirror/mode/clojure/clojure.js', - '/media/vendor/codemirror/mode/clojure/clojure.min.js', - '/media/vendor/codemirror/mode/clojure/clojure.min.js.gz', - '/media/vendor/codemirror/mode/cmake/cmake.js', - '/media/vendor/codemirror/mode/cmake/cmake.min.js', - '/media/vendor/codemirror/mode/cmake/cmake.min.js.gz', - '/media/vendor/codemirror/mode/cobol/cobol.js', - '/media/vendor/codemirror/mode/cobol/cobol.min.js', - '/media/vendor/codemirror/mode/cobol/cobol.min.js.gz', - '/media/vendor/codemirror/mode/coffeescript/coffeescript.js', - '/media/vendor/codemirror/mode/coffeescript/coffeescript.min.js', - '/media/vendor/codemirror/mode/coffeescript/coffeescript.min.js.gz', - '/media/vendor/codemirror/mode/commonlisp/commonlisp.js', - '/media/vendor/codemirror/mode/commonlisp/commonlisp.min.js', - '/media/vendor/codemirror/mode/commonlisp/commonlisp.min.js.gz', - '/media/vendor/codemirror/mode/crystal/crystal.js', - '/media/vendor/codemirror/mode/crystal/crystal.min.js', - '/media/vendor/codemirror/mode/crystal/crystal.min.js.gz', - '/media/vendor/codemirror/mode/css/css.js', - '/media/vendor/codemirror/mode/css/css.min.js', - '/media/vendor/codemirror/mode/css/css.min.js.gz', - '/media/vendor/codemirror/mode/cypher/cypher.js', - '/media/vendor/codemirror/mode/cypher/cypher.min.js', - '/media/vendor/codemirror/mode/cypher/cypher.min.js.gz', - '/media/vendor/codemirror/mode/d/d.js', - '/media/vendor/codemirror/mode/d/d.min.js', - '/media/vendor/codemirror/mode/d/d.min.js.gz', - '/media/vendor/codemirror/mode/dart/dart.js', - '/media/vendor/codemirror/mode/dart/dart.min.js', - '/media/vendor/codemirror/mode/dart/dart.min.js.gz', - '/media/vendor/codemirror/mode/diff/diff.js', - '/media/vendor/codemirror/mode/diff/diff.min.js', - '/media/vendor/codemirror/mode/diff/diff.min.js.gz', - '/media/vendor/codemirror/mode/django/django.js', - '/media/vendor/codemirror/mode/django/django.min.js', - '/media/vendor/codemirror/mode/django/django.min.js.gz', - '/media/vendor/codemirror/mode/dockerfile/dockerfile.js', - '/media/vendor/codemirror/mode/dockerfile/dockerfile.min.js', - '/media/vendor/codemirror/mode/dockerfile/dockerfile.min.js.gz', - '/media/vendor/codemirror/mode/dtd/dtd.js', - '/media/vendor/codemirror/mode/dtd/dtd.min.js', - '/media/vendor/codemirror/mode/dtd/dtd.min.js.gz', - '/media/vendor/codemirror/mode/dylan/dylan.js', - '/media/vendor/codemirror/mode/dylan/dylan.min.js', - '/media/vendor/codemirror/mode/dylan/dylan.min.js.gz', - '/media/vendor/codemirror/mode/ebnf/ebnf.js', - '/media/vendor/codemirror/mode/ebnf/ebnf.min.js', - '/media/vendor/codemirror/mode/ebnf/ebnf.min.js.gz', - '/media/vendor/codemirror/mode/ecl/ecl.js', - '/media/vendor/codemirror/mode/ecl/ecl.min.js', - '/media/vendor/codemirror/mode/ecl/ecl.min.js.gz', - '/media/vendor/codemirror/mode/eiffel/eiffel.js', - '/media/vendor/codemirror/mode/eiffel/eiffel.min.js', - '/media/vendor/codemirror/mode/eiffel/eiffel.min.js.gz', - '/media/vendor/codemirror/mode/elm/elm.js', - '/media/vendor/codemirror/mode/elm/elm.min.js', - '/media/vendor/codemirror/mode/elm/elm.min.js.gz', - '/media/vendor/codemirror/mode/erlang/erlang.js', - '/media/vendor/codemirror/mode/erlang/erlang.min.js', - '/media/vendor/codemirror/mode/erlang/erlang.min.js.gz', - '/media/vendor/codemirror/mode/factor/factor.js', - '/media/vendor/codemirror/mode/factor/factor.min.js', - '/media/vendor/codemirror/mode/factor/factor.min.js.gz', - '/media/vendor/codemirror/mode/fcl/fcl.js', - '/media/vendor/codemirror/mode/fcl/fcl.min.js', - '/media/vendor/codemirror/mode/fcl/fcl.min.js.gz', - '/media/vendor/codemirror/mode/forth/forth.js', - '/media/vendor/codemirror/mode/forth/forth.min.js', - '/media/vendor/codemirror/mode/forth/forth.min.js.gz', - '/media/vendor/codemirror/mode/fortran/fortran.js', - '/media/vendor/codemirror/mode/fortran/fortran.min.js', - '/media/vendor/codemirror/mode/fortran/fortran.min.js.gz', - '/media/vendor/codemirror/mode/gas/gas.js', - '/media/vendor/codemirror/mode/gas/gas.min.js', - '/media/vendor/codemirror/mode/gas/gas.min.js.gz', - '/media/vendor/codemirror/mode/gfm/gfm.js', - '/media/vendor/codemirror/mode/gfm/gfm.min.js', - '/media/vendor/codemirror/mode/gfm/gfm.min.js.gz', - '/media/vendor/codemirror/mode/gherkin/gherkin.js', - '/media/vendor/codemirror/mode/gherkin/gherkin.min.js', - '/media/vendor/codemirror/mode/gherkin/gherkin.min.js.gz', - '/media/vendor/codemirror/mode/go/go.js', - '/media/vendor/codemirror/mode/go/go.min.js', - '/media/vendor/codemirror/mode/go/go.min.js.gz', - '/media/vendor/codemirror/mode/groovy/groovy.js', - '/media/vendor/codemirror/mode/groovy/groovy.min.js', - '/media/vendor/codemirror/mode/groovy/groovy.min.js.gz', - '/media/vendor/codemirror/mode/haml/haml.js', - '/media/vendor/codemirror/mode/haml/haml.min.js', - '/media/vendor/codemirror/mode/haml/haml.min.js.gz', - '/media/vendor/codemirror/mode/handlebars/handlebars.js', - '/media/vendor/codemirror/mode/handlebars/handlebars.min.js', - '/media/vendor/codemirror/mode/handlebars/handlebars.min.js.gz', - '/media/vendor/codemirror/mode/haskell-literate/haskell-literate.js', - '/media/vendor/codemirror/mode/haskell-literate/haskell-literate.min.js', - '/media/vendor/codemirror/mode/haskell-literate/haskell-literate.min.js.gz', - '/media/vendor/codemirror/mode/haskell/haskell.js', - '/media/vendor/codemirror/mode/haskell/haskell.min.js', - '/media/vendor/codemirror/mode/haskell/haskell.min.js.gz', - '/media/vendor/codemirror/mode/haxe/haxe.js', - '/media/vendor/codemirror/mode/haxe/haxe.min.js', - '/media/vendor/codemirror/mode/haxe/haxe.min.js.gz', - '/media/vendor/codemirror/mode/htmlembedded/htmlembedded.js', - '/media/vendor/codemirror/mode/htmlembedded/htmlembedded.min.js', - '/media/vendor/codemirror/mode/htmlembedded/htmlembedded.min.js.gz', - '/media/vendor/codemirror/mode/htmlmixed/htmlmixed.js', - '/media/vendor/codemirror/mode/htmlmixed/htmlmixed.min.js', - '/media/vendor/codemirror/mode/htmlmixed/htmlmixed.min.js.gz', - '/media/vendor/codemirror/mode/http/http.js', - '/media/vendor/codemirror/mode/http/http.min.js', - '/media/vendor/codemirror/mode/http/http.min.js.gz', - '/media/vendor/codemirror/mode/idl/idl.js', - '/media/vendor/codemirror/mode/idl/idl.min.js', - '/media/vendor/codemirror/mode/idl/idl.min.js.gz', - '/media/vendor/codemirror/mode/javascript/javascript.js', - '/media/vendor/codemirror/mode/javascript/javascript.min.js', - '/media/vendor/codemirror/mode/javascript/javascript.min.js.gz', - '/media/vendor/codemirror/mode/jinja2/jinja2.js', - '/media/vendor/codemirror/mode/jinja2/jinja2.min.js', - '/media/vendor/codemirror/mode/jinja2/jinja2.min.js.gz', - '/media/vendor/codemirror/mode/jsx/jsx.js', - '/media/vendor/codemirror/mode/jsx/jsx.min.js', - '/media/vendor/codemirror/mode/jsx/jsx.min.js.gz', - '/media/vendor/codemirror/mode/julia/julia.js', - '/media/vendor/codemirror/mode/julia/julia.min.js', - '/media/vendor/codemirror/mode/julia/julia.min.js.gz', - '/media/vendor/codemirror/mode/livescript/livescript.js', - '/media/vendor/codemirror/mode/livescript/livescript.min.js', - '/media/vendor/codemirror/mode/livescript/livescript.min.js.gz', - '/media/vendor/codemirror/mode/lua/lua.js', - '/media/vendor/codemirror/mode/lua/lua.min.js', - '/media/vendor/codemirror/mode/lua/lua.min.js.gz', - '/media/vendor/codemirror/mode/markdown/markdown.js', - '/media/vendor/codemirror/mode/markdown/markdown.min.js', - '/media/vendor/codemirror/mode/markdown/markdown.min.js.gz', - '/media/vendor/codemirror/mode/mathematica/mathematica.js', - '/media/vendor/codemirror/mode/mathematica/mathematica.min.js', - '/media/vendor/codemirror/mode/mathematica/mathematica.min.js.gz', - '/media/vendor/codemirror/mode/mbox/mbox.js', - '/media/vendor/codemirror/mode/mbox/mbox.min.js', - '/media/vendor/codemirror/mode/mbox/mbox.min.js.gz', - '/media/vendor/codemirror/mode/meta.js', - '/media/vendor/codemirror/mode/meta.min.js', - '/media/vendor/codemirror/mode/meta.min.js.gz', - '/media/vendor/codemirror/mode/mirc/mirc.js', - '/media/vendor/codemirror/mode/mirc/mirc.min.js', - '/media/vendor/codemirror/mode/mirc/mirc.min.js.gz', - '/media/vendor/codemirror/mode/mllike/mllike.js', - '/media/vendor/codemirror/mode/mllike/mllike.min.js', - '/media/vendor/codemirror/mode/mllike/mllike.min.js.gz', - '/media/vendor/codemirror/mode/modelica/modelica.js', - '/media/vendor/codemirror/mode/modelica/modelica.min.js', - '/media/vendor/codemirror/mode/modelica/modelica.min.js.gz', - '/media/vendor/codemirror/mode/mscgen/mscgen.js', - '/media/vendor/codemirror/mode/mscgen/mscgen.min.js', - '/media/vendor/codemirror/mode/mscgen/mscgen.min.js.gz', - '/media/vendor/codemirror/mode/mumps/mumps.js', - '/media/vendor/codemirror/mode/mumps/mumps.min.js', - '/media/vendor/codemirror/mode/mumps/mumps.min.js.gz', - '/media/vendor/codemirror/mode/nginx/nginx.js', - '/media/vendor/codemirror/mode/nginx/nginx.min.js', - '/media/vendor/codemirror/mode/nginx/nginx.min.js.gz', - '/media/vendor/codemirror/mode/nsis/nsis.js', - '/media/vendor/codemirror/mode/nsis/nsis.min.js', - '/media/vendor/codemirror/mode/nsis/nsis.min.js.gz', - '/media/vendor/codemirror/mode/ntriples/ntriples.js', - '/media/vendor/codemirror/mode/ntriples/ntriples.min.js', - '/media/vendor/codemirror/mode/ntriples/ntriples.min.js.gz', - '/media/vendor/codemirror/mode/octave/octave.js', - '/media/vendor/codemirror/mode/octave/octave.min.js', - '/media/vendor/codemirror/mode/octave/octave.min.js.gz', - '/media/vendor/codemirror/mode/oz/oz.js', - '/media/vendor/codemirror/mode/oz/oz.min.js', - '/media/vendor/codemirror/mode/oz/oz.min.js.gz', - '/media/vendor/codemirror/mode/pascal/pascal.js', - '/media/vendor/codemirror/mode/pascal/pascal.min.js', - '/media/vendor/codemirror/mode/pascal/pascal.min.js.gz', - '/media/vendor/codemirror/mode/pegjs/pegjs.js', - '/media/vendor/codemirror/mode/pegjs/pegjs.min.js', - '/media/vendor/codemirror/mode/pegjs/pegjs.min.js.gz', - '/media/vendor/codemirror/mode/perl/perl.js', - '/media/vendor/codemirror/mode/perl/perl.min.js', - '/media/vendor/codemirror/mode/perl/perl.min.js.gz', - '/media/vendor/codemirror/mode/php/php.js', - '/media/vendor/codemirror/mode/php/php.min.js', - '/media/vendor/codemirror/mode/php/php.min.js.gz', - '/media/vendor/codemirror/mode/pig/pig.js', - '/media/vendor/codemirror/mode/pig/pig.min.js', - '/media/vendor/codemirror/mode/pig/pig.min.js.gz', - '/media/vendor/codemirror/mode/powershell/powershell.js', - '/media/vendor/codemirror/mode/powershell/powershell.min.js', - '/media/vendor/codemirror/mode/powershell/powershell.min.js.gz', - '/media/vendor/codemirror/mode/properties/properties.js', - '/media/vendor/codemirror/mode/properties/properties.min.js', - '/media/vendor/codemirror/mode/properties/properties.min.js.gz', - '/media/vendor/codemirror/mode/protobuf/protobuf.js', - '/media/vendor/codemirror/mode/protobuf/protobuf.min.js', - '/media/vendor/codemirror/mode/protobuf/protobuf.min.js.gz', - '/media/vendor/codemirror/mode/pug/pug.js', - '/media/vendor/codemirror/mode/pug/pug.min.js', - '/media/vendor/codemirror/mode/pug/pug.min.js.gz', - '/media/vendor/codemirror/mode/puppet/puppet.js', - '/media/vendor/codemirror/mode/puppet/puppet.min.js', - '/media/vendor/codemirror/mode/puppet/puppet.min.js.gz', - '/media/vendor/codemirror/mode/python/python.js', - '/media/vendor/codemirror/mode/python/python.min.js', - '/media/vendor/codemirror/mode/python/python.min.js.gz', - '/media/vendor/codemirror/mode/q/q.js', - '/media/vendor/codemirror/mode/q/q.min.js', - '/media/vendor/codemirror/mode/q/q.min.js.gz', - '/media/vendor/codemirror/mode/r/r.js', - '/media/vendor/codemirror/mode/r/r.min.js', - '/media/vendor/codemirror/mode/r/r.min.js.gz', - '/media/vendor/codemirror/mode/rpm/changes/index.html', - '/media/vendor/codemirror/mode/rpm/rpm.js', - '/media/vendor/codemirror/mode/rpm/rpm.min.js', - '/media/vendor/codemirror/mode/rpm/rpm.min.js.gz', - '/media/vendor/codemirror/mode/rst/rst.js', - '/media/vendor/codemirror/mode/rst/rst.min.js', - '/media/vendor/codemirror/mode/rst/rst.min.js.gz', - '/media/vendor/codemirror/mode/ruby/ruby.js', - '/media/vendor/codemirror/mode/ruby/ruby.min.js', - '/media/vendor/codemirror/mode/ruby/ruby.min.js.gz', - '/media/vendor/codemirror/mode/rust/rust.js', - '/media/vendor/codemirror/mode/rust/rust.min.js', - '/media/vendor/codemirror/mode/rust/rust.min.js.gz', - '/media/vendor/codemirror/mode/sas/sas.js', - '/media/vendor/codemirror/mode/sas/sas.min.js', - '/media/vendor/codemirror/mode/sas/sas.min.js.gz', - '/media/vendor/codemirror/mode/sass/sass.js', - '/media/vendor/codemirror/mode/sass/sass.min.js', - '/media/vendor/codemirror/mode/sass/sass.min.js.gz', - '/media/vendor/codemirror/mode/scheme/scheme.js', - '/media/vendor/codemirror/mode/scheme/scheme.min.js', - '/media/vendor/codemirror/mode/scheme/scheme.min.js.gz', - '/media/vendor/codemirror/mode/shell/shell.js', - '/media/vendor/codemirror/mode/shell/shell.min.js', - '/media/vendor/codemirror/mode/shell/shell.min.js.gz', - '/media/vendor/codemirror/mode/sieve/sieve.js', - '/media/vendor/codemirror/mode/sieve/sieve.min.js', - '/media/vendor/codemirror/mode/sieve/sieve.min.js.gz', - '/media/vendor/codemirror/mode/slim/slim.js', - '/media/vendor/codemirror/mode/slim/slim.min.js', - '/media/vendor/codemirror/mode/slim/slim.min.js.gz', - '/media/vendor/codemirror/mode/smalltalk/smalltalk.js', - '/media/vendor/codemirror/mode/smalltalk/smalltalk.min.js', - '/media/vendor/codemirror/mode/smalltalk/smalltalk.min.js.gz', - '/media/vendor/codemirror/mode/smarty/smarty.js', - '/media/vendor/codemirror/mode/smarty/smarty.min.js', - '/media/vendor/codemirror/mode/smarty/smarty.min.js.gz', - '/media/vendor/codemirror/mode/solr/solr.js', - '/media/vendor/codemirror/mode/solr/solr.min.js', - '/media/vendor/codemirror/mode/solr/solr.min.js.gz', - '/media/vendor/codemirror/mode/soy/soy.js', - '/media/vendor/codemirror/mode/soy/soy.min.js', - '/media/vendor/codemirror/mode/soy/soy.min.js.gz', - '/media/vendor/codemirror/mode/sparql/sparql.js', - '/media/vendor/codemirror/mode/sparql/sparql.min.js', - '/media/vendor/codemirror/mode/sparql/sparql.min.js.gz', - '/media/vendor/codemirror/mode/spreadsheet/spreadsheet.js', - '/media/vendor/codemirror/mode/spreadsheet/spreadsheet.min.js', - '/media/vendor/codemirror/mode/spreadsheet/spreadsheet.min.js.gz', - '/media/vendor/codemirror/mode/sql/sql.js', - '/media/vendor/codemirror/mode/sql/sql.min.js', - '/media/vendor/codemirror/mode/sql/sql.min.js.gz', - '/media/vendor/codemirror/mode/stex/stex.js', - '/media/vendor/codemirror/mode/stex/stex.min.js', - '/media/vendor/codemirror/mode/stex/stex.min.js.gz', - '/media/vendor/codemirror/mode/stylus/stylus.js', - '/media/vendor/codemirror/mode/stylus/stylus.min.js', - '/media/vendor/codemirror/mode/stylus/stylus.min.js.gz', - '/media/vendor/codemirror/mode/swift/swift.js', - '/media/vendor/codemirror/mode/swift/swift.min.js', - '/media/vendor/codemirror/mode/swift/swift.min.js.gz', - '/media/vendor/codemirror/mode/tcl/tcl.js', - '/media/vendor/codemirror/mode/tcl/tcl.min.js', - '/media/vendor/codemirror/mode/tcl/tcl.min.js.gz', - '/media/vendor/codemirror/mode/textile/textile.js', - '/media/vendor/codemirror/mode/textile/textile.min.js', - '/media/vendor/codemirror/mode/textile/textile.min.js.gz', - '/media/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css', - '/media/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js', - '/media/vendor/codemirror/mode/tiddlywiki/tiddlywiki.min.js', - '/media/vendor/codemirror/mode/tiddlywiki/tiddlywiki.min.js.gz', - '/media/vendor/codemirror/mode/tiki/tiki.css', - '/media/vendor/codemirror/mode/tiki/tiki.js', - '/media/vendor/codemirror/mode/tiki/tiki.min.js', - '/media/vendor/codemirror/mode/tiki/tiki.min.js.gz', - '/media/vendor/codemirror/mode/toml/toml.js', - '/media/vendor/codemirror/mode/toml/toml.min.js', - '/media/vendor/codemirror/mode/toml/toml.min.js.gz', - '/media/vendor/codemirror/mode/tornado/tornado.js', - '/media/vendor/codemirror/mode/tornado/tornado.min.js', - '/media/vendor/codemirror/mode/tornado/tornado.min.js.gz', - '/media/vendor/codemirror/mode/troff/troff.js', - '/media/vendor/codemirror/mode/troff/troff.min.js', - '/media/vendor/codemirror/mode/troff/troff.min.js.gz', - '/media/vendor/codemirror/mode/ttcn-cfg/ttcn-cfg.js', - '/media/vendor/codemirror/mode/ttcn-cfg/ttcn-cfg.min.js', - '/media/vendor/codemirror/mode/ttcn-cfg/ttcn-cfg.min.js.gz', - '/media/vendor/codemirror/mode/ttcn/ttcn.js', - '/media/vendor/codemirror/mode/ttcn/ttcn.min.js', - '/media/vendor/codemirror/mode/ttcn/ttcn.min.js.gz', - '/media/vendor/codemirror/mode/turtle/turtle.js', - '/media/vendor/codemirror/mode/turtle/turtle.min.js', - '/media/vendor/codemirror/mode/turtle/turtle.min.js.gz', - '/media/vendor/codemirror/mode/twig/twig.js', - '/media/vendor/codemirror/mode/twig/twig.min.js', - '/media/vendor/codemirror/mode/twig/twig.min.js.gz', - '/media/vendor/codemirror/mode/vb/vb.js', - '/media/vendor/codemirror/mode/vb/vb.min.js', - '/media/vendor/codemirror/mode/vb/vb.min.js.gz', - '/media/vendor/codemirror/mode/vbscript/vbscript.js', - '/media/vendor/codemirror/mode/vbscript/vbscript.min.js', - '/media/vendor/codemirror/mode/vbscript/vbscript.min.js.gz', - '/media/vendor/codemirror/mode/velocity/velocity.js', - '/media/vendor/codemirror/mode/velocity/velocity.min.js', - '/media/vendor/codemirror/mode/velocity/velocity.min.js.gz', - '/media/vendor/codemirror/mode/verilog/verilog.js', - '/media/vendor/codemirror/mode/verilog/verilog.min.js', - '/media/vendor/codemirror/mode/verilog/verilog.min.js.gz', - '/media/vendor/codemirror/mode/vhdl/vhdl.js', - '/media/vendor/codemirror/mode/vhdl/vhdl.min.js', - '/media/vendor/codemirror/mode/vhdl/vhdl.min.js.gz', - '/media/vendor/codemirror/mode/vue/vue.js', - '/media/vendor/codemirror/mode/vue/vue.min.js', - '/media/vendor/codemirror/mode/vue/vue.min.js.gz', - '/media/vendor/codemirror/mode/wast/wast.js', - '/media/vendor/codemirror/mode/wast/wast.min.js', - '/media/vendor/codemirror/mode/wast/wast.min.js.gz', - '/media/vendor/codemirror/mode/webidl/webidl.js', - '/media/vendor/codemirror/mode/webidl/webidl.min.js', - '/media/vendor/codemirror/mode/webidl/webidl.min.js.gz', - '/media/vendor/codemirror/mode/xml/xml.js', - '/media/vendor/codemirror/mode/xml/xml.min.js', - '/media/vendor/codemirror/mode/xml/xml.min.js.gz', - '/media/vendor/codemirror/mode/xquery/xquery.js', - '/media/vendor/codemirror/mode/xquery/xquery.min.js', - '/media/vendor/codemirror/mode/xquery/xquery.min.js.gz', - '/media/vendor/codemirror/mode/yacas/yacas.js', - '/media/vendor/codemirror/mode/yacas/yacas.min.js', - '/media/vendor/codemirror/mode/yacas/yacas.min.js.gz', - '/media/vendor/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js', - '/media/vendor/codemirror/mode/yaml-frontmatter/yaml-frontmatter.min.js', - '/media/vendor/codemirror/mode/yaml-frontmatter/yaml-frontmatter.min.js.gz', - '/media/vendor/codemirror/mode/yaml/yaml.js', - '/media/vendor/codemirror/mode/yaml/yaml.min.js', - '/media/vendor/codemirror/mode/yaml/yaml.min.js.gz', - '/media/vendor/codemirror/mode/z80/z80.js', - '/media/vendor/codemirror/mode/z80/z80.min.js', - '/media/vendor/codemirror/mode/z80/z80.min.js.gz', - '/media/vendor/codemirror/theme/3024-day.css', - '/media/vendor/codemirror/theme/3024-night.css', - '/media/vendor/codemirror/theme/abbott.css', - '/media/vendor/codemirror/theme/abcdef.css', - '/media/vendor/codemirror/theme/ambiance-mobile.css', - '/media/vendor/codemirror/theme/ambiance.css', - '/media/vendor/codemirror/theme/ayu-dark.css', - '/media/vendor/codemirror/theme/ayu-mirage.css', - '/media/vendor/codemirror/theme/base16-dark.css', - '/media/vendor/codemirror/theme/base16-light.css', - '/media/vendor/codemirror/theme/bespin.css', - '/media/vendor/codemirror/theme/blackboard.css', - '/media/vendor/codemirror/theme/cobalt.css', - '/media/vendor/codemirror/theme/colorforth.css', - '/media/vendor/codemirror/theme/darcula.css', - '/media/vendor/codemirror/theme/dracula.css', - '/media/vendor/codemirror/theme/duotone-dark.css', - '/media/vendor/codemirror/theme/duotone-light.css', - '/media/vendor/codemirror/theme/eclipse.css', - '/media/vendor/codemirror/theme/elegant.css', - '/media/vendor/codemirror/theme/erlang-dark.css', - '/media/vendor/codemirror/theme/gruvbox-dark.css', - '/media/vendor/codemirror/theme/hopscotch.css', - '/media/vendor/codemirror/theme/icecoder.css', - '/media/vendor/codemirror/theme/idea.css', - '/media/vendor/codemirror/theme/isotope.css', - '/media/vendor/codemirror/theme/juejin.css', - '/media/vendor/codemirror/theme/lesser-dark.css', - '/media/vendor/codemirror/theme/liquibyte.css', - '/media/vendor/codemirror/theme/lucario.css', - '/media/vendor/codemirror/theme/material-darker.css', - '/media/vendor/codemirror/theme/material-ocean.css', - '/media/vendor/codemirror/theme/material-palenight.css', - '/media/vendor/codemirror/theme/material.css', - '/media/vendor/codemirror/theme/mbo.css', - '/media/vendor/codemirror/theme/mdn-like.css', - '/media/vendor/codemirror/theme/midnight.css', - '/media/vendor/codemirror/theme/monokai.css', - '/media/vendor/codemirror/theme/moxer.css', - '/media/vendor/codemirror/theme/neat.css', - '/media/vendor/codemirror/theme/neo.css', - '/media/vendor/codemirror/theme/night.css', - '/media/vendor/codemirror/theme/nord.css', - '/media/vendor/codemirror/theme/oceanic-next.css', - '/media/vendor/codemirror/theme/panda-syntax.css', - '/media/vendor/codemirror/theme/paraiso-dark.css', - '/media/vendor/codemirror/theme/paraiso-light.css', - '/media/vendor/codemirror/theme/pastel-on-dark.css', - '/media/vendor/codemirror/theme/railscasts.css', - '/media/vendor/codemirror/theme/rubyblue.css', - '/media/vendor/codemirror/theme/seti.css', - '/media/vendor/codemirror/theme/shadowfox.css', - '/media/vendor/codemirror/theme/solarized.css', - '/media/vendor/codemirror/theme/ssms.css', - '/media/vendor/codemirror/theme/the-matrix.css', - '/media/vendor/codemirror/theme/tomorrow-night-bright.css', - '/media/vendor/codemirror/theme/tomorrow-night-eighties.css', - '/media/vendor/codemirror/theme/ttcn.css', - '/media/vendor/codemirror/theme/twilight.css', - '/media/vendor/codemirror/theme/vibrant-ink.css', - '/media/vendor/codemirror/theme/xq-dark.css', - '/media/vendor/codemirror/theme/xq-light.css', - '/media/vendor/codemirror/theme/yeti.css', - '/media/vendor/codemirror/theme/yonce.css', - '/media/vendor/codemirror/theme/zenburn.css', - '/plugins/editors/codemirror/fonts.json', - '/plugins/editors/codemirror/layouts/editors/codemirror/element.php', - '/plugins/editors/codemirror/layouts/editors/codemirror/styles.php', - '/plugins/editors/codemirror/src/Field/FontsField.php', - // From 5.0.0-alpha3 to 5.0.0-alpha4 - '/libraries/src/Event/Application/DeamonForkEvent.php', - '/libraries/src/Event/Application/DeamonReceiveSignalEvent.php', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin.min.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/plugin.min.js.gz', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.css', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.html', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.min.css', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.min.css.gz', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.min.js', - '/media/plg_editors_tinymce/js/plugins/highlighter/source.min.js.gz', - '/media/plg_system_compat/es5.asset.json', - // From 5.0.0-alpha4 to 5.0.0-beta1 - '/administrator/components/com_categories/tmpl/categories/default_batch_footer.php', - '/administrator/components/com_content/tmpl/articles/default_batch_footer.php', - '/administrator/language/en-GB/plg_twofactorauth_totp.ini', - '/administrator/language/en-GB/plg_twofactorauth_totp.sys.ini', - '/administrator/language/en-GB/plg_twofactorauth_yubikey.ini', - '/administrator/language/en-GB/plg_twofactorauth_yubikey.sys.ini', - '/media/com_contenthistory/js/admin-history-versions.js', - '/media/com_contenthistory/js/admin-history-versions.min.js', - '/media/com_contenthistory/js/admin-history-versions.min.js.gz', - // From 5.0.0-beta1 to 5.0.0-beta2 - '/language/en-GB/lib_simplepie.sys.ini', - '/libraries/src/Cache/Storage/WincacheStorage.php', - // From 5.0.0-beta2 to 5.0.0-beta3 - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/AbstractString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/AbstractTime.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/ASNObject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Base128.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Composite/AttributeTypeAndValue.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Composite/RDNString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Composite/RelativeDistinguishedName.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Construct.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Exception/NotImplementedException.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Exception/ParserException.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/ExplicitlyTaggedObject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Identifier.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/OID.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Parsable.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/TemplateParser.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/BitString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/BMPString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/Boolean.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/CharacterString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/Enumerated.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/GeneralizedTime.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/GeneralString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/GraphicString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/IA5String.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/Integer.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/NullObject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/NumericString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/ObjectDescriptor.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/ObjectIdentifier.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/OctetString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/PrintableString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/RelativeObjectIdentifier.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/Sequence.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/Set.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/T61String.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/UniversalString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/UTCTime.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/UTF8String.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/VisibleString.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/UnknownConstructedObject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/UnknownObject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/Utility/BigInteger.php', - '/libraries/vendor/fgrosse/phpasn1/lib/Utility/BigIntegerBcmath.php', - '/libraries/vendor/fgrosse/phpasn1/lib/Utility/BigIntegerGmp.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/AlgorithmIdentifier.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/CertificateExtensions.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/CertificateSubject.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/CSR/Attributes.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/CSR/CSR.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/PrivateKey.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/PublicKey.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/SAN/DNSName.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/SAN/IPAddress.php', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/SAN/SubjectAlternativeNames.php', - '/libraries/vendor/fgrosse/phpasn1/LICENSE', - '/libraries/vendor/stella-maris/clock/LICENSE.md', - '/libraries/vendor/stella-maris/clock/src/ClockInterface.php', - '/media/com_scheduler/css/admin-view-select-task.css', - '/media/com_scheduler/css/admin-view-select-task.min.css', - '/media/com_scheduler/css/admin-view-select-task.min.css.gz', - '/media/system/css/calendar-jos.css', - '/media/system/css/calendar-jos.min.css', - '/media/system/css/calendar-jos.min.css.gz', - '/media/system/css/debug.css', - '/media/system/css/debug.min.css', - '/media/system/css/debug.min.css.gz', - '/media/system/css/frontediting.css', - '/media/system/css/frontediting.min.css', - '/media/system/css/frontediting.min.css.gz', - '/media/system/css/mootree.css', - '/media/system/css/mootree.min.css', - '/media/system/css/mootree.min.css.gz', - '/media/system/css/mootree_rtl.css', - '/media/system/css/mootree_rtl.min.css', - '/media/system/css/mootree_rtl.min.css.gz', - '/media/system/css/sortablelist.css', - '/media/system/css/sortablelist.min.css', - '/media/system/css/sortablelist.min.css.gz', - // From 5.0.0 to 5.1.0-alpha1 - '/administrator/components/com_banners/tmpl/banners/default_batch_footer.php', - '/administrator/components/com_contact/tmpl/contacts/default_batch_footer.php', - '/administrator/components/com_fields/tmpl/fields/default_batch_footer.php', - '/administrator/components/com_fields/tmpl/groups/default_batch_footer.php', - '/administrator/components/com_menus/tmpl/items/default_batch_footer.php', - '/administrator/components/com_modules/tmpl/modules/default_batch_footer.php', - '/administrator/components/com_newsfeeds/tmpl/newsfeeds/default_batch_footer.php', - '/administrator/components/com_tags/tmpl/tags/default_batch_footer.php', - '/administrator/components/com_users/tmpl/users/default_batch_footer.php', - // From 5.1.0-alpha3 to 5.1.0-alpha4 - '/administrator/components/com_redirect/tmpl/links/default_batch_footer.php', - '/modules/mod_banners/mod_banners.php', - // From 5.1.0-alpha4 to 5.1.0-beta1 - '/administrator/modules/mod_custom/mod_custom.php', - '/administrator/modules/mod_frontend/mod_frontend.php', - '/administrator/modules/mod_latestactions/mod_latestactions.php', - '/administrator/modules/mod_loginsupport/mod_loginsupport.php', - '/administrator/modules/mod_messages/mod_messages.php', - '/administrator/modules/mod_multilangstatus/mod_multilangstatus.php', - '/administrator/modules/mod_sampledata/mod_sampledata.php', - '/administrator/modules/mod_stats_admin/mod_stats_admin.php', - '/administrator/modules/mod_title/mod_title.php', - '/administrator/modules/mod_toolbar/mod_toolbar.php', - '/administrator/modules/mod_user/mod_user.php', - '/administrator/modules/mod_version/mod_version.php', - '/libraries/vendor/web-token/jwt-core/Algorithm.php', - '/libraries/vendor/web-token/jwt-core/AlgorithmManager.php', - '/libraries/vendor/web-token/jwt-core/AlgorithmManagerFactory.php', - '/libraries/vendor/web-token/jwt-core/JWK.php', - '/libraries/vendor/web-token/jwt-core/JWKSet.php', - '/libraries/vendor/web-token/jwt-core/JWT.php', - '/libraries/vendor/web-token/jwt-core/LICENSE', - '/libraries/vendor/web-token/jwt-core/Util/BigInteger.php', - '/libraries/vendor/web-token/jwt-core/Util/ECKey.php', - '/libraries/vendor/web-token/jwt-core/Util/ECSignature.php', - '/libraries/vendor/web-token/jwt-core/Util/Hash.php', - '/libraries/vendor/web-token/jwt-core/Util/JsonConverter.php', - '/libraries/vendor/web-token/jwt-core/Util/KeyChecker.php', - '/libraries/vendor/web-token/jwt-core/Util/RSAKey.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa/ECDSA.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa/ES256.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa/ES384.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa/ES512.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-eddsa/EdDSA.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/Blake2b.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/ES256K.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/HS1.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/HS256_64.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/RS1.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac/HMAC.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac/HS256.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac/HS384.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac/HS512.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-none/None.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/PS256.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/PS384.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/PS512.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RS256.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RS384.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RS512.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RSAPKCS1.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/RSAPSS.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/Util/RSA.php', - '/libraries/vendor/web-token/jwt-signature/Algorithm/MacAlgorithm.php', - '/libraries/vendor/web-token/jwt-signature/Algorithm/SignatureAlgorithm.php', - '/libraries/vendor/web-token/jwt-signature/JWS.php', - '/libraries/vendor/web-token/jwt-signature/JWSBuilder.php', - '/libraries/vendor/web-token/jwt-signature/JWSBuilderFactory.php', - '/libraries/vendor/web-token/jwt-signature/JWSLoader.php', - '/libraries/vendor/web-token/jwt-signature/JWSLoaderFactory.php', - '/libraries/vendor/web-token/jwt-signature/JWSTokenSupport.php', - '/libraries/vendor/web-token/jwt-signature/JWSVerifier.php', - '/libraries/vendor/web-token/jwt-signature/JWSVerifierFactory.php', - '/libraries/vendor/web-token/jwt-signature/LICENSE', - '/libraries/vendor/web-token/jwt-signature/Serializer/CompactSerializer.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/JSONFlattenedSerializer.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/JSONGeneralSerializer.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/JWSSerializer.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/JWSSerializerManager.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/JWSSerializerManagerFactory.php', - '/libraries/vendor/web-token/jwt-signature/Serializer/Serializer.php', - '/libraries/vendor/web-token/jwt-signature/Signature.php', - '/media/plg_system_jooa11y/css/jooa11y.css', - '/media/plg_system_jooa11y/css/jooa11y.min.css', - '/media/plg_system_jooa11y/css/jooa11y.min.css.gz', - '/media/plg_system_jooa11y/scss/jooa11y.scss', - '/media/vendor/joomla-a11y-checker/LICENSE.md', - '/modules/mod_feed/mod_feed.php', - '/modules/mod_languages/mod_languages.php', - '/modules/mod_stats/mod_stats.php', - '/modules/mod_syndicate/mod_syndicate.php', - '/modules/mod_tags_popular/mod_tags_popular.php', - '/modules/mod_tags_similar/mod_tags_similar.php', - '/modules/mod_wrapper/mod_wrapper.php', - // From 5.1.0-beta1 to 5.1.0-beta2 - '/administrator/modules/mod_login/mod_login.php', - '/libraries/src/Event/Router/AfterInitialiseRouterEvent.php', - '/libraries/src/Event/Router/RouterEvent.php', - '/libraries/src/Http/HttpFactoryInterface.php', - '/libraries/src/Service/Provider/Http.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A128CCM_16_128.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A128CCM_16_64.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A128CCM_64_128.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A128CCM_64_64.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A256CCM_16_128.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A256CCM_16_64.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A256CCM_64_128.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/A256CCM_64_64.php', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption/AESCCM.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/A128CTR.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/A192CTR.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/A256CTR.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/AESCTR.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/Chacha20Poly1305.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/RSAOAEP384.php', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption/RSAOAEP512.php', - '/libraries/vendor/web-token/jwt-experimental/LICENSE', - '/libraries/vendor/web-token/jwt-experimental/Signature/Blake2b.php', - '/libraries/vendor/web-token/jwt-experimental/Signature/ES256K.php', - '/libraries/vendor/web-token/jwt-experimental/Signature/HS1.php', - '/libraries/vendor/web-token/jwt-experimental/Signature/HS256_64.php', - '/libraries/vendor/web-token/jwt-experimental/Signature/RS1.php', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa/LICENSE', - '/libraries/vendor/web-token/jwt-signature-algorithm-eddsa/LICENSE', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental/LICENSE', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac/LICENSE', - '/libraries/vendor/web-token/jwt-signature-algorithm-none/LICENSE', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/LICENSE', - // From 5.1.0-beta2 to 5.1.0-rc1 - '/administrator/components/com_admin/sql/updates/mysql/4.4.4-2024-03-28.sql', - '/administrator/components/com_admin/sql/updates/postgresql/4.4.4-2024-03-28.sql', - '/administrator/modules/mod_post_installation_messages/mod_post_installation_messages.php', - '/media/vendor/punycode/LICENSE-MIT.txt', - // From 5.1.0 to 5.1.1 - '/libraries/vendor/cweagans/composer-patches/LICENSE.md', - '/libraries/vendor/cweagans/composer-patches/src/PatchEvent.php', - '/libraries/vendor/cweagans/composer-patches/src/PatchEvents.php', - '/libraries/vendor/cweagans/composer-patches/src/Patches.php', - '/libraries/vendor/cweagans/composer-patches/tests/PatchEventTest.php', - '/libraries/vendor/laminas/laminas-diactoros/PATCHES.txt', + // From 5.x to 6.0 + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-11.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-17.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-12.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-25.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-29.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-21.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-26.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-28.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-29.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-30.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-02.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-06.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-09.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-11.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2023-11-28.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-01-04.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-10.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-24.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-25.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-25.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-29.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-21.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-26.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-28.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-29.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-30.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-02.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-06.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-09.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-11.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2023-11-28.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-10.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-24.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-25.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql', + '/libraries/src/Application/BaseApplication.php', + '/libraries/src/Application/CLI/CliInput.php', + '/libraries/src/Application/CLI/CliOutput.php', + '/libraries/src/Application/CLI/ColorStyle.php', + '/libraries/src/Application/CLI/Output/Processor/ColorProcessor.php', + '/libraries/src/Application/CLI/Output/Processor/ProcessorInterface.php', + '/libraries/src/Application/CLI/Output/Stdout.php', + '/libraries/src/Application/CLI/Output/Xml.php', + '/libraries/src/Application/CliApplication.php', + '/libraries/src/Input/Cookie.php', + '/libraries/src/Input/Files.php', + '/libraries/src/Input/Input.php', + '/libraries/src/Input/Json.php', ]; $folders = [ - // From 4.4 to 5.0 - '/plugins/system/webauthn/src/Hotfix', - '/plugins/multifactorauth/webauthn/src/Hotfix', - '/media/vendor/tinymce/themes/mobile', - '/media/vendor/tinymce/skins/ui/oxide/fonts', - '/media/vendor/tinymce/skins/ui/oxide-dark/fonts', - '/media/vendor/tinymce/plugins/toc', - '/media/vendor/tinymce/plugins/textpattern', - '/media/vendor/tinymce/plugins/textcolor', - '/media/vendor/tinymce/plugins/template', - '/media/vendor/tinymce/plugins/tabfocus', - '/media/vendor/tinymce/plugins/spellchecker', - '/media/vendor/tinymce/plugins/print', - '/media/vendor/tinymce/plugins/paste', - '/media/vendor/tinymce/plugins/noneditable', - '/media/vendor/tinymce/plugins/legacyoutput', - '/media/vendor/tinymce/plugins/imagetools', - '/media/vendor/tinymce/plugins/hr', - '/media/vendor/tinymce/plugins/fullpage', - '/media/vendor/tinymce/plugins/contextmenu', - '/media/vendor/tinymce/plugins/colorpicker', - '/media/vendor/tinymce/plugins/bbcode', - '/libraries/vendor/symfony/polyfill-php81/Resources/stubs', - '/libraries/vendor/symfony/polyfill-php81/Resources', - '/libraries/vendor/symfony/polyfill-php81', - '/libraries/vendor/symfony/polyfill-php80/Resources/stubs', - '/libraries/vendor/symfony/polyfill-php80/Resources', - '/libraries/vendor/symfony/polyfill-php80', - '/libraries/vendor/symfony/polyfill-php73/Resources/stubs', - '/libraries/vendor/symfony/polyfill-php73/Resources', - '/libraries/vendor/symfony/polyfill-php73', - '/libraries/vendor/symfony/polyfill-php72', - '/libraries/vendor/spomky-labs/base64url/src', - '/libraries/vendor/spomky-labs/base64url', - '/libraries/vendor/ramsey/uuid/src/Provider/Time', - '/libraries/vendor/ramsey/uuid/src/Provider/Node', - '/libraries/vendor/ramsey/uuid/src/Provider', - '/libraries/vendor/ramsey/uuid/src/Generator', - '/libraries/vendor/ramsey/uuid/src/Exception', - '/libraries/vendor/ramsey/uuid/src/Converter/Time', - '/libraries/vendor/ramsey/uuid/src/Converter/Number', - '/libraries/vendor/ramsey/uuid/src/Converter', - '/libraries/vendor/ramsey/uuid/src/Codec', - '/libraries/vendor/ramsey/uuid/src/Builder', - '/libraries/vendor/ramsey/uuid/src', - '/libraries/vendor/ramsey/uuid', - '/libraries/vendor/ramsey', - '/libraries/vendor/psr/log/Psr/Log', - '/libraries/vendor/psr/log/Psr', - '/libraries/vendor/nyholm/psr7/src/Factory', - '/libraries/vendor/nyholm/psr7/src', - '/libraries/vendor/nyholm/psr7', - '/libraries/vendor/nyholm', - '/libraries/vendor/lcobucci/jwt/src/Parsing', - '/libraries/vendor/lcobucci/jwt/src/Claim', - '/libraries/vendor/lcobucci/jwt/compat', - '/libraries/vendor/laminas/laminas-zendframework-bridge/src', - '/libraries/vendor/laminas/laminas-zendframework-bridge/config', - '/libraries/vendor/laminas/laminas-zendframework-bridge', - '/libraries/vendor/joomla/ldap/src', - '/libraries/vendor/joomla/ldap', - '/libraries/vendor/beberlei/assert/lib/Assert', - '/libraries/vendor/beberlei/assert/lib', - '/libraries/vendor/beberlei/assert', - '/libraries/vendor/beberlei', - '/administrator/components/com_admin/sql/others/mysql', - '/administrator/components/com_admin/sql/others', - // From 5.0.0-alpha2 to 5.0.0-alpha3 - '/plugins/editors/codemirror/src/Field', - '/media/vendor/codemirror/theme', - '/media/vendor/codemirror/mode/z80', - '/media/vendor/codemirror/mode/yaml-frontmatter', - '/media/vendor/codemirror/mode/yaml', - '/media/vendor/codemirror/mode/yacas', - '/media/vendor/codemirror/mode/xquery', - '/media/vendor/codemirror/mode/xml', - '/media/vendor/codemirror/mode/webidl', - '/media/vendor/codemirror/mode/wast', - '/media/vendor/codemirror/mode/vue', - '/media/vendor/codemirror/mode/vhdl', - '/media/vendor/codemirror/mode/verilog', - '/media/vendor/codemirror/mode/velocity', - '/media/vendor/codemirror/mode/vbscript', - '/media/vendor/codemirror/mode/vb', - '/media/vendor/codemirror/mode/twig', - '/media/vendor/codemirror/mode/turtle', - '/media/vendor/codemirror/mode/ttcn-cfg', - '/media/vendor/codemirror/mode/ttcn', - '/media/vendor/codemirror/mode/troff', - '/media/vendor/codemirror/mode/tornado', - '/media/vendor/codemirror/mode/toml', - '/media/vendor/codemirror/mode/tiki', - '/media/vendor/codemirror/mode/tiddlywiki', - '/media/vendor/codemirror/mode/textile', - '/media/vendor/codemirror/mode/tcl', - '/media/vendor/codemirror/mode/swift', - '/media/vendor/codemirror/mode/stylus', - '/media/vendor/codemirror/mode/stex', - '/media/vendor/codemirror/mode/sql', - '/media/vendor/codemirror/mode/spreadsheet', - '/media/vendor/codemirror/mode/sparql', - '/media/vendor/codemirror/mode/soy', - '/media/vendor/codemirror/mode/solr', - '/media/vendor/codemirror/mode/smarty', - '/media/vendor/codemirror/mode/smalltalk', - '/media/vendor/codemirror/mode/slim', - '/media/vendor/codemirror/mode/sieve', - '/media/vendor/codemirror/mode/shell', - '/media/vendor/codemirror/mode/scheme', - '/media/vendor/codemirror/mode/sass', - '/media/vendor/codemirror/mode/sas', - '/media/vendor/codemirror/mode/rust', - '/media/vendor/codemirror/mode/ruby', - '/media/vendor/codemirror/mode/rst', - '/media/vendor/codemirror/mode/rpm/changes', - '/media/vendor/codemirror/mode/rpm', - '/media/vendor/codemirror/mode/r', - '/media/vendor/codemirror/mode/q', - '/media/vendor/codemirror/mode/python', - '/media/vendor/codemirror/mode/puppet', - '/media/vendor/codemirror/mode/pug', - '/media/vendor/codemirror/mode/protobuf', - '/media/vendor/codemirror/mode/properties', - '/media/vendor/codemirror/mode/powershell', - '/media/vendor/codemirror/mode/pig', - '/media/vendor/codemirror/mode/php', - '/media/vendor/codemirror/mode/perl', - '/media/vendor/codemirror/mode/pegjs', - '/media/vendor/codemirror/mode/pascal', - '/media/vendor/codemirror/mode/oz', - '/media/vendor/codemirror/mode/octave', - '/media/vendor/codemirror/mode/ntriples', - '/media/vendor/codemirror/mode/nsis', - '/media/vendor/codemirror/mode/nginx', - '/media/vendor/codemirror/mode/mumps', - '/media/vendor/codemirror/mode/mscgen', - '/media/vendor/codemirror/mode/modelica', - '/media/vendor/codemirror/mode/mllike', - '/media/vendor/codemirror/mode/mirc', - '/media/vendor/codemirror/mode/mbox', - '/media/vendor/codemirror/mode/mathematica', - '/media/vendor/codemirror/mode/markdown', - '/media/vendor/codemirror/mode/lua', - '/media/vendor/codemirror/mode/livescript', - '/media/vendor/codemirror/mode/julia', - '/media/vendor/codemirror/mode/jsx', - '/media/vendor/codemirror/mode/jinja2', - '/media/vendor/codemirror/mode/javascript', - '/media/vendor/codemirror/mode/idl', - '/media/vendor/codemirror/mode/http', - '/media/vendor/codemirror/mode/htmlmixed', - '/media/vendor/codemirror/mode/htmlembedded', - '/media/vendor/codemirror/mode/haxe', - '/media/vendor/codemirror/mode/haskell-literate', - '/media/vendor/codemirror/mode/haskell', - '/media/vendor/codemirror/mode/handlebars', - '/media/vendor/codemirror/mode/haml', - '/media/vendor/codemirror/mode/groovy', - '/media/vendor/codemirror/mode/go', - '/media/vendor/codemirror/mode/gherkin', - '/media/vendor/codemirror/mode/gfm', - '/media/vendor/codemirror/mode/gas', - '/media/vendor/codemirror/mode/fortran', - '/media/vendor/codemirror/mode/forth', - '/media/vendor/codemirror/mode/fcl', - '/media/vendor/codemirror/mode/factor', - '/media/vendor/codemirror/mode/erlang', - '/media/vendor/codemirror/mode/elm', - '/media/vendor/codemirror/mode/eiffel', - '/media/vendor/codemirror/mode/ecl', - '/media/vendor/codemirror/mode/ebnf', - '/media/vendor/codemirror/mode/dylan', - '/media/vendor/codemirror/mode/dtd', - '/media/vendor/codemirror/mode/dockerfile', - '/media/vendor/codemirror/mode/django', - '/media/vendor/codemirror/mode/diff', - '/media/vendor/codemirror/mode/dart', - '/media/vendor/codemirror/mode/d', - '/media/vendor/codemirror/mode/cypher', - '/media/vendor/codemirror/mode/css', - '/media/vendor/codemirror/mode/crystal', - '/media/vendor/codemirror/mode/commonlisp', - '/media/vendor/codemirror/mode/coffeescript', - '/media/vendor/codemirror/mode/cobol', - '/media/vendor/codemirror/mode/cmake', - '/media/vendor/codemirror/mode/clojure', - '/media/vendor/codemirror/mode/clike', - '/media/vendor/codemirror/mode/brainfuck', - '/media/vendor/codemirror/mode/asterisk', - '/media/vendor/codemirror/mode/asn.1', - '/media/vendor/codemirror/mode/asciiarmor', - '/media/vendor/codemirror/mode/apl', - '/media/vendor/codemirror/mode', - '/media/vendor/codemirror/lib', - '/media/vendor/codemirror/keymap', - '/media/vendor/codemirror/addon/wrap', - '/media/vendor/codemirror/addon/tern', - '/media/vendor/codemirror/addon/selection', - '/media/vendor/codemirror/addon/search', - '/media/vendor/codemirror/addon/scroll', - '/media/vendor/codemirror/addon/runmode', - '/media/vendor/codemirror/addon/mode', - '/media/vendor/codemirror/addon/merge', - '/media/vendor/codemirror/addon/lint', - '/media/vendor/codemirror/addon/hint', - '/media/vendor/codemirror/addon/fold', - '/media/vendor/codemirror/addon/edit', - '/media/vendor/codemirror/addon/display', - '/media/vendor/codemirror/addon/dialog', - '/media/vendor/codemirror/addon/comment', - '/media/vendor/codemirror/addon', - // From 5.0.0-alpha3 to 5.0.0-alpha4 - '/templates/system/incompatible.html,/includes', - '/templates/system/incompatible.html,', - '/media/plg_system_compat', - '/media/plg_editors_tinymce/js/plugins/highlighter', - // From 5.0.0-beta2 to 5.0.0-beta3 - '/libraries/vendor/stella-maris/clock/src', - '/libraries/vendor/stella-maris/clock', - '/libraries/vendor/stella-maris', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/SAN', - '/libraries/vendor/fgrosse/phpasn1/lib/X509/CSR', - '/libraries/vendor/fgrosse/phpasn1/lib/X509', - '/libraries/vendor/fgrosse/phpasn1/lib/Utility', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Exception', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Composite', - '/libraries/vendor/fgrosse/phpasn1/lib/ASN1', - '/libraries/vendor/fgrosse/phpasn1/lib', - '/libraries/vendor/fgrosse/phpasn1', - '/libraries/vendor/fgrosse', - // From 5.1.0-alpha4 to 5.1.0-beta1 - '/media/vendor/joomla-a11y-checker', - '/media/plg_system_jooa11y/scss', - '/media/plg_system_jooa11y/css', - '/libraries/vendor/web-token/jwt-signature/Serializer', - '/libraries/vendor/web-token/jwt-signature/Algorithm', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa/Util', - '/libraries/vendor/web-token/jwt-signature', - '/libraries/vendor/web-token/jwt-core/Util', - '/libraries/vendor/web-token/jwt-core', - // From 5.1.0-beta1 to 5.1.0-beta2 - '/libraries/vendor/web-token/signature-pack', - '/libraries/vendor/web-token/jwt-signature-algorithm-rsa', - '/libraries/vendor/web-token/jwt-signature-algorithm-none', - '/libraries/vendor/web-token/jwt-signature-algorithm-hmac', - '/libraries/vendor/web-token/jwt-signature-algorithm-experimental', - '/libraries/vendor/web-token/jwt-signature-algorithm-eddsa', - '/libraries/vendor/web-token/jwt-signature-algorithm-ecdsa', - '/libraries/vendor/web-token/jwt-experimental/Signature', - '/libraries/vendor/web-token/jwt-experimental/KeyEncryption', - '/libraries/vendor/web-token/jwt-experimental/ContentEncryption', - '/libraries/vendor/web-token/jwt-experimental', - '/libraries/src/Event/Router', - // From 5.1.0-beta2 to 5.1.0-rc1 - '/media/vendor/punycode', - // From 5.1.0 to 5.1.1 - '/libraries/vendor/cweagans/composer-patches/tests', - '/libraries/vendor/cweagans/composer-patches/src', - '/libraries/vendor/cweagans/composer-patches', - '/libraries/vendor/cweagans', + // From 5.x to 6.0 + '/libraries/src/Application/CLI/Output/Processor', + '/libraries/src/Application/CLI/Output', + '/libraries/src/Application/CLI', ]; $status['files_checked'] = $files; @@ -2654,13 +533,9 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) */ public function updateAssets($installer) { - // List all components added since 4.0 + // List all components added since 6.0 $newComponents = [ // Components to be added here - 'com_guidedtours', - 'com_mails', - 'com_scheduler', - 'com_workflow', ]; foreach ($newComponents as $component) { @@ -2727,24 +602,11 @@ public function postflight($action, $installer) return true; } - if (empty($this->fromVersion) || version_compare($this->fromVersion, '5.0.0', 'ge')) { + if (empty($this->fromVersion) || version_compare($this->fromVersion, '6.0.0', 'ge')) { return true; } - // Add here code which shall be executed only when updating from an older version than 5.0.0 - if (!$this->migrateTinymceConfiguration()) { - return false; - } - - if (!$this->migrateDeleteActionlogsConfiguration()) { - return false; - } - - if (!$this->migratePrivacyconsentConfiguration()) { - return false; - } - - $this->setGuidedToursUid(); + // Add here code which shall be executed only when updating from an older version than 6.0.0 // Refresh versionable assets cache. Factory::getApplication()->flushAssets(); @@ -2752,315 +614,6 @@ public function postflight($action, $installer) return true; } - /** - * Migrate Deleteactionlogs plugin configuration - * - * @return boolean True on success - * - * @since 5.0.0 - */ - private function migrateDeleteActionlogsConfiguration(): bool - { - $db = Factory::getDbo(); - - try { - // Get the ActionLogs system plugin's parameters - $row = $db->setQuery( - $db->getQuery(true) - ->select([$db->quotename('enabled'), $db->quoteName('params')]) - ->from($db->quoteName('#__extensions')) - ->where($db->quoteName('type') . ' = ' . $db->quote('plugin')) - ->where($db->quoteName('folder') . ' = ' . $db->quote('system')) - ->where($db->quoteName('element') . ' = ' . $db->quote('actionlogs')) - )->loadObject(); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - // If not existing or disabled there is nothing to migrate - if (!$row || !$row->enabled) { - return true; - } - - $params = new Registry($row->params); - - // If deletion of outdated logs was disabled there is nothing to migrate - if (!$params->get('logDeletePeriod', 0)) { - return true; - } - - /** @var \Joomla\Component\Scheduler\Administrator\Extension\SchedulerComponent $component */ - $component = Factory::getApplication()->bootComponent('com_scheduler'); - - /** @var \Joomla\Component\Scheduler\Administrator\Model\TaskModel $model */ - $model = $component->getMVCFactory()->createModel('Task', 'Administrator', ['ignore_request' => true]); - $task = [ - 'title' => 'Delete Action Logs', - 'type' => 'delete.actionlogs', - 'execution_rules' => [ - 'rule-type' => 'interval-hours', - 'interval-hours' => 24, - 'exec-time' => gmdate('H:i', $params->get('lastrun', time())), - 'exec-day' => gmdate('d'), - ], - 'state' => 1, - 'params' => [ - 'logDeletePeriod' => $params->get('logDeletePeriod', 0), - ], - ]; - - try { - $model->save($task); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - return true; - } - /** - * Migrate privacyconsents system plugin configuration - * - * @return boolean True on success - * - * @since 5.0.0 - */ - private function migratePrivacyconsentConfiguration(): bool - { - $db = Factory::getDbo(); - - try { - // Get the PrivacyConsent system plugin's parameters - $row = $db->setQuery( - $db->getQuery(true) - ->select([$db->quotename('enabled'), $db->quoteName('params')]) - ->from($db->quoteName('#__extensions')) - ->where($db->quoteName('type') . ' = ' . $db->quote('plugin')) - ->where($db->quoteName('folder') . ' = ' . $db->quote('system')) - ->where($db->quoteName('element') . ' = ' . $db->quote('privacyconsent')) - )->loadObject(); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - // If not existing or disabled there is nothing to migrate - if (!$row || !$row->enabled) { - return true; - } - - $params = new Registry($row->params); - - // If consent expiration was disabled there is nothing to migrate - if (!$params->get('enabled', 0)) { - return true; - } - - /** @var \Joomla\Component\Scheduler\Administrator\Extension\SchedulerComponent $component */ - $component = Factory::getApplication()->bootComponent('com_scheduler'); - - /** @var \Joomla\Component\Scheduler\Administrator\Model\TaskModel $model */ - $model = $component->getMVCFactory()->createModel('Task', 'Administrator', ['ignore_request' => true]); - $task = [ - 'title' => 'Privacy Consent', - 'type' => 'privacy.consent', - 'execution_rules' => [ - 'rule-type' => 'interval-days', - 'interval-days' => $params->get('cachetimeout', 30), - 'exec-time' => gmdate('H:i', $params->get('lastrun', time())), - 'exec-day' => gmdate('d'), - ], - 'state' => 1, - 'params' => [ - 'consentexpiration' => $params->get('consentexpiration', 360), - 'remind' => $params->get('remind', 30), - ], - ]; - - try { - $model->save($task); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - // Refresh versionable assets cache. - Factory::getApplication()->flushAssets(); - - return true; - } - - /** - * Migrate TinyMCE editor plugin configuration - * - * @return boolean True on success - * - * @since 5.0.0 - */ - private function migrateTinymceConfiguration(): bool - { - $db = Factory::getDbo(); - - try { - // Get the TinyMCE editor plugin's parameters - $params = $db->setQuery( - $db->getQuery(true) - ->select($db->quoteName('params')) - ->from($db->quoteName('#__extensions')) - ->where($db->quoteName('type') . ' = ' . $db->quote('plugin')) - ->where($db->quoteName('folder') . ' = ' . $db->quote('editors')) - ->where($db->quoteName('element') . ' = ' . $db->quote('tinymce')) - )->loadResult(); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - $params = json_decode($params, true); - - // If there are no toolbars there is nothing to migrate - if (!isset($params['configuration']['toolbars'])) { - return true; - } - - // Each set has its own toolbar configuration - foreach ($params['configuration']['toolbars'] as $setIdx => $toolbarConfig) { - // Migrate menu items if there is a menu - if (isset($toolbarConfig['menu'])) { - /** - * Replace array values with menu item names ("old name" -> "new name"): - * "blockformats" -> "blocks" - * "fontformats" -> "fontfamily" - * "fontsizes" -> "fontsize" - * "formats" -> "styles" - * "template" -> "jtemplate" - */ - $search = ['blockformats', 'fontformats', 'fontsizes', 'formats']; - $replace = ['blocks', 'fontfamily', 'fontsize', 'styles']; - - // Don't redo the template - if (!\in_array('jtemplate', $params['configuration']['toolbars'][$setIdx]['menu'])) { - $search[] = 'template'; - $replace[] = 'jtemplate'; - } - - $params['configuration']['toolbars'][$setIdx]['menu'] = str_replace($search, $replace, $toolbarConfig['menu']); - } - - // There could be no toolbar at all, or only toolbar1, or both toolbar1 and toolbar2 - foreach (['toolbar1', 'toolbar2'] as $toolbarIdx) { - // Migrate toolbar buttons if that toolbar exists - if (isset($toolbarConfig[$toolbarIdx])) { - /** - * Replace array values with button names ("old name" -> "new name"): - * "fontselect" -> "fontfamily" - * "fontsizeselect" -> "fontsize" - * "formatselect" -> "blocks" - * "styleselect" -> "styles" - * "template" -> "jtemplate" - */ - $search = ['fontselect', 'fontsizeselect', 'formatselect', 'styleselect']; - $replace = ['fontfamily', 'fontsize', 'blocks', 'styles']; - - // Don't redo the template - if (!\in_array('jtemplate', $params['configuration']['toolbars'][$setIdx][$toolbarIdx])) { - $search[] = 'template'; - $replace[] = 'jtemplate'; - } - - $params['configuration']['toolbars'][$setIdx][$toolbarIdx] = str_replace($search, $replace, $toolbarConfig[$toolbarIdx]); - } - } - } - - $params = json_encode($params); - - $query = $db->getQuery(true) - ->update($db->quoteName('#__extensions')) - ->set($db->quoteName('params') . ' = ' . $db->quote($params)) - ->where($db->quoteName('type') . ' = ' . $db->quote('plugin')) - ->where($db->quoteName('folder') . ' = ' . $db->quote('editors')) - ->where($db->quoteName('element') . ' = ' . $db->quote('tinymce')); - - try { - $db->setQuery($query)->execute(); - } catch (Exception $e) { - $this->collectError(__METHOD__, $e); - - return false; - } - - return true; - } - - /** - * setup Guided Tours Unique Identifiers - * - * @return boolean True on success - * - * @since 5.0.0 - */ - private function setGuidedToursUid() - { - /** @var \Joomla\Component\Cache\Administrator\Model\CacheModel $model */ - $model = Factory::getApplication()->bootComponent('com_guidedtours')->getMVCFactory() - ->createModel('Tours', 'Administrator', ['ignore_request' => true]); - - $items = $model->getItems(); - - foreach ($items as $item) { - // Set uid for tours where it is empty - if (empty($item->uid)) { - $tourItem = $model->getTable('Tour'); - $tourItem->load($item->id); - - // Tour follows Joomla naming convention - if (str_starts_with($tourItem->title, 'COM_GUIDEDTOURS_TOUR_') && str_ends_with($tourItem->title, '_TITLE')) { - $uidTitle = 'joomla_' . str_replace('COM_GUIDEDTOURS_TOUR_', '', $tourItem->title); - - // Remove the last _TITLE part - $pos = strrpos($uidTitle, '_TITLE'); - if ($pos !== false) { - $uidTitle = substr($uidTitle, 0, $pos); - } - } elseif (preg_match('#COM_(\w+)_TOUR_#', $tourItem->title) && str_ends_with($tourItem->title, '_TITLE')) { - // Tour follows component naming pattern - $uidTitle = preg_replace('#COM_(\w+)_TOUR_#', '$1.', $tourItem->title); - - // Remove the last _TITLE part - $pos = strrpos($uidTitle, "_TITLE"); - if ($pos !== false) { - $uidTitle = substr($uidTitle, 0, $pos); - } - } else { - $uri = Uri::getInstance(); - $host = $uri->toString(['host']); - $host = ApplicationHelper::stringURLSafe($host, $tourItem->language); - $uidTitle = $host . ' ' . str_replace('COM_GUIDEDTOURS_TOUR_', '', $tourItem->title); - // Remove the last _TITLE part - if (str_ends_with($uidTitle, '_TITLE')) { - $pos = strrpos($uidTitle, '_TITLE'); - $uidTitle = substr($uidTitle, 0, $pos); - } - } - // ApplicationHelper::stringURLSafe will replace a period (.) separator so we split the construction into multiple parts - $uidTitleParts = explode('.', $uidTitle); - array_walk($uidTitleParts, function (&$value, $key, $tourLanguage) { - $value = ApplicationHelper::stringURLSafe($value, $tourLanguage); - }, $tourItem->language); - $tourItem->uid = implode('.', $uidTitleParts); - - $tourItem->store(); - } - } - } - /** * Renames or removes incorrectly cased files. * @@ -3071,11 +624,7 @@ private function setGuidedToursUid() protected function fixFilenameCasing() { $files = [ - // From 4.4 to 5.0 - '/libraries/vendor/web-auth/cose-lib/src/Algorithm/Signature/EdDSA/ED256.php' => '/libraries/vendor/web-auth/cose-lib/src/Algorithm/Signature/EdDSA/Ed256.php', - '/libraries/vendor/web-auth/cose-lib/src/Algorithm/Signature/EdDSA/ED512.php' => '/libraries/vendor/web-auth/cose-lib/src/Algorithm/Signature/EdDSA/Ed512.php', - // From 5.0.0-alpha3 to 5.0.0-alpha4 - '/plugins/schemaorg/blogposting/src/Extension/Blogposting.php' => '/plugins/schemaorg/blogposting/src/Extension/BlogPosting.php', + // From 5.x to 6.0 ]; foreach ($files as $old => $expected) { diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-11.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-11.sql deleted file mode 100644 index 59b59432ea959..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-11.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE IF EXISTS `#__utf8_conversion`; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-17.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-17.sql deleted file mode 100644 index 4f6aa1f79b567..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-03-17.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM `#__scheduler_tasks` WHERE `type` = 'demoTask_r1.sleep'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-12.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-12.sql deleted file mode 100644 index 882f857346fd7..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-12.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE `#__menu_types` ADD COLUMN `ordering` int NOT NULL DEFAULT 0 AFTER `client_id` /** CAN FAIL **/; -UPDATE `#__menu_types` SET `ordering` = `id` WHERE `client_id` = 0; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-25.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-25.sql deleted file mode 100644 index 68f3966136529..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-25.sql +++ /dev/null @@ -1,23 +0,0 @@ --- --- Table structure for table `#__schemaorg` --- - -CREATE TABLE IF NOT EXISTS `#__schemaorg` ( - `id` int unsigned NOT NULL AUTO_INCREMENT, - `itemId` int unsigned, - `context` varchar(100), - `schemaType` varchar(100), - `schema` text, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; - --- Add plugins to `#__extensions` -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES -(0, 'plg_schemaorg_blogposting', 'plugin', 'blogposting', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 1, 0), -(0, 'plg_schemaorg_book', 'plugin', 'book', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 2, 0), -(0, 'plg_schemaorg_event', 'plugin', 'event', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 3, 0), -(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 4, 0), -(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 5, 0), -(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 6, 0), -(0, 'plg_schemaorg_jobposting', 'plugin', 'jobposting', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 7, 0), -(0, 'plg_system_schemaorg', 'plugin', 'schemaorg', 'system', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-29.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-29.sql deleted file mode 100644 index ba16b0157b838..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-07-29.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) -SELECT 0, 'plg_behaviour_compat', 'plugin', 'compat', 'behaviour', 0, 1, 1, 0, 1, '', '{"classes_aliases":"1","es5_assets":"1"}', '', -1, 0 -WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'compat' AND e.`folder` = 'behaviour' AND e.`client_id` = 0); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-21.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-21.sql deleted file mode 100644 index 53a45aa687c0d..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-21.sql +++ /dev/null @@ -1,17 +0,0 @@ --- --- Attention: In the below SQL statements, the value of the filter is unescaped, i.e. uses "\\", while --- in base.sql the same value is using "\\\\". This is expected because of how JSON_REPLACE works. --- -UPDATE `#__extensions` - SET `params` = JSON_REPLACE(`params`, '$.filter' , '\\Joomla\\CMS\\Component\\ComponentHelper::filterText') - WHERE `type` = 'plugin' - AND `folder` = 'fields' - AND `element` IN ('editor', 'text', 'textarea') - AND `params` <> '' - AND JSON_EXTRACT(`params`, '$.filter') = 'JComponentHelper::filterText'; - -UPDATE `#__fields` - SET `fieldparams` = JSON_REPLACE(`fieldparams`, '$.filter' , '\\Joomla\\CMS\\Component\\ComponentHelper::filterText') - WHERE `type` IN ('editor', 'text', 'textarea') - AND `fieldparams` <> '' - AND JSON_EXTRACT(`fieldparams`, '$.filter') = 'JComponentHelper::filterText'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-26.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-26.sql deleted file mode 100644 index 6126e568478e7..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-26.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES -(0, 'plg_task_globalcheckin', 'plugin', 'globalcheckin', 'task', 0, 1, 1, 0, 0, '', '{}', '', 5, 0); - diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-28.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-28.sql deleted file mode 100644 index 34c1d727cb1e7..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-28.sql +++ /dev/null @@ -1,13 +0,0 @@ -UPDATE `#__guidedtours` SET `extensions` = '["com_content","com_categories"]' WHERE `url` LIKE '%option=com_content%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_content","com_categories"]' WHERE `url` LIKE '%option=com_categories%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_menus"]' WHERE `url` LIKE '%com_menus%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_tags"]' WHERE `url` LIKE '%com_tags%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_banners"]' WHERE `url` LIKE '%com_banners%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_contact"]' WHERE `url` LIKE '%com_contact%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_newsfeeds"]' WHERE `url` LIKE '%com_newsfeeds%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_finder"]' WHERE `url` LIKE '%com_finder%'; -UPDATE `#__guidedtours` SET `extensions` = '["com_users"]' WHERE `url` LIKE '%com_users%'; - -UPDATE `#__update_sites` - SET `location` = 'https://update.joomla.org/language/translationlist_5.xml' - WHERE `location` = 'https://update.joomla.org/language/translationlist_4.xml'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-29.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-29.sql deleted file mode 100644 index 85790c1132a04..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-29.sql +++ /dev/null @@ -1,14 +0,0 @@ -ALTER TABLE `#__guidedtours` ADD COLUMN `uid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL AFTER `title`/** CAN FAIL **/; -ALTER TABLE `#__guidedtours` ADD INDEX `idx_uid` (`uid`(191)) /** CAN FAIL **/; - -UPDATE `#__guidedtours` SET `uid` = 'joomla-guidedtours' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-guidedtoursteps' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-articles' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_ARTICLES_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-categories' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_CATEGORIES_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-menus' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_MENUS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-tags' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_TAGS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-banners' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_BANNERS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-contacts' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_CONTACTS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-newsfeeds' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-smartsearch' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_TITLE'; -UPDATE `#__guidedtours` SET `uid` = 'joomla-users' WHERE `title` = 'COM_GUIDEDTOURS_TOUR_USERS_TITLE'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-30.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-30.sql deleted file mode 100644 index 8b144004d1147..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-08-30.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE `#__extensions` - SET `locked` = 0 - WHERE `type` = 'plugin' AND `element` = 'recaptcha_invisible' AND `folder` = 'captcha'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-02.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-02.sql deleted file mode 100644 index 220f69cf47de2..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-02.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO `#__extensions` (`name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES -('plg_task_deleteactionlogs', 'plugin', 'deleteactionlogs', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_privacyconsent', 'plugin', 'privacyconsent', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_rotatelogs', 'plugin', 'rotatelogs', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_sessiongc', 'plugin', 'sessiongc', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_updatenotification', 'plugin', 'updatenotification', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0); - -INSERT INTO `#__mail_templates` (`template_id`, `extension`, `language`, `subject`, `body`, `htmlbody`, `attachments`, `params`) VALUES -('plg_task_privacyconsent.request.reminder', 'plg_task_privacyconsent', '', 'PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_SUBJECT', 'PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_BODY', '', '', '{"tags":["sitename","url","tokenurl","formurl","token"]}'), -('plg_task_updatenotification.mail', 'plg_task_updatenotification', '', 'PLG_TASK_UPDATENOTIFICATION_EMAIL_SUBJECT', 'PLG_TASK_UPDATENOTIFICATION_EMAIL_BODY', '', '', '{"tags":["newversion","curversion","sitename","url","link","releasenews"]}'); - -DELETE FROM `#__mail_templates` WHERE `template_id` IN ('plg_system_privacyconsent.request.reminder', 'plg_system_updatenotification.mail'); - -DELETE FROM `#__postinstall_messages` WHERE `condition_file` = 'site://plugins/system/updatenotification/postinstall/updatecachetime.php'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-06.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-06.sql deleted file mode 100644 index de42fa7b0b92f..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-06.sql +++ /dev/null @@ -1,5 +0,0 @@ -UPDATE `#__scheduler_tasks` SET `title` = 'Delete Action Logs' WHERE `type` = 'delete.actionlogs' AND `title` = 'DeleteActionLogs'; -UPDATE `#__scheduler_tasks` SET `title` = 'Privacy Consent' WHERE `type` = 'privacy.consent' AND `title` = 'PrivacyConsent'; -UPDATE `#__scheduler_tasks` SET `title` = 'Rotate Logs' WHERE `type` = 'rotation.logs' AND `title` = 'RotateLogs'; -UPDATE `#__scheduler_tasks` SET `title` = 'Session GC' WHERE `type` = 'session.gc' AND `title` = 'SessionGC'; -UPDATE `#__scheduler_tasks` SET `title` = 'Update Notification' WHERE `type` = 'update.notification' AND `title` = 'UpdateNotification'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-09.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-09.sql deleted file mode 100644 index 9d90c87e0dd1a..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-09.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Add com_fields to action logs -INSERT INTO `#__action_logs_extensions` (`extension`) VALUES ('com_fields'); - -INSERT INTO `#__action_log_config` (`type_title`, `type_alias`, `id_holder`, `title_holder`, `table_name`, `text_prefix`) VALUES -('field', 'com_fields.field', 'id', 'title', '#__fields', 'PLG_ACTIONLOG_JOOMLA'); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-11.sql b/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-11.sql deleted file mode 100644 index 1a7eec216bb13..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.0.0-2023-09-11.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE `#__extensions` SET `enabled` = 1 WHERE `type` = 'plugin' AND `element` = 'schedulerunner' AND `folder` = 'system'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2023-11-28.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2023-11-28.sql deleted file mode 100644 index 98c6889baaa47..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2023-11-28.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES -(0, 'plg_schemaorg_article', 'plugin', 'article', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-01-04.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-01-04.sql deleted file mode 100644 index 38f38ee1ec202..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-01-04.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `#__fields_values` MODIFY `value` MEDIUMTEXT; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-10.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-10.sql deleted file mode 100644 index 946516cde5104..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-10.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `#__guidedtour_steps` ADD COLUMN `params` text NULL /** CAN FAIL **/; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-24.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-24.sql deleted file mode 100644 index 3716a866f8d64..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-24.sql +++ /dev/null @@ -1,34 +0,0 @@ --- --- Table structure for table `#__tuf_metadata` --- - -CREATE TABLE IF NOT EXISTS `#__tuf_metadata` ( - `id` int NOT NULL AUTO_INCREMENT, - `update_site_id` int DEFAULT 0, - `root` text DEFAULT NULL, - `targets` text DEFAULT NULL, - `snapshot` text DEFAULT NULL, - `timestamp` text DEFAULT NULL, - `mirrors` text DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci COMMENT='Secure TUF Updates'; - --- -------------------------------------------------------- --- The following INSERT statement has been modified to avoid an SQL error --- when there is more than 1 update site for the Joomla core. --- See https://github.com/joomla/joomla-cms/pull/43169 for details. --- -INSERT INTO `#__tuf_metadata` (`update_site_id`, `root`) -SELECT ue.`update_site_id`, - '{"signed":{"_type":"root","spec_version":"1.0","version":2,"expires":"2025-03-02T11:22:17Z","keys":{"07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"9b2af2d9b9727227735253d795bd27ea8f0e294a5f3603e822dc5052b44802b9"}},"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"a18e5ebabc19d5d5984b601a292ece61ba3662ab2d071dc520da5bd4f8948799"}},"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"cb0a7a131961a20edea051d6dc2b091fb650bd399bd8514adb67b3c60db9f8f9"}},"31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"589d029a68b470deff1ca16dbf3eea6b5b3fcba0ae7bb52c468abc7fb058b2a2"}},"9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"6043c8bacc76ac5c9750f45454dd865c6ca1fc57d69e14cc192cfd420f6a66a9"}}},"roles":{"root":{"keyids":["1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669","2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e"],"threshold":1},"snapshot":{"keyids":["07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f","2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e"],"threshold":1},"targets":{"keyids":["31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3"],"threshold":1},"timestamp":{"keyids":["9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc"],"threshold":1}},"consistent_snapshot":true},"signatures":[{"keyid":"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e","sig":"2a225a560ec0837b721d4c5e379fedbd3c7c9079a94e6b31e47e0184c8b95421b6036b4286c5d90f29ab4c468d79a712fdb65e96511394ceb3aa8e2b3983a501"},{"keyid":"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669","sig":"8ce0b2a7bdc1e6dcba12081f440510df0a593c072dcf591631c2dd0f456844a7da63be8e8ac31ffbddf42641fde84dc733a336031d182c2163b4c1eaf2117005"}]}' - FROM `#__update_sites_extensions` AS ue JOIN `#__extensions` AS e ON (e.`extension_id` = ue.`extension_id`) - WHERE e.`type`='file' AND e.`element`='joomla'; - --- -------------------------------------------------------- --- The following UPDATE statement has been modified to avoid an SQL error --- when there is more than 1 update site for the Joomla core. --- See https://github.com/joomla/joomla-cms/pull/42988 for details. --- -UPDATE `#__update_sites` - SET `type` = 'tuf', `location` = 'https://update.joomla.org/cms/' - WHERE `update_site_id` IN (SELECT ue.`update_site_id` FROM `#__update_sites_extensions` AS ue JOIN `#__extensions` AS e ON (e.`extension_id` = ue.`extension_id`) WHERE e.`type`='file' AND e.`element`='joomla'); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-25.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-25.sql deleted file mode 100644 index d1f08f1cd2e60..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-02-25.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES -(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql deleted file mode 100644 index 458403a3454a4..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql +++ /dev/null @@ -1,13 +0,0 @@ -INSERT IGNORE INTO `#__guidedtour_steps` (`tour_id`, `title`, `published`, `description`, `ordering`, `position`, `target`, `type`, `interactive_type`, `url`, `created`, `created_by`, `modified`, `modified_by`, `language`) VALUES -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_DESCRIPTION', 1, 'right', '#sidebarmenu', 0, 1, '', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_DESCRIPTION', 2, 'center', '', 0, 1, '', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_DESCRIPTION', 3, 'left', '.quickicons-for-update_quickicon .card', 0, 1, '', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_DESCRIPTION', 4, 'bottom', '#header', 0, 1, '', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_DESCRIPTION', 5, 'right', '#sidebarmenu nav > ul:first-of-type > li:last-child', 0, 1, '', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, '*'); - -ALTER TABLE `#__guidedtours` ADD COLUMN `autostart` int NOT NULL DEFAULT 0 /** CAN FAIL **/; - -INSERT IGNORE INTO `#__guidedtours` (`title`, `uid`, `description`, `ordering`, `extensions`, `url`, `created`, `created_by`, `modified`, `modified_by`, `published`, `language`, `access`, `autostart`) VALUES -('COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_TITLE', 'joomla-welcome', 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_DESCRIPTION', 1, '["com_cpanel"]', 'administrator/index.php', CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0, 1, '*', 1, 0); - -UPDATE `#__guidedtour_steps` SET `tour_id` = LAST_INSERT_ID() WHERE `tour_id`=0; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql deleted file mode 100644 index e76716010f9fd..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql +++ /dev/null @@ -1,12 +0,0 @@ --- --- Add post-installation message about Brotli compression in .htaccess --- --- This statement had to be modified to prevent duplicate postinstall messages --- when updating from 4.4. --- See https://github.com/joomla/joomla-cms/pull/43182 for details. --- -INSERT INTO `#__postinstall_messages` (`extension_id`, `title_key`, `description_key`, `action_key`, `language_extension`, `language_client_id`, `type`, `action_file`, `action`, `condition_file`, `condition_method`, `version_introduced`, `enabled`) -SELECT `extension_id`, 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_TITLE', 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_DESCRIPTION', '', 'com_admin', 1, 'message', '', '', 'admin://components/com_admin/postinstall/htaccessbrotli.php', 'admin_postinstall_htaccessbrotli_condition', '5.1.0', 1 - FROM `#__extensions` - WHERE `name` = 'files_joomla' - AND (SELECT COUNT(a.`postinstall_message_id`) FROM `#__postinstall_messages` a WHERE a.`title_key` = 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_TITLE') = 0; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql b/administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql deleted file mode 100644 index 8e59290ac5607..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql +++ /dev/null @@ -1,10 +0,0 @@ --- --- Add a default value for the colorScheme in the Atum template on Joomla update --- only when a value is not already set. --- New installs will have the default value set in the installation sql. --- - -UPDATE `#__template_styles` -SET `params` = JSON_SET(`params`, '$.colorScheme', 'os') -WHERE `template` = 'atum' -AND JSON_EXTRACT(`params`, '$.colorScheme') IS NULL; diff --git a/administrator/components/com_admin/sql/updates/mysql/6.0.0-2024-06-01.sql b/administrator/components/com_admin/sql/updates/mysql/6.0.0-2024-06-01.sql new file mode 100644 index 0000000000000..8394d2b2098f2 --- /dev/null +++ b/administrator/components/com_admin/sql/updates/mysql/6.0.0-2024-06-01.sql @@ -0,0 +1,2 @@ +-- This file is a dummy which can be removed or renamed and filled with content +-- when the first update SQL script for Joomla 6 will be added. diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql deleted file mode 100644 index b214d01a96e05..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE IF EXISTS "#__utf8_conversion"; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql deleted file mode 100644 index c3bb4daede595..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM "#__scheduler_tasks" WHERE "type" = 'demoTask_r1.sleep'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql deleted file mode 100644 index 0c83e0d5360fd..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE "#__menu_types" ADD COLUMN "ordering" int NOT NULL DEFAULT 0 /** CAN FAIL **/; -UPDATE "#__menu_types" SET "ordering" = "id" WHERE "client_id" = 0; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-25.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-25.sql deleted file mode 100644 index 18e8bd027d608..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-25.sql +++ /dev/null @@ -1,23 +0,0 @@ --- --- Table structure for table "#__schemaorg" --- - -CREATE TABLE IF NOT EXISTS "#__schemaorg" ( - "id" serial NOT NULL, - "itemId" bigint, - "context" varchar(100), - "schemaType" varchar(100), - "schema" text, - PRIMARY KEY ("id") -); - --- Add plugins to "#__extensions" -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") VALUES -(0, 'plg_schemaorg_blogposting', 'plugin', 'blogposting', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 1, 0), -(0, 'plg_schemaorg_book', 'plugin', 'book', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 2, 0), -(0, 'plg_schemaorg_event', 'plugin', 'event', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 3, 0), -(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 4, 0), -(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 5, 0), -(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 6, 0), -(0, 'plg_schemaorg_jobposting', 'plugin', 'jobposting', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 7, 0), -(0, 'plg_system_schemaorg', 'plugin', 'schemaorg', 'system', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-29.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-29.sql deleted file mode 100644 index 0d7535b274353..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-29.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") -SELECT 0, 'plg_behaviour_compat', 'plugin', 'compat', 'behaviour', 0, 1, 1, 0, 1, '', '{"classes_aliases":"1","es5_assets":"1"}', '', -1, 0 -WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'compat' AND e."folder" = 'behaviour' AND e."client_id" = 0); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-21.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-21.sql deleted file mode 100644 index bcca1d7e0835f..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-21.sql +++ /dev/null @@ -1,13 +0,0 @@ -UPDATE "#__extensions" - SET "params" = jsonb_set("params"::jsonb, '{filter}' , '"\\\\Joomla\\\\CMS\\\\Component\\\\ComponentHelper::filterText"') - WHERE "type" = 'plugin' - AND "folder" = 'fields' - AND "element" IN ('editor', 'text', 'textarea') - AND "params" <> '' - AND "params"::jsonb->>'filter' = 'JComponentHelper::filterText'; - -UPDATE "#__fields" - SET "fieldparams" = jsonb_set("fieldparams"::jsonb, '{filter}' , '"\\\\Joomla\\\\CMS\\\\Component\\\\ComponentHelper::filterText"') - WHERE "type" IN ('editor', 'text', 'textarea') - AND "fieldparams" <> '' - AND "fieldparams"::jsonb->>'filter' = 'JComponentHelper::filterText'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-26.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-26.sql deleted file mode 100644 index ce78be2301d1a..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-26.sql +++ /dev/null @@ -1,3 +0,0 @@ -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") VALUES -(0, 'plg_task_globalcheckin', 'plugin', 'globalcheckin', 'task', 0, 1, 1, 0, 0, '', '{}', '', 5, 0); - diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-28.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-28.sql deleted file mode 100644 index 252410f0e0baa..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-28.sql +++ /dev/null @@ -1,14 +0,0 @@ - -UPDATE "#__guidedtours" SET "extensions" = '["com_content","com_categories"]' WHERE "url" LIKE '%option=com_content%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_content","com_categories"]' WHERE "url" LIKE '%option=com_categories%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_menus"]' WHERE "url" LIKE '%com_menus%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_tags"]' WHERE "url" LIKE '%com_tags%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_banners"]' WHERE "url" LIKE '%com_banners%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_contact"]' WHERE "url" LIKE '%com_contact%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_newsfeeds"]' WHERE "url" LIKE '%com_newsfeeds%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_finder"]' WHERE "url" LIKE '%com_finder%'; -UPDATE "#__guidedtours" SET "extensions" = '["com_users"]' WHERE "url" LIKE '%com_users%'; - -UPDATE "#__update_sites" - SET "location" = 'https://update.joomla.org/language/translationlist_5.xml' - WHERE "location" = 'https://update.joomla.org/language/translationlist_4.xml'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-29.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-29.sql deleted file mode 100644 index 21666a58eb649..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-29.sql +++ /dev/null @@ -1,14 +0,0 @@ -ALTER TABLE "#__guidedtours" ADD COLUMN "uid" varchar(255) DEFAULT '' NOT NULL /** CAN FAIL **/; -CREATE INDEX "#__guidedtours_idx_uid" ON "#__guidedtours" ("uid") /** CAN FAIL **/; - -UPDATE "#__guidedtours" SET "uid" = 'joomla-guidedtours' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-guidedtoursteps' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-articles' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_ARTICLES_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-categories' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_CATEGORIES_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-menus' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_MENUS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-tags' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_TAGS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-banners' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_BANNERS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-contacts' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_CONTACTS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-newsfeeds' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-smartsearch' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_TITLE'; -UPDATE "#__guidedtours" SET "uid" = 'joomla-users' WHERE "title" = 'COM_GUIDEDTOURS_TOUR_USERS_TITLE'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-30.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-30.sql deleted file mode 100644 index 6cdba7c66ee3c..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-08-30.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE "#__extensions" - SET "locked" = 0 - WHERE "type" = 'plugin' AND "element" = 'recaptcha_invisible' AND "folder" = 'captcha'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-02.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-02.sql deleted file mode 100644 index 42bdee445b720..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-02.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO "#__extensions" ("name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "checked_out", "checked_out_time", "ordering", "state") VALUES -('plg_task_deleteactionlogs', 'plugin', 'deleteactionlogs', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_privacyconsent', 'plugin', 'privacyconsent', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_rotatelogs', 'plugin', 'rotatelogs', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_sessiongc', 'plugin', 'sessiongc', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0), -('plg_task_updatenotification', 'plugin', 'updatenotification', 'task', 0, 1, 1, 0, 1, '', '{}', '', NULL, NULL, 0, 0); - -INSERT INTO "#__mail_templates" ("template_id", "extension", "language", "subject", "body", "htmlbody", "attachments", "params") VALUES -('plg_task_privacyconsent.request.reminder', 'plg_task_privacyconsent', '', 'PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_SUBJECT', 'PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_BODY', '', '', '{"tags":["sitename","url","tokenurl","formurl","token"]}'), -('plg_task_updatenotification.mail', 'plg_task_updatenotification', '', 'PLG_TASK_UPDATENOTIFICATION_EMAIL_SUBJECT', 'PLG_TASK_UPDATENOTIFICATION_EMAIL_BODY', '', '', '{"tags":["newversion","curversion","sitename","url","link","releasenews"]}'); - -DELETE FROM "#__mail_templates" WHERE "template_id" IN ('plg_system_privacyconsent.request.reminder', 'plg_system_updatenotification.mail'); - -DELETE FROM "#__postinstall_messages" WHERE "condition_file" = 'site://plugins/system/updatenotification/postinstall/updatecachetime.php'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-06.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-06.sql deleted file mode 100644 index 6561c6da33304..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-06.sql +++ /dev/null @@ -1,5 +0,0 @@ -UPDATE "#__scheduler_tasks" SET "title" = 'Delete Action Logs' WHERE "type" = 'delete.actionlogs' AND "title" = 'DeleteActionLogs'; -UPDATE "#__scheduler_tasks" SET "title" = 'Privacy Consent' WHERE "type" = 'privacy.consent' AND "title" = 'PrivacyConsent'; -UPDATE "#__scheduler_tasks" SET "title" = 'Rotate Logs' WHERE "type" = 'rotation.logs' AND "title" = 'RotateLogs'; -UPDATE "#__scheduler_tasks" SET "title" = 'Session GC' WHERE "type" = 'session.gc' AND "title" = 'SessionGC'; -UPDATE "#__scheduler_tasks" SET "title" = 'Update Notification' WHERE "type" = 'update.notification' AND "title" = 'UpdateNotification'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-09.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-09.sql deleted file mode 100644 index 4207b50a67858..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-09.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Add com_fields to action logs extensions -INSERT INTO "#__action_logs_extensions" ("extension") VALUES ('com_fields'); - -INSERT INTO "#__action_log_config" ("type_title", "type_alias", "id_holder", "title_holder", "table_name", "text_prefix") VALUES -('field', 'com_fields.field', 'id', 'title', '#__fields', 'PLG_ACTIONLOG_JOOMLA'); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-11.sql b/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-11.sql deleted file mode 100644 index c540fd45a0d52..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-09-11.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE "#__extensions" SET "enabled" = 1 WHERE "type" = 'plugin' AND "element" = 'schedulerunner' AND "folder" = 'system'; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2023-11-28.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2023-11-28.sql deleted file mode 100644 index 523b7057ecc3a..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2023-11-28.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") VALUES -(0, 'plg_schemaorg_article', 'plugin', 'article', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-10.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-10.sql deleted file mode 100644 index 29375e78c1f50..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-10.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE "#__guidedtour_steps" ADD COLUMN "params" text NULL /** CAN FAIL **/; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-24.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-24.sql deleted file mode 100644 index 36692be7b3278..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-24.sql +++ /dev/null @@ -1,37 +0,0 @@ --- --- Table structure for table "#__tuf_metadata" --- - -CREATE TABLE IF NOT EXISTS "#__tuf_metadata" ( -"id" serial NOT NULL, -"update_site_id" bigint DEFAULT 0 NOT NULL, -"root" text DEFAULT NULL, -"targets" text DEFAULT NULL, -"snapshot" text DEFAULT NULL, -"timestamp" text DEFAULT NULL, -"mirrors" text DEFAULT NULL, -PRIMARY KEY ("id") -); - -COMMENT ON TABLE "#__tuf_metadata" IS 'Secure TUF Updates'; - --- -------------------------------------------------------- --- The following INSERT statement has been modified to avoid an SQL error --- when there is more than 1 update site for the Joomla core. --- See https://github.com/joomla/joomla-cms/pull/43169 for details. --- -INSERT INTO "#__tuf_metadata" ("update_site_id", "root") -SELECT ue."update_site_id", - '{"signed":{"_type":"root","spec_version":"1.0","version":2,"expires":"2025-03-02T11:22:17Z","keys":{"07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"9b2af2d9b9727227735253d795bd27ea8f0e294a5f3603e822dc5052b44802b9"}},"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"a18e5ebabc19d5d5984b601a292ece61ba3662ab2d071dc520da5bd4f8948799"}},"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"cb0a7a131961a20edea051d6dc2b091fb650bd399bd8514adb67b3c60db9f8f9"}},"31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"589d029a68b470deff1ca16dbf3eea6b5b3fcba0ae7bb52c468abc7fb058b2a2"}},"9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc":{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"6043c8bacc76ac5c9750f45454dd865c6ca1fc57d69e14cc192cfd420f6a66a9"}}},"roles":{"root":{"keyids":["1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669","2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e"],"threshold":1},"snapshot":{"keyids":["07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f","2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e"],"threshold":1},"targets":{"keyids":["31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3"],"threshold":1},"timestamp":{"keyids":["9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc"],"threshold":1}},"consistent_snapshot":true},"signatures":[{"keyid":"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e","sig":"2a225a560ec0837b721d4c5e379fedbd3c7c9079a94e6b31e47e0184c8b95421b6036b4286c5d90f29ab4c468d79a712fdb65e96511394ceb3aa8e2b3983a501"},{"keyid":"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669","sig":"8ce0b2a7bdc1e6dcba12081f440510df0a593c072dcf591631c2dd0f456844a7da63be8e8ac31ffbddf42641fde84dc733a336031d182c2163b4c1eaf2117005"}]}' - FROM "#__update_sites_extensions" AS ue JOIN "#__extensions" AS e ON (e."extension_id" = ue."extension_id") - WHERE e."type"='file' AND e."element"='joomla'; - --- -------------------------------------------------------- --- The following UPDATE statement has been modified to avoid an SQL error --- when there is more than 1 update site for the Joomla core. --- See https://github.com/joomla/joomla-cms/pull/42988 for details. --- -UPDATE "#__update_sites" - SET "type" = 'tuf', "location" = 'https://update.joomla.org/cms/' - WHERE "update_site_id" IN (SELECT ue."update_site_id" FROM "#__update_sites_extensions" AS ue JOIN "#__extensions" AS e ON (e."extension_id" = ue."extension_id") WHERE e."type"='file' AND e."element"='joomla'); - diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-25.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-25.sql deleted file mode 100644 index 665ac55ee84ff..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-02-25.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") VALUES -(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 0, '', '{}', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql deleted file mode 100644 index dde57323da713..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql +++ /dev/null @@ -1,15 +0,0 @@ -INSERT INTO "#__guidedtour_steps" ("tour_id", "title", "published", "description", "ordering", "position", "target", "type", "interactive_type", "url", "created", "created_by", "modified", "modified_by", "language") VALUES -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_DESCRIPTION', 1, 'right', '#sidebarmenu', 0, 1, '', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_DESCRIPTION', 2, 'center', '', 0, 1, '', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_DESCRIPTION', 3, 'left', '.quickicons-for-update_quickicon .card', 0, 1, '', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_DESCRIPTION', 4, 'bottom', '#header', 0, 1, '', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, '*'), -(0, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_TITLE', 1, 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_DESCRIPTION', 5, 'right', '#sidebarmenu nav > ul:first-of-type > li:last-child', 0, 1, '', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, '*') -ON CONFLICT DO NOTHING; - -ALTER TABLE "#__guidedtours" ADD COLUMN "autostart" int NOT NULL DEFAULT 0 /** CAN FAIL **/; - -INSERT INTO "#__guidedtours" ("title", "uid", "description", "ordering", "extensions", "url", "created", "created_by", "modified", "modified_by", "published", "language", "access", "autostart") VALUES -('COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_TITLE', 'joomla-welcome', 'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_DESCRIPTION', 1, '["com_cpanel"]', 'administrator/index.php', CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0, 1, '*', 1, 0) -ON CONFLICT DO NOTHING; - -UPDATE "#__guidedtour_steps" SET "tour_id" = currval(pg_get_serial_sequence('#__guidedtours','id')) WHERE "tour_id"=0; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql deleted file mode 100644 index 82bf0d612608c..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql +++ /dev/null @@ -1,12 +0,0 @@ --- --- Add post-installation message about Brotli compression in .htaccess --- --- This statement had to be modified to prevent duplicate postinstall messages --- when updating from 4.4. --- See https://github.com/joomla/joomla-cms/pull/43182 for details. --- -INSERT INTO "#__postinstall_messages" ("extension_id", "title_key", "description_key", "action_key", "language_extension", "language_client_id", "type", "action_file", "action", "condition_file", "condition_method", "version_introduced", "enabled") -SELECT "extension_id", 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_TITLE', 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_DESCRIPTION', '', 'com_admin', 1, 'message', '', '', 'admin://components/com_admin/postinstall/htaccessbrotli.php', 'admin_postinstall_htaccessbrotli_condition', '5.1.0', 1 - FROM "#__extensions" - WHERE "name" = 'files_joomla' - AND (SELECT COUNT(a."postinstall_message_id") FROM "#__postinstall_messages" a WHERE a."title_key" = 'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_BROTLI_TITLE') = 0; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql b/administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql deleted file mode 100644 index fc44f25a2a219..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql +++ /dev/null @@ -1,10 +0,0 @@ --- --- Add a default value for the colorScheme in the Atum template on Joomla update --- only when a value is not already set. --- New installs will have the default value set in the installation sql. --- - -UPDATE "#__template_styles" -SET "params" = jsonb_set("params"::jsonb, '{colorScheme}', '"os"', true) -WHERE "template" = 'atum' -AND "params"::jsonb->>'colorScheme' IS NULL; diff --git a/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2024-06-01.sql b/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2024-06-01.sql new file mode 100644 index 0000000000000..8394d2b2098f2 --- /dev/null +++ b/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2024-06-01.sql @@ -0,0 +1,2 @@ +-- This file is a dummy which can be removed or renamed and filled with content +-- when the first update SQL script for Joomla 6 will be added. diff --git a/build/deleted_file_check.php b/build/deleted_file_check.php index c2d14e69f7583..308c73f5d04a8 100644 --- a/build/deleted_file_check.php +++ b/build/deleted_file_check.php @@ -59,29 +59,10 @@ function usage($command) exit(1); } -// Directories to skip for the check (needs to include anything from J3 we want to keep) +// Directories to skip for the check (needs to include anything from previous versions which we want to keep) $previousReleaseExclude = [ - $options['from'] . '/administrator/components/com_search', - $options['from'] . '/components/com_search', $options['from'] . '/images/sampledata', $options['from'] . '/installation', - $options['from'] . '/media/com_cpanel/js', - $options['from'] . '/media/com_modules/js', - $options['from'] . '/media/legacy/js', - $options['from'] . '/media/mod_multilangstatus', - $options['from'] . '/media/plg_quickicon_eos310', - $options['from'] . '/media/system/images', - $options['from'] . '/modules/mod_search', - $options['from'] . '/plugins/captcha/recaptcha', - $options['from'] . '/plugins/captcha/recaptcha_invisible', - $options['from'] . '/plugins/fields/repeatable', - $options['from'] . '/plugins/quickicon/eos310', - $options['from'] . '/plugins/search', - $options['from'] . '/plugins/system/compat', - $options['from'] . '/plugins/system/logrotation', - $options['from'] . '/plugins/system/sessiongc', - $options['from'] . '/plugins/system/updatenotification', - $options['from'] . '/plugins/task/demotasks', ]; /** @@ -159,50 +140,12 @@ function usage($command) // Specific files (e.g. language files) that we want to keep on upgrade $filesToKeep = [ - "'/administrator/language/en-GB/en-GB.com_search.ini',", - "'/administrator/language/en-GB/en-GB.com_search.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_editors-xtd_weblink.ini',", - "'/administrator/language/en-GB/en-GB.plg_editors-xtd_weblink.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini',", - "'/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_quickicon_eos310.ini',", - "'/administrator/language/en-GB/en-GB.plg_quickicon_eos310.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_categories.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_categories.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_contacts.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_content.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_content.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_tags.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_weblinks.ini',", - "'/administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini',", - "'/administrator/language/en-GB/en-GB.plg_system_weblinks.ini',", - "'/administrator/language/en-GB/en-GB.plg_system_weblinks.sys.ini',", - "'/administrator/language/en-GB/plg_captcha_recaptcha.ini',", - "'/administrator/language/en-GB/plg_captcha_recaptcha.sys.ini',", - "'/administrator/language/en-GB/plg_captcha_recaptcha_invisible.ini',", - "'/administrator/language/en-GB/plg_captcha_recaptcha_invisible.sys.ini',", - "'/administrator/language/en-GB/plg_system_compat.ini',", - "'/administrator/language/en-GB/plg_system_compat.sys.ini',", - "'/administrator/language/en-GB/plg_system_logrotation.ini',", - "'/administrator/language/en-GB/plg_system_logrotation.sys.ini',", - "'/administrator/language/en-GB/plg_system_sessiongc.ini',", - "'/administrator/language/en-GB/plg_system_sessiongc.sys.ini',", - "'/administrator/language/en-GB/plg_system_updatenotification.ini',", - "'/administrator/language/en-GB/plg_system_updatenotification.sys.ini',", - "'/administrator/language/en-GB/plg_task_demotasks.ini',", - "'/administrator/language/en-GB/plg_task_demotasks.sys.ini',", - "'/language/en-GB/en-GB.com_search.ini',", - "'/language/en-GB/en-GB.mod_search.ini',", - "'/language/en-GB/en-GB.mod_search.sys.ini',", + // Example: "'/administrator/language/en-GB/en-GB.com_search.ini',", ]; // Specific folders that we want to keep on upgrade $foldersToKeep = [ - "'/bin',", + // Example: "'/bin',", ]; // Remove folders from the results which we want to keep on upgrade From 9badb823c286c4eadff6ce44065642a071677789 Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Wed, 12 Jun 2024 20:01:23 +0200 Subject: [PATCH 011/279] [6.0] Set version to 6.0.0-alpha1-dev (#43634) --- administrator/language/en-GB/install.xml | 4 ++-- administrator/language/en-GB/langmetadata.xml | 4 ++-- administrator/manifests/files/joomla.xml | 4 ++-- administrator/manifests/packages/pkg_en-GB.xml | 4 ++-- api/language/en-GB/install.xml | 4 ++-- api/language/en-GB/langmetadata.xml | 4 ++-- build.xml | 2 +- installation/language/en-GB/langmetadata.xml | 4 ++-- language/en-GB/install.xml | 4 ++-- language/en-GB/langmetadata.xml | 4 ++-- libraries/src/Version.php | 6 +++--- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/administrator/language/en-GB/install.xml b/administrator/language/en-GB/install.xml index 33e5241384b82..3fbaa2b639669 100644 --- a/administrator/language/en-GB/install.xml +++ b/administrator/language/en-GB/install.xml @@ -2,8 +2,8 @@ English (en-GB) en-GB - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/language/en-GB/langmetadata.xml b/administrator/language/en-GB/langmetadata.xml index ba5dc208257e2..c2186f073e3ef 100644 --- a/administrator/language/en-GB/langmetadata.xml +++ b/administrator/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/manifests/files/joomla.xml b/administrator/manifests/files/joomla.xml index a40693afda572..7c3b6a148b886 100644 --- a/administrator/manifests/files/joomla.xml +++ b/administrator/manifests/files/joomla.xml @@ -6,8 +6,8 @@ www.joomla.org (C) 2019 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt - 5.2.0-alpha1-dev - 2024-05 + 6.0.0-alpha1-dev + 2024-06 FILES_JOOMLA_XML_DESCRIPTION administrator/components/com_admin/script.php diff --git a/administrator/manifests/packages/pkg_en-GB.xml b/administrator/manifests/packages/pkg_en-GB.xml index 3724a56b68096..cf28ecbebfd99 100644 --- a/administrator/manifests/packages/pkg_en-GB.xml +++ b/administrator/manifests/packages/pkg_en-GB.xml @@ -2,8 +2,8 @@ English (en-GB) Language Pack en-GB - 5.2.0.1 - 2024-05 + 6.0.0.1 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/install.xml b/api/language/en-GB/install.xml index 1faf0713db7cc..fb4bc2abbbb29 100644 --- a/api/language/en-GB/install.xml +++ b/api/language/en-GB/install.xml @@ -2,8 +2,8 @@ English (en-GB) en-GB - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/langmetadata.xml b/api/language/en-GB/langmetadata.xml index 3ef719594d045..25125b865112f 100644 --- a/api/language/en-GB/langmetadata.xml +++ b/api/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/build.xml b/build.xml index 63057d9d0afb6..a3d623bf9b7c8 100644 --- a/build.xml +++ b/build.xml @@ -85,7 +85,7 @@ - + diff --git a/installation/language/en-GB/langmetadata.xml b/installation/language/en-GB/langmetadata.xml index 3a269ef1968f4..90cd4faffb0aa 100644 --- a/installation/language/en-GB/langmetadata.xml +++ b/installation/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (United Kingdom) - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/language/en-GB/install.xml b/language/en-GB/install.xml index 9c1b02846b682..fa438d8478f14 100644 --- a/language/en-GB/install.xml +++ b/language/en-GB/install.xml @@ -2,8 +2,8 @@ English (en-GB) en-GB - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/language/en-GB/langmetadata.xml b/language/en-GB/langmetadata.xml index 47a1a13e0a839..440a34dd14710 100644 --- a/language/en-GB/langmetadata.xml +++ b/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.2.0 - 2024-05 + 6.0.0 + 2024-06 Joomla! Project admin@joomla.org www.joomla.org diff --git a/libraries/src/Version.php b/libraries/src/Version.php index fd63fbb77d491..f0c5d41c0e61e 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -66,7 +66,7 @@ final class Version * @var string * @since 3.8.0 */ - public const EXTRA_VERSION = 'alpha-dev'; + public const EXTRA_VERSION = 'alpha1-dev'; /** * Development status. @@ -90,7 +90,7 @@ final class Version * @var string * @since 3.5 */ - public const RELDATE = '28-May-2024'; + public const RELDATE = '9-June-2024'; /** * Release time. @@ -99,7 +99,7 @@ final class Version * @since 3.5 */ - public const RELTIME = '17:00'; + public const RELTIME = '09:15'; /** * Release timezone. From c854508ba76520f73181a36a9ad24c97c6a4f5e3 Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Tue, 13 Aug 2024 15:09:02 +0200 Subject: [PATCH 012/279] Update drone signature --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index ebc82315227a1..4f38f47571537 100644 --- a/.drone.yml +++ b/.drone.yml @@ -430,6 +430,6 @@ trigger: --- kind: signature -hmac: d4131ffaa91f4925cae9118af99cf2a7d8bd6fc2dc59fb50259c7ced220c48d5 +hmac: da473d9b50d583b1545f5cf2a927682dd7a428583c898337136c3dfaf9a0a2e2 ... From ae903e92d2822c80e98b65959c7083cf03f1eac1 Mon Sep 17 00:00:00 2001 From: Gary Barclay <1881642+Bodge-IT@users.noreply.github.com> Date: Wed, 14 Aug 2024 10:51:20 +0100 Subject: [PATCH 013/279] Update release name (#43914) --- administrator/language/en-GB/install.xml | 2 +- administrator/language/en-GB/langmetadata.xml | 2 +- administrator/manifests/files/joomla.xml | 2 +- administrator/manifests/packages/pkg_en-GB.xml | 2 +- api/language/en-GB/install.xml | 2 +- api/language/en-GB/langmetadata.xml | 2 +- installation/language/en-GB/langmetadata.xml | 2 +- language/en-GB/install.xml | 2 +- language/en-GB/langmetadata.xml | 2 +- libraries/src/Version.php | 6 +++--- package-lock.json | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/administrator/language/en-GB/install.xml b/administrator/language/en-GB/install.xml index 3fbaa2b639669..77b009dc9287c 100644 --- a/administrator/language/en-GB/install.xml +++ b/administrator/language/en-GB/install.xml @@ -3,7 +3,7 @@ English (en-GB) en-GB 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/language/en-GB/langmetadata.xml b/administrator/language/en-GB/langmetadata.xml index c2186f073e3ef..8d3e34db1489d 100644 --- a/administrator/language/en-GB/langmetadata.xml +++ b/administrator/language/en-GB/langmetadata.xml @@ -2,7 +2,7 @@ English (en-GB) 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/manifests/files/joomla.xml b/administrator/manifests/files/joomla.xml index 7c3b6a148b886..ea5df5b80bcae 100644 --- a/administrator/manifests/files/joomla.xml +++ b/administrator/manifests/files/joomla.xml @@ -7,7 +7,7 @@ (C) 2019 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt 6.0.0-alpha1-dev - 2024-06 + 2024-08 FILES_JOOMLA_XML_DESCRIPTION administrator/components/com_admin/script.php diff --git a/administrator/manifests/packages/pkg_en-GB.xml b/administrator/manifests/packages/pkg_en-GB.xml index cf28ecbebfd99..188c85b018ce3 100644 --- a/administrator/manifests/packages/pkg_en-GB.xml +++ b/administrator/manifests/packages/pkg_en-GB.xml @@ -3,7 +3,7 @@ English (en-GB) Language Pack en-GB 6.0.0.1 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/install.xml b/api/language/en-GB/install.xml index fb4bc2abbbb29..ec9935a89b686 100644 --- a/api/language/en-GB/install.xml +++ b/api/language/en-GB/install.xml @@ -3,7 +3,7 @@ English (en-GB) en-GB 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/langmetadata.xml b/api/language/en-GB/langmetadata.xml index 25125b865112f..c335ce2cd7b31 100644 --- a/api/language/en-GB/langmetadata.xml +++ b/api/language/en-GB/langmetadata.xml @@ -2,7 +2,7 @@ English (en-GB) 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/installation/language/en-GB/langmetadata.xml b/installation/language/en-GB/langmetadata.xml index 90cd4faffb0aa..6ef39a8593e4b 100644 --- a/installation/language/en-GB/langmetadata.xml +++ b/installation/language/en-GB/langmetadata.xml @@ -2,7 +2,7 @@ English (United Kingdom) 6.0.0 - 2024-06 + 2024-08 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/language/en-GB/install.xml b/language/en-GB/install.xml index fa438d8478f14..f631606484cde 100644 --- a/language/en-GB/install.xml +++ b/language/en-GB/install.xml @@ -3,7 +3,7 @@ English (en-GB) en-GB 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/language/en-GB/langmetadata.xml b/language/en-GB/langmetadata.xml index 440a34dd14710..a0690012b1de3 100644 --- a/language/en-GB/langmetadata.xml +++ b/language/en-GB/langmetadata.xml @@ -2,7 +2,7 @@ English (en-GB) 6.0.0 - 2024-06 + 2024-08 Joomla! Project admin@joomla.org www.joomla.org diff --git a/libraries/src/Version.php b/libraries/src/Version.php index f0c5d41c0e61e..2ec2e02466a28 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -82,7 +82,7 @@ final class Version * @var string * @since 3.5 */ - public const CODENAME = 'Uthabiti'; + public const CODENAME = 'Kuimarisha'; /** * Release date. @@ -90,7 +90,7 @@ final class Version * @var string * @since 3.5 */ - public const RELDATE = '9-June-2024'; + public const RELDATE = '14-August-2024'; /** * Release time. @@ -99,7 +99,7 @@ final class Version * @since 3.5 */ - public const RELTIME = '09:15'; + public const RELTIME = '08:38'; /** * Release timezone. diff --git a/package-lock.json b/package-lock.json index fa1bfa5046938..eb2dfac02f9ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "joomla", - "version": "5.2.0", + "version": "6.0.0", "lockfileVersion": 3, "requires": true, "packages": { From 7fc53f59580726d34e657ab54b5375714eff4f1d Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Wed, 2 Oct 2024 18:54:24 +0100 Subject: [PATCH 014/279] [6.0] Removal of deprecated language strings (#44103) --- administrator/language/en-GB/com_fields.ini | 2 -- .../language/en-GB/com_joomlaupdate.ini | 6 ----- administrator/language/en-GB/joomla.ini | 2 -- administrator/language/en-GB/lib_joomla.ini | 2 -- administrator/language/en-GB/mod_user.ini | 4 ---- .../language/en-GB/plg_editors_codemirror.ini | 23 ------------------- .../language/en-GB/plg_fields_list.ini | 2 -- .../language/en-GB/plg_fields_sql.ini | 2 -- .../language/en-GB/plg_system_actionlogs.ini | 4 ---- .../en-GB/plg_system_privacyconsent.ini | 17 -------------- api/language/en-GB/joomla.ini | 2 -- installation/language/en-GB/joomla.ini | 4 ---- language/en-GB/files_joomla.sys.ini | 4 ---- language/en-GB/lib_joomla.ini | 2 -- 14 files changed, 76 deletions(-) diff --git a/administrator/language/en-GB/com_fields.ini b/administrator/language/en-GB/com_fields.ini index 1799bf0d9d165..d2f141ab70b13 100644 --- a/administrator/language/en-GB/com_fields.ini +++ b/administrator/language/en-GB/com_fields.ini @@ -21,8 +21,6 @@ COM_FIELDS_FIELD_EDITABLE_IN_BOTH="Both" COM_FIELDS_FIELD_EDITABLE_IN_LABEL="Editable In" COM_FIELDS_FIELD_EDITABLE_IN_SITE="Site" COM_FIELDS_FIELD_FORM_EDIT="Edit Field" -; The following string is deprecated and will be removed with 6.0 -COM_FIELDS_FIELD_FORM_LAYOUT_LABEL="Layout" COM_FIELDS_FIELD_FORM_NEW="New Field" COM_FIELDS_FIELD_FORMOPTIONS_HEADING="Form Options" COM_FIELDS_FIELD_GROUP_LABEL="Field Group" diff --git a/administrator/language/en-GB/com_joomlaupdate.ini b/administrator/language/en-GB/com_joomlaupdate.ini index 66daf5ab8fdb9..cd37ebc3606ed 100644 --- a/administrator/language/en-GB/com_joomlaupdate.ini +++ b/administrator/language/en-GB/com_joomlaupdate.ini @@ -15,8 +15,6 @@ COM_JOOMLAUPDATE_CONFIG_UPDATESOURCE_CUSTOM_ERROR="The custom URL field is empty COM_JOOMLAUPDATE_CONFIG_UPDATESOURCE_DEFAULT="Default" COM_JOOMLAUPDATE_CONFIG_UPDATESOURCE_LABEL="Update Channel" COM_JOOMLAUPDATE_CONFIG_UPDATESOURCE_NEXT="Joomla Next" -; Deprecated, will be removed with 6.0 -COM_JOOMLAUPDATE_CONFIG_UPDATESOURCE_TESTING="Testing" COM_JOOMLAUPDATE_CONFIG_VERSIONCHECK_DESC="Shows the checkbox in the pre–update check if any of the extensions installed on your site is potentially incompatible with the version of Joomla you are upgrading to. Note: the checkbox is displayed when upgrading to a new Joomla version family (minor or major version)." COM_JOOMLAUPDATE_CONFIG_VERSIONCHECK_LABEL="Potentially incompatible extensions checkbox" COM_JOOMLAUPDATE_CONFIGURATION="Joomla Update: Options" @@ -203,11 +201,7 @@ INSTL_EXTENSION_AVAILABLE="%s Available" INSTL_FILE_UPLOADS="File Uploads" INSTL_JSON_SUPPORT_AVAILABLE="JSON Support" INSTL_MB_LANGUAGE_IS_DEFAULT="MB Language is Default" -; Deprecated, will be removed with 6.0 -INSTL_MB_STRING_OVERLOAD_OFF="MB String Overload Off" INSTL_NOTICEMBLANGNOTDEFAULT="PHP mbstring language is not set to neutral. This can be set locally by entering php_value mbstring.language neutral in your .htaccess file." -; Deprecated, will be removed with 6.0 -INSTL_NOTICEMBSTRINGOVERLOAD="PHP mbstring function overload is set. This can be turned off locally by entering php_value mbstring.func_overload 0 in your .htaccess file." INSTL_OUTPUT_BUFFERING="Output Buffering" INSTL_PARSE_INI_FILE_AVAILABLE="INI Parser Support" INSTL_PHP_VERSION_NEWER="PHP Version >= %s" diff --git a/administrator/language/en-GB/joomla.ini b/administrator/language/en-GB/joomla.ini index 3433db03d7275..1b0230e5050e1 100644 --- a/administrator/language/en-GB/joomla.ini +++ b/administrator/language/en-GB/joomla.ini @@ -689,8 +689,6 @@ JGLOBAL_VOTES="Votes" JGLOBAL_VOTES_ASC="Votes ascending" JGLOBAL_VOTES_DESC="Votes descending" JGLOBAL_WARNCOOKIES="Warning! Cookies must be enabled to access the Administrator Backend." -; @deprecated 5.0 will be removed in 6.0 -JGLOBAL_WARNIE="Warning! Internet Explorer should not be used for proper operation of the Administrator Backend." JGLOBAL_WARNJAVASCRIPT="Warning! JavaScript must be enabled for proper operation of the Administrator Backend." JGLOBAL_WIDTH="Width" diff --git a/administrator/language/en-GB/lib_joomla.ini b/administrator/language/en-GB/lib_joomla.ini index 9730562cebd67..b940984bcd512 100644 --- a/administrator/language/en-GB/lib_joomla.ini +++ b/administrator/language/en-GB/lib_joomla.ini @@ -625,8 +625,6 @@ JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MANIFEST_NOT_REMOVED="Package Uninstall: Err JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSING_EXTENSION="Package Uninstall: This extension is missing or has already been uninstalled: %s" JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSINGMANIFEST="Package Uninstall: Missing manifest file." JLIB_INSTALLER_ERROR_PACK_UNINSTALL_NOT_PROPER="Package Uninstall: This extension may have already been uninstalled or might not have been uninstalled properly: %s" -; The following string is deprecated and will be removed with 6.0 -JLIB_INSTALLER_ERROR_PACK_UNINSTALL_UNKNOWN_EXTENSION="Trying to uninstall unknown extension from package. This extension may have already been removed earlier." JLIB_INSTALLER_ERROR_PACK_UNINSTALL_WARNCOREPACK="Package Uninstall: Trying to uninstall core package." JLIB_INSTALLER_ERROR_PLG_DISCOVER_STORE_DETAILS="Plugin Discover install: Failed to store plugin details." JLIB_INSTALLER_ERROR_PLG_REFRESH_MANIFEST_CACHE="Plugin Refresh manifest cache: Failed to store plugin details." diff --git a/administrator/language/en-GB/mod_user.ini b/administrator/language/en-GB/mod_user.ini index adbe9df8f39c7..e7d067241c2de 100644 --- a/administrator/language/en-GB/mod_user.ini +++ b/administrator/language/en-GB/mod_user.ini @@ -10,7 +10,3 @@ MOD_USER_LIGHTDARK_MODE="Light/Dark Mode" MOD_USER_MENU="User Menu" MOD_USER_TITLE="Signed in as %s" MOD_USER_XML_DESCRIPTION="This module shows the User Menu and is intended to be displayed in the 'status' position." - -; Deprecated, will be removed with 6.0 -MOD_USER_LIGHT_MODE="Light Mode" -MOD_USER_DARK_MODE="Dark Mode" diff --git a/administrator/language/en-GB/plg_editors_codemirror.ini b/administrator/language/en-GB/plg_editors_codemirror.ini index d3028b388d99f..3b490ebe522f0 100644 --- a/administrator/language/en-GB/plg_editors_codemirror.ini +++ b/administrator/language/en-GB/plg_editors_codemirror.ini @@ -26,26 +26,3 @@ PLG_CODEMIRROR_FIELDSET_TOOLBAR_OPTIONS_LABEL="Toolbar Options" PLG_CODEMIRROR_TOGGLE_FULL_SCREEN="Press %s to toggle Full Screen editing." PLG_CODEMIRROR_XML_DESCRIPTION="This plugin loads the CodeMirror editor." PLG_EDITORS_CODEMIRROR="Editor - CodeMirror" - -; Deprecated, will be removed with 6.0 -PLG_CODEMIRROR_FIELDSET_APPEARANCE_OPTIONS_LABEL="Appearance Options" -PLG_CODEMIRROR_FIELD_ACTIVELINE_COLOR_LABEL="Active Line Colour" -PLG_CODEMIRROR_FIELD_ACTIVELINE_LABEL="Highlight Active Line" -PLG_CODEMIRROR_FIELD_AUTOCLOSETAGS_LABEL="Tag Completion" -PLG_CODEMIRROR_FIELD_FONT_FAMILY_LABEL="Font" -PLG_CODEMIRROR_FIELD_FONT_SIZE_LABEL="Font Size (px)" -PLG_CODEMIRROR_FIELD_HIGHLIGHT_MATCH_COLOR_LABEL="Matching Tag Colour" -PLG_CODEMIRROR_FIELD_KEYMAP_SUBLIME="Sublime Text" -PLG_CODEMIRROR_FIELD_KEYMAP_VIM="Vim" -PLG_CODEMIRROR_FIELD_LINE_HEIGHT_LABEL="Line Height (em)" -PLG_CODEMIRROR_FIELD_MARKERGUTTER_LABEL="Gutters" -PLG_CODEMIRROR_FIELD_MATCHBRACKETS_LABEL="Match Brackets" -PLG_CODEMIRROR_FIELD_MATCHTAGS_LABEL="Match Tags" -PLG_CODEMIRROR_FIELD_PREVIEW_LABEL="Preview" -PLG_CODEMIRROR_FIELD_THEME_LABEL="Theme" -PLG_CODEMIRROR_FIELD_VALUE_FONT_FAMILY_DEFAULT="Browser Default" -PLG_CODEMIRROR_FIELD_VALUE_SCROLLBARSTYLE_DEFAULT="Default" -PLG_CODEMIRROR_FIELD_VALUE_SCROLLBARSTYLE_LABEL="Scrollbar Style" -PLG_CODEMIRROR_FIELD_VALUE_SCROLLBARSTYLE_OVERLAY="Overlay" -PLG_CODEMIRROR_FIELD_VALUE_SCROLLBARSTYLE_SIMPLE="Simple" -PLG_CODEMIRROR_FIELD_VIM_KEYBINDING_LABEL="Vim Keybinding" diff --git a/administrator/language/en-GB/plg_fields_list.ini b/administrator/language/en-GB/plg_fields_list.ini index 4208cf647e8e3..abd1f80635d64 100644 --- a/administrator/language/en-GB/plg_fields_list.ini +++ b/administrator/language/en-GB/plg_fields_list.ini @@ -5,8 +5,6 @@ PLG_FIELDS_LIST="Fields - List" PLG_FIELDS_LIST_LABEL="List (%s)" -; The following string is deprecated and will be removed with 6.0 -PLG_FIELDS_LIST_PARAMS_FORM_LAYOUT_FANCY_SELECT="Enhanced select" PLG_FIELDS_LIST_PARAMS_HEADER_DESC="Add a string with no value at the top of the dropdown list eg ' - Select Article - '." PLG_FIELDS_LIST_PARAMS_HEADER_LABEL="Header" PLG_FIELDS_LIST_PARAMS_MULTIPLE_LABEL="Multiple" diff --git a/administrator/language/en-GB/plg_fields_sql.ini b/administrator/language/en-GB/plg_fields_sql.ini index 0354e65bde29b..69403cdbc53c5 100644 --- a/administrator/language/en-GB/plg_fields_sql.ini +++ b/administrator/language/en-GB/plg_fields_sql.ini @@ -6,8 +6,6 @@ PLG_FIELDS_SQL="Fields - SQL" PLG_FIELDS_SQL_CREATE_NOT_POSSIBLE="Only a Super User can create or edit an SQL field!" PLG_FIELDS_SQL_LABEL="SQL (%s)" -; The following string is deprecated and will be removed with 6.0 -PLG_FIELDS_SQL_PARAMS_FORM_LAYOUT_FANCY_SELECT="Enhanced select" PLG_FIELDS_SQL_PARAMS_HEADER_DESC="Add a string with no value at the top of the dropdown list eg ' - Select Article - '." PLG_FIELDS_SQL_PARAMS_HEADER_LABEL="Header" PLG_FIELDS_SQL_PARAMS_MULTIPLE_LABEL="Multiple" diff --git a/administrator/language/en-GB/plg_system_actionlogs.ini b/administrator/language/en-GB/plg_system_actionlogs.ini index 1f0ec95576f52..2627c9443c7d7 100644 --- a/administrator/language/en-GB/plg_system_actionlogs.ini +++ b/administrator/language/en-GB/plg_system_actionlogs.ini @@ -20,7 +20,3 @@ PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED="User {usernam PLG_SYSTEM_ACTIONLOGS_CONTENT_TRASHED="User {username} trashed the {type} {title}" PLG_SYSTEM_ACTIONLOGS_CONTENT_UNPUBLISHED="User {username} unpublished the {type} {title}" PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED="User {username} updated the {type} {title}" - -; All the following strings are deprecated and will be removed with 6.0 -PLG_SYSTEM_ACTIONLOGS_LOG_DELETE_PERIOD="Days to delete logs after" -PLG_SYSTEM_ACTIONLOGS_LOG_DELETE_PERIOD_DESC="Enter 0 if you don't want to delete the logs." diff --git a/administrator/language/en-GB/plg_system_privacyconsent.ini b/administrator/language/en-GB/plg_system_privacyconsent.ini index f15388b120217..f89da10034c0a 100644 --- a/administrator/language/en-GB/plg_system_privacyconsent.ini +++ b/administrator/language/en-GB/plg_system_privacyconsent.ini @@ -25,20 +25,3 @@ PLG_SYSTEM_PRIVACYCONSENT_REDIRECT_MESSAGE_DESC="Custom message to be displayed PLG_SYSTEM_PRIVACYCONSENT_REDIRECT_MESSAGE_LABEL="Redirect Message" PLG_SYSTEM_PRIVACYCONSENT_SUBJECT="Privacy Policy" PLG_SYSTEM_PRIVACYCONSENT_XML_DESCRIPTION="Basic plugin to request user's consent to the site's privacy policy. Existing users who have not consented yet will be redirected on login to update their profile." - -; All the following strings are deprecated and will be removed with 6.0 -PLG_SYSTEM_PRIVACYCONSENT_CACHETIMEOUT_DESC="How often the check is performed." -PLG_SYSTEM_PRIVACYCONSENT_CACHETIMEOUT_LABEL="Periodic check (days)" -PLG_SYSTEM_PRIVACYCONSENT_CONSENTEXPIRATION_DESC="Number of days after which the privacy consent shall expire." -PLG_SYSTEM_PRIVACYCONSENT_CONSENTEXPIRATION_LABEL="Expiration" -PLG_SYSTEM_PRIVACYCONSENT_EMAIL_REMIND_BODY="Your Privacy Consent given at {URL} will expire in few days, you can renew the privacy consent for this website.\n\nIn order to do this, you can complete one of the following tasks:\n\n1. Visit the following URL: {TOKENURL}\n\n2. Copy your token from this email, visit the referenced URL, and paste your token into the form.\nURL: {FORMURL}\nToken: {TOKEN}\n\nPlease note that this token is only valid for this account." -PLG_SYSTEM_PRIVACYCONSENT_EMAIL_REMIND_SUBJECT="Privacy Consent at {SITENAME}" -PLG_SYSTEM_PRIVACYCONSENT_EXPIRATION_FIELDSET_LABEL="Expiration" -PLG_SYSTEM_PRIVACYCONSENT_FIELD_ENABLED_DESC="When enabled it performs checks for consent expiration." -PLG_SYSTEM_PRIVACYCONSENT_FIELD_ENABLED_LABEL="Enable" -PLG_SYSTEM_PRIVACYCONSENT_MAIL_REQUEST_REMINDER_DESC="Reminder to renew the privacy consent for this website." -PLG_SYSTEM_PRIVACYCONSENT_MAIL_REQUEST_REMINDER_TITLE="System - Privacy Consent: Renew Consent" -PLG_SYSTEM_PRIVACYCONSENT_NOTIFICATION_USER_PRIVACY_EXPIRED_MESSAGE="Privacy consent has expired for %1$s." -PLG_SYSTEM_PRIVACYCONSENT_NOTIFICATION_USER_PRIVACY_EXPIRED_SUBJECT="Privacy Consent Expired" -PLG_SYSTEM_PRIVACYCONSENT_REMINDBEFORE_DESC="Number of days to send a reminder before the expiration of the privacy consent." -PLG_SYSTEM_PRIVACYCONSENT_REMINDBEFORE_LABEL="Remind" diff --git a/api/language/en-GB/joomla.ini b/api/language/en-GB/joomla.ini index 7e5cf62b974c4..6e34f0f568655 100644 --- a/api/language/en-GB/joomla.ini +++ b/api/language/en-GB/joomla.ini @@ -681,8 +681,6 @@ JGLOBAL_VOTES="Votes" JGLOBAL_VOTES_ASC="Votes ascending" JGLOBAL_VOTES_DESC="Votes descending" JGLOBAL_WARNCOOKIES="Warning! Cookies must be enabled to access the Administrator Backend." -; @deprecated 5.0 will be removed in 6.0 -JGLOBAL_WARNIE="Warning! Internet Explorer should not be used for proper operation of the Administrator Backend." JGLOBAL_WARNJAVASCRIPT="Warning! JavaScript must be enabled for proper operation of the Administrator Backend." JGLOBAL_WIDTH="Width" diff --git a/installation/language/en-GB/joomla.ini b/installation/language/en-GB/joomla.ini index 42c31384ed83a..bd5fe1989d71b 100644 --- a/installation/language/en-GB/joomla.ini +++ b/installation/language/en-GB/joomla.ini @@ -42,13 +42,9 @@ INSTL_WARNJSON="Your PHP installation needs to have JSON enabled for Joomla to b INSTL_DATABASE_SUPPORT="Database Support:" INSTL_JSON_SUPPORT_AVAILABLE="JSON Support" INSTL_MB_LANGUAGE_IS_DEFAULT="MB Language is Default" -; Deprecated, will be removed with 6.0 -INSTL_MB_STRING_OVERLOAD_OFF="MB String Overload Off" INSTL_NOTICE_DATABASE_SUPPORT="No supported databases were found." INSTL_NOTICE_JSON_SUPPORT_AVAILABLE="Your PHP installation needs to have JSON enabled for Joomla to be installed!" INSTL_NOTICE_MBLANG_NOTDEFAULT="PHP mbstring language is not set to neutral. This can be set locally by entering php_value mbstring.language neutral in your .htaccess file." -; Deprecated, will be removed with 6.0 -INSTL_NOTICE_MBSTRING_OVERLOAD_OFF="PHP mbstring function overload is set. This can be turned off locally by entering php_value mbstring.func_overload 0 in your .htaccess file." INSTL_NOTICE_PARSE_INI_FILE_AVAILABLE="The required php functions parse_ini_file and parse_ini_string are disabled on your server." INSTL_NOTICE_XML_SUPPORT="XML Support is not available. This should be enabled by default in php but Ubuntu users may need to install this by doing sudo apt-get install php-xml followed by web server restart." INSTL_NOTICE_ZLIB_COMPRESSION_SUPPORT="Zlib compression is not set. This can be turned on locally by entering zlib.output_compression = On in your php.ini file." diff --git a/language/en-GB/files_joomla.sys.ini b/language/en-GB/files_joomla.sys.ini index 62031e108ca39..d10d8c9161532 100644 --- a/language/en-GB/files_joomla.sys.ini +++ b/language/en-GB/files_joomla.sys.ini @@ -5,7 +5,3 @@ FILES_JOOMLA="Joomla CMS" FILES_JOOMLA_XML_DESCRIPTION="Joomla! 5 Content Management System." - -; All the following strings are deprecated and will be removed with 6.0 -FILES_JOOMLA_ERROR_FILE_FOLDER="Error on deleting file or folder %s" -FILES_JOOMLA_ERROR_MANIFEST="Error on updating manifest cache: (type, element, folder, client) = (%s, %s, %s, %s)" diff --git a/language/en-GB/lib_joomla.ini b/language/en-GB/lib_joomla.ini index 55dba9313be48..867b99ac71159 100644 --- a/language/en-GB/lib_joomla.ini +++ b/language/en-GB/lib_joomla.ini @@ -619,8 +619,6 @@ JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MANIFEST_NOT_REMOVED="Package Uninstall: Err JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSING_EXTENSION="Package Uninstall: This extension is missing or has already been uninstalled: %s" JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSINGMANIFEST="Package Uninstall: Missing manifest file." JLIB_INSTALLER_ERROR_PACK_UNINSTALL_NOT_PROPER="Package Uninstall: This extension may have already been uninstalled or might not have been uninstalled properly: %s" -; The following string is deprecated and will be removed with 6.0 -JLIB_INSTALLER_ERROR_PACK_UNINSTALL_UNKNOWN_EXTENSION="Trying to uninstall unknown extension from package. This extension may have already been removed earlier." JLIB_INSTALLER_ERROR_PACK_UNINSTALL_WARNCOREPACK="Package Uninstall: Trying to uninstall core package." JLIB_INSTALLER_ERROR_PLG_DISCOVER_STORE_DETAILS="Plugin Discover install: Failed to store plugin details." JLIB_INSTALLER_ERROR_PLG_REFRESH_MANIFEST_CACHE="Plugin Refresh manifest cache: Failed to store plugin details." From 3e45ba2a27f087fe02ad13fec7059e3103491ec2 Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Wed, 2 Oct 2024 22:34:09 +0100 Subject: [PATCH 015/279] [6.0] jooa11y remove deprecated strings (#44101) --- .../language/en-GB/plg_system_jooa11y.ini | 131 ------------------ 1 file changed, 131 deletions(-) diff --git a/administrator/language/en-GB/plg_system_jooa11y.ini b/administrator/language/en-GB/plg_system_jooa11y.ini index 060e5ea903dd8..b102ad73a635f 100644 --- a/administrator/language/en-GB/plg_system_jooa11y.ini +++ b/administrator/language/en-GB/plg_system_jooa11y.ini @@ -29,134 +29,3 @@ PLG_SYSTEM_JOOA11Y_FIELD_WEB_COMPONENTS_DESC="Provide a list of all known web co PLG_SYSTEM_JOOA11Y_KEY="Key" PLG_SYSTEM_JOOA11Y_VALUE="Value" PLG_SYSTEM_JOOA11Y_XML_DESCRIPTION="The Joomla Accessibility Checker visually highlights common accessibility and usability issues. Geared towards content authors, the plugin identifies errors or warnings and provides guidance on how to fix them. Please be aware that this plugin does not offer an exhaustive analysis of your website, nor does it automatically ensure your website's accessibility. It's important to select a template that is inherently accessible to ensure your site meets accessibility standards." - -; All the following strings are deprecated and will be removed with 6.0 -PLG_SYSTEM_JOOA11Y_ALERT_CLOSE="Close" -PLG_SYSTEM_JOOA11Y_ALERT_TEXT="Alert" -PLG_SYSTEM_JOOA11Y_CONTAINER_LABEL="Accessibility Checker" -PLG_SYSTEM_JOOA11Y_CONTRAST="Contrast" -PLG_SYSTEM_JOOA11Y_DARK_MODE="Dark Mode" -PLG_SYSTEM_JOOA11Y_ERROR="Error" -PLG_SYSTEM_JOOA11Y_FORM_LABELS="Form labels" -PLG_SYSTEM_JOOA11Y_GOOD="Good" -PLG_SYSTEM_JOOA11Y_HIDE_OUTLINE="Hide Outline" -PLG_SYSTEM_JOOA11Y_HIDE_SETTINGS="Hide Settings" -PLG_SYSTEM_JOOA11Y_LANG_CODE="en" -PLG_SYSTEM_JOOA11Y_LINKS_ADVANCED="Links (Advanced)" -PLG_SYSTEM_JOOA11Y_MAIN_TOGGLE_LABEL="Check Accessibility" -PLG_SYSTEM_JOOA11Y_OFF="Off" -PLG_SYSTEM_JOOA11Y_ON="On" -PLG_SYSTEM_JOOA11Y_PAGE_OUTLINE="Page Outline" -PLG_SYSTEM_JOOA11Y_SETTINGS="Settings" -PLG_SYSTEM_JOOA11Y_SHORTCUT_SR="Skip to issue. Keyboard shortcut: Alt period" -PLG_SYSTEM_JOOA11Y_SHORTCUT_TOOLTIP="Skip to issue" -PLG_SYSTEM_JOOA11Y_SHOW_OUTLINE="Show Outline" -PLG_SYSTEM_JOOA11Y_SHOW_SETTINGS="Show Settings" -PLG_SYSTEM_JOOA11Y_WARNING="Warning" -PLG_SYSTEM_JOOA11Y_AVG_WORD_PER_SENTENCE="Average words per sentence:" -PLG_SYSTEM_JOOA11Y_COMPLEX_WORDS="Complex words:" -PLG_SYSTEM_JOOA11Y_DIFFICULT_READABILITY="Difficult" -PLG_SYSTEM_JOOA11Y_FAIRLY_DIFFICULT_READABILITY="Fairly difficult" -PLG_SYSTEM_JOOA11Y_GOOD_READABILITY="Good" -PLG_SYSTEM_JOOA11Y_READABILITY="Readability:" -PLG_SYSTEM_JOOA11Y_TOTAL_WORDS="Words:" -PLG_SYSTEM_JOOA11Y_VERY_DIFFICULT_READABILITY="Very difficult" -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_BOTH="Accessibility Errors: %(errorCount). Accessibility Warnings: %(warningCount)." -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_ERRORS="Accessibility Errors: %(errorCount)." -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_HIDDEN="The item you are trying to view is not visible; it may be hidden or inside of an accordion or tab component. Here's a preview: " -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_ICON="Total issues found: %(totalCount)" -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_NONE="No accessibility errors found." -PLG_SYSTEM_JOOA11Y_PANEL_STATUS_WARNINGS="Accessibility Warnings: %(warningCount)." -PLG_SYSTEM_JOOA11Y_HEADING_EMPTY="Empty heading found! To fix, delete this line or change its format from Heading %(level) to Normal or Paragraph." -PLG_SYSTEM_JOOA11Y_HEADING_EMPTY_WITH_IMAGE="Heading has no text, but contains an image. If this is not a heading, change its format from Heading %(level) to Normal or Paragraph. Otherwise, please add alt text to the image if it is not decorative." -PLG_SYSTEM_JOOA11Y_HEADING_FIRST="The first heading on a page should usually be a Heading 1 or Heading 2. Heading 1 should be the start of the main content section, and is the main heading that describes the overall purpose of the page. Learn more about Heading Structure." -PLG_SYSTEM_JOOA11Y_HEADING_LONG="Heading is long! Headings should be used to organize content and convey structure. They should be brief, informative, and unique. Please keep headings less than 160 characters (no more than a sentence)." -PLG_SYSTEM_JOOA11Y_HEADING_LONG_INFO="Character Count: %(headingLength)." -PLG_SYSTEM_JOOA11Y_HEADING_MISSING_ONE="Missing Heading 1. Heading 1 should be the start of the main content area, and is the main heading that describes the overall purpose of the page. Learn more about Heading Structure." -PLG_SYSTEM_JOOA11Y_HEADING_NON_CONSECUTIVE_LEVEL="Non-consecutive heading level used. Headings should never skip levels, or go from Heading %(prevLevel) to Heading %(level)." -PLG_SYSTEM_JOOA11Y_PANEL_HEADING_MISSING_ONE="Missing Heading 1!" -PLG_SYSTEM_JOOA11Y_LINK_BEST_PRACTICES="Consider replacing the link text: %(error)" -PLG_SYSTEM_JOOA11Y_LINK_BEST_PRACTICES_DETAILS="
  • "Click here" places focus on mouse mechanics, when many people do not use a mouse or may be viewing this website on a mobile device. Consider using a different verb that relates to the task.
  • Avoid using HTML symbols as call to actions unless they are hidden to assistive technologies.
" -PLG_SYSTEM_JOOA11Y_LINK_EMPTY="Remove empty links without any text." -PLG_SYSTEM_JOOA11Y_LINK_EMPTY_LINK_NO_LABEL="Link does not have discernable text that is visible to screen readers and other assistive technology. To fix:
  • Add some concise text that describes where the link takes you.
  • If it is an icon link or SVG it is likely missing a descriptive label.
  • If you think this link is an error due to a copy/paste bug, consider deleting it.
" -PLG_SYSTEM_JOOA11Y_LINK_LABEL="The descriptive label for this link is: %(linkText)" -PLG_SYSTEM_JOOA11Y_LINK_STOPWORD="Link text may not be descriptive enough out of context: %(error)" -PLG_SYSTEM_JOOA11Y_LINK_STOPWORD_TIP="Tip! Link text should always be clear, unique, and meaningful. Avoid common words like \"click here\"; or \"learn more\"." -PLG_SYSTEM_JOOA11Y_LINK_URL="Longer, less intelligible URLs used as link text might be difficult to listen to with assistive technology. In most cases, it is better to use human-readable text instead of the URL. Short URLs (such as a site's homepage) are okay." -PLG_SYSTEM_JOOA11Y_LINK_URL_TIP="Tip! Link text should always be clear, unique, and meaningful so it could be understood out of context." -PLG_SYSTEM_JOOA11Y_FILE_TYPE_WARNING="Link points to a PDF or downloadable file (e.g. MP3, Zip, Word Doc) without warning. Indicate the file type within the link text. If it is a large file, consider including the file size." -PLG_SYSTEM_JOOA11Y_FILE_TYPE_WARNING_TIP="Example: Executive Report (PDF, 3MB)" -PLG_SYSTEM_JOOA11Y_LINK_IDENTICAL_NAME="Link has identical text as another link, although it points to a different page. Multiple links with the same text may cause confusion for people who use screen readers." -PLG_SYSTEM_JOOA11Y_LINK_IDENTICAL_NAME_TIP="Consider making the following link more descriptive to help distinguish it from other links: %(linkText)" -PLG_SYSTEM_JOOA11Y_NEW_TAB_WARNING="Link opens in a new tab or window without warning. Doing so can be disorienting, especially for people who have difficulty perceiving visual content. Secondly, it is not always a good practice to control someone's experience or make decisions for them. Indicate that the link opens in a new window within the link text." -PLG_SYSTEM_JOOA11Y_NEW_TAB_WARNING_TIP="Tip! Learn best practices: opening links in new browser windows and tabs." -PLG_SYSTEM_JOOA11Y_HYPERLINK_ALT_LENGTH_MESSAGE="Alt text description on a linked image is too long. The alt text on linked images should describe where the link takes you, not a literal description of the image. Consider using the title of the page it links to as the alt text." -PLG_SYSTEM_JOOA11Y_HYPERLINK_ALT_LENGTH_MESSAGE_INFO="The alt text is %(altLength) characters: %(altText)" -PLG_SYSTEM_JOOA11Y_IMAGE_FIGURE_DECORATIVE="Image is marked as decorative and will be ignored by assistive technology." -PLG_SYSTEM_JOOA11Y_IMAGE_FIGURE_DECORATIVE_INFO="Although a caption was provided, the image should also have alt text in most cases.
  • The alt text should provide a concise description of what is in the image.
  • The caption should usually provide context to relate the image back to the surrounding content, or give attention to a particular piece of information.
Learn more: alt versus figcaption." -PLG_SYSTEM_JOOA11Y_IMAGE_FIGURE_DUPLICATE_ALT="Do not use the exact same words for both the alt and caption text. Screen readers will announce the information twice." -PLG_SYSTEM_JOOA11Y_LINK_ALT_HAS_BAD_WORD_MESSAGE="File extension within the alt text found. If the image conveys a story, mood, or important information - be sure to describe the image." -PLG_SYSTEM_JOOA11Y_LINK_ALT_HAS_BAD_WORD_MESSAGE_INFO="Remove: %(error).
The alt text for this image is: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_ALT_HAS_SUS_WORD_MESSAGE="Assistive technologies already indicate that this is an image, so "%(error)" or "%(error) of" may be redundant." -PLG_SYSTEM_JOOA11Y_LINK_ALT_HAS_SUS_WORD_MESSAGE_INFO="The alt text for this image is: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_ALT_PLACEHOLDER_MESSAGE="Non-descript or placeholder alt text found. Replace the following alt text with something more meaningful: %(altText)." -PLG_SYSTEM_JOOA11Y_LINK_ALT_TOO_LONG_MESSAGE="Alt text description is too long. Alt text should be concise, yet meaningful like a tweet (around 100 characters). If this is a complex image or a graph, consider putting the long description of the image in the text below or an accordion component." -PLG_SYSTEM_JOOA11Y_LINK_ALT_TOO_LONG_MESSAGE_INFO="The alt text is %(altLength) characters: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_ANCHOR_LINK_AND_ALT_MESSAGE="Image link contains both alt text and surrounding link text. If this image is decorative and is being used as a functional link to another page, consider marking the image as decorative - the surrounding link text should suffice." -PLG_SYSTEM_JOOA11Y_LINK_ANCHOR_LINK_AND_ALT_MESSAGE_INFO="Alt text: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_DECORATIVE_MESSAGE="Image is marked as decorative and will be ignored by assistive technology. If the image conveys a story, mood or important information - be sure to add alt text." -PLG_SYSTEM_JOOA11Y_LINK_HYPERLINKED_IMAGE_ARIA_HIDDEN="Link around image has aria-hidden="true" but is still keyboard focusable. If you are intending to hide a redundant or duplicate link, add tabindex="-1" as well." -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_BAD_ALT_MESSAGE="File extension within the alt text found. Ensure the alt text describes the destination of the link, not a literal description of the image. Remove: %(error)." -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_BAD_ALT_MESSAGE_INFO="The alt text for this image is: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_LINK_ALT_TEXT_MESSAGE="Image link contains alt text, although please ensure alt text describes the destination page. Consider using the title of the page it links to as the alt text. Does the alt text describe where the link takes you?" -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_LINK_ALT_TEXT_MESSAGE_INFO="Alt text: %(altText)" -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_LINK_NULL_ALT_NO_TEXT_MESSAGE="Image within link is marked as decorative and there is no link text. Please add alt text to the image that describes the destination of the link." -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_PLACEHOLDER_ALT_MESSAGE="Non-descript or placeholder alt text within a linked image found. Ensure the alt text describes the destination of the link, not a literal description of the image. Replace the following alt text: %(altText)." -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_SUS_ALT_MESSAGE="Assistive technologies already indicate that this is an image, so "%(error)" or "%(error) of" may be redundant. Ensure the alt text describes the destination of the link, not a literal description of the image." -PLG_SYSTEM_JOOA11Y_LINK_IMAGE_SUS_ALT_MESSAGE_INFO="The alt text for this image is: %(altText)." -PLG_SYSTEM_JOOA11Y_LINK_LINK_HAS_ALT_MESSAGE="Image is marked as decorative, although the link is using the surrounding text as a descriptive label." -PLG_SYSTEM_JOOA11Y_LINK_PASS_ALT="The alt text for this image is: %(altText)" -PLG_SYSTEM_JOOA11Y_MISSING_ALT_LINK_BUT_HAS_TEXT_MESSAGE="Image is being used as a link with surrounding text, although the alt attribute should be marked as decorative." -PLG_SYSTEM_JOOA11Y_MISSING_ALT_LINK_MESSAGE="Image is being used as a link but is missing alt text! Please ensure alt text describes where the link takes you." -PLG_SYSTEM_JOOA11Y_MISSING_ALT_MESSAGE="Missing alt text! If the image conveys a story, mood, or important information - be sure to describe the image." -PLG_SYSTEM_JOOA11Y_TEXT_UNDERLINE_WARNING="Underlined text can be confused with links." -PLG_SYSTEM_JOOA11Y_TEXT_UNDERLINE_WARNING_TIP="Consider using a different style such as <em>emphasis</em>." -PLG_SYSTEM_JOOA11Y_LABELS_ARIA_LABEL_INPUT_MESSAGE="Input has an accessible name, although please ensure there is a visible label too." -PLG_SYSTEM_JOOA11Y_LABELS_ARIA_LABEL_INPUT_MESSAGE_INFO="The accessible name for this input is: %(ariaLabel)" -PLG_SYSTEM_JOOA11Y_LABELS_INPUT_RESET_MESSAGE="Reset buttons should not be used unless specifically needed because they are easy to activate by mistake." -PLG_SYSTEM_JOOA11Y_LABELS_INPUT_RESET_MESSAGE_TIP="Tip! Learn why Reset and Cancel buttons pose usability issues." -PLG_SYSTEM_JOOA11Y_LABELS_MISSING_IMAGE_INPUT_MESSAGE="Image button is missing alt text. Please add alt text to provide an accessible name. For example: Search or Submit." -PLG_SYSTEM_JOOA11Y_LABELS_MISSING_LABEL_MESSAGE="There is no label associated with this input. Please add an id to this input, and add a matching for attribute to the label." -PLG_SYSTEM_JOOA11Y_LABELS_NO_FOR_ATTRIBUTE_MESSAGE="There is no label associated with this input. Add a for attribute to the label that matches the id of this input." -PLG_SYSTEM_JOOA11Y_LABELS_NO_FOR_ATTRIBUTE_MESSAGE_INFO="The ID for this input is: id="%(t)"" -PLG_SYSTEM_JOOA11Y_EMBED_AUDIO="Please ensure to provide a transcript for all podcasts. Providing transcripts for audio content is a mandatory Level A requirement. Transcripts support people who are D/deaf or hard-of-hearing, but can benefit everyone. Consider placing the transcript below or within an accordion panel." -PLG_SYSTEM_JOOA11Y_EMBED_GENERAL_WARNING="Unable to check embedded content. Please make sure that images have alt text, videos have captions, text has sufficient contrast, and interactive components are keyboard accessible." -PLG_SYSTEM_JOOA11Y_EMBED_MISSING_TITLE="Embedded content requires an accessible name that describes its contents. Please provide a unique title or aria-label attribute on the iframe element. Learn more about iFrames." -PLG_SYSTEM_JOOA11Y_EMBED_VIDEO="Please ensure all videos have closed captioning. Providing captions for all audio and video content is a mandatory Level A requirement. Captions support people who are D/deaf or hard-of-hearing." -PLG_SYSTEM_JOOA11Y_CONTRAST_ERROR_INPUT_MESSAGE="The text within this input does not have enough contrast with the background. The contrast ratio should be at least 4.5:1 for normal text and 3:1 for large text." -PLG_SYSTEM_JOOA11Y_CONTRAST_ERROR_INPUT_MESSAGE_INFO="The contrast ratio is %(cratio)." -PLG_SYSTEM_JOOA11Y_CONTRAST_ERROR_MESSAGE="This text does not have enough contrast with the background. The contrast ratio should be at least 4.5:1 for normal text and 3:1 for large text." -PLG_SYSTEM_JOOA11Y_CONTRAST_ERROR_MESSAGE_INFO="The contrast ratio is %(cratio) for the following text: %(nodetext)" -PLG_SYSTEM_JOOA11Y_CONTRAST_WARNING_MESSAGE="The contrast of this text is unknown and needs to be manually reviewed. Ensure the text and the background have strong contrasting colours. The contrast ratio should be at least 4.5:1 for normal text and 3:1 for large text." -PLG_SYSTEM_JOOA11Y_CONTRAST_WARNING_MESSAGE_INFO="Please review contrast of the following text:
%(nodetext)" -PLG_SYSTEM_JOOA11Y_READABILITY_NOT_ENOUGH_CONTENT_MESSAGE="Not enough content to calculate readability score." -PLG_SYSTEM_JOOA11Y_READABILITY_NO_P_OR_LI_MESSAGE="Unable to calculate readability score. No paragraph <p> or list content <li> found." -PLG_SYSTEM_JOOA11Y_QA_BAD_ITALICS="Bold and italic tags have semantic meaning, and should not be used to highlight entire paragraphs. Bolded text should be used to provide strong emphasis on a word or phrase. Italics should be used to highlight proper names (i.e. book and article titles), foreign words, quotes. Long quotes should be formatted as a blockquote." -PLG_SYSTEM_JOOA11Y_QA_BAD_LINK="Bad link found. Link appears to point to a development environment. This link points to: %(el)" -PLG_SYSTEM_JOOA11Y_QA_BLOCKQUOTE_MESSAGE="Is this a heading? %(bqHeadingText)" -PLG_SYSTEM_JOOA11Y_QA_BLOCKQUOTE_MESSAGE_TIP="Blockquotes should be used for quotes only. If this is intended to be a heading, change this blockquote to a semantic heading (e.g. Heading 2 or Heading 3)." -PLG_SYSTEM_JOOA11Y_QA_DUPLICATE_ID="Found duplicate ID. Duplicate ID errors are known to cause problems for assistive technologies when they are trying to interact with content." -PLG_SYSTEM_JOOA11Y_QA_DUPLICATE_ID_TIP="Please remove or change the following ID: %(id)" -PLG_SYSTEM_JOOA11Y_QA_FAKE_HEADING="Is this a heading? %(boldtext)" -PLG_SYSTEM_JOOA11Y_QA_FAKE_HEADING_INFO="A line of bold text might look like a heading, but someone using a screen reader cannot tell that it is important or jump to its content. Bolded text should never replace semantic headings (Heading 2 to Heading 6)." -PLG_SYSTEM_JOOA11Y_QA_PAGE_LANGUAGE_MESSAGE="Page language not declared! Please declare language on HTML tag." -PLG_SYSTEM_JOOA11Y_QA_PDF_COUNT="PDFs are considered web content and must be made accessible as well. PDFs often contain issues for people who use screen readers (missing structural tags or missing form field labels) and people who have low vision (text does not reflow when enlarged).
  • If this is a form, consider using an accessible HTML form as an alternative.
  • If this is a document, consider converting it into a web page.

Otherwise, please check %(pdfCount) PDF(s) for accessibility in Acrobat DC." -PLG_SYSTEM_JOOA11Y_QA_SHOULD_BE_LIST="Are you trying to create a list? Possible list item found: %(firstPrefix)" -PLG_SYSTEM_JOOA11Y_QA_SHOULD_BE_LIST_TIP="Make sure to use semantic lists by using the bullet or number formatting buttons instead. When using a semantic list, assistive technologies are able to convey information such as the total number of items and the relative position of each item in the list. Learn more about semantic lists." -PLG_SYSTEM_JOOA11Y_QA_UPPERCASE_WARNING="Found all caps. Some screen readers may interpret all caps text as an acronym and will read each letter individually. Additionally, some people find all caps more difficult to read and it may give the appearance of SHOUTING." -PLG_SYSTEM_JOOA11Y_TABLES_EMPTY_HEADING="Empty table header found! Table headers should never be empty. It is important to designate row and/or column headers to convey their relationship. This information provides context to people who use assistive technology. Please keep in mind that tables should be used for tabular data only." -PLG_SYSTEM_JOOA11Y_TABLES_EMPTY_HEADING_INFO="Learn more about accessible tables." -PLG_SYSTEM_JOOA11Y_TABLES_MISSING_HEADINGS="Missing table headers! Accessible tables need HTML markup that indicates header cells and data cells which defines their relationship. This information provides context to people who use assistive technology. Tables should be used for tabular data only." -PLG_SYSTEM_JOOA11Y_TABLES_MISSING_HEADINGS_INFO="Learn more about accessible tables." -PLG_SYSTEM_JOOA11Y_TABLES_SEMANTIC_HEADING="Semantic headings such as Heading 2 or Heading 3 should only be used for sections of content; not in HTML tables. Indicate table headings using the th element instead." -PLG_SYSTEM_JOOA11Y_TABLES_SEMANTIC_HEADING_INFO="Learn more about accessible tables." From 540546a92e06d2afa2f7ef39ca4d5b50539e298d Mon Sep 17 00:00:00 2001 From: Bodge-IT Date: Fri, 18 Oct 2024 10:45:41 +0100 Subject: [PATCH 016/279] Delete 5.2 & 5.3 sql update files from upmerge --- .../com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql | 3 --- .../com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql | 7 ------- .../com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql | 6 ------ .../com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql | 1 - .../com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql | 3 --- .../com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql | 7 ------- .../com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql | 6 ------ 7 files changed, 33 deletions(-) delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql delete mode 100644 administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql delete mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql diff --git a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql b/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql deleted file mode 100644 index 23e79da2aad4d..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql +++ /dev/null @@ -1,3 +0,0 @@ --- Add mod_articles module -INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`) VALUES -(0, 'mod_articles', 'module', 'mod_articles', '', 0, 1, 0, 0, 1, '', '', ''); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql b/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql deleted file mode 100644 index 284938a777e2d..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql +++ /dev/null @@ -1,7 +0,0 @@ --- --- Add the Guided Tours selectable option to the User Action Logs --- -INSERT INTO `#__action_logs_extensions` (`extension`) VALUES ('com_guidedtours'); - -INSERT INTO `#__action_log_config` (`type_title`, `type_alias`, `id_holder`, `title_holder`, `table_name`, `text_prefix`) VALUES -('guidedtour', 'com_guidedtours.state', 'id', 'title', '#__guidedtours', 'PLG_ACTIONLOG_JOOMLA'); diff --git a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql b/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql deleted file mode 100644 index 0876fa5024ede..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO `#__guidedtours` (`title`, `description`, `extensions`, `url`, `published`, `language`, `note`, `access`, `uid`, `autostart`, `created`, `created_by`, `modified`, `modified_by`) VALUES -('COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_TITLE', 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_DESCRIPTION', '["com_cpanel"]', 'administrator/index.php', 1, '*', '', 1, 'joomla-whatsnew-5-2', 1, CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0); -INSERT INTO `#__guidedtour_steps` (`title`, `description`, `position`, `target`, `type`, `interactive_type`, `url`, `published`, `language`, `note`, `params`, `tour_id`, `created`, `created_by`, `modified`, `modified_by`) -SELECT 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_STEP_0_TITLE', 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_STEP_0_DESCRIPTION', 'right', '#sidebarmenu nav > ul:first-of-type > li:last-child', 0, 1, '', 1, '*', '', '{"required":1,"requiredvalue":""}', MAX(`id`), CURRENT_TIMESTAMP(), 0, CURRENT_TIMESTAMP(), 0 - FROM `#__guidedtours` - WHERE `uid` = 'joomla-whatsnew-5-2'; diff --git a/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql b/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql deleted file mode 100644 index 6db2da7c57115..0000000000000 --- a/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `#__fields` MODIFY `fieldparams` MEDIUMTEXT NOT NULL; diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql b/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql deleted file mode 100644 index 26464101c0f84..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql +++ /dev/null @@ -1,3 +0,0 @@ --- Add mod_articles module -INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") VALUES -(0, 'mod_articles', 'module', 'mod_articles', '', 0, 1, 0, 0, 1, '', '', '', 0, 0); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql b/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql deleted file mode 100644 index 66937855f9f0c..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql +++ /dev/null @@ -1,7 +0,0 @@ --- --- Add the Guided Tours selectable option to the User Action Logs --- -INSERT INTO "#__action_logs_extensions" ("extension") VALUES ('com_guidedtours'); - -INSERT INTO "#__action_log_config" ("type_title", "type_alias", "id_holder", "title_holder", "table_name", "text_prefix") VALUES -('guidedtour', 'com_guidedtours.state', 'id', 'title', '#__guidedtours', 'PLG_ACTIONLOG_JOOMLA'); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql b/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql deleted file mode 100644 index a92672ae0efd7..0000000000000 --- a/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO "#__guidedtours" ("title", "description", "extensions", "url", "published", "language", "note", "access", "uid", "autostart", "created", "created_by", "modified", "modified_by") VALUES -('COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_TITLE', 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_DESCRIPTION', '["com_cpanel"]', 'administrator/index.php', 1, '*', '', 1, 'joomla-whatsnew-5-2', 1, CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0); -INSERT INTO "#__guidedtour_steps" ("title", "description", "position", "target", "type", "interactive_type", "url", "published", "language", "note", "params", "tour_id", "created", "created_by", "modified", "modified_by") -SELECT 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_STEP_0_TITLE', 'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_2_STEP_0_DESCRIPTION', 'right', '#sidebarmenu nav > ul:first-of-type > li:last-child', 0, 1, '', 1, '*', '', '{"required":1,"requiredvalue":""}', MAX("id"), CURRENT_TIMESTAMP, 0, CURRENT_TIMESTAMP, 0 - FROM "#__guidedtours" - WHERE "uid" = 'joomla-whatsnew-5-2'; From 36e9e624aa105602a729399b0aefb60e68ab1f45 Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Sat, 19 Oct 2024 11:47:07 +0200 Subject: [PATCH 017/279] Replace GMT with UTC (#43912) --- .../components/com_actionlogs/src/Model/ActionlogsModel.php | 2 +- .../components/com_scheduler/src/Model/TaskModel.php | 2 +- .../components/com_scheduler/src/Model/TasksModel.php | 4 ++-- administrator/components/com_scheduler/src/Task/Task.php | 2 +- administrator/components/com_users/src/Model/UsersModel.php | 2 +- build/bump.php | 2 +- libraries/src/Date/Date.php | 2 +- libraries/src/User/User.php | 2 +- libraries/src/Version.php | 2 +- plugins/system/webauthn/src/CredentialRepository.php | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/administrator/components/com_actionlogs/src/Model/ActionlogsModel.php b/administrator/components/com_actionlogs/src/Model/ActionlogsModel.php index 0dc3ce23761ff..f40213bf481dc 100644 --- a/administrator/components/com_actionlogs/src/Model/ActionlogsModel.php +++ b/administrator/components/com_actionlogs/src/Model/ActionlogsModel.php @@ -210,7 +210,7 @@ private function buildDateRange($range) $dStart->setTime(0, 0, 0); // Now change the timezone back to UTC. - $tz = new \DateTimeZone('GMT'); + $tz = new \DateTimeZone('UTC'); $dStart->setTimezone($tz); break; } diff --git a/administrator/components/com_scheduler/src/Model/TaskModel.php b/administrator/components/com_scheduler/src/Model/TaskModel.php index dbd73a825b0db..d3fb44b9e3fac 100644 --- a/administrator/components/com_scheduler/src/Model/TaskModel.php +++ b/administrator/components/com_scheduler/src/Model/TaskModel.php @@ -612,7 +612,7 @@ public function save($data): bool $basisDayOfMonth = $data['execution_rules']['exec-day']; [$basisHour, $basisMinute] = explode(':', $data['execution_rules']['exec-time']); - $data['last_execution'] = Factory::getDate('now', 'GMT')->format('Y-m') + $data['last_execution'] = Factory::getDate('now', 'UTC')->format('Y-m') . "-$basisDayOfMonth $basisHour:$basisMinute:00"; } else { $data['last_execution'] = $this->getItem($id)->last_execution; diff --git a/administrator/components/com_scheduler/src/Model/TasksModel.php b/administrator/components/com_scheduler/src/Model/TasksModel.php index 92bc2780ff135..79c3abf8d0c93 100644 --- a/administrator/components/com_scheduler/src/Model/TasksModel.php +++ b/administrator/components/com_scheduler/src/Model/TasksModel.php @@ -251,7 +251,7 @@ static function (TaskOption $taskOption): string { $due = $this->getState('filter.due'); if (is_numeric($due) && $due != 0) { - $now = Factory::getDate('now', 'GMT')->toSql(); + $now = Factory::getDate('now', 'UTC')->toSql(); $operator = $due == 1 ? ' <= ' : ' > '; $filterCount++; $query->where($db->quoteName('a.next_execution') . $operator . ':now') @@ -268,7 +268,7 @@ static function (TaskOption $taskOption): string { $locked = $this->getState('filter.locked'); if (is_numeric($locked) && $locked != 0) { - $now = Factory::getDate('now', 'GMT'); + $now = Factory::getDate('now', 'UTC'); $timeout = ComponentHelper::getParams('com_scheduler')->get('timeout', 300); $timeout = new \DateInterval(\sprintf('PT%dS', $timeout)); $timeoutThreshold = (clone $now)->sub($timeout)->toSql(); diff --git a/administrator/components/com_scheduler/src/Task/Task.php b/administrator/components/com_scheduler/src/Task/Task.php index e4d58a933a734..f2fc0c9ec5c27 100644 --- a/administrator/components/com_scheduler/src/Task/Task.php +++ b/administrator/components/com_scheduler/src/Task/Task.php @@ -307,7 +307,7 @@ public function acquireLock(): bool $db = $this->db; $query = $db->getQuery(true); $id = $this->get('id'); - $now = Factory::getDate('now', 'GMT'); + $now = Factory::getDate('now', 'UTC'); $timeout = ComponentHelper::getParams('com_scheduler')->get('timeout', 300); $timeout = new \DateInterval(\sprintf('PT%dS', $timeout)); diff --git a/administrator/components/com_users/src/Model/UsersModel.php b/administrator/components/com_users/src/Model/UsersModel.php index 4c7ba76416b18..e8742ad0871b8 100644 --- a/administrator/components/com_users/src/Model/UsersModel.php +++ b/administrator/components/com_users/src/Model/UsersModel.php @@ -567,7 +567,7 @@ private function buildDateRange($range) $dStart->setTime(0, 0, 0); // Now change the timezone back to UTC. - $tz = new \DateTimeZone('GMT'); + $tz = new \DateTimeZone('UTC'); $dStart->setTimezone($tz); break; case 'never': diff --git a/build/bump.php b/build/bump.php index 5f266acc00c02..b532a02335fc2 100644 --- a/build/bump.php +++ b/build/bump.php @@ -162,7 +162,7 @@ function usage($command) 'build' => '', 'reldate' => $date->format('j-F-Y'), 'reltime' => $date->format('H:i'), - 'reltz' => 'GMT', + 'reltz' => 'UTC', 'credate' => $date->format('Y-m'), ]; diff --git a/libraries/src/Date/Date.php b/libraries/src/Date/Date.php index 599439e584a91..f7556f71810e2 100644 --- a/libraries/src/Date/Date.php +++ b/libraries/src/Date/Date.php @@ -100,7 +100,7 @@ public function __construct($date = 'now', $tz = null) // Create the base GMT and server time zone objects. if (empty(self::$gmt) || empty(self::$stz)) { // @TODO: This code block stays here only for B/C, can be removed in 5.0 - self::$gmt = new \DateTimeZone('GMT'); + self::$gmt = new \DateTimeZone('UTC'); self::$stz = new \DateTimeZone(@date_default_timezone_get()); } diff --git a/libraries/src/User/User.php b/libraries/src/User/User.php index b3ee71499ecb5..fb6b38480753d 100644 --- a/libraries/src/User/User.php +++ b/libraries/src/User/User.php @@ -542,7 +542,7 @@ public function setLastVisit($timestamp = null) */ public function getTimezone() { - $timezone = $this->getParam('timezone', Factory::getApplication()->get('offset', 'GMT')); + $timezone = $this->getParam('timezone', Factory::getApplication()->get('offset', 'UTC')); return new \DateTimeZone($timezone); } diff --git a/libraries/src/Version.php b/libraries/src/Version.php index 2ec2e02466a28..3308306fc8d15 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -107,7 +107,7 @@ final class Version * @var string * @since 3.5 */ - public const RELTZ = 'GMT'; + public const RELTZ = 'UTC'; /** * Copyright Notice. diff --git a/plugins/system/webauthn/src/CredentialRepository.php b/plugins/system/webauthn/src/CredentialRepository.php index e23a3e34f0870..3b7bccc1eb7f2 100644 --- a/plugins/system/webauthn/src/CredentialRepository.php +++ b/plugins/system/webauthn/src/CredentialRepository.php @@ -622,7 +622,7 @@ private function formatDate($date, ?string $format = null, bool $tzAware = true) try { $tzDefault = Factory::getApplication()->get('offset'); } catch (\Exception $e) { - $tzDefault = 'GMT'; + $tzDefault = 'UTC'; } $user = Factory::getContainer()->get(UserFactoryInterface::class)->loadUserById($userId ?? 0); From 1a710ca3b37ffdad5bc7581f29e6c3ee357ecbd8 Mon Sep 17 00:00:00 2001 From: Quy Date: Sat, 19 Oct 2024 03:36:18 -0700 Subject: [PATCH 018/279] [6.0] Remove obsolete code (#43959) * Remove obsolete code * Remove properties --------- Co-authored-by: Quy Co-authored-by: Harald Leithner --- libraries/src/Date/Date.php | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/libraries/src/Date/Date.php b/libraries/src/Date/Date.php index f7556f71810e2..a44e58d5030a3 100644 --- a/libraries/src/Date/Date.php +++ b/libraries/src/Date/Date.php @@ -56,29 +56,6 @@ class Date extends \DateTime */ public static $format = 'Y-m-d H:i:s'; - /** - * Placeholder for a \DateTimeZone object with GMT as the time zone. - * - * @var object - * @since 1.7.0 - * - * @deprecated 4.0 will be removed in 6.0 - * Will be removed without replacement - */ - protected static $gmt; - - /** - * Placeholder for a \DateTimeZone object with the default server - * time zone as the time zone. - * - * @var object - * @since 1.7.0 - * - * @deprecated 4.0 will be removed in 6.0 - * Will be removed without replacement - */ - protected static $stz; - /** * The \DateTimeZone object for usage in rending dates as strings. * @@ -97,13 +74,6 @@ class Date extends \DateTime */ public function __construct($date = 'now', $tz = null) { - // Create the base GMT and server time zone objects. - if (empty(self::$gmt) || empty(self::$stz)) { - // @TODO: This code block stays here only for B/C, can be removed in 5.0 - self::$gmt = new \DateTimeZone('UTC'); - self::$stz = new \DateTimeZone(@date_default_timezone_get()); - } - // If the time zone object is not set, attempt to build it. if (!($tz instanceof \DateTimeZone)) { if (\is_string($tz)) { From e4d74e77e63027f5c18ba5509f9d9a1606660ce8 Mon Sep 17 00:00:00 2001 From: Quy Date: Sun, 20 Oct 2024 23:59:44 -0700 Subject: [PATCH 019/279] Remove deprecated strings (#44323) --- administrator/language/en-GB/mod_stats_admin.ini | 7 ------- 1 file changed, 7 deletions(-) diff --git a/administrator/language/en-GB/mod_stats_admin.ini b/administrator/language/en-GB/mod_stats_admin.ini index a3f764172bcac..dd040a39b0d9a 100644 --- a/administrator/language/en-GB/mod_stats_admin.ini +++ b/administrator/language/en-GB/mod_stats_admin.ini @@ -12,10 +12,3 @@ MOD_STATS_GZIP="Gzip" MOD_STATS_PHP="PHP" MOD_STATS_USERS="Users" MOD_STATS_XML_DESCRIPTION="The Statistics Module shows information about your server installation together with statistics on the website users and the number of Articles in your database." -; Deprecated, will be removed with 6.0 -MOD_STATS_ARTICLES_VIEW_HITS="Articles View Hits" -MOD_STATS_FIELD_COUNTER_LABEL="Hit Counter" -MOD_STATS_FIELD_INCREASECOUNTER_LABEL="Increase Counter" -MOD_STATS_OS="OS" -MOD_STATS_TIME="Time" -MOD_STATS_WEBLINKS="Web Links" From 25ee0bda85bc5f7622105041d4ef85a7302f51fb Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Wed, 23 Oct 2024 19:49:00 +0200 Subject: [PATCH 020/279] [6.0] Update deleted files in script.php (#44188) --- administrator/components/com_admin/script.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/administrator/components/com_admin/script.php b/administrator/components/com_admin/script.php index bb241057d6ea6..6d1bb748d0e06 100644 --- a/administrator/components/com_admin/script.php +++ b/administrator/components/com_admin/script.php @@ -435,6 +435,11 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-08.sql', '/administrator/components/com_admin/sql/updates/mysql/5.1.0-2024-03-28.sql', '/administrator/components/com_admin/sql/updates/mysql/5.1.1-2024-04-18.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-02.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-07-19.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-08-22.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.2.0-2024-09-17.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql', @@ -456,6 +461,10 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-08.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.1.0-2024-03-28.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.1.1-2024-04-18.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-02.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-07-19.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-08-22.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.2.0-2024-09-17.sql', '/libraries/src/Application/BaseApplication.php', '/libraries/src/Application/CLI/CliInput.php', '/libraries/src/Application/CLI/CliOutput.php', From b7cd3144f56548b99208843e0f9b426023e4e50c Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Sat, 2 Nov 2024 13:42:54 +0100 Subject: [PATCH 021/279] [6.0] Remove deprecated db object from views (#42962) --- .../com_users/src/View/Users/HtmlView.php | 15 --------------- .../com_content/src/View/Featured/HtmlView.php | 12 ------------ .../com_users/src/View/Profile/HtmlView.php | 14 -------------- 3 files changed, 41 deletions(-) diff --git a/administrator/components/com_users/src/View/Users/HtmlView.php b/administrator/components/com_users/src/View/Users/HtmlView.php index b06124aa4c779..d88ba98067919 100644 --- a/administrator/components/com_users/src/View/Users/HtmlView.php +++ b/administrator/components/com_users/src/View/Users/HtmlView.php @@ -10,7 +10,6 @@ namespace Joomla\Component\Users\Administrator\View\Users; -use Joomla\CMS\Factory; use Joomla\CMS\Helper\ContentHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\GenericDataException; @@ -18,7 +17,6 @@ use Joomla\CMS\Toolbar\Button\DropdownButton; use Joomla\CMS\Toolbar\ToolbarHelper; use Joomla\Component\Users\Administrator\Model\UsersModel; -use Joomla\Database\DatabaseDriver; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -80,18 +78,6 @@ class HtmlView extends BaseHtmlView */ protected $canDo; - /** - * An instance of DatabaseDriver. - * - * @var DatabaseDriver - * @since 3.6.3 - * - * @deprecated 4.3 will be removed in 6.0 - * Will be removed without replacement use database from the container instead - * Example: Factory::getContainer()->get(DatabaseInterface::class); - */ - protected $db; - /** * Display the view * @@ -110,7 +96,6 @@ public function display($tpl = null) $this->filterForm = $model->getFilterForm(); $this->activeFilters = $model->getActiveFilters(); $this->canDo = ContentHelper::getActions('com_users'); - $this->db = Factory::getDbo(); // Check for errors. if (\count($errors = $model->getErrors())) { diff --git a/components/com_content/src/View/Featured/HtmlView.php b/components/com_content/src/View/Featured/HtmlView.php index ae02b1da2dd92..a9f36ffa3b47a 100644 --- a/components/com_content/src/View/Featured/HtmlView.php +++ b/components/com_content/src/View/Featured/HtmlView.php @@ -71,17 +71,6 @@ class HtmlView extends BaseHtmlView */ protected $link_items = []; - /** - * @var \Joomla\Database\DatabaseDriver - * - * @since 3.6.3 - * - * @deprecated 4.3 will be removed in 6.0 - * Will be removed without replacement use database from the container instead - * Example: Factory::getContainer()->get(DatabaseInterface::class); - */ - protected $db; - /** * The user object * @@ -205,7 +194,6 @@ public function display($tpl = null) $this->items = &$items; $this->pagination = &$pagination; $this->user = &$user; - $this->db = Factory::getDbo(); $this->_prepareDocument(); diff --git a/components/com_users/src/View/Profile/HtmlView.php b/components/com_users/src/View/Profile/HtmlView.php index a07f3a9a0fcb5..137a5a67ed5fc 100644 --- a/components/com_users/src/View/Profile/HtmlView.php +++ b/components/com_users/src/View/Profile/HtmlView.php @@ -19,7 +19,6 @@ use Joomla\CMS\User\User; use Joomla\Component\Users\Administrator\Helper\Mfa; use Joomla\Component\Users\Site\Model\ProfileModel; -use Joomla\Database\DatabaseDriver; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -60,18 +59,6 @@ class HtmlView extends BaseHtmlView */ protected $state; - /** - * An instance of DatabaseDriver. - * - * @var DatabaseDriver - * @since 3.6.3 - * - * @deprecated 4.3 will be removed in 6.0 - * Will be removed without replacement use database from the container instead - * Example: Factory::getContainer()->get(DatabaseInterface::class); - */ - protected $db; - /** * The page class suffix * @@ -109,7 +96,6 @@ public function display($tpl = null) $this->state = $model->getState(); $this->params = $this->state->get('params'); $this->mfaConfigurationUI = Mfa::getConfigurationInterface($user); - $this->db = Factory::getDbo(); // Check for errors. if (\count($errors = $model->getErrors())) { From 488e08ee81d602104fc5712c5c1321f5f35cc9e1 Mon Sep 17 00:00:00 2001 From: Benno Achermann Date: Wed, 13 Nov 2024 10:55:59 +0100 Subject: [PATCH 022/279] [6.0] Added possibility to batch remove a tag (#40613) * Update tag.php * Added possibility to batch remove a tag * Changed text keys * Reverted string change * Deprecated batchTag function for b/c and created a new batchTags function * Fixed function docu spacing. * Fixed function docu spacing * Deprecated postStoreProcess function for b/c and created a new postStore function * Simplified else if structure. * Fixed texts in both language files. --------- Co-authored-by: Harald Leithner Co-authored-by: Quy Co-authored-by: Benjamin Trenkle Co-authored-by: Allon Moritz Co-authored-by: Gary Barclay <1881642+Bodge-IT@users.noreply.github.com> --- administrator/language/en-GB/lib_joomla.ini | 5 ++- .../html/batch/batch-tag-addremove.es6.js | 42 +++++++++++++++++++ build/media_source/system/joomla.asset.json | 8 ++++ language/en-GB/lib_joomla.ini | 5 ++- layouts/joomla/html/batch/tag.php | 31 +++++++++++--- libraries/src/Helper/TagsHelper.php | 27 +++++++++++- libraries/src/MVC/Model/AdminModel.php | 29 ++++++++++++- .../taggable/src/Extension/Taggable.php | 7 ++-- 8 files changed, 142 insertions(+), 12 deletions(-) create mode 100644 build/media_source/layouts/js/joomla/html/batch/batch-tag-addremove.es6.js diff --git a/administrator/language/en-GB/lib_joomla.ini b/administrator/language/en-GB/lib_joomla.ini index b940984bcd512..154b38a64382f 100644 --- a/administrator/language/en-GB/lib_joomla.ini +++ b/administrator/language/en-GB/lib_joomla.ini @@ -379,8 +379,11 @@ JLIB_HTML_BATCH_MOVE="Move" JLIB_HTML_BATCH_MOVE_QUESTION="Action to Perform" JLIB_HTML_BATCH_NO_CATEGORY="- Don't copy or move -" JLIB_HTML_BATCH_NOCHANGE="- Keep original Access Levels -" -JLIB_HTML_BATCH_TAG_LABEL="Add Tag" +JLIB_HTML_BATCH_TAG_ADD="Add" +JLIB_HTML_BATCH_TAG_ADDREMOVE_QUESTION="Action to Perform" +JLIB_HTML_BATCH_TAG_LABEL="Add or Remove Tag" JLIB_HTML_BATCH_TAG_NOCHANGE="- Keep original Tags -" +JLIB_HTML_BATCH_TAG_REMOVE="Remove" JLIB_HTML_BATCH_USER_LABEL="Set User." JLIB_HTML_BATCH_USER_NOCHANGE="- Keep original User -" JLIB_HTML_BATCH_USER_NOUSER="No User." diff --git a/build/media_source/layouts/js/joomla/html/batch/batch-tag-addremove.es6.js b/build/media_source/layouts/js/joomla/html/batch/batch-tag-addremove.es6.js new file mode 100644 index 0000000000000..54fa047e18ac2 --- /dev/null +++ b/build/media_source/layouts/js/joomla/html/batch/batch-tag-addremove.es6.js @@ -0,0 +1,42 @@ +/** + * @copyright (C) 2023 Open Source Matters, Inc. + * @license GNU General Public License version 2 or later; see LICENSE.txt + */ + +(() => { + const onSelect = () => { + const batchTag = document.getElementById('batch-tag-id'); + const batchTagAddRemove = document.getElementById('batch-tag-addremove'); + let batchSelector; + + const onChange = () => { + if (!batchSelector.value + || (batchSelector.value && parseInt(batchSelector.value, 10) === 0)) { + batchTagAddRemove.classList.add('hidden'); + } else { + batchTagAddRemove.classList.remove('hidden'); + } + }; + + if (batchTag) { + batchSelector = batchTag; + } + + if (batchTagAddRemove) { + batchTagAddRemove.classList.add('hidden'); + } + + if (batchTagAddRemove) { + batchSelector.addEventListener('change', onChange); + } + + // Cleanup + document.removeEventListener('DOMContentLoaded', onSelect, true); + }; + + // Document loaded + document.addEventListener('DOMContentLoaded', onSelect, true); + + // Joomla updated + document.addEventListener('joomla:updated', onSelect, true); +})(); diff --git a/build/media_source/system/joomla.asset.json b/build/media_source/system/joomla.asset.json index 1eae307baedf8..71dd180f0384d 100644 --- a/build/media_source/system/joomla.asset.json +++ b/build/media_source/system/joomla.asset.json @@ -304,6 +304,14 @@ "defer": true } }, + { + "name": "joomla.batch-tag-addremove", + "type": "script", + "uri": "layouts/joomla/html/batch/batch-tag-addremove.min.js", + "attributes": { + "defer": true + } + }, { "name": "webcomponent.field-fancy-select-legacy", "type": "script", diff --git a/language/en-GB/lib_joomla.ini b/language/en-GB/lib_joomla.ini index 867b99ac71159..0254984502a2f 100644 --- a/language/en-GB/lib_joomla.ini +++ b/language/en-GB/lib_joomla.ini @@ -375,8 +375,11 @@ JLIB_HTML_BATCH_MOVE="Move" JLIB_HTML_BATCH_MOVE_QUESTION="Action to Perform" JLIB_HTML_BATCH_NO_CATEGORY="- Don't copy or move -" JLIB_HTML_BATCH_NOCHANGE="- Keep original Access Levels -" -JLIB_HTML_BATCH_TAG_LABEL="Add Tag" +JLIB_HTML_BATCH_TAG_ADD="Add" +JLIB_HTML_BATCH_TAG_ADDREMOVE_QUESTION="Action to Perform" +JLIB_HTML_BATCH_TAG_LABEL="Add or Remove Tag" JLIB_HTML_BATCH_TAG_NOCHANGE="- Keep original Tags -" +JLIB_HTML_BATCH_TAG_REMOVE="Remove" JLIB_HTML_BATCH_USER_LABEL="Set User." JLIB_HTML_BATCH_USER_NOCHANGE="- Keep original User -" JLIB_HTML_BATCH_USER_NOUSER="No User." diff --git a/layouts/joomla/html/batch/tag.php b/layouts/joomla/html/batch/tag.php index 4112bb222b7fd..ea122fdf50e00 100644 --- a/layouts/joomla/html/batch/tag.php +++ b/layouts/joomla/html/batch/tag.php @@ -10,14 +10,35 @@ defined('_JEXEC') or die; +use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; +// Create the add/remove tag options. +$options = [ + HTMLHelper::_('select.option', 'a', Text::_('JLIB_HTML_BATCH_TAG_ADD')), + HTMLHelper::_('select.option', 'r', Text::_('JLIB_HTML_BATCH_TAG_REMOVE')) +]; + +/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */ +$wa = Factory::getApplication()->getDocument()->getWebAssetManager(); +$wa->useScript('joomla.batch-tag-addremove'); + ?> -
From b9db500319771171c692890e6ebe3daf46b20c92 Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Thu, 7 Aug 2025 06:05:39 +0200 Subject: [PATCH 159/279] Remove CMS db trait (#45340) --- build/psr12/ruleset.xml | 1 - .../src/MVC/Model/DatabaseAwareTrait.php | 79 ------------------- ruleset.xml | 1 - .../Cms/MVC/Model/DatabaseModelTest.php | 46 ----------- 4 files changed, 127 deletions(-) delete mode 100644 libraries/src/MVC/Model/DatabaseAwareTrait.php diff --git a/build/psr12/ruleset.xml b/build/psr12/ruleset.xml index 9882ec0b6491d..16304e5261073 100644 --- a/build/psr12/ruleset.xml +++ b/build/psr12/ruleset.xml @@ -93,7 +93,6 @@ libraries/src/Encrypt/Totp\.php libraries/src/Form/Field/CaptchaField\.php libraries/src/Input/Json\.php - libraries/src/MVC/Model/DatabaseAwareTrait\.php libraries/src/MVC/Model/FormBehaviorTrait\.php libraries/src/MVC/Model/ItemModel\.php libraries/src/MVC/Model/StateBehaviorTrait\.php diff --git a/libraries/src/MVC/Model/DatabaseAwareTrait.php b/libraries/src/MVC/Model/DatabaseAwareTrait.php deleted file mode 100644 index 2eb1917ee562e..0000000000000 --- a/libraries/src/MVC/Model/DatabaseAwareTrait.php +++ /dev/null @@ -1,79 +0,0 @@ - - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -namespace Joomla\CMS\MVC\Model; - -use Joomla\Database\DatabaseInterface; - -// phpcs:disable PSR1.Files.SideEffects -\defined('_JEXEC') or die; -// phpcs:enable PSR1.Files.SideEffects - -/** - * Database aware trait. - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the trait from the database package - * Example: \Joomla\Database\DatabaseAwareTrait - */ -trait DatabaseAwareTrait -{ - /** - * The database driver. - * - * @var DatabaseInterface - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the trait from the database package - * Example: \Joomla\Database\DatabaseAwareTrait::$databaseAwareTraitDatabase - */ - protected $_db; - - /** - * Get the database driver. - * - * @return DatabaseInterface The database driver. - * - * @since 4.0.0 - * @throws \UnexpectedValueException - * - * @deprecated 4.3 will be removed in 6.0 - * Use the trait from the database package - * Example: \Joomla\Database\DatabaseAwareTrait::getDatabase() - */ - public function getDbo() - { - if ($this->_db) { - return $this->_db; - } - - throw new \UnexpectedValueException('Database driver not set in ' . __CLASS__); - } - - /** - * Set the database driver. - * - * @param ?DatabaseInterface $db The database driver. - * - * @return void - * - * @since 4.0.0 - * - * @deprecated 4.3 will be removed in 6.0 - * Use the trait from the database package - * Example: \Joomla\Database\DatabaseAwareTrait::setDatabase() - */ - public function setDbo(?DatabaseInterface $db = null) - { - $this->_db = $db; - } -} diff --git a/ruleset.xml b/ruleset.xml index 972fa4d12a8e0..2067140bd8900 100644 --- a/ruleset.xml +++ b/ruleset.xml @@ -97,7 +97,6 @@ libraries/src/Form/Field/CaptchaField\.php libraries/src/Input/Json\.php libraries/src/Installer/Manifest\.php - libraries/src/MVC/Model/DatabaseAwareTrait\.php libraries/src/MVC/Model/FormBehaviorTrait\.php libraries/src/MVC/Model/ItemModel\.php libraries/src/MVC/Model/StateBehaviorTrait\.php diff --git a/tests/Unit/Libraries/Cms/MVC/Model/DatabaseModelTest.php b/tests/Unit/Libraries/Cms/MVC/Model/DatabaseModelTest.php index 19c8693e6b22d..42908a60a2faf 100644 --- a/tests/Unit/Libraries/Cms/MVC/Model/DatabaseModelTest.php +++ b/tests/Unit/Libraries/Cms/MVC/Model/DatabaseModelTest.php @@ -13,7 +13,6 @@ use Exception; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\MVC\Model\BaseDatabaseModel; -use Joomla\CMS\MVC\Model\DatabaseAwareTrait; use Joomla\CMS\Table\Table; use Joomla\CMS\User\User; use Joomla\Database\DatabaseInterface; @@ -303,49 +302,4 @@ public function testCheckedOutWitFieldEmptyUserSet() $this->assertTrue($model->isCheckedOut((object)['checked_out' => 1])); } - - /** - * @testdox still can use the old trait - * - * @return void - * - * @since 4.2.0 - * - * @deprecated 5.0 Must be removed when trait gets deleted - */ - public function testUseOldMVCTrait() - { - $db = $this->createStub(DatabaseInterface::class); - - $model = new class (['dbo' => $db], $this->createStub(MVCFactoryInterface::class)) extends BaseDatabaseModel { - use DatabaseAwareTrait; - }; - - $this->assertEquals($db, $model->getDbo()); - } - - /** - * @testdox operates normally even when no variable is declared - * - * @return void - * - * @since 4.2.0 - * - * @deprecated 5.0 This has to be removed when we do not support the MVC Trait anymore - */ - public function testNotDeclaredVariable() - { - $model = new class (['dbo' => $this->createStub(DatabaseInterface::class)], $this->createStub(MVCFactoryInterface::class)) extends BaseDatabaseModel { - public function cache($key, $value) - { - if (!isset($this->test[$key])) { - $this->test[$key] = $value; - } - - return $this->test[$key]; - } - }; - - $this->assertEquals('test', $model->cache(1, 'test')); - } } From c8e104aef660651ac9b9f387e1ee1e864a357bc0 Mon Sep 17 00:00:00 2001 From: Allon Moritz Date: Thu, 7 Aug 2025 14:11:05 +0200 Subject: [PATCH 160/279] remove old php versions from from windows workflow tests (#45865) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5416e7a5cc94e..594ba1feda7e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,7 +174,7 @@ jobs: needs: [code-style-php] strategy: matrix: - php_version: ['8.1', '8.2', '8.3', '8.4'] + php_version: ['8.3', '8.4'] steps: - uses: actions/checkout@v4 - uses: actions/cache/restore@v4 @@ -200,7 +200,7 @@ jobs: needs: [code-style-php] strategy: matrix: - php_version: ['8.1', '8.2', '8.3', '8.4'] + php_version: ['8.3', '8.4'] steps: - uses: actions/checkout@v4 - uses: actions/cache/restore@v4 From 58f54117092091788940d7ed76824855b0822b92 Mon Sep 17 00:00:00 2001 From: Hans Kuijpers Date: Fri, 8 Aug 2025 16:34:16 +0200 Subject: [PATCH 161/279] [6.0] Atum logical properties (#45795) * 6.0 replace physical properties by logical properties * shorthand-property-no-redundant-values --- .../atum/scss/blocks/_alerts.scss | 2 +- .../administrator/atum/scss/blocks/_edit.scss | 6 +- .../administrator/atum/scss/blocks/_form.scss | 64 +++++++-------- .../atum/scss/blocks/_global.scss | 27 +++---- .../atum/scss/blocks/_header.scss | 28 +++---- .../atum/scss/blocks/_icons.scss | 10 +-- .../atum/scss/blocks/_iframe.scss | 2 +- .../atum/scss/blocks/_layout.scss | 6 +- .../atum/scss/blocks/_login.scss | 52 ++++++------ .../atum/scss/blocks/_modals.scss | 72 ++++++++--------- .../atum/scss/blocks/_quickicons.scss | 10 +-- .../atum/scss/blocks/_sidebar.scss | 50 ++++++------ .../atum/scss/blocks/_toolbar.scss | 43 +++++----- .../atum/scss/blocks/_treeselect.scss | 36 ++++----- .../atum/scss/blocks/_utilities.scss | 34 ++++---- .../atum/scss/pages/_com_config.scss | 2 +- .../atum/scss/pages/_com_content.scss | 8 +- .../atum/scss/pages/_com_cpanel.scss | 29 ++++--- .../atum/scss/pages/_com_media.scss | 6 +- .../atum/scss/pages/_com_modules.scss | 6 +- .../atum/scss/pages/_com_scheduler.scss | 6 +- .../atum/scss/pages/_com_tags.scss | 2 +- .../atum/scss/pages/_com_templates.scss | 14 ++-- .../atum/scss/pages/_com_users.scss | 2 +- .../scss/system/searchtools/searchtools.scss | 4 +- .../atum/scss/vendor/_codemirror.scss | 8 +- .../atum/scss/vendor/_tinymce.scss | 10 +-- .../atum/scss/vendor/bootstrap/_buttons.scss | 4 +- .../atum/scss/vendor/bootstrap/_card.scss | 4 +- .../scss/vendor/bootstrap/_custom-forms.scss | 2 +- .../atum/scss/vendor/bootstrap/_dropdown.scss | 16 ++-- .../atum/scss/vendor/bootstrap/_form.scss | 30 +++---- .../atum/scss/vendor/bootstrap/_lists.scss | 2 +- .../atum/scss/vendor/bootstrap/_modal.scss | 60 +++++++------- .../atum/scss/vendor/bootstrap/_table.scss | 6 +- .../atum/scss/vendor/choicesjs/choices.scss | 17 ++-- .../joomla-custom-elements/joomla-alert.scss | 28 +++---- .../joomla-custom-elements/joomla-tab.scss | 79 +++++++++---------- .../scss/vendor/minicolors/minicolors.scss | 6 +- 39 files changed, 391 insertions(+), 402 deletions(-) diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_alerts.scss b/build/media_source/templates/administrator/atum/scss/blocks/_alerts.scss index 0ff5da46cf702..bc0d239caf87b 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_alerts.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_alerts.scss @@ -1,7 +1,7 @@ // Alerts .alert-parent { - margin-top: 0; + margin-block-start: 0; } .alert-heading { diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_edit.scss b/build/media_source/templates/administrator/atum/scss/blocks/_edit.scss index ed148d96f916a..12395696baa67 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_edit.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_edit.scss @@ -2,13 +2,13 @@ .title-alias { .form-control { - max-width: 100%; + max-inline-size: 100%; } .form-control-feedback { position: absolute; - right: 1rem; - bottom: -1.8rem; + inset-inline-end: 1rem; + inset-block-end: -1.8rem; text-align: right; } } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_form.scss b/build/media_source/templates/administrator/atum/scss/blocks/_form.scss index 40c4feb4e4d74..4f50b115fd0c6 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_form.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_form.scss @@ -1,7 +1,7 @@ // Form .form-control { - max-width: $input-max-width; + max-inline-size: $input-max-width; background: $form-control-bg; border: $form-control-border; @@ -61,18 +61,18 @@ } .control-label { - width: 240px; + inline-size: 240px; padding: .3rem 1rem .3rem 0; } .controls { position: relative; flex: 1; - min-width: 210px; - max-width: 100%; + min-inline-size: 210px; + max-inline-size: 100%; + div { - width: 100%; + inline-size: 100%; margin: 5px 0 10px; } } @@ -83,36 +83,36 @@ } .stack .control-label { - width: 100%; + inline-size: 100%; } .spacer { hr { - width: 380px; + inline-size: 380px; } } td .form-control { display: inline-block; - width: auto; + inline-size: auto; } .checkboxes { - padding-top: 5px; + padding-block-start: 5px; .checkbox input { position: static; - margin-left: 0; + margin-inline-start: 0; } } .form-check { - padding-top: 5px; - margin-bottom: 0; + padding-block-start: 5px; + margin-block-end: 0; } .modal label { - width: 100%; + inline-size: 100%; } // Validation @@ -161,23 +161,23 @@ label.valid { :hover + [role="tooltip"] { position: absolute; display: block; - max-width: 100%; + max-inline-size: 100%; overflow-wrap: break-word; white-space: normal; } .filter-search-bar__description { - top: 100%; - bottom: auto; + inset-block-start: 100%; + inset-block-end: auto; } .container-popup .filter-search-bar__description { - top: 100%; - bottom: auto; + inset-block-start: 100%; + inset-block-end: auto; } .input-group > .form-control[readonly] { - margin-right: 1px; + margin-inline-end: 1px; } .form-group { @@ -188,7 +188,7 @@ label.valid { div.subform-repeatable-group { position: relative; padding: 32px 32px 16px 28px; - margin-top: 20px; + margin-block-start: 20px; border: $input-border-width solid $input-border-color; @include border-radius($border-radius); @@ -202,18 +202,18 @@ div.subform-repeatable-group { position: absolute; &.group-add { - right: -1px; - bottom: -1px; + inset-inline-end: -1px; + inset-block-end: -1px; border-radius: $border-radius 0 $border-radius 0; } &.group-remove { - top: -1px; - right: -1px; + inset-block-start: -1px; + inset-inline-end: -1px; border-radius: 0 $border-radius; } &.group-move { - top: 50%; - right: 100%; + inset-block-start: 50%; + inset-inline-end: 100%; padding: 0; border-radius: $border-radius 0 0 $border-radius; transform: translateY(-50%); @@ -223,16 +223,16 @@ div.subform-repeatable-group { } } &.group-move-up { - top: 50%; - right: 100%; - margin-top: -45px; + inset-block-start: 50%; + inset-inline-end: 100%; + margin-block-start: -45px; border-radius: 0; transform: translateY(-50%); } &.group-move-down { - top: 50%; - right: 100%; - margin-top: 45px; + inset-block-start: 50%; + inset-inline-end: 100%; + margin-block-start: 45px; border-radius: 0; transform: translateY(-50%); } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_global.scss b/build/media_source/templates/administrator/atum/scss/blocks/_global.scss index 5f999a189a399..acbbb2d629eec 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_global.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_global.scss @@ -6,7 +6,7 @@ } html { - height: 100%; + block-size: 100%; &.a11y_font { font-size: 18px; @@ -16,7 +16,7 @@ html { body { display: flex; flex-direction: column; - min-height: 100%; + min-block-size: 100%; padding: 0; margin: 0; text-align: start; @@ -29,11 +29,11 @@ body { filter: grayscale(1); &::after { position: fixed; - top: 0; - left: 0; + inset-block-start: 0; + inset-inline-start: 0; z-index: -1; - width: 100%; - height: 100%; + inline-size: 100%; + block-size: 100%; content: ""; background: var(--template-bg-dark-5); } @@ -128,14 +128,13 @@ caption { .container-main, .system-debug { - padding-bottom: 50px; + padding-block-end: 50px; } body .container-main { order: 1; position: relative; - padding-right: 0; - padding-left: 0; + padding-inline: 0; background: var(--main-bg); } @@ -146,7 +145,7 @@ body .container-main { padding: 0 2rem; .subhead + & { - padding-top: 0; + padding-block-start: 0; } } } @@ -163,7 +162,7 @@ body:not(.contentpane) .main-card { // Multiple buttons wrapping .input-group input { - min-width: 220px; + min-inline-size: 220px; } // Multilingual associations specific @@ -173,7 +172,7 @@ body:not(.contentpane) .main-card { .item-associations li { display: inline-block; - margin-bottom: 3px; + margin-block-end: 3px; list-style: none; } @@ -261,14 +260,14 @@ details { color: var(--template-link-color); ~ * { - padding-top: 1rem; + padding-block-start: 1rem; } } } // meter element meter { - width: 100%; + inline-size: 100%; } // Bootstrap 4 b/c diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_header.scss b/build/media_source/templates/administrator/atum/scss/blocks/_header.scss index 29846e364b3c8..bd9b17abd1fb2 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_header.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_header.scss @@ -6,7 +6,7 @@ &-inside { display: flex; - min-height: 54px; + min-block-size: 54px; } a { @@ -21,8 +21,8 @@ display: flex; flex-flow: row nowrap; align-items: center; - width: $sidebar-width; - height: 100%; + inline-size: $sidebar-width; + block-size: 100%; padding: 12px 5px; overflow: hidden; background-color: $header-logo-bg; @@ -30,7 +30,7 @@ &.small { justify-content: center; - width: $sidebar-width-closed; + inline-size: $sidebar-width-closed; transition: all .3s ease-in-out; svg, @@ -42,8 +42,8 @@ &.logo-collapsed { display: inline-block; - width: 20px; - height: 20px; + inline-size: 20px; + block-size: 20px; object-fit: contain; object-position: center center; } @@ -52,8 +52,8 @@ svg, img { - width: 150px; - height: 30px; + inline-size: 150px; + block-size: 30px; margin: 0 .35rem; object-fit: contain; object-position: left center; @@ -107,7 +107,7 @@ .header-items { align-items: center; justify-content: flex-end; - width: 50%; + inline-size: 50%; margin: 15px; margin-inline-start: auto; @@ -165,9 +165,9 @@ display: flex; align-items: center; justify-content: center; - width: 28px; - min-width: 28px; - height: 28px; + inline-size: 28px; + min-inline-size: 28px; + block-size: 28px; margin: 4px; color: $white; background-color: var(--template-bg-dark); @@ -215,9 +215,9 @@ @include media-breakpoint-down(md) { .header-items { position: fixed; - bottom: 0; + inset-block-end: 0; flex-direction: row-reverse; - width: 100%; + inline-size: 100%; padding: 10px 0; margin: 0; background: var(--template-bg-dark); diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_icons.scss b/build/media_source/templates/administrator/atum/scss/blocks/_icons.scss index 93895de77afff..9575566e165ee 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_icons.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_icons.scss @@ -14,8 +14,8 @@ [class*=" #{$jicon-css-prefix}-"], [class^="#{$fa-css-prefix}-"], [class*=" #{$fa-css-prefix}-"] { - width: 26px; - height: 26px; + inline-size: 26px; + block-size: 26px; font-size: 1rem; line-height: 22px; color: $gray-400; @@ -47,8 +47,8 @@ .#{$jicon-css-prefix}-checkedout, .#{$jicon-css-prefix}-lock, .#{$fa-css-prefix}-lock { - width: auto; - height: auto; + inline-size: auto; + block-size: auto; font-size: 1.2rem; line-height: 1rem; color: $icon-checkedout-color; // var(--template-text-dark); @@ -73,7 +73,7 @@ // WebAuthn .plg_system_webauthn_login_button svg { - width: 30px; + inline-size: 30px; margin: 4px; } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_iframe.scss b/build/media_source/templates/administrator/atum/scss/blocks/_iframe.scss index 8aa02dceeeb6e..6f1e3b5a6b371 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_iframe.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_iframe.scss @@ -5,5 +5,5 @@ iframe { } .modal iframe { - width: 100%; + inline-size: 100%; } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_layout.scss b/build/media_source/templates/administrator/atum/scss/blocks/_layout.scss index 31e25f1c57a4b..e873605a4d9be 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_layout.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_layout.scss @@ -1,14 +1,14 @@ .options-form { - width: 100%; + inline-size: 100%; padding: 1vw 2vw; - margin-bottom: 1rem; + margin-block-end: 1rem; color: $options-form-color; background: $options-form-bg; border: $options-form-border; > legend { float: none; - width: auto; + inline-size: auto; padding: 0 1rem; font-weight: $font-weight-bold; color: $options-form-legend-color; diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_login.scss b/build/media_source/templates/administrator/atum/scss/blocks/_login.scss index fea0fa175e942..510f6e15aee09 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_login.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_login.scss @@ -11,20 +11,20 @@ flex-wrap: wrap; align-items: center; justify-content: center; - min-height: calc(100vh - 35vh); + min-block-size: calc(100vh - 35vh); } #content { @include media-breakpoint-down(md) { - max-width: 98%; + max-inline-size: 98%; padding: 0; } } } .login { - width: 100%; - max-width: 25rem; + inline-size: 100%; + max-inline-size: 25rem; padding: 30px; margin: 1rem; color: var(--template-text-dark); @@ -33,12 +33,12 @@ box-shadow: $login-box-shadow; @include media-breakpoint-down(lg) { - margin-bottom: 3rem; + margin-block-end: 3rem; } img { - width: auto; - max-height: 4.4rem; + inline-size: auto; + max-block-size: 4.4rem; } .logo { @@ -46,8 +46,8 @@ } svg.joomla-logo { - width: 2.4rem; - height: 4.4rem; + inline-size: 2.4rem; + block-size: 4.4rem; background-size: 4.4rem 2.4rem; path { @@ -58,7 +58,7 @@ &-watermark { position: absolute; z-index: -1; - max-width: 500px; + max-inline-size: 500px; transform: rotate(12deg) translate(40%, 10%); } @@ -66,14 +66,14 @@ .form-group { position: relative; - margin-bottom: 1.85rem; + margin-block-end: 1.85rem; label { span { font-size: ($font-size-base * .9); @include media-breakpoint-down(sm) { - width: 100%; + inline-size: 100%; } } } @@ -81,14 +81,14 @@ .form-control-feedback { position: absolute; inset-inline-end: 0; - bottom: -1.5rem; + inset-block-end: -1.5rem; font-size: ($font-size-base * .75); text-align: end; } .form-control-hint { position: absolute; - top: .1rem; + inset-block-start: .1rem; inset-inline-end: 0; font-size: ($font-size-base * .75); text-align: end; @@ -101,7 +101,7 @@ } h1 { - margin-bottom: .25rem; + margin-block-end: .25rem; color: $white; text-align: center; } @@ -120,7 +120,7 @@ .form-control, .form-select { - max-width: none; + max-inline-size: none; } .sidebar-wrapper, @@ -131,16 +131,16 @@ .sidebar-wrapper { display: flex; flex-direction: column; - max-width: none; + max-inline-size: none; background-color: var(--template-sidebar-bg); @include media-breakpoint-down(md) { order: 2; - margin-bottom: 3rem; + margin-block-end: 3rem; } .main-brand { - margin-bottom: auto; + margin-block-end: auto; a { font-size: ($font-size-base * .875); @@ -163,7 +163,7 @@ #sidebar { align-self: flex-end; - width: 100%; + inline-size: 100%; font-size: ($font-size-base * .875); --body-color: var(--template-text-light); color: var(--template-text-light); @@ -189,7 +189,7 @@ @include media-breakpoint-down(md) { position: relative; - bottom: 0; + inset-block-end: 0; } } @@ -198,8 +198,8 @@ @include media-breakpoint-down(md) { flex: 1 0 100% !important; - max-width: 100% !important; - min-height: auto; + max-inline-size: 100% !important; + min-block-size: auto; } } @@ -233,16 +233,16 @@ label { .com_login .sidebar-wrapper .main-brand { flex: 1; flex-basis: auto; - margin-top: 100px; + margin-block-start: 100px; text-align: center; @include media-breakpoint-down(md) { - margin-top: 10px; + margin-block-start: 10px; } } .com_login .sidebar-wrapper #sidebar p { - margin-bottom: .2rem; + margin-block-end: .2rem; } .com_login .sidebar-wrapper .main-brand a, diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_modals.scss b/build/media_source/templates/administrator/atum/scss/blocks/_modals.scss index a4137ab5a2152..92607fc7227b6 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_modals.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_modals.scss @@ -67,8 +67,8 @@ [class*=" #{$fa-css-prefix}-"], span { display: inline-block; - width: 2.375rem; - height: 100%; + inline-size: 2.375rem; + block-size: 100%; margin: 0 16px; margin-inline-start: -22px; line-height: 2.375rem; @@ -84,8 +84,8 @@ [class*=" #{$fa-css-prefix}-"], span { display: inline-block; - width: 2.375rem; - height: 100%; + inline-size: 2.375rem; + block-size: 100%; margin: 0 16px; margin-inline-start: -22px; line-height: 2.375rem; @@ -118,7 +118,7 @@ &__item { display: flex; - border-bottom: 1px solid $table-border-color; + border-block-end: 1px solid $table-border-color; @include media-breakpoint-down(md) { flex-direction: column; @@ -127,11 +127,11 @@ &__tag { flex: 1 0 180px; - max-width: 180px; + max-inline-size: 180px; padding: 10px 15px; text-align: end; background: color.adjust($gray-100, $lightness: -2.5%); - border-right: 1px solid $table-border-color; + border-inline-end: 1px solid $table-border-color; .badge { border-radius: .2rem; @@ -143,10 +143,10 @@ @include media-breakpoint-down(md) { flex: 1 0 auto; - max-width: 100%; + max-inline-size: 100%; text-align: left; - border-right: 0; - border-bottom: 1px solid $table-border-color; + border-inline-end: 0; + border-block-end: 1px solid $table-border-color; } } @@ -155,14 +155,14 @@ ul { padding-inline-start: 15px; - margin-bottom: 0; + margin-block-end: 0; } li { - margin-bottom: .15rem; + margin-block-end: .15rem; &:last-of-type { - margin-bottom: 0; + margin-block-end: 0; } } } @@ -171,17 +171,17 @@ // Styling for joomla-dialog element joomla-dialog { dialog { - width: 96vw; - max-width: 1700px; - height: 96vh; + inline-size: 96vw; + max-inline-size: 1700px; + block-size: 96vh; padding: 0; border: 1px solid var(--border-color-translucent); border-radius: .3rem; box-shadow: $modal-joomla-dialog-box-shadow; @include media-breakpoint-up(xxl) { - width: 80vw; - height: 80vh; + inline-size: 80vw; + block-size: 80vh; } // Override display to flex, to scale the content to full height @@ -192,8 +192,8 @@ joomla-dialog { &[type="image"] { dialog { - width: fit-content; - height: fit-content; + inline-size: fit-content; + block-size: fit-content; } } @@ -204,8 +204,8 @@ joomla-dialog { } iframe.iframe-content { - width: 100%; - height: 100%; + inline-size: 100%; + block-size: 100%; } // Extra loading animation for iframe and ajax types @@ -214,11 +214,11 @@ joomla-dialog { &.loading { dialog:after { position: absolute; - top: 50%; - left: 50%; + inset-block-start: 50%; + inset-inline-start: 50%; display: block; - width: 66px; - height: 66px; + inline-size: 66px; + block-size: 66px; content: ""; background: url("../../../../system/images/joomla-loader.svg") no-repeat center; background-size: 66px 66px; @@ -256,7 +256,7 @@ joomla-dialog dialog[open] { box-sizing: border-box; display: flex; flex-flow: column; - width: 100%; + inline-size: 100%; background: var(--body-bg); .buttons-holder { @@ -277,7 +277,7 @@ joomla-dialog dialog[open] { align-items: center; justify-content: space-between; padding: 1rem; - border-bottom: 1px solid var(--border-color); + border-block-end: 1px solid var(--border-color); h3 { margin: 0; @@ -300,8 +300,8 @@ joomla-dialog dialog[open] { .buttons-holder { position: absolute; - top: 1rem; - right: 1rem; + inset-block-start: 1rem; + inset-inline-end: 1rem; } // Apply overflow for potentially large content @@ -324,7 +324,7 @@ joomla-dialog dialog[open] { .joomla-dialog-footer { position: relative; padding: 1rem; - border-top: 1px solid var(--border-color); + border-block-start: 1px solid var(--border-color); .buttons-holder button { padding-inline: 22px; @@ -339,9 +339,9 @@ joomla-dialog dialog[open] { .joomla-dialog-alert, .joomla-dialog-confirm { dialog { - width: 600px; - max-width: 80vw; - height: fit-content; + inline-size: 600px; + max-inline-size: 80vw; + block-size: fit-content; } .joomla-dialog-body { @@ -353,8 +353,8 @@ joomla-dialog dialog[open] { .joomla-dialog-content-select-field { dialog { @include media-breakpoint-up(xxl) { - width: 90vw; - height: 90vh; + inline-size: 90vw; + block-size: 90vh; } } } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_quickicons.scss b/build/media_source/templates/administrator/atum/scss/blocks/_quickicons.scss index 4392c5e93e328..94a641430fd6b 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_quickicons.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_quickicons.scss @@ -45,7 +45,7 @@ } .quickicon-icon { - margin-top: .5rem; + margin-block-start: .5rem; margin-inline-start: .2rem; color: var(--icon-color); @@ -138,7 +138,7 @@ } .quickicon-linkadd { - width: 2.5rem; + inline-size: 2.5rem; font-size: 1.2rem; background: $quickicon-linkadd-bg; transition: all .25s ease; @@ -146,10 +146,10 @@ a { align-items: flex-end; justify-content: center; - width: 100%; + inline-size: 100%; > * { - margin-bottom: 10px; + margin-block-end: 10px; color: $quickicon-linkadd-color; } @@ -173,7 +173,7 @@ .quickicon-single, .quickicon-group { display: flex; - min-height: 6rem; + min-block-size: 6rem; overflow: hidden; border: $quickicon-border; border-radius: $quickicon-border-radius; diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_sidebar.scss b/build/media_source/templates/administrator/atum/scss/blocks/_sidebar.scss index bf5f6d3375bd6..078f7806e9251 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_sidebar.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_sidebar.scss @@ -2,14 +2,14 @@ .sidebar-wrapper { z-index: $zindex-sidebar; - min-height: calc(100vh - 66px); + min-block-size: calc(100vh - 66px); overflow: hidden; background-color: $sidebarwrapper-bg; box-shadow: var(--atum-box-shadow); .sidebar-sticky { position: sticky; - top: 0; + inset-block-start: 0; } .item { @@ -36,7 +36,7 @@ display: flex; flex-grow: 1; align-items: center; - min-height: 40px; + min-block-size: 40px; [class^="#{$jicon-css-prefix}-"], [class*=" #{$jicon-css-prefix}-"], @@ -58,13 +58,13 @@ @include media-breakpoint-up(sm) { flex: 1 0 $sidebar-width; - max-width: $sidebar-width; + max-inline-size: $sidebar-width; transition: all .3s ease-in-out; } @include media-breakpoint-down(sm) { &.sidebar-menu { - top: auto; + inset-block-start: auto; } } @@ -83,12 +83,12 @@ // Sidebar navigation .main-nav { - width: $sidebar-width; + inline-size: $sidebar-width; padding: 0; font-size: .95rem; @include media-breakpoint-down(sm) { - width: 100%; + inline-size: 100%; } // All list items @@ -100,28 +100,28 @@ display: inline-flex; align-items: center; justify-content: center; - width: 40px; - height: 100%; + inline-size: 40px; + block-size: 100%; } } } // 2nd level items ul { - width: 100%; + inline-size: 100%; padding: 0; background-color: $main-nav-ul-bg; /* main-nav-ul-bg: var(--template-bg-dark-75) */ } .divider { - height: 1px; + block-size: 1px; margin: 0 0 0 48px; list-style: none; background-color: $main-nav-divider-bg; /* main-nav-divider-bg: var(--template-bg-dark-60) */ } .menuitem-group { - margin-top: .65rem; + margin-block-start: .65rem; font-size: .75rem; padding-inline-start: 3rem; @@ -140,7 +140,7 @@ display: flex; align-items: center; justify-content: center; - width: 2rem; + inline-size: 2rem; font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f054" #{"/*!rtl:\"\f053\"*/"}; @@ -170,7 +170,7 @@ .mm-collapsing { position: relative; - height: 0; + block-size: 0; overflow: hidden; transition: all .35s ease; } @@ -186,7 +186,7 @@ .closed { .sidebar-wrapper { flex: 1 0 $sidebar-width-closed; - max-width: $sidebar-width-closed; + max-inline-size: $sidebar-width-closed; overflow: visible; } @@ -198,12 +198,12 @@ .main-nav, .main-nav li { - max-width: 3rem; + max-inline-size: 3rem; } .main-nav a:hover { position: relative; - max-width: 3rem; + max-inline-size: 3rem; } .main-nav a:hover .sidebar-item-title { @@ -211,7 +211,7 @@ inset-inline-start: 100%; display: flex; align-items: center; - height: 100%; + block-size: 100%; padding: 0 1rem; white-space: nowrap; pointer-events: none; @@ -223,7 +223,7 @@ } .main-nav > li > ul { - height: 0; + block-size: 0; padding: 0; visibility: hidden; } @@ -244,8 +244,8 @@ .toggler-burger { position: fixed; - right: 0; - bottom: 0; + inset-inline-end: 0; + inset-block-end: 0; z-index: $zindex-mobile-toggle; padding: 10px 15px; @@ -277,12 +277,12 @@ &.show, &.collapsing { position: fixed; - bottom: 55px; + inset-block-end: 55px; z-index: $zindex-mobile-menu; display: block; - width: 100%; - min-height: auto; - max-height: calc(100vh - 72px); + inline-size: 100%; + min-block-size: auto; + max-block-size: calc(100vh - 72px); overflow-y: auto; } } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_toolbar.scss b/build/media_source/templates/administrator/atum/scss/blocks/_toolbar.scss index fb0bf3d2f89e5..cbaac9123cf91 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_toolbar.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_toolbar.scss @@ -1,11 +1,10 @@ .subhead { position: sticky; - top: 0; - right: 0; - left: 0; + inset-block-start: 0; + inset-inline: 0; z-index: $zindex-toolbar; - width: auto; - min-height: 43px; + inline-size: auto; + min-block-size: 43px; padding: 8px 1rem; color: var(--atum-subhead-color); background: var(--atum-subhead-bg); @@ -13,8 +12,7 @@ box-shadow: var(--atum-box-shadow); .row { - margin-right: 0; - margin-left: 0; + margin-inline: 0; } &.noshadow { @@ -34,7 +32,7 @@ .btn > span, .dropdown-item > span { margin-inline-end: .5rem; - width: 1.25em; + inline-size: 1.25em; text-align: center; } } @@ -131,7 +129,7 @@ align-items: center; &::after { - width: 2.375rem; + inline-size: 2.375rem; font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f078"; @@ -172,7 +170,7 @@ .contentpane & { margin: -15px -15px 0; background-image: none; - border-bottom: 1px solid var(--template-bg-dark-7); // TODO: unified variables for light and dark mode + border-block-end: 1px solid var(--template-bg-dark-7); // TODO: unified variables for light and dark mode } } @@ -183,17 +181,17 @@ } #myTab { - margin-top: 1rem; - margin-bottom: 1.5rem; + margin-block-start: 1rem; + margin-block-end: 1.5rem; } joomla-tab[view=accordion] ul li { - width: 100%; + inline-size: 100%; } .toggler-toolbar { - top: 0; - bottom: auto; + inset-block-start: 0; + inset-block-end: auto; z-index: $zindex-alerts; padding: 7px 10px; margin: 5px; @@ -212,20 +210,19 @@ } .subhead { - padding-right: 0; - padding-left: 0; + padding-inline: 0; joomla-toolbar-button, .btn-group, .btn { - width: 100%; - margin-left: 0; + inline-size: 100%; + margin-inline-start: 0; text-align: left; } .btn-toolbar > .btn-group, .btn-toolbar > joomla-toolbar-button { - margin-left: 0; + margin-inline-start: 0; } .btn.btn-action::after { @@ -234,7 +231,7 @@ } .dropdown-toggle-split { - width: auto; + inline-size: auto; } } } @@ -243,8 +240,8 @@ @if $enable-dark-mode { @include color-mode(dark) { .subhead { - border-top: 1px solid rgba(255,255,255,.05); - border-bottom: 1px solid rgba(255,255,255,.05); + border-block-start: 1px solid rgba(255,255,255,.05); + border-block-end: 1px solid rgba(255,255,255,.05); } } } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_treeselect.scss b/build/media_source/templates/administrator/atum/scss/blocks/_treeselect.scss index 0953bde6563b2..4d8f3f291eb80 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_treeselect.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_treeselect.scss @@ -2,7 +2,7 @@ .treeselect { display: block; - padding-left: 0; + padding-inline-start: 0; list-style: none; .nav-header { @@ -18,10 +18,10 @@ &::before { position: absolute; - top: 14px; + inset-block-start: 14px; inset-inline-start: ($treeselect-indent - 15px); - width: 10px; - height: 1px; + inline-size: 10px; + block-size: 1px; margin: auto; content: ""; background-color: var(--treeselect-line-color); @@ -29,11 +29,11 @@ &::after { position: absolute; - top: 0; - bottom: 0; + inset-block-start: 0; + inset-block-end: 0; inset-inline-start: ($treeselect-indent - 15px); - width: 1px; - height: 100%; + inline-size: 1px; + block-size: 100%; content: ""; background-color: var(--treeselect-line-color); } @@ -41,7 +41,7 @@ &:last-child { &::after { - height: 14px; + block-size: 14px; } } @@ -63,7 +63,7 @@ .treeselect-toggle { display: inline-block; padding: 0; - margin-right: .1rem; + margin-inline-end: .1rem; color: var(--template-link-color); text-align: center; cursor: pointer; @@ -78,21 +78,21 @@ input { position: relative; - top: 1px; - margin-right: .2rem; + inset-block-start: 1px; + margin-inline-end: .2rem; } label { - margin-bottom: 0; + margin-block-end: 0; } } .dropdown-toggle { padding: 0 .5rem .3rem; - margin-left: .5rem; + margin-inline-start: .5rem; &::after { - margin-left: 0; + margin-inline-start: 0; font-size: 1rem; color: var(--treeselect-dropdown-toggle); } @@ -100,7 +100,7 @@ } .treeselect-sub { - padding-left: 0; + padding-inline-start: 0; } .tree-holder { @@ -114,11 +114,11 @@ } li::before { - top: 12px; + inset-block-start: 12px; } li:last-child::after { - height: 12px; + block-size: 12px; } } diff --git a/build/media_source/templates/administrator/atum/scss/blocks/_utilities.scss b/build/media_source/templates/administrator/atum/scss/blocks/_utilities.scss index 897f75e30db0f..bffae95bc14b4 100644 --- a/build/media_source/templates/administrator/atum/scss/blocks/_utilities.scss +++ b/build/media_source/templates/administrator/atum/scss/blocks/_utilities.scss @@ -6,8 +6,8 @@ // Keep B/C .element-invisible { position: absolute; - width: 1px; - height: 1px; + inline-size: 1px; + block-size: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); @@ -133,63 +133,63 @@ // Sizing .w-1 { - width: 1%; + inline-size: 1%; } .w-3 { - width: 3%; + inline-size: 3%; } .w-5 { - width: 5%; + inline-size: 5%; } .w-6 { - width: 6%; + inline-size: 6%; } .w-7 { - width: 7%; + inline-size: 7%; } .w-10 { - width: 10%; + inline-size: 10%; } .w-12 { - width: 12%; + inline-size: 12%; } .w-15 { - width: 15%; + inline-size: 15%; } .w-20 { - width: 20%; + inline-size: 20%; } .w-30 { - width: 30%; + inline-size: 30%; } .w-35 { - width: 35%; + inline-size: 35%; } .w-40 { - width: 40%; + inline-size: 40%; } .w-60 { - width: 60%; + inline-size: 60%; } .w-80 { - width: 80%; + inline-size: 80%; } .editor-xtd-buttons .btn { - margin-bottom: 5px; + margin-block-end: 5px; } // Visibility depend from ColorScheme diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_config.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_config.scss index 7ba95feea4aef..c3cadaad40d93 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_config.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_config.scss @@ -7,7 +7,7 @@ } #page-filters .form-select { - width: auto; + inline-size: auto; } .tab-description { diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_content.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_content.scss index 8a2039b1cb961..6ef489f9a1806 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_content.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_content.scss @@ -1,6 +1,6 @@ .com_content.layout-edit { joomla-field-media .field-media-preview { - height: 10.25rem; + block-size: 10.25rem; } joomla-tab { @@ -12,19 +12,19 @@ .form-group { flex: 0 0 50%; - max-width: 50%; + max-inline-size: 50%; box-shadow: none; &:nth-child(1), &:nth-child(19) { flex: 0 0 100%; - max-width: 100%; + max-inline-size: 100%; } } .field-spacer { flex: 0 0 100%; - max-width: 100%; + max-inline-size: 100%; } } } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_cpanel.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_cpanel.scss index e2f34e5846f8c..42a5773ec79f4 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_cpanel.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_cpanel.scss @@ -3,19 +3,19 @@ .com_cpanel { .content { - margin-top: 2rem; + margin-block-start: 2rem; } .card { p:last-child { - margin-bottom: 0; + margin-block-end: 0; } .list-group, .table { padding: 0; - margin-bottom: unset; - border-top: 1px solid var(--border-color); + margin-block-end: unset; + border-block-start: 1px solid var(--border-color); } } @@ -28,8 +28,7 @@ } .btn { - margin-top: .25em; - margin-bottom: .25em; + margin-block: .25em; } } @@ -37,8 +36,8 @@ padding: 0; overflow: hidden; background-color: $card-body-bg; - border-bottom-right-radius: $border-radius; - border-bottom-left-radius: $border-radius; + border-end-end-radius: $border-radius; + border-end-start-radius: $border-radius; } .module-actions { @@ -56,8 +55,8 @@ flex-direction: column; align-items: flex-start; justify-content: flex-end; - width: 100%; - min-height: 130px; + inline-size: 100%; + min-block-size: 130px; padding: 0 1rem; font-size: .875rem; font-weight: 700; @@ -90,7 +89,7 @@ .cpanel-modules { .list-group { - border-top: 1px solid $atum-list-group-border-color; + border-block-start: 1px solid $atum-list-group-border-color; } .list-group-item { @@ -153,7 +152,7 @@ } h2 { - margin-bottom: 0; + margin-block-end: 0; font-size: $h4-font-size; } @@ -180,7 +179,7 @@ } .sample-data__icon { - width: 1.3rem; + inline-size: 1.3rem; text-align: center; } @@ -198,8 +197,8 @@ box-shadow: 1px 1px 2px rgba(0, 0, 0, .1); .list-group-item:last-child { - border-bottom-right-radius: var(--border-radius); - border-bottom-left-radius: var(--border-radius); + border-end-end-radius: var(--border-radius); + border-end-start-radius: var(--border-radius); } .list-group-item { diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_media.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_media.scss index ff3a748686d33..37ec9469feb6f 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_media.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_media.scss @@ -9,7 +9,7 @@ --com-media-manager-toolbar-icon-color: #{$media-manager-toolbar-icon-color}; } .file-background, .folder-background { - padding-bottom: 100%; + padding-block-end: 100%; background-color: $media-browser-file-bg; //hsl(var(--hue), 20%, 97%); border: $media-manager-border; // 1px solid hsl(var(--hue), 35%, 95%); } @@ -26,7 +26,7 @@ } .media-toolbar { background-color: $media-toolbar-bg; // var(--com-media-manager-content-bg,#fff); - border-bottom: $media-manager-border; // 1px solid var(--template-bg-dark-7); + border-block-end: $media-manager-border; // 1px solid var(--template-bg-dark-7); border-inline-start: $media-manager-border; // 1px solid var(--template-bg-dark-7) box-shadow: 0 -1px 0 0 $media-manager-border; // var(--template-bg-dark-7); } @@ -76,7 +76,7 @@ .media-infobar { border-inline-start: $media-manager-border; // 1px solid $border-color; h2 { - border-bottom: $media-manager-border; + border-block-end: $media-manager-border; } } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_modules.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_modules.scss index b16891b297620..657b684391d8f 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_modules.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_modules.scss @@ -29,7 +29,7 @@ } &-title { - margin-bottom: .25rem; + margin-block-end: .25rem; font-size: 1rem; font-weight: 700; } @@ -44,12 +44,12 @@ display: flex; align-items: flex-end; justify-content: center; - width: 2.5rem; + inline-size: 2.5rem; font-size: 1.2rem; background: $new-module-link-bg; span { - margin-bottom: 10px; + margin-block-end: 10px; color: $new-module-link-span; } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_scheduler.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_scheduler.scss index 1dbed24deb2fc..37ec87d68af9e 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_scheduler.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_scheduler.scss @@ -29,7 +29,7 @@ } &-title { - margin-bottom: .25rem; + margin-block-end: .25rem; font-size: 1rem; font-weight: 700; } @@ -52,12 +52,12 @@ display: flex; align-items: flex-end; justify-content: center; - width: 2.5rem; + inline-size: 2.5rem; font-size: 1.2rem; background: $quickicon-linkadd-bg; span { - margin-bottom: 10px; + margin-block-end: 10px; color: var(--quickicon-linkadd-color); } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_tags.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_tags.scss index e4c0e26e44125..29dcadcf43795 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_tags.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_tags.scss @@ -8,7 +8,7 @@ @include media-breakpoint-up(md) { display: inline-block; - width: calc(50% - 15px); + inline-size: calc(50% - 15px); } } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_templates.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_templates.scss index d96464d460117..a5f7f85605267 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_templates.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_templates.scss @@ -5,9 +5,9 @@ position: relative; .menu-links { - padding-left: 0; - margin-top: 15px; - margin-left: 0; + padding-inline-start: 0; + margin-block-start: 15px; + margin-inline-start: 0; column-count: 3; column-gap: 15px; @@ -17,8 +17,8 @@ > li { display: inline-block; - width: 100%; - margin-bottom: 15px; + inline-size: 100%; + margin-block-end: 15px; vertical-align: top; list-style: none; backface-visibility: hidden; @@ -52,7 +52,7 @@ } .thumbnail > img { - max-width: 100%; - max-height: 100%; + max-inline-size: 100%; + max-block-size: 100%; } } diff --git a/build/media_source/templates/administrator/atum/scss/pages/_com_users.scss b/build/media_source/templates/administrator/atum/scss/pages/_com_users.scss index e1f4412a73cca..4428bc1462259 100644 --- a/build/media_source/templates/administrator/atum/scss/pages/_com_users.scss +++ b/build/media_source/templates/administrator/atum/scss/pages/_com_users.scss @@ -17,7 +17,7 @@ &.view-mail { .form-control { - max-width: 100%; + max-inline-size: 100%; } } diff --git a/build/media_source/templates/administrator/atum/scss/system/searchtools/searchtools.scss b/build/media_source/templates/administrator/atum/scss/system/searchtools/searchtools.scss index a837ce30e4acb..44d2baa2c98a1 100644 --- a/build/media_source/templates/administrator/atum/scss/system/searchtools/searchtools.scss +++ b/build/media_source/templates/administrator/atum/scss/system/searchtools/searchtools.scss @@ -10,7 +10,7 @@ .js-stools-container-bar, .js-stools-container-filters { - margin-bottom: 10px; + margin-block-end: 10px; } .js-stools-container-bar { @@ -51,7 +51,7 @@ .js-stools-container-filters { display: none; - width: 100%; + inline-size: 100%; &-visible { display: grid; diff --git a/build/media_source/templates/administrator/atum/scss/vendor/_codemirror.scss b/build/media_source/templates/administrator/atum/scss/vendor/_codemirror.scss index d4e29274c3a86..b90fd9ff99b25 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/_codemirror.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/_codemirror.scss @@ -1,18 +1,18 @@ // Codemirror joomla-editor-codemirror.fullscreen { - top: 133px; + inset-block-start: 133px; .cm-editor { - height: calc(90vh - 133px) !important; + block-size: calc(90vh - 133px) !important; } @include media-breakpoint-down(sm) { - top: 54px; + inset-block-start: 54px; z-index: 890; .cm-editor { - height: 100vh !important; + block-size: 100vh !important; } } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/_tinymce.scss b/build/media_source/templates/administrator/atum/scss/vendor/_tinymce.scss index d89abc5617916..f3bf48957a04b 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/_tinymce.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/_tinymce.scss @@ -3,7 +3,7 @@ .editor { .toggle-editor { - margin-top: 1rem; + margin-block-start: 1rem; } .mce-tinymce { @@ -28,7 +28,7 @@ } .mce-top-part { - margin-bottom: 1rem; + margin-block-end: 1rem; &::before { box-shadow: none; @@ -46,8 +46,8 @@ .mce-btn-group { &:not(:first-child) { - margin-right: 6px; - margin-left: 0; + margin-inline-end: 6px; + margin-inline-start: 0; } .mce-btn { @@ -58,7 +58,7 @@ .mce-statusbar .mce-container-body { background-color: $white; - border-top: var(--template-bg-light) 1px solid; + border-block-start: var(--template-bg-light) 1px solid; } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss index 018acf32fc207..d74b740eadeae 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss @@ -6,10 +6,10 @@ @include media-breakpoint-down(sm) { .btn { - margin-bottom: .25rem; + margin-block-end: .25rem; } .input-group .btn { - margin-bottom: 0; + margin-block-end: 0; } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_card.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_card.scss index 4899fb01753b0..217275750faff 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_card.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_card.scss @@ -3,7 +3,7 @@ // Backport Bootstrap 4 card-columns .card-columns { .card { - margin-bottom: $card-spacer-y; + margin-block-end: $card-spacer-y; } @include media-breakpoint-up(sm) { @@ -14,7 +14,7 @@ .card { display: inline-block; // Don't let them vertically span multiple columns - width: 100%; // Don't let their width change + inline-size: 100%; // Don't let their width change } } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_custom-forms.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_custom-forms.scss index 9c172f7913c26..4135036b45399 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_custom-forms.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_custom-forms.scss @@ -5,7 +5,7 @@ } .form-select { - max-width: $input-max-width; + max-inline-size: $input-max-width; cursor: pointer; background: $form-select-background; border: $form-select-border; diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_dropdown.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_dropdown.scss index 5832ad4297fa2..263ca6623feac 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_dropdown.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_dropdown.scss @@ -1,7 +1,7 @@ // Dropdown .btn-group .dropdown-menu { - min-width: 100%; + min-inline-size: 100%; background: var(--body-bg); box-shadow: $dropdown-box-shadow; @@ -17,7 +17,7 @@ .dropdown-item { text-align: start; - border-bottom: var(--dropdown-item-border-bottom); + border-block-end: var(--dropdown-item-border-bottom); &:hover, &:focus { @@ -53,7 +53,7 @@ } + .dropdown-item { - border-top: 1px solid rgba(0, 0, 0, .1); + border-block-start: 1px solid rgba(0, 0, 0, .1); } .dropdown-status-group .dropdown-menu &:not(.disabled) { @@ -65,13 +65,13 @@ } &.first:not(.last) { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; + border-end-end-radius: 0; + border-end-start-radius: 0; } &.last:not(.first) { - border-top-left-radius: 0; - border-top-right-radius: 0; + border-start-start-radius: 0; + border-start-end-radius: 0; } &:not(.first):not(.last):not(:only-of-type) { @@ -82,7 +82,7 @@ @if $enable-dark-mode { @include color-mode(dark) { .dropdown-divider { - border-top: map-get($atum-colors-dark, "dropdown-divider-bg"); + border-block-start: map-get($atum-colors-dark, "dropdown-divider-bg"); } } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_form.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_form.scss index e446f1bf112db..3a03569852cbd 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_form.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_form.scss @@ -3,7 +3,7 @@ // Form label { - margin-bottom: 0; + margin-block-end: 0; } .form-control { @@ -15,31 +15,31 @@ label { td .form-control { display: inline-block; - width: auto; + inline-size: auto; } legend { - margin-bottom: 1.1rem; + margin-block-end: 1.1rem; font-size: 1rem; font-weight: $font-weight-normal; } .checkboxes { - padding-top: 5px; + padding-block-start: 5px; .checkbox input { position: static; - margin-left: 0; + margin-inline-start: 0; } } .form-check { - padding-top: 5px; - margin-bottom: 0; + padding-block-start: 5px; + margin-block-end: 0; } .modal label { - width: 100%; + inline-size: 100%; } // Validation @@ -65,12 +65,12 @@ select.form-control { .field-media-wrapper { display: block; - width: 100%; - max-width: calc(50vw - 5rem); + inline-size: 100%; + max-inline-size: calc(50vw - 5rem); .field-media-preview { - width: 100%; - max-width: none; + inline-size: 100%; + max-inline-size: none; } .button-select { @@ -87,18 +87,18 @@ select.form-control { } @include media-breakpoint-down(lg) { - min-width: 100%; + min-inline-size: 100%; } } // Bootstrap 4 b/c .form-inline .form-select, .form-inline .custom-select, .form-inline .form-control { display: inline-block; - width: auto; + inline-size: auto; } @include media-breakpoint-down(md) { .form-inline .form-select, .form-inline .custom-select, .form-inline .form-control { - width: 100%; + inline-size: 100%; } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_lists.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_lists.scss index d0d8005b0efe4..796d661fee63a 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_lists.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_lists.scss @@ -1,5 +1,5 @@ // Lists .list-unstyled .list-unstyled { - padding-left: 20px; + padding-inline-start: 20px; } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_modal.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_modal.scss index 94f6afcc497e8..ec5520c00f679 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_modal.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_modal.scss @@ -2,98 +2,98 @@ .jviewport-height { &10 { - height: 10vh; + block-size: 10vh; } &20 { - height: 20vh; + block-size: 20vh; } &30 { - height: 30vh; + block-size: 30vh; } &40 { - height: 40vh; + block-size: 40vh; } &50 { - height: 50vh; + block-size: 50vh; } &60 { - height: 60vh; + block-size: 60vh; } &70 { - height: 70vh; + block-size: 70vh; } &80 { - height: 80vh; + block-size: 80vh; } &90 { - height: 90vh; + block-size: 90vh; } &100 { - height: 100vh; + block-size: 100vh; } } [class*=jviewport-height] iframe { - height: 100%; + block-size: 100%; } .modal-dialog.jviewport-width { &10 { - width: 10vw; + inline-size: 10vw; } &20 { - width: 20vw; - max-width: none; + inline-size: 20vw; + max-inline-size: none; } &30 { - width: 30vw; - max-width: none; + inline-size: 30vw; + max-inline-size: none; } &40 { - width: 40vw; - max-width: none; + inline-size: 40vw; + max-inline-size: none; } &50 { - width: 50vw; - max-width: none; + inline-size: 50vw; + max-inline-size: none; } &60 { - width: 60vw; - max-width: none; + inline-size: 60vw; + max-inline-size: none; } &70 { - width: 70vw; - max-width: none; + inline-size: 70vw; + max-inline-size: none; } &80 { - width: 80vw; - max-width: none; + inline-size: 80vw; + max-inline-size: none; } &90 { - width: 90vw; - max-width: none; + inline-size: 90vw; + max-inline-size: none; } &100 { - width: 100vw; - max-width: none; + inline-size: 100vw; + max-inline-size: none; } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_table.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_table.scss index c4547069a57c6..3fde78b620b8a 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_table.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_table.scss @@ -38,7 +38,7 @@ .actions, .actions-th1 { @include media-breakpoint-down(md) { - width: 28%; + inline-size: 28%; } } } @@ -54,7 +54,7 @@ &:last-of-type { th, td { - border-bottom: 0; + border-block-end: 0; } } } @@ -86,7 +86,7 @@ th, td { label { - margin-bottom: 0; + margin-block-end: 0; } .inactive [class^="#{$jicon-css-prefix}-"], diff --git a/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss b/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss index 95935cfa55bf6..e365273dda4ce 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss @@ -28,9 +28,9 @@ } .choices__inner { - min-height: 42px; + min-block-size: 42px; padding: .1rem 1rem; - margin-bottom: 0; + margin-block-end: 0; font-size: 1rem; border: none; border-radius: 0; @@ -38,7 +38,7 @@ .choices__input { padding: 0; - margin-bottom: 0; + margin-block-end: 0; font-size: 1rem; background-color: transparent; @@ -120,10 +120,7 @@ &::before { position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; + inset: 0; display: block; text-align: center; text-indent: 0; @@ -196,10 +193,10 @@ .choices__button_joomla { position: absolute; - top: 50%; + inset-block-start: 50%; inset-inline-end: 0; - width: 20px; - height: 20px; + inline-size: 20px; + block-size: 20px; padding: 0; margin-block-start: -10px; margin-inline-end: 50px; diff --git a/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-alert.scss b/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-alert.scss index e770440b81268..670b53f303da2 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-alert.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-alert.scss @@ -8,10 +8,10 @@ #system-message-container joomla-alert { position: relative; display: flex; - width: 100%; - min-width: 16rem; + inline-size: 100%; + min-inline-size: 16rem; padding: 0; - margin-bottom: 1rem; + margin-block-end: 1rem; color: var(--alert-accent-color); background-color: var(--alert-bg-color); border: 1px solid; @@ -96,8 +96,8 @@ .message::before, .success::before { display: inline-block; - width: 1em; - height: 1em; + inline-size: 1em; + block-size: 1em; content: ""; background-image: url('data:image/svg+xml;utf8,'); background-size: 100%; @@ -106,8 +106,8 @@ .notice::before, .info::before { display: inline-block; - width: 1em; - height: 1em; + inline-size: 1em; + block-size: 1em; content: ""; background-image: url('data:image/svg+xml;utf8,'); background-size: 100%; @@ -115,8 +115,8 @@ .warning::before { display: inline-block; - width: 1em; - height: 1em; + inline-size: 1em; + block-size: 1em; content: ""; background-image: url('data:image/svg+xml;utf8,'); background-size: 100%; @@ -125,8 +125,8 @@ .error::before, .danger::before { display: inline-block; - width: 1em; - height: 1em; + inline-size: 1em; + block-size: 1em; content: ""; background-image: url('data:image/svg+xml;utf8,'); background-size: 100%; @@ -134,7 +134,7 @@ } .alert-wrapper { - width: 100%; + inline-size: 100%; } .alert-link { @@ -146,7 +146,7 @@ .joomla-alert--close, .joomla-alert-button--close { position: absolute; - top: 0; + inset-block-start: 0; inset-inline-end: 0; padding: .75rem .8rem; font-size: 2rem; @@ -174,7 +174,7 @@ } .alert-message:not(:first-of-type) { - border-top: 1px solid var(--alert-accent-color); + border-block-start: 1px solid var(--alert-accent-color); } } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-tab.scss b/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-tab.scss index 62bc59a657453..53cc4b37a000f 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-tab.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/joomla-custom-elements/joomla-tab.scss @@ -17,12 +17,12 @@ joomla-tab { flex-direction: column; &[orientation=horizontal]:not([view=accordion]) { - margin-bottom: 0; + margin-block-end: 0; } &[orientation=horizontal]:not([view=accordion]) > div[role=tablist] { - width: 100%; - margin-bottom: 0; + inline-size: 100%; + margin-block-end: 0; } > div[role=tablist] { @@ -31,7 +31,7 @@ joomla-tab { padding: 0; white-space: nowrap; list-style: outside none none; - border-bottom: $joomla-tablist-border-bottom; // 1px solid var(--template-bg-dark-10); + border-block-end: $joomla-tablist-border-bottom; // 1px solid var(--template-bg-dark-10); > button[role=tab] { position: relative; @@ -62,10 +62,9 @@ joomla-tab { &::after { position: absolute; - right: 0; - bottom: 0; - left: 0; - height: 3px; + inset-inline: 0; + inset-block-end: 0; + block-size: 3px; content: ""; background-color: var(--btn-primary-bg); opacity: .8; @@ -88,13 +87,13 @@ joomla-tab { } > button[role=region] { - width: 100%; + inline-size: 100%; padding: .7rem; color: var(--template-text-light); text-align: start; background-color: var(--template-link-color); border: $joomla-tab-btn-region-border; - border-top: 0; + border-block-start: 0; &[aria-selected=true], &:hover, @@ -123,23 +122,23 @@ joomla-tab { } .main-card-columns > * > & { - height: 100%; - border-left: $main-card-col-border-left; // 1px solid var(--template-bg-dark-10); + block-size: 100%; + border-inline-start: $main-card-col-border-left; // 1px solid var(--template-bg-dark-10); } } joomla-tab[orientation=vertical] { flex-direction: row; align-items: flex-start; - width: 100%; + inline-size: 100%; > div[role=tablist] { flex: 0 0 25%; flex-direction: column; - width: 100%; - min-width: 25%; - max-width: 25%; - height: auto; + inline-size: 100%; + min-inline-size: 25%; + max-inline-size: 25%; + block-size: auto; padding: 0; overflow: hidden; border: $joomla-tab-tablist-border; // 1px solid $gray-300; @@ -148,7 +147,7 @@ joomla-tab[orientation=vertical] { @include media-breakpoint-down(lg) { flex: 0 0 100%; - max-width: 100%; + max-inline-size: 100%; } > button[role=tab] { @@ -161,7 +160,7 @@ joomla-tab[orientation=vertical] { } > button[role=tab]:last-of-type { - border-bottom: 0; + border-block-end: 0; } > button[role=tab] { @@ -170,8 +169,8 @@ joomla-tab[orientation=vertical] { padding: .75em 1em; margin: -1px 0; text-decoration: none; - border-top: 1px solid transparent; - border-bottom: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; + border-block-start: 1px solid transparent; + border-block-end: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; box-shadow: none; &[aria-selected=true], @@ -180,15 +179,14 @@ joomla-tab[orientation=vertical] { color: var(--template-text-light); background-color: $joomla-tablist-btn-aria-exp-bg; // var(--template-bg-dark-60); background-image: none; - border-right: 0; + border-inline-end: 0; box-shadow: none; &::after { - top: 0; - bottom: 0; - left: -1px; - width: 5px; - height: auto; + inset-block: 0; + inset-inline-start: -1px; + inline-size: 5px; + block-size: auto; background-color: $joomla-tablist-btn-aria-exp-aft-bg; // var(--template-bg-dark); } @@ -204,7 +202,7 @@ joomla-tab[orientation=vertical] { } > joomla-tab-element { - width: 100%; + inline-size: 100%; padding: $grid-gutter-width-s 0 $grid-gutter-width-s $grid-gutter-width-s; border: 0 none; box-shadow: none; @@ -228,19 +226,18 @@ joomla-tab[view=accordion] { text-align: start; text-decoration: none; border: 0; - border-bottom: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; + border-block-end: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; box-shadow: none; &[aria-selected=true]::after, &:hover::after { position: absolute; - top: auto; - right: -1px; - bottom: -1px; - left: -1px; + inset-inline: -1px; + inset-block-start: auto; + inset-block-end: -1px; display: block; - width: calc(100% + 2px); - height: 5px; + inline-size: calc(100% + 2px); + block-size: 5px; content: ""; background-color: var(--template-bg-dark); opacity: .8; @@ -254,9 +251,9 @@ joomla-tab[view=accordion] { &[active] { display: block; - width: 100%; - max-width: 100%; - border-bottom: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; + inline-size: 100%; + max-inline-size: 100%; + border-block-end: $joomla-tab-vert-border-bottom; // 1px solid $gray-300; } } @@ -301,7 +298,7 @@ joomla-tab[view=accordion] { } .respTable td:last-child { - border-bottom: $respTable-border-bottom; // 1em var(--template-bg-dark-80) solid; + border-block-end: $respTable-border-bottom; // 1em var(--template-bg-dark-80) solid; } .oddCol { @@ -333,8 +330,8 @@ joomla-tab[view=accordion] { [dir=rtl] joomla-tab { div[role="tablist"] > button[role="tab"][aria-selected="true"]::after { - right: auto; - left: 0; + inset-inline-end: auto; + inset-inline-start: 0; } } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/minicolors/minicolors.scss b/build/media_source/templates/administrator/atum/scss/vendor/minicolors/minicolors.scss index 27ec546848da4..e649737dccbde 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/minicolors/minicolors.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/minicolors/minicolors.scss @@ -4,14 +4,14 @@ .minicolors-theme-bootstrap { .minicolors-input { - width: 140px; + inline-size: 140px; } .rgb { - width: 175px; + inline-size: 175px; } .rgba { - width: 220px; + inline-size: 220px; } } From cb5aaef1addccaf44f08d89de795801a9018c664 Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Sat, 9 Aug 2025 12:34:06 +0100 Subject: [PATCH 162/279] [6.x] template assets (#45863) Updates the description of the template to remove the version number --- administrator/templates/atum/joomla.asset.json | 2 +- templates/cassiopeia/joomla.asset.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/administrator/templates/atum/joomla.asset.json b/administrator/templates/atum/joomla.asset.json index acd22c1bf3dfc..edb2c2bd05943 100644 --- a/administrator/templates/atum/joomla.asset.json +++ b/administrator/templates/atum/joomla.asset.json @@ -2,7 +2,7 @@ "$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json", "name": "atum", "version": "4.0.0", - "description": "This file contains details of the assets used by Atum, the default Joomla 4 administrator template.", + "description": "This file contains details of the assets used by Atum, the default Joomla administrator template.", "license": "GPL-2.0-or-later", "assets": [ { diff --git a/templates/cassiopeia/joomla.asset.json b/templates/cassiopeia/joomla.asset.json index 67b53cd7103da..4570677e11604 100644 --- a/templates/cassiopeia/joomla.asset.json +++ b/templates/cassiopeia/joomla.asset.json @@ -2,7 +2,7 @@ "$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json", "name": "cassiopeia", "version": "4.0.0", - "description": "This file contains details of the assets used by Cassiopeia, the default Joomla 4 site template.", + "description": "This file contains details of the assets used by Cassiopeia, the default Joomla site template.", "license": "GPL-2.0-or-later", "assets": [ { From 8de1baff1e9f01eb49d4bff489ea18fa83cf3a67 Mon Sep 17 00:00:00 2001 From: Christian Heel <66922325+heelc29@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:13:00 +0200 Subject: [PATCH 163/279] [6.0] fix invalid json in mysql install (#45855) Thank you for finding this bug, and the testers for ... testing it --- installation/sql/mysql/base.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/sql/mysql/base.sql b/installation/sql/mysql/base.sql index b4ab5416b667f..88067a242eb34 100644 --- a/installation/sql/mysql/base.sql +++ b/installation/sql/mysql/base.sql @@ -413,7 +413,7 @@ INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, -- Templates INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES (0, 'atum', 'template', 'atum', '', 1, 1, 1, 0, 1, '', '', '', 0, 0), -(0, 'cassiopeia', 'template', 'cassiopeia', '', 0, 1, 1, 0, 1, '', '{"brand":"1","logoFile":"","siteTitle":"","siteDescription":"","useFontScheme":"0","colorName":"colors_standard","fluidContainer":"0","stickyHeader":0,"backTop":0",colorSettings":1,"headerbg":"rgb(193, 205, 207)","headercolor":"rgb(23, 23, 23)","bodybg":"rgb(254, 254, 254)","bodycolor":"rgb(23, 23, 23)","linkcolor":"rgb(29, 121, 137)","linkcolorh":"rgb(14, 59, 67)","btnbg":"rgb(206, 60, 55)","btnbgh":"rgb(131, 35, 32)","btncolor":"rgb(254, 254, 254)","btncolorh":"rgb(254, 254, 254)","footerbg":"rgb(29, 121, 137)","footercolor":"rgb(254, 254, 254)","fontSettings":1,"bodysize":"1","h1size":"2","h2size":"1.7","h3size":"1.5"}', '', 0, 0); +(0, 'cassiopeia', 'template', 'cassiopeia', '', 0, 1, 1, 0, 1, '', '{"brand":"1","logoFile":"","siteTitle":"","siteDescription":"","useFontScheme":"0","colorName":"colors_standard","fluidContainer":"0","stickyHeader":0,"backTop":0,"colorSettings":1,"headerbg":"rgb(193, 205, 207)","headercolor":"rgb(23, 23, 23)","bodybg":"rgb(254, 254, 254)","bodycolor":"rgb(23, 23, 23)","linkcolor":"rgb(29, 121, 137)","linkcolorh":"rgb(14, 59, 67)","btnbg":"rgb(206, 60, 55)","btnbgh":"rgb(131, 35, 32)","btncolor":"rgb(254, 254, 254)","btncolorh":"rgb(254, 254, 254)","footerbg":"rgb(29, 121, 137)","footercolor":"rgb(254, 254, 254)","fontSettings":1,"bodysize":"1","h1size":"2","h2size":"1.7","h3size":"1.5"}', '', 0, 0); -- Files Extensions INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES From 235a71e86400b4f08494c93a074f9bcecb8c2cfd Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Mon, 11 Aug 2025 21:43:57 +0200 Subject: [PATCH 164/279] [6.0] Fix unlocked and possibly uninstalled core plugins for updates (#45822) * Fix unlocked core extensions for updates from 6.0.0 alpha * Update only if not locked * Add back plugins if they have been uninstalled * Add back plugins with disabled state --- .../sql/updates/mysql/6.0.0-2025-08-02.sql | 62 +++++++++++++++++++ .../updates/postgresql/6.0.0-2025-08-02.sql | 62 +++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-08-02.sql create mode 100644 administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-08-02.sql diff --git a/administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-08-02.sql b/administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-08-02.sql new file mode 100644 index 0000000000000..88db2e5ccb1fc --- /dev/null +++ b/administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-08-02.sql @@ -0,0 +1,62 @@ +-- +-- Insert back previously unlocked schemaorg and task core plugins if they have been uninstalled +-- +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_article', 'plugin', 'article', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'article' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_blogposting', 'plugin', 'blogposting', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'blogposting' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_book', 'plugin', 'book', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'book' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_event', 'plugin', 'event', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'event' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_jobposting', 'plugin', 'jobposting', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'jobposting' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'organization' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'person' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'recipe' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'custom' AND e.`folder` = 'schemaorg' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_system_schemaorg', 'plugin', 'schemaorg', 'system', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'schemaorg' AND e.`folder` = 'system' AND e.`client_id` = 0); + +INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) +SELECT 0, 'plg_task_globalcheckin', 'plugin', 'globalcheckin', 'task', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM `#__extensions` e WHERE e.`type` = 'plugin' AND e.`element` = 'globalcheckin' AND e.`folder` = 'task' AND e.`client_id` = 0); + +-- +-- Update present unlocked schemaorg and task core plugins +-- +UPDATE `#__extensions` SET `locked` = 1 + WHERE `type` = 'plugin' AND `folder` = 'schemaorg' + AND `element` IN ('article', 'blogposting', 'book', 'event', 'jobposting', 'organization', 'person', 'recipe', 'custom') + AND `locked` <> 1; + +UPDATE `#__extensions` SET `locked` = 1 + WHERE `type` = 'plugin' AND `element` = 'schemaorg' AND `folder` = 'system' + AND `locked` <> 1; + +UPDATE `#__extensions` SET `locked` = 1 + WHERE `type` = 'plugin' AND `element` = 'globalcheckin' AND `folder` = 'task' + AND `locked` <> 1; diff --git a/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-08-02.sql b/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-08-02.sql new file mode 100644 index 0000000000000..6dece2e9aaae0 --- /dev/null +++ b/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-08-02.sql @@ -0,0 +1,62 @@ +-- +-- Insert back previously unlocked schemaorg and task core plugins if they have been uninstalled +-- +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_article', 'plugin', 'article', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'article' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_blogposting', 'plugin', 'blogposting', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'blogposting' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_book', 'plugin', 'book', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'book' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_event', 'plugin', 'event', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'event' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_jobposting', 'plugin', 'jobposting', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'jobposting' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'organization' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'person' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'recipe' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'custom' AND e."folder" = 'schemaorg' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_system_schemaorg', 'plugin', 'schemaorg', 'system', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'schemaorg' AND e."folder" = 'system' AND e."client_id" = 0); + +INSERT INTO "#__extensions" ("package_id", "name", "type", "element", "folder", "client_id", "enabled", "access", "protected", "locked", "manifest_cache", "params", "custom_data", "ordering", "state") +SELECT 0, 'plg_task_globalcheckin', 'plugin', 'globalcheckin', 'task', 0, 0, 1, 0, 1, '', '{}', '', -1, 0 +WHERE NOT EXISTS (SELECT * FROM "#__extensions" e WHERE e."type" = 'plugin' AND e."element" = 'globalcheckin' AND e."folder" = 'task' AND e."client_id" = 0); + +-- +-- Update present unlocked schemaorg and task core plugins +-- +UPDATE "#__extensions" SET "locked" = 1 + WHERE "type" = 'plugin' AND "folder" = 'schemaorg' + AND "element" IN ('article', 'blogposting', 'book', 'event', 'jobposting', 'organization', 'person', 'recipe', 'custom') + AND "locked" <> 1; + +UPDATE "#__extensions" SET "locked" = 1 + WHERE "type" = 'plugin' AND "element" = 'schemaorg' AND "folder" = 'system' + AND "locked" <> 1; + +UPDATE "#__extensions" SET "locked" = 1 + WHERE "type" = 'plugin' AND "element" = 'globalcheckin' AND "folder" = 'task' + AND "locked" <> 1; From d5aa1cab3565d694540c05e8d1d58c182138405f Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Mon, 11 Aug 2025 23:03:54 +0200 Subject: [PATCH 165/279] [6.0] Replace all joomla/string inflector code (#45040) * Replace all joomla/string inflector code * Replacing Joomla/String/Inflector class with Doctrine inflector everywhere --- .../com_categories/tmpl/categories/default.php | 8 ++++---- .../components/com_tags/tmpl/tags/default.php | 8 ++++---- .../src/Controller/DisplayController.php | 6 ++++-- .../src/Controller/ContactController.php | 5 +++-- .../src/Controller/OverridesController.php | 7 +++++-- .../com_media/src/Controller/MediaController.php | 8 +++++--- .../src/Controller/PluginsController.php | 5 +++-- .../src/Controller/StylesController.php | 5 +++-- libraries/src/MVC/Controller/ApiController.php | 14 +++++++++----- .../workflow/featuring/src/Extension/Featuring.php | 4 ++-- .../publishing/src/Extension/Publishing.php | 4 ++-- 11 files changed, 44 insertions(+), 30 deletions(-) diff --git a/administrator/components/com_categories/tmpl/categories/default.php b/administrator/components/com_categories/tmpl/categories/default.php index 1535e9eeeb213..a628212d6bccc 100644 --- a/administrator/components/com_categories/tmpl/categories/default.php +++ b/administrator/components/com_categories/tmpl/categories/default.php @@ -10,13 +10,13 @@ defined('_JEXEC') or die; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Multilanguage; use Joomla\CMS\Language\Text; use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\Router\Route; use Joomla\CMS\Session\Session; -use Joomla\String\Inflector; /** @var \Joomla\Component\Categories\Administrator\View\Categories\HtmlView $this */ @@ -38,10 +38,10 @@ if (count($parts) > 1) { $section = $parts[1]; - $inflector = Inflector::getInstance(); + $inflector = InflectorFactory::create()->build(); - if (!$inflector->isPlural($section)) { - $section = $inflector->toPlural($section); + if ($inflector->pluralize($inflector->singularize($section)) !== $section) { + $section = $inflector->pluralize($section); } } diff --git a/administrator/components/com_tags/tmpl/tags/default.php b/administrator/components/com_tags/tmpl/tags/default.php index 0ccc7e4445ea4..d033dbf341b38 100644 --- a/administrator/components/com_tags/tmpl/tags/default.php +++ b/administrator/components/com_tags/tmpl/tags/default.php @@ -10,6 +10,7 @@ defined('_JEXEC') or die; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Multilanguage; @@ -17,7 +18,6 @@ use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\Router\Route; use Joomla\CMS\Session\Session; -use Joomla\String\Inflector; /** @var \Joomla\Component\Tags\Administrator\View\Tags\HtmlView $this */ @@ -40,10 +40,10 @@ if (count($parts) > 1) { $section = $parts[1]; - $inflector = Inflector::getInstance(); + $inflector = InflectorFactory::create()->build(); - if (!$inflector->isPlural($section)) { - $section = $inflector->toPlural($section); + if ($inflector->pluralize($inflector->singularize($section)) !== $section) { + $section = $inflector->pluralize($section); } } diff --git a/administrator/components/com_workflow/src/Controller/DisplayController.php b/administrator/components/com_workflow/src/Controller/DisplayController.php index d78369db70b8d..030e0aad3ccaf 100644 --- a/administrator/components/com_workflow/src/Controller/DisplayController.php +++ b/administrator/components/com_workflow/src/Controller/DisplayController.php @@ -10,13 +10,13 @@ namespace Joomla\Component\Workflow\Administrator\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\Router\Route; use Joomla\Input\Input; -use Joomla\String\Inflector; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -110,7 +110,9 @@ public function display($cachable = false, $urlparams = []) $this->setMessage(Text::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id), 'error'); } - $url = 'index.php?option=com_workflow&view=' . Inflector::pluralize($view) . '&extension=' . $this->input->getCmd('extension'); + $inflector = InflectorFactory::create()->build(); + + $url = 'index.php?option=com_workflow&view=' . $inflector->pluralize($view) . '&extension=' . $this->input->getCmd('extension'); $this->setRedirect(Route::_($url, false)); diff --git a/api/components/com_contact/src/Controller/ContactController.php b/api/components/com_contact/src/Controller/ContactController.php index fe92d1bfe392b..b16fee644452b 100644 --- a/api/components/com_contact/src/Controller/ContactController.php +++ b/api/components/com_contact/src/Controller/ContactController.php @@ -10,6 +10,7 @@ namespace Joomla\Component\Contact\Api\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Event\Contact\SubmitContactEvent; use Joomla\CMS\Event\Contact\ValidateContactEvent; @@ -29,7 +30,6 @@ use Joomla\CMS\User\UserFactoryAwareTrait; use Joomla\Component\Fields\Administrator\Helper\FieldsHelper; use Joomla\Registry\Registry; -use Joomla\String\Inflector; use PHPMailer\PHPMailer\Exception as phpMailerException; use Tobscure\JsonApi\Exception\InvalidParameterException; @@ -99,7 +99,8 @@ public function submitForm($id = null) $id = $this->input->post->get('id', 0, 'int'); } - $modelName = Inflector::singularize($this->contentType); + $inflector = InflectorFactory::create()->build(); + $modelName = $inflector->singularize($this->contentType); /** @var \Joomla\Component\Contact\Site\Model\ContactModel $model */ $model = $this->getModel($modelName, 'Site'); diff --git a/api/components/com_languages/src/Controller/OverridesController.php b/api/components/com_languages/src/Controller/OverridesController.php index 3bc20ec0ef9e8..1eb8e3528e378 100644 --- a/api/components/com_languages/src/Controller/OverridesController.php +++ b/api/components/com_languages/src/Controller/OverridesController.php @@ -10,11 +10,11 @@ namespace Joomla\Component\Languages\Api\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Form\Form; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\ApiController; use Joomla\CMS\MVC\Controller\Exception; -use Joomla\String\Inflector; use Tobscure\JsonApi\Exception\InvalidParameterException; // phpcs:disable PSR1.Files.SideEffects @@ -87,8 +87,11 @@ public function displayList() */ protected function save($recordKey = null) { + $inflector = InflectorFactory::create()->build(); + $modelName = $inflector->singularize($this->contentType); + /** @var \Joomla\CMS\MVC\Model\AdminModel $model */ - $model = $this->getModel(Inflector::singularize($this->contentType)); + $model = $this->getModel($modelName); if (!$model) { throw new \RuntimeException(Text::_('JLIB_APPLICATION_ERROR_MODEL_CREATE')); diff --git a/api/components/com_media/src/Controller/MediaController.php b/api/components/com_media/src/Controller/MediaController.php index 328e56819a283..759a6bb244935 100644 --- a/api/components/com_media/src/Controller/MediaController.php +++ b/api/components/com_media/src/Controller/MediaController.php @@ -10,6 +10,7 @@ namespace Joomla\Component\Media\Api\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Access\Exception\NotAllowed; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Filter\InputFilter; @@ -19,7 +20,6 @@ use Joomla\Component\Media\Administrator\Exception\InvalidPathException; use Joomla\Component\Media\Administrator\Provider\ProviderManagerHelperTrait; use Joomla\Component\Media\Api\Model\MediumModel; -use Joomla\String\Inflector; use Tobscure\JsonApi\Exception\InvalidParameterException; // phpcs:disable PSR1.Files.SideEffects @@ -314,7 +314,8 @@ protected function allowEdit($data = [], $key = 'id'): bool protected function save($recordKey = null) { // Explicitly get the single item model name. - $modelName = $this->input->get('model', Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $modelName = $this->input->get('model', $inflector->singularize($this->contentType)); /** @var MediumModel $model */ $model = $this->getModel($modelName, '', ['ignore_request' => true, 'state' => $this->modelState]); @@ -377,7 +378,8 @@ public function delete($id = null): void $this->modelState->set('path', $this->input->get('path', '', 'STRING')); - $modelName = $this->input->get('model', Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $modelName = $this->input->get('model', $inflector->singularize($this->contentType)); $model = $this->getModel($modelName, '', ['ignore_request' => true, 'state' => $this->modelState]); $model->delete(); diff --git a/api/components/com_plugins/src/Controller/PluginsController.php b/api/components/com_plugins/src/Controller/PluginsController.php index a402d46dd2a11..f487cf0d53e07 100644 --- a/api/components/com_plugins/src/Controller/PluginsController.php +++ b/api/components/com_plugins/src/Controller/PluginsController.php @@ -10,12 +10,12 @@ namespace Joomla\Component\Plugins\Api\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Filter\InputFilter; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Controller\ApiController; use Joomla\CMS\MVC\Controller\Exception; use Joomla\CMS\Router\Exception\RouteNotFoundException; -use Joomla\String\Inflector; use Tobscure\JsonApi\Exception\InvalidParameterException; // phpcs:disable PSR1.Files.SideEffects @@ -70,7 +70,8 @@ public function edit() } /** @var \Joomla\Component\Plugins\Administrator\Model\PluginModel $model */ - $model = $this->getModel(Inflector::singularize($this->contentType), '', ['ignore_request' => true]); + $inflector = InflectorFactory::create()->build(); + $model = $this->getModel($inflector->singularize($this->contentType), '', ['ignore_request' => true]); if (!$model) { throw new \RuntimeException(Text::_('JLIB_APPLICATION_ERROR_MODEL_CREATE')); diff --git a/api/components/com_templates/src/Controller/StylesController.php b/api/components/com_templates/src/Controller/StylesController.php index e973c2bfb50fc..319a3ed77dc46 100644 --- a/api/components/com_templates/src/Controller/StylesController.php +++ b/api/components/com_templates/src/Controller/StylesController.php @@ -10,8 +10,8 @@ namespace Joomla\Component\Templates\Api\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\MVC\Controller\ApiController; -use Joomla\String\Inflector; use Tobscure\JsonApi\Exception\InvalidParameterException; // phpcs:disable PSR1.Files.SideEffects @@ -91,7 +91,8 @@ protected function preprocessSaveData(array $data): array unset($data['template']); } - $model = $this->getModel(Inflector::singularize($this->contentType), '', ['ignore_request' => true]); + $inflector = InflectorFactory::create()->build(); + $model = $this->getModel($inflector->singularize($this->contentType), '', ['ignore_request' => true]); $data['template'] = $model->getItem($this->input->getInt('id'))->template; } diff --git a/libraries/src/MVC/Controller/ApiController.php b/libraries/src/MVC/Controller/ApiController.php index efb6746d3cae6..457b7aeee13f5 100644 --- a/libraries/src/MVC/Controller/ApiController.php +++ b/libraries/src/MVC/Controller/ApiController.php @@ -9,6 +9,7 @@ namespace Joomla\CMS\MVC\Controller; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Access\Exception\NotAllowed; use Joomla\CMS\Application\CMSWebApplicationInterface; use Joomla\CMS\Component\ComponentHelper; @@ -19,7 +20,6 @@ use Joomla\CMS\MVC\View\JsonApiView; use Joomla\Input\Input; use Joomla\Registry\Registry; -use Joomla\String\Inflector; use Tobscure\JsonApi\Exception\InvalidParameterException; // phpcs:disable PSR1.Files.SideEffects @@ -163,7 +163,8 @@ public function displayItem($id = null) throw new \RuntimeException($e->getMessage()); } - $modelName = $this->input->get('model', Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $modelName = $this->input->get('model', $inflector->singularize($this->contentType)); // Create the model, ignoring request data so we can safely set the state in the request from the controller $model = $this->getModel($modelName, '', ['ignore_request' => true, 'state' => $this->modelState]); @@ -287,7 +288,8 @@ public function delete($id = null) $id = $this->input->get('id', 0, 'int'); } - $modelName = $this->input->get('model', Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $modelName = $this->input->get('model', $inflector->singularize($this->contentType)); /** @var \Joomla\CMS\MVC\Model\AdminModel $model */ $model = $this->getModel($modelName, '', ['ignore_request' => true]); @@ -339,7 +341,8 @@ public function add() public function edit() { /** @var \Joomla\CMS\MVC\Model\AdminModel $model */ - $model = $this->getModel(Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $model = $this->getModel($inflector->singularize($this->contentType)); if (!$model) { throw new \RuntimeException(Text::_('JLIB_APPLICATION_ERROR_MODEL_CREATE')); @@ -388,7 +391,8 @@ public function edit() protected function save($recordKey = null) { /** @var \Joomla\CMS\MVC\Model\AdminModel $model */ - $model = $this->getModel(Inflector::singularize($this->contentType)); + $inflector = InflectorFactory::create()->build(); + $model = $this->getModel($inflector->singularize($this->contentType)); if (!$model) { throw new \RuntimeException(Text::_('JLIB_APPLICATION_ERROR_MODEL_CREATE')); diff --git a/plugins/workflow/featuring/src/Extension/Featuring.php b/plugins/workflow/featuring/src/Extension/Featuring.php index ed53418123401..cfa31d7b9eda0 100644 --- a/plugins/workflow/featuring/src/Extension/Featuring.php +++ b/plugins/workflow/featuring/src/Extension/Featuring.php @@ -10,6 +10,7 @@ namespace Joomla\Plugin\Workflow\Featuring\Extension; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Event\AbstractEvent; use Joomla\CMS\Event\Model; use Joomla\CMS\Event\Table\BeforeStoreEvent; @@ -28,7 +29,6 @@ use Joomla\Event\EventInterface; use Joomla\Event\SubscriberInterface; use Joomla\Registry\Registry; -use Joomla\String\Inflector; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -194,7 +194,7 @@ public function onAfterDisplay(DisplayEvent $event) $section = $event->getArgument('section'); // We need the single model context for checking for workflow - $singularsection = Inflector::singularize($section); + $singularsection = InflectorFactory::create()->build()->singularize($section); if (!$this->isSupported($component . '.' . $singularsection)) { return; diff --git a/plugins/workflow/publishing/src/Extension/Publishing.php b/plugins/workflow/publishing/src/Extension/Publishing.php index 1fdf788b37a3b..dbb96b4585bd1 100644 --- a/plugins/workflow/publishing/src/Extension/Publishing.php +++ b/plugins/workflow/publishing/src/Extension/Publishing.php @@ -10,6 +10,7 @@ namespace Joomla\Plugin\Workflow\Publishing\Extension; +use Doctrine\Inflector\InflectorFactory; use Joomla\CMS\Event\Model; use Joomla\CMS\Event\Table\BeforeStoreEvent; use Joomla\CMS\Event\View\DisplayEvent; @@ -26,7 +27,6 @@ use Joomla\Event\EventInterface; use Joomla\Event\SubscriberInterface; use Joomla\Registry\Registry; -use Joomla\String\Inflector; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -210,7 +210,7 @@ public function onAfterDisplay(DisplayEvent $event) $section = $event->getArgument('section'); // We need the single model context for checking for workflow - $singularsection = Inflector::singularize($section); + $singularsection = InflectorFactory::create()->build()->singularize($section); if (!$this->isSupported($component . '.' . $singularsection)) { return; From 54c6d48cc7daf252a229ea575d6db2b1943fc00c Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Wed, 13 Aug 2025 10:14:15 +0200 Subject: [PATCH 166/279] Adapt phpstan-baseline.neon to 6.0-dev --- phpstan-baseline.neon | 125 +++++++++--------------------------------- 1 file changed, 26 insertions(+), 99 deletions(-) diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 7870b26fee412..a60bae831b7cb 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -944,24 +944,6 @@ parameters: count: 1 path: administrator/components/com_categories/src/View/Category/HtmlView.php - - - message: ''' - #^Call to deprecated method getInstance\(\) of class Joomla\\String\\Inflector\: - 3\.0 Use static methods without a class instance instead\.$# - ''' - identifier: staticMethod.deprecated - count: 1 - path: administrator/components/com_categories/tmpl/categories/default.php - - - - message: ''' - #^Call to deprecated method toPlural\(\) of class Joomla\\String\\Inflector\: - 3\.0 Use Doctrine\\Common\\Inflector\\Inflector\:\:pluralize\(\) instead\.$# - ''' - identifier: method.deprecated - count: 1 - path: administrator/components/com_categories/tmpl/categories/default.php - - message: '#^Access to an undefined property Joomla\\Component\\Categories\\Administrator\\View\\Category\\HtmlView\:\:\$useCoreUI\.$#' identifier: property.notFound @@ -3486,6 +3468,17 @@ parameters: count: 2 path: administrator/components/com_languages/src/Controller/InstalledController.php + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 7\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/InstalledController.php + - message: ''' #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: @@ -3531,6 +3524,17 @@ parameters: count: 1 path: administrator/components/com_languages/src/Controller/OverrideController.php + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 7\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Controller/OverridesController.php + - message: ''' #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: @@ -5871,24 +5875,6 @@ parameters: count: 1 path: administrator/components/com_tags/tmpl/tag/edit.php - - - message: ''' - #^Call to deprecated method getInstance\(\) of class Joomla\\String\\Inflector\: - 3\.0 Use static methods without a class instance instead\.$# - ''' - identifier: staticMethod.deprecated - count: 1 - path: administrator/components/com_tags/tmpl/tags/default.php - - - - message: ''' - #^Call to deprecated method toPlural\(\) of class Joomla\\String\\Inflector\: - 3\.0 Use Doctrine\\Common\\Inflector\\Inflector\:\:pluralize\(\) instead\.$# - ''' - identifier: method.deprecated - count: 1 - path: administrator/components/com_tags/tmpl/tags/default.php - - message: ''' #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: @@ -7078,12 +7064,6 @@ parameters: count: 1 path: administrator/components/com_users/tmpl/user/edit_groups.php - - - message: '#^Call to method pluralize\(\) of deprecated class Doctrine\\Common\\Inflector\\Inflector\.$#' - identifier: staticMethod.deprecatedClass - count: 1 - path: administrator/components/com_workflow/src/Controller/DisplayController.php - - message: ''' #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: @@ -7374,30 +7354,6 @@ parameters: count: 1 path: administrator/modules/mod_stats_admin/src/Helper/StatsAdminHelper.php - - - message: ''' - #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: - 4\.3 will be removed in 6\.0 - Use the language service in the DI container or get from the application object - Example\: - Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# - ''' - identifier: staticMethod.deprecated - count: 2 - path: administrator/modules/mod_submenu/mod_submenu.php - - - - message: ''' - #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: - 4\.3 will be removed in 6\.0 - Use the language service in the DI container or get from the application object - Example\: - Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# - ''' - identifier: staticMethod.deprecated - count: 1 - path: administrator/modules/mod_submenu/src/Menu/Menu.php - - message: ''' #^Call to method getDispatcher\(\) of deprecated interface Joomla\\CMS\\Application\\EventAwareInterface\: @@ -13216,7 +13172,7 @@ parameters: - message: ''' #^Call to method getDispatcher\(\) of deprecated interface Joomla\\CMS\\Application\\EventAwareInterface\: - 4\.3 will be removed in 6\.0 + 4\.3 will be removed in 7\.0 This interface will be removed without replacement as the Joomla 3\.x compatibility layer will be removed$# ''' identifier: method.deprecatedInterface @@ -13533,24 +13489,7 @@ parameters: Catch thrown Exceptions instead of getError$# ''' identifier: method.deprecated - count: 6 - path: libraries/src/MVC/Controller/ApiController.php - - - - message: ''' - #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: - 3\.1\.4 will be removed in 7\.0 - Will be removed without replacement - Catch thrown Exceptions instead of getErrors$# - ''' - identifier: method.deprecated - count: 1 - path: libraries/src/MVC/Controller/ApiController.php - - - - message: '#^Call to method singularize\(\) of deprecated class Doctrine\\Common\\Inflector\\Inflector\.$#' - identifier: staticMethod.deprecatedClass - count: 4 + count: 2 path: libraries/src/MVC/Controller/ApiController.php - @@ -15016,7 +14955,7 @@ parameters: - message: ''' #^Call to deprecated method register\(\) of class JLoader\: - 4\.3 will be removed in 6\.0 + 4\.3 will be removed in 7\.0 Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to register an autoloader for your files\.$# ''' @@ -15359,7 +15298,7 @@ parameters: - message: ''' #^Call to method getDispatcher\(\) of deprecated interface Joomla\\CMS\\Application\\EventAwareInterface\: - 4\.3 will be removed in 6\.0 + 4\.3 will be removed in 7\.0 This interface will be removed without replacement as the Joomla 3\.x compatibility layer will be removed$# ''' identifier: method.deprecatedInterface @@ -16020,12 +15959,6 @@ parameters: count: 2 path: plugins/workflow/featuring/src/Extension/Featuring.php - - - message: '#^Call to method singularize\(\) of deprecated class Doctrine\\Common\\Inflector\\Inflector\.$#' - identifier: staticMethod.deprecatedClass - count: 1 - path: plugins/workflow/featuring/src/Extension/Featuring.php - - message: '#^Access to an undefined property Joomla\\Plugin\\Workflow\\Notification\\Extension\\Notification\:\:\$app\.$#' identifier: property.notFound @@ -16037,9 +15970,3 @@ parameters: identifier: property.notFound count: 2 path: plugins/workflow/publishing/src/Extension/Publishing.php - - - - message: '#^Call to method singularize\(\) of deprecated class Doctrine\\Common\\Inflector\\Inflector\.$#' - identifier: staticMethod.deprecatedClass - count: 1 - path: plugins/workflow/publishing/src/Extension/Publishing.php From 2fefcf938daa24d11619b71adadd92f2e6702cc4 Mon Sep 17 00:00:00 2001 From: Martina Scholz <64533137+LadySolveig@users.noreply.github.com> Date: Wed, 13 Aug 2025 11:31:39 +0200 Subject: [PATCH 167/279] [6.0] Searchtools use requestSubmit() and add joomla:update listener (#44496) * Replace form submit with requestSubmit and add joomla:update event listener * Add check and fallback if requestSubmit is not available --- .../media_source/system/js/searchtools.es6.js | 31 ++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/build/media_source/system/js/searchtools.es6.js b/build/media_source/system/js/searchtools.es6.js index a21b1d43457f2..3dbfdae9ff66d 100644 --- a/build/media_source/system/js/searchtools.es6.js +++ b/build/media_source/system/js/searchtools.es6.js @@ -38,7 +38,12 @@ Joomla = window.Joomla || {}; elem.value = ''; }); - form.submit(); + if (form.requestSubmit) { + form.requestSubmit(); + } else { + // Fallback if requestSubmit is not available + form.submit(); + } } }; @@ -187,7 +192,12 @@ Joomla = window.Joomla || {}; i.addEventListener('change', () => { self.checkFilter(i); if (i.classList.contains(this.options.listSelectAutoSubmit) || needsFormSubmit) { - i.form.submit(); + if (i.form.requestSubmit) { + i.form.requestSubmit(); + } else { + // Fallback if requestSubmit is not available + i.form.submit(); + } } if (i.classList.contains(this.options.listSelectAutoReset) || needsFormReset) { this.clear(i); @@ -225,7 +235,12 @@ Joomla = window.Joomla || {}; self.toggleDirection(); } - self.theForm.submit(); + if (self.theForm.requestSubmit) { + self.theForm.requestSubmit(); + } else { + // Fallback if requestSubmit is not available + self.theForm.submit(); + } } }); }); @@ -288,7 +303,12 @@ Joomla = window.Joomla || {}; } } - self.theForm.submit(); + if (self.theForm.requestSubmit) { + self.theForm.requestSubmit(); + } else { + // Fallback if requestSubmit is not available + self.theForm.submit(); + } } updateFilterCount(count) { @@ -564,6 +584,9 @@ Joomla = window.Joomla || {}; sort.parentNode.setAttribute('aria-sort', ariasort); } + // Reinitialize for Joomla Updated event + document.addEventListener('joomla:updated', onBoot); + // Cleanup document.removeEventListener('DOMContentLoaded', onBoot); }; From 3ecac6396dcbf2c41bd8524e393c431dcc1ec493 Mon Sep 17 00:00:00 2001 From: Fedir Zinchuk Date: Wed, 13 Aug 2025 12:56:09 +0300 Subject: [PATCH 168/279] [6.0] Fix language autoload in CMSPlugin constructor to work safely (#40355) * Move language autoload out from CMSPlugin constructor * CMSPlugin::autoloadLanguage() * cs * re-arrange autoloadLanguage feature --- libraries/src/Plugin/CMSPlugin.php | 78 +++++++++++++++++-- .../PageBreak/Extension/PageBreakTest.php | 5 +- .../Local/Extension/LocalPluginTest.php | 1 + 3 files changed, 75 insertions(+), 9 deletions(-) diff --git a/libraries/src/Plugin/CMSPlugin.php b/libraries/src/Plugin/CMSPlugin.php index d45a6a1dda94f..aa18e9c087fb2 100644 --- a/libraries/src/Plugin/CMSPlugin.php +++ b/libraries/src/Plugin/CMSPlugin.php @@ -72,13 +72,25 @@ abstract class CMSPlugin implements DispatcherAwareInterface, PluginInterface, L protected $_type = null; /** - * Affects constructor behavior. If true, language files will be loaded automatically. + * If true, language files of the plugin will be loaded automatically. + * + * NOTE: Enabling this feature have a negative effect on performance, + * therefore it is recommended to load a language manually, in the respective event. * * @var boolean * @since 3.1 */ protected $autoloadLanguage = false; + /** + * Internal flag for autoloadLanguage feature. + * + * @var boolean + * + * @since __DEPLOY_VERSION__ + */ + private $autoloadLanguageDone = false; + /** * Should I try to detect and register legacy event listeners, i.e. methods which accept unwrapped arguments? While * this maintains a great degree of backwards compatibility to Joomla! 3.x-style plugins it is much slower. You are @@ -154,11 +166,6 @@ public function __construct($config = []) $this->_type = $config['type']; } - // Load the language files if needed. - if ($this->autoloadLanguage) { - $this->loadLanguage(); - } - if (property_exists($this, 'app')) { @trigger_error('The application should be injected through setApplication() and requested through getApplication().', E_USER_DEPRECATED); $reflection = new \ReflectionClass($this); @@ -178,6 +185,12 @@ public function __construct($config = []) $this->db = Factory::getDbo(); } } + + // Load the language files if needed. + // It is required Application to be set, so we trying it here and in CMSPlugin::setApplication() + if ($this->autoloadLanguage && $this->getApplication()) { + $this->autoloadLanguage(); + } } /** @@ -193,11 +206,26 @@ public function __construct($config = []) public function loadLanguage($extension = '', $basePath = JPATH_ADMINISTRATOR) { if (empty($extension)) { - $extension = 'Plg_' . $this->_type . '_' . $this->_name; + $extension = 'plg_' . $this->_type . '_' . $this->_name; } $extension = strtolower($extension); - $lang = $this->getApplication() ? $this->getApplication()->getLanguage() : Factory::getLanguage(); + $app = $this->getApplication() ?: Factory::getApplication(); + $lang = $app->getLanguage(); + + if (!$lang) { + // @TODO: Throw an exception in Joomla 7 + @trigger_error( + \sprintf( + 'Trying to load language before Application is initialised is discouraged. This will throw an exception in 7.0. Plugin "%s/%s"', + $this->_type, + $this->_name + ), + E_USER_DEPRECATED + ); + + return false; + } // If language already loaded, don't load it again. if ($lang->getPaths($extension)) { @@ -208,6 +236,35 @@ public function loadLanguage($extension = '', $basePath = JPATH_ADMINISTRATOR) || $lang->load($extension, JPATH_PLUGINS . '/' . $this->_type . '/' . $this->_name); } + /** + * Method to handle language autoload feature in safe way, only when the language is initialised. + * + * @return void + * + * @internal The method does not expect to be called outside the CMSPlugin class. + * + * @since __DEPLOY_VERSION__ + */ + final protected function autoloadLanguage(): void + { + if ($this->autoloadLanguageDone) { + return; + } + + $app = $this->getApplication(); + + // Check whether language already initialised in the Application, otherwise wait for it + if (!$app->getLanguage()) { + $app->getDispatcher()->addListener('onAfterInitialise', function () { + $this->loadLanguage(); + }); + } else { + $this->loadLanguage(); + } + + $this->autoloadLanguageDone = true; + } + /** * Registers legacy Listeners to the Dispatcher, emulating how plugins worked under Joomla! 3.x and below. * @@ -426,6 +483,11 @@ public function setApplication(CMSApplicationInterface $application): void if ($application->getLanguage()) { $this->setLanguage($application->getLanguage()); } + + // Try to load the language files if it were not loaded in the constructor already. + if ($this->autoloadLanguage) { + $this->autoloadLanguage(); + } } /** diff --git a/tests/Unit/Plugin/EditorsXtd/PageBreak/Extension/PageBreakTest.php b/tests/Unit/Plugin/EditorsXtd/PageBreak/Extension/PageBreakTest.php index 526d616d9a847..34b6cc672b5cf 100644 --- a/tests/Unit/Plugin/EditorsXtd/PageBreak/Extension/PageBreakTest.php +++ b/tests/Unit/Plugin/EditorsXtd/PageBreak/Extension/PageBreakTest.php @@ -89,6 +89,7 @@ public function testInvalidPermissions() $user->method('getAuthorisedCategories')->willReturn([]); $app = $this->createStub(CMSWebApplicationInterface::class); + $app->method('getLanguage')->willReturn($this->createStub(Language::class)); $app->method('getIdentity')->willReturn($user); $btnsReg = new ButtonsRegistry(); @@ -126,7 +127,9 @@ public function testInvalidApplication() $dispatcher = new Dispatcher(); $plugin = new PageBreak($dispatcher, ['name' => 'pagebreak', 'type' => 'editors-xtd', 'params' => []]); - $plugin->setApplication($this->createStub(CMSApplicationInterface::class)); + $app = $this->createStub(CMSApplicationInterface::class); + $app->method('getLanguage')->willReturn($this->createStub(Language::class)); + $plugin->setApplication($app); $plugin->onEditorButtonsSetup($event); $button = $btnsReg->getAll()[0] ?? false; diff --git a/tests/Unit/Plugin/Filesystem/Local/Extension/LocalPluginTest.php b/tests/Unit/Plugin/Filesystem/Local/Extension/LocalPluginTest.php index b04fc71038f99..7152fa726bc4d 100644 --- a/tests/Unit/Plugin/Filesystem/Local/Extension/LocalPluginTest.php +++ b/tests/Unit/Plugin/Filesystem/Local/Extension/LocalPluginTest.php @@ -106,6 +106,7 @@ public function testAdapters() $app = $this->createStub(CMSApplicationInterface::class); $app->method('getIdentity')->willReturn(new User()); + $app->method('getLanguage')->willReturn($this->createStub(Language::class)); $plugin = new Local($dispatcher, ['params' => ['directories' => '[{"directory": "tests"}]']], JPATH_ROOT); $plugin->setApplication($app); From d209806046eff405ef87c33877501a9abcec7014 Mon Sep 17 00:00:00 2001 From: Fedir Zinchuk Date: Wed, 13 Aug 2025 13:16:43 +0300 Subject: [PATCH 169/279] [6.0] Restore onBeforeExecute event for CMSApplication (#45426) * Restore onBeforeExecute for CMS application * Restore onBeforeExecute for CMS application --------- Co-authored-by: Richard Fath Co-authored-by: Phil Walton --- libraries/src/Application/CMSApplication.php | 12 +++++++++- libraries/src/Application/SiteApplication.php | 6 ----- .../src/Extension/LanguageFilter.php | 24 +++++++++++++++++++ 3 files changed, 35 insertions(+), 7 deletions(-) diff --git a/libraries/src/Application/CMSApplication.php b/libraries/src/Application/CMSApplication.php index ebdfe01c9dc8e..95482bc80f858 100644 --- a/libraries/src/Application/CMSApplication.php +++ b/libraries/src/Application/CMSApplication.php @@ -17,6 +17,7 @@ use Joomla\CMS\Event\Application\AfterRenderEvent; use Joomla\CMS\Event\Application\AfterRespondEvent; use Joomla\CMS\Event\Application\AfterRouteEvent; +use Joomla\CMS\Event\Application\BeforeExecuteEvent; use Joomla\CMS\Event\Application\BeforeRenderEvent; use Joomla\CMS\Event\Application\BeforeRespondEvent; use Joomla\CMS\Event\ErrorEvent; @@ -300,6 +301,16 @@ public function execute() $this->setupLogging(); $this->createExtensionNamespaceMap(); + // Trigger the onBeforeExecute event + PluginHelper::importPlugin('system', null, true, $this->getDispatcher()); + $this->dispatchEvent( + 'onBeforeExecute', + new BeforeExecuteEvent('onBeforeExecute', ['subject' => $this, 'container' => $this->getContainer()]) + ); + + // Mark beforeExecute in the profiler. + JDEBUG ? $this->profiler->mark('beforeExecute event dispatched') : null; + // Perform application routines. $this->doExecute(); @@ -809,7 +820,6 @@ protected function initialiseApp($options = []) PluginHelper::importPlugin('behaviour', null, true, $this->getDispatcher()); // Trigger the onAfterInitialise event. - PluginHelper::importPlugin('system', null, true, $this->getDispatcher()); $this->dispatchEvent( 'onAfterInitialise', new AfterInitialiseEvent('onAfterInitialise', ['subject' => $this]) diff --git a/libraries/src/Application/SiteApplication.php b/libraries/src/Application/SiteApplication.php index c66d9c25559c2..09cefe7c62270 100644 --- a/libraries/src/Application/SiteApplication.php +++ b/libraries/src/Application/SiteApplication.php @@ -570,12 +570,6 @@ protected function initialiseApp($options = []) $user->groups = [$guestUsergroup]; } - if ($plugin = PluginHelper::getPlugin('system', 'languagefilter')) { - $pluginParams = new Registry($plugin->params); - $this->setLanguageFilter(true); - $this->setDetectBrowser($pluginParams->get('detect_browser', 1) == 1); - } - if (empty($options['language'])) { // Detect the specified language $lang = $this->input->getString('language', null); diff --git a/plugins/system/languagefilter/src/Extension/LanguageFilter.php b/plugins/system/languagefilter/src/Extension/LanguageFilter.php index 477cfc1dc2a44..19d969e324d3a 100644 --- a/plugins/system/languagefilter/src/Extension/LanguageFilter.php +++ b/plugins/system/languagefilter/src/Extension/LanguageFilter.php @@ -17,6 +17,7 @@ use Joomla\CMS\Event\Application\AfterDispatchEvent; use Joomla\CMS\Event\Application\AfterInitialiseEvent; use Joomla\CMS\Event\Application\AfterRouteEvent; +use Joomla\CMS\Event\Application\BeforeExecuteEvent; use Joomla\CMS\Event\Privacy\CollectCapabilitiesEvent; use Joomla\CMS\Event\User\AfterSaveEvent; use Joomla\CMS\Event\User\BeforeSaveEvent; @@ -186,6 +187,7 @@ public static function getSubscribedEvents(): array * might be needed by other plugins */ return [ + 'onBeforeExecute' => 'onBeforeExecute', 'onAfterInitialise' => 'onAfterInitialise', 'onAfterDispatch' => 'onAfterDispatch', 'onAfterRoute' => 'onAfterRoute', @@ -196,6 +198,28 @@ public static function getSubscribedEvents(): array ]; } + /** + * Listener for the onBeforeExecute event + * + * @param BeforeExecuteEvent $event The Event object + * + * @return void + * + * @since __DEPLOY_VERSION__ + */ + public function onBeforeExecute(BeforeExecuteEvent $event): void + { + $app = $event->getApplication(); + + if (!$app->isClient('site')) { + return; + } + + // If a language was specified it has priority, otherwise use user or default language settings + $app->setLanguageFilter(true); + $app->setDetectBrowser($this->params->get('detect_browser', '1') == '1'); + } + /** * After initialise. * From 1c30e1b10b4de8dfd73312083f79d629375710e9 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Wed, 13 Aug 2025 19:52:21 +0200 Subject: [PATCH 170/279] [6.0] Updating dependencies (#45827) * Updating dependencies for J6.0 * Update content hash in composer.lock * Updating joomla/mediawiki-api, joomla/oauth1 & joomla/oauth2 * Cleaning up phpstan configuration --------- Co-authored-by: Richard Fath Co-authored-by: Richard Fath Co-authored-by: Phil Walton --- .../com_config/src/Model/ApplicationModel.php | 4 +- .../src/Model/LanguagesModel.php | 4 +- .../src/Model/UpdateModel.php | 13 +- composer.json | 64 +- composer.lock | 1438 ++++++++--------- .../Google/HttpBridgePostRequestMethod.php | 4 +- libraries/src/Changelog/Changelog.php | 4 +- .../src/Event/AbstractImmutableEvent.php | 4 +- libraries/src/Feed/FeedFactory.php | 4 +- libraries/src/Installer/InstallerHelper.php | 4 +- libraries/src/Updater/Adapter/TufAdapter.php | 2 +- libraries/src/Updater/Update.php | 4 +- libraries/src/Updater/UpdateAdapter.php | 6 +- phpstan.neon | 10 - .../yubikey/src/Extension/Yubikey.php | 4 +- plugins/system/stats/src/Extension/Stats.php | 4 +- .../Authentication/Ldap/LdapPluginTest.php | 2 +- 17 files changed, 717 insertions(+), 858 deletions(-) diff --git a/administrator/components/com_config/src/Model/ApplicationModel.php b/administrator/components/com_config/src/Model/ApplicationModel.php index 5659abc719268..6dbc4603f71f6 100644 --- a/administrator/components/com_config/src/Model/ApplicationModel.php +++ b/administrator/components/com_config/src/Model/ApplicationModel.php @@ -18,7 +18,6 @@ use Joomla\CMS\Event\Application\AfterSaveConfigurationEvent; use Joomla\CMS\Event\Application\BeforeSaveConfigurationEvent; use Joomla\CMS\Factory; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Mail\Exception\MailDisabledException; @@ -36,6 +35,7 @@ use Joomla\Filesystem\Folder; use Joomla\Filesystem\Path; use Joomla\Filter\OutputFilter; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; use Joomla\Utilities\ArrayHelper; use PHPMailer\PHPMailer\Exception as phpMailerException; @@ -364,7 +364,7 @@ public function save($data) CURLOPT_PROXYUSERPWD => null, ] ); - $response = HttpFactory::getHttp($options)->get('https://' . $host . Uri::root(true) . '/', ['Host' => $host], 10); + $response = (new HttpFactory())->getHttp($options)->get('https://' . $host . Uri::root(true) . '/', ['Host' => $host], 10); // If available in HTTPS check also the status code. if (!\in_array($response->getStatusCode(), [200, 503, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 401], true)) { diff --git a/administrator/components/com_installer/src/Model/LanguagesModel.php b/administrator/components/com_installer/src/Model/LanguagesModel.php index 0c54ca93fb390..874f130765595 100644 --- a/administrator/components/com_installer/src/Model/LanguagesModel.php +++ b/administrator/components/com_installer/src/Model/LanguagesModel.php @@ -10,10 +10,10 @@ namespace Joomla\Component\Installer\Administrator\Model; use Joomla\CMS\Factory; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\MVC\Model\ListModel; +use Joomla\Http\HttpFactory; use Joomla\String\StringHelper; // phpcs:disable PSR1.Files.SideEffects @@ -135,7 +135,7 @@ protected function getLanguages() } try { - $response = HttpFactory::getHttp()->get($updateSite); + $response = (new HttpFactory())->getHttp()->get($updateSite); } catch (\RuntimeException) { $response = null; } diff --git a/administrator/components/com_joomlaupdate/src/Model/UpdateModel.php b/administrator/components/com_joomlaupdate/src/Model/UpdateModel.php index 7a7c8ee8c7634..9a2fa8d1fa801 100644 --- a/administrator/components/com_joomlaupdate/src/Model/UpdateModel.php +++ b/administrator/components/com_joomlaupdate/src/Model/UpdateModel.php @@ -17,8 +17,6 @@ use Joomla\CMS\Extension\ExtensionHelper; use Joomla\CMS\Factory; use Joomla\CMS\Filter\InputFilter; -use Joomla\CMS\Http\Http; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Installer\Installer; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; @@ -38,6 +36,7 @@ use Joomla\Database\ParameterType; use Joomla\Filesystem\Exception\FilesystemException; use Joomla\Filesystem\File; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; use Joomla\Utilities\ArrayHelper; @@ -388,7 +387,7 @@ public function download() $response = ['basename' => false, 'check' => null, 'version' => $updateInfo['latest']]; try { - $head = HttpFactory::getHttp($httpOptions)->head($packageURL); + $head = (new HttpFactory())->getHttp($httpOptions)->head($packageURL); } catch (\RuntimeException) { // Passing false here -> download failed message return $response; @@ -399,7 +398,7 @@ public function download() $packageURL = (string) $head->getHeaders()['location'][0]; try { - $head = HttpFactory::getHttp($httpOptions)->head($packageURL); + $head = (new HttpFactory())->getHttp($httpOptions)->head($packageURL); } catch (\RuntimeException) { // Passing false here -> download failed message return $response; @@ -566,7 +565,7 @@ public function changeAutoUpdateRegistration(AutoupdateRegisterState $targetStat $this->cleanCache('_system'); // Prepare connection - $http = HttpFactory::getHttp(); + $http = (new HttpFactory())->getHttp(); $url = self::AUTOUPDATE_URL; $url .= ($targetState === AutoupdateRegisterState::Subscribe) ? '/register' : '/delete'; @@ -760,7 +759,7 @@ protected function downloadPackage($url, $target) // Download the package try { - $result = HttpFactory::getHttp([], ['curl', 'stream'])->get($url); + $result = (new HttpFactory())->getHttp([], ['curl', 'stream'])->get($url); } catch (\RuntimeException) { return false; } @@ -1848,7 +1847,7 @@ private function getCollectionDetailsUrls($updateSiteInfo, $joomlaTargetVersion) { $return = []; - $http = new Http(); + $http = (new HttpFactory())->getHttp(); try { $response = $http->get($updateSiteInfo['location']); diff --git a/composer.json b/composer.json index cc30e2a1bdfd8..5f1624453a3f4 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ "config": { "optimize-autoloader": true, "platform": { - "php": "8.1.0" + "php": "8.3.0" }, "vendor-dir": "libraries/vendor", "github-protocols": ["https"] @@ -46,42 +46,42 @@ } }, "require": { - "php": "^8.1.0", - "joomla/application": "^3.0.4", - "joomla/archive": "^3.0.4", - "joomla/authentication": "^3.0.3", - "joomla/console": "^3.0.3", - "joomla/crypt": "^3.0.3", - "joomla/data": "^3.0.3", - "joomla/database": "^3.4", - "joomla/di": "^3.1.1", - "joomla/event": "^3.0.2", - "joomla/filter": "^3.0.4", - "joomla/filesystem": "^3.1.2", - "joomla/http": "^3.1.2", - "joomla/input": "~3.0", - "joomla/language": "~3.0", - "joomla/oauth1": "~3.0", - "joomla/oauth2": "~3.0", - "joomla/registry": "~3.0", - "joomla/router": "~3.0", - "joomla/session": "^3.0.3", - "joomla/string": "^3.0.4", - "joomla/uri": "~3.0", - "joomla/utilities": "~3.0", + "php": "^8.3.0", + "joomla/application": "^4.0", + "joomla/archive": "^4.0", + "joomla/authentication": "^4.0", + "joomla/console": "^4.0", + "joomla/crypt": "^4.0", + "joomla/data": "^4.0", + "joomla/database": "^4.0", + "joomla/di": "^4.0", + "joomla/event": "^4.0", + "joomla/filter": "^4.0", + "joomla/filesystem": "^4.0", + "joomla/http": "^4.0", + "joomla/input": "^4.0", + "joomla/language": "^4.0", + "joomla/oauth1": "^4.0", + "joomla/oauth2": "^4.0", + "joomla/registry": "^4.0", + "joomla/router": "^4.0", + "joomla/session": "^4.0", + "joomla/string": "^4.0", + "joomla/uri": "^4.0", + "joomla/utilities": "^4.0", "algo26-matthias/idna-convert": "^4.0.4", "defuse/php-encryption": "^2.4.0", - "doctrine/inflector": "^1.4.4", + "doctrine/inflector": "^2.0.10", "fig/link-util": "^1.2.0", "google/recaptcha": "^1.3.1", - "laminas/laminas-diactoros": "^2.26.0", + "laminas/laminas-diactoros": "^3.6.0", "paragonie/sodium_compat": "^1.21.1", "phpmailer/phpmailer": "^6.10.0", "psr/link": "~1.1.1", - "symfony/console": "^6.4.23", - "symfony/error-handler": "^6.4.23", - "symfony/ldap": "^6.4.13", - "symfony/options-resolver": "^6.4.16", + "symfony/console": "^7", + "symfony/error-handler": "^7", + "symfony/ldap": "^7", + "symfony/options-resolver": "^7", "symfony/polyfill-mbstring": "^1.32.0", "symfony/web-link": "^6.4.22", "symfony/yaml": "^6.4.23", @@ -108,8 +108,8 @@ "phpunit/phpunit": "^9.6.23", "friendsofphp/php-cs-fixer": "^3.84.0", "squizlabs/php_codesniffer": "^3.13.2", - "joomla/mediawiki": "^3.0", - "joomla/test": "~3.0", + "joomla/mediawiki": "^4.0", + "joomla/test": "~4.0", "phpstan/phpstan": "^2.1.19", "phpstan/phpstan-deprecation-rules": "^2.0.3" }, diff --git a/composer.lock b/composer.lock index f126406599706..d9847594ba612 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "61c56b873523c4a247f2881fc49a3520", + "content-hash": "44cb4c45a4dc1517db3c0e91df6025ae", "packages": [ { "name": "algo26-matthias/idna-convert", - "version": "v4.0.4", + "version": "v4.2.0", "source": { "type": "git", "url": "https://github.com/algo26-matthias/idna-convert.git", - "reference": "87fcd0252e86bf8f881b83ebbacd26fede361356" + "reference": "a51e7bcf31ef5dabd5cdc479d67f779038f52b2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/algo26-matthias/idna-convert/zipball/87fcd0252e86bf8f881b83ebbacd26fede361356", - "reference": "87fcd0252e86bf8f881b83ebbacd26fede361356", + "url": "https://api.github.com/repos/algo26-matthias/idna-convert/zipball/a51e7bcf31ef5dabd5cdc479d67f779038f52b2d", + "reference": "a51e7bcf31ef5dabd5cdc479d67f779038f52b2d", "shasum": "" }, "require": { @@ -30,7 +30,6 @@ }, "suggest": { "ext-iconv": "Install ext/iconv for using input / output other than UTF-8 or ISO-8859-1", - "ext-intl": "Install ext/intl for better case folding", "ext-mbstring": "Install ext/mbstring for using input / output other than UTF-8 or ISO-8859-1" }, "type": "library", @@ -59,9 +58,9 @@ ], "support": { "issues": "https://github.com/algo26-matthias/idna-convert/issues", - "source": "https://github.com/algo26-matthias/idna-convert/tree/v4.0.4" + "source": "https://github.com/algo26-matthias/idna-convert/tree/v4.2.0" }, - "time": "2025-03-16T10:00:35+00:00" + "time": "2025-03-26T16:10:16+00:00" }, { "name": "brick/math", @@ -268,38 +267,33 @@ }, { "name": "doctrine/inflector", - "version": "1.4.4", + "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9" + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", - "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^8.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector", - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -344,7 +338,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/1.4.4" + "source": "https://github.com/doctrine/inflector/tree/2.0.10" }, "funding": [ { @@ -360,7 +354,7 @@ "type": "tidelift" } ], - "time": "2021-04-16T17:34:40+00:00" + "time": "2024-02-18T20:23:39+00:00" }, { "name": "dragonmantank/cron-expression", @@ -1060,58 +1054,52 @@ }, { "name": "joomla/application", - "version": "3.0.4", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/application.git", - "reference": "3ab2450f712136f1893337a38bb4c4f951cc853b" + "reference": "878d1f4a2dc03b6197d0e6cfb4a969ec06a3314d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/application/zipball/3ab2450f712136f1893337a38bb4c4f951cc853b", - "reference": "3ab2450f712136f1893337a38bb4c4f951cc853b", + "url": "https://api.github.com/repos/joomla-framework/application/zipball/878d1f4a2dc03b6197d0e6cfb4a969ec06a3314d", + "reference": "878d1f4a2dc03b6197d0e6cfb4a969ec06a3314d", "shasum": "" }, "require": { - "joomla/event": "^3.0", - "joomla/registry": "^3.0", - "laminas/laminas-diactoros": "^2.24.0", - "php": "^8.1.0", - "psr/http-message": "^1.0", + "joomla/event": "^4.0", + "joomla/registry": "^4.0", + "laminas/laminas-diactoros": "^3.6.0", + "php": "^8.3.0", + "psr/http-message": "^2.0", "psr/log": "^1.0|^2.0|^3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { "ext-json": "*", - "joomla/controller": "^3.0", - "joomla/di": "^3.0", - "joomla/input": "^3.0", - "joomla/router": "^3.0", - "joomla/session": "^3.0", - "joomla/test": "^3.0", - "joomla/uri": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", + "joomla/controller": "^4.0", + "joomla/di": "^4.0", + "joomla/input": "^4.0", + "joomla/router": "^4.0", + "joomla/session": "^4.0", + "joomla/test": "^4.0", + "joomla/uri": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", "phpunit/phpunit": "^10.0", "squizlabs/php_codesniffer": "~3.10.2", "symfony/phpunit-bridge": "^7.0" }, "suggest": { "ext-json": "To use JSON format, ext-json is required", - "joomla/controller": "^3.0 To support resolving ControllerInterface objects in ControllerResolverInterface, install joomla/controller", - "joomla/input": "^3.0 To use WebApplicationInterface, install joomla/input", - "joomla/router": "^3.0 To use WebApplication or ControllerResolverInterface implementations, install joomla/router", - "joomla/session": "^3.0 To use SessionAwareWebApplicationInterface, install joomla/session", - "joomla/uri": "^3.0 To use AbstractWebApplication, install joomla/uri", - "psr/container": "^1.0 To use the ContainerControllerResolver, install any PSR-11 compatible container" + "joomla/controller": "^4.0 To support resolving ControllerInterface objects in ControllerResolverInterface, install joomla/controller", + "joomla/input": "^4.0 To use WebApplicationInterface, install joomla/input", + "joomla/router": "^4.0 To use WebApplication or ControllerResolverInterface implementations, install joomla/router", + "joomla/session": "^4.0 To use SessionAwareWebApplicationInterface, install joomla/session", + "joomla/uri": "^4.0 To use AbstractWebApplication, install joomla/uri", + "psr/container": "^2.0 To use the ContainerControllerResolver, install any PSR-11 compatible container" }, "type": "library", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Application\\": "src/" @@ -1152,32 +1140,32 @@ "type": "github" } ], - "time": "2025-07-11T09:17:42+00:00" + "time": "2025-07-24T09:55:44+00:00" }, { "name": "joomla/archive", - "version": "3.0.4", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/archive.git", - "reference": "1d506857685f3537c1193f4e77b12f24cc9afe49" + "reference": "7a8d0eda637bd37bc3de744aa3e4ce516d4356b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/archive/zipball/1d506857685f3537c1193f4e77b12f24cc9afe49", - "reference": "1d506857685f3537c1193f4e77b12f24cc9afe49", + "url": "https://api.github.com/repos/joomla-framework/archive/zipball/7a8d0eda637bd37bc3de744aa3e4ce516d4356b0", + "reference": "7a8d0eda637bd37bc3de744aa3e4ce516d4356b0", "shasum": "" }, "require": { - "joomla/filesystem": "^3.0", - "php": "^8.1.0" + "joomla/filesystem": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^10.0", - "squizlabs/php_codesniffer": "~3.10.2" + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2" }, "suggest": { "ext-bz2": "To extract bzip2 compressed packages", @@ -1185,12 +1173,6 @@ "ext-zlib": "To extract gzip or zip compressed packages" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Archive\\": "src/" @@ -1209,47 +1191,41 @@ ], "support": { "issues": "https://github.com/joomla-framework/archive/issues", - "source": "https://github.com/joomla-framework/archive/tree/3.0.4" + "source": "https://github.com/joomla-framework/archive/tree/4.0.0" }, - "time": "2025-07-11T10:54:02+00:00" + "time": "2025-07-24T08:04:38+00:00" }, { "name": "joomla/authentication", - "version": "3.0.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/authentication.git", - "reference": "ea3a263985a40c231a42d050ccd3f822b7b5e778" + "reference": "1d9b946410ac43c8d206d9d6bf741173b83a8e4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/authentication/zipball/ea3a263985a40c231a42d050ccd3f822b7b5e778", - "reference": "ea3a263985a40c231a42d050ccd3f822b7b5e778", + "url": "https://api.github.com/repos/joomla-framework/authentication/zipball/1d9b946410ac43c8d206d9d6bf741173b83a8e4c", + "reference": "1d9b946410ac43c8d206d9d6bf741173b83a8e4c", "shasum": "" }, "require": { - "php": "^8.1.0" + "php": "^8.3.0" }, "require-dev": { - "joomla/database": "^3.0", - "joomla/input": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^10.0", - "squizlabs/php_codesniffer": "~3.10.2", - "symfony/phpunit-bridge": "^7.0" + "joomla/database": "^4.0", + "joomla/input": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2", + "symfony/phpunit-bridge": "^8.0" }, "suggest": { "joomla/database": "Required if you want to use Joomla\\Authentication\\Strategies\\DatabaseStrategy", "joomla/input": "Required if you want to use classes in the Joomla\\Authentication\\Strategies namespace" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Authentication\\": "src/" @@ -1268,50 +1244,44 @@ ], "support": { "issues": "https://github.com/joomla-framework/authentication/issues", - "source": "https://github.com/joomla-framework/authentication/tree/3.0.3" + "source": "https://github.com/joomla-framework/authentication/tree/4.0.0" }, - "time": "2025-07-17T14:56:13+00:00" + "time": "2025-07-24T08:02:13+00:00" }, { "name": "joomla/console", - "version": "3.0.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/console.git", - "reference": "839ac3e759a9c8bf962175906480923a7b680c36" + "reference": "b58fb572436ad9e230061ff6929aa1446849efe8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/console/zipball/839ac3e759a9c8bf962175906480923a7b680c36", - "reference": "839ac3e759a9c8bf962175906480923a7b680c36", + "url": "https://api.github.com/repos/joomla-framework/console/zipball/b58fb572436ad9e230061ff6929aa1446849efe8", + "reference": "b58fb572436ad9e230061ff6929aa1446849efe8", "shasum": "" }, "require": { - "joomla/application": "^3.0", - "joomla/event": "^3.0", - "joomla/string": "^3.0", - "php": "^8.1.0", - "symfony/console": "^v6.2.0", - "symfony/error-handler": "^6" + "joomla/application": "^4.0", + "joomla/event": "^4.0", + "joomla/string": "^4.0", + "php": "^8.3.0", + "symfony/console": "^v7.0.0", + "symfony/error-handler": "^7" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^10.0", - "psr/container": "^1.0", + "joomla/test": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.0", + "psr/container": "^2.0", "squizlabs/php_codesniffer": "~3.10.2" }, "suggest": { "psr/container-implementation": "To use the ContainerLoader" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Console\\": "src/" @@ -1330,35 +1300,34 @@ ], "support": { "issues": "https://github.com/joomla-framework/console/issues", - "source": "https://github.com/joomla-framework/console/tree/3.0.3" + "source": "https://github.com/joomla-framework/console/tree/4.0.0" }, - "time": "2025-07-17T14:55:35+00:00" + "time": "2025-07-24T08:33:34+00:00" }, { "name": "joomla/crypt", - "version": "3.0.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/crypt.git", - "reference": "0cfd0a3ab2fc64015030319348a16f4fa6e0355a" + "reference": "9b069827a7875ae3bff409695624071f4d356aca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/crypt/zipball/0cfd0a3ab2fc64015030319348a16f4fa6e0355a", - "reference": "0cfd0a3ab2fc64015030319348a16f4fa6e0355a", + "url": "https://api.github.com/repos/joomla-framework/crypt/zipball/9b069827a7875ae3bff409695624071f4d356aca", + "reference": "9b069827a7875ae3bff409695624071f4d356aca", "shasum": "" }, "require": { - "php": "^8.1.0" + "php": "^8.3.0" }, "require-dev": { "defuse/php-encryption": "^2.0", "paragonie/sodium_compat": "^1|^2", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "~3.7.2", - "symfony/phpunit-bridge": "^5.0", "symfony/polyfill-util": "^1.0" }, "suggest": { @@ -1368,12 +1337,6 @@ "paragonie/sodium_compat": "To use Sodium cipher if neither ext/sodium or ext/libsodium are available" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Crypt\\": "src/" @@ -1392,42 +1355,36 @@ ], "support": { "issues": "https://github.com/joomla-framework/crypt/issues", - "source": "https://github.com/joomla-framework/crypt/tree/3.0.3" + "source": "https://github.com/joomla-framework/crypt/tree/4.0.0" }, - "time": "2025-07-19T11:01:54+00:00" + "time": "2025-07-24T07:56:55+00:00" }, { "name": "joomla/data", - "version": "3.0.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/data.git", - "reference": "8eaa08b07b84dce217b1735e5c51d66285ff93ae" + "reference": "e00293048e893dc3c5e793b091e87da84faf3963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/data/zipball/8eaa08b07b84dce217b1735e5c51d66285ff93ae", - "reference": "8eaa08b07b84dce217b1735e5c51d66285ff93ae", + "url": "https://api.github.com/repos/joomla-framework/data/zipball/e00293048e893dc3c5e793b091e87da84faf3963", + "reference": "e00293048e893dc3c5e793b091e87da84faf3963", "shasum": "" }, "require": { - "joomla/registry": "^3.0", - "php": "^8.1.0" + "joomla/registry": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "~3.7.2" + "joomla/test": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "~3.10.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Data\\": "src/" @@ -1446,42 +1403,43 @@ ], "support": { "issues": "https://github.com/joomla-framework/data/issues", - "source": "https://github.com/joomla-framework/data/tree/3.0.3" + "source": "https://github.com/joomla-framework/data/tree/4.0.0" }, - "time": "2025-07-19T12:27:51+00:00" + "time": "2025-07-24T08:48:07+00:00" }, { "name": "joomla/database", - "version": "3.4.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/database.git", - "reference": "6a8aedaea444cd78912153c4d8361eb06ba2a9cd" + "reference": "2e744e7959368891fe52ccb35790e201251f6f39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/database/zipball/6a8aedaea444cd78912153c4d8361eb06ba2a9cd", - "reference": "6a8aedaea444cd78912153c4d8361eb06ba2a9cd", + "url": "https://api.github.com/repos/joomla-framework/database/zipball/2e744e7959368891fe52ccb35790e201251f6f39", + "reference": "2e744e7959368891fe52ccb35790e201251f6f39", "shasum": "" }, "require": { - "joomla/event": "^3.0", - "php": "^8.1.0", + "joomla/event": "^4.0", + "php": "^8.3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { - "joomla/archive": "^3.0", - "joomla/console": "^3.0", - "joomla/di": "^3.0", - "joomla/filesystem": "^3.0", - "joomla/registry": "^3.0", - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "psr/log": "^1.1", - "squizlabs/php_codesniffer": "~3.7.2", - "symfony/phpunit-bridge": "^5.0" + "colinodell/psr-testlogger": "^1.3.0", + "joomla/archive": "^4.0", + "joomla/console": "^4.0", + "joomla/di": "^4.0", + "joomla/filesystem": "^4.0", + "joomla/registry": "^4.0", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.0", + "psr/log": "^3.0.2", + "squizlabs/php_codesniffer": "^3.10.2", + "symfony/phpunit-bridge": "^8.0" }, "suggest": { "ext-mysqli": "To connect to a MySQL database via MySQLi", @@ -1495,12 +1453,6 @@ "psr/log": "To use the LoggingMonitor, install psr/log." }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Database\\": "src/" @@ -1519,46 +1471,40 @@ ], "support": { "issues": "https://github.com/joomla-framework/database/issues", - "source": "https://github.com/joomla-framework/database/tree/3.4.3" + "source": "https://github.com/joomla-framework/database/tree/4.0.0" }, - "time": "2025-07-19T15:40:51+00:00" + "time": "2025-07-24T09:46:18+00:00" }, { "name": "joomla/di", - "version": "3.1.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/di.git", - "reference": "fd98d11dddf65adf9c6eff68a4c80f9f2f34b2b9" + "reference": "e8511111e2b5b239f75116f9ff75b43c18809868" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/di/zipball/fd98d11dddf65adf9c6eff68a4c80f9f2f34b2b9", - "reference": "fd98d11dddf65adf9c6eff68a4c80f9f2f34b2b9", + "url": "https://api.github.com/repos/joomla-framework/di/zipball/e8511111e2b5b239f75116f9ff75b43c18809868", + "reference": "e8511111e2b5b239f75116f9ff75b43c18809868", "shasum": "" }, "require": { - "php": "^8.1.0", - "psr/container": "^1.0", + "php": "^8.3.0", + "psr/container": "^2.0", "symfony/deprecation-contracts": "^2|^3" }, "provide": { "psr/container-implementation": "~1.0" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "~3.7.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\DI\\": "src/" @@ -1580,47 +1526,41 @@ ], "support": { "issues": "https://github.com/joomla-framework/di/issues", - "source": "https://github.com/joomla-framework/di/tree/3.1.1" + "source": "https://github.com/joomla-framework/di/tree/4.0.0" }, - "time": "2025-07-19T16:11:41+00:00" + "time": "2025-07-24T07:51:22+00:00" }, { "name": "joomla/event", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/event.git", - "reference": "d1a5dd4c5c8aa1d1c7a7101da93e677ec5d3ef3f" + "reference": "4bbbfb0a3444cb3e3f9abd57d623caa06e9207b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/event/zipball/d1a5dd4c5c8aa1d1c7a7101da93e677ec5d3ef3f", - "reference": "d1a5dd4c5c8aa1d1c7a7101da93e677ec5d3ef3f", + "url": "https://api.github.com/repos/joomla-framework/event/zipball/4bbbfb0a3444cb3e3f9abd57d623caa06e9207b5", + "reference": "4bbbfb0a3444cb3e3f9abd57d623caa06e9207b5", "shasum": "" }, "require": { - "php": "^8.1.0", + "php": "^8.3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { - "joomla/console": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "psr/container": "^1.0", - "squizlabs/php_codesniffer": "~3.7.2" + "joomla/console": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.7", + "psr/container": "^2.0", + "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { "joomla/console": "If you want to use the DebugEventDispatcherCommand class, please install joomla/console", "psr/container-implementation": "If you want to use the LazyServiceEventListener class, please install a PSR-11 container" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Event\\": "src/" @@ -1639,42 +1579,36 @@ ], "support": { "issues": "https://github.com/joomla-framework/event/issues", - "source": "https://github.com/joomla-framework/event/tree/3.0.2" + "source": "https://github.com/joomla-framework/event/tree/4.0.0" }, - "time": "2025-07-19T18:30:21+00:00" + "time": "2025-07-24T09:34:33+00:00" }, { "name": "joomla/filesystem", - "version": "3.1.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/filesystem.git", - "reference": "6cdec5cd8e088ccaa85d0901dc927b4c3efde4e2" + "reference": "e69674bafd7818afa2537ef12019c56207018a26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/filesystem/zipball/6cdec5cd8e088ccaa85d0901dc927b4c3efde4e2", - "reference": "6cdec5cd8e088ccaa85d0901dc927b4c3efde4e2", + "url": "https://api.github.com/repos/joomla-framework/filesystem/zipball/e69674bafd7818afa2537ef12019c56207018a26", + "reference": "e69674bafd7818afa2537ef12019c56207018a26", "shasum": "" }, "require": { - "php": "^8.1.0" + "php": "^8.3.0" }, "require-dev": { - "joomla/test": "^3.0", + "joomla/test": "^4.0", "mikey179/vfsstream": "^1.6.11", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.7", + "squizlabs/php_codesniffer": "^3.13.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Filesystem\\": "src/" @@ -1693,45 +1627,39 @@ ], "support": { "issues": "https://github.com/joomla-framework/filesystem/issues", - "source": "https://github.com/joomla-framework/filesystem/tree/3.1.2" + "source": "https://github.com/joomla-framework/filesystem/tree/4.0.0" }, - "time": "2025-07-19T12:41:24+00:00" + "time": "2025-07-23T19:06:55+00:00" }, { "name": "joomla/filter", - "version": "3.0.4", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/filter.git", - "reference": "5bbb666ffefdbb32a7ced83bb83c99d1faffbc45" + "reference": "63a30dd72de04a76f34fa09f475135fe708c75d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/filter/zipball/5bbb666ffefdbb32a7ced83bb83c99d1faffbc45", - "reference": "5bbb666ffefdbb32a7ced83bb83c99d1faffbc45", + "url": "https://api.github.com/repos/joomla-framework/filter/zipball/63a30dd72de04a76f34fa09f475135fe708c75d4", + "reference": "63a30dd72de04a76f34fa09f475135fe708c75d4", "shasum": "" }, "require": { - "joomla/string": "^3.0", - "php": "^8.1.0" + "joomla/string": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "joomla/language": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/language": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.7", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { "joomla/language": "Required only if you want to use `OutputFilter::stringURLSafe`." }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Filter\\": "src/" @@ -1750,49 +1678,43 @@ ], "support": { "issues": "https://github.com/joomla-framework/filter/issues", - "source": "https://github.com/joomla-framework/filter/tree/3.0.4" + "source": "https://github.com/joomla-framework/filter/tree/4.0.0" }, - "time": "2025-07-19T18:49:49+00:00" + "time": "2025-07-23T19:57:09+00:00" }, { "name": "joomla/http", - "version": "3.1.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/http.git", - "reference": "a06323db9d0a55fa0f63236f14d3e3d767c7fb0c" + "reference": "c1631de6f88f5cb0c720360f6dc63a832359a1f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/http/zipball/a06323db9d0a55fa0f63236f14d3e3d767c7fb0c", - "reference": "a06323db9d0a55fa0f63236f14d3e3d767c7fb0c", + "url": "https://api.github.com/repos/joomla-framework/http/zipball/c1631de6f88f5cb0c720360f6dc63a832359a1f7", + "reference": "c1631de6f88f5cb0c720360f6dc63a832359a1f7", "shasum": "" }, "require": { "composer/ca-bundle": "^1.3.5", - "joomla/uri": "^3.0", - "laminas/laminas-diactoros": "^2.24.0", - "php": "^8.1.0", + "joomla/uri": "^4.0", + "laminas/laminas-diactoros": "^3.6.0", + "php": "^8.3.0", "psr/http-client": "^1.0", - "psr/http-message": "^1.0" + "psr/http-message": "^2.0" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { "ext-curl": "To use cURL for HTTP connections" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Http\\": "src/" @@ -1811,43 +1733,37 @@ ], "support": { "issues": "https://github.com/joomla-framework/http/issues", - "source": "https://github.com/joomla-framework/http/tree/3.1.2" + "source": "https://github.com/joomla-framework/http/tree/4.0.0" }, - "time": "2025-07-19T16:19:01+00:00" + "time": "2025-07-23T20:11:41+00:00" }, { "name": "joomla/input", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/input.git", - "reference": "b4ef792308e7adb42fb71a8118025ced899e4386" + "reference": "f366f97b143bd9d15f57dad74b21f72ac99d89ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/input/zipball/b4ef792308e7adb42fb71a8118025ced899e4386", - "reference": "b4ef792308e7adb42fb71a8118025ced899e4386", + "url": "https://api.github.com/repos/joomla-framework/input/zipball/f366f97b143bd9d15f57dad74b21f72ac99d89ec", + "reference": "f366f97b143bd9d15f57dad74b21f72ac99d89ec", "shasum": "" }, "require": { - "joomla/filter": "^3.0", - "php": "^8.1.0", + "joomla/filter": "^4.0", + "php": "^8.3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "joomla/test": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Input\\": "src/" @@ -1866,49 +1782,43 @@ ], "support": { "issues": "https://github.com/joomla-framework/input/issues", - "source": "https://github.com/joomla-framework/input/tree/3.0.2" + "source": "https://github.com/joomla-framework/input/tree/4.0.0" }, - "time": "2025-07-19T12:57:48+00:00" + "time": "2025-07-23T19:52:44+00:00" }, { "name": "joomla/language", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/language.git", - "reference": "7bd3d468ffad1e9639468a17751ec4324fc57d09" + "reference": "371507d84103e9e7b48253e72b3bcc8d91cf5a63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/language/zipball/7bd3d468ffad1e9639468a17751ec4324fc57d09", - "reference": "7bd3d468ffad1e9639468a17751ec4324fc57d09", + "url": "https://api.github.com/repos/joomla-framework/language/zipball/371507d84103e9e7b48253e72b3bcc8d91cf5a63", + "reference": "371507d84103e9e7b48253e72b3bcc8d91cf5a63", "shasum": "" }, "require": { "ext-xml": "*", - "joomla/string": "^3.0", - "php": "^8.1.0", + "joomla/string": "^4.0", + "php": "^8.3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { - "joomla/di": "^3.0", - "joomla/registry": "^3.0", - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/di": "^4.0", + "joomla/registry": "^4.0", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { "joomla/di": "To use the Language ServiceProviderInterface objects, install joomla/di." }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Language\\": "src/" @@ -1927,48 +1837,42 @@ ], "support": { "issues": "https://github.com/joomla-framework/language/issues", - "source": "https://github.com/joomla-framework/language/tree/3.0.2" + "source": "https://github.com/joomla-framework/language/tree/4.0.0" }, - "time": "2025-07-19T13:19:12+00:00" + "time": "2025-07-23T19:48:37+00:00" }, { "name": "joomla/oauth1", - "version": "3.0.1", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/joomla-framework/oauth1.git", - "reference": "4c1407cc98e0689ff36fa566906673829a8627ec" + "reference": "e48c0af2173222494cbac414e971c807f32a9eb9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/oauth1/zipball/4c1407cc98e0689ff36fa566906673829a8627ec", - "reference": "4c1407cc98e0689ff36fa566906673829a8627ec", + "url": "https://api.github.com/repos/joomla-framework/oauth1/zipball/e48c0af2173222494cbac414e971c807f32a9eb9", + "reference": "e48c0af2173222494cbac414e971c807f32a9eb9", "shasum": "" }, "require": { - "joomla/application": "^3.0", - "joomla/http": "^3.0", - "joomla/input": "^3.0", - "joomla/registry": "^3.0", - "joomla/session": "^3.0", - "joomla/uri": "^3.0", - "php": "^8.1.0" + "joomla/application": "^4.0", + "joomla/http": "^4.0", + "joomla/input": "^4.0", + "joomla/registry": "^4.0", + "joomla/session": "^4.0", + "joomla/uri": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "joomla/event": "^3.0", - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "joomla/event": "^4.0", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.7", + "squizlabs/php_codesniffer": "^3.13.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\OAuth1\\": "src/" @@ -1987,45 +1891,39 @@ ], "support": { "issues": "https://github.com/joomla-framework/oauth1/issues", - "source": "https://github.com/joomla-framework/oauth1/tree/3.0.1" + "source": "https://github.com/joomla-framework/oauth1/tree/4.0.1" }, - "time": "2025-07-19T19:54:15+00:00" + "time": "2025-08-06T11:59:19+00:00" }, { "name": "joomla/oauth2", - "version": "3.0.1", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/joomla-framework/oauth2.git", - "reference": "4e718f1d130fe709f0590bbc444678b398d7249b" + "reference": "5c665f53aeafb2d3a0168534932ace9573a0abe7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/oauth2/zipball/4e718f1d130fe709f0590bbc444678b398d7249b", - "reference": "4e718f1d130fe709f0590bbc444678b398d7249b", + "url": "https://api.github.com/repos/joomla-framework/oauth2/zipball/5c665f53aeafb2d3a0168534932ace9573a0abe7", + "reference": "5c665f53aeafb2d3a0168534932ace9573a0abe7", "shasum": "" }, "require": { - "joomla/application": "^3.0", - "joomla/http": "^3.0", - "joomla/input": "^3.0", - "joomla/session": "^3.0", - "joomla/uri": "^3.0", - "php": "^8.1.0" + "joomla/application": "^4.0", + "joomla/http": "^4.0", + "joomla/input": "^4.0", + "joomla/session": "^4.0", + "joomla/uri": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\OAuth2\\": "src/" @@ -2044,34 +1942,34 @@ ], "support": { "issues": "https://github.com/joomla-framework/oauth2/issues", - "source": "https://github.com/joomla-framework/oauth2/tree/3.0.1" + "source": "https://github.com/joomla-framework/oauth2/tree/4.0.1" }, - "time": "2025-07-19T20:07:08+00:00" + "time": "2025-08-06T10:09:51+00:00" }, { "name": "joomla/registry", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/registry.git", - "reference": "4452de9c66abfec59b535e27c62af3528a539311" + "reference": "5692d8423c9b568627df701e9fd505eae5ea8f72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/registry/zipball/4452de9c66abfec59b535e27c62af3528a539311", - "reference": "4452de9c66abfec59b535e27c62af3528a539311", + "url": "https://api.github.com/repos/joomla-framework/registry/zipball/5692d8423c9b568627df701e9fd505eae5ea8f72", + "reference": "5692d8423c9b568627df701e9fd505eae5ea8f72", "shasum": "" }, "require": { - "joomla/utilities": "^3.0", - "php": "^8.1.0" + "joomla/utilities": "^4.0", + "php": "^8.3.0" }, "require-dev": { - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2", - "symfony/yaml": "^5.0" + "symfony/yaml": "^7.3" }, "suggest": { "ext-json": "ext-json is needed for JSON support", @@ -2079,12 +1977,6 @@ "symfony/yaml": "Install symfony/yaml if you require YAML support." }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Registry\\": "src/" @@ -2103,49 +1995,40 @@ ], "support": { "issues": "https://github.com/joomla-framework/registry/issues", - "source": "https://github.com/joomla-framework/registry/tree/3.0.2" + "source": "https://github.com/joomla-framework/registry/tree/4.0.0" }, - "time": "2025-07-19T16:26:22+00:00" + "time": "2025-07-23T19:26:22+00:00" }, { "name": "joomla/router", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/router.git", - "reference": "8aa0013a6ba59ef250496b47855498e9a83156d1" + "reference": "d0552ac09b92712a140fff2323579b84fbaa12b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/router/zipball/8aa0013a6ba59ef250496b47855498e9a83156d1", - "reference": "8aa0013a6ba59ef250496b47855498e9a83156d1", + "url": "https://api.github.com/repos/joomla-framework/router/zipball/d0552ac09b92712a140fff2323579b84fbaa12b8", + "reference": "d0552ac09b92712a140fff2323579b84fbaa12b8", "shasum": "" }, "require": { - "php": "^8.1.0" - }, - "conflict": { - "jeremeamia/superclosure": "<2.4" + "php": "^8.3.0" }, "require-dev": { - "jeremeamia/superclosure": "^2.4", - "joomla/console": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/console": "^4.0", + "opis/closure": "^4.3.1", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { - "jeremeamia/superclosure": "If you use Closure based controllers and want to be able to serialize the router, please install jeremeamia/superclosure", - "joomla/console": "If you want to use the DebugRouterCommand class, please install joomla/console" + "joomla/console": "If you want to use the DebugRouterCommand class, please install joomla/console", + "opis/closure": "If you use Closure based controllers and want to be able to serialize the router, please install opis/closure" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Router\\": "src/" @@ -2164,39 +2047,39 @@ ], "support": { "issues": "https://github.com/joomla-framework/router/issues", - "source": "https://github.com/joomla-framework/router/tree/3.0.2" + "source": "https://github.com/joomla-framework/router/tree/4.0.0" }, - "time": "2025-07-19T13:51:10+00:00" + "time": "2025-07-23T19:21:30+00:00" }, { "name": "joomla/session", - "version": "3.0.3", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/session.git", - "reference": "6bebada5dccf70be0d18db673aa3a68af19b3972" + "reference": "3d1d8bc093d659053c46eec4962bef4c1e9e0206" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/session/zipball/6bebada5dccf70be0d18db673aa3a68af19b3972", - "reference": "6bebada5dccf70be0d18db673aa3a68af19b3972", + "url": "https://api.github.com/repos/joomla-framework/session/zipball/3d1d8bc093d659053c46eec4962bef4c1e9e0206", + "reference": "3d1d8bc093d659053c46eec4962bef4c1e9e0206", "shasum": "" }, "require": { - "php": "^8.1.0", + "php": "^8.3.0", "symfony/deprecation-contracts": "^2|^3" }, "require-dev": { - "joomla/console": "^3.0", - "joomla/database": "^3.0", - "joomla/event": "^3.0", - "joomla/input": "^3.0", - "joomla/test": "^3.0", - "joomla/utilities": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "joomla/console": "^4.0", + "joomla/database": "^4.0", + "joomla/event": "^4.0", + "joomla/input": "^4.0", + "joomla/test": "^4.0", + "joomla/utilities": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2" }, "suggest": { "ext-apcu": "To use APCu cache as a session handler", @@ -2210,12 +2093,6 @@ "joomla/input": "The joomla/input package is required to use Address and Forwarded session validators." }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.x-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Session\\": "src/" @@ -2234,37 +2111,35 @@ ], "support": { "issues": "https://github.com/joomla-framework/session/issues", - "source": "https://github.com/joomla-framework/session/tree/3.0.3" + "source": "https://github.com/joomla-framework/session/tree/4.0.0" }, - "time": "2025-07-19T15:19:54+00:00" + "time": "2025-07-23T19:16:20+00:00" }, { "name": "joomla/string", - "version": "3.0.4", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/string.git", - "reference": "0b3d33564db389e27346f7e275c694897c939434" + "reference": "da2329e05f1f5fc98b709f8638f279513bcd1108" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/string/zipball/0b3d33564db389e27346f7e275c694897c939434", - "reference": "0b3d33564db389e27346f7e275c694897c939434", + "url": "https://api.github.com/repos/joomla-framework/string/zipball/da2329e05f1f5fc98b709f8638f279513bcd1108", + "reference": "da2329e05f1f5fc98b709f8638f279513bcd1108", "shasum": "" }, "require": { - "php": "^8.1.0", - "symfony/deprecation-contracts": "^2|^3" - }, - "conflict": { - "doctrine/inflector": "<1.2" + "php": "^8.3.0", + "symfony/deprecation-contracts": "^2|^3", + "symfony/polyfill-mbstring": "^1.31.0" }, "require-dev": { - "doctrine/inflector": "^1.2", - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "doctrine/inflector": "^2.0.10", + "joomla/test": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { @@ -2272,30 +2147,7 @@ "ext-mbstring": "For improved processing" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { - "files": [ - "src/phputf8/utf8.php", - "src/phputf8/ord.php", - "src/phputf8/str_ireplace.php", - "src/phputf8/str_pad.php", - "src/phputf8/str_split.php", - "src/phputf8/strcasecmp.php", - "src/phputf8/strcspn.php", - "src/phputf8/stristr.php", - "src/phputf8/strrev.php", - "src/phputf8/strspn.php", - "src/phputf8/trim.php", - "src/phputf8/ucfirst.php", - "src/phputf8/ucwords.php", - "src/phputf8/utils/ascii.php", - "src/phputf8/utils/validation.php" - ], "psr-4": { "Joomla\\String\\": "src/" } @@ -2313,43 +2165,37 @@ ], "support": { "issues": "https://github.com/joomla-framework/string/issues", - "source": "https://github.com/joomla-framework/string/tree/3.0.4" + "source": "https://github.com/joomla-framework/string/tree/4.0.0" }, - "time": "2025-07-19T15:25:56+00:00" + "time": "2025-07-23T18:42:26+00:00" }, { "name": "joomla/uri", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/uri.git", - "reference": "ac18b410b58c5d2cb652eac7c13acb4971cb5e0d" + "reference": "9fa4fac811bf63e830d46d83031c353cf2765bcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/uri/zipball/ac18b410b58c5d2cb652eac7c13acb4971cb5e0d", - "reference": "ac18b410b58c5d2cb652eac7c13acb4971cb5e0d", + "url": "https://api.github.com/repos/joomla-framework/uri/zipball/9fa4fac811bf63e830d46d83031c353cf2765bcd", + "reference": "9fa4fac811bf63e830d46d83031c353cf2765bcd", "shasum": "" }, "require": { - "php": "^8.1.0" + "php": "^8.3.0" }, "require-dev": { - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "suggest": { "ext-mbstring": "Used to speed up url parsing" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Uri\\": "src/" @@ -2368,41 +2214,35 @@ ], "support": { "issues": "https://github.com/joomla-framework/uri/issues", - "source": "https://github.com/joomla-framework/uri/tree/3.0.2" + "source": "https://github.com/joomla-framework/uri/tree/4.0.0" }, - "time": "2025-07-12T12:01:42+00:00" + "time": "2025-07-23T19:02:38+00:00" }, { "name": "joomla/utilities", - "version": "3.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/utilities.git", - "reference": "bec074fa469cfdb30fae168899cf65159bf7890d" + "reference": "5f234527f7dad7111830b091aef52787c3c07cc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/utilities/zipball/bec074fa469cfdb30fae168899cf65159bf7890d", - "reference": "bec074fa469cfdb30fae168899cf65159bf7890d", + "url": "https://api.github.com/repos/joomla-framework/utilities/zipball/5f234527f7dad7111830b091aef52787c3c07cc8", + "reference": "5f234527f7dad7111830b091aef52787c3c07cc8", "shasum": "" }, "require": { - "joomla/string": "^3.0", - "php": "^8.1.0" + "joomla/string": "^4.0", + "php": "^8.3.0" }, "require-dev": { "phpstan/phpstan": "^2.1.17", "phpstan/phpstan-deprecation-rules": "^2.0.3", - "phpunit/phpunit": "^9.5.28", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Utilities\\": "src/" @@ -2421,47 +2261,47 @@ ], "support": { "issues": "https://github.com/joomla-framework/utilities/issues", - "source": "https://github.com/joomla-framework/utilities/tree/3.0.2" + "source": "https://github.com/joomla-framework/utilities/tree/4.0.0" }, - "time": "2025-07-19T16:29:29+00:00" + "time": "2025-07-23T18:52:12+00:00" }, { "name": "laminas/laminas-diactoros", - "version": "2.26.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "6584d44eb8e477e89d453313b858daac6183cddc" + "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6584d44eb8e477e89d453313b858daac6183cddc", - "reference": "6584d44eb8e477e89d453313b858daac6183cddc", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/b068eac123f21c0e592de41deeb7403b88e0a89f", + "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f", "shasum": "" }, "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.1" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "psr/http-factory": "^1.1", + "psr/http-message": "^1.1 || ^2.0" }, "conflict": { - "zendframework/zend-diactoros": "*" + "amphp/amp": "<2.6.4" }, "provide": { - "psr/http-factory-implementation": "1.0", - "psr/http-message-implementation": "1.0" + "psr/http-factory-implementation": "^1.0", + "psr/http-message-implementation": "^1.1 || ^2.0" }, "require-dev": { "ext-curl": "*", "ext-dom": "*", "ext-gd": "*", "ext-libxml": "*", - "http-interop/http-factory-tests": "^0.9.0", - "laminas/laminas-coding-standard": "^2.5", - "php-http/psr7-integration-tests": "^1.2", - "phpunit/phpunit": "^9.5.28", - "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.6" + "http-interop/http-factory-tests": "^2.2.0", + "laminas/laminas-coding-standard": "~3.0.0", + "php-http/psr7-integration-tests": "^1.4.0", + "phpunit/phpunit": "^10.5.36", + "psalm/plugin-phpunit": "^0.19.0", + "vimeo/psalm": "^5.26.1" }, "type": "library", "extra": { @@ -2476,18 +2316,9 @@ "src/functions/marshal_headers_from_sapi.php", "src/functions/marshal_method_from_sapi.php", "src/functions/marshal_protocol_version_from_sapi.php", - "src/functions/marshal_uri_from_sapi.php", "src/functions/normalize_server.php", "src/functions/normalize_uploaded_files.php", - "src/functions/parse_cookie_header.php", - "src/functions/create_uploaded_file.legacy.php", - "src/functions/marshal_headers_from_sapi.legacy.php", - "src/functions/marshal_method_from_sapi.legacy.php", - "src/functions/marshal_protocol_version_from_sapi.legacy.php", - "src/functions/marshal_uri_from_sapi.legacy.php", - "src/functions/normalize_server.legacy.php", - "src/functions/normalize_uploaded_files.legacy.php", - "src/functions/parse_cookie_header.legacy.php" + "src/functions/parse_cookie_header.php" ], "psr-4": { "Laminas\\Diactoros\\": "src/" @@ -2520,38 +2351,38 @@ "type": "community_bridge" } ], - "time": "2023-10-29T16:17:44+00:00" + "time": "2025-05-05T16:03:34+00:00" }, { "name": "lcobucci/clock", - "version": "3.0.0", + "version": "3.3.1", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc" + "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/db3713a61addfffd615b79bf0bc22f0ccc61b86b", + "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0", "psr/clock": "^1.0" }, "provide": { "psr/clock-implementation": "1.0" }, "require-dev": { - "infection/infection": "^0.26", - "lcobucci/coding-standard": "^9.0", - "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.9.4", - "phpstan/phpstan-deprecation-rules": "^1.1.1", - "phpstan/phpstan-phpunit": "^1.3.2", - "phpstan/phpstan-strict-rules": "^1.4.4", - "phpunit/phpunit": "^9.5.27" + "infection/infection": "^0.29", + "lcobucci/coding-standard": "^11.1.0", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan": "^1.10.25", + "phpstan/phpstan-deprecation-rules": "^1.1.3", + "phpstan/phpstan-phpunit": "^1.3.13", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^11.3.6" }, "type": "library", "autoload": { @@ -2572,7 +2403,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/3.0.0" + "source": "https://github.com/lcobucci/clock/tree/3.3.1" }, "funding": [ { @@ -2584,7 +2415,7 @@ "type": "patreon" } ], - "time": "2022-12-19T15:00:24+00:00" + "time": "2024-09-24T20:45:14+00:00" }, { "name": "lcobucci/jwt", @@ -3312,22 +3143,27 @@ }, { "name": "psr/container", - "version": "1.1.2", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", "shasum": "" }, "require": { "php": ">=7.4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" @@ -3354,9 +3190,9 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.2" + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "time": "2021-11-05T16:50:12+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { "name": "psr/event-dispatcher", @@ -3517,16 +3353,16 @@ }, { "name": "psr/http-message", - "version": "1.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba", - "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { @@ -3535,7 +3371,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -3550,7 +3386,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -3564,9 +3400,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/1.1" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2023-04-04T09:50:52+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "psr/link", @@ -3909,47 +3745,47 @@ }, { "name": "symfony/console", - "version": "v6.4.23", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93" + "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93", + "url": "https://api.github.com/repos/symfony/console/zipball/5f360ebc65c55265a74d23d7fe27f957870158a1", + "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0|^7.0" + "symfony/string": "^7.2" }, "conflict": { - "symfony/dependency-injection": "<5.4", - "symfony/dotenv": "<5.4", - "symfony/event-dispatcher": "<5.4", - "symfony/lock": "<5.4", - "symfony/process": "<5.4" + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" }, "provide": { "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", "symfony/http-foundation": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", - "symfony/lock": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -3983,7 +3819,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.23" + "source": "https://github.com/symfony/console/tree/v7.3.2" }, "funding": [ { @@ -3994,12 +3830,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-27T19:37:22+00:00" + "time": "2025-07-30T17:13:41+00:00" }, { "name": "symfony/deprecation-contracts", @@ -4070,31 +3910,33 @@ }, { "name": "symfony/error-handler", - "version": "v6.4.23", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa" + "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3", + "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/var-dumper": "^6.4|^7.0" }, "conflict": { "symfony/deprecation-contracts": "<2.5", "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^5.4|^6.0|^7.0" + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -4125,7 +3967,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.23" + "source": "https://github.com/symfony/error-handler/tree/v7.3.2" }, "funding": [ { @@ -4136,37 +3978,43 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-13T07:39:48+00:00" + "time": "2025-07-07T08:17:57+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.23", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "19f11e742b94dcfd968a54f5381bb9082a88cb57" + "reference": "1c064a0c67749923483216b081066642751cc2c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/19f11e742b94dcfd968a54f5381bb9082a88cb57", - "reference": "19f11e742b94dcfd968a54f5381bb9082a88cb57", + "url": "https://api.github.com/repos/symfony/http-client/zipball/1c064a0c67749923483216b081066642751cc2c7", + "reference": "1c064a0c67749923483216b081066642751cc2c7", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-client-contracts": "~3.4.4|^3.5.2", "symfony/service-contracts": "^2.5|^3" }, "conflict": { + "amphp/amp": "<2.5", + "amphp/socket": "<1.1", "php-http/discovery": "<1.15", - "symfony/http-foundation": "<6.3" + "symfony/http-foundation": "<6.4" }, "provide": { "php-http/async-client-implementation": "*", @@ -4175,19 +4023,19 @@ "symfony/http-client-implementation": "3.0" }, "require-dev": { - "amphp/amp": "^2.5", - "amphp/http-client": "^4.2.1", - "amphp/http-tunnel": "^1.0", - "amphp/socket": "^1.1", + "amphp/http-client": "^4.2.1|^5.0", + "amphp/http-tunnel": "^1.0|^2.0", "guzzlehttp/promises": "^1.4|^2.0", "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "symfony/amphp-http-client-meta": "^1.0|^2.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -4218,7 +4066,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.23" + "source": "https://github.com/symfony/http-client/tree/v7.3.2" }, "funding": [ { @@ -4229,12 +4077,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-27T20:02:31+00:00" + "time": "2025-07-15T11:36:08+00:00" }, { "name": "symfony/http-client-contracts", @@ -4316,31 +4168,29 @@ }, { "name": "symfony/ldap", - "version": "v6.4.13", + "version": "v7.3.1", "source": { "type": "git", "url": "https://github.com/symfony/ldap.git", - "reference": "b5fa3ba63b82ab0a8108d816282e5ba58ab7c982" + "reference": "ee23db6241e4ddaec316220e3a1d5884262e27d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/ldap/zipball/b5fa3ba63b82ab0a8108d816282e5ba58ab7c982", - "reference": "b5fa3ba63b82ab0a8108d816282e5ba58ab7c982", + "url": "https://api.github.com/repos/symfony/ldap/zipball/ee23db6241e4ddaec316220e3a1d5884262e27d0", + "reference": "ee23db6241e4ddaec316220e3a1d5884262e27d0", "shasum": "" }, "require": { "ext-ldap": "*", - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/options-resolver": "^5.4|^6.0|^7.0" + "php": ">=8.2", + "symfony/options-resolver": "^7.3" }, "conflict": { - "symfony/options-resolver": "<5.4", - "symfony/security-core": "<5.4" + "symfony/security-core": "<6.4" }, "require-dev": { - "symfony/security-core": "^5.4|^6.0|^7.0", - "symfony/security-http": "^5.4|^6.0|^7.0" + "symfony/security-core": "^6.4|^7.0", + "symfony/security-http": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -4372,7 +4222,7 @@ "ldap" ], "support": { - "source": "https://github.com/symfony/ldap/tree/v6.4.13" + "source": "https://github.com/symfony/ldap/tree/v7.3.1" }, "funding": [ { @@ -4388,24 +4238,24 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2025-06-02T08:44:34+00:00" }, { "name": "symfony/options-resolver", - "version": "v6.4.16", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "368128ad168f20e22c32159b9f761e456cec0c78" + "reference": "119bcf13e67dbd188e5dbc74228b1686f66acd37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78", - "reference": "368128ad168f20e22c32159b9f761e456cec0c78", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/119bcf13e67dbd188e5dbc74228b1686f66acd37", + "reference": "119bcf13e67dbd188e5dbc74228b1686f66acd37", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", @@ -4439,7 +4289,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v6.4.16" + "source": "https://github.com/symfony/options-resolver/tree/v7.3.2" }, "funding": [ { @@ -4450,12 +4300,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-11-20T10:57:02+00:00" + "time": "2025-07-15T11:36:08+00:00" }, { "name": "symfony/polyfill-ctype", @@ -4940,20 +4794,20 @@ }, { "name": "symfony/string", - "version": "v6.4.21", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6" + "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6", + "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca", + "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", @@ -4963,11 +4817,12 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/intl": "^6.2|^7.0", + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -5006,7 +4861,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.21" + "source": "https://github.com/symfony/string/tree/v7.3.2" }, "funding": [ { @@ -5017,12 +4872,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-18T15:23:29+00:00" + "time": "2025-07-10T08:47:49+00:00" }, { "name": "symfony/translation-contracts", @@ -5104,16 +4963,16 @@ }, { "name": "symfony/uid", - "version": "v6.4.23", + "version": "v6.4.24", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "9c8592da78d7ee6af52011eef593350d87e814c0" + "reference": "17da16a750541a42cf2183935e0f6008316c23f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/9c8592da78d7ee6af52011eef593350d87e814c0", - "reference": "9c8592da78d7ee6af52011eef593350d87e814c0", + "url": "https://api.github.com/repos/symfony/uid/zipball/17da16a750541a42cf2183935e0f6008316c23f7", + "reference": "17da16a750541a42cf2183935e0f6008316c23f7", "shasum": "" }, "require": { @@ -5158,7 +5017,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v6.4.23" + "source": "https://github.com/symfony/uid/tree/v6.4.24" }, "funding": [ { @@ -5169,25 +5028,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-26T08:06:12+00:00" + "time": "2025-07-10T08:14:14+00:00" }, { "name": "symfony/validator", - "version": "v6.4.23", + "version": "v6.4.24", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc" + "reference": "297a24dccf13cc09f1d03207b20807f528f088cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc", + "url": "https://api.github.com/repos/symfony/validator/zipball/297a24dccf13cc09f1d03207b20807f528f088cc", + "reference": "297a24dccf13cc09f1d03207b20807f528f088cc", "shasum": "" }, "require": { @@ -5255,7 +5118,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.23" + "source": "https://github.com/symfony/validator/tree/v6.4.24" }, "funding": [ { @@ -5266,43 +5129,45 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-26T07:25:45+00:00" + "time": "2025-07-29T18:08:45+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.23", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600" + "reference": "53205bea27450dc5c65377518b3275e126d45e75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/53205bea27450dc5c65377518b3275e126d45e75", + "reference": "53205bea27450dc5c65377518b3275e126d45e75", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/console": "<5.4" + "symfony/console": "<6.4" }, "require-dev": { - "ext-iconv": "*", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^6.3|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/uid": "^5.4|^6.0|^7.0", - "twig/twig": "^2.13|^3.0.4" + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.12" }, "bin": [ "Resources/bin/var-dump-server" @@ -5340,7 +5205,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.23" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.2" }, "funding": [ { @@ -5351,25 +5216,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-27T15:05:27+00:00" + "time": "2025-07-29T20:02:46+00:00" }, { "name": "symfony/web-link", - "version": "v6.4.22", + "version": "v6.4.24", "source": { "type": "git", "url": "https://github.com/symfony/web-link.git", - "reference": "8595204221c4307b5fd30644a225b0b952082b18" + "reference": "75ffbb304f26a716969863328c8c6a11eadcfa5a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/web-link/zipball/8595204221c4307b5fd30644a225b0b952082b18", - "reference": "8595204221c4307b5fd30644a225b0b952082b18", + "url": "https://api.github.com/repos/symfony/web-link/zipball/75ffbb304f26a716969863328c8c6a11eadcfa5a", + "reference": "75ffbb304f26a716969863328c8c6a11eadcfa5a", "shasum": "" }, "require": { @@ -5423,7 +5292,7 @@ "push" ], "support": { - "source": "https://github.com/symfony/web-link/tree/v6.4.22" + "source": "https://github.com/symfony/web-link/tree/v6.4.24" }, "funding": [ { @@ -5434,25 +5303,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-05-16T08:23:44+00:00" + "time": "2025-07-10T08:14:14+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.23", + "version": "v6.4.24", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b" + "reference": "742a8efc94027624b36b10ba58e23d402f961f51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b", + "url": "https://api.github.com/repos/symfony/yaml/zipball/742a8efc94027624b36b10ba58e23d402f961f51", + "reference": "742a8efc94027624b36b10ba58e23d402f961f51", "shasum": "" }, "require": { @@ -5495,7 +5368,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.23" + "source": "https://github.com/symfony/yaml/tree/v6.4.24" }, "funding": [ { @@ -5506,12 +5379,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-06-03T06:46:12+00:00" + "time": "2025-07-10T08:14:14+00:00" }, { "name": "tobscure/json-api", @@ -6542,20 +6419,20 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.84.0", + "version": "v3.85.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "38dad0767bf2a9b516b976852200ae722fe984ca" + "reference": "2fb6d7f6c3398dca5786a1635b27405d73a417ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/38dad0767bf2a9b516b976852200ae722fe984ca", - "reference": "38dad0767bf2a9b516b976852200ae722fe984ca", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/2fb6d7f6c3398dca5786a1635b27405d73a417ba", + "reference": "2fb6d7f6c3398dca5786a1635b27405d73a417ba", "shasum": "" }, "require": { - "clue/ndjson-react": "^1.0", + "clue/ndjson-react": "^1.3", "composer/semver": "^3.4", "composer/xdebug-handler": "^3.0.5", "ext-filter": "*", @@ -6565,12 +6442,12 @@ "fidry/cpu-core-counter": "^1.2", "php": "^7.4 || ^8.0", "react/child-process": "^0.6.6", - "react/event-loop": "^1.0", - "react/promise": "^2.11 || ^3.0", - "react/socket": "^1.0", - "react/stream": "^1.0", + "react/event-loop": "^1.5", + "react/promise": "^3.2", + "react/socket": "^1.16", + "react/stream": "^1.4", "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0", - "symfony/console": "^5.4.45 || ^6.4.13 || ^7.0", + "symfony/console": "^5.4.47 || ^6.4.13 || ^7.0", "symfony/event-dispatcher": "^5.4.45 || ^6.4.13 || ^7.0", "symfony/filesystem": "^5.4.45 || ^6.4.13 || ^7.0", "symfony/finder": "^5.4.45 || ^6.4.17 || ^7.0", @@ -6635,7 +6512,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.84.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.85.1" }, "funding": [ { @@ -6643,43 +6520,37 @@ "type": "github" } ], - "time": "2025-07-15T18:21:57+00:00" + "time": "2025-07-29T22:22:50+00:00" }, { "name": "joomla/mediawiki", - "version": "3.0.1", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/joomla-framework/mediawiki-api.git", - "reference": "9db43585a71148b0168e1758c298e09e31c6fef6" + "reference": "34f5b81eb61586938df86388fee2236f8fbc7131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/mediawiki-api/zipball/9db43585a71148b0168e1758c298e09e31c6fef6", - "reference": "9db43585a71148b0168e1758c298e09e31c6fef6", + "url": "https://api.github.com/repos/joomla-framework/mediawiki-api/zipball/34f5b81eb61586938df86388fee2236f8fbc7131", + "reference": "34f5b81eb61586938df86388fee2236f8fbc7131", "shasum": "" }, "require": { - "joomla/http": "^3.0", - "joomla/registry": "^3.0", - "joomla/uri": "^3.0", - "php": "^8.1.0" + "joomla/http": "^4.0", + "joomla/registry": "^4.0", + "joomla/uri": "^4.0", + "php": "^8.3.0" }, "require-dev": { "ext-simplexml": "*", - "joomla/test": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", + "joomla/test": "^4.0", + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpunit/phpunit": "^12.2.6", "squizlabs/php_codesniffer": "^3.7.2" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-2.0-dev": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Mediawiki\\": "src/" @@ -6698,48 +6569,39 @@ ], "support": { "issues": "https://github.com/joomla-framework/mediawiki-api/issues", - "source": "https://github.com/joomla-framework/mediawiki-api/tree/3.0.1" + "source": "https://github.com/joomla-framework/mediawiki-api/tree/4.0.1" }, - "time": "2025-07-11T23:18:33+00:00" + "time": "2025-08-06T10:10:33+00:00" }, { "name": "joomla/test", - "version": "3.0.3", + "version": "4.0", "source": { "type": "git", "url": "https://github.com/joomla-framework/test.git", - "reference": "9602f11ef379f9b71bd690b2b2731e956ae8f110" + "reference": "5c5651800bed4a657d596929db56a200da063600" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/joomla-framework/test/zipball/9602f11ef379f9b71bd690b2b2731e956ae8f110", - "reference": "9602f11ef379f9b71bd690b2b2731e956ae8f110", + "url": "https://api.github.com/repos/joomla-framework/test/zipball/5c5651800bed4a657d596929db56a200da063600", + "reference": "5c5651800bed4a657d596929db56a200da063600", "shasum": "" }, "require": { - "php": "^8.1.0" - }, - "conflict": { - "joomla/database": "<2.0" + "php": "^8.3.0" }, "require-dev": { - "joomla/database": "^3.0", - "phpstan/phpstan": "1.12.27", - "phpstan/phpstan-deprecation-rules": "1.2.1", - "phpunit/phpunit": "^9.5.28", - "squizlabs/php_codesniffer": "^3.7.2" + "joomla/database": "^4.0", + "phpstan/phpstan": "2.1.17", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^3.10.2" }, "suggest": { "joomla/database": "To use the database test case, install joomla/database", "phpunit/phpunit": "To use the database test case, install phpunit/phpunit" }, "type": "joomla-package", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev", - "dev-3.x-dev": "3.0-dev" - } - }, "autoload": { "psr-4": { "Joomla\\Test\\": "src/" @@ -6760,22 +6622,22 @@ ], "support": { "issues": "https://github.com/joomla-framework/test/issues", - "source": "https://github.com/joomla-framework/test/tree/3.0.3" + "source": "https://github.com/joomla-framework/test/tree/4.0" }, - "time": "2025-07-19T15:34:12+00:00" + "time": "2025-07-23T18:26:34+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.13.3", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -6814,7 +6676,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -6822,20 +6684,20 @@ "type": "tidelift" } ], - "time": "2025-07-05T12:25:42+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nikic/php-parser", - "version": "v5.5.0", + "version": "v5.6.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "ae59794362fe85e051a58ad36b289443f57be7a9" + "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9", - "reference": "ae59794362fe85e051a58ad36b289443f57be7a9", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/221b0d0fdf1369c71047ad1d18bb5880017bbc56", + "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56", "shasum": "" }, "require": { @@ -6878,9 +6740,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.0" }, - "time": "2025-05-31T08:24:38+00:00" + "time": "2025-07-27T20:03:57+00:00" }, { "name": "phar-io/manifest", @@ -7002,16 +6864,16 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.19", + "version": "2.1.21", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "473a8c30e450d87099f76313edcbb90852f9afdf" + "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf", - "reference": "473a8c30e450d87099f76313edcbb90852f9afdf", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1ccf445757458c06a04eb3f803603cb118fe5fa6", + "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6", "shasum": "" }, "require": { @@ -7056,7 +6918,7 @@ "type": "github" } ], - "time": "2025-07-21T19:58:24+00:00" + "time": "2025-07-28T19:35:08+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -9110,24 +8972,24 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.4.13", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d", + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -9136,13 +8998,13 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -9170,7 +9032,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0" }, "funding": [ { @@ -9186,7 +9048,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2025-04-22T09:11:45+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -9266,25 +9128,25 @@ }, { "name": "symfony/filesystem", - "version": "v6.4.13", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3" + "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/edcbb768a186b5c3f25d0643159a787d3e63b7fd", + "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, "require-dev": { - "symfony/process": "^5.4|^6.4|^7.0" + "symfony/process": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -9312,7 +9174,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.13" + "source": "https://github.com/symfony/filesystem/tree/v7.3.2" }, "funding": [ { @@ -9323,32 +9185,36 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-10-25T15:07:50+00:00" + "time": "2025-07-07T08:17:47+00:00" }, { "name": "symfony/finder", - "version": "v6.4.17", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe", + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "symfony/filesystem": "^6.0|^7.0" + "symfony/filesystem": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -9376,7 +9242,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.17" + "source": "https://github.com/symfony/finder/tree/v7.3.2" }, "funding": [ { @@ -9387,29 +9253,33 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-12-29T13:51:37+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { "name": "symfony/process", - "version": "v6.4.20", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20" + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20", + "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -9437,7 +9307,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.20" + "source": "https://github.com/symfony/process/tree/v7.3.0" }, "funding": [ { @@ -9453,24 +9323,24 @@ "type": "tidelift" } ], - "time": "2025-03-10T17:11:00+00:00" + "time": "2025-04-17T09:11:12+00:00" }, { "name": "symfony/stopwatch", - "version": "v6.4.19", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c" + "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c", - "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd", + "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/service-contracts": "^2.5|^3" }, "type": "library", @@ -9499,7 +9369,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.4.19" + "source": "https://github.com/symfony/stopwatch/tree/v7.3.0" }, "funding": [ { @@ -9515,7 +9385,7 @@ "type": "tidelift" } ], - "time": "2025-02-21T10:06:30+00:00" + "time": "2025-02-24T10:49:57+00:00" }, { "name": "theseer/tokenizer", @@ -9576,7 +9446,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^8.1.0", + "php": "^8.3.0", "ext-json": "*", "ext-simplexml": "*", "ext-gd": "*", @@ -9584,7 +9454,7 @@ }, "platform-dev": {}, "platform-overrides": { - "php": "8.1.0" + "php": "8.3.0" }, "plugin-api-version": "2.6.0" } diff --git a/libraries/src/Captcha/Google/HttpBridgePostRequestMethod.php b/libraries/src/Captcha/Google/HttpBridgePostRequestMethod.php index acee2c848c368..011e017ef8434 100644 --- a/libraries/src/Captcha/Google/HttpBridgePostRequestMethod.php +++ b/libraries/src/Captcha/Google/HttpBridgePostRequestMethod.php @@ -9,9 +9,9 @@ namespace Joomla\CMS\Captcha\Google; -use Joomla\CMS\Http\HttpFactory; use Joomla\Http\Exception\InvalidResponseCodeException; use Joomla\Http\Http; +use Joomla\Http\HttpFactory; use ReCaptcha\RequestMethod; use ReCaptcha\RequestParameters; @@ -51,7 +51,7 @@ final class HttpBridgePostRequestMethod implements RequestMethod */ public function __construct(?Http $http = null) { - $this->http = $http ?: HttpFactory::getHttp(); + $this->http = $http ?: (new HttpFactory())->getHttp(); } /** diff --git a/libraries/src/Changelog/Changelog.php b/libraries/src/Changelog/Changelog.php index a5742a0ef6a60..ed4ec89f1a7a0 100644 --- a/libraries/src/Changelog/Changelog.php +++ b/libraries/src/Changelog/Changelog.php @@ -9,11 +9,11 @@ namespace Joomla\CMS\Changelog; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Object\LegacyPropertyManagementTrait; use Joomla\CMS\Version; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -349,7 +349,7 @@ public function loadFromXml($url) $httpOption->set('userAgent', $version->getUserAgent('Joomla', true, false)); try { - $http = HttpFactory::getHttp($httpOption); + $http = (new HttpFactory())->getHttp($httpOption); $response = $http->get($url); } catch (\RuntimeException) { $response = null; diff --git a/libraries/src/Event/AbstractImmutableEvent.php b/libraries/src/Event/AbstractImmutableEvent.php index 2c521d8bf8d27..d64668f9259a9 100644 --- a/libraries/src/Event/AbstractImmutableEvent.php +++ b/libraries/src/Event/AbstractImmutableEvent.php @@ -62,7 +62,7 @@ public function __construct(string $name, array $arguments = []) * @since 4.0.0 * @throws \BadMethodCallException */ - public function offsetSet($name, $value) + public function offsetSet($name, $value): void { // B/C check for plugins which use $event['result'] = $result; if ($name === 'result') { @@ -95,7 +95,7 @@ public function offsetSet($name, $value) * @since 4.0.0 * @throws \BadMethodCallException */ - public function offsetUnset($name) + public function offsetUnset($name): void { throw new \BadMethodCallException( \sprintf( diff --git a/libraries/src/Feed/FeedFactory.php b/libraries/src/Feed/FeedFactory.php index 675d3e0bd466b..44a1c007bc8b7 100644 --- a/libraries/src/Feed/FeedFactory.php +++ b/libraries/src/Feed/FeedFactory.php @@ -9,7 +9,7 @@ namespace Joomla\CMS\Feed; -use Joomla\CMS\Http\HttpFactory; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -54,7 +54,7 @@ public function getFeed($uri) $options->set('userAgent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0'); try { - $response = HttpFactory::getHttp($options)->get($uri); + $response = (new HttpFactory())->getHttp($options)->get($uri); } catch (\RuntimeException $e) { throw new \RuntimeException('Unable to open the feed.', $e->getCode(), $e); } diff --git a/libraries/src/Installer/InstallerHelper.php b/libraries/src/Installer/InstallerHelper.php index cc4bf22353cf4..5914d16910d25 100644 --- a/libraries/src/Installer/InstallerHelper.php +++ b/libraries/src/Installer/InstallerHelper.php @@ -12,7 +12,6 @@ use Joomla\Archive\Archive; use Joomla\CMS\Event\Installer\BeforePackageDownloadEvent; use Joomla\CMS\Factory; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Plugin\PluginHelper; @@ -21,6 +20,7 @@ use Joomla\Filesystem\File; use Joomla\Filesystem\Folder; use Joomla\Filesystem\Path; +use Joomla\Http\HttpFactory; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -86,7 +86,7 @@ public static function downloadPackage($url, $target = false) $headers = $event->getArgument('headers', $headers); try { - $response = HttpFactory::getHttp()->get($url, $headers); + $response = (new HttpFactory())->getHttp()->get($url, $headers); } catch (\RuntimeException $exception) { Log::add(Text::sprintf('JLIB_INSTALLER_ERROR_DOWNLOAD_SERVER_CONNECT', $exception->getMessage()), Log::WARNING, 'jerror'); diff --git a/libraries/src/Updater/Adapter/TufAdapter.php b/libraries/src/Updater/Adapter/TufAdapter.php index 8fcad645313b0..2cfc97eb015ba 100644 --- a/libraries/src/Updater/Adapter/TufAdapter.php +++ b/libraries/src/Updater/Adapter/TufAdapter.php @@ -15,13 +15,13 @@ use Joomla\CMS\Application\ApplicationHelper; use Joomla\CMS\Factory; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Table\Tuf as MetadataTable; use Joomla\CMS\Table\Update; use Joomla\CMS\TUF\TufFetcher; use Joomla\CMS\Updater\ConstraintChecker; use Joomla\CMS\Updater\UpdateAdapter; use Joomla\CMS\Updater\Updater; +use Joomla\Http\HttpFactory; use Symfony\Component\OptionsResolver\OptionsResolver; use Tuf\Exception\MetadataException; diff --git a/libraries/src/Updater/Update.php b/libraries/src/Updater/Update.php index cb85e00131192..a11c8cbea77b1 100644 --- a/libraries/src/Updater/Update.php +++ b/libraries/src/Updater/Update.php @@ -11,7 +11,6 @@ use Joomla\CMS\Factory; use Joomla\CMS\Filter\InputFilter; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Object\LegacyErrorHandlingTrait; @@ -20,6 +19,7 @@ use Joomla\CMS\TUF\TufFetcher; use Joomla\CMS\Version; use Joomla\Database\DatabaseDriver; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -640,7 +640,7 @@ public function loadFromXml($url, $minimumStability = Updater::STABILITY_STABLE, $httpOption->set('userAgent', $version->getUserAgent('Joomla', true, false)); try { - $http = HttpFactory::getHttp($httpOption); + $http = (new HttpFactory())->getHttp($httpOption); $response = $http->get($url); } catch (\RuntimeException) { $response = null; diff --git a/libraries/src/Updater/UpdateAdapter.php b/libraries/src/Updater/UpdateAdapter.php index 46b98a209087d..ee84ff777693b 100644 --- a/libraries/src/Updater/UpdateAdapter.php +++ b/libraries/src/Updater/UpdateAdapter.php @@ -11,7 +11,6 @@ use Joomla\CMS\Event\Installer\BeforeUpdateSiteDownloadEvent; use Joomla\CMS\Factory; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Object\LegacyPropertyManagementTrait; @@ -19,6 +18,7 @@ use Joomla\CMS\Version; use Joomla\Database\DatabaseDriver; use Joomla\Database\ParameterType; +use Joomla\Http\HttpFactory; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects @@ -250,7 +250,7 @@ protected function getUpdateSiteName($updateSiteId) * * @param array $options The update options, see findUpdate() in children classes * - * @return \Joomla\CMS\Http\Response|bool False if we can't connect to the site, HTTP Response object otherwise + * @return \Joomla\Http\Response|bool False if we can't connect to the site, HTTP Response object otherwise * * @throws \Exception */ @@ -302,7 +302,7 @@ protected function getUpdateSiteResponse($options = []) // Http transport throws an exception when there's no response. try { - $http = HttpFactory::getHttp($httpOption); + $http = (new HttpFactory())->getHttp($httpOption); $response = $http->get($newUrl, $headers, 20); } catch (\RuntimeException) { $response = null; diff --git a/phpstan.neon b/phpstan.neon index 3183055a7b0fe..303accb8a228e 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -45,13 +45,3 @@ parameters: - plugins/* - message: '#Call to deprecated method \_\(\) of class Joomla\\CMS\\Language\\Language.*#' - - # PrepareableInterface and LimitableInterface will be removed and be part of the QueryInterface. - # Since we don't use these interfaces directly, we can ignore these errors. - # It is already fixed in joomla 6.0 with database framework version 4. - - - message: '#Call to method bind\(\) of deprecated interface Joomla\\Database\\Query\\PreparableInterface.*#' - - - message: '#Call to method getBounded\(\) of deprecated interface Joomla\\Database\\Query\\PreparableInterface.*#' - - - message: '#Call to method setLimit\(\) of deprecated interface Joomla\\Database\\Query\\LimitableInterface.*#' diff --git a/plugins/multifactorauth/yubikey/src/Extension/Yubikey.php b/plugins/multifactorauth/yubikey/src/Extension/Yubikey.php index 91d67fab62f62..c47ee43b76044 100644 --- a/plugins/multifactorauth/yubikey/src/Extension/Yubikey.php +++ b/plugins/multifactorauth/yubikey/src/Extension/Yubikey.php @@ -15,7 +15,6 @@ use Joomla\CMS\Event\MultiFactor\GetSetup; use Joomla\CMS\Event\MultiFactor\SaveSetup; use Joomla\CMS\Event\MultiFactor\Validate; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Uri\Uri; @@ -26,6 +25,7 @@ use Joomla\Component\Users\Administrator\Helper\Mfa as MfaHelper; use Joomla\Component\Users\Administrator\Table\MfaTable; use Joomla\Event\SubscriberInterface; +use Joomla\Http\HttpFactory; use Joomla\Input\Input; // phpcs:disable PSR1.Files.SideEffects @@ -369,7 +369,7 @@ private function validateYubikeyOtp(string $otp): bool $gotResponse = false; - $http = HttpFactory::getHttp(); + $http = (new HttpFactory())->getHttp(); $token = $this->getApplication()->getFormToken(); $nonce = md5($token . uniqid(random_int(0, mt_getrandmax()))); $response = null; diff --git a/plugins/system/stats/src/Extension/Stats.php b/plugins/system/stats/src/Extension/Stats.php index 7a74db4354742..70859bc57b4a3 100644 --- a/plugins/system/stats/src/Extension/Stats.php +++ b/plugins/system/stats/src/Extension/Stats.php @@ -15,13 +15,13 @@ use Joomla\CMS\Event\Application\AfterInitialiseEvent; use Joomla\CMS\Event\Plugin\AjaxEvent; use Joomla\CMS\Event\Plugin\System\Stats\GetStatsDataEvent; -use Joomla\CMS\Http\HttpFactory; use Joomla\CMS\Layout\FileLayout; use Joomla\CMS\Log\Log; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\User\UserHelper; use Joomla\Database\DatabaseAwareTrait; use Joomla\Event\SubscriberInterface; +use Joomla\Http\HttpFactory; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -530,7 +530,7 @@ private function sendStats() try { // Don't let the request take longer than 2 seconds to avoid page timeout issues - $response = HttpFactory::getHttp()->post($this->serverUrl, $this->getStatsData(), [], 2); + $response = (new HttpFactory())->getHttp()->post($this->serverUrl, $this->getStatsData(), [], 2); if (!$response) { $error = 'Could not send site statistics to remote server: No response'; diff --git a/tests/Unit/Plugin/Authentication/Ldap/LdapPluginTest.php b/tests/Unit/Plugin/Authentication/Ldap/LdapPluginTest.php index 14cc1a844a86c..0f0911e0b47ae 100644 --- a/tests/Unit/Plugin/Authentication/Ldap/LdapPluginTest.php +++ b/tests/Unit/Plugin/Authentication/Ldap/LdapPluginTest.php @@ -356,7 +356,7 @@ public function __construct(bool $failBind, bool $failQuery, bool $hasEntry) $this->hasEntry = $hasEntry; } - public function bind(?string $dn = null, ?string $password = null) + public function bind(?string $dn = null, ?string $password = null): void { if ($this->failBind) { throw new LdapException(); From 47e31c5c5e1e81b3df5e4b5a5a4b3eeb98f6f755 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Wed, 13 Aug 2025 20:33:59 +0200 Subject: [PATCH 171/279] [6.0] Updating TinyMCE to 8.0.1 (#45844) * Updating TinyMCE to 8.0.1 * Adding language strings * Switching to official translation files * Minify translation files --- .../language/en-GB/plg_editors_tinymce.ini | 3 + .../init/exemptions/tinymce.mjs | 8 + build/build-modules-js/init/minify-vendor.mjs | 1 + .../vendor/tinymce/langs/af.es5.js | 230 --------- .../vendor/tinymce/langs/ar.es5.js | 231 --------- .../vendor/tinymce/langs/be.es5.js | 197 -------- .../vendor/tinymce/langs/bg.es5.js | 179 ------- .../vendor/tinymce/langs/bs.es5.js | 231 --------- .../vendor/tinymce/langs/ca.es5.js | 219 --------- .../vendor/tinymce/langs/cs.es5.js | 462 ------------------ .../vendor/tinymce/langs/cy.es5.js | 461 ----------------- .../vendor/tinymce/langs/da.es5.js | 462 ------------------ .../vendor/tinymce/langs/de.es5.js | 462 ------------------ .../vendor/tinymce/langs/el.es5.js | 179 ------- .../vendor/tinymce/langs/es.es5.js | 462 ------------------ .../vendor/tinymce/langs/et.es5.js | 179 ------- .../vendor/tinymce/langs/eu.es5.js | 219 --------- .../vendor/tinymce/langs/fa.es5.js | 180 ------- .../vendor/tinymce/langs/fi.es5.js | 197 -------- .../vendor/tinymce/langs/fo.es5.js | 179 ------- .../vendor/tinymce/langs/fr.es5.js | 462 ------------------ .../vendor/tinymce/langs/ga.es5.js | 230 --------- .../vendor/tinymce/langs/gl.es5.js | 179 ------- .../vendor/tinymce/langs/he.es5.js | 180 ------- .../vendor/tinymce/langs/hr.es5.js | 230 --------- .../vendor/tinymce/langs/hu.es5.js | 462 ------------------ .../vendor/tinymce/langs/id.es5.js | 219 --------- .../vendor/tinymce/langs/it.es5.js | 232 --------- .../vendor/tinymce/langs/ja.es5.js | 230 --------- .../vendor/tinymce/langs/ka.es5.js | 230 --------- .../vendor/tinymce/langs/kk.es5.js | 230 --------- .../vendor/tinymce/langs/km.es5.js | 219 --------- .../vendor/tinymce/langs/ko.es5.js | 179 ------- .../vendor/tinymce/langs/lb.es5.js | 179 ------- .../vendor/tinymce/langs/lt.es5.js | 230 --------- .../vendor/tinymce/langs/lv.es5.js | 197 -------- .../vendor/tinymce/langs/mk.es5.js | 233 --------- .../vendor/tinymce/langs/ms.es5.js | 176 ------- .../vendor/tinymce/langs/nb.es5.js | 462 ------------------ .../vendor/tinymce/langs/nl.es5.js | 230 --------- .../vendor/tinymce/langs/pl.es5.js | 462 ------------------ .../vendor/tinymce/langs/pt-BR.es5.js | 230 --------- .../vendor/tinymce/langs/pt-PT.es5.js | 230 --------- .../vendor/tinymce/langs/readme.md | 3 - .../vendor/tinymce/langs/ro.es5.js | 179 ------- .../vendor/tinymce/langs/ru.es5.js | 230 --------- .../vendor/tinymce/langs/si-LK.es5.js | 179 ------- .../vendor/tinymce/langs/sk.es5.js | 230 --------- .../vendor/tinymce/langs/sl.es5.js | 445 ----------------- .../vendor/tinymce/langs/sr.es5.js | 179 ------- .../vendor/tinymce/langs/sv.es5.js | 230 --------- .../vendor/tinymce/langs/sw.es5.js | 230 --------- .../vendor/tinymce/langs/sy.es5.js | 179 ------- .../vendor/tinymce/langs/ta.es5.js | 462 ------------------ .../vendor/tinymce/langs/th.es5.js | 230 --------- .../vendor/tinymce/langs/tr.es5.js | 179 ------- .../vendor/tinymce/langs/ug.es5.js | 179 ------- .../vendor/tinymce/langs/uk.es5.js | 230 --------- .../vendor/tinymce/langs/vi.es5.js | 179 ------- .../vendor/tinymce/langs/zh-CN.es5.js | 230 --------- .../vendor/tinymce/langs/zh-TW.es5.js | 179 ------- package-lock.json | 17 +- package.json | 3 +- plugins/editors/tinymce/forms/setoptions.xml | 18 + .../tinymce/src/PluginTraits/DisplayTrait.php | 26 +- plugins/editors/tinymce/tinymce.xml | 2 +- 66 files changed, 66 insertions(+), 14604 deletions(-) delete mode 100644 build/media_source/vendor/tinymce/langs/af.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ar.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/be.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/bg.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/bs.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ca.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/cs.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/cy.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/da.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/de.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/el.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/es.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/et.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/eu.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/fa.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/fi.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/fo.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/fr.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ga.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/gl.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/he.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/hr.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/hu.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/id.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/it.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ja.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ka.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/kk.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/km.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ko.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/lb.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/lt.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/lv.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/mk.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ms.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/nb.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/nl.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/pl.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/pt-BR.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/pt-PT.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/readme.md delete mode 100644 build/media_source/vendor/tinymce/langs/ro.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ru.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/si-LK.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sk.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sl.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sr.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sv.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sw.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/sy.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ta.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/th.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/tr.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/ug.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/uk.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/vi.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/zh-CN.es5.js delete mode 100644 build/media_source/vendor/tinymce/langs/zh-TW.es5.js diff --git a/administrator/language/en-GB/plg_editors_tinymce.ini b/administrator/language/en-GB/plg_editors_tinymce.ini index 5c61852ea9349..6520f3e02b61a 100644 --- a/administrator/language/en-GB/plg_editors_tinymce.ini +++ b/administrator/language/en-GB/plg_editors_tinymce.ini @@ -63,6 +63,9 @@ PLG_TINY_FIELD_PROHIBITED_LABEL="Prohibited Elements" PLG_TINY_FIELD_RESIZE_HORIZONTAL_LABEL="Horizontal Resizing" PLG_TINY_FIELD_RESIZING_LABEL="Resizing" PLG_TINY_FIELD_SANDBOX_IFRAMES_DESC="This is a security feature that restricts what the iframe can do by setting a sandbox attribute for each iframe. It is recommended to enable this feature for security reasons. Only disable if the iframe is not loading and you're sure that the iframed content is safe." +PLG_TINY_FIELD_SANDBOX_IFRAMES_EXCLUSIONS_LIST_DESC="Additional domain names can be added to be excluded from iframe sandboxing. The current domain and this list of common domains are excluded by default. 'youtube.com', 'youtu.be', 'vimeo.com', 'player.vimeo.com', 'dailymotion.com', 'embed.music.apple.com', 'open.spotify.com', 'giphy.com', 'dai.ly', 'codepen.io'." +PLG_TINY_FIELD_SANDBOX_IFRAMES_EXCLUSIONS_LIST_LABEL="Sandbox Iframe Exclusions List" +PLG_TINY_FIELD_SANDBOX_IFRAMES_EXCLUSION_DOMAIN_LABEL="Domain Name" PLG_TINY_FIELD_SANDBOX_IFRAMES_LABEL="Sandbox Iframes" PLG_TINY_FIELD_SETACCESS_LABEL="Assign this Set to" PLG_TINY_FIELD_SKIN_ADMIN_DARK_LABEL="Administrator Skin (Dark Mode)" diff --git a/build/build-modules-js/init/exemptions/tinymce.mjs b/build/build-modules-js/init/exemptions/tinymce.mjs index c4b9fb7005b26..611580c372ba7 100644 --- a/build/build-modules-js/init/exemptions/tinymce.mjs +++ b/build/build-modules-js/init/exemptions/tinymce.mjs @@ -58,6 +58,14 @@ export const tinyMCE = async (packageName, version) => { await copyArrayFiles('', ['tinymce.js', 'tinymce.min.js', 'changelog.txt', 'license.txt'], 'tinymce', ''); + // Copy translation files + const promises = []; + const majorVersion = version.split('.')[0]; + if (existsSync(join(RootPath, `node_modules/tinymce-i18n/langs${majorVersion}`))) { + promises.push(copy(join(RootPath, `node_modules/tinymce-i18n/langs${majorVersion}`), join(RootPath, `media/vendor/${packageName.replace(/.+\//, '')}/langs`), { preserveTimestamps: true })); + } + await Promise.all(promises); + // Update the XML file for tinyMCE let tinyXml = await readFile(`${RootPath}/plugins/editors/tinymce/tinymce.xml`, { encoding: 'utf8' }); tinyXml = tinyXml.replace(xmlVersionStr, `$1${version}$3`); diff --git a/build/build-modules-js/init/minify-vendor.mjs b/build/build-modules-js/init/minify-vendor.mjs index 78c45c84800bc..848887b2107d0 100644 --- a/build/build-modules-js/init/minify-vendor.mjs +++ b/build/build-modules-js/init/minify-vendor.mjs @@ -13,6 +13,7 @@ const folders = [ 'media/vendor/diff/js', 'media/vendor/es-module-shims/js', 'media/vendor/qrcode/js', + 'media/vendor/tinymce/langs', 'media/vendor/webcomponentsjs/js', ]; diff --git a/build/media_source/vendor/tinymce/langs/af.es5.js b/build/media_source/vendor/tinymce/langs/af.es5.js deleted file mode 100644 index 8e758c94ab8fa..0000000000000 --- a/build/media_source/vendor/tinymce/langs/af.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('af',{ -"Cut": "Knip", -"Heading 5": "Hooflyn 5", -"Header 2": "Hooflyn 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Jou webblaaier ondersteun nie toegang tot die knipbord nie. Gebruik asb. Ctrl+X\/C\/V.", -"Heading 4": "Hooflyn 4", -"Div": "Div", -"Heading 2": "Hooflyn 2", -"Paste": "Plak", -"Close": "Sluit", -"Font Family": "Font Familie", -"Pre": "Pre", -"Align right": "Regs-gerig", -"New document": "Nuwe dokument", -"Blockquote": "Aanhaaling", -"Numbered list": "Genommerde lys", -"Heading 1": "Hooflyn 1", -"Headings": "Koppe", -"Increase indent": "Inkeping vergroot", -"Formats": "Formate", -"Headers": "Hooflyn-tekste", -"Select all": "Alles selekteer", -"Header 3": "Hooflyn 3", -"Blocks": "Blok", -"Undo": "Ongedaan maak", -"Strikethrough": "Deurhaal", -"Bullet list": "Opsommingsteken-lys", -"Header 1": "Hooflyn 1", -"Superscript": "Superskrif", -"Clear formatting": "Herstel Formateering", -"Font Sizes": "Tekengrootte", -"Subscript": "Subskrif", -"Header 6": "Hooflyn 6", -"Redo": "Herdoen", -"Paragraph": "Paragraaf", -"Ok": "OK", -"Bold": "Vetdruk", -"Code": "Kode", -"Italic": "Kursief", -"Align center": "Sentreer", -"Header 5": "Hooflyn 5", -"Heading 6": "Hooflyn 6", -"Heading 3": "Hooflyn 3", -"Decrease indent": "Inkeping verklein", -"Header 4": "Hooflyn 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Die plak funksie is nou in plat-teks modus. Teks word ingevoeg sonder enige formateering, todat jy hierdie opsie wissel.", -"Underline": "Onderlyn", -"Cancel": "Kanselleer", -"Justify": "Gerigstelling", -"Inline": "Inlyn", -"Copy": "Kopieer", -"Align left": "Linksgerig", -"Visual aids": "Hulpmiddels", -"Lower Greek": "Griekse letters", -"Square": "Vierkantjie", -"Default": "Verstek", -"Lower Alpha": "Klein letters", -"Circle": "Sirkeltjie", -"Disc": "Balletjie", -"Upper Alpha": "Hoofletters", -"Upper Roman": "Romeinse syfers groot", -"Lower Roman": "Romeinse syfers klein", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id moet met 'n letter begin en kan slegs deur letters, koppeltekens, syfers, punte en onderstreep-karakters gevolg word", -"Name": "Naam", -"Anchor": "Anker", -"Id": "Id", -"You have unsaved changes are you sure you want to navigate away?": "Jy het ongestoorde wysigings op hierdier bladsy - is jy seker dat jy die bladsy wil verlaat?", -"Restore last draft": "Herstel die laatste konsep", -"Special character": "Spesiaale karakter", -"Source code": "Bronkode", -"Language": "Taal", -"Insert\/Edit code sample": "Voeg\/Redigeer voorbeeld-kode", -"B": "Blou", -"R": "Rooi", -"G": "Groen", -"Color": "Kleur", -"Right to left": "Regs na links", -"Left to right": "Links na regs", -"Emoticons": "Emotikons", -"Robots": "Robotte", -"Document properties": "Dokument eienskappe", -"Title": "Titel", -"Keywords": "Sleutelwoorde", -"Encoding": "Kodering", -"Description": "Beskrywing", -"Author": "Outeur", -"Fullscreen": "Voll-skerm", -"Horizontal line": "Horisontale lyn", -"Horizontal space": "Horisontale ruimte", -"Insert\/edit image": "Afbeelding invoeg\/bewerk", -"General": "Algemeen", -"Advanced": "Gevorderd", -"Source": "Bron", -"Border": "Rand", -"Constrain proportions": "Behou verhoudings", -"Vertical space": "Vertikale ruimte", -"Image description": "Afbeelding bemskrywing", -"Style": "Styl", -"Dimensions": "Afmetings", -"Insert image": "Afbeelding invoeg", -"Image": "Afbeelding", -"Zoom in": "Inzoem", -"Contrast": "Kontras", -"Back": "Terug", -"Gamma": "Gamma", -"Flip horizontally": "Horisontaal weerspie\u00ebl", -"Resize": "Grootte wysig", -"Sharpen": "Verskerp", -"Zoom out": "Uitzoem", -"Image options": "Afbeelding opsies", -"Apply": "Toepas", -"Brightness": "Helderheid", -"Rotate clockwise": "Regsom draai", -"Rotate counterclockwise": "Linksom draai", -"Edit image": "Bewerk afbeelding", -"Color levels": "Kleurvlakke", -"Crop": "Afknip", -"Orientation": "Orienteering", -"Flip vertically": "Vertikaal weerspie\u00ebl", -"Invert": "Omkeer", -"Date\/time": "Datum\/tyd", -"Insert date\/time": "Voeg datum\/tyd in", -"Remove link": "Skakel verwyder", -"Url": "URL", -"Text to display": "Skakelteks", -"Anchors": "Anker", -"Insert link": "Skakel invoeg", -"Link":"Skakel", -"New window": "Nuwe venster", -"None": "Geen", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Die URL verwys na 'n eksterne adres. Wil jy die \"http:\/\/\" voorvoegsel byvoeg?", -"Paste or type a link": "Plak of tik 'n skalel in", -"Target": "Teiken", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Die URL lyk soos 'n eposadres. Wil jy die \"mailto:\" voorvoegsel byvoeg?", -"Insert\/edit link": "Skakel invoeg\/bewerk", -"Insert\/edit video": "Video invoeg\/bewerk", -"Poster": "Plakaat", -"Insert\/edit media": "Voeg in\/Redigeer media", -"Media": "Media", -"Alternative source": "Alternatiewe bron", -"Paste your embed code below:": "Plak jou ingesluite kode hieronder in:", -"Insert video": "Video invoeg", -"Embed": "Insluit", -"Nonbreaking space": "Vaste spasie invoeg", -"Page break": "Nuwe Bladsy", -"Paste as text": "As teks plak", -"Preview": "Voorbeeld", -"Print": "Druk", -"Save": "Stoor", -"Could not find the specified string.": "Kon nie die gesoekde string vind nie", -"Replace": "Vervang", -"Next": "Volgende", -"Whole words": "Sleg hele woorde", -"Find and replace": "Soek-en-Vervang", -"Replace with": "Vervang met", -"Find": "Soek", -"Replace all": "Alles vervang", -"Match case": "Kassensitief", -"Prev": "Vorige", -"Spellcheck": "Speltoets", -"Finish": "Einde", -"Ignore all": "Alles ignoreer", -"Ignore": "Ignoreer", -"Add to Dictionary": "Aan woordelys byvoeg", -"Insert row before": "Voeg nuwe ry boaan", -"Rows": "Rye", -"Height": "Hoogte", -"Paste row after": "Plak ry onder", -"Alignment": "Gerigdheid", -"Border color": "Randkleur", -"Column group": "Kolomgroep", -"Row": "Ry", -"Insert column before": "Voeg kolom vooraan", -"Split cell": "Split sel", -"Cell padding": "Ruimte binnein sel", -"Cell spacing": "Ruimte rondom sel", -"Row type": "Ry tipe", -"Insert table": "Tabel invoeg", -"Body": "Tabel Inhoud", -"Caption": "Onderskrif", -"Footer": "Voetskrif", -"Delete row": "Verwyder ry", -"Paste row before": "Plak ry vooraan", -"Scope": "Bereik", -"Delete table": "Verwyder tabel", -"H Align": "Horisontaal-gerigdheid", -"Top": "Bo", -"Header cell": "Kop sel", -"Column": "Kolom", -"Row group": "Rygroep", -"Cell": "Sel", -"Middle": "Sentreer", -"Cell type": "Seltipe", -"Copy row": "Kopieer ry", -"Row properties": "Ry eienskappe", -"Table properties": "Tabel eienskappe", -"Bottom": "Onder", -"V Align": "Vertikaal-rerigdheid", -"Header": "Kopteks", -"Right": "Regs", -"Insert column after": "Voeg kolom na", -"Cols": "Kolomme", -"Insert row after": "Voeg ry onderaan", -"Width": "Breedte", -"Cell properties": "Sel eienskappe", -"Left": "Links", -"Cut row": "Knip ry", -"Delete column": "Verwyder kolom", -"Center": "Middel", -"Merge cells": "Selle saamvoeg", -"Insert template": "Sjabloon invoeg", -"Templates": "Sjablone", -"Background color": "Agtergrondkleur", -"Custom...": "Pasgemaakte...", -"Custom color": "Pasgemaakte kleur", -"No color": "Geen kleur", -"Text color": "Tekskleur", -"Table of Contents":"Inhouds-opgawe", -"Show blocks": "Blokke vertoon", -"Show invisible characters": "Onsigbare karakters vertoon", -"Words: {0}": "Woorde: {0}", -"Insert": "Invoeg", -"File": "L\u00eaer", -"Edit": "Bewerk", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ryk Teks Area. Druk ALT-F9 vir menu, ALT-F10 vir die nutsbalk, ALT-0 vir hulp.", -"Tools": "Gereedskap", -"View": "Beeld", -"Table": "Tabel", -"Format": "Formateering" -}); diff --git a/build/media_source/vendor/tinymce/langs/ar.es5.js b/build/media_source/vendor/tinymce/langs/ar.es5.js deleted file mode 100644 index c632810bb3795..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ar.es5.js +++ /dev/null @@ -1,231 +0,0 @@ -tinymce.addI18n('ar',{ -"Cut": "\u0642\u0635", -"Heading 5": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 5", -"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.", -"Heading 4": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 4", -"Div": "Div", -"Heading 2": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 2", -"Paste": "\u0644\u0635\u0642", -"Close": "\u0625\u063a\u0644\u0627\u0642", -"Font Family": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0627\u0644\u062e\u0637", -"Pre": "\u0633\u0627\u0628\u0642", -"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", -"Heading 1": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 1", -"Headings": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", -"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": "\u0631\u0645\u0632", -"Italic": "\u0645\u0627\u0626\u0644", -"Align center": "\u062a\u0648\u0633\u064a\u0637", -"Header 5": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 5", -"Heading 6": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 6", -"Heading 3": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 3", -"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.": "\u064a\u062a\u0645 \u0627\u0644\u0644\u0635\u0642 \u062d\u0627\u0644\u064a\u0627\u064b \u0643\u0646\u0635 \u0639\u0627\u062f\u064a. \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0633\u064a\u0628\u0642\u0649 \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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0628\u062f\u0623 \u0628\u062d\u0631\u0641\u060c \u064a\u062a\u0628\u0639 \u0641\u0642\u0637 \u0628\u062d\u0631\u0648\u0641 \u0648\u0623\u0631\u0642\u0627\u0645\u060c \u0634\u0631\u0637\u0627\u062a\u060c \u0623\u0648 \u0627\u0644\u0646\u0642\u0627\u0637\u060c \u0627\u0644\u0646\u0642\u0637\u062a\u064a\u0646 \u0623\u0648 \u0627\u0644\u0634\u0631\u0637\u0627\u062a \u0627\u0644\u0633\u0641\u0644\u064a\u0629.", -"Name": "\u0627\u0644\u0627\u0633\u0645", -"Anchor": "\u0645\u0631\u0633\u0627\u0629", -"Id": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641", -"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", -"Language": "\u0627\u0644\u0644\u063a\u0629", -"Insert\/Edit code sample": "\u0625\u062f\u0631\u0627\u062c/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0643\u0648\u062f", -"B": "B", -"R": "R", -"G": "G", -"Color": "\u0627\u0644\u0644\u0648\u0646", -"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", -"Image": "\u0627\u0644\u0635\u0648\u0631\u0629", -"Zoom in": "\u062a\u0643\u0628\u064a\u0631", -"Contrast": "\u0627\u0644\u062a\u0628\u0627\u064a\u0646", -"Back": "\u0644\u0644\u062e\u0644\u0641", -"Gamma": "\u063a\u0627\u0645\u0627", -"Flip horizontally": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0623\u0641\u0642\u064a", -"Resize": "\u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645", -"Sharpen": "\u062d\u0627\u062f\u0629", -"Zoom out": "\u062a\u0635\u063a\u064a\u0631", -"Image options": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629", -"Apply": "\u062a\u0637\u0628\u064a\u0642", -"Brightness": "\u0627\u0644\u0625\u0636\u0627\u0621\u0629", -"Rotate clockwise": "\u062a\u062f\u0648\u064a\u0631 \u0641\u064a \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", -"Rotate counterclockwise": "\u062a\u062f\u0648\u064a\u0631 \u0639\u0643\u0633 \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", -"Edit image": "\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629", -"Color levels": "\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0644\u0648\u0646", -"Crop": "\u0642\u0635", -"Orientation": "\u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629", -"Flip vertically": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0639\u0627\u0645\u0648\u062f\u064a", -"Invert": "\u0639\u0643\u0633", -"Date\/time": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e/\u0627\u0644\u0648\u0642\u062a", -"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": "\u0627\u0644\u0645\u0631\u0633\u0627\u0629", -"Insert link": "\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637", -"Link": "\u0627\u0644\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", -"Paste or type a link": "\u0623\u062f\u062e\u0644 \u0623\u0648 \u0627\u0643\u062a\u0628 \u0627\u0644\u0631\u0627\u0628\u0637", -"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", -"Media": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", -"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", -"Poster": "\u0645\u0644\u0635\u0642", -"Insert\/edit media": "\u0625\u062f\u0631\u0627\u062c/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", -"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", -"Add to Dictionary": "\u0627\u0636\u0641 \u0627\u0644\u064a \u0627\u0644\u0642\u0627\u0645\u0648\u0633", -"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", -"Border color": "\u0644\u0648\u0646 \u0627\u0644\u0625\u0637\u0627\u0631", -"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", -"H Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0623\u0641\u0642\u064a\u0629", -"Top": "\u0623\u0639\u0644\u064a", -"Header cell": "\u0631\u0623\u0633 \u0627\u0644\u062e\u0644\u064a\u0629", -"Column": "\u0639\u0645\u0648\u062f", -"Row group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0635\u0641", -"Cell": "\u062e\u0644\u064a\u0629", -"Middle": "\u0627\u0644\u0648\u0633\u0637", -"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", -"Bottom": "\u0627\u0644\u0623\u0633\u0641\u0644", -"V Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0631\u0623\u0633\u064a\u0629", -"Header": "\u0627\u0644\u0631\u0623\u0633", -"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", -"Custom...": "\u062a\u062e\u0635\u064a\u0635 ...", -"Custom color": "\u0644\u0648\u0646 \u0645\u062e\u0635\u0635", -"No color": "\u0628\u062f\u0648\u0646 \u0644\u0648\u0646", -"Text color": "\u0644\u0648\u0646 \u0627\u0644\u0646\u0635", -"Table of Contents": "\u062c\u062f\u0648\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a", -"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/build/media_source/vendor/tinymce/langs/be.es5.js b/build/media_source/vendor/tinymce/langs/be.es5.js deleted file mode 100644 index ec4e13f16b344..0000000000000 --- a/build/media_source/vendor/tinymce/langs/be.es5.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/build/media_source/vendor/tinymce/langs/bg.es5.js b/build/media_source/vendor/tinymce/langs/bg.es5.js deleted file mode 100644 index 4fa87455757e9..0000000000000 --- a/build/media_source/vendor/tinymce/langs/bg.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('bg',{ -"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435", -"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).", -"Div": "\u0411\u043b\u043e\u043a", -"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", -"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", -"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", -"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?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"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?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", -"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", -"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", -"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", -"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", -"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430", -"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)", -"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", -"Row group": "Row group", -"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", -"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/build/media_source/vendor/tinymce/langs/bs.es5.js b/build/media_source/vendor/tinymce/langs/bs.es5.js deleted file mode 100644 index eaf0b2c9ecfec..0000000000000 --- a/build/media_source/vendor/tinymce/langs/bs.es5.js +++ /dev/null @@ -1,231 +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 preglednik ne podr\u017eava direktan pristup me\u0111uspremniku (clipboard). Molimo Vas da umjesto toga koristite kratice na tastaturi Ctrl+X\/C\/V.", -"Heading 4": "Naslov 4", -"Div": "Div", -"Heading 2": "Naslov 2", -"Paste": "Zalijepi", -"Close": "Zatvori", -"Font Family": "Vrsta pisma", -"Pre": "Pre", -"Align right": "Poravnaj desno", -"New document": "Novi dokument", -"Blockquote": "Blockquote", -"Numbered list": "Numerisana lista", -"Heading 1": "Naslov 1", -"Headings": "Naslovi", -"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": "Eksponent", -"Clear formatting": "Ukloni oblikovanje", -"Font Sizes": "Veli\u010dine fonta", -"Subscript": "Indeks", -"Header 6": "Zaglavlje 6", -"Redo": "Vrati", -"Paragraph": "Paragraf", -"Ok": "U redu", -"Bold": "Podebljano", -"Code": "Kod", -"Italic": "Kurziv", -"Align center": "Poravnaj po sredini", -"Header 5": "Zaglavlje 5", -"Heading 6": "Naslov 6", -"Heading 3": "Naslov 3", -"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": "Linija ispod", -"Cancel": "Odustani", -"Justify": "Obostrano poravnanje", -"Inline": "Unutra\u0161nje", -"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": "Disk", -"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 izmjene koje nisu snimljene, jeste li sigurni da \u017eelite iza\u0107i?", -"Restore last draft": "Vrati posljednju skicu", -"Special character": "Poseban znak", -"Source code": "Izvorni kod", -"B": "B", -"R": "R", -"G": "G", -"Color": "Boja", -"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": "Ubaci\/izmijeni sliku", -"Insert\/Edit code sample": "Ubaci\/izmijeni uzorak koda", -"General": "Op\u0107enito", -"Advanced": "Napredno", -"Source": "Izvor", -"Border": "Ivica", -"Constrain proportions": "Zadr\u017ei proporcije", -"Vertical space": "Vertikalni razmak", -"Image description": "Opis slike", -"Style": "Stil", -"Dimensions": "Dimenzije", -"Insert image": "Ubaci sliku", -"Zoom in": "Pove\u0107aj", -"Contrast": "Kontrast", -"Back": "Nazad", -"Gamma": "Gamma", -"Flip horizontally": "Obrni horizontalno", -"Resize": "Promjeni veli\u010dinu", -"Sharpen": "Izo\u0161travanje", -"Zoom out": "Smanji", -"Insert image": "Ubaci sliku", -"Apply": "Primijeni", -"Brightness": "Svjetlina", -"Rotate clockwise": "Rotiraj desno", -"Rotate counterclockwise": "Rotiraj lijevo", -"Edit image": "Uredi sliku", -"Color levels": "Nivoi boje", -"Crop": "Obre\u017ei", -"Orientation": "Orijentacija", -"Flip vertically": "Obrni vertikalno", -"Invert": "Invertuj", -"Insert date\/time": "Ubaci datum\/vrijeme", -"Remove link": "Ukloni poveznicu", -"Url": "Url", -"Text to display": "Tekst za prikaz", -"Anchors": "Kra\u0107e poveznice", -"Insert link": "Ubaci 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?": "URL koji ste unijeli izgleda da je eksterni link. \u017delite li dodati potrebni http:\/\/ prefiks?", -"Target": "Meta", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL koji ste unijeli izgleda da je adresa e-po\u0161te. \u017delite li dodati potrebni mailto: prefiks?", -"Insert\/edit link": "Umetni\/izmijeni link", -"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": "Sljede\u0107i", -"Whole words": "Cijele rije\u010di", -"Find and replace": "Prona\u0111i i zamijeni", -"Replace with": "Zamijeni sa", -"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", -"Add to Dictionary": "Dodaj u rje\u010dnik", -"Insert row before": "Umetni redak prije", -"Rows": "Redovi", -"Height": "Visina", -"Paste row after": "Zalijepi redak nakon", -"Alignment": "Poravnanje", -"Border color": "Boja ivice", -"Column group": "Grupirane kolone", -"Row": "Redak", -"Insert column before": "Umetni kolonu 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": "Naslov", -"Footer": "Podno\u017eje", -"Delete row": "Izbri\u0161i redak", -"Paste row before": "Zalijepi redak prije", -"Scope": "Doseg", -"Delete table": "Izbri\u0161i tablicu", -"H Align": "H Poravnavanje", -"Top": "Vrh", -"Header cell": "Polje zaglavlja", -"Column": "Kolona", -"Row group": "Grupirani redovi", -"Cell": "Polje", -"Middle": "Sredina", -"Cell type": "Vrsta polja", -"Copy row": "Kopiraj redak", -"Row properties": "Svojstva redka", -"Table properties": "Svojstva tablice", -"Bottom": "Dno", -"V Align": "V Poravnavanje", -"Header": "Zaglavlje", -"Right": "Desno", -"Insert column after": "Umetni kolonu poslije", -"Cols": "Stupci", -"Insert row after": "Umetni redak poslije", -"Width": "\u0160irina", -"Cell properties": "Svojstva polja", -"Left": "Lijevo", -"Cut row": "Izre\u017ei redak", -"Delete column": "Izbri\u0161i kolonu", -"Center": "Sredina", -"Merge cells": "Spoji polja", -"Insert template": "Umetni predlo\u017eak", -"Templates": "Predlo\u0161ci", -"Background color": "Boja pozadine", -"Custom...": "Prilago\u0111eno...", -"Custom color": "Prilago\u0111ena boja", -"No color": "Bez boje", -"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": "Format", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id treba da po\u010dinje sa slovom, i pored slova mogu se koristiti samo brojevi, crtice, ta\u010dke, zarezi ili donje crte.", -"Insert/Edit code sample": "Ubaci/Izmijeni primjer koda", -"Language": "Jezik", -"Image": "Image", -"Date/time": "Datum/vrijeme", -"Link": "Link", -"Paste or type a link": "Zalijepi ili unesi link", -"Insert/Edit Media": "Ubaci/Izmijeni medij", -"Media": "Medij", -"Table of Contents": "Sadr\u017eaj" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/ca.es5.js b/build/media_source/vendor/tinymce/langs/ca.es5.js deleted file mode 100644 index 6491aa09210ea..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ca.es5.js +++ /dev/null @@ -1,219 +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", -"B": "B", -"R": "R", -"G": "G", -"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", -"Zoom in": "Ampliar", -"Contrast": "Contrast", -"Back": "Tornar", -"Gamma": "Gamma", -"Flip horizontally": "Capgirar horitzontalment", -"Resize": "Canviar mida", -"Sharpen": "Remarcar vores", -"Zoom out": "Empetitir", -"Image options": "Opcions d'imatge", -"Apply": "Aplicar", -"Brightness": "Brillantor", -"Rotate clockwise": "Girar a la dreta", -"Rotate counterclockwise": "Girar a l'esquerra", -"Edit image": "Editar imatge", -"Color levels": "Nivells de color", -"Crop": "Escap\u00e7ar", -"Orientation": "Orientaci\u00f3", -"Flip vertically": "Capgirar verticalment", -"Invert": "Invertir", -"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/build/media_source/vendor/tinymce/langs/cs.es5.js b/build/media_source/vendor/tinymce/langs/cs.es5.js deleted file mode 100644 index 724f051aa9c5f..0000000000000 --- a/build/media_source/vendor/tinymce/langs/cs.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('cs',{ -"Redo": "Znovu", -"Undo": "Zp\u011bt", -"Cut": "Vyjmout", -"Copy": "Kop\u00edrovat", -"Paste": "Vlo\u017eit", -"Select all": "Vybrat v\u0161e", -"New document": "Nov\u00fd dokument", -"Ok": "Ok", -"Cancel": "Zru\u0161it", -"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky", -"Bold": "Tu\u010dn\u011b", -"Italic": "Kurz\u00edva", -"Underline": "Podtr\u017een\u00e9", -"Strikethrough": "P\u0159e\u0161krtnut\u00e9", -"Superscript": "Horn\u00ed index", -"Subscript": "Doln\u00ed index", -"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed", -"Align left": "Vlevo", -"Align center": "Na st\u0159ed", -"Align right": "Vpravo", -"Justify": "Zarovnat do bloku", -"Bullet list": "Odr\u00e1\u017eky", -"Numbered list": "\u010c\u00edslov\u00e1n\u00ed", -"Decrease indent": "Zmen\u0161it odsazen\u00ed", -"Increase indent": "Zv\u011b\u0161it odsazen\u00ed", -"Close": "Zav\u0159\u00edt", -"Formats": "Form\u00e1ty", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.", -"Headers": "Nadpisy", -"Header 1": "Nadpis 1", -"Header 2": "Nadpis 2", -"Header 3": "Nadpis 3", -"Header 4": "Nadpis 4", -"Header 5": "Nadpis 5", -"Header 6": "Nadpis 6", -"Headings": "Nadpisy", -"Heading 1": "Nadpis 1", -"Heading 2": "Nadpis 2", -"Heading 3": "Nadpis 3", -"Heading 4": "Nadpis 4", -"Heading 5": "Nadpis 5", -"Heading 6": "Nadpis 6", -"Preformatted": "P\u0159edform\u00e1tovan\u00fd text", -"Div": "Div (blok)", -"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)", -"Code": "Code (k\u00f3d)", -"Paragraph": "Odstavec", -"Blockquote": "Citace", -"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)", -"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.", -"Fonts": "P\u00edsma", -"Font Sizes": "Velikost p\u00edsma", -"Class": "T\u0159\u00edda", -"Browse for an image": "Vybrat obr\u00e1zek", -"OR": "NEBO", -"Drop an image here": "P\u0159et\u00e1hn\u011bte obr\u00e1zek sem", -"Upload": "Nahr\u00e1t", -"Block": "Blok", -"Align": "Zarovnat", -"Default": "V\u00fdchoz\u00ed", -"Circle": "Kole\u010dko", -"Disc": "Punt\u00edk", -"Square": "\u010ctvere\u010dek", -"Lower Alpha": "Mal\u00e1 p\u00edsmena", -"Lower Greek": "\u0158eck\u00e1 p\u00edsmena", -"Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice", -"Upper Alpha": "Velk\u00e1 p\u00edsmena", -"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice", -"Anchor...": "Kotva", -"Name": "N\u00e1zev", -"Id": "ID", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID by m\u011blo za\u010d\u00ednat p\u00edsmenem, n\u00e1sledovan\u00fdm pouze p\u00edsmeny, \u010d\u00edsly, poml\u010dkami, te\u010dkami, \u010d\u00e1rkami a nebo podtr\u017e\u00edtky.", -"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?", -"Restore last draft": "Obnovit posledn\u00ed koncept.", -"Special character...": "Speci\u00e1ln\u00ed znak", -"Source code": "Zdrojov\u00fd k\u00f3d", -"Insert\/Edit code sample": "Vlo\u017eit\/Upravit uk\u00e1zku k\u00f3du", -"Language": "Jazyk", -"Code sample...": "Uk\u00e1zkov\u00fd k\u00f3d", -"Color Picker": "V\u00fdb\u011br barvy", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Zleva doprava", -"Right to left": "Zprava doleva", -"Emoticons": "Emotikony", -"Emoticons...": "Emotikony", -"Metadata and Document Properties": "Metadata a vlastnosti dokumentu", -"Title": "Titulek", -"Keywords": "Kl\u00ed\u010dov\u00e1 slova", -"Description": "Popis", -"Robots": "Roboti", -"Author": "Autor", -"Encoding": "K\u00f3dov\u00e1n\u00ed", -"Fullscreen": "Celk\u00e1 obrazovka", -"Action": "Akce", -"Shortcut": "Kl\u00e1vesov\u00e1 zkratka", -"Help": "N\u00e1pov\u011bda", -"Address": "Blok s po\u0161tovn\u00ed adresou", -"Focus to menubar": "P\u0159ej\u00edt do menu", -"Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f", -"Focus to element path": "Focus to element path", -"Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f", -"Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)", -"Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)", -"Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)", -"Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):", -"Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:", -"Learn more...": "Zjistit v\u00edce...", -"You are using {0}": "Pou\u017e\u00edv\u00e1te {0}", -"Plugins": "Pluginy", -"Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky", -"Horizontal line": "Vodorovn\u00e1 linka", -"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek", -"Alternative description": "Alternativn\u00ed text", -"Accessibility": "Bez alternativn\u00edho textu", -"Image is decorative": "(dekorativn\u00ed obr\u00e1zek bez alternativn\u00edho textu)", -"Source": "URL", -"Dimensions": "Rozm\u011bry", -"Constrain proportions": "Zachovat proporce", -"General": "Obecn\u00e9", -"Advanced": "Pokro\u010dil\u00e9", -"Style": "Styl", -"Vertical space": "Vertik\u00e1ln\u00ed mezera", -"Horizontal space": "Horizont\u00e1ln\u00ed mezera", -"Border": "R\u00e1me\u010dek", -"Insert image": "Vlo\u017eit obr\u00e1zek", -"Image...": "Obr\u00e1zek...", -"Image list": "Seznam obr\u00e1zk\u016f", -"Rotate counterclockwise": "Oto\u010dit doleva", -"Rotate clockwise": "Oto\u010dit doprava", -"Flip vertically": "P\u0159evr\u00e1tit svisle", -"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b", -"Edit image": "Upravit obr\u00e1zek", -"Image options": "Vlastnosti obr\u00e1zku", -"Zoom in": "P\u0159ibl\u00ed\u017eit", -"Zoom out": "Odd\u00e1lit", -"Crop": "O\u0159\u00edznout", -"Resize": "Zm\u011bnit velikost", -"Orientation": "Orientace", -"Brightness": "Jas", -"Sharpen": "Ostrost", -"Contrast": "Kontrast", -"Color levels": "\u00darovn\u011b barev", -"Gamma": "Gama", -"Invert": "Invertovat", -"Apply": "Pou\u017e\u00edt", -"Back": "Zp\u011bt", -"Insert date\/time": "Vlo\u017eit datum \/ \u010das", -"Date\/time": "Datum\/\u010das", -"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz", -"Text to display": "Text odkazu", -"Url": "URL", -"Open link in...": "C\u00edlov\u00e9 okno URL", -"Current window": "Otev\u0159\u00edt v aktu\u00e1ln\u00edm okn\u011b", -"None": "\u017d\u00e1dn\u00fd", -"New window": "Nov\u00e9 okno", -"Open link": "C\u00edlov\u00e9 okno URL", -"Remove link": "Odstranit odkaz", -"Anchors": "Kotvy", -"Link...": "Odkaz...", -"Paste or type a link": "Vlo\u017ete nebo napi\u0161te adresu odkazu", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix https:\/\/?", -"Link list": "Seznam odkaz\u016f", -"Insert video": "Vlo\u017eit video", -"Insert\/edit video": "Vlo\u017eit \/ upravit video", -"Insert\/edit media": "Vlo\u017eit\/upravit m\u00e9dia", -"Alternative source": "Alternativn\u00ed zdroj", -"Alternative source URL": "Alternativn\u00ed zdrojov\u00e1 URL", -"Media poster (Image URL)": "URL n\u00e1hledu", -"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed", -"Embed": "Vlo\u017een\u00fd", -"Media...": "M\u00e9dia", -"Nonbreaking space": "Pevn\u00e1 mezera", -"Page break": "Konec str\u00e1nky", -"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text", -"Preview": "N\u00e1hled", -"Print...": "Tisk", -"Save": "Ulo\u017eit", -"Find": "Naj\u00edt", -"Replace with": "Nahradit za", -"Replace": "Nahradit", -"Replace all": "Nahradit v\u0161e", -"Previous": "P\u0159edchoz\u00ed", -"Next": "Dal\u0161\u00ed", -"Find and Replace": "Naj\u00edt a nahradit", -"Find and replace...": "Naj\u00edt a nahradit", -"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.", -"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena", -"Find whole words only": "Pouze cel\u00e1 slova", -"Find in selection": "Ozna\u010den\u00fd text", -"Spellcheck": "Kontrola pravopisu", -"Spellcheck Language": "Jazyk kontroly pravopisu", -"No misspellings found.": "Nebyly nalezeny \u017e\u00e1dn\u00e9 p\u0159eklepy.", -"Ignore": "Ignorovat", -"Ignore all": "Ignorovat v\u0161e", -"Finish": "Dokon\u010dit", -"Add to Dictionary": "P\u0159idat do slovn\u00edku", -"Insert table": "Vlo\u017eit tabulku", -"Table properties": "Vlastnosti tabulky", -"Delete table": "Smazat tabulku", -"Cell": "Bu\u0148ka", -"Row": "\u0158\u00e1dek", -"Column": "Sloupec", -"Cell properties": "Vlastnosti bu\u0148ky", -"Merge cells": "Slou\u010dit bu\u0148ky", -"Split cell": "Rozd\u011blit bu\u0148ku", -"Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed", -"Insert row after": "Vlo\u017eit \u0159\u00e1dek za", -"Delete row": "Smazat \u0159\u00e1dek", -"Row properties": "Vlastnosti \u0159\u00e1dku", -"Cut row": "Vyjmout \u0159\u00e1dek", -"Copy row": "Kop\u00edrovat \u0159\u00e1dek", -"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad", -"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod", -"Insert column before": "Vlo\u017eit sloupec vlevo", -"Insert column after": "Vlo\u017eit sloupec vpravo", -"Delete column": "Smazat sloupec", -"Cols": "Sloupce", -"Rows": "\u0158\u00e1dky", -"Width": "\u0160\u00ed\u0159ka", -"Height": "V\u00fd\u0161ka", -"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk", -"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk", -"Caption": "Titulek", -"Show caption": "Popisek pod obr\u00e1zkem", -"Left": "Vlevo", -"Center": "Na st\u0159ed", -"Right": "Vpravo", -"Cell type": "Typ bu\u0148ky", -"Scope": "Rozsah", -"Alignment": "Zarovn\u00e1n\u00ed", -"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed", -"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed", -"Top": "Nahoru", -"Middle": "Na st\u0159ed", -"Bottom": "Dol\u016f", -"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka", -"Row group": "Skupina \u0159\u00e1dk\u016f", -"Column group": "Skupina sloupc\u016f", -"Row type": "Typ \u0159\u00e1dku", -"Header": "Hlavi\u010dka", -"Body": "T\u011blo", -"Footer": "Pati\u010dka", -"Border color": "Barva r\u00e1me\u010dku", -"Insert template...": "Vlo\u017eit \u0161ablonu...", -"Templates": "\u0160ablony", -"Template": "\u0160ablona", -"Text color": "Barva p\u00edsma", -"Background color": "Barva pozad\u00ed", -"Custom...": "Vlastn\u00ed", -"Custom color": "Vlastn\u00ed barva", -"No color": "Bez barvy", -"Remove color": "Odebrat barvu", -"Table of Contents": "Generovat obsah", -"Show blocks": "Uk\u00e1zat bloky", -"Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky", -"Word count": "Po\u010det slov", -"Count": "Po\u010det", -"Document": "Dokument", -"Selection": "V\u00fdb\u011br", -"Words": "Slova", -"Words: {0}": "Slova: {0}", -"{0} words": "{0} slov", -"File": "Soubor", -"Edit": "\u00dapravy", -"Insert": "Vlo\u017eit", -"View": "Zobrazit", -"Format": "Form\u00e1t", -"Table": "Tabulka", -"Tools": "N\u00e1stroje", -"Powered by {0}": "Powered by {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F9 pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu.", -"Image title": "Titulek obr\u00e1zku", -"Border width": "\u0160\u00ed\u0159ka ohrani\u010den\u00ed", -"Border style": "Styl ohrani\u010den\u00ed", -"Error": "Chyba", -"Warn": "Varov\u00e1n\u00ed", -"Valid": "Platn\u00fd", -"To open the popup, press Shift+Enter": "Vyskakovac\u00ed okno otev\u0159ete stisknut\u00edm Shift+Enter", -"Rich Text Area. Press ALT-0 for help.": "Oblast Rich Text, stiskn\u011bte ALT-0 pro n\u00e1pov\u011bdu.", -"System Font": "Syst\u00e9mov\u00e9 p\u00edsmo", -"Failed to upload image: {0}": "Nahr\u00e1n\u00ed obr\u00e1zku selhalo: {0}", -"Failed to load plugin: {0} from url {1}": "Na\u010dten\u00ed pluginu selhalo: {0} z URL {1}", -"Failed to load plugin url: {0}": "Na\u010dten\u00ed pluginu URL selhalo: {0}", -"Failed to initialize plugin: {0}": "Inicializace pluginu selhala:", -"example": "p\u0159\u00edklad", -"Search": "Hledat", -"All": "V\u0161e", -"Currency": "M\u011bna", -"Text": "Text", -"Quotations": "Citace", -"Mathematical": "Matematick\u00e9 symboly", -"Extended Latin": "Roz\u0161\u00ed\u0159en\u00e1 latinka", -"Symbols": "Symboly", -"Arrows": "\u0160ipky", -"User Defined": "Definovan\u00e9 u\u017eivatelem", -"dollar sign": "znak dolaru", -"currency sign": "znak m\u011bny", -"euro-currency sign": "znak euro", -"colon sign": "znak dvojte\u010dky", -"cruzeiro sign": "znak cruzeiro", -"french franc sign": "znak francouzsk\u00e9ho franku", -"lira sign": "znak liry", -"mill sign": "znak mill", -"naira sign": "znak nairy", -"peseta sign": "znak pesety", -"rupee sign": "znak rupie", -"won sign": "znak wonu", -"new sheqel sign": "znak nov\u00e9ho \u0161ekelu", -"dong sign": "znak dongu", -"kip sign": "znak kipu", -"tugrik sign": "znak tugriku", -"drachma sign": "znak drachmy", -"german penny symbol": "znak n\u011bmeck\u00e9ho feniku", -"peso sign": "znak pesa", -"guarani sign": "znak guaran\u00ed", -"austral sign": "znak austral", -"hryvnia sign": "znak h\u0159ivny", -"cedi sign": "znak cedi", -"livre tournois sign": "znak tournois libry", -"spesmilo sign": "znak spesmilo", -"tenge sign": "znak tenge", -"indian rupee sign": "znak indick\u00e9 rupie", -"turkish lira sign": "znak tureck\u00e9 liry", -"nordic mark sign": "znak norsk\u00e9 marky", -"manat sign": "znak manatu", -"ruble sign": "znak rublu", -"yen character": "znak jenu", -"yuan character": "znak juanu", -"yuan character, in hong kong and taiwan": "znak juanu v hongkongu a tchaj-wanu", -"yen\/yuan character variant one": "znak jenu\/juanu, varianta 1", -"Loading emoticons...": "Na\u010d\u00edt\u00e1n\u00ed emotikon\u016f...", -"Could not load emoticons": "Nelze na\u010d\u00edst emotikony", -"People": "Lid\u00e9", -"Animals and Nature": "Zv\u00ed\u0159ata a p\u0159\u00edroda", -"Food and Drink": "J\u00eddlo a pit\u00ed", -"Activity": "Aktivita", -"Travel and Places": "Cestov\u00e1n\u00ed a m\u00edsta", -"Objects": "Objekty", -"Flags": "Vlajky", -"Characters": "Znaky", -"Characters (no spaces)": "Znaky (bez mezer)", -"{0} characters": "{0} znak\u016f", -"Error: Form submit field collision.": "Chyba: Kolize odes\u00edlac\u00edho formul\u00e1\u0159ov\u00e9ho pole.", -"Error: No form element found.": "Chyba: Nebyl nalezen \u017e\u00e1dn\u00fd prvek formul\u00e1\u0159e.", -"Update": "Aktualizovat", -"Color swatch": "Vzorek barvy", -"Turquoise": "Tyrkysov\u00e1", -"Green": "Zelen\u00e1", -"Blue": "Modr\u00e1", -"Purple": "Fialov\u00e1", -"Navy Blue": "N\u00e1mo\u0159nick\u00e1 mod\u0159", -"Dark Turquoise": "Tmav\u011b tyrkysov\u00e1", -"Dark Green": "Tmav\u011b zelen\u00e1", -"Medium Blue": "St\u0159edn\u011b modr\u00e1", -"Medium Purple": "St\u0159edn\u011b fialov\u00e1", -"Midnight Blue": "P\u016flno\u010dn\u00ed modr\u00e1", -"Yellow": "\u017dlut\u00e1", -"Orange": "Oran\u017eov\u00e1", -"Red": "\u010cerven\u00e1", -"Light Gray": "Sv\u011btle \u0161ed\u00e1", -"Gray": "\u0160ed\u00e1", -"Dark Yellow": "Tmav\u011b \u017elut\u00e1", -"Dark Orange": "Tmav\u011b oran\u017eov\u00e1", -"Dark Red": "Tmav\u011b \u010derven\u00e1", -"Medium Gray": "St\u0159edn\u011b \u0161ed\u00e1", -"Dark Gray": "Tmav\u011b \u0161ed\u00e1", -"Light Green": "Sv\u011btle zelen\u00e1", -"Light Yellow": "Sv\u011btle \u017elut\u00e1", -"Light Red": "Sv\u011btle \u010derven\u00e1", -"Light Purple": "Sv\u011btle fialov\u00e1", -"Light Blue": "Sv\u011btle modr\u00e1", -"Dark Purple": "Tmav\u011b fialov\u00e1", -"Dark Blue": "Tmav\u011b modr\u00e1", -"Black": "\u010cern\u00e1", -"White": "B\u00edl\u00e1", -"Switch to or from fullscreen mode": "P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem cel\u00e9 obrazovky", -"Open help dialog": "Otev\u0159\u00edt okno n\u00e1pov\u011bdy", -"history": "historie", -"styles": "styly", -"formatting": "form\u00e1tov\u00e1n\u00ed", -"alignment": "zarovn\u00e1n\u00ed", -"indentation": "odsazen\u00ed", -"Font": "P\u00edsmo", -"Size": "Velikost", -"More...": "Dal\u0161\u00ed\u2026", -"Select...": "Vybrat", -"Preferences": "Preference", -"Yes": "Ano", -"No": "Ne", -"Keyboard Navigation": "Navigace pomoc\u00ed kl\u00e1vesnice", -"Version": "Verze", -"Code view": "Zobrazit k\u00f3d", -"Open popup menu for split buttons": "Otev\u0159ete vyskakovac\u00ed nab\u00eddku pro rozd\u011blen\u00e1 tla\u010d\u00edtka", -"List Properties": "Vlastnosti seznamu", -"List properties...": "Vlastnosti seznamu...", -"Start list at number": "Po\u010d\u00e1te\u010dn\u00ed \u010d\u00edslo seznamu", -"Line height": "V\u00fd\u0161ka \u0159\u00e1dku", -"comments": "koment\u00e1\u0159e", -"Format Painter": "Kop\u00edrovat form\u00e1t", -"Insert\/edit iframe": "Vlo\u017eit \/ upravit prvek iframe", -"Capitalization": "Velk\u00e1 p\u00edsmena", -"lowercase": "mal\u00e1 p\u00edsmena", -"UPPERCASE": "VELK\u00c1 P\u00cdSMENA", -"Title Case": "V\u0161echna Prvn\u00ed Velk\u00e1", -"permanent pen": "permanentn\u00ed pero", -"Permanent Pen Properties": "Vlastnosti permanentn\u00edho pera", -"Permanent pen properties...": "Vlastnosti permanentn\u00edho pera\u2026", -"case change": "Zm\u011bna velikosti p\u00edsma", -"page embed": "Vlo\u017een\u00ed str\u00e1nky", -"Advanced sort...": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed...", -"Advanced Sort": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed", -"Sort table by column ascending": "Se\u0159adit tabulku podle sloupce vzestupn\u011b", -"Sort table by column descending": "Se\u0159adit tabulku podle sloupce sestupn\u011b", -"Sort": "\u0158adit", -"Order": "\u0158azen\u00ed", -"Sort by": "\u0158adit dle", -"Ascending": "Vzestupn\u011b", -"Descending": "Sestupn\u011b", -"Column {0}": "Sloupec {0}", -"Row {0}": "\u0158\u00e1dek {0}", -"Spellcheck...": "Kontrola pravopisu", -"Misspelled word": "\u0160patn\u011b napsan\u00e9 slovo", -"Suggestions": "N\u00e1vrhy", -"Change": "Zm\u011bnit", -"Finding word suggestions": "Hled\u00e1n\u00ed n\u00e1vrh\u016f slov", -"Success": "\u00dasp\u011b\u0161n\u00e9", -"Repair": "Opraveno", -"Issue {0} of {1}": "Probl\u00e9m {0} z {1}", -"Images must be marked as decorative or have an alternative text description": "Obr\u00e1zky mus\u00ed b\u00fdt ozna\u010deny jako dekorativn\u00ed nebo mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis.", -"Images must have an alternative text description. Decorative images are not allowed.": "Obr\u00e1zky mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis. Dekorativn\u00ed obr\u00e1zky nejsou povoleny.", -"Or provide alternative text:": "Nebo zadejte alternativn\u00ed text:", -"Make image decorative:": "Nastavit obr\u00e1zek jako dekorativn\u00ed:", -"ID attribute must be unique": "ID atributu mus\u00ed b\u00fdt jedine\u010dn\u00e9", -"Make ID unique": "Nastavit ID jako jedine\u010dn\u00e9", -"Keep this ID and remove all others": "Ponechat toto ID a odstranit v\u0161echny ostatn\u00ed", -"Remove this ID": "Odebrat toto ID", -"Remove all IDs": "Odebrat v\u0161echna ID", -"Checklist": "Kontroln\u00ed seznam", -"Anchor": "Kotva", -"Special character": "Speci\u00e1ln\u00ed znak", -"Code sample": "Uk\u00e1zka k\u00f3du", -"Color": "Barva", -"Document properties": "Vlastnosti dokumentu", -"Image description": "Popis obr\u00e1zku", -"Image": "Obr\u00e1zek", -"Insert link": "Vlo\u017eit odkaz", -"Target": "C\u00edl", -"Link": "Odkaz", -"Poster": "Poster", -"Media": "M\u00e9dia", -"Print": "Tisk", -"Prev": "P\u0159edchoz\u00ed", -"Find and replace": "Naj\u00edt a nahradit", -"Whole words": "Pouze cel\u00e1 slova", -"Insert template": "Vlo\u017eit ze \u0161ablony" -}); diff --git a/build/media_source/vendor/tinymce/langs/cy.es5.js b/build/media_source/vendor/tinymce/langs/cy.es5.js deleted file mode 100644 index 775b20de382c3..0000000000000 --- a/build/media_source/vendor/tinymce/langs/cy.es5.js +++ /dev/null @@ -1,461 +0,0 @@ -tinymce.addI18n('cy',{ -"Redo": "Ailwneud", -"Undo": "Dadwneud", -"Cut": "Torri", -"Copy": "Cop\u00efo", -"Paste": "Gludo", -"Select all": "Dewis popeth", -"New document": "Dogfen newydd", -"Ok": "Iawn", -"Cancel": "Canslo", -"Visual aids": "Cymorth gweledol", -"Bold": "Trwm", -"Italic": "Italig", -"Underline": "Tanlinellu", -"Strikethrough": "Llinell drwodd", -"Superscript": "Uwchsgript", -"Subscript": "Is-sgript", -"Clear formatting": "Clirio pob fformat", -"Align left": "Aliniad chwith", -"Align center": "Aliniad canol", -"Align right": "Aliniad de", -"Justify": "Unioni", -"Bullet list": "Rhestr fwled", -"Numbered list": "Rhestr rifol", -"Decrease indent": "Lleihau mewnoliad", -"Increase indent": "Cynyddu mewnoliad", -"Close": "Cau", -"Formats": "Fformatau", -"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. Yn hytrach defnyddiwch y bysellau llwybrau byr Ctrl+X\/C\/V.", -"Headers": "Penawdau", -"Header 1": "Pennawd 1", -"Header 2": "Pennawd 2", -"Header 3": "Pennawd 3", -"Header 4": "Pennawd 4", -"Header 5": "Pennawd 5", -"Header 6": "Pennawd 6", -"Headings": "Penawdau", -"Heading 1": "Pennawd 1", -"Heading 2": "Pennawd 2", -"Heading 3": "Pennawd 3", -"Heading 4": "Pennawd 4", -"Heading 5": "Pennawd 5", -"Heading 6": "Pennawd 6", -"Preformatted": "Wedi ei rag-fformatio", -"Div": "Div", -"Pre": "Pre", -"Code": "Cod", -"Paragraph": "Paragraff", -"Blockquote": "Dyfyniad Bloc", -"Inline": "Mewnlin", -"Blocks": "Blociau", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Mae gludo nawr yn gweithio yn y modd testun plaen. Caiff testun plaen ei ludo nawr tan gaiff yr opsiwn ei doglo i'w ddiffodd.", -"Fonts": "Ffontau", -"Font Sizes": "Meintiau Ffont", -"Class": "Dosbarth", -"Browse for an image": "Pori am ddelwedd", -"OR": "NEU", -"Drop an image here": "Gollwng delwedd yma", -"Upload": "Uwchlwytho", -"Block": "Bloc", -"Align": "Alinio", -"Default": "Diofyn", -"Circle": "Cylch", -"Disc": "Disg", -"Square": "Sgw\u00e2r", -"Lower Alpha": "Alffa Is", -"Lower Greek": "Groeg Is", -"Lower Roman": "Rhufeinig Is", -"Upper Alpha": "Alffa Uwch", -"Upper Roman": "Rhufeinig Uwch", -"Anchor...": "Angor...", -"Name": "Enw", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Dylai Id gychwyn gyda llythyren ac yna dim ond llythrennau, rhifau, llinellau toriad,dotiau, colonau neu danlinellau.", -"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", -"Insert\/Edit code sample": "Mewnosod\/golygu sampl cod", -"Language": "Iaith", -"Code sample...": "Sampl cod...", -"Color Picker": "Dewisydd Lliw", -"R": "C", -"G": "Gw", -"B": "Gl", -"Left to right": "Chwith i'r dde", -"Right to left": "De i'r chwith", -"Emoticons": "Gwenogluniau", -"Emoticons...": "Gwenogluniau...", -"Metadata and Document Properties": "Metaddata a Priodweddau'r ddogfen", -"Title": "Teitl", -"Keywords": "Allweddeiriau", -"Description": "Disgrifiad", -"Robots": "Robotiaid", -"Author": "Awdur", -"Encoding": "Amgodiad", -"Fullscreen": "Sgrin llawn", -"Action": "Gweithred", -"Shortcut": "Llwybr Byr", -"Help": "Help", -"Address": "Cyfeiriad", -"Focus to menubar": "Ffocws i'r bar dewislen", -"Focus to toolbar": "Ffocws i'r bar offer", -"Focus to element path": "Ffocws i lwybr elfen", -"Focus to contextual toolbar": "Ffocws i far offer y cyd-destun", -"Insert link (if link plugin activated)": "Mewnosod dolen (os yw'r ategyn dolen yn weithredol)", -"Save (if save plugin activated)": "Cadw (os yw'r ategyn cadw yn weithredol)", -"Find (if searchreplace plugin activated)": "Canfod (os yw'r ategyn chwilio ac amnewid yn weithredol)", -"Plugins installed ({0}):": "Ategio wedi eu gosod ({0}):", -"Premium plugins:": "Ategion premiwm:", -"Learn more...": "Dysgu Mwy...", -"You are using {0}": "Rydych yn defnyddio {0}", -"Plugins": "Ategion", -"Handy Shortcuts": "Llwybrau byr cyfleus", -"Horizontal line": "Llinell lorweddol", -"Insert\/edit image": "Mewnosod\/golygu delwedd", -"Alternative description": "Disgrifiad arall", -"Accessibility": "Hygyrchedd", -"Image is decorative": "Delwedd yn addurniadol", -"Source": "Ffynhonnell", -"Dimensions": "Dimensiynau", -"Constrain proportions": "Gorfodi cyfrannedd", -"General": "Cyffredinol", -"Advanced": "Uwch", -"Style": "Arddull", -"Vertical space": "Gofod fertigol", -"Horizontal space": "Gofod llorweddol", -"Border": "Border", -"Insert image": "Mewnosod delwedd", -"Image...": "Delwedd...", -"Image list": "Rhestr delweddau", -"Rotate counterclockwise": "Troi gwrthgloc", -"Rotate clockwise": "Troi clocwedd", -"Flip vertically": "Fflipio fertigol", -"Flip horizontally": "Fflipio llorweddol", -"Edit image": "Golygu delwedd", -"Image options": "Dewisiadau delwedd", -"Zoom in": "Chwyddo mewn", -"Zoom out": "Chwyddo allan", -"Crop": "Tocio", -"Resize": "Ailfeintio", -"Orientation": "Cyfeiriadaeth", -"Brightness": "Disgleirdeb", -"Sharpen": "Hogi", -"Contrast": "Cyferbynnedd", -"Color levels": "Lefelau Lliw", -"Gamma": "Gamma", -"Invert": "Gwrthdroi", -"Apply": "Rhoi ar waith", -"Back": "Nol", -"Insert date\/time": "Mewnosod dyddiad\/amser", -"Date\/time": "Dyddiad\/amser", -"Insert\/edit link": "Mewnosod\/golygu dolen", -"Text to display": "Testun i'w ddangos", -"Url": "Url", -"Open link in...": "Agor dolen yn...", -"Current window": "Ffenestr gyfredol", -"None": "Dim", -"New window": "Ffenest newydd", -"Open link": "Agor dolen", -"Remove link": "Tynnu dolen", -"Anchors": "Angorau", -"Link...": "Dolen...", -"Paste or type a link": "Pastio neu deipio dolen", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Mae'n debyg mai cyfeiriad e-bost yw'r URL hwn. Ydych chi am ychwanegu'r rhagddoddiad mailto:?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Mae'n debyg mai dolen allanol yw'r URL hwn. Ydych chi am ychwanegu'r rhagddodiad http:\/\/ ?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Ymddengys mai dolen allannol yw'r URL a roddoch chi. Ydych chi eisiau ychwanegu'r rhagddodiad https:\/\/ gofynnol?", -"Link list": "Rhestr dolenni", -"Insert video": "Mewnosod fideo", -"Insert\/edit video": "Mewnosod\/golygu fideo", -"Insert\/edit media": "Mewnosod\/golygu cyfrwng", -"Alternative source": "Ffynhonnell amgen", -"Alternative source URL": "Ffynhonnell URL arall", -"Media poster (Image URL)": "Poster cyfrwng (URL delwedd)", -"Paste your embed code below:": "Gludwch eich cod mewnosod isod:", -"Embed": "Mewnosod", -"Media...": "Cyfrwng...", -"Nonbreaking space": "Bwlch heb dorri", -"Page break": "Toriad tudalen", -"Paste as text": "Gludo fel testun", -"Preview": "Rhagolwg", -"Print...": "Argraffu...", -"Save": "Cadw", -"Find": "Chwilio", -"Replace with": "Amnewid gyda", -"Replace": "Amnewid", -"Replace all": "Amnewid y cwbl", -"Previous": "Blaenorol", -"Next": "Nesaf", -"Find and Replace": "Canfod a Newid", -"Find and replace...": "Chwilio ac amnewid", -"Could not find the specified string.": "Methu ffeindio'r llinyn hwnnw.", -"Match case": "Cas yn cyfateb", -"Find whole words only": "Canfod geiriau llawn yn unig", -"Find in selection": "Canfod yn y dewisiad", -"Spellcheck": "Sillafydd", -"Spellcheck Language": "Iaith Gwirio Sillafu", -"No misspellings found.": "Dim camsillafiadau.", -"Ignore": "Anwybyddu", -"Ignore all": "Amwybyddu pob", -"Finish": "Gorffen", -"Add to Dictionary": "Adio i'r Geiriadur", -"Insert table": "Mewnosod tabl", -"Table properties": "Priodweddau tabl", -"Delete table": "Dileu'r tabl", -"Cell": "Cell", -"Row": "Rhes", -"Column": "Colofn", -"Cell properties": "Priodweddau'r gell", -"Merge cells": "Cyfuno celloedd", -"Split cell": "Hollti celloedd", -"Insert row before": "Mewnosod rhes cyn", -"Insert row after": "Mewnosod rhes ar \u00f4l", -"Delete row": "Dileu rhes", -"Row properties": "Priodweddau rhes", -"Cut row": "Torri rhes", -"Copy row": "Cop\u00efo rhes", -"Paste row before": "Gludo rhes cyn", -"Paste row after": "Gludo rhes ar \u00f4l", -"Insert column before": "Mewnosod colofn cyn", -"Insert column after": "Mewnosod colofn ar \u00f4l", -"Delete column": "Dileu colofn", -"Cols": "Colofnau", -"Rows": "Rhesi", -"Width": "Lled", -"Height": "Uchder", -"Cell spacing": "Bylchiad celloedd", -"Cell padding": "Padio celloedd", -"Caption": "Pennawd", -"Show caption": "Dangos capsiwn", -"Left": "Chwith", -"Center": "Canol", -"Right": "De", -"Cell type": "Math y gell", -"Scope": "Cwmpas", -"Alignment": "Aliniad", -"H Align": "Aliniad Ll", -"V Align": "Aliniad F", -"Top": "Brig", -"Middle": "Canol", -"Bottom": "Gwaelod", -"Header cell": "Cell bennawd", -"Row group": "Gr\u0175p rhes", -"Column group": "Gr\u0175p colofn", -"Row type": "Math y rhes", -"Header": "Pennyn", -"Body": "Corff", -"Footer": "Troedyn", -"Border color": "Lliw Border", -"Insert template...": "Mewnosod templed...", -"Templates": "Templedi", -"Template": "Templed", -"Text color": "Lliw testun", -"Background color": "Lliw cefndir", -"Custom...": "Personol...", -"Custom color": "Lliw personol", -"No color": "Dim Lliw", -"Remove color": "Tynnu lliw", -"Table of Contents": "Tabl Cynnwys", -"Show blocks": "Dangos blociau", -"Show invisible characters": "Dangos nodau anweledig", -"Word count": "Cyfri geiriau", -"Count": "Cyfrif", -"Document": "Dogfen", -"Selection": "Dewis", -"Words": "Geiriau", -"Words: {0}": "Geiriau: {0}", -"{0} words": "{0} o eiriau", -"File": "Ffeil", -"Edit": "Golygu", -"Insert": "Mewnosod", -"View": "Dangos", -"Format": "Fformat", -"Table": "Tabl", -"Tools": "Offer", -"Powered by {0}": "Gyrrir gan {0}", -"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", -"Image title": "Teitl delwedd", -"Border width": "Lled border", -"Border style": "Steil border", -"Error": "Gwall", -"Warn": "Rhybuddio", -"Valid": "Dilys", -"To open the popup, press Shift+Enter": "I agor y llamlen, pwyswch Shift+Enter", -"Rich Text Area. Press ALT-0 for help.": "Ardal testun cyfoethog. Pwyswch ALT-0 am help.", -"System Font": "Ffont system", -"Failed to upload image: {0}": "Wedi methu uwchlwytho'r ddelwedd: {0}", -"Failed to load plugin: {0} from url {1}": "Wedi methu llwytho'r ategyn: {0} o'r url {1}", -"Failed to load plugin url: {0}": "Wedi methu llwytho url yr ategyn: {0}", -"Failed to initialize plugin: {0}": "Wedi methu ymgychwyn yr ategyn: {0}", -"example": "enghraifft", -"Search": "Chwilio", -"All": "Y cwbl", -"Currency": "Arian cyfred", -"Text": "Testun", -"Quotations": "Dyfyniadau", -"Mathematical": "Mathemategol", -"Extended Latin": "Lladin estynedig", -"Symbols": "Symbolau", -"Arrows": "Saethau", -"User Defined": "Diffinir gan y defnyddiwr", -"dollar sign": "Arwydd dolar", -"currency sign": "Arwydd arian cyfred", -"euro-currency sign": "Arwydd euro", -"colon sign": "Arwydd colon", -"cruzeiro sign": "Arwydd cruzeiro", -"french franc sign": "Arwydd ffranc Ffrengig", -"lira sign": "Arwydd lira", -"mill sign": "arwydd mill", -"naira sign": "arwydd naira", -"peseta sign": "arwydd peseta", -"rupee sign": "arwydd rupee", -"won sign": "arwydd won", -"new sheqel sign": "arwydd sheqel newydd", -"dong sign": "arwydd dong", -"kip sign": "arwydd kip", -"tugrik sign": "arwydd tugrik", -"drachma sign": "arwydd drachma", -"german penny symbol": "arwydd ceiniog almaenig", -"peso sign": "arwydd peso", -"guarani sign": "arwydd quarani", -"austral sign": "arwydd austral", -"hryvnia sign": "arwydd hryvnia", -"cedi sign": "arwydd cedi", -"livre tournois sign": "arwydd punt tournois", -"spesmilo sign": "arwydd spesmilo", -"tenge sign": "arwydd tenge", -"indian rupee sign": "arwydd rupee india", -"turkish lira sign": "arwydd lira twrcaidd", -"nordic mark sign": "arwydd marc nordig", -"manat sign": "arwydd manat", -"ruble sign": "arwydd ruble", -"yen character": "nod yen", -"yuan character": "nod yuan", -"yuan character, in hong kong and taiwan": "nod yuan yn Hong Kong a Taiwan", -"yen\/yuan character variant one": "nod yen\/yuan amrywiad un", -"Loading emoticons...": "Yn llwytho gwenogluniau", -"Could not load emoticons": "Wedi methu llwytho gwenogluniau", -"People": "Pobl", -"Animals and Nature": "Anifeiliaid a Natur", -"Food and Drink": "Bwyd a Diod", -"Activity": "Gweithgaredd", -"Travel and Places": "Teithio a lleoedd", -"Objects": "Gwrthrychau", -"Flags": "Baneri", -"Characters": "Nodau", -"Characters (no spaces)": "Nodau (dim gofod)", -"{0} characters": "{0} nod", -"Error: Form submit field collision.": "Gwall: Gwrthdrawiad maes cyflwyno ffurflen", -"Error: No form element found.": "Gwall: Ni chafwyd elfen ffurflen", -"Update": "Diweddaru", -"Color swatch": "Casgliad lliwiau", -"Turquoise": "Gwyrddlas", -"Green": "Gwyrdd", -"Blue": "Glas", -"Purple": "Porffor", -"Navy Blue": "Dulas", -"Dark Turquoise": "Gwyrddlas tywyll", -"Dark Green": "Gwyrdd tywyll", -"Medium Blue": "Glas canolig", -"Medium Purple": "Porffor canolig", -"Midnight Blue": "Glas y nos", -"Yellow": "Melyn", -"Orange": "Oren", -"Red": "Coch", -"Light Gray": "Llwyd golau", -"Gray": "d", -"Dark Yellow": "Melyn tywyll", -"Dark Orange": "Oren tywyll", -"Dark Red": "Coch tywyll", -"Medium Gray": "Llwyd canolig", -"Dark Gray": "Llwyd tywyll", -"Light Green": "Gwyrdd Golau", -"Light Yellow": "Melyn Golau", -"Light Red": "Coch Golau", -"Light Purple": "Porffor Golau", -"Light Blue": "Glas Golau", -"Dark Purple": "Porffor Tywyll", -"Dark Blue": "Glas Tywyll", -"Black": "Du", -"White": "Gwyn", -"Switch to or from fullscreen mode": "Newid i neu o'r modd sgr\u00een llawn", -"Open help dialog": "Agor y ddeialog gymorth", -"history": "hanes", -"styles": "steiliau", -"formatting": "fformatio", -"alignment": "aliniad", -"indentation": "mewnoli", -"Font": "Ffont", -"Size": "Maint", -"More...": "Mwy...", -"Select...": "Dewis...", -"Preferences": "Dewisiadau", -"Yes": "Iawn", -"No": "Na", -"Keyboard Navigation": "Llywio Bysellfwrdd", -"Version": "Fersiwn", -"Code view": "Golwg cod", -"Open popup menu for split buttons": "Agor naidlen ar gyfer botymau hollt", -"List Properties": "Rhestru Priodweddau", -"List properties...": "Rhestru priodweddau...", -"Start list at number": "Dechrau rhestr efo rhif", -"Line height": "Uchder llinell", -"comments": "Sylwadau", -"Format Painter": "Brwsh Fformat", -"Insert\/edit iframe": "Mewnosod\/golygu iframe", -"Capitalization": "Priflythrennu", -"lowercase": "llythrennau bach", -"UPPERCASE": "PRIFLYTHRENNAU", -"Title Case": "Priflythyren i bob gair", -"permanent pen": "pen sefydlog", -"Permanent Pen Properties": "Priodweddau Yswgrifbin Parhaol", -"Permanent pen properties...": "Priodweddau ysgrifbin parhaol...", -"case change": "Newid Cas", -"page embed": "Mewnblannu i'r dudalen", -"Advanced sort...": "Trefnu uwch...", -"Advanced Sort": "Trefnu Uwch", -"Sort table by column ascending": "Trefnu tabl yn \u00f4l colofn yn esgynnol", -"Sort table by column descending": "Trefnu tabl yn \u00f4l colofn yn ddisgynnol", -"Sort": "Trefnu", -"Order": "Trefn", -"Sort by": "Trefnu yn \u00f4l", -"Ascending": "yn Esgynnol", -"Descending": "yn Ddisgynnol", -"Column {0}": "Colofn {0}", -"Row {0}": "Rhes {0}", -"Spellcheck...": "Gwirydd sillafu...", -"Misspelled word": "Gair wedi ei gamsillafu", -"Suggestions": "Awgrymiadau", -"Change": "Newid", -"Finding word suggestions": "Darganfod geiriau a awgrymir", -"Success": "Llwyddiant", -"Repair": "Trwsio", -"Issue {0} of {1}": "Problem {0} o {1}", -"Images must be marked as decorative or have an alternative text description": "Rhaid bod delwedd wedi ei marcio yn addurniadol neu gyda disgrifiad testun arall", -"Images must have an alternative text description. Decorative images are not allowed.": "Rhaid bod gan ddelwedd ddisgrifiad testun arall. Ni chaniateir delweddau addurniadol.", -"Or provide alternative text:": "Neu darparu testun arall:", -"Make image decorative:": "Gwneud delwedd yn addurniadol:", -"ID attribute must be unique": "Rhaid i'r priodoledd ID fod yn unigryw", -"Make ID unique": "Gwneud yr ID yn unigryw", -"Keep this ID and remove all others": "Cadwch yr ID hwn a dileu pob un arall", -"Remove this ID": "Dileu'r ID hwn", -"Remove all IDs": "Dileu pob ID", -"Checklist": "Rhestr wirio", -"Anchor": "Angor", -"Special character": "Nod arbennig", -"Color": "Lliw", -"Document properties": "Priodweddau'r ddogfen", -"Image description": "Disgrifiad y ddelwedd", -"Image": "Delwedd", -"Insert link": "Mewnosod dolen", -"Link": "Dolen", -"Target": "Targed", -"Media": "Cyfrwng", -"Poster": "Poster", -"Print": "Argraffu", -"Whole words": "Geiriau cyfan", -"Find and replace": "Chwilio ac amnewid", -"Prev": "Blaenorol", -"Insert template": "Mewnosod templed" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/da.es5.js b/build/media_source/vendor/tinymce/langs/da.es5.js deleted file mode 100644 index e08c040325532..0000000000000 --- a/build/media_source/vendor/tinymce/langs/da.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('da',{ -"Redo": "Gendan", -"Undo": "Fortryd", -"Cut": "Klip", -"Copy": "Kopier", -"Paste": "S\u00e6t ind", -"Select all": "V\u00e6lg alle", -"New document": "Nyt dokument", -"Ok": "Ok", -"Cancel": "Annuller", -"Visual aids": "Visuel hj\u00e6lp", -"Bold": "Fed", -"Italic": "Kursiv", -"Underline": "Understreget", -"Strikethrough": "Gennemstreget", -"Superscript": "H\u00e6vet skrift", -"Subscript": "S\u00e6nket skrift", -"Clear formatting": "Nulstil formattering", -"Align left": "Opstil til venstre", -"Align center": "Centrer", -"Align right": "Opstil til h\u00f8jre", -"Justify": "Justering", -"Bullet list": "Punktopstillet liste", -"Numbered list": "Nummereret liste", -"Decrease indent": "Formindsk indrykning", -"Increase indent": "For\u00f8g indrykning", -"Close": "Luk", -"Formats": "Formater", -"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 udklipsholder. Benyt Ctrl+X\/C\/ tastaturgenveje i stedet for.", -"Headers": "Overskrifter", -"Header 1": "Overskrift 1", -"Header 2": "Overskrift 2", -"Header 3": "Overskrift 3", -"Header 4": "Overskrift 4", -"Header 5": "Overskrift 5", -"Header 6": "Overskrift 6", -"Headings": "Overskrifter", -"Heading 1": "Overskrift 1", -"Heading 2": "Overskrift 2", -"Heading 3": "Overskrift 3", -"Heading 4": "Overskrift 4", -"Heading 5": "Overskrift 5", -"Heading 6": "Overskrift 6", -"Preformatted": "Forudformateret", -"Div": "Div", -"Pre": "Pre", -"Code": "Kode", -"Paragraph": "Afsnit", -"Blockquote": "Blockquote", -"Inline": "Inline", -"Blocks": "Blokke", -"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.", -"Fonts": "Skrifttyper", -"Font Sizes": "Skriftst\u00f8rrelse", -"Class": "Class", -"Browse for an image": "S\u00f8g efter et billede", -"OR": "OR", -"Drop an image here": "Slip et billede her", -"Upload": "Upload", -"Block": "Blok\u00e9r", -"Align": "Align", -"Default": "Standard", -"Circle": "Cirkel", -"Disc": "Disk", -"Square": "Kvadrat", -"Lower Alpha": "Lower Alpha", -"Lower Greek": "Lower Gr\u00e6sk", -"Lower Roman": "Lower Roman", -"Upper Alpha": "Upper Alpha", -"Upper Roman": "Upper Roman", -"Anchor...": "Anker...", -"Name": "Navn", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id b\u00f8r starte med et bogstav, efterfulgt af bogstaver, tal, bindestreger, punktummer, koloner eller underscores.", -"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", -"Insert\/Edit code sample": "Inds\u00e6t\/Ret kodeeksempel", -"Language": "Sprog", -"Code sample...": "Kodeeksempel...", -"Color Picker": "Farvev\u00e6lger", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Venstre til h\u00f8jre", -"Right to left": "H\u00f8jre til venstre", -"Emoticons": "Emot-ikoner", -"Emoticons...": "Emotikoner...", -"Metadata and Document Properties": "Metadata og dokumentegenskaber", -"Title": "Titel", -"Keywords": "S\u00f8geord", -"Description": "Beskrivelse", -"Robots": "Robotter", -"Author": "Forfatter", -"Encoding": "Kodning", -"Fullscreen": "Fuldsk\u00e6rm", -"Action": "Handling", -"Shortcut": "Genvej", -"Help": "Hj\u00e6lp", -"Address": "Adresse", -"Focus to menubar": "Fokus p\u00e5 menulinjen", -"Focus to toolbar": "Fokus p\u00e5 v\u00e6rkt\u00f8jslinjen", -"Focus to element path": "Fokuser p\u00e5 elementvej", -"Focus to contextual toolbar": "Fokuser p\u00e5 kontekstuelle v\u00e6rkt\u00f8jslinje", -"Insert link (if link plugin activated)": "Inds\u00e6t link (hvis link plugin er aktiveret)", -"Save (if save plugin activated)": "Gem (hvis save plugin er aktiveret)", -"Find (if searchreplace plugin activated)": "Find (hvis searchreplace plugin er aktiveret)", -"Plugins installed ({0}):": "Installerede plugins ({0}):", -"Premium plugins:": "Premium plugins:", -"Learn more...": "L\u00e6r mere...", -"You are using {0}": "Du benytter {0}", -"Plugins": "Plugins", -"Handy Shortcuts": "Praktiske Genveje", -"Horizontal line": "Vandret linie", -"Insert\/edit image": "Inds\u00e6t\/ret billede", -"Alternative description": "Alternativ beskrivelse", -"Accessibility": "Tilg\u00e6ngelighed", -"Image is decorative": "Billede er dekorativt", -"Source": "Kilde", -"Dimensions": "Dimensioner", -"Constrain proportions": "Behold propertioner", -"General": "Generelt", -"Advanced": "Avanceret", -"Style": "Stil", -"Vertical space": "Lodret afstand", -"Horizontal space": "Vandret afstand", -"Border": "Kant", -"Insert image": "Inds\u00e6t billede", -"Image...": "Billede...", -"Image list": "Billede liste", -"Rotate counterclockwise": "Drej modsat urets retning", -"Rotate clockwise": "Drej med urets retning", -"Flip vertically": "Flip vertikalt", -"Flip horizontally": "Flip horisontalt", -"Edit image": "Rediger billede", -"Image options": "Billede indstillinger", -"Zoom in": "Zoom ind", -"Zoom out": "Zoom ud", -"Crop": "Besk\u00e6r", -"Resize": "Skaler", -"Orientation": "Retning", -"Brightness": "Lysstyrke", -"Sharpen": "G\u00f8r skarpere", -"Contrast": "Kontrast", -"Color levels": "Farve niveauer", -"Gamma": "Gamma", -"Invert": "Inverter", -"Apply": "Anvend", -"Back": "Tilbage", -"Insert date\/time": "Inds\u00e6t dato\/klokkeslet", -"Date\/time": "Dato\/klokkeslet", -"Insert\/edit link": "Inds\u00e6t\/ret link", -"Text to display": "Vis tekst", -"Url": "Url", -"Open link in...": "\u00c5bn link med...", -"Current window": "Aktuelle vindue", -"None": "Ingen", -"New window": "Nyt vindue", -"Open link": "\u00c5ben link", -"Remove link": "Fjern link", -"Anchors": "Ankre", -"Link...": "Link...", -"Paste or type a link": "Inds\u00e6t eller skriv et link", -"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: ?", -"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:\/\/ ?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "URL'en som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det n\u00f8dvendige https:\/\/ pr\u00e6fiks?", -"Link list": "Link liste", -"Insert video": "Inds\u00e6t video", -"Insert\/edit video": "Inds\u00e6t\/ret video", -"Insert\/edit media": "Inds\u00e6t\/ret medier", -"Alternative source": "Alternativ kilde", -"Alternative source URL": "Alternativ kilde URL", -"Media poster (Image URL)": "Medieplakat (billede URL)", -"Paste your embed code below:": "Inds\u00e6t din embed kode herunder:", -"Embed": "Integrer", -"Media...": "Medie...", -"Nonbreaking space": "H\u00e5rdt mellemrum", -"Page break": "Sideskift", -"Paste as text": "Inds\u00e6t som ren tekst", -"Preview": "Forh\u00e5ndsvisning", -"Print...": "Udskriv...", -"Save": "Gem", -"Find": "Find", -"Replace with": "Erstat med", -"Replace": "Erstat", -"Replace all": "Erstat alt", -"Previous": "Forrige", -"Next": "N\u00e6ste", -"Find and Replace": "Find og erstat", -"Find and replace...": "Find og erstat...", -"Could not find the specified string.": "Kunne ikke finde s\u00f8getekst", -"Match case": "STORE og sm\u00e5 bogstaver", -"Find whole words only": "Find kun hele ord", -"Find in selection": "Find i det valgte", -"Spellcheck": "Stavekontrol", -"Spellcheck Language": "Sprog til stavekontrol", -"No misspellings found.": "Ingen stavefejl fundet.", -"Ignore": "Ignorer", -"Ignore all": "Ignorer alt", -"Finish": "F\u00e6rdig", -"Add to Dictionary": "Tilf\u00f8j til ordbog", -"Insert table": "Inds\u00e6t tabel", -"Table properties": "Tabel egenskaber", -"Delete table": "Slet tabel", -"Cell": "Celle", -"Row": "R\u00e6kke", -"Column": "Kolonne", -"Cell properties": "Celle egenskaber", -"Merge cells": "Flet celler", -"Split cell": "Split celle", -"Insert row before": "Inds\u00e6t r\u00e6kke f\u00f8r", -"Insert row after": "Inds\u00e6t r\u00e6kke efter", -"Delete row": "Slet r\u00e6kke", -"Row properties": "R\u00e6kke egenskaber", -"Cut row": "Klip r\u00e6kke", -"Copy row": "Kopier r\u00e6kke", -"Paste row before": "Inds\u00e6t r\u00e6kke f\u00f8r", -"Paste row after": "Inds\u00e6t r\u00e6kke efter", -"Insert column before": "Inds\u00e6t kolonne f\u00f8r", -"Insert column after": "Inds\u00e6t kolonne efter", -"Delete column": "Slet kolonne", -"Cols": "Kolonne", -"Rows": "R\u00e6kker", -"Width": "Bredde", -"Height": "H\u00f8jde", -"Cell spacing": "Celle afstand", -"Cell padding": "Celle padding", -"Caption": "Tekst", -"Show caption": "Vis overskrift", -"Left": "Venstre", -"Center": "Centrering", -"Right": "H\u00f8jre", -"Cell type": "Celle type", -"Scope": "Anvendelsesomr\u00e5de", -"Alignment": "Tilpasning", -"H Align": "H juster", -"V Align": "V juster", -"Top": "Top", -"Middle": "Midt", -"Bottom": "Bund", -"Header cell": "Sidehoved celle", -"Row group": "R\u00e6kke gruppe", -"Column group": "Kolonne gruppe", -"Row type": "R\u00e6kke type", -"Header": "Sidehoved", -"Body": "Krop", -"Footer": "Sidefod", -"Border color": "Kant farve", -"Insert template...": "Inds\u00e6t skabelon...", -"Templates": "Skabeloner", -"Template": "Skabelon", -"Text color": "Tekst farve", -"Background color": "Baggrunds farve", -"Custom...": "Brugerdefineret...", -"Custom color": "Brugerdefineret farve", -"No color": "Ingen farve", -"Remove color": "Fjern farve", -"Table of Contents": "Indholdsfortegnelse", -"Show blocks": "Vis klokke", -"Show invisible characters": "Vis usynlige tegn", -"Word count": "Optalte ord", -"Count": "Antal", -"Document": "Dokument", -"Selection": "Valg", -"Words": "Ord", -"Words: {0}": "Ord: {0}", -"{0} words": "{0} ord", -"File": "Fil", -"Edit": "Rediger", -"Insert": "Inds\u00e6t", -"View": "Vis", -"Format": "Format", -"Table": "Tabel", -"Tools": "V\u00e6rkt\u00f8j", -"Powered by {0}": "Drevet af {0}", -"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", -"Image title": "Billedtitel", -"Border width": "Kantbredde", -"Border style": "Kantstil", -"Error": "Fejl", -"Warn": "Advar", -"Valid": "Gyldig", -"To open the popup, press Shift+Enter": "Tryk skift + enter for at \u00e5bne pop op", -"Rich Text Area. Press ALT-0 for help.": "Rich tekst omr\u00e5de. Tryk p\u00e5 ALT-0 for hj\u00e6lp.", -"System Font": "Systemskrifttype", -"Failed to upload image: {0}": "Mislykket billed-upload:", -"Failed to load plugin: {0} from url {1}": "Mislykket plugin indl\u00e6sning: {0} fra url {1}", -"Failed to load plugin url: {0}": "Mislykket indl\u00e6sning af plugin-url: {0}", -"Failed to initialize plugin: {0}": "Mislykket initiering a plugin: {0}", -"example": "eksempel", -"Search": "S\u00f8g", -"All": "Alle", -"Currency": "Valuta", -"Text": "Tekst", -"Quotations": "Anf\u00f8rselstegn", -"Mathematical": "Matematiske tegn", -"Extended Latin": "Udvidet Latin", -"Symbols": "Symboler", -"Arrows": "Pile", -"User Defined": "Brugerdefineret", -"dollar sign": "dollartegn", -"currency sign": "valutategn", -"euro-currency sign": "euro-tegn", -"colon sign": "kolontegn", -"cruzeiro sign": "cruzeiro-tegn", -"french franc sign": "fransk frank-tegn", -"lira sign": "lira-tegn", -"mill sign": "mill-tegn", -"naira sign": "naira-tegn", -"peseta sign": "peseta-tegn", -"rupee sign": "rupee-tegn", -"won sign": "won-tegn", -"new sheqel sign": "ny sheqel-tegn", -"dong sign": "dong-tegn", -"kip sign": "kip-tegn", -"tugrik sign": "tugrik-tegn", -"drachma sign": "drakmer-tegn", -"german penny symbol": "tysk penny-symbol", -"peso sign": "peso-tegn", -"guarani sign": "guarani-tegn", -"austral sign": "austral-tegn", -"hryvnia sign": "hryvnia-tegn", -"cedi sign": "cedi-tegn", -"livre tournois sign": "livre tournois-tegn", -"spesmilo sign": "spesmilo-tegn", -"tenge sign": "tenge-tegn", -"indian rupee sign": "indisk rupee-tegn", -"turkish lira sign": "tyrkisk lira-tegn", -"nordic mark sign": "nordisk mark-tegn", -"manat sign": "manat-tegn", -"ruble sign": "rubel-tegn", -"yen character": "yen-tegn", -"yuan character": "yuan-tegn", -"yuan character, in hong kong and taiwan": "yuan-tegn, i hong kong og taiwan", -"yen\/yuan character variant one": "yen\/yuan-tegn variant en", -"Loading emoticons...": "Indl\u00e6ser emotikoner...", -"Could not load emoticons": "Kunne ikke indl\u00e6se emotikoner", -"People": "Folk", -"Animals and Nature": "Dyr og natur", -"Food and Drink": "F\u00f8de og drikke", -"Activity": "Aktivitet", -"Travel and Places": "Rejser og steder", -"Objects": "Objekter", -"Flags": "Flag", -"Characters": "Tegn", -"Characters (no spaces)": "Tegn (uden mellemrum)", -"{0} characters": "{0} tegn", -"Error: Form submit field collision.": "Fejl: Form submit felt kollision", -"Error: No form element found.": "Fejl: Ingen form element fundet.", -"Update": "Opdater", -"Color swatch": "Farvepr\u00f8ve", -"Turquoise": "Turkis", -"Green": "Gr\u00f8n", -"Blue": "Bl\u00e5", -"Purple": "Lilla", -"Navy Blue": "Marinebl\u00e5", -"Dark Turquoise": "M\u00f8rketurkis", -"Dark Green": "M\u00f8rkegr\u00f8n", -"Medium Blue": "Medium bl\u00e5", -"Medium Purple": "Medium lilla", -"Midnight Blue": "Midnatsbl\u00e5", -"Yellow": "Gul", -"Orange": "Orange", -"Red": "R\u00f8d", -"Light Gray": "Lysegr\u00e5", -"Gray": "Gr\u00e5", -"Dark Yellow": "M\u00f8rkegul", -"Dark Orange": "M\u00f8rkeorange", -"Dark Red": "M\u00f8rker\u00f8d", -"Medium Gray": "Mellemgr\u00e5", -"Dark Gray": "M\u00f8rkegr\u00e5", -"Light Green": "Lysegr\u00f8n", -"Light Yellow": "Lysegul", -"Light Red": "Lyser\u00f8d", -"Light Purple": "Lyslilla", -"Light Blue": "Lysebl\u00e5", -"Dark Purple": "M\u00f8rkelilla", -"Dark Blue": "M\u00f8rkebl\u00e5", -"Black": "Sort", -"White": "Hvid", -"Switch to or from fullscreen mode": "Skift til eller fra fuldsk\u00e6rmstilstand", -"Open help dialog": "\u00c5bn hj\u00e6lpedialog", -"history": "historie", -"styles": "stile", -"formatting": "formatering", -"alignment": "justering", -"indentation": "indrykning", -"Font": "Skrifttype", -"Size": "St\u00f8rrelse", -"More...": "Mere...", -"Select...": "V\u00e6lg...", -"Preferences": "Pr\u00e6ferencer", -"Yes": "Ja", -"No": "Nej", -"Keyboard Navigation": "Navigation med tastatur", -"Version": "Version", -"Code view": "Kodevisning", -"Open popup menu for split buttons": "\u00c5ben popup menu for split knapper", -"List Properties": "List indstillinger", -"List properties...": "List indstillinger...", -"Start list at number": "Start liste ved nummer", -"Line height": "Linjeh\u00f8jde", -"comments": "kommentarer", -"Format Painter": "Formatpensel", -"Insert\/edit iframe": "Inds\u00e6t\/rediger iframe", -"Capitalization": "Store bogstaver", -"lowercase": "sm\u00e5 bogstaver", -"UPPERCASE": "STORE BOGSTAVER", -"Title Case": "Stort begyndelsesbogstav", -"permanent pen": "permanent pen", -"Permanent Pen Properties": "Permanente penegenskaber", -"Permanent pen properties...": "Permanente penegenskaber...", -"case change": "\u00e6ndring af stort\/sm\u00e5t", -"page embed": "side indlejring", -"Advanced sort...": "Avanceret sortering...", -"Advanced Sort": "Avanceret sortering", -"Sort table by column ascending": "Sorter tabel efter kolonne stigende", -"Sort table by column descending": "Sorter tabel efter kolonne faldende", -"Sort": "Sorter", -"Order": "R\u00e6kkef\u00f8lge", -"Sort by": "Sorter efter", -"Ascending": "Stigende", -"Descending": "Faldende", -"Column {0}": "Kolonne {0}", -"Row {0}": "R\u00e6kke {0}", -"Spellcheck...": "Stavekontrol...", -"Misspelled word": "Ord med stavefejl", -"Suggestions": "Forslag", -"Change": "\u00c6ndring", -"Finding word suggestions": "Finder ord forslag", -"Success": "Succes", -"Repair": "Reparer", -"Issue {0} of {1}": "Problem {0} ud af {1}", -"Images must be marked as decorative or have an alternative text description": "Billeder skal markeres som dekorative eller have en alternativ tekstbeskrivelse", -"Images must have an alternative text description. Decorative images are not allowed.": "Billeder skal have en alternativ tekstbeskrivelse. Dekorative billeder er ikke tilladte.", -"Or provide alternative text:": "Eller angiv en alternativ tekst:", -"Make image decorative:": "G\u00f8r billede dekorativ:", -"ID attribute must be unique": "ID attribut skal v\u00e6re unik", -"Make ID unique": "G\u00f8r ID unik", -"Keep this ID and remove all others": "Behold dette ID og fjern alle andre", -"Remove this ID": "Fjern dette ID", -"Remove all IDs": "Fjern alle ID'er", -"Checklist": "Kontrolliste", -"Anchor": "Anker", -"Special character": "Specielle tegn", -"Code sample": "Kodepr\u00f8ve", -"Color": "Farve", -"Document properties": "Dokument egenskaber", -"Image description": "Billedbeskrivelse", -"Image": "Billede", -"Insert link": "Inds\u00e6t link", -"Target": "Target", -"Link": "Link", -"Poster": "Poster", -"Media": "Medier", -"Print": "Udskriv", -"Prev": "Forrige", -"Find and replace": "Find og erstat", -"Whole words": "Hele ord", -"Insert template": "Inds\u00e6t skabelon" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/de.es5.js b/build/media_source/vendor/tinymce/langs/de.es5.js deleted file mode 100644 index 074b5597b3486..0000000000000 --- a/build/media_source/vendor/tinymce/langs/de.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('de',{ -"Redo": "Wiederholen", -"Undo": "R\u00fcckg\u00e4ngig machen", -"Cut": "Ausschneiden", -"Copy": "Kopieren", -"Paste": "Einf\u00fcgen", -"Select all": "Alles ausw\u00e4hlen", -"New document": "Neues Dokument", -"Ok": "Ok", -"Cancel": "Abbrechen", -"Visual aids": "Visuelle Hilfen", -"Bold": "Fett", -"Italic": "Kursiv", -"Underline": "Unterstrichen", -"Strikethrough": "Durchgestrichen", -"Superscript": "Hochgestellt", -"Subscript": "Tiefgestellt", -"Clear formatting": "Formatierung entfernen", -"Align left": "Linksb\u00fcndig ausrichten", -"Align center": "Zentrieren", -"Align right": "Rechtsb\u00fcndig ausrichten", -"Justify": "Blocksatz", -"Bullet list": "Aufz\u00e4hlung", -"Numbered list": "Nummerierte Liste", -"Decrease indent": "Einzug verkleinern", -"Increase indent": "Einzug vergr\u00f6\u00dfern", -"Close": "Schlie\u00dfen", -"Formats": "Formate", -"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 Tastenkombinationen Strg+X\/C\/V.", -"Headers": "\u00dcberschriften", -"Header 1": "\u00dcberschrift 1", -"Header 2": "\u00dcberschrift 2", -"Header 3": "\u00dcberschrift 3", -"Header 4": "\u00dcberschrift 4", -"Header 5": "\u00dcberschrift 5", -"Header 6": "\u00dcberschrift 6", -"Headings": "\u00dcberschriften", -"Heading 1": "Kopfzeile 1", -"Heading 2": "Kopfzeile 2", -"Heading 3": "Kopfzeile 3", -"Heading 4": "Kopfzeile 4", -"Heading 5": "Kopfzeile 5", -"Heading 6": "Kopfzeile 6", -"Preformatted": "Vorformatiert", -"Div": "Div", -"Pre": "Pre", -"Code": "Code", -"Paragraph": "Absatz", -"Blockquote": "Blockquote", -"Inline": "Zeichenformate", -"Blocks": "Bl\u00f6cke", -"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!", -"Fonts": "Schriftarten", -"Font Sizes": "Schriftgr\u00f6\u00dfe", -"Class": "Klasse", -"Browse for an image": "Bild...", -"OR": "ODER", -"Drop an image here": "Bild hier ablegen", -"Upload": "Hochladen", -"Block": "Blocksatz", -"Align": "Ausrichten", -"Default": "Standard", -"Circle": "Kreis", -"Disc": "Punkt", -"Square": "Quadrat", -"Lower Alpha": "Kleinbuchstaben", -"Lower Greek": "Griechische Kleinbuchstaben", -"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)", -"Upper Alpha": "Gro\u00dfbuchstaben", -"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)", -"Anchor...": "Textmarke", -"Name": "Name", -"Id": "Kennung", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.", -"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", -"Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten", -"Language": "Sprache", -"Code sample...": "Codebeispiel...", -"Color Picker": "Farbwahl", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Von links nach rechts", -"Right to left": "Von rechts nach links", -"Emoticons": "Emoticons", -"Emoticons...": "Emoticons...", -"Metadata and Document Properties": "Dokument-Eigenschaften und -Metadaten", -"Title": "Titel", -"Keywords": "Sch\u00fcsselw\u00f6rter", -"Description": "Beschreibung", -"Robots": "Robots", -"Author": "Verfasser", -"Encoding": "Zeichenkodierung", -"Fullscreen": "Vollbild", -"Action": "Aktion", -"Shortcut": "Shortcut", -"Help": "Hilfe", -"Address": "Adresse", -"Focus to menubar": "Fokus auf Men\u00fcleiste", -"Focus to toolbar": "Fokus auf Werkzeugleiste", -"Focus to element path": "Fokus auf Elementpfad", -"Focus to contextual toolbar": "Fokus auf kontextbezogene Werkzeugleiste", -"Insert link (if link plugin activated)": "Link einf\u00fcgen (wenn Link-Plugin aktiviert ist)", -"Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)", -"Find (if searchreplace plugin activated)": "Suchen einf\u00fcgen (wenn Suchen\/Ersetzen-Plugin aktiviert ist)", -"Plugins installed ({0}):": "installierte Plugins ({0}):", -"Premium plugins:": "Premium Plugins:", -"Learn more...": "Erfahren Sie mehr dazu...", -"You are using {0}": "Sie verwenden {0}", -"Plugins": "Plugins", -"Handy Shortcuts": "Praktische Tastenkombinationen", -"Horizontal line": "Horizontale Linie", -"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten", -"Alternative description": "Alternative Beschreibung", -"Accessibility": "Barrierefreiheit", -"Image is decorative": "Bild ist dekorativ", -"Source": "Quelle", -"Dimensions": "Abmessungen", -"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten", -"General": "Allgemein", -"Advanced": "Erweitert", -"Style": "Stil", -"Vertical space": "Vertikaler Abstand", -"Horizontal space": "Horizontaler Abstand", -"Border": "Rahmen", -"Insert image": "Bild einf\u00fcgen", -"Image...": "Bild...", -"Image list": "Bildliste", -"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen", -"Rotate clockwise": "Im Uhrzeigersinn drehen", -"Flip vertically": "Vertikal spiegeln", -"Flip horizontally": "Horizontal spiegeln", -"Edit image": "Bild bearbeiten", -"Image options": "Bildeigenschaften", -"Zoom in": "Ansicht vergr\u00f6\u00dfern", -"Zoom out": "Ansicht verkleinern", -"Crop": "Bescheiden", -"Resize": "Skalieren", -"Orientation": "Ausrichtung", -"Brightness": "Helligkeit", -"Sharpen": "Sch\u00e4rfen", -"Contrast": "Kontrast", -"Color levels": "Farbwerte", -"Gamma": "Gamma", -"Invert": "Invertieren", -"Apply": "Anwenden", -"Back": "Zur\u00fcck", -"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ", -"Date\/time": "Datum\/Uhrzeit", -"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten", -"Text to display": "Anzuzeigender Text", -"Url": "URL", -"Open link in...": "Link \u00f6ffnen in...", -"Current window": "Aktuelles Fenster", -"None": "Keine", -"New window": "Neues Fenster", -"Open link": "Link \u00f6ffnen", -"Remove link": "Link entfernen", -"Anchors": "Textmarken", -"Link...": "Link...", -"Paste or type a link": "Link einf\u00fcgen oder eintippen", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Die eingegebene URL scheint ein externer Link zu sein. Soll das fehlende https:\/\/ davor erg\u00e4nzt werden?", -"Link list": "Linkliste", -"Insert video": "Video einf\u00fcgen", -"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten", -"Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten", -"Alternative source": "Alternative Quelle", -"Alternative source URL": "URL der alternativen Quelle", -"Media poster (Image URL)": "Medienposter (Bild-URL)", -"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:", -"Embed": "Einbetten", -"Media...": "Medien...", -"Nonbreaking space": "Gesch\u00fctztes Leerzeichen", -"Page break": "Seitenumbruch", -"Paste as text": "Als Text einf\u00fcgen", -"Preview": "Vorschau", -"Print...": "Drucken...", -"Save": "Speichern", -"Find": "Suchen", -"Replace with": "Ersetzen durch", -"Replace": "Ersetzen", -"Replace all": "Alles ersetzen", -"Previous": "Vorherige", -"Next": "Weiter", -"Find and Replace": "Suchen und Ersetzen", -"Find and replace...": "Suchen und ersetzen...", -"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.", -"Match case": "Gro\u00df-\/Kleinschreibung beachten", -"Find whole words only": "Nur ganze W\u00f6rter suchen", -"Find in selection": "In Auswahl suchen", -"Spellcheck": "Rechtschreibpr\u00fcfung", -"Spellcheck Language": "Sprache f\u00fcr die Rechtschreibpr\u00fcfung", -"No misspellings found.": "Keine Rechtschreibfehler gefunden", -"Ignore": "Ignorieren", -"Ignore all": "Alles Ignorieren", -"Finish": "Ende", -"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen", -"Insert table": "Tabelle einf\u00fcgen", -"Table properties": "Tabelleneigenschaften", -"Delete table": "Tabelle l\u00f6schen", -"Cell": "Zelle", -"Row": "Zeile", -"Column": "Spalte", -"Cell properties": "Zelleneigenschaften", -"Merge cells": "Zellen verbinden", -"Split cell": "Zelle aufteilen", -"Insert row before": "Neue Zeile davor einf\u00fcgen ", -"Insert row after": "Neue Zeile danach einf\u00fcgen", -"Delete row": "Zeile l\u00f6schen", -"Row properties": "Zeileneigenschaften", -"Cut row": "Zeile ausschneiden", -"Copy row": "Zeile kopieren", -"Paste row before": "Zeile davor einf\u00fcgen", -"Paste row after": "Zeile danach einf\u00fcgen", -"Insert column before": "Neue Spalte davor einf\u00fcgen", -"Insert column after": "Neue Spalte danach einf\u00fcgen", -"Delete column": "Spalte l\u00f6schen", -"Cols": "Spalten", -"Rows": "Zeilen", -"Width": "Breite", -"Height": "H\u00f6he", -"Cell spacing": "Zellenabstand", -"Cell padding": "Zelleninnenabstand", -"Caption": "Beschriftung", -"Show caption": "Beschriftung anzeigen", -"Left": "Linksb\u00fcndig", -"Center": "Zentriert", -"Right": "Rechtsb\u00fcndig", -"Cell type": "Zellentyp", -"Scope": "G\u00fcltigkeitsbereich", -"Alignment": "Ausrichtung", -"H Align": "Horizontale Ausrichtung", -"V Align": "Vertikale Ausrichtung", -"Top": "Oben", -"Middle": "Mitte", -"Bottom": "Unten", -"Header cell": "Kopfzelle", -"Row group": "Zeilengruppe", -"Column group": "Spaltengruppe", -"Row type": "Zeilentyp", -"Header": "Kopfzeile", -"Body": "Inhalt", -"Footer": "Fu\u00dfzeile", -"Border color": "Rahmenfarbe", -"Insert template...": "Vorlage einf\u00fcgen...", -"Templates": "Vorlagen", -"Template": "Vorlage", -"Text color": "Textfarbe", -"Background color": "Hintergrundfarbe", -"Custom...": "Benutzerdefiniert...", -"Custom color": "Benutzerdefinierte Farbe", -"No color": "Keine Farbe", -"Remove color": "Farbauswahl aufheben", -"Table of Contents": "Inhaltsverzeichnis", -"Show blocks": "Bl\u00f6cke anzeigen", -"Show invisible characters": "Unsichtbare Zeichen anzeigen", -"Word count": "Anzahl der W\u00f6rter", -"Count": "Anzahl", -"Document": "Dokument", -"Selection": "Auswahl", -"Words": "W\u00f6rter", -"Words: {0}": "W\u00f6rter: {0}", -"{0} words": "{0} W\u00f6rter", -"File": "Datei", -"Edit": "Bearbeiten", -"Insert": "Einf\u00fcgen", -"View": "Ansicht", -"Format": "Format", -"Table": "Tabelle", -"Tools": "Werkzeuge", -"Powered by {0}": "Betrieben von {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe", -"Image title": "Bildtitel", -"Border width": "Rahmenbreite", -"Border style": "Rahmenstil", -"Error": "Fehler", -"Warn": "Warnung", -"Valid": "G\u00fcltig", -"To open the popup, press Shift+Enter": "Dr\u00fccken Sie Umschalt+Eingabe, um das Popup-Fenster zu \u00f6ffnen.", -"Rich Text Area. Press ALT-0 for help.": "Rich-Text-Bereich. Dr\u00fccken Sie Alt+0 f\u00fcr Hilfe.", -"System Font": "Betriebssystemschriftart", -"Failed to upload image: {0}": "Bild konnte nicht hochgeladen werden: {0}", -"Failed to load plugin: {0} from url {1}": "Plugin konnte nicht geladen werden: {0} von URL {1}", -"Failed to load plugin url: {0}": "Plugin-URL konnte nicht geladen werden: {0}", -"Failed to initialize plugin: {0}": "Plugin konnte nicht initialisiert werden: {0}", -"example": "Beispiel", -"Search": "Suchen", -"All": "Alles", -"Currency": "W\u00e4hrung", -"Text": "Text", -"Quotations": "Anf\u00fchrungszeichen", -"Mathematical": "Mathematisch", -"Extended Latin": "Erweitertes Latein", -"Symbols": "Symbole", -"Arrows": "Pfeile", -"User Defined": "Benutzerdefiniert", -"dollar sign": "Dollarzeichen", -"currency sign": "W\u00e4hrungssymbol", -"euro-currency sign": "Eurozeichen", -"colon sign": "Doppelpunkt", -"cruzeiro sign": "Cruzeirozeichen", -"french franc sign": "Franczeichen", -"lira sign": "Lirezeichen", -"mill sign": "Millzeichen", -"naira sign": "Nairazeichen", -"peseta sign": "Pesetazeichen", -"rupee sign": "Rupiezeichen", -"won sign": "Wonzeichen", -"new sheqel sign": "Schekelzeichen", -"dong sign": "Dongzeichen", -"kip sign": "Kipzeichen", -"tugrik sign": "Tugrikzeichen", -"drachma sign": "Drachmezeichen", -"german penny symbol": "Pfennigzeichen", -"peso sign": "Pesozeichen", -"guarani sign": "Guaranizeichen", -"austral sign": "Australzeichen", -"hryvnia sign": "Hrywnjazeichen", -"cedi sign": "Cedizeichen", -"livre tournois sign": "Livrezeichen", -"spesmilo sign": "Spesmilozeichen", -"tenge sign": "Tengezeichen", -"indian rupee sign": "Indisches Rupiezeichen", -"turkish lira sign": "T\u00fcrkisches Lirazeichen", -"nordic mark sign": "Zeichen nordische Mark", -"manat sign": "Manatzeichen", -"ruble sign": "Rubelzeichen", -"yen character": "Yenzeichen", -"yuan character": "Yuanzeichen", -"yuan character, in hong kong and taiwan": "Yuanzeichen in Hongkong und Taiwan", -"yen\/yuan character variant one": "Yen-\/Yuanzeichen Variante 1", -"Loading emoticons...": "Emoticons werden geladen...", -"Could not load emoticons": "Emoticons konnten nicht geladen werden", -"People": "Menschen", -"Animals and Nature": "Tiere und Natur", -"Food and Drink": "Essen und Trinken", -"Activity": "Aktivit\u00e4t", -"Travel and Places": "Reisen und Orte", -"Objects": "Objekte", -"Flags": "Flaggen", -"Characters": "Zeichen", -"Characters (no spaces)": "Zeichen (ohne Leerzeichen)", -"{0} characters": "{0}\u00a0Zeichen", -"Error: Form submit field collision.": "Fehler: Kollision der Formularbest\u00e4tigungsfelder.", -"Error: No form element found.": "Fehler: Kein Formularelement gefunden.", -"Update": "Aktualisieren", -"Color swatch": "Farbpalette", -"Turquoise": "T\u00fcrkis", -"Green": "Gr\u00fcn", -"Blue": "Blau", -"Purple": "Violett", -"Navy Blue": "Marineblau", -"Dark Turquoise": "Dunkelt\u00fcrkis", -"Dark Green": "Dunkelgr\u00fcn", -"Medium Blue": "Mittleres Blau", -"Medium Purple": "Mittelviolett", -"Midnight Blue": "Mitternachtsblau", -"Yellow": "Gelb", -"Orange": "Orange", -"Red": "Rot", -"Light Gray": "Hellgrau", -"Gray": "Grau", -"Dark Yellow": "Dunkelgelb", -"Dark Orange": "Dunkelorange", -"Dark Red": "Dunkelrot", -"Medium Gray": "Mittelgrau", -"Dark Gray": "Dunkelgrau", -"Light Green": "Hellgr\u00fcn", -"Light Yellow": "Hellgelb", -"Light Red": "Hellrot", -"Light Purple": "Helllila", -"Light Blue": "Hellblau", -"Dark Purple": "Dunkellila", -"Dark Blue": "Dunkelblau", -"Black": "Schwarz", -"White": "Wei\u00df", -"Switch to or from fullscreen mode": "Vollbildmodus umschalten", -"Open help dialog": "Hilfe-Dialog \u00f6ffnen", -"history": "Historie", -"styles": "Stile", -"formatting": "Formatierung", -"alignment": "Ausrichtung", -"indentation": "Einr\u00fcckungen", -"Font": "Schriftart", -"Size": "Schriftgr\u00f6\u00dfe", -"More...": "Mehr...", -"Select...": "Auswahl...", -"Preferences": "Einstellungen", -"Yes": "Ja", -"No": "Nein", -"Keyboard Navigation": "Tastaturnavigation", -"Version": "Version", -"Code view": "Code Ansicht", -"Open popup menu for split buttons": "\u00d6ffne Popup Menge um Buttons zu trennen", -"List Properties": "Liste Eigenschaften", -"List properties...": "Liste Eigenschaften", -"Start list at number": "Beginne Liste mit Nummer", -"Line height": "Liniendicke", -"comments": "Anmerkungen", -"Format Painter": "Format-Painter", -"Insert\/edit iframe": "iframe einf\u00fcgen\/bearbeiten", -"Capitalization": "Gro\u00dfschreibung", -"lowercase": "Kleinbuchstaben", -"UPPERCASE": "Gro\u00dfbuchstaben", -"Title Case": "Gro\u00df-\/Kleinschreibung des Titels", -"permanent pen": "Textmarker", -"Permanent Pen Properties": "Eigenschaften von Permanent Pen", -"Permanent pen properties...": "Eigenschaften von Permanent Pen...", -"case change": "Gro\u00df-\/Kleinschreibung", -"page embed": "Seite einbetten", -"Advanced sort...": "Erweiterte Sortierung...", -"Advanced Sort": "Erweiterte Sortierung", -"Sort table by column ascending": "Tabelle aufsteigend nach Spalten sortieren", -"Sort table by column descending": "Tabelle absteigend nach Spalten sortieren", -"Sort": "Sortieren", -"Order": "Reihenfolge", -"Sort by": "Sortieren nach", -"Ascending": "Aufsteigend", -"Descending": "Absteigend", -"Column {0}": "Spalte {0}", -"Row {0}": "Reihe {0}", -"Spellcheck...": "Rechtschreibpr\u00fcfung...", -"Misspelled word": "Rechtschreibfehler", -"Suggestions": "Vorschl\u00e4ge", -"Change": "Ver\u00e4ndere", -"Finding word suggestions": "Finde Wort Vorschl\u00e4ge", -"Success": "Erfolg", -"Repair": "Reparieren", -"Issue {0} of {1}": "Fehler {0} von {1}", -"Images must be marked as decorative or have an alternative text description": "Bilder m\u00fcssen entweder als dekorativ markiert werden oder eine alternative Beschreibung bekommen", -"Images must have an alternative text description. Decorative images are not allowed.": "Bilder ben\u00f6tigen alternativen Text. Dekorative Bilder nicht erlaubt!", -"Or provide alternative text:": "Oder definiere alternativen Text:", -"Make image decorative:": "Markiere Bild als dekorativ:", -"ID attribute must be unique": "ID muss einzigartig sein", -"Make ID unique": "Mache diese ID einzigartig", -"Keep this ID and remove all others": "Behalte diese ID und entferne alle anderen", -"Remove this ID": "Entferne diese ID", -"Remove all IDs": "Entferne alle IDs", -"Checklist": "Checkliste", -"Anchor": "Textmarke", -"Special character": "Sonderzeichen", -"Code sample": "Codebeispiel", -"Color": "Farbe", -"Document properties": "Dokumenteigenschaften", -"Image description": "Bildbeschreibung", -"Image": "Bild", -"Insert link": "Link einf\u00fcgen", -"Target": "Ziel", -"Link": "Link", -"Poster": "Poster", -"Media": "Medium", -"Print": "Drucken", -"Prev": "Zur\u00fcck", -"Find and replace": "Suchen und ersetzen", -"Whole words": "Nur ganze W\u00f6rter", -"Insert template": "Vorlage einf\u00fcgen " -}); diff --git a/build/media_source/vendor/tinymce/langs/el.es5.js b/build/media_source/vendor/tinymce/langs/el.es5.js deleted file mode 100644 index 9e74da4d63730..0000000000000 --- a/build/media_source/vendor/tinymce/langs/el.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('el',{ -"Cut": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae", -"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.", -"Div": "Div", -"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", -"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", -"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", -"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", -"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", -"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", -"Header cell": "\u039a\u03b5\u03bb\u03af-\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", -"Column": "\u03a3\u03c4\u03ae\u03bb\u03b7", -"Cell": "\u039a\u03b5\u03bb\u03af", -"Header": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", -"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", -"Row group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd", -"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", -"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/build/media_source/vendor/tinymce/langs/es.es5.js b/build/media_source/vendor/tinymce/langs/es.es5.js deleted file mode 100644 index 64cc6ca7cdb5b..0000000000000 --- a/build/media_source/vendor/tinymce/langs/es.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('es',{ -"Redo": "Rehacer", -"Undo": "Deshacer", -"Cut": "Cortar", -"Copy": "Copiar", -"Paste": "Pegar", -"Select all": "Seleccionar todo", -"New document": "Nuevo documento", -"Ok": "Ok", -"Cancel": "Cancelar", -"Visual aids": "Ayudas visuales", -"Bold": "Negrita", -"Italic": "Cursiva", -"Underline": "Subrayado", -"Strikethrough": "Tachado", -"Superscript": "Super\u00edndice", -"Subscript": "Sub\u00edndice", -"Clear formatting": "Limpiar formato", -"Align left": "Alinear a la izquierda", -"Align center": "Centrar", -"Align right": "Alinear a la derecha", -"Justify": "Justificar", -"Bullet list": "Lista de vi\u00f1etas", -"Numbered list": "Lista numerada", -"Decrease indent": "Disminuir sangr\u00eda", -"Increase indent": "Aumentar sangr\u00eda", -"Close": "Cerrar", -"Formats": "Formatos", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no soporta el acceso directo al portapapeles. Por favor, use los comandos de teclado Ctrl+X\/C\/V", -"Headers": "Encabezados", -"Header 1": "Encabezado 1", -"Header 2": "Encabezado 2", -"Header 3": "Encabezado 3", -"Header 4": "Encabezado 4", -"Header 5": "Encabezado 5", -"Header 6": "Encabezado 6", -"Headings": "T\u00edtulos", -"Heading 1": "T\u00edtulo 1", -"Heading 2": "T\u00edtulo 2", -"Heading 3": "T\u00edtulo 3", -"Heading 4": "T\u00edtulo 4", -"Heading 5": "T\u00edtulo 5", -"Heading 6": "T\u00edtulo 6", -"Preformatted": "Preformateado", -"Div": "Div", -"Pre": "Pre", -"Code": "C\u00f3digo", -"Paragraph": "P\u00e1rrafo", -"Blockquote": "Cita", -"Inline": "En l\u00ednea", -"Blocks": "Bloques", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar ahora est\u00e1 en modo de texto sin formato. El contenido ahora se pegar\u00e1 como texto sin formato hasta que desactive esta opci\u00f3nn.", -"Fonts": "Fonts", -"Font Sizes": "Tama\u00f1os de fuente", -"Class": "Clase", -"Browse for an image": "Examinar imagen", -"OR": "O", -"Drop an image here": "Arrastrar imagen aqu\u00ed", -"Upload": "Subir", -"Block": "Bloque", -"Align": "Alinear", -"Default": "Predeterminado", -"Circle": "C\u00edrculo", -"Disc": "Disco", -"Square": "Cuadrado", -"Lower Alpha": "Alfa min\u00fascula", -"Lower Greek": "Griega min\u00fascula", -"Lower Roman": "Romana min\u00fascula", -"Upper Alpha": "Alfa may\u00fascula", -"Upper Roman": "Romana may\u00fascula", -"Anchor...": "Ancla...", -"Name": "Nombre", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "El ID debe comenzar con una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.", -"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar, \u00bfest\u00e1 seguro de que desea salir?", -"Restore last draft": "Restaurar el \u00faltimo borrador", -"Special character...": "Car\u00e1cter especial...", -"Source code": "C\u00f3digo fuente", -"Insert\/Edit code sample": "Insertar\/Editar c\u00f3ndigo de ejemplo", -"Language": "Idioma", -"Code sample...": "C\u00f3ndigo de ejemplo...", -"Color Picker": "Selector de color", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "De derecha a izquierda", -"Right to left": "De izquierda a derecha", -"Emoticons": "Emoticonos", -"Emoticons...": "Emoticonos...", -"Metadata and Document Properties": "Metadatos y Propiedades del documento", -"Title": "T\u00edtulo", -"Keywords": "Palabras clave", -"Description": "Descripci\u00f3nn", -"Robots": "Robots", -"Author": "Author", -"Encoding": "Codificaci\u00f3nn", -"Fullscreen": "Pantalla completa", -"Action": "Acci\u00f3nn", -"Shortcut": "Atajo", -"Help": "Ayuda", -"Address": "Direcci\u00f3nn", -"Focus to menubar": "Enfoque a la barra de men\u00fa", -"Focus to toolbar": "Enfoque a la barra de herramientas", -"Focus to element path": "Enfoque a la ruta del elemento", -"Focus to contextual toolbar": "Enfoque a la barra de herramientas contextual", -"Insert link (if link plugin activated)": "Insertar enlace (Si est\u00e1 activado el plugin de 'Enlaces')", -"Save (if save plugin activated)": "Guardar (Si est\u00e1 activado el plugin de 'Guardar')", -"Find (if searchreplace plugin activated)": "Buscar (Si est\u00e1 activado el plugin 'searchreplace')", -"Plugins installed ({0}):": "Plugins instalados ({0}):", -"Premium plugins:": "Plugins premium:", -"Learn more...": "Saber m\u00e1s...", -"You are using {0}": "Est\u00e1 usando {0}", -"Plugins": "Plugins", -"Handy Shortcuts": "Atajos pr\u00e1cticos", -"Horizontal line": "L\u00ednea horizontal", -"Insert\/edit image": "Insertar\/Editar imagen", -"Alternative description": "Descripci\u00f3n alternativa", -"Accessibility": "Accesibilidad", -"Image is decorative": "La imagen es decorativa", -"Source": "Origen", -"Dimensions": "Dimensiones", -"Constrain proportions": "Restringir las proporciones", -"General": "General", -"Advanced": "Advanzado", -"Style": "Estilo", -"Vertical space": "Espacio vertical", -"Horizontal space": "Espacio horizontal", -"Border": "Borde", -"Insert image": "Insertar imagen", -"Image...": "Imagen...", -"Image list": "Lista de im\u00e1genes", -"Rotate counterclockwise": "Rotar en sentido antihorario", -"Rotate clockwise": "Rotar en sentido horario", -"Flip vertically": "Voltear verticalmente", -"Flip horizontally": "Voltear horizontalmente", -"Edit image": "Editar imagen", -"Image options": "Opciones de imagen", -"Zoom in": "Ampliar", -"Zoom out": "Disminuir", -"Crop": "Recortar", -"Resize": "Redimensionar", -"Orientation": "Orientation", -"Brightness": "Brillo", -"Sharpen": "Agudizar", -"Contrast": "Contraste", -"Color levels": "Niveles de color", -"Gamma": "Gama", -"Invert": "Invertir", -"Apply": "Aplicar", -"Back": "Volver", -"Insert date\/time": "Insertar fecha\/hora", -"Date\/time": "Fecha\/Hora", -"Insert\/edit link": "Insertar\/Editar enlace", -"Text to display": "Texto a mostrar", -"Url": "Url", -"Open link in...": "Abrir el enlace en...", -"Current window": "Misma ventana", -"None": "Ninguna", -"New window": "Nueva ventana", -"Open link": "Abrir enlace", -"Remove link": "Eliminar enlace", -"Anchors": "Anclas", -"Link...": "Enlace...", -"Paste or type a link": "Pegue o escriba un enlace", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "La URL que ha introducido parece ser una direcci\u00f3nn de correo electr\u00f3nnico. \u00bfDesea a\u00f1adir el prefijo requerido 'para:'?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "La URL que ha introducido parece ser un enlace externo. \u00bfDesea agregar el prefijo requerido 'http:\/\/'?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "La URL que ha introducido parece ser un enlace externo. \u00bfDesea a\u00f1adir el prefijo requerido 'https:\/\/'?", -"Link list": "Lista de enlaces", -"Insert video": "Insertar v\u00eddeo", -"Insert\/edit video": "Insertar\/Editar v\u00eddeo", -"Insert\/edit media": "Insertar\/Editar multimedia", -"Alternative source": "Fuente alternativa", -"Alternative source URL": "Fuente alternativa de la URL", -"Media poster (Image URL)": "Poster multimedia (Imagen URL)", -"Paste your embed code below:": "Pegue su c\u00f3ndigo de inserci\u00f3nn a continuaci\u00f3nn:", -"Embed": "Insertado", -"Media...": "Multimedia...", -"Nonbreaking space": "Espacio irrompible", -"Page break": "Salto de p\u00e1gina", -"Paste as text": "Pegue un texto", -"Preview": "Vista previa", -"Print...": "Imprimir...", -"Save": "Guardar", -"Find": "Buscar", -"Replace with": "Reemplazar con", -"Replace": "Reemplazar", -"Replace all": "Reemplazar todo", -"Previous": "Anterior", -"Next": "Siguiente", -"Find and Replace": "Buscar y Reemplazar", -"Find and replace...": "Buscar y Reemplazar...", -"Could not find the specified string.": "No se pudo encontrar el texto especificado.", -"Match case": "Caso de coincidencia", -"Find whole words only": "Buscar solo por palabras completas", -"Find in selection": "Encontrar en la selecci\u00f3n", -"Spellcheck": "Corrector ortogr\u00e1fico", -"Spellcheck Language": "Idioma del corrector ortogr\u00e1fico", -"No misspellings found.": "No se encontraron errores ortogr\u00e1ficos.", -"Ignore": "Ignorar", -"Ignore all": "Ignorar todo", -"Finish": "Terminar", -"Add to Dictionary": "A\u00f1adir al diccionario", -"Insert table": "Insertar tabla", -"Table properties": "Propiedades de la tabla", -"Delete table": "Borrar tabla", -"Cell": "Celda", -"Row": "Fila", -"Column": "Columna", -"Cell properties": "Propiedades de la celda", -"Merge cells": "Combinar celdas", -"Split cell": "Separar celdas", -"Insert row before": "Insertar fila antes", -"Insert row after": "Insertar fila despu\u00e9s", -"Delete row": "Borrar fila", -"Row properties": "Propiedades de la fila", -"Cut row": "Cortar fila", -"Copy row": "Copiar fila", -"Paste row before": "Pegar fila antes", -"Paste row after": "Paste fila despu\u00e9s", -"Insert column before": "Insertar columna antes", -"Insert column after": "Insertar columna despu\u00e9s", -"Delete column": "Borrar columna", -"Cols": "Columnas", -"Rows": "Filas", -"Width": "Ancho", -"Height": "Alto", -"Cell spacing": "Espaciado de celdas", -"Cell padding": "Relleno de celdas", -"Caption": "T\u00edtulo", -"Show caption": "Mostrar t\u00edtulo", -"Left": "Izquierda", -"Center": "Centro", -"Right": "Derecha", -"Cell type": "Tipo de celda", -"Scope": "\u00c1mbito", -"Alignment": "Alineaci\u00f3nn", -"H Align": "Alineamineto H", -"V Align": "Alineamiento V", -"Top": "Superior", -"Middle": "Mitad", -"Bottom": "Inferior", -"Header cell": "Encabezado de celda", -"Row group": "Grupo de fila", -"Column group": "Grupo de columna", -"Row type": "Tipo de fila", -"Header": "Encabezado", -"Body": "Cuerpo", -"Footer": "Pie", -"Border color": "Color del borde", -"Insert template...": "Insertar plantilla...", -"Templates": "Plantillas", -"Template": "Plantilla", -"Text color": "Color del texto", -"Background color": "Color del fondo", -"Custom...": "Personalizado...", -"Custom color": "Color personalizado", -"No color": "Sin color", -"Remove color": "Quitar color", -"Table of Contents": "Tabla de contenidos", -"Show blocks": "Mostrar bloques", -"Show invisible characters": "Mostrar caracteres invisibles", -"Word count": "Contar palabras", -"Count": "Contar", -"Document": "Documento", -"Selection": "Selecci\u00f3nn", -"Words": "Palabras", -"Words: {0}": "Palabras: {0}", -"{0} words": "{0} palabras", -"File": "Archivo", -"Edit": "Editar", -"Insert": "Insertar", -"View": "Vista", -"Format": "Formato", -"Table": "Tabla", -"Tools": "Herramientas", -"Powered by {0}": "Powered by {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00e1rea de texto enriquecido. Presione ALT-F9 para el men\u00fa. Presione ALT-F10 para la barra de herramientas. Presione ALT-0 para obtener ayuda", -"Image title": "T\u00edtulo de la imagen", -"Border width": "Ancho del borde", -"Border style": "Estilo del borde", -"Error": "Error", -"Warn": "Advertencia", -"Valid": "V\u00e1lido", -"To open the popup, press Shift+Enter": "Para abrir la ventana emergente, presione Shift + Enter", -"Rich Text Area. Press ALT-0 for help.": "\u00e1rea de texto enriquecido. Presione ALT-0 para obtener ayuda.", -"System Font": "Fuente del sistema", -"Failed to upload image: {0}": "No se pudo subir la imagen: {0}", -"Failed to load plugin: {0} from url {1}": "No se pudo cargar el plugin: {0} desde la URL {1}", -"Failed to load plugin url: {0}": "No se pudo cargar la URL del plugin: {0}", -"Failed to initialize plugin: {0}": "No se pudo inicializar el plugin: {0}", -"example": "ejemplo", -"Search": "Buscar", -"All": "Todo", -"Currency": "Moneda", -"Text": "Texto", -"Quotations": "Citas", -"Mathematical": "Matem\u00e1tico", -"Extended Latin": "Lat\u00edn extendido", -"Symbols": "Simbolos", -"Arrows": "Flechas", -"User Defined": "Definido por el usuario", -"dollar sign": "s\u00edmbolo de d\u00f3nlar", -"currency sign": "s\u00edmbolo de moneda", -"euro-currency sign": "s\u00edmbolo de moneda euro", -"colon sign": "s\u00edmbolo de dos puntos", -"cruzeiro sign": "s\u00edmbolo de cruzeiro", -"french franc sign": "s\u00edmbolo del franco franc\u00e9s", -"lira sign": "s\u00edmbolo de lira", -"mill sign": "s\u00edmbolo de mill", -"naira sign": "s\u00edmbolo de naira", -"peseta sign": "s\u00edmbolo de peseta", -"rupee sign": "s\u00edmbolo de rupia", -"won sign": "s\u00edmbolo de won", -"new sheqel sign": "s\u00edmbolo de nuevo sheqel", -"dong sign": "s\u00edmbolo de dong", -"kip sign": "s\u00edmbolo de kip", -"tugrik sign": "s\u00edmbolo de tugrik", -"drachma sign": "s\u00edmbolo de dragma", -"german penny symbol": "s\u00edmbolo de un centavo alem\u00e1n", -"peso sign": "s\u00edmbolo de peso", -"guarani sign": "s\u00edmbolo de guarani", -"austral sign": "s\u00edmbolo de austral", -"hryvnia sign": "s\u00edmbolo de hryvnia", -"cedi sign": "s\u00edmbolo de cedi", -"livre tournois sign": "s\u00edmbolo de livre tournois", -"spesmilo sign": "s\u00edmbolo de spesmilo", -"tenge sign": "s\u00edmbolo de tenge", -"indian rupee sign": "s\u00edmbolo de rupia india", -"turkish lira sign": "s\u00edmbolo de lira turca", -"nordic mark sign": "s\u00edmbolo de marco n\u00f3nrdico", -"manat sign": "s\u00edmbolo de manat", -"ruble sign": "s\u00edmbolo de rublo", -"yen character": "caracter de yen", -"yuan character": "caracter de yuan", -"yuan character, in hong kong and taiwan": "caracter de yuan, en Hong Kong y Taiw\u00e1n", -"yen\/yuan character variant one": "variante uno de caracter yen\/yuan", -"Loading emoticons...": "Cargando emoticonos...", -"Could not load emoticons": "No se pudieron cargar emoticonos", -"People": "Gente", -"Animals and Nature": "Animales y naturaleza", -"Food and Drink": "Comida y bebida", -"Activity": "Actividad", -"Travel and Places": "Viajes y lugares", -"Objects": "Objectos", -"Flags": "Banderas", -"Characters": "Characteres", -"Characters (no spaces)": "Characteres (sin espacios)", -"{0} characters": "{0} characteres", -"Error: Form submit field collision.": "Error: Colisi\u00f3nn con env\u00edo de campo del formulario.", -"Error: No form element found.": "Error: no se encontr\u00f3n ning\u00fan elemento de formulario.", -"Update": "Actualizar", -"Color swatch": "Muestra de color", -"Turquoise": "Turquesa", -"Green": "Verde", -"Blue": "Azul", -"Purple": "Violeta", -"Navy Blue": "Azul marino", -"Dark Turquoise": "Turquesa oscuro", -"Dark Green": "Verde oscuro", -"Medium Blue": "Azul intermedio", -"Medium Purple": "Violeta intermedio", -"Midnight Blue": "Azul intermedio", -"Yellow": "Amarillo", -"Orange": "Naranja", -"Red": "Rojo", -"Light Gray": "Gris claro", -"Gray": "Gris", -"Dark Yellow": "Amarillo oscuro", -"Dark Orange": "Naranja oscuro", -"Dark Red": "Rojo oscuro", -"Medium Gray": "Gris intermedio", -"Dark Gray": "Gris oscuro", -"Light Green": "Verde claro", -"Light Yellow": "Amarillo claro", -"Light Red": "Rojo claro", -"Light Purple": "Violeta claro", -"Light Blue": "Azul claro", -"Dark Purple": "Vileta oscuro", -"Dark Blue": "Azul oscuro", -"Black": "Negro", -"White": "Blanco", -"Switch to or from fullscreen mode": "Cambiar hacia o desde el modo de pantalla completa", -"Open help dialog": "Abrir di\u00e1logo de ayuda", -"history": "historia", -"styles": "estilos", -"formatting": "formateo", -"alignment": "alineaci\u00f3nn", -"indentation": "sangr\u00eda", -"Font": "Fuente", -"Size": "Tama\u00f1o", -"More...": "M\u00e1s...", -"Select...": "Seleccionar...", -"Preferences": "Prefer\u00e9ncias", -"Yes": "S\u00ed", -"No": "No", -"Keyboard Navigation": "Navegaci\u00f3nn por teclado", -"Version": "Versi\u00f3nn", -"Code view": "Vista de c\u00f3digo", -"Open popup menu for split buttons": "Abrir men\u00fa emergente para botones divididos", -"List Properties": "Propiedades de lista", -"List properties...": "Propiedades de lista...", -"Start list at number": "Iniciar lista en el n\u00famero", -"Line height": "Altura de la l\u00ednea", -"comments": "comment\u00e1rios", -"Format Painter": "Pintura de formato", -"Insert\/edit iframe": "Insertar\/editar 'iframe'", -"Capitalization": "Capitalizaci\u00f3nn", -"lowercase": "min\u00f1scula", -"UPPERCASE": "MAY\u00daSCULA", -"Title Case": "Capitalizaci\u00f3nn del t\u00edtulo", -"permanent pen": "pluma permanente", -"Permanent Pen Properties": "Propiedades permanentes de la pluma", -"Permanent pen properties...": "Propiedades permanentes de la pluma...", -"case change": "Cambiar may\u00fasculas y min\u00fasculas", -"page embed": "p\u00e1gina incrustada", -"Advanced sort...": "Orden avanzado...", -"Advanced Sort": "Orden Avanzado", -"Sort table by column ascending": "Ordenar tabla por columna ascendente", -"Sort table by column descending": "Ordenar tabla por columna descendente", -"Sort": "Ordenar", -"Order": "Orden", -"Sort by": "Ordenar por", -"Ascending": "Ascendente", -"Descending": "Descendente", -"Column {0}": "Columna {0}", -"Row {0}": "Fila {0}", -"Spellcheck...": "Corrector...", -"Misspelled word": "Palabra mal escrita", -"Suggestions": "Sugerencias", -"Change": "Cambiar", -"Finding word suggestions": "Encontrar sugerencias de palabras", -"Success": "\u00c9xito", -"Repair": "Reparar", -"Issue {0} of {1}": "Problema {0} de {1}", -"Images must be marked as decorative or have an alternative text description": "Las im\u00e1genes deben estar marcadas como decorativas o tener una descripci\u00f3n de texto alternativo", -"Images must have an alternative text description. Decorative images are not allowed.": "Las im\u00e1genes deben tener una descripci\u00f3n de texto alternativa. No se permiten im\u00e1genes decorativas.", -"Or provide alternative text:": "O proporcione un texto alternativo:", -"Make image decorative:": "Hacer la imagen decorativa:", -"ID attribute must be unique": "El atributo del ID debe ser \u00fanico", -"Make ID unique": "Hacer que el ID sea \u00fanico", -"Keep this ID and remove all others": "Conserve este ID y elimine todos los dem\u00e1s", -"Remove this ID": "Eliminar este ID", -"Remove all IDs": "Eliminar todos los ID", -"Checklist": "Lista de verificaci\u00f3n", -"Anchor": "Ancla", -"Special character": "Car\u00e1cter especial", -"Code sample": "C\u00f3ndigo de ejemplo", -"Color": "Color", -"Document properties": "Propiedades del documento", -"Image description": "Descripci\u00f3nn de la imagen", -"Image": "Imagen", -"Insert link": "Insertar enlace", -"Target": "Destino", -"Link": "Enlace", -"Poster": "Poster", -"Media": "Multimedia", -"Print": "Imprimir", -"Prev": "Previsualizar", -"Find and replace": "Buscar y reemplazar", -"Whole words": "Palabras completas", -"Insert template": "Insertar plantilla" -}); diff --git a/build/media_source/vendor/tinymce/langs/et.es5.js b/build/media_source/vendor/tinymce/langs/et.es5.js deleted file mode 100644 index 752cc59f671fe..0000000000000 --- a/build/media_source/vendor/tinymce/langs/et.es5.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/build/media_source/vendor/tinymce/langs/eu.es5.js b/build/media_source/vendor/tinymce/langs/eu.es5.js deleted file mode 100644 index ac1edd497b457..0000000000000 --- a/build/media_source/vendor/tinymce/langs/eu.es5.js +++ /dev/null @@ -1,219 +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 zenbakiduna", -"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-indizea", -"Clear formatting": "Garbitu formatua", -"Font Sizes": "Letra-tamainak", -"Subscript": "Azpiindize", -"Header 6": "6 Goiburua", -"Redo": "Berregin", -"Paragraph": "Paragrafoa", -"Ok": "Ados", -"Bold": "Lodia", -"Code": "Kodea", -"Italic": "Etzana", -"Align center": "Lerrokatu 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 desaktibatu arte.", -"Underline": "Azpimarratua", -"Cancel": "Utzi", -"Justify": "Justifikatuta", -"Inline": "Lerroan", -"Copy": "Kopiatu", -"Align left": "Lerrokatu ezkerrean", -"Visual aids": "Laguntza bisualak", -"Lower Greek": "Greko minuskula", -"Square": "Karratua", -"Default": "Lehenetsia", -"Lower Alpha": "Letra minuskula", -"Circle": "Zirkulua", -"Disc": "Diskoa", -"Upper Alpha": "Letra maiuskula", -"Upper Roman": "Erromatar maiuskula", -"Lower Roman": "Erromatar minuskula", -"Name": "Izena", -"Anchor": "Esteka", -"You have unsaved changes are you sure you want to navigate away?": "Gorde gabeko aldaketak dituzu, ziur zaude hemendik irten nahi duzula?", -"Restore last draft": "Leheneratu azken zirriborroa", -"Special character": "Karaktere berezia", -"Source code": "Iturburu-kodea", -"B": "B", -"R": "R", -"G": "G", -"Color": "Kolorea", -"Right to left": "Eskuinetik ezkerrera", -"Left to right": "Ezkerretik eskuinera", -"Emoticons": "Aurpegierak", -"Robots": "Robotak", -"Document properties": "Dokumentuaren propietateak", -"Title": "Titulua", -"Keywords": "Gako-hitzak", -"Encoding": "Kodeketa", -"Description": "Deskribapena", -"Author": "Egilea", -"Fullscreen": "Pantaila osoa", -"Horizontal line": "Marra horizontala", -"Horizontal space": "Tarte horizontala", -"Insert\/edit image": "Txertatu\/editatu irudia", -"General": "Orokorra", -"Advanced": "Aurreratua", -"Source": "Iturburua", -"Border": "Ertza", -"Constrain proportions": "Mugatu proportzioak", -"Vertical space": "Tarte bertikala", -"Image description": "Irudiaren deskribapena", -"Style": "Estiloa", -"Dimensions": "Neurriak", -"Insert image": "Txertatu irudia", -"Zoom in": "Handiagotu", -"Contrast": "Kontrastea", -"Back": "Atzera", -"Gamma": "Gamma", -"Flip horizontally": "Irauli horizontalki", -"Resize": "Aldatu tamaina", -"Sharpen": "Araztu", -"Zoom out": "Txikiagotu", -"Image options": "Irudiaren aukerak", -"Apply": "Aplikatu", -"Brightness": "Distira", -"Rotate clockwise": "Biratu erlojuaren noranzkoan", -"Rotate counterclockwise": "Biratu erlojuaren aurkako noranzkoan", -"Edit image": "Editatu irudia", -"Color levels": "Kolore-mailak", -"Crop": "Moztu", -"Orientation": "Orientazioa", -"Flip vertically": "Irauli bertikalki", -"Invert": "Alderantzikatu", -"Insert date\/time": "Txertatu data\/ordua", -"Remove link": "Kendu esteka", -"Url": "Url", -"Text to display": "Bistaratzeko testua", -"Anchors": "Estekak", -"Insert link": "Txertatu esteka", -"New window": "Leiho 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 dirudi. Nahi duzu dagokion http:\/\/ aurrizkia gehitzea?", -"Target": "Helburua", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sartu duzun URL-ak posta helbide elektronikoa dirudi. Nahi duzu dagokion mailto: aurrizkia gehitzea?", -"Insert\/edit link": "Txertatu\/editatu esteka", -"Insert\/edit video": "Txertatu\/editatu bideoa", -"Poster": "Posterra", -"Alternative source": "Ordezko iturburua", -"Paste your embed code below:": "Itsatsi hemen zure kapsulatze-kodea:", -"Insert video": "Txertatu bideoa", -"Embed": "Kapsulatu", -"Nonbreaking space": "Zuriune zatiezina", -"Page break": "Orrialde-jauzia", -"Paste as text": "Itsatsi testu gisa", -"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": "Ordeztu honekin", -"Find": "Bilatu", -"Replace all": "Ordeztu dena", -"Match case": "Maiuskula\/minuskula", -"Prev": "Aurrekoa", -"Spellcheck": "Ortografia-egiaztapena", -"Finish": "Amaitu", -"Ignore all": "Ez ikusi egin dena", -"Ignore": "Ez ikusi egin", -"Add to Dictionary": "Gehitu hiztegian", -"Insert row before": "Txertatu errenkada aurretik", -"Rows": "Errenkadak", -"Height": "Altuera", -"Paste row after": "Itsatsi errenkada ondoren", -"Alignment": "Lerrokatzea", -"Border color": "Ertzaren kolorea", -"Column group": "Zutabe taldea", -"Row": "Errenkada", -"Insert column before": "Txertatu zutabea aurretik", -"Split cell": "Zatitu gelaxka", -"Cell padding": "Gelaxka-betegarria", -"Cell spacing": "Gelaxka-bitartea", -"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": "Ezabatu taula", -"H Align": "Lerrokatze horizontala", -"Top": "Goian", -"Header cell": "Goiburu-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 ondoren", -"Cols": "Zutabeak", -"Insert row after": "Txertatu errenkada ondoren", -"Width": "Zabalera", -"Cell properties": "Gelaxkaren propietateak", -"Left": "Ezkerra", -"Cut row": "Ebaki errenkada", -"Delete column": "Ezabatu zutabea", -"Center": "Erdia", -"Merge cells": "Konbinatu gelaxkak", -"Insert template": "Txertatu txantiloia", -"Templates": "Txantiloiak", -"Background color": "Atzeko planoaren kolorea", -"Custom...": "Pertsonalizatua...", -"Custom color": "Kolore pertsonalizatua", -"No color": "Kolorerik gabe", -"Text color": "Testuaren kolorea", -"Show blocks": "Erakutsi blokeak", -"Show invisible characters": "Erakutsi karaktere ikusezinak", -"Words: {0}": "Hitzak: {0}", -"Insert": "Txertatu", -"File": "Fitxategia", -"Edit": "Editatu", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Testu aberastuaren area. Sakatu ALT-F9 menurako. Sakatu ALT-F10 tresna-barrarako. Sakatu ALT-0 laguntzarako", -"Tools": "Tresnak", -"View": "Ikusi", -"Table": "Taula", -"Format": "Formatua" -}); diff --git a/build/media_source/vendor/tinymce/langs/fa.es5.js b/build/media_source/vendor/tinymce/langs/fa.es5.js deleted file mode 100644 index 385c0ab64f62c..0000000000000 --- a/build/media_source/vendor/tinymce/langs/fa.es5.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/build/media_source/vendor/tinymce/langs/fi.es5.js b/build/media_source/vendor/tinymce/langs/fi.es5.js deleted file mode 100644 index ee74c58e58ba5..0000000000000 --- a/build/media_source/vendor/tinymce/langs/fi.es5.js +++ /dev/null @@ -1,197 +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", -"Custom...": "Mukauta...", -"Custom color": "Mukautettu v\u00e4ri", -"No color": "Ei v\u00e4ri\u00e4", -"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/build/media_source/vendor/tinymce/langs/fo.es5.js b/build/media_source/vendor/tinymce/langs/fo.es5.js deleted file mode 100644 index ad64ec815c1a4..0000000000000 --- a/build/media_source/vendor/tinymce/langs/fo.es5.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/build/media_source/vendor/tinymce/langs/fr.es5.js b/build/media_source/vendor/tinymce/langs/fr.es5.js deleted file mode 100644 index e2733d6761fdf..0000000000000 --- a/build/media_source/vendor/tinymce/langs/fr.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('fr',{ -"Redo": "R\u00e9tablir", -"Undo": "Annuler", -"Cut": "Couper", -"Copy": "Copier", -"Paste": "Coller", -"Select all": "S\u00e9lectionner tout", -"New document": "Nouveau document", -"Ok": "OK", -"Cancel": "Annuler", -"Visual aids": "Aides visuelles", -"Bold": "Gras", -"Italic": "Italique", -"Underline": "Soulign\u00e9", -"Strikethrough": "Barr\u00e9", -"Superscript": "Exposant", -"Subscript": "Indice", -"Clear formatting": "Effacer la mise en forme", -"Align left": "Aligner \u00e0 gauche", -"Align center": "Centrer", -"Align right": "Aligner \u00e0 droite", -"Justify": "Justifier", -"Bullet list": "Liste \u00e0 puces", -"Numbered list": "Liste num\u00e9rot\u00e9e", -"Decrease indent": "R\u00e9duire le retrait", -"Increase indent": "Augmenter le retrait", -"Close": "Fermer", -"Formats": "Formats", -"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 l\u2019acc\u00e8s direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X\/C\/V.", -"Headers": "En-t\u00eates", -"Header 1": "En-t\u00eate 1", -"Header 2": "En-t\u00eate 2", -"Header 3": "En-t\u00eate 3", -"Header 4": "En-t\u00eate 4", -"Header 5": "En-t\u00eate 5", -"Header 6": "En-t\u00eate 6", -"Headings": "Titres", -"Heading 1": "Titre\u00a01", -"Heading 2": "Titre\u00a02", -"Heading 3": "Titre\u00a03", -"Heading 4": "Titre\u00a04", -"Heading 5": "Titre\u00a05", -"Heading 6": "Titre\u00a06", -"Preformatted": "Pr\u00e9format\u00e9", -"Div": "Div", -"Pre": "Pre", -"Code": "Code", -"Paragraph": "Paragraphe", -"Blockquote": "Blockquote", -"Inline": "En ligne", -"Blocks": "Blocs", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.", -"Fonts": "Polices", -"Font Sizes": "Tailles de police", -"Class": "Classe", -"Browse for an image": "Rechercher une image", -"OR": "OU", -"Drop an image here": "D\u00e9poser une image ici", -"Upload": "T\u00e9l\u00e9charger", -"Block": "Bloc", -"Align": "Aligner", -"Default": "Par d\u00e9faut", -"Circle": "Cercle", -"Disc": "Disque", -"Square": "Carr\u00e9", -"Lower Alpha": "Alpha minuscule", -"Lower Greek": "Grec minuscule", -"Lower Roman": "Romain minuscule", -"Upper Alpha": "Alpha majuscule", -"Upper Roman": "Romain majuscule", -"Anchor...": "Ancre...", -"Name": "Nom", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores", -"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\u00e8re sp\u00e9cial...", -"Source code": "Code source", -"Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code", -"Language": "Langue", -"Code sample...": "Exemple de code...", -"Color Picker": "S\u00e9lecteur de couleurs", -"R": "R", -"G": "V", -"B": "B", -"Left to right": "Gauche \u00e0 droite", -"Right to left": "Droite \u00e0 gauche", -"Emoticons": "Emotic\u00f4nes", -"Emoticons...": "\u00c9motic\u00f4nes...", -"Metadata and Document Properties": "M\u00e9tadonn\u00e9es et propri\u00e9t\u00e9s du document", -"Title": "Titre", -"Keywords": "Mots-cl\u00e9s", -"Description": "Description", -"Robots": "Robots", -"Author": "Auteur", -"Encoding": "Encodage", -"Fullscreen": "Plein \u00e9cran", -"Action": "Action", -"Shortcut": "Raccourci", -"Help": "Aide", -"Address": "Adresse", -"Focus to menubar": "Cibler la barre de menu", -"Focus to toolbar": "Cibler la barre d'outils", -"Focus to element path": "Cibler le chemin vers l'\u00e9l\u00e9ment", -"Focus to contextual toolbar": "Cibler la barre d'outils contextuelle", -"Insert link (if link plugin activated)": "Ins\u00e9rer un lien (si le module link est activ\u00e9)", -"Save (if save plugin activated)": "Enregistrer (si le module save est activ\u00e9)", -"Find (if searchreplace plugin activated)": "Rechercher (si le module searchreplace est activ\u00e9)", -"Plugins installed ({0}):": "Modules install\u00e9s ({0}) : ", -"Premium plugins:": "Modules premium :", -"Learn more...": "En savoir plus...", -"You are using {0}": "Vous utilisez {0}", -"Plugins": "Plugins", -"Handy Shortcuts": "Raccourcis utiles", -"Horizontal line": "Ligne horizontale", -"Insert\/edit image": "Ins\u00e9rer\/modifier une image", -"Alternative description": "Description alternative", -"Accessibility": "Accessibilit\u00e9", -"Image is decorative": "L'image est d\u00e9corative", -"Source": "Source", -"Dimensions": "Dimensions", -"Constrain proportions": "Conserver les proportions", -"General": "G\u00e9n\u00e9ral", -"Advanced": "Avanc\u00e9", -"Style": "Style", -"Vertical space": "Espacement vertical", -"Horizontal space": "Espacement horizontal", -"Border": "Bordure", -"Insert image": "Ins\u00e9rer une image", -"Image...": "Image...", -"Image list": "Liste d'images", -"Rotate counterclockwise": "Rotation anti-horaire", -"Rotate clockwise": "Rotation horaire", -"Flip vertically": "Retournement vertical", -"Flip horizontally": "Retournement horizontal", -"Edit image": "Modifier l'image", -"Image options": "Options de l'image", -"Zoom in": "Zoomer", -"Zoom out": "D\u00e9zoomer", -"Crop": "Rogner", -"Resize": "Redimensionner", -"Orientation": "Orientation", -"Brightness": "Luminosit\u00e9", -"Sharpen": "Affiner", -"Contrast": "Contraste", -"Color levels": "Niveaux de couleur", -"Gamma": "Gamma", -"Invert": "Inverser", -"Apply": "Appliquer", -"Back": "Retour", -"Insert date\/time": "Ins\u00e9rer date\/heure", -"Date\/time": "Date\/heure", -"Insert\/edit link": "Ins\u00e9rer\/modifier un lien", -"Text to display": "Texte \u00e0 afficher", -"Url": "Url", -"Open link in...": "Ouvrir le lien dans...", -"Current window": "Fen\u00eatre active", -"None": "n\/a", -"New window": "Nouvelle fen\u00eatre", -"Open link": "Ouvrir le lien", -"Remove link": "Enlever le lien", -"Anchors": "Ancres", -"Link...": "Lien...", -"Paste or type a link": "Coller ou taper un lien", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "L'URL que vous avez saisie semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe https:\/\/ requis\u00a0?", -"Link list": "Liste de liens", -"Insert video": "Ins\u00e9rer une vid\u00e9o", -"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o", -"Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia", -"Alternative source": "Source alternative", -"Alternative source URL": "URL de la source alternative", -"Media poster (Image URL)": "Affiche de m\u00e9dia (URL de l'image)", -"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :", -"Embed": "Int\u00e9grer", -"Media...": "M\u00e9dia...", -"Nonbreaking space": "Espace ins\u00e9cable", -"Page break": "Saut de page", -"Paste as text": "Coller comme texte", -"Preview": "Pr\u00e9visualiser", -"Print...": "Imprimer...", -"Save": "Enregistrer", -"Find": "Chercher", -"Replace with": "Remplacer par", -"Replace": "Remplacer", -"Replace all": "Tout remplacer", -"Previous": "Pr\u00e9c\u00e9dente", -"Next": "Suiv", -"Find and Replace": "Trouver et remplacer", -"Find and replace...": "Trouver et remplacer...", -"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.", -"Match case": "Respecter la casse", -"Find whole words only": "Mot entier", -"Find in selection": "Trouver dans la s\u00e9lection", -"Spellcheck": "V\u00e9rification orthographique", -"Spellcheck Language": "Langue du correcteur orthographique", -"No misspellings found.": "Aucune faute d'orthographe trouv\u00e9e.", -"Ignore": "Ignorer", -"Ignore all": "Tout ignorer", -"Finish": "Finie", -"Add to Dictionary": "Ajouter au dictionnaire", -"Insert table": "Ins\u00e9rer un tableau", -"Table properties": "Propri\u00e9t\u00e9s du tableau", -"Delete table": "Supprimer le tableau", -"Cell": "Cellule", -"Row": "Ligne", -"Column": "Colonne", -"Cell properties": "Propri\u00e9t\u00e9s de la cellule", -"Merge cells": "Fusionner les cellules", -"Split cell": "Diviser la cellule", -"Insert row before": "Ins\u00e9rer une ligne avant", -"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s", -"Delete row": "Effacer la ligne", -"Row properties": "Propri\u00e9t\u00e9s de la ligne", -"Cut row": "Couper la ligne", -"Copy row": "Copier la ligne", -"Paste row before": "Coller la ligne avant", -"Paste row after": "Coller la ligne apr\u00e8s", -"Insert column before": "Ins\u00e9rer une colonne avant", -"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s", -"Delete column": "Effacer la colonne", -"Cols": "Colonnes", -"Rows": "Lignes", -"Width": "Largeur", -"Height": "Hauteur", -"Cell spacing": "Espacement inter-cellulles", -"Cell padding": "Espacement interne cellule", -"Caption": "Titre", -"Show caption": "Afficher le sous-titrage", -"Left": "Gauche", -"Center": "Centr\u00e9", -"Right": "Droite", -"Cell type": "Type de cellule", -"Scope": "Etendue", -"Alignment": "Alignement", -"H Align": "Alignement H", -"V Align": "Alignement V", -"Top": "Haut", -"Middle": "Milieu", -"Bottom": "Bas", -"Header cell": "Cellule d'en-t\u00eate", -"Row group": "Groupe de lignes", -"Column group": "Groupe de colonnes", -"Row type": "Type de ligne", -"Header": "En-t\u00eate", -"Body": "Corps", -"Footer": "Pied", -"Border color": "Couleur de la bordure", -"Insert template...": "Ins\u00e9rer un mod\u00e8le...", -"Templates": "Th\u00e8mes", -"Template": "Mod\u00e8le", -"Text color": "Couleur du texte", -"Background color": "Couleur d'arri\u00e8re-plan", -"Custom...": "Personnalis\u00e9...", -"Custom color": "Couleur personnalis\u00e9e", -"No color": "Aucune couleur", -"Remove color": "Supprimer la couleur", -"Table of Contents": "Table des mati\u00e8res", -"Show blocks": "Afficher les blocs", -"Show invisible characters": "Afficher les caract\u00e8res invisibles", -"Word count": "Nombre de mots", -"Count": "Total", -"Document": "Document", -"Selection": "S\u00e9lection", -"Words": "Mots", -"Words: {0}": "Mots : {0}", -"{0} words": "{0} mots", -"File": "Fichier", -"Edit": "Editer", -"Insert": "Ins\u00e9rer", -"View": "Voir", -"Format": "Format", -"Table": "Tableau", -"Tools": "Outils", -"Powered by {0}": "Propuls\u00e9 par {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.", -"Image title": "Titre d'image", -"Border width": "\u00c9paisseur de la bordure", -"Border style": "Style de la bordure", -"Error": "Erreur", -"Warn": "Avertir", -"Valid": "Valide", -"To open the popup, press Shift+Enter": "Pour ouvrir la popup, appuyez sur Maj+Entr\u00e9e", -"Rich Text Area. Press ALT-0 for help.": "Zone de texte riche. Appuyez sur ALT-0 pour l'aide.", -"System Font": "Police syst\u00e8me", -"Failed to upload image: {0}": "\u00c9chec d'envoi de l'image\u00a0: {0}", -"Failed to load plugin: {0} from url {1}": "\u00c9chec de chargement du plug-in\u00a0: {0} \u00e0 partir de l\u2019URL {1}", -"Failed to load plugin url: {0}": "\u00c9chec de chargement de l'URL du plug-in\u00a0: {0}", -"Failed to initialize plugin: {0}": "\u00c9chec d'initialisation du plug-in\u00a0: {0}", -"example": "exemple", -"Search": "Rechercher", -"All": "Tout", -"Currency": "Devise", -"Text": "Texte", -"Quotations": "Citations", -"Mathematical": "Op\u00e9rateurs math\u00e9matiques", -"Extended Latin": "Latin \u00e9tendu", -"Symbols": "Symboles", -"Arrows": "Fl\u00e8ches", -"User Defined": "D\u00e9fini par l'utilisateur", -"dollar sign": "Symbole dollar", -"currency sign": "Symbole devise", -"euro-currency sign": "Symbole euro", -"colon sign": "Symbole col\u00f3n", -"cruzeiro sign": "Symbole cruzeiro", -"french franc sign": "Symbole franc fran\u00e7ais", -"lira sign": "Symbole lire", -"mill sign": "Symbole milli\u00e8me", -"naira sign": "Symbole naira", -"peseta sign": "Symbole peseta", -"rupee sign": "Symbole roupie", -"won sign": "Symbole won", -"new sheqel sign": "Symbole nouveau ch\u00e9kel", -"dong sign": "Symbole dong", -"kip sign": "Symbole kip", -"tugrik sign": "Symbole tougrik", -"drachma sign": "Symbole drachme", -"german penny symbol": "Symbole pfennig", -"peso sign": "Symbole peso", -"guarani sign": "Symbole guarani", -"austral sign": "Symbole austral", -"hryvnia sign": "Symbole hryvnia", -"cedi sign": "Symbole cedi", -"livre tournois sign": "Symbole livre tournois", -"spesmilo sign": "Symbole spesmilo", -"tenge sign": "Symbole tenge", -"indian rupee sign": "Symbole roupie indienne", -"turkish lira sign": "Symbole lire turque", -"nordic mark sign": "Symbole du mark nordique", -"manat sign": "Symbole manat", -"ruble sign": "Symbole rouble", -"yen character": "Sinogramme Yen", -"yuan character": "Sinogramme Yuan", -"yuan character, in hong kong and taiwan": "Sinogramme Yuan, Hong Kong et Taiwan", -"yen\/yuan character variant one": "Sinogramme Yen\/Yuan, premi\u00e8re variante", -"Loading emoticons...": "Chargement des \u00e9motic\u00f4nes en cours...", -"Could not load emoticons": "\u00c9chec de chargement des \u00e9motic\u00f4nes", -"People": "Personnes", -"Animals and Nature": "Animaux & nature", -"Food and Drink": "Nourriture & boissons", -"Activity": "Activit\u00e9", -"Travel and Places": "Voyages & lieux", -"Objects": "Objets", -"Flags": "Drapeaux", -"Characters": "Caract\u00e8res", -"Characters (no spaces)": "Caract\u00e8res (espaces non compris)", -"{0} characters": "{0}\u00a0caract\u00e8res", -"Error: Form submit field collision.": "Erreur\u00a0: conflit de champs lors de la soumission du formulaire.", -"Error: No form element found.": "Erreur : aucun \u00e9l\u00e9ment de formulaire trouv\u00e9.", -"Update": "Mettre \u00e0 jour", -"Color swatch": "\u00c9chantillon de couleurs", -"Turquoise": "Turquoise", -"Green": "Vert", -"Blue": "Bleu", -"Purple": "Violet", -"Navy Blue": "Bleu marine", -"Dark Turquoise": "Turquoise fonc\u00e9", -"Dark Green": "Vert fonc\u00e9", -"Medium Blue": "Bleu moyen", -"Medium Purple": "Violet moyen", -"Midnight Blue": "Bleu de minuit", -"Yellow": "Jaune", -"Orange": "Orange", -"Red": "Rouge", -"Light Gray": "Gris clair", -"Gray": "Gris", -"Dark Yellow": "Jaune fonc\u00e9", -"Dark Orange": "Orange fonc\u00e9", -"Dark Red": "Rouge fonc\u00e9", -"Medium Gray": "Gris moyen", -"Dark Gray": "Gris fonc\u00e9", -"Light Green": "Vert clair", -"Light Yellow": "Jaune clair", -"Light Red": "Rouge clair", -"Light Purple": "Violet clair", -"Light Blue": "Bleu clair", -"Dark Purple": "Violet fonc\u00e9", -"Dark Blue": "Bleu fonc\u00e9", -"Black": "Noir", -"White": "Blanc", -"Switch to or from fullscreen mode": "Passer en ou quitter le mode plein \u00e9cran", -"Open help dialog": "Ouvrir la bo\u00eete de dialogue d'aide", -"history": "historique", -"styles": "styles", -"formatting": "mise en forme", -"alignment": "alignement", -"indentation": "retrait", -"Font": "Police", -"Size": "Taille", -"More...": "Plus...", -"Select...": "S\u00e9lectionner...", -"Preferences": "Pr\u00e9f\u00e9rences", -"Yes": "Oui", -"No": "Non", -"Keyboard Navigation": "Navigation au clavier", -"Version": "Version", -"Code view": "Affichage du code", -"Open popup menu for split buttons": "Ouvrir le menu contextuel pour les boutons partag\u00e9s", -"List Properties": "Propri\u00e9t\u00e9s de la liste", -"List properties...": "Lister les propri\u00e9t\u00e9s...", -"Start list at number": "Liste de d\u00e9part au num\u00e9ro", -"Line height": "Hauteur de la ligne", -"comments": "commentaires", -"Format Painter": "Reproduire la mise en forme", -"Insert\/edit iframe": "Ins\u00e9rer\/modifier iframe", -"Capitalization": "Mise en majuscules", -"lowercase": "minuscule", -"UPPERCASE": "MAJUSCULE", -"Title Case": "Casse du titre", -"permanent pen": "feutre ind\u00e9l\u00e9bile", -"Permanent Pen Properties": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile", -"Permanent pen properties...": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile...", -"case change": "changement de cas", -"page embed": "int\u00e9gration de page", -"Advanced sort...": "Tri avanc\u00e9...", -"Advanced Sort": "Tri avanc\u00e9", -"Sort table by column ascending": "Trier le tableau par colonne ascendante", -"Sort table by column descending": "Trier le tableau par colonne en ordre d\u00e9croissant", -"Sort": "Sorte", -"Order": "Ordre", -"Sort by": "Trier par", -"Ascending": "Ascendant", -"Descending": "Descendant", -"Column {0}": "Colonne {0}", -"Row {0}": "Ligne {0}", -"Spellcheck...": "V\u00e9rification orthographique...", -"Misspelled word": "Mot mal orthographi\u00e9", -"Suggestions": "Suggestions", -"Change": "Changement", -"Finding word suggestions": "Trouver des suggestions de mots", -"Success": "Succ\u00e8s", -"Repair": "R\u00e9paration", -"Issue {0} of {1}": " {0} Erreur sur {1}", -"Images must be marked as decorative or have an alternative text description": "Les images doivent \u00eatre marqu\u00e9es comme d\u00e9coratives ou avoir une description textuelle alternative", -"Images must have an alternative text description. Decorative images are not allowed.": "Les images doivent avoir une description textuelle alternative. Les images d\u00e9coratives ne sont pas autoris\u00e9es.", -"Or provide alternative text:": "Ou fournissez un texte alternatif\u00a0:", -"Make image decorative:": "Rendre l'image d\u00e9corative\u00a0:", -"ID attribute must be unique": "L'attribut ID doit \u00eatre unique", -"Make ID unique": "Rendre l'identifiant unique", -"Keep this ID and remove all others": "Conservez cet identifiant et supprimez tous les autres", -"Remove this ID": "Supprimer cet identifiant", -"Remove all IDs": "Supprimer tous les identifiants", -"Checklist": "Liste de contr\u00f4le", -"Anchor": "Ancre", -"Special character": "Caract\u00e8res sp\u00e9ciaux", -"Code sample": "Extrait de code", -"Color": "Couleur", -"Document properties": "Propri\u00e9t\u00e9 du document", -"Image description": "Description de l'image", -"Image": "Image", -"Insert link": "Ins\u00e9rer un lien", -"Target": "Cible", -"Link": "Lien", -"Poster": "Publier", -"Media": "M\u00e9dia", -"Print": "Imprimer", -"Prev": "Pr\u00e9c ", -"Find and replace": "Trouver et remplacer", -"Whole words": "Mots entiers", -"Insert template": "Ajouter un th\u00e8me" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/ga.es5.js b/build/media_source/vendor/tinymce/langs/ga.es5.js deleted file mode 100644 index 847877a0827fb..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ga.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('ga',{ -"Cut": "Gearr", -"Heading 5": "Ceannteideal 5", -"Header 2": "Ceannt\u00e1sc 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "N\u00ed f\u00e9idir le do bhrabhs\u00e1la\u00ed teacht go d\u00edreach ar an ngearrthaisce. Bain \u00fas\u00e1id as na haicearra\u00ed Ctrl+X\/C\/V. ", -"Heading 4": "Ceannteideal 4", -"Div": "Deighilt", -"Heading 2": "Ceannteideal 2", -"Paste": "Greamaigh", -"Close": "D\u00fan", -"Font Family": "Cl\u00f3fhoireann", -"Pre": "R\u00e9amh", -"Align right": "Ail\u00ednigh ar dheis", -"New document": "C\u00e1ip\u00e9is nua", -"Blockquote": "Athfhriotal", -"Numbered list": "Liosta Uimhrithe", -"Heading 1": "Ceannteideal 1", -"Headings": "Ceannteidil", -"Increase indent": "M\u00e9adaigh eang", -"Formats": "Form\u00e1id\u00ed", -"Headers": "Ceannt\u00e1sca", -"Select all": "Roghnaigh uile", -"Header 3": "Ceannt\u00e1sc 3", -"Blocks": "Blocanna", -"Undo": "Cealaigh", -"Strikethrough": "L\u00edne tr\u00edd", -"Bullet list": "Liosta Urchar", -"Header 1": "Ceannt\u00e1sc 1", -"Superscript": "Forscript", -"Clear formatting": "Glan form\u00e1idi\u00fa", -"Font Sizes": "Cl\u00f3mh\u00e9ideanna", -"Subscript": "Foscript", -"Header 6": "Ceannt\u00e1sc 6", -"Redo": "Athdh\u00e9an", -"Paragraph": "Alt", -"Ok": "OK", -"Bold": "Trom", -"Code": "C\u00f3d", -"Italic": "Iod\u00e1lach", -"Align center": "Ail\u00ednigh sa l\u00e1r", -"Header 5": "Ceannt\u00e1sc 5", -"Heading 6": "Ceannteideal 6", -"Heading 3": "Ceannteideal 3", -"Decrease indent": "Laghdaigh eang", -"Header 4": "Ceannt\u00e1sc 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Sa m\u00f3d gn\u00e1th-th\u00e9acs anois. Gream\u00f3far \u00e1bhar mar ghn\u00e1th-th\u00e9acs go dt\u00ed go m\u00fachfaidh t\u00fa an rogha seo.", -"Underline": "Fol\u00edne", -"Cancel": "Cealaigh", -"Justify": "Comhfhadaigh", -"Inline": "Inl\u00edne", -"Copy": "C\u00f3ipe\u00e1il", -"Align left": "Ail\u00ednigh ar chl\u00e9", -"Visual aids": "\u00c1iseanna amhairc", -"Lower Greek": "Litir Bheag Ghr\u00e9agach", -"Square": "Cearn\u00f3g", -"Default": "R\u00e9amhshocr\u00fa", -"Lower Alpha": "Alfa Beag", -"Circle": "Ciorcal", -"Disc": "Diosca", -"Upper Alpha": "Alfa M\u00f3r", -"Upper Roman": "Litir Mh\u00f3r R\u00f3mh\u00e1nach", -"Lower Roman": "Litir Bheag R\u00f3mh\u00e1nach", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "N\u00ed m\u00f3r don aitheantas tos\u00fa le litir, agus gan ach litreacha, uimhreacha, daiseanna, poncanna, idirstadanna, n\u00f3 fostr\u00edoca ina dhiaidh sin.", -"Name": "Ainm", -"Anchor": "Ancaire", -"Id": "Aitheantas", -"You have unsaved changes are you sure you want to navigate away?": "T\u00e1 athruithe gan s\u00e1bh\u00e1il ann. An bhfuil t\u00fa cinnte gur mhaith leat imeacht amach as seo?", -"Restore last draft": "Oscail an dr\u00e9acht is d\u00e9ana\u00ed", -"Special character": "Carachtar speisialta", -"Source code": "C\u00f3d foinseach", -"Language": "Teanga", -"Insert\/Edit code sample": "Cuir sampla c\u00f3id isteach\/in eagar", -"B": "G", -"R": "D", -"G": "U", -"Color": "Dath", -"Right to left": "Deas-go-cl\u00e9", -"Left to right": "Cl\u00e9-go-deas", -"Emoticons": "Straoiseoga", -"Robots": "R\u00f3bait", -"Document properties": "Air\u00edonna na C\u00e1ip\u00e9ise", -"Title": "Teideal", -"Keywords": "Lorgfhocail", -"Encoding": "Ionch\u00f3d\u00fa", -"Description": "Cur S\u00edos", -"Author": "\u00dadar", -"Fullscreen": "L\u00e1nsc\u00e1ile\u00e1n", -"Horizontal line": "L\u00edne chothrom\u00e1nach", -"Horizontal space": "Sp\u00e1s cothrom\u00e1nach", -"Insert\/edit image": "Cuir \u00edomh\u00e1 isteach\/in eagar", -"General": "Ginear\u00e1lta", -"Advanced": "Casta", -"Source": "Foinse", -"Border": "Iml\u00edne", -"Constrain proportions": "Comhr\u00e9ir faoi ghlas", -"Vertical space": "Sp\u00e1s ingearach", -"Image description": "Cur s\u00edos ar an \u00edomh\u00e1", -"Style": "St\u00edl", -"Dimensions": "Tois\u00ed", -"Insert image": "Cuir \u00edomh\u00e1 isteach", -"Image": "\u00cdomh\u00e1", -"Zoom in": "Z\u00fam\u00e1il isteach", -"Contrast": "Codarsnacht", -"Back": "Siar", -"Gamma": "G\u00e1ma", -"Flip horizontally": "Cas go cothrom\u00e1nach", -"Resize": "Athraigh m\u00e9id", -"Sharpen": "G\u00e9araigh", -"Zoom out": "Z\u00fam\u00e1il amach", -"Image options": "Roghanna \u00edomh\u00e1", -"Apply": "Cuir i bhfeidhm", -"Brightness": "Gile", -"Rotate clockwise": "Rothlaigh ar deiseal", -"Rotate counterclockwise": "Rothlaigh ar tuathal", -"Edit image": "Cuir an \u00edomh\u00e1 in eagar", -"Color levels": "Leibh\u00e9il datha", -"Crop": "Bear", -"Orientation": "Treoshu\u00edomh", -"Flip vertically": "Cas go hingearach", -"Invert": "Inbh\u00e9artaigh", -"Date\/time": "D\u00e1ta\/am", -"Insert date\/time": "Cuir d\u00e1ta\/am isteach", -"Remove link": "Bain an nasc", -"Url": "URL", -"Text to display": "T\u00e9acs le taispe\u00e1int", -"Anchors": "Ancair\u00ed", -"Insert link": "Cuir nasc isteach", -"Link": "Nasc", -"New window": "Fuinneog nua", -"None": "Dada", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Is nasc seachtrach \u00e9 an URL a chuir t\u00fa isteach. An bhfuil fonn ort an r\u00e9im\u00edr riachtanach http:\/\/ a chur leis?", -"Paste or type a link": "Greamaigh n\u00f3 cl\u00f3scr\u00edobh nasc", -"Target": "Sprioc", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Is seoladh r\u00edomhphoist \u00e9 an URL a chuir t\u00fa isteach. An bhfuil fonn ort an r\u00e9im\u00edr riachtanach mailto: a chur leis?", -"Insert\/edit link": "Cuir nasc isteach\/in eagar", -"Insert\/edit video": "Cuir f\u00edse\u00e1n isteach\/in eagar", -"Media": "Me\u00e1in", -"Alternative source": "Foinse mhalartach", -"Paste your embed code below:": "Greamaigh do ch\u00f3d leabaithe th\u00edos:", -"Insert video": "Cuir f\u00edse\u00e1n isteach", -"Poster": "P\u00f3staer", -"Insert\/edit media": "Cuir me\u00e1n isteach\/in eagar", -"Embed": "Leabaigh", -"Nonbreaking space": "Sp\u00e1s neamhbhristeach", -"Page break": "Briseadh leathanaigh", -"Paste as text": "Greamaigh mar th\u00e9acs", -"Preview": "R\u00e9amhamharc", -"Print": "Priont\u00e1il", -"Save": "S\u00e1bh\u00e1il", -"Could not find the specified string.": "N\u00edor aims\u00edodh an teaghr\u00e1n.", -"Replace": "Ionadaigh", -"Next": "Ar aghaidh", -"Whole words": "Focail ioml\u00e1na", -"Find and replace": "Aimsigh agus ionadaigh", -"Replace with": "Ionadaigh le", -"Find": "Aimsigh", -"Replace all": "Ionadaigh uile", -"Match case": "C\u00e1s-\u00edogair", -"Prev": "Siar", -"Spellcheck": "Seice\u00e1il an litri\u00fa", -"Finish": "Cr\u00edochnaigh", -"Ignore all": "D\u00e9an neamhaird orthu go l\u00e9ir", -"Ignore": "D\u00e9an neamhaird air", -"Add to Dictionary": "Cuir leis an bhFocl\u00f3ir \u00e9", -"Insert row before": "Ions\u00e1igh r\u00f3 os a chionn", -"Rows": "R\u00f3nna", -"Height": "Airde", -"Paste row after": "Greamaigh r\u00f3 faoi", -"Alignment": "Ail\u00edni\u00fa", -"Border color": "Dath na himl\u00edne", -"Column group": "Gr\u00fapa col\u00fan", -"Row": "R\u00f3", -"Insert column before": "Ions\u00e1igh col\u00fan ar chl\u00e9", -"Split cell": "Roinn cill", -"Cell padding": "Stu\u00e1il ceall", -"Cell spacing": "Sp\u00e1s\u00e1il ceall", -"Row type": "Cine\u00e1l an r\u00f3", -"Insert table": "Ions\u00e1igh t\u00e1bla", -"Body": "Corp", -"Caption": "Fotheideal", -"Footer": "Bunt\u00e1sc", -"Delete row": "Scrios an r\u00f3", -"Paste row before": "Greamaigh r\u00f3 os a chionn", -"Scope": "Sc\u00f3ip", -"Delete table": "Scrios an t\u00e1bla", -"H Align": "Ail\u00edni\u00fa C.", -"Top": "Barr", -"Header cell": "Cill cheannt\u00e1isc", -"Column": "Col\u00fan", -"Row group": "Gr\u00fapa r\u00f3nna", -"Cell": "Cill", -"Middle": "L\u00e1r", -"Cell type": "Cine\u00e1l na cille", -"Copy row": "C\u00f3ipe\u00e1il an r\u00f3", -"Row properties": "Air\u00edonna an r\u00f3", -"Table properties": "Air\u00edonna an t\u00e1bla", -"Bottom": "Bun", -"V Align": "Ail\u00edni\u00fa I.", -"Header": "Ceannt\u00e1sc", -"Right": "Ar Dheis", -"Insert column after": "Ions\u00e1igh col\u00fan ar dheis", -"Cols": "Col\u00fain", -"Insert row after": "Ions\u00e1igh r\u00f3 faoi", -"Width": "Leithead", -"Cell properties": "Air\u00edonna na cille", -"Left": "Ar Chl\u00e9", -"Cut row": "Gearr an r\u00f3", -"Delete column": "Scrios an col\u00fan", -"Center": "Sa L\u00e1r", -"Merge cells": "Cumaisc cealla", -"Insert template": "Ions\u00e1igh teimpl\u00e9ad", -"Templates": "Teimpl\u00e9id", -"Background color": "Dath an ch\u00falra", -"Custom...": "Saincheap...", -"Custom color": "Dath saincheaptha", -"No color": "Gan dath", -"Text color": "Dath an t\u00e9acs", -"Table of Contents": "Cl\u00e1r na n\u00c1bhar", -"Show blocks": "Taispe\u00e1in blocanna", -"Show invisible characters": "Taispe\u00e1in carachtair dhofheicthe", -"Words: {0}": "Focail: {0}", -"Insert": "Ions\u00e1ig", -"File": "Comhad", -"Edit": "Eagar", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Limist\u00e9ar M\u00e9ith-Th\u00e9acs. Br\u00faigh ALT-F9 le haghaidh roghchl\u00e1ir, ALT-F10 le haghaidh barra uirlis\u00ed, agus ALT-0 le c\u00fanamh a fh\u00e1il", -"Tools": "Uirlis\u00ed", -"View": "Amharc", -"Table": "T\u00e1bla", -"Format": "Form\u00e1id" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/gl.es5.js b/build/media_source/vendor/tinymce/langs/gl.es5.js deleted file mode 100644 index 2f0365ee4ff80..0000000000000 --- a/build/media_source/vendor/tinymce/langs/gl.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('gl',{ -"Cut": "Cortar", -"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.", -"Div": "Div", -"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", -"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", -"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?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Destino", -"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": "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", -"Header cell": "Cela de cabeceira", -"Column": "Columna", -"Cell": "Cela", -"Header": "Cabeceira", -"Cell type": "Tipo de cela", -"Copy row": "Copiar fila", -"Row properties": "Propiedades das filas", -"Table properties": "Propiedades da t\u00e1boa", -"Row group": "Grupo de filas", -"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/build/media_source/vendor/tinymce/langs/he.es5.js b/build/media_source/vendor/tinymce/langs/he.es5.js deleted file mode 100644 index 6c0760e65e55f..0000000000000 --- a/build/media_source/vendor/tinymce/langs/he.es5.js +++ /dev/null @@ -1,180 +0,0 @@ -tinymce.addI18n('he',{ -"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/build/media_source/vendor/tinymce/langs/hr.es5.js b/build/media_source/vendor/tinymce/langs/hr.es5.js deleted file mode 100644 index 330ac1ac70106..0000000000000 --- a/build/media_source/vendor/tinymce/langs/hr.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('hr',{ -"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 preglednik ne podr\u017eava direktan pristup me\u0111uspremniku. Molimo Vas da umjesto toga koristite tipkovni\u010dke kratice Ctrl+X\/C\/V.", -"Heading 4": "Naslov 4", -"Div": "DIV", -"Heading 2": "Naslov 2", -"Paste": "Zalijepi", -"Close": "Zatvori", -"Font Family": "Obitelj fonta", -"Pre": "PRE", -"Align right": "Poravnaj desno", -"New document": "Novi dokument", -"Blockquote": "BLOCKQUOTE", -"Numbered list": "Numerirana lista", -"Heading 1": "Naslov 1", -"Headings": "Naslovi", -"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": "Eksponent", -"Clear formatting": "Ukloni oblikovanje", -"Font Sizes": "Veli\u010dine fonta", -"Subscript": "Indeks", -"Header 6": "Zaglavlje 6", -"Redo": "Vrati", -"Paragraph": "Paragraf", -"Ok": "U redu", -"Bold": "Podebljano", -"Code": "CODE oznaka", -"Italic": "Kurziv", -"Align center": "Poravnaj po sredini", -"Header 5": "Zaglavlje 5", -"Heading 6": "Naslov 6", -"Heading 3": "Naslov 3", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id treba po\u010dinjati slovom, a nakon toga slijede samo slova, brojevi, crtice, to\u010dke, dvoto\u010dke i podvlake.", -"Name": "Ime", -"Anchor": "Sidro", -"Id": "Id", -"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", -"Language": "Jezik", -"Insert\/Edit code sample": "Umetni\/Uredi primjer k\u00f4da", -"B": "B", -"R": "R", -"G": "G", -"Color": "Boja", -"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", -"Image": "Slika", -"Zoom in": "Pove\u0107aj", -"Contrast": "Kontrast", -"Back": "Natrag", -"Gamma": "Gamma", -"Flip horizontally": "Obrni horizontalno", -"Resize": "Promjeni veli\u010dinu", -"Sharpen": "Izo\u0161travanje", -"Zoom out": "Smanji", -"Image options": "Opcije slike", -"Apply": "Primijeni", -"Brightness": "Svjetlina", -"Rotate clockwise": "Rotiraj desno", -"Rotate counterclockwise": "Rotiraj lijevo", -"Edit image": "Uredi sliku", -"Color levels": "Razine boje", -"Crop": "Obre\u017ei", -"Orientation": "Orijentacija", -"Flip vertically": "Obrni vertikalno", -"Invert": "Invertiraj", -"Date\/time": "Datum\/vrijeme", -"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", -"Link": "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 da je URL koji ste upisali vanjski link. \u017delite li dodati obavezan http:\/\/ prefiks?", -"Paste or type a link": "Zalijepi ili upi\u0161i link", -"Target": "Meta", -"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 e-mail adresa. \u017delite li dodati obavezan mailto: prefiks?", -"Insert\/edit link": "Umetni\/izmijeni poveznicu", -"Insert\/edit video": "Umetni\/izmijeni video", -"Media": "Media", -"Alternative source": "Alternativni izvor", -"Paste your embed code below:": "Umetnite va\u0161 kod za ugradnju ispod:", -"Insert video": "Umetni video", -"Poster": "Poster", -"Insert\/edit media": "Umetni\/uredi mediju", -"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", -"Add to Dictionary": "Dodaj u rje\u010dnik", -"Insert row before": "Umetni redak prije", -"Rows": "Redci", -"Height": "Visina", -"Paste row after": "Zalijepi redak nakon", -"Alignment": "Poravnanje", -"Border color": "Boja ruba", -"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", -"H Align": "H Poravnavanje", -"Top": "Vrh", -"Header cell": "Polje zaglavlja", -"Column": "Stupac", -"Row group": "Grupirani redci", -"Cell": "Polje", -"Middle": "Sredina", -"Cell type": "Vrsta polja", -"Copy row": "Kopiraj redak", -"Row properties": "Svojstva redka", -"Table properties": "Svojstva tablice", -"Bottom": "Dno", -"V Align": "V Poravnavanje", -"Header": "Zaglavlje", -"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", -"Custom...": "Prilago\u0111eno...", -"Custom color": "Prilago\u0111ena boja", -"No color": "Bez boje", -"Text color": "Boja teksta", -"Table of Contents": "Sadr\u017eaj", -"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/build/media_source/vendor/tinymce/langs/hu.es5.js b/build/media_source/vendor/tinymce/langs/hu.es5.js deleted file mode 100644 index ae5f9b9a0770c..0000000000000 --- a/build/media_source/vendor/tinymce/langs/hu.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('hu',{ -"Redo": "Ism\u00e9t", -"Undo": "Visszavon\u00e1s", -"Cut": "Kiv\u00e1g\u00e1s", -"Copy": "M\u00e1sol\u00e1s", -"Paste": "Beilleszt\u00e9s", -"Select all": "Minden kijel\u00f6l\u00e9se", -"New document": "\u00daj dokumentum", -"Ok": "Rendben", -"Cancel": "M\u00e9gse", -"Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k", -"Bold": "F\u00e9lk\u00f6v\u00e9r", -"Italic": "D\u0151lt", -"Underline": "Al\u00e1h\u00fazott", -"Strikethrough": "\u00c1th\u00fazott", -"Superscript": "Fels\u0151 index", -"Subscript": "Als\u00f3 index", -"Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se", -"Align left": "Balra igaz\u00edt", -"Align center": "K\u00f6z\u00e9pre igaz\u00edt", -"Align right": "Jobbra igaz\u00edt", -"Justify": "Sorkiz\u00e1rt", -"Bullet list": "Listajeles lista", -"Numbered list": "Sz\u00e1mozott lista", -"Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se", -"Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se", -"Close": "Bez\u00e1r", -"Formats": "Form\u00e1tumok", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek, haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.", -"Headers": "C\u00edmsorok", -"Header 1": "C\u00edmsor 1", -"Header 2": "C\u00edmsor 2", -"Header 3": "C\u00edmsor 3", -"Header 4": "C\u00edmsor 4", -"Header 5": "C\u00edmsor 5", -"Header 6": "C\u00edmsor 6", -"Headings": "Fejl\u00e9cek", -"Heading 1": "1. fejl\u00e9c", -"Heading 2": "2. fejl\u00e9c", -"Heading 3": "3. fejl\u00e9c", -"Heading 4": "4. fejl\u00e9c", -"Heading 5": "5. fejl\u00e9c", -"Heading 6": "6. fejl\u00e9c", -"Preformatted": "El\u0151form\u00e1zott", -"Div": "Div", -"Pre": "Pre", -"Code": "K\u00f3d", -"Paragraph": "Bekezd\u00e9s", -"Blockquote": "Id\u00e9zetblokk", -"Inline": "Foly\u00f3 sz\u00f6veg", -"Blocks": "Blokkok", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.", -"Fonts": "Bet\u0171t\u00edpusok", -"Font Sizes": "Bet\u0171m\u00e9retek", -"Class": "Oszt\u00e1ly", -"Browse for an image": "K\u00e9p keres\u00e9se tall\u00f3z\u00e1ssal", -"OR": "VAGY", -"Drop an image here": "H\u00fazz ide egy k\u00e9pet", -"Upload": "Felt\u00f6lt\u00e9s", -"Block": "Blokk", -"Align": "Igaz\u00edt\u00e1s", -"Default": "Alap\u00e9rtelmezett", -"Circle": "K\u00f6r", -"Disc": "Pont", -"Square": "N\u00e9gyzet", -"Lower Alpha": "Kisbet\u0171", -"Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m", -"Lower Roman": "Kis r\u00f3mai sz\u00e1m", -"Upper Alpha": "Nagybet\u0171", -"Upper Roman": "Nagy r\u00f3mai sz\u00e1m", -"Anchor...": "Horgony...", -"Name": "N\u00e9v", -"Id": "Azonos\u00edt\u00f3", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Az azonos\u00edt\u00f3nak bet\u0171vel kell kezd\u0151dnie, azut\u00e1n csak bet\u0171ket, sz\u00e1mokat, gondolatjeleket, pontokat, kett\u0151spontokat vagy al\u00e1h\u00faz\u00e1st tartalmazhat.", -"You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?", -"Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa", -"Special character...": "Speci\u00e1lis karakter...", -"Source code": "Forr\u00e1sk\u00f3d", -"Insert\/Edit code sample": "K\u00f3dminta besz\u00far\u00e1sa\/szerkeszt\u00e9se", -"Language": "Nyelv", -"Code sample...": "K\u00f3dminta...", -"Color Picker": "Sz\u00ednv\u00e1laszt\u00f3", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Balr\u00f3l jobbra", -"Right to left": "Jobbr\u00f3l balra", -"Emoticons": "Vigyorok", -"Emoticons...": "Hangulatjelek...", -"Metadata and Document Properties": "Metaadatok \u00e9s a dokumentum tulajdons\u00e1gai", -"Title": "C\u00edm", -"Keywords": "Kulcsszavak", -"Description": "Le\u00edr\u00e1s", -"Robots": "Robotok", -"Author": "Szerz\u0151", -"Encoding": "K\u00f3dol\u00e1s", -"Fullscreen": "Teljes k\u00e9perny\u0151", -"Action": "M\u0171velet", -"Shortcut": "Parancsikon", -"Help": "S\u00fag\u00f3", -"Address": "C\u00edm", -"Focus to menubar": "F\u00f3kusz a men\u00fcre", -"Focus to toolbar": "F\u00f3kusz az eszk\u00f6zt\u00e1rra", -"Focus to element path": "F\u00f3kusz az elemek \u00fatvonal\u00e1ra", -"Focus to contextual toolbar": "F\u00f3kusz a k\u00f6rnyezetf\u00fcgg\u0151 eszk\u00f6zt\u00e1rra", -"Insert link (if link plugin activated)": "Hivatkoz\u00e1s besz\u00far\u00e1sa (ha a hivatkoz\u00e1s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", -"Save (if save plugin activated)": "Ment\u00e9s (ha a ment\u00e9s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", -"Find (if searchreplace plugin activated)": "Keres\u00e9s (ha a keres\u00e9s \u00e9s csere b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", -"Plugins installed ({0}):": "Telep\u00edtett b\u0151v\u00edtm\u00e9nyek ({0}):", -"Premium plugins:": "Pr\u00e9mium b\u0151v\u00edtm\u00e9nyek:", -"Learn more...": "Tudj meg t\u00f6bbet...", -"You are using {0}": "Haszn\u00e1latban: {0}", -"Plugins": "Pluginek", -"Handy Shortcuts": "Hasznos linkek", -"Horizontal line": "V\u00edzszintes vonal", -"Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se", -"Alternative description": "Alternat\u00edv le\u00edr\u00e1s", -"Accessibility": "Akad\u00e1lymentes\u00edt\u00e9s", -"Image is decorative": "Dekor\u00e1ci\u00f3s k\u00e9p", -"Source": "Forr\u00e1s", -"Dimensions": "M\u00e9retek", -"Constrain proportions": "M\u00e9retar\u00e1ny", -"General": "\u00c1ltal\u00e1nos", -"Advanced": "Halad\u00f3", -"Style": "St\u00edlus", -"Vertical space": "Vertik\u00e1lis hely", -"Horizontal space": "Horizont\u00e1lis hely", -"Border": "Szeg\u00e9ly", -"Insert image": "K\u00e9p beilleszt\u00e9se", -"Image...": "K\u00e9p...", -"Image list": "K\u00e9p lista", -"Rotate counterclockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val ellent\u00e9tesen", -"Rotate clockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val megegyez\u0151en", -"Flip vertically": "F\u00fcgg\u0151leges t\u00fckr\u00f6z\u00e9s", -"Flip horizontally": "V\u00edzszintes t\u00fckr\u00f6z\u00e9s", -"Edit image": "K\u00e9p szerkeszt\u00e9se", -"Image options": "K\u00e9p be\u00e1ll\u00edt\u00e1sok", -"Zoom in": "Nagy\u00edt\u00e1s", -"Zoom out": "Kicsiny\u00edt\u00e9s", -"Crop": "K\u00e9p v\u00e1g\u00e1s", -"Resize": "\u00c1tm\u00e9retez\u00e9s", -"Orientation": "K\u00e9p t\u00e1jol\u00e1s", -"Brightness": "F\u00e9nyer\u0151", -"Sharpen": "\u00c9less\u00e9g", -"Contrast": "Kontraszt", -"Color levels": "Sz\u00ednszint", -"Gamma": "Gamma", -"Invert": "Inverz k\u00e9p", -"Apply": "Ment\u00e9s", -"Back": "Vissza", -"Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se", -"Date\/time": "D\u00e1tum\/id\u0151", -"Insert\/edit link": "Hivatkoz\u00e1s beilleszt\u00e9se\/szerkeszt\u00e9se", -"Text to display": "Megjelen\u0151 sz\u00f6veg", -"Url": "Url", -"Open link in...": "Hivatkoz\u00e1s megnyit\u00e1sa...", -"Current window": "Jelenlegi ablak", -"None": "Nincs", -"New window": "\u00daj ablak", -"Open link": "Hivatkoz\u00e1s megnyit\u00e1sa", -"Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se", -"Anchors": "Horgonyok", -"Link...": "Hivatkoz\u00e1s...", -"Paste or type a link": "Hivatkoz\u00e1s be\u00edr\u00e1sa vagy beilleszt\u00e9se", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A megadott URL email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A megadott URL k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Az URL amit megadt\u00e1l k\u00fcls\u0151 hivatkoz\u00e1s. Szeretn\u00e9d https:\/\/ el\u0151taggal megnyitni?", -"Link list": "Hivatkoz\u00e1slista", -"Insert video": "Vide\u00f3 beilleszt\u00e9se", -"Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se", -"Insert\/edit media": "M\u00e9dia besz\u00far\u00e1sa\/beilleszt\u00e9se", -"Alternative source": "Alternat\u00edv forr\u00e1s", -"Alternative source URL": "Alternat\u00edv forr\u00e1s URL", -"Media poster (Image URL)": "M\u00e9dia poszter (k\u00e9p URL)", -"Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:", -"Embed": "Be\u00e1gyaz\u00e1s", -"Media...": "M\u00e9dia...", -"Nonbreaking space": "Nem t\u00f6rhet\u0151 sz\u00f3k\u00f6z", -"Page break": "Oldalt\u00f6r\u00e9s", -"Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt", -"Preview": "El\u0151n\u00e9zet", -"Print...": "Nyomtat\u00e1s...", -"Save": "Ment\u00e9s", -"Find": "Keres\u00e9s", -"Replace with": "Csere erre", -"Replace": "Csere", -"Replace all": "Az \u00f6sszes cser\u00e9je", -"Previous": "El\u0151z\u0151", -"Next": "K\u00f6vetkez\u0151", -"Find and Replace": "Keres\u00e9s \u00e9s csere", -"Find and replace...": "Keres\u00e9s \u00e9s csere...", -"Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.", -"Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se", -"Find whole words only": "Csak teljes szavak keres\u00e9se", -"Find in selection": "Keres\u00e9s a kiv\u00e1laszt\u00e1sban", -"Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s", -"Spellcheck Language": "Helyes\u00edr\u00e1s-ellen\u0151rz\u00e9s nyelve", -"No misspellings found.": "Nincsenek el\u00edr\u00e1sok.", -"Ignore": "Figyelmen k\u00edv\u00fcl hagy", -"Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy", -"Finish": "Befejez\u00e9s", -"Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad", -"Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se", -"Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok", -"Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se", -"Cell": "Cella", -"Row": "Sor", -"Column": "Oszlop", -"Cell properties": "Cella tulajdons\u00e1gok", -"Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se", -"Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa", -"Insert row before": "Sor besz\u00far\u00e1sa el\u00e9", -"Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9", -"Delete row": "Sor t\u00f6rl\u00e9se", -"Row properties": "Sor tulajdons\u00e1gai", -"Cut row": "Sor kiv\u00e1g\u00e1sa", -"Copy row": "Sor m\u00e1sol\u00e1sa", -"Paste row before": "Sor beilleszt\u00e9se el\u00e9", -"Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9", -"Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9", -"Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9", -"Delete column": "Oszlop t\u00f6rl\u00e9se", -"Cols": "Oszlopok", -"Rows": "Sorok", -"Width": "Sz\u00e9less\u00e9g", -"Height": "Magass\u00e1g", -"Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga", -"Cell padding": "Cella m\u00e9rete", -"Caption": "Felirat", -"Show caption": "C\u00edm megjelen\u00edt\u00e9se", -"Left": "Bal", -"Center": "K\u00f6z\u00e9p", -"Right": "Jobb", -"Cell type": "Cella t\u00edpusa", -"Scope": "Hat\u00f3k\u00f6r", -"Alignment": "Igaz\u00edt\u00e1s", -"H Align": "V\u00edzszintes igaz\u00edt\u00e1s", -"V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s", -"Top": "Fel\u00fcl", -"Middle": "K\u00f6z\u00e9pen", -"Bottom": "Alul", -"Header cell": "Fejl\u00e9c cella", -"Row group": "Sor csoport", -"Column group": "Oszlop csoport", -"Row type": "Sor t\u00edpus", -"Header": "Fejl\u00e9c", -"Body": "Sz\u00f6vegt\u00f6rzs", -"Footer": "L\u00e1bl\u00e9c", -"Border color": "Szeg\u00e9ly sz\u00edne", -"Insert template...": "Sablon besz\u00far\u00e1sa...", -"Templates": "Sablonok", -"Template": "Sablon", -"Text color": "Sz\u00f6veg sz\u00edne", -"Background color": "H\u00e1tt\u00e9r sz\u00edn", -"Custom...": "Egy\u00e9ni...", -"Custom color": "Egy\u00e9ni sz\u00edn", -"No color": "Nincs sz\u00edn", -"Remove color": "Sz\u00edn t\u00f6rl\u00e9se", -"Table of Contents": "Tartalomjegyz\u00e9k", -"Show blocks": "Blokkok mutat\u00e1sa", -"Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa", -"Word count": "Szavak sz\u00e1ma", -"Count": "Sz\u00e1m", -"Document": "Dokumentum", -"Selection": "Kiv\u00e1laszt\u00e1s", -"Words": "Szavak", -"Words: {0}": "Szavak: {0}", -"{0} words": "{0} sz\u00f3", -"File": "F\u00e1jl", -"Edit": "Szerkeszt\u00e9s", -"Insert": "Beilleszt\u00e9s", -"View": "N\u00e9zet", -"Format": "Form\u00e1tum", -"Table": "T\u00e1bl\u00e1zat", -"Tools": "Eszk\u00f6z\u00f6k", -"Powered by {0}": "\u00dczemelteti: {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz", -"Image title": "K\u00e9p c\u00edme", -"Border width": "Szeg\u00e9ly vastags\u00e1ga", -"Border style": "Szeg\u00e9ly st\u00edlusa", -"Error": "Hiba", -"Warn": "Figyelmeztet\u00e9s", -"Valid": "\u00c9rv\u00e9nyes", -"To open the popup, press Shift+Enter": "A felugr\u00f3 ablak megnyit\u00e1s\u00e1hoz nyomja meg a Shift+Enter billenty\u0171t", -"Rich Text Area. Press ALT-0 for help.": "Vizu\u00e1lis szerkeszt\u0151 ter\u00fclet. Nyomjon ALT-0-t a s\u00fag\u00f3hoz.", -"System Font": "Rendszer-bet\u0171t\u00edpus", -"Failed to upload image: {0}": "Nem siker\u00fclt felt\u00f6lteni a k\u00e9pet: {0}", -"Failed to load plugin: {0} from url {1}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modult: {0} err\u0151l a webc\u00edmr\u0151l: {1}", -"Failed to load plugin url: {0}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modul url-\u00e9t: {0}", -"Failed to initialize plugin: {0}": "Nem siker\u00fclt inicializ\u00e1lni a be\u00e9p\u00fcl\u0151 modult: {0}", -"example": "p\u00e9lda", -"Search": "Keres\u00e9s", -"All": "Minden", -"Currency": "P\u00e9nznem", -"Text": "Sz\u00f6veg", -"Quotations": "Id\u00e9z\u0151jelek", -"Mathematical": "Matematikai", -"Extended Latin": "B\u0151v\u00edtett latin", -"Symbols": "Szimb\u00f3lumok", -"Arrows": "Nyilak", -"User Defined": "Felhaszn\u00e1l\u00f3 \u00e1ltal meghat\u00e1rozott", -"dollar sign": "doll\u00e1r jel", -"currency sign": "valuta jel", -"euro-currency sign": "euro-valuta jel", -"colon sign": "kett\u0151spont", -"cruzeiro sign": "cruzeiro jel", -"french franc sign": "francia frank jel", -"lira sign": "l\u00edra jel", -"mill sign": "mill jel", -"naira sign": "naira jel", -"peseta sign": "peseta jel", -"rupee sign": "r\u00fapia jel", -"won sign": "won jel", -"new sheqel sign": "\u00faj shekel jel", -"dong sign": "dong jel", -"kip sign": "kip jel", -"tugrik sign": "tugrik jel", -"drachma sign": "drachma jel", -"german penny symbol": "n\u00e9met penny jel", -"peso sign": "peso jel", -"guarani sign": "guarani jel", -"austral sign": "austral jel", -"hryvnia sign": "hrivnya jel", -"cedi sign": "cedi jel", -"livre tournois sign": "livre tournois jel", -"spesmilo sign": "spesmilo jel", -"tenge sign": "tenge jel", -"indian rupee sign": "r\u00fapel jel", -"turkish lira sign": "t\u00f6r\u00f6k l\u00edra jel", -"nordic mark sign": "\u00e9szaki m\u00e1rka jel", -"manat sign": "manat jel", -"ruble sign": "rubel jel", -"yen character": "jen karakter", -"yuan character": "j\u00fcan karakter", -"yuan character, in hong kong and taiwan": "hongkongi \u00e9s tajvani j\u00fcan karakter", -"yen\/yuan character variant one": "jen\/j\u00fcan karaktervari\u00e1ns", -"Loading emoticons...": "Hangulatjelek bet\u00f6lt\u00e9se...", -"Could not load emoticons": "Nem siker\u00fclt a hangulatjelek bet\u00f6lt\u00e9se", -"People": "Emberek", -"Animals and Nature": "\u00c1llatok \u00e9s term\u00e9szet", -"Food and Drink": "\u00c9tel, ital", -"Activity": "Tev\u00e9kenys\u00e9gek", -"Travel and Places": "Utaz\u00e1s \u00e9s helyek", -"Objects": "T\u00e1rgyak", -"Flags": "Z\u00e1szl\u00f3k", -"Characters": "Karakterek", -"Characters (no spaces)": "Karakterek (sz\u00f3k\u00f6z\u00f6k n\u00e9lk\u00fcl)", -"{0} characters": "{0} karakter", -"Error: Form submit field collision.": "Hiba: \u00dctk\u00f6z\u00e9s t\u00f6rt\u00e9nt az \u0171rlap elk\u00fcld\u00e9sekor.", -"Error: No form element found.": "Hiba: Nem tal\u00e1lhat\u00f3 \u0171rlap elem.", -"Update": "Friss\u00edt\u00e9s", -"Color swatch": "Sz\u00ednpaletta", -"Turquoise": "T\u00fcrkiz", -"Green": "Z\u00f6ld", -"Blue": "K\u00e9k", -"Purple": "Lila", -"Navy Blue": "Tengerk\u00e9k", -"Dark Turquoise": "S\u00f6t\u00e9tt\u00fcrkiz", -"Dark Green": "S\u00f6t\u00e9tz\u00f6ld", -"Medium Blue": "Kir\u00e1lyk\u00e9k", -"Medium Purple": "K\u00f6z\u00e9plila", -"Midnight Blue": "\u00c9jf\u00e9lk\u00e9k", -"Yellow": "S\u00e1rga", -"Orange": "Narancss\u00e1rga", -"Red": "Piros", -"Light Gray": "Vil\u00e1gossz\u00fcrke", -"Gray": "Sz\u00fcrke", -"Dark Yellow": "S\u00f6t\u00e9ts\u00e1rga", -"Dark Orange": "S\u00f6t\u00e9t narancss\u00e1rga", -"Dark Red": "S\u00f6t\u00e9tv\u00f6r\u00f6s", -"Medium Gray": "K\u00f6z\u00e9psz\u00fcrke", -"Dark Gray": "S\u00f6t\u00e9tsz\u00fcrke", -"Light Green": "Vil\u00e1gosz\u00f6ld", -"Light Yellow": "Vil\u00e1goss\u00e1rga", -"Light Red": "Vil\u00e1gospiros", -"Light Purple": "Vil\u00e1goslila", -"Light Blue": "Vil\u00e1gosk\u00e9k", -"Dark Purple": "S\u00f6t\u00e9tlila", -"Dark Blue": "S\u00f6t\u00e9tk\u00e9k", -"Black": "Fekete", -"White": "Feh\u00e9r", -"Switch to or from fullscreen mode": "Teljes vagy norm\u00e1l k\u00e9perny\u0151s m\u00f3dra v\u00e1lt\u00e1s", -"Open help dialog": "S\u00fag\u00f3ablak megnyit\u00e1sa", -"history": "el\u0151zm\u00e9nyek", -"styles": "st\u00edlusok", -"formatting": "form\u00e1z\u00e1s", -"alignment": "igaz\u00edt\u00e1s", -"indentation": "beh\u00faz\u00e1s", -"Font": "Bet\u0171t\u00edpus", -"Size": "M\u00e9ret", -"More...": "Tov\u00e1bbiak...", -"Select...": "V\u00e1lasszon...", -"Preferences": "Preferenci\u00e1k", -"Yes": "Igen", -"No": "Nem", -"Keyboard Navigation": "Billenty\u0171zettel val\u00f3 navig\u00e1l\u00e1s", -"Version": "Verzi\u00f3", -"Code view": "K\u00f3d n\u00e9zet", -"Open popup menu for split buttons": "Felugr\u00f3 men\u00fc megnyit\u00e1sa az osztott gombokhoz", -"List Properties": "Lista tulajdons\u00e1gai", -"List properties...": "Lista tulajdons\u00e1gai...", -"Start list at number": "Lista kezd\u00e9se ett\u0151l a sz\u00e1mt\u00f3l", -"Line height": "Sor magass\u00e1ga", -"comments": "megjegyz\u00e9sek", -"Format Painter": "Form\u00e1tumm\u00e1sol\u00f3", -"Insert\/edit iframe": "iframe besz\u00far\u00e1sa\/szerkeszt\u00e9se", -"Capitalization": "Nagybet\u0171s \u00edr\u00e1s", -"lowercase": "kisbet\u0171s", -"UPPERCASE": "NAGYBET\u0170S", -"Title Case": "C\u00edm szerinti \u00edr\u00e1sm\u00f3d", -"permanent pen": "sz\u00f6vegkiemel\u0151", -"Permanent Pen Properties": "Tart\u00f3s toll tulajdons\u00e1gai", -"Permanent pen properties...": "Tart\u00f3s toll tulajdons\u00e1gai...", -"case change": "esetv\u00e1lt\u00e1s", -"page embed": "oldal be\u00e1gyaz\u00e1s", -"Advanced sort...": "Speci\u00e1lis rendez\u00e9s... ", -"Advanced Sort": "Speci\u00e1lis rendez\u00e9s", -"Sort table by column ascending": "T\u00e1bl\u00e1zat rendez\u00e9se oszlop szerint n\u00f6vekv\u0151 sorrendben", -"Sort table by column descending": "T\u00e1bl\u00e1zat rendez\u00e9se oszlop szerint cs\u00f6kken\u0151 sorrendben", -"Sort": "Rendez\u00e9s", -"Order": "Sorrend", -"Sort by": "Rendez\u00e9s", -"Ascending": "N\u00f6vekv\u0151", -"Descending": "Cs\u00f6kken\u0151", -"Column {0}": "Oszlop {0}", -"Row {0}": "Sor {0}", -"Spellcheck...": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s...", -"Misspelled word": "Helytelen\u00fcl \u00edrt sz\u00f3", -"Suggestions": "Javaslatok", -"Change": "V\u00e1ltoz\u00e1s", -"Finding word suggestions": "Sz\u00f3javaslatok keres\u00e9se", -"Success": "Siker", -"Repair": "Jav\u00edt\u00e1s", -"Issue {0} of {1}": "Probl\u00e9ma {0} - {1}", -"Images must be marked as decorative or have an alternative text description": "A k\u00e9peket dekor\u00e1ci\u00f3k\u00e9nt kell megjel\u00f6lni, vagy alternat\u00edv sz\u00f6veges le\u00edr\u00e1ssal kell ell\u00e1tni", -"Images must have an alternative text description. Decorative images are not allowed.": "A k\u00e9peknek alternat\u00edv sz\u00f6veges le\u00edr\u00e1ssal kell rendelkezni\u00fck. Dekor\u00e1ci\u00f3s k\u00e9pek nem megengedettek.", -"Or provide alternative text:": "Vagy adjon meg alternat\u00edv sz\u00f6veget:", -"Make image decorative:": "Dekor\u00e1ci\u00f3s k\u00e9p:", -"ID attribute must be unique": "Az azonos\u00edt\u00f3 attrib\u00fatumnak egyedinek kell lennie", -"Make ID unique": "Egyedi azonos\u00edt\u00f3 l\u00e9trehoz\u00e1sa", -"Keep this ID and remove all others": "Ennek kiv\u00e9tel\u00e9vel az \u00f6sszes azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", -"Remove this ID": "Azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", -"Remove all IDs": "\u00d6sszes azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", -"Checklist": "Ellen\u0151rz\u0151 lista", -"Anchor": "Horgony", -"Special character": "Speci\u00e1lis karakter", -"Code sample": "K\u00f3d p\u00e9lda", -"Color": "Sz\u00edn", -"Document properties": "Dokumentum tulajdons\u00e1gai", -"Image description": "K\u00e9p le\u00edr\u00e1sa", -"Image": "K\u00e9p", -"Insert link": "Hivatkoz\u00e1s beilleszt\u00e9se", -"Target": "C\u00e9l", -"Link": "Hivatkoz\u00e1s", -"Poster": "El\u0151n\u00e9zeti k\u00e9p", -"Media": "M\u00e9dia", -"Print": "Nyomtat\u00e1s", -"Prev": "El\u0151z\u0151", -"Find and replace": "Keres\u00e9s \u00e9s csere", -"Whole words": "Csak ha ez a teljes sz\u00f3", -"Insert template": "Sablon beilleszt\u00e9se" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/id.es5.js b/build/media_source/vendor/tinymce/langs/id.es5.js deleted file mode 100644 index c02b821cb38e2..0000000000000 --- a/build/media_source/vendor/tinymce/langs/id.es5.js +++ /dev/null @@ -1,219 +0,0 @@ -tinymce.addI18n('id',{ -"Cut": "Penggal", -"Heading 5": "Judul 5", -"Header 2": "Judul 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": "Daftar bernomor", -"Heading 1": "Judul 1", -"Headings": "Judul", -"Increase indent": "Tambah inden", -"Formats": "Format", -"Headers": "Judul", -"Select all": "Pilih semua", -"Header 3": "Judul 3", -"Blocks": "Blok", -"Undo": "Batalkan", -"Strikethrough": "Coret", -"Bullet list": "Daftar bersimbol", -"Header 1": "Judul 1", -"Superscript": "Superskrip", -"Clear formatting": "Hapus format", -"Font Sizes": "Ukuran Huruf", -"Subscript": "Subskrip", -"Header 6": "Judul 6", -"Redo": "Ulangi", -"Paragraph": "Paragraf", -"Ok": "Ok", -"Bold": "Tebal", -"Code": "Code", -"Italic": "Miring", -"Align center": "Rata tengah", -"Header 5": "Judul 5", -"Heading 6": "Judul 6", -"Heading 3": "Judul 3", -"Decrease indent": "Turunkan inden", -"Header 4": "Judul 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Penempelan sekarang dalam modus teks biasa. Konten sekarang akan disisipkan sebagai teks biasa sampai Anda mamatikan pilihan ini.", -"Underline": "Garis bawah", -"Cancel": "Batal", -"Justify": "Penuh", -"Inline" : "Baris", -"Copy": "Salin", -"Align left": "Rata kiri", -"Visual aids": "Alat bantu visual", -"Lower Greek": "Huruf Kecil Yunani", -"Square": "Kotak", -"Default": "Bawaan", -"Lower Alpha": "Huruf Kecil", -"Circle": "Lingkaran", -"Disc": "Cakram", -"Upper Alpha": "Huruf Besar", -"Upper Roman": "Huruf Besar Romawi", -"Lower Roman": "Huruf Kecil Romawi", -"Name": "Nama", -"Anchor": "Jangkar", -"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": "Karakter khusus", -"Source code": "Kode sumber", -"B": "B", -"R": "M", -"G": "H", -"Color": "Warna", -"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": "Garis horisontal", -"Horizontal space": "Spasi Horisontal", -"Insert\/edit image": "Sisip\/sunting gambar", -"General": "Umum", -"Advanced": "Lanjutan", -"Source": "Sumber", -"Border": "Batas", -"Constrain proportions": "Samakan proporsi", -"Vertical space": "Spasi vertikal", -"Image description": "Deskripsi Gambar", -"Style": "Gaya", -"Dimensions": "Dimensi", -"Insert image": "Sisipkan gambar", -"Zoom in": "Perbesar", -"Contrast": "Kontras", -"Back": "Kembali", -"Gamma": "Gamma", -"Flip horizontally": "Balik horisontal", -"Resize": "Ubah ukuran", -"Sharpen": "Ketajaman", -"Zoom out": "Perkecil", -"Image options": "Opsi Gambar", -"Apply": "Terapkan", -"Brightness": "Kecerahan", -"Rotate clockwise": "Putar searahjarumjam", -"Rotate counterclockwise": "Putar berlawananjarumjam", -"Edit image": "Sunting gambar", -"Color levels": "Tingkat warna", -"Crop": "Krop", -"Orientation": "Orientasi", -"Flip vertically": "Balik vertikal", -"Invert": "Kebalikan", -"Insert date\/time": "Sisipkan tanggal\/waktu", -"Remove link": "Buang tautan", -"Url": "Tautan", -"Text to display": "Teks yang ditampilkan", -"Anchors": "Jangkar", -"Insert link": "Sisipkan tautan", -"New window": "Jendela baru", -"None": "Tdk ada", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tautan yang anda masukkan sepertinya adalah tautan eksternal. Apakah Anda ingin menambahkan prefiks http:\/\/ yang dibutuhkan?", -"Target": "Jendela Tujuan", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tautan yang anda masukkan sepertinya adalah alamat email. Apakah Anda ingin menambahkan prefiks mailto: yang dibutuhkan?", -"Insert\/edit link": "Sisip\/sunting tautan", -"Insert\/edit video": "Sisip\/sunting video", -"Poster": "Penulis", -"Alternative source": "Sumber Alternatif", -"Paste your embed code below:": "Tempel kode yang diembed dibawah ini:", -"Insert video": "Sisipkan video", -"Embed": "Embed", -"Nonbreaking space": "Spasi ", -"Page break": "Baris baru", -"Paste as text": "Tempel sebagai teks biasa", -"Preview": "Pratinjau", -"Print": "Cetak", -"Save": "Simpan", -"Could not find the specified string.": "Tidak dapat menemukan string yang dimaksud.", -"Replace": "Ganti", -"Next": "Berikutnya", -"Whole words": "Semua kata", -"Find and replace": "Cari dan Ganti", -"Replace with": "Ganti dengan", -"Find": "Cari", -"Replace all": "Ganti semua", -"Match case": "Samakan besar kecil huruf", -"Prev": "Sebelumnya", -"Spellcheck": "Spellcheck", -"Finish": "Selesai", -"Ignore all": "Abaikan semua", -"Ignore": "Abaikan", -"Add to Dictionary": "Tambahkan ke kamus", -"Insert row before": "Sisipkan baris sebelum", -"Rows": "Barisan", -"Height": "Tinggi", -"Paste row after": "Tempel baris setelah", -"Alignment": "Penjajaran", -"Border color": "Warna batas", -"Column group": "Kelompok kolom", -"Row": "Baris", -"Insert column before": "Sisipkan kolom sebelum", -"Split cell": "Bagi sel", -"Cell padding": "Lapisan sel", -"Cell spacing": "Spasi sel", -"Row type": "Tipe baris", -"Insert table": "Sisipkan tabel", -"Body": "Body", -"Caption": "Caption", -"Footer": "Footer", -"Delete row": "Hapus baris", -"Paste row before": "Tempel baris sebelum", -"Scope": "Skup", -"Delete table": "Hapus tabel", -"H Align": "Rata Samping", -"Top": "Atas", -"Header cell": "Sel Header", -"Column": "Kolom", -"Row group": "Kelompok baris", -"Cell": "Sel", -"Middle": "Tengah", -"Cell type": "Tipe sel", -"Copy row": "Salin baris", -"Row properties": "Properti baris", -"Table properties": "Properti tabel", -"Bottom": "bawah", -"V Align": "Rata Atas", -"Header": "Header", -"Right": "Kanan", -"Insert column after": "Sisipkan kolom setelah", -"Cols": "Kolom", -"Insert row after": "Sisipkan baris setelah", -"Width": "Lebar", -"Cell properties": "Properti sel", -"Left": "Kiri", -"Cut row": "Penggal baris", -"Delete column": "Hapus kolom", -"Center": "Tengah", -"Merge cells": "Gabung sel", -"Insert template": "Sisipkan templat", -"Templates": "Templat", -"Background color": "Warna latar", -"Custom...": "Atur sendiri...", -"Custom color": "Warna Sendiri", -"No color": "Tidak berwarna", -"Text color": "Warna teks", -"Show blocks": "Tampilkan blok", -"Show invisible characters": "Tampilkan karakter tak tampak", -"Words: {0}": "Kata: {0}", -"Insert": "Sisip", -"File": "Berkas", -"Edit": "Sunting", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area teks kaya. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk toolbar. Tekan ALT-0 untuk bantuan", -"Tools": "Alat", -"View": "Tampilan", -"Table": "Tabel", -"Format": "Format" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/it.es5.js b/build/media_source/vendor/tinymce/langs/it.es5.js deleted file mode 100644 index 9e9eb828e728a..0000000000000 --- a/build/media_source/vendor/tinymce/langs/it.es5.js +++ /dev/null @@ -1,232 +0,0 @@ -tinymce.addI18n('it',{ -"Cut": "Taglia", -"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.", -"Paste": "Incolla", -"Paste as text": "Incolla come testo", -"Close": "Chiudi", -"Align right": "Allinea a Destra", -"New document": "Nuovo Documento", -"Numbered list": "Elenchi Numerati", -"Increase indent": "Aumenta rientro", -"Formats": "Formattazioni", -"Select all": "Seleziona tutto", -"Undo": "Annulla", -"Strikethrough": "Barrato", -"Bullet list": "Elenchi Puntati", -"Superscript": "Apice", -"Clear formatting": "Cancella formattazione", -"Subscript": "Pedice", -"Redo": "Ripristina", -"Ok": "Ok", -"Bold": "Grassetto", -"Italic": "Corsivo", -"Align center": "Allinea al Centro", -"Decrease indent": "Riduci rientro", -"Underline": "Sottolineato", -"Cancel": "Cancella", -"Justify": "Giustifica", -"Copy": "Copia", -"Align left": "Allinea a Sinistra", -"Visual aids": "Elementi Visivi", -"Lower Greek": "Minuscolo lettere greche", -"Square": "Quadrato", -"Default": "Predefinito", -"Lower Alpha": "Minuscolo alfanumerico", -"Circle": "Cerchio", -"Disc": "Disco", -"Upper Alpha": "Maiuscolo alfanumerico", -"Upper Roman": "Maiuscolo lettere romane", -"Lower Roman": "Minuscolo lettere romane", -"Name": "Nome", -"Anchor": "Ancora", -"Anchors": "Ancora", -"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": "Inserisci Carattere Speciale", -"Source code": "Codice Sorgente", -"Right to left": "Da Destra a Sinistra", -"Left to right": "Da Sinistra a Destra", -"Emoticons": "Faccine", -"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": "URL", -"Border": "Bordo", -"Constrain proportions": "Mantieni Proporzioni", -"Vertical space": "Spazio Verticale", -"Image description": "Descrizione Immagine", -"Style": "Stile", -"Dimensions": "Dimensioni", -"Insert image": "Inserisci immagine", -"Insert date\/time": "Inserisci Data\/Ora", -"Remove link": "Rimuovi Link", -"Url": "Url", -"Text to display": "Testo da Visualizzare", -"Insert link": "Inserisci Link", -"New window": "Nuova Finestra", -"None": "No", -"Target": "Target", -"Insert\/edit link": "Inserisci\/Modifica link", -"Insert\/edit video": "Inserisci\/Modifica video", -"Poster": "Anteprima", -"Alternative source": "Alternativo", -"Paste your embed code below:": "Incolla qui il codice da incorporare:", -"Insert video": "Inserisci Video", -"Embed": "Incorporare", -"Nonbreaking space": "Spazio unificatore", -"Preview": "Anteprima", -"Print": "Stampa", -"Save": "Salva", -"Could not find the specified string.": "Impossibile trovare la parola specifica.", -"Replace": "Sostituisci", -"Next": "Successivo", -"Whole words": "Parole intere", -"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", -"Insert row before": "Inserisci una Riga prima", -"Rows": "Righe", -"Height": "Altezza", -"Paste row after": "Incolla una Riga dopo", -"Alignment": "Allineamento", -"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", -"Header cell": "cella d'intestazione", -"Column": "Colonna", -"Cell": "Cella", -"Header": "Header", -"Cell type": "Tipo di Cella", -"Copy row": "Copia Riga", -"Row properties": "Propriet\u00e0 della Riga", -"Table properties": "Propriet\u00e0 della Tabella", -"Row group": "Gruppo di Righe", -"Right": "Destra", -"Insert column after": "Inserisci una Colonna dopo", -"Cols": "Colonne", -"Insert row after": "Inserisci una Riga dopo", -"Width": "Larghezza", -"Cell properties": "Propriet\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 Sfondo", -"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": "Visualizza", -"Table": "Tabella", -"Format": "Formato", -"Inline": "Formato", -"Blocks": "Blocchi", -"Zoom in": "Zoom", -"Contrast": "Contrasto", -"Back": "Indietro", -"Gamma": "Gamma", -"Flip horizontally": "Capovolgi orizzontalmente", -"Resize": "Ridimensiona", -"Sharpen": "Affila", -"Zoom out": "Zoom indietro", -"Image options": "Opzioni immagine", -"Apply": "Applica", -"Brightness": "Luminosit\u00e0", -"Rotate clockwise": "Ruota in senso orario", -"Rotate counterclockwise": "Ruota in senso antiorario", -"Edit image": "Modifica Immagine", -"Color levels": "Livelli colore", -"Crop": "Rifila", -"Orientation": "Orientamento", -"Flip vertically": "Capovolgi verticalmente", -"Invert": "Inverti", -"Font Family": "Famiglia Carattere", -"Font Sizes": "Grandezza Carattere", -"Paragraph": "Paragrafo", -"Address": "Indirizzo", -"Blockquote": "Citazione", -"Pre": "Preformattato", -"Code": "Codice", -"H Align": "Allineamento orizzontale", -"V Align": "Allineamento verticale", -"Top": "Sopra", -"Middle": "Al centro", -"Bottom": "Sotto", -"Headers": "Intestazioni", -"Header 1": "Intestazione 1", -"Header 2": "Intestazione 2", -"Header 3": "Intestazione 3", -"Header 4": "Intestazione 4", -"Header 5": "Intestazione 5", -"Header 6": "Intestazione 6", -"Headings": "Intestazioni", -"Heading 1": "Intestazione 1", -"Heading 2": "Intestazione 2", -"Heading 3": "Intestazione 3", -"Heading 4": "Intestazione 4", -"Heading 5": "Intestazione 5", -"Heading 6": "Intestazione 6", -"Preformatted": "Preformattato", -"Add to Dictionary": "Aggiungi al dizionario", -"Insert Time": "Inserisci ora", -"Insert nonbreaking space": "Inserisci uno spazio", -"Insert\/Edit code sample": "Inserisci\/modifica codice da mostrare", -"Language": "Linguaggio", -"Toggle blockquote": "Testo quotato", -"Border color": "Colore bordo", -"Color": "Colore", -"Custom...": "Personalizza...", -"Custom color": "Personalizza colore", -"No color": "Nessun colore", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id dovrebbe iniziare con una lettera, seguita solo da lettere, numeri, trattini, due punti, virgole o underscore.", -"Insert/Edit code sample": "Inserisci/Modifica codice di esempio", -"Language": "Lingua", -"Image": "Immagine", -"Date/time": "Data/ora", -"Link": "Link", -"Paste or type a link": "Incolla o scrivi un link", -"Insert/Edit Media": "Inserisci/Modifica oggetto multimediale", -"Media": "Media", -"Table of Contents": "Tabella di contenuti", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "L'incolla è ora in modalità di testo normale. I contenuti verranno incollati come testo normale fino a quando non disattiverai questa opzione.", -"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:\/\/?", -"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:?" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/ja.es5.js b/build/media_source/vendor/tinymce/langs/ja.es5.js deleted file mode 100644 index b9cc6a2135289..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ja.es5.js +++ /dev/null @@ -1,230 +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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002", -"Name": "\u30a2\u30f3\u30ab\u30fc\u540d", -"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", -"Id": "Id", -"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", -"Language": "\u8a00\u8a9e", -"Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "\u753b\u50cf", -"Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3", -"Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8", -"Back": "\u623b\u308b", -"Gamma": "\u30ac\u30f3\u30de", -"Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2", -"Resize": "\u30ea\u30b5\u30a4\u30ba", -"Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316", -"Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8", -"Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3", -"Apply": "\u9069\u7528", -"Brightness": "\u660e\u308b\u3055", -"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", -"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", -"Edit image": "\u753b\u50cf\u306e\u7de8\u96c6", -"Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb", -"Crop": "\u30af\u30ed\u30c3\u30d7", -"Orientation": "\u5411\u304d", -"Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2", -"Invert": "\u53cd\u8ee2", -"Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", -"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", -"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", -"Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b", -"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\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", -"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"Media": "\u30e1\u30c7\u30a3\u30a2", -"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", -"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240", -"Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6", -"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": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272", -"Table of Contents": "\u76ee\u6b21", -"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/build/media_source/vendor/tinymce/langs/ka.es5.js b/build/media_source/vendor/tinymce/langs/ka.es5.js deleted file mode 100644 index 75881da5eb09d..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ka.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('ka',{ -"Cut": "\u10d0\u10db\u10dd\u10ed\u10e0\u10d0", -"Heading 5": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 5", -"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.", -"Heading 4": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 4", -"Div": "\u10d2\u10d0\u10dc\u10d0\u10ec\u10d8\u10da\u10d4\u10d1\u10d0", -"Heading 2": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 2", -"Paste": "\u10e9\u10d0\u10e1\u10db\u10d0", -"Close": "\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0", -"Font Family": "\u10e4\u10dd\u10dc\u10e2\u10d8", -"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", -"Heading 1": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 1", -"Headings": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8", -"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": "\u10e4\u10dd\u10dc\u10e2\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0", -"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", -"Heading 6": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 6", -"Heading 3": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 3", -"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.": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10e9\u10d5\u10d4\u10e3\u10da\u10d4\u10d1\u10e0\u10d8\u10d5 \u10e0\u10d4\u10df\u10d8\u10db\u10e8\u10d8\u10d0. \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8 \u10e9\u10d0\u10d8\u10e1\u10db\u10d4\u10d5\u10d0 \u10e3\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10dd\u10d7 \u10e1\u10d0\u10dc\u10d0\u10db \u10d0\u10db \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d0\u10e1 \u10d0\u10e0 \u10d2\u10d0\u10d7\u10d8\u10e8\u10d0\u10d5\u10d7.", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "id \u10e3\u10dc\u10d3\u10d0 \u10d8\u10ec\u10e7\u10d4\u10d1\u10dd\u10d3\u10d4\u10e1 \u10d0\u10e1\u10dd\u10d7\u10d8, \u10e0\u10dd\u10db\u10d4\u10da\u10e1\u10d0\u10ea \u10db\u10dd\u10e7\u10d5\u10d4\u10d1\u10d0 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d0\u10e1\u10dd\u10d4\u10d1\u10d8, \u10ea\u10d8\u10e4\u10e0\u10d4\u10d1\u10d8, \u10e2\u10d8\u10e0\u10d4, \u10ec\u10d4\u10e0\u10e2\u10d8\u10da\u10d4\u10d1\u10d8, \u10dd\u10e0\u10d8 \u10ec\u10d4\u10e0\u10e2\u10d8\u10da\u10d8 \u10d0\u10dc \u10e5\u10d5\u10d4\u10d3\u10d0 \u10e2\u10d8\u10e0\u10d4. ", -"Name": "\u10e1\u10d0\u10ee\u10d4\u10da\u10d8", -"Anchor": "\u10e6\u10e3\u10d6\u10d0", -"Id": "id", -"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", -"Language": "\u10d4\u10dc\u10d0", -"Insert\/Edit code sample": "\u10e9\u10d0\u10e1\u10d5\u10d8\/\u10e8\u10d4\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10db\u10d0\u10d2\u10d0\u10da\u10d8\u10d7\u10d8", -"B": "\u10da", -"R": "\u10ec", -"G": "\u10db", -"Color": "\u10e4\u10d4\u10e0\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", -"Image": "\u10d2\u10d0\u10db\u10dd\u10e1\u10d0\u10ee\u10e3\u10da\u10d4\u10d1\u10d0", -"Zoom in": "\u10d2\u10d0\u10d3\u10d8\u10d3\u10d8\u10d4\u10d1\u10d0", -"Contrast": "\u10d9\u10dd\u10dc\u10e2\u10e0\u10d0\u10e1\u10e2\u10d8", -"Back": "\u10e3\u10d9\u10d0\u10dc", -"Gamma": "\u10d2\u10d0\u10db\u10d0", -"Flip horizontally": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10e8\u10d4\u10e2\u10e0\u10d8\u10d0\u10da\u10d4\u10d1\u10d0", -"Resize": "\u10d6\u10dd\u10db\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0", -"Sharpen": "\u10d2\u10d0\u10da\u10d4\u10e1\u10d5\u10d0", -"Zoom out": "\u10d3\u10d0\u10de\u10d0\u10e2\u10d0\u10e0\u10d0\u10d5\u10d4\u10d1\u10d0", -"Image options": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8", -"Apply": "\u10db\u10d8\u10e6\u10d4\u10d1\u10d0", -"Brightness": "\u10e1\u10d8\u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d4", -"Rotate clockwise": "\u10e1\u10d0\u10d0\u10d7\u10d8\u10e1 \u10d8\u10e1\u10e0\u10d8\u10e1 \u10db\u10d8\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10d7 \u10db\u10dd\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0", -"Rotate counterclockwise": "\u10e1\u10d0\u10d0\u10d7\u10d8\u10e1 \u10d8\u10e1\u10e0\u10d8\u10e1 \u10db\u10d8\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10e1 \u10e1\u10d0\u10ec\u10d8\u10dc\u10d0\u10d0\u10e6\u10db\u10d3\u10d4\u10d2\u10dd\u10d2 \u10db\u10dd\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0", -"Edit image": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0", -"Color levels": "\u10e4\u10d4\u10e0\u10d8\u10e1 \u10d3\u10dd\u10dc\u10d4", -"Crop": "\u10db\u10dd\u10ed\u10e0\u10d0", -"Orientation": "\u10dd\u10e0\u10d8\u10d4\u10dc\u10e2\u10d0\u10ea\u10d8\u10d0", -"Flip vertically": "\u10d5\u10d4\u10e0\u10e2\u10d8\u10d9\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10d0\u10e2\u10e0\u10d8\u10d0\u10da\u10d4\u10d1\u10d0", -"Invert": "\u10e8\u10d4\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0", -"Date\/time": "\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\/\u10d3\u10e0\u10dd", -"Insert date\/time": "\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\/\u10d3\u10e0\u10dd\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Remove link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0", -"Url": "Url", -"Text to display": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8", -"Anchors": "\u10e6\u10e3\u10d6\u10d0", -"Insert link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0", -"Link": "\u10d1\u10db\u10e3\u10da\u10d8", -"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?": "\u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10db\u10d8\u10d4\u10e0 \u10db\u10d8\u10d7\u10d8\u10d7\u10d4\u10d1\u10e3\u10da\u10d8 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8 \u10ec\u10d0\u10e0\u10db\u10dd\u10d0\u10d3\u10d2\u10d4\u10dc\u10e1 \u10d2\u10d0\u10e0\u10d4 \u10d1\u10db\u10e3\u10da\u10e1. \u10d2\u10e1\u10e3\u10e0\u10d7, \u10e0\u10dd\u10db \u10db\u10d8\u10d5\u10d0\u10dc\u10d8\u10ed\u10dd http:\/\/ \u10e4\u10e0\u10d4\u10e4\u10d8\u10e5\u10e1\u10d8?", -"Paste or type a link": "\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10d0\u10dc \u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10d1\u10db\u10e3\u10da\u10d8", -"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?": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10db\u10d8\u10e3\u10d7\u10d8\u10d7\u10d4\u10d7 \u10d4\u10da-\u10e4\u10dd\u10e1\u10e2\u10d8\u10e1 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3 \u10d5\u10d4\u10d1-\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1\u10d0. \u10d2\u10e1\u10e3\u10e0\u10d7, \u10e0\u10dd\u10db \u10db\u10d8\u10d5\u10d0\u10dc\u10d8\u10ed\u10dd mailto: \u10e4\u10e0\u10d4\u10e4\u10d8\u10e5\u10e1\u10d8?", -"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", -"Media": "\u10db\u10d4\u10d3\u10d8\u10d0", -"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", -"Poster": "\u10de\u10da\u10d0\u10d9\u10d0\u10e2\u10d8", -"Insert\/edit media": "\u10db\u10d4\u10d3\u10d8\u10d0\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\/\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\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": "\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8", -"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": "\u10d3\u10d0\u10e1\u10d0\u10e1\u10e0\u10e3\u10da\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", -"Add to Dictionary": "\u10da\u10d4\u10e5\u10e1\u10d8\u10d9\u10dd\u10dc\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\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", -"Border color": "\u10e1\u10d0\u10d6\u10d0\u10e0\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8", -"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", -"H Align": "H \u10e9\u10d0\u10db\u10ec\u10d9\u10e0\u10d8\u10d5\u10d4\u10d1\u10d0", -"Top": "\u10db\u10d0\u10e6\u10da\u10d0", -"Header cell": "\u10d7\u10d0\u10d5\u10d8\u10e1 \u10e3\u10ef\u10e0\u10d0", -"Column": "\u10e1\u10d5\u10d4\u10e2\u10d8", -"Row group": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ef\u10d2\u10e3\u10e4\u10d8", -"Cell": "\u10e3\u10ef\u10e0\u10d0", -"Middle": "\u10e8\u10e3\u10d0", -"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", -"Bottom": "\u10e5\u10d5\u10d4\u10d3\u10d0", -"V Align": "V \u10e9\u10d0\u10db\u10ec\u10d9\u10e0\u10d8\u10d5\u10d4\u10d1\u10d0", -"Header": "\u10d7\u10d0\u10d5\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", -"Custom...": "\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8", -"Custom color": "\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 \u10e4\u10d4\u10e0\u10d8", -"No color": "\u10e4\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4", -"Text color": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8", -"Table of Contents": "\u10e1\u10d0\u10e0\u10e9\u10d4\u10d5\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/build/media_source/vendor/tinymce/langs/kk.es5.js b/build/media_source/vendor/tinymce/langs/kk.es5.js deleted file mode 100644 index 7cec8ab1d3059..0000000000000 --- a/build/media_source/vendor/tinymce/langs/kk.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('kk',{ -"Cut": "\u049a\u0438\u044b\u043f \u0430\u043b\u0443", -"Heading 5": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 5", -"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.", -"Heading 4": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 4", -"Div": "Div", -"Heading 2": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 2", -"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", -"Heading 1": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 1", -"Headings": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f", -"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", -"Heading 6": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 6", -"Heading 3": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f 3", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u04d9\u0440\u0456\u043f\u0442\u0435\u043d \u0431\u0430\u0441\u0442\u0430\u043b\u044b\u043f, \u04d9\u0440\u0456\u043f\u0442\u0435\u0440, \u0441\u0430\u043d\u0434\u0430\u0440, \u0441\u044b\u0437\u044b\u049b\u0448\u0430\u043b\u0430\u0440, \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440 \u0436\u04d9\u043d\u0435 \u0442.\u0431 \u0436\u0430\u043b\u0493\u0430\u0441\u0443\u044b \u0442\u0438\u0456\u0441.", -"Name": "\u0410\u0442\u044b", -"Anchor": "\u0411\u0435\u0442\u0431\u0435\u043b\u0433\u0456", -"Id": "Id", -"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", -"Language": "\u0422\u0456\u043b", -"Insert\/Edit code sample": "\u041a\u043e\u0434 \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", -"B": "B", -"R": "R", -"G": "G", -"Color": "\u0422\u04af\u0441", -"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", -"Image": "\u0421\u0443\u0440\u0435\u0442", -"Zoom in": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430\u0442\u0443", -"Contrast": "\u049a\u043e\u044e\u043b\u0430\u0442\u0443", -"Back": "\u0410\u0440\u0442\u049b\u0430", -"Gamma": "\u0413\u0430\u043c\u043c\u0430", -"Flip horizontally": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u043d\u0435\u043d \u0430\u0443\u0434\u0430\u0440\u0443", -"Resize": "\u04e8\u043b\u0448\u0435\u043c\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", -"Sharpen": "\u041d\u0430\u049b\u0442\u044b\u043b\u0430\u0443", -"Zoom out": "\u0410\u043b\u044b\u0441\u0442\u0430\u0442\u0443", -"Image options": "\u0421\u0443\u0440\u0435\u0442 \u0431\u0430\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b", -"Apply": "\u0421\u0430\u049b\u0442\u0430\u0443", -"Brightness": "\u0410\u0448\u044b\u049b\u0442\u0430\u0443", -"Rotate clockwise": "\u0421\u0430\u0493\u0430\u0442 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0431\u0430\u0493\u044b\u0442\u044b\u043c\u0435\u043d \u0431\u04b1\u0440\u0443", -"Rotate counterclockwise": "\u0421\u0430\u0493\u0430\u0442 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0431\u0430\u0493\u044b\u0442\u044b\u043d\u0430 \u049b\u0430\u0440\u0441\u044b \u0431\u04b1\u0440\u0443", -"Edit image": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", -"Color levels": "\u0422\u04af\u0441 \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0435\u0440\u0456", -"Crop": "\u041a\u0435\u0441\u0443", -"Orientation": "\u0411\u0430\u0493\u0434\u0430\u0440", -"Flip vertically": "\u0422\u0456\u0433\u0456\u043d\u0435\u043d \u0430\u0443\u0434\u0430\u0440\u0443", -"Invert": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", -"Date\/time": "\u041a\u04af\u043d\/\u0443\u0430\u049b\u044b\u0442", -"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", -"Link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435", -"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?": "\u0421\u0456\u0437 \u0435\u04a3\u0433\u0456\u0437\u0456\u043f \u0442\u04b1\u0440\u0493\u0430\u043d URL \u0441\u044b\u0440\u0442\u049b\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0410\u043b\u0434\u044b\u043d\u0430 http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0456\u043d \u049b\u043e\u0441\u0443\u0434\u044b \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", -"Paste or type a link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u049b\u043e\u0439\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0435\u0440\u0456\u04a3\u0456\u0437", -"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?": "\u0421\u0456\u0437 \u0435\u04a3\u0433\u0456\u0437\u0456\u043f \u0442\u04b1\u0440\u0493\u0430\u043d URL e-mail \u0430\u0434\u0440\u0435\u0441\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0410\u043b\u0434\u044b\u043d\u0430 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0456\u043d \u049b\u043e\u0441\u0443\u0434\u044b \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", -"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", -"Media": "\u041c\u0435\u0434\u0438\u0430", -"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", -"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440\u0456", -"Insert\/edit media": "\u041c\u0435\u0434\u0438\u0430 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\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", -"Add to Dictionary": "\u0421\u04e9\u0437\u0434\u0456\u043a\u043a\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\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", -"Border color": "\u0416\u0438\u0435\u043a \u0442\u04af\u0441\u0456", -"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", -"H Align": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u043d\u0435\u043d \u0442\u0443\u0440\u0430\u043b\u0430\u0443", -"Top": "\u04ae\u0441\u0442\u0456", -"Header cell": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 \u04b1\u044f\u0448\u044b\u049b", -"Column": "\u0411\u0430\u0493\u0430\u043d", -"Row group": "\u0416\u043e\u043b \u0442\u043e\u0431\u044b", -"Cell": "\u04b0\u044f\u0448\u044b\u049b", -"Middle": "\u041e\u0440\u0442\u0430\u0441\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", -"Bottom": "\u0410\u0441\u0442\u044b", -"V Align": "\u0422\u0456\u0433\u0456\u043d\u0435\u043d \u0442\u0443\u0440\u0430\u043b\u0430\u0443", -"Header": "\u0411\u0430\u0441 \u0436\u0430\u0493\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", -"Custom...": "\u04e8\u0437\u0433\u0435\u0440\u0442\u0443", -"Custom color": "\u0422\u04af\u0441 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", -"No color": "\u0422\u04af\u0441\u0441\u0456\u0437", -"Text color": "\u041c\u04d9\u0442\u0456\u043d \u0442\u04af\u0441\u0456", -"Table of Contents": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u0430\u0440 \u043a\u0435\u0441\u0442\u0435\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/build/media_source/vendor/tinymce/langs/km.es5.js b/build/media_source/vendor/tinymce/langs/km.es5.js deleted file mode 100644 index 8d456334b1d97..0000000000000 --- a/build/media_source/vendor/tinymce/langs/km.es5.js +++ /dev/null @@ -1,219 +0,0 @@ -tinymce.addI18n('km',{ -"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", -"B": "B", -"R": "R", -"G": "G", -"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", -"Zoom in": "\u1796\u1784\u17d2\u179a\u17b8\u1780", -"Contrast": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1796\u178e\u17cc", -"Back": "\u1790\u1799\u1780\u17d2\u179a\u17c4\u1799", -"Gamma": "\u17a0\u17d2\u1782\u17b6\u1798\u17c9\u17b6", -"Flip horizontally": "\u178f\u17d2\u179a\u17a1\u1794\u17cb\u200b\u1795\u17d2\u178a\u17c1\u1780", -"Resize": "\u1794\u17d2\u178a\u17bc\u179a\u200b\u1791\u17c6\u17a0\u17c6", -"Sharpen": "\u1785\u17d2\u1794\u17b6\u179f\u17cb", -"Zoom out": "\u1794\u1784\u17d2\u179a\u17bd\u1798", -"Image options": "\u1787\u1798\u17d2\u179a\u17be\u179f\u200b\u179a\u17bc\u1794\u1797\u17b6\u1796", -"Apply": "\u17a2\u1793\u17bb\u179c\u178f\u17d2\u178f", -"Brightness": "\u1796\u1793\u17d2\u179b\u17ba", -"Rotate clockwise": "\u1794\u1784\u17d2\u179c\u17b7\u179b\u200b\u179f\u17d2\u179a\u1794\u200b\u1791\u17d2\u179a\u1793\u17b7\u1785\u200b\u1793\u17b6\u17a1\u17b7\u1780\u17b6", -"Rotate counterclockwise": "\u1794\u1784\u17d2\u179c\u17b7\u179b\u200b\u1785\u17d2\u179a\u17b6\u179f\u200b\u1791\u17d2\u179a\u1793\u17b7\u1785\u200b\u1793\u17b6\u17a1\u17b7\u1780\u17b6", -"Edit image": "\u1780\u17c2\u179f\u1798\u17d2\u179a\u17bd\u179b\u200b\u179a\u17bc\u1794\u1797\u17b6\u1796", -"Color levels": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1796\u178e\u17cc", -"Crop": "\u1785\u17d2\u179a\u17b9\u1794", -"Orientation": "\u1791\u17b7\u179f", -"Flip vertically": "\u178f\u17d2\u179a\u17a1\u1794\u17cb\u200b\u1794\u1789\u17d2\u1788\u179a", -"Invert": "\u178a\u17b6\u1780\u17cb\u200b\u1794\u1789\u17d2\u1785\u17d2\u179a\u17b6\u179f", -"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/build/media_source/vendor/tinymce/langs/ko.es5.js b/build/media_source/vendor/tinymce/langs/ko.es5.js deleted file mode 100644 index 6e536112fc5b9..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ko.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('ko',{ -"Cut": "\uc798\ub77c\ub0b4\uae30", -"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.", -"Div": "\uad6c\ubd84", -"Paste": "\ubd99\uc5ec\ub123\uae30", -"Close": "\ub2eb\uae30", -"Font Family": "Font Family", -"Pre": "Pre", -"Align right": "\uc624\ub978\ucabd\uc815\ub82c", -"New document": "\uc0c8 \ubb38\uc11c", -"Blockquote": "\uad6c\ud68d", -"Numbered list": "\uc22b\uc790\ub9ac\uc2a4\ud2b8", -"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": "Font Sizes", -"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", -"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/build/media_source/vendor/tinymce/langs/lb.es5.js b/build/media_source/vendor/tinymce/langs/lb.es5.js deleted file mode 100644 index 53e43ae917134..0000000000000 --- a/build/media_source/vendor/tinymce/langs/lb.es5.js +++ /dev/null @@ -1,179 +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", -"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/build/media_source/vendor/tinymce/langs/lt.es5.js b/build/media_source/vendor/tinymce/langs/lt.es5.js deleted file mode 100644 index f13e305fcf464..0000000000000 --- a/build/media_source/vendor/tinymce/langs/lt.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('lt',{ -"Redo": "Gr\u0105\u017einti", -"Undo": "Atstatyti", -"Cut": "I\u0161kirpti", -"Copy": "Kopijuoti", -"Paste": "\u012ed\u0117ti", -"Select all": "Pa\u017eym\u0117ti visk\u0105", -"New document": "Naujas dokumentas", -"Ok": "Gerai", -"Cancel": "Atsisakyti", -"Visual aids": "Vaizdin\u0117s priemon\u0117s", -"Bold": "Pary\u0161kintas", -"Italic": "Kursyvinis", -"Underline": "Pabrauktas", -"Strikethrough": "Perbrauktas", -"Superscript": "Vir\u0161utinis indeksas", -"Subscript": "Apatinis indeksas", -"Clear formatting": "Naikinti formatavim\u0105", -"Align left": "Lygiuoti kair\u0117je", -"Align center": "Centruoti", -"Align right": "Lygiuoti de\u0161in\u0117je", -"Justify": "I\u0161d\u0117styti per vis\u0105 plot\u012f", -"Bullet list": "\u017denklinimo s\u0105ra\u0161as", -"Numbered list": "Skaitmeninis s\u0105ra\u0161as", -"Decrease indent": "Ma\u017einti \u012ftrauk\u0105", -"Increase indent": "Didinti \u012ftrauk\u0105", -"Close": "U\u017edaryti", -"Formats": "Formatai", -"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.", -"Headers": "Antra\u0161t\u0117s", -"Header 1": "Antra\u0161t\u0117 1", -"Header 2": "Antra\u0161t\u0117 2", -"Header 3": "Antra\u0161t\u0117 3", -"Header 4": "Antra\u0161t\u0117 4", -"Header 5": "Antra\u0161t\u0117 5", -"Header 6": "Antra\u0161t\u0117 6", -"Headings": "Antra\u0161t\u0117s", -"Heading 1": "Antra\u0161t\u0117 1", -"Heading 2": "Antra\u0161t\u0117 2", -"Heading 3": "Antra\u0161t\u0117 3", -"Heading 4": "Antra\u0161t\u0117 4", -"Heading 5": "Antra\u0161t\u0117 5", -"Heading 6": "Antra\u0161t\u0117 6", -"Div": "Div", -"Pre": "Pre", -"Code": "Kodas", -"Paragraph": "Paragrafas", -"Blockquote": "Citata", -"Inline": "Inline", -"Blocks": "Blokai", -"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.", -"Font Family": "\u0160riftas", -"Font Sizes": "\u0160rifto dyd\u017eiai", -"Default": "Pagrindinis", -"Circle": "Apskritimas", -"Disc": "Diskas", -"Square": "Kvadratas", -"Lower Alpha": "Ma\u017eosios raid\u0117s", -"Lower Greek": "Ma\u017eosios graik\u0173", -"Lower Roman": "Ma\u017eosios rom\u0117n\u0173", -"Upper Alpha": "Did\u017eiosios raid\u0117s", -"Upper Roman": "Did\u017eiosios rom\u0117n\u0173", -"Anchor": "\u017dym\u0117", -"Name": "Pavadinimas", -"Id": "ID", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID turi prasid\u0117ti raide, po kurios gali b\u016bti raid\u0117s, skai\u010diai, br\u016bk\u0161niai, ta\u0161kai, kabliata\u0161kiai ar apatiniai pabraukimai.", -"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", -"Insert\/Edit code sample": "Prid\u0117ti \/ keisti kodo pavyzd\u012f", -"Language": "Kalba", -"Color": "Spalva", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "I\u0161 kair\u0117s \u012f de\u0161in\u0119", -"Right to left": "I\u0161 de\u0161in\u0117s \u012f kair\u0119", -"Emoticons": "Jaustukai", -"Document properties": "Dokumento savyb\u0117s", -"Title": "Pavadinimas", -"Keywords": "\u017dymos", -"Description": "Apra\u0161as", -"Robots": "Robotai", -"Author": "Autorius", -"Encoding": "Kodavimas", -"Fullscreen": "Visas ekranas", -"Horizontal line": "Horizontali linija", -"Insert\/edit image": "\u012eterpti|Tvarkyti paveiksl\u0117l\u012f", -"Image description": "Paveiksl\u0117lio apra\u0161as", -"Source": "Pirmin\u0117 nuoroda", -"Dimensions": "Matmenys", -"Constrain proportions": "Laikytis proporcij\u0173", -"General": "Bendra", -"Advanced": "I\u0161pl\u0117stas", -"Style": "Stilius", -"Vertical space": "Vertikalus tarpas", -"Horizontal space": "Horizontalus tarpas", -"Border": "R\u0117melis", -"Insert image": "\u012eterpti paveiksl\u0117l\u012f", -"Image": "Paveiksl\u0117lis", -"Rotate counterclockwise": "Pasukti prie\u0161 laikrod\u017eio rodykl\u0119", -"Rotate clockwise": "Pasukti pagal laikrod\u017eio rodykl\u0119", -"Flip vertically": "Apversti vertikaliai", -"Flip horizontally": "Apversti horizontaliai", -"Edit image": "Redaguoti paveiksl\u0117l\u012f", -"Image options": "Paveiksl\u0117lio nustatymai", -"Zoom in": "Priartinti", -"Zoom out": "Atitolinti", -"Crop": "Atkarpyti", -"Resize": "Keisti dyd\u012f", -"Orientation": "Pasukimas", -"Brightness": "\u0160viesumas", -"Sharpen": "Ry\u0161kumas", -"Contrast": "Kontrastas", -"Color levels": "Spalv\u0173 lygiai", -"Gamma": "Gama", -"Invert": "Prie\u0161ingos spalvos", -"Apply": "Taikyti", -"Back": "Atgal", -"Insert date\/time": "\u012eterpti dat\u0105\/laik\u0105", -"Date\/time": "Data \/ laikas", -"Insert link": "\u012eterpti nuorod\u0105", -"Insert\/edit link": "\u012eterpti\/taisyti nuorod\u0105", -"Text to display": "Rodomas tekstas", -"Url": "Nuoroda", -"Target": "Tikslin\u0117 nuoroda", -"None": "Nieko", -"New window": "Naujas langas", -"Remove link": "\u0160alinti nuorod\u0105", -"Anchors": "\u017dym\u0117", -"Link": "Nuoroda", -"Paste or type a link": "\u012eklijuokite arba \u012fra\u0161ykite nuorod\u0105", -"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 norite prie\u0161 j\u012f \u012fvesti reikalaujam\u0105 \u201emailto:\u201c?", -"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?", -"Insert video": "\u012eterpti video", -"Insert\/edit video": "\u012eterpti\/tvarkyti video", -"Insert\/edit media": "Prid\u0117ti \/ keisti medij\u0105", -"Alternative source": "Alternatyvus \u0161altinis", -"Poster": "Plakatas", -"Paste your embed code below:": "\u012eterpkite kod\u0105 \u017eemiau:", -"Embed": "\u012eterpti", -"Media": "Medija", -"Nonbreaking space": "Nepertraukiamos vietos", -"Page break": "Puslapio skirtukas", -"Paste as text": "\u012eklijuoti kaip tekst\u0105", -"Preview": "Per\u017ei\u016bra", -"Print": "Spausdinti", -"Save": "I\u0161saugoti", -"Find": "Ie\u0161koti", -"Replace with": "Kuo pakeisti", -"Replace": "Pakeisti", -"Replace all": "Pakeisti visk\u0105", -"Prev": "Ankstesnis", -"Next": "Sekantis", -"Find and replace": "Surasti ir pakeisti", -"Could not find the specified string.": "Nepavyko rasti nurodytos eilut\u0117s.", -"Match case": "Atitinkamus", -"Whole words": "Visus \u017eod\u017eius", -"Spellcheck": "Ra\u0161ybos tikrinimas", -"Ignore": "Ignoruoti", -"Ignore all": "Ignoruoti visk\u0105", -"Finish": "Baigti", -"Add to Dictionary": "Prid\u0117ti \u012f \u017dodyn\u0105", -"Insert table": "\u012eterpti lentel\u0119", -"Table properties": "Lentel\u0117s savyb\u0117s", -"Delete table": "\u0160alinti lentel\u0119", -"Cell": "Langeliai", -"Row": "Eilut\u0117s", -"Column": "Stulpelis", -"Cell properties": "Langelio savyb\u0117s", -"Merge cells": "Sujungti langelius", -"Split cell": "Skaidyti langelius", -"Insert row before": "\u012eterpti eilut\u0119 prie\u0161", -"Insert row after": "\u012eterpti eilut\u0119 po", -"Delete row": "Naikinti eilut\u0119", -"Row properties": "Eilut\u0117s savyb\u0117s", -"Cut row": "I\u0161kirpti eilut\u0119", -"Copy row": "Kopijuoti eilut\u0119", -"Paste row before": "\u012ed\u0117ti eilut\u0119 prie\u0161", -"Paste row after": "\u012ed\u0117ti eilut\u0119 po", -"Insert column before": "\u012eterpti stulpel\u012f prie\u0161", -"Insert column after": "\u012eterpti stulpel\u012f po", -"Delete column": "Naikinti stulpel\u012f", -"Cols": "Stulpeliai", -"Rows": "Eilut\u0117s", -"Width": "Plotis", -"Height": "Auk\u0161tis", -"Cell spacing": "Tarpas tarp langeli\u0173", -"Cell padding": "Tarpas nuo langelio iki teksto", -"Caption": "Antra\u0161t\u0117", -"Left": "Kair\u0117", -"Center": "Centras", -"Right": "De\u0161in\u0117", -"Cell type": "Langelio tipas", -"Scope": "Strukt\u016bra", -"Alignment": "Lygiavimas", -"H Align": "H Lygiavimas", -"V Align": "V Lygiavimas", -"Top": "Vir\u0161uje", -"Middle": "Viduryje", -"Bottom": "Apa\u010dioje", -"Header cell": "Antra\u0161t\u0117s langelis", -"Row group": "Eilu\u010di\u0173 grup\u0117", -"Column group": "Stulpeli\u0173 grup\u0117", -"Row type": "Eilu\u010di\u0173 tipas", -"Header": "Antra\u0161t\u0117", -"Body": "Turinys", -"Footer": "Apa\u010dia", -"Border color": "R\u0117melio spalva", -"Insert template": "\u012eterpti \u0161ablon\u0105", -"Templates": "\u0160ablonai", -"Text color": "Teksto spalva", -"Background color": "Fono spalva", -"Custom...": "Pasirinktinas...", -"Custom color": "Pasirinktina spalva", -"No color": "Jokios spalvos", -"Table of Contents": "Turinys", -"Show blocks": "Rodyti blokus", -"Show invisible characters": "Rodyti nematomus simbolius", -"Words: {0}": "\u017dod\u017eiai: {0}", -"File": "Failas", -"Edit": "Redaguoti", -"Insert": "\u012eterpti", -"View": "Per\u017ei\u016bra", -"Format": "Formatas", -"Table": "Lentel\u0117", -"Tools": "\u012erankiai", -"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." -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/lv.es5.js b/build/media_source/vendor/tinymce/langs/lv.es5.js deleted file mode 100644 index 4adc6fe5ca505..0000000000000 --- a/build/media_source/vendor/tinymce/langs/lv.es5.js +++ /dev/null @@ -1,197 +0,0 @@ -tinymce.addI18n('lv',{ -"Cut": "Izgriezt", -"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.", -"Div": "Div elements", -"Paste": "Iel\u012bm\u0113t", -"Close": "Aizv\u0113rt", -"Font Family": "Font Family", -"Pre": "Pre elements", -"Align right": "L\u012bdzin\u0101t pa labi", -"New document": "Jauns dokuments", -"Blockquote": "Cit\u0101ts", -"Numbered list": "Numur\u0113ts saraksts", -"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": "Font Sizes", -"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", -"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", -"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?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "M\u0113r\u0137is", -"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": "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", -"Insert row before": "Ievietot rindu pirms", -"Rows": "Rindas", -"Height": "Augstums", -"Paste row after": "Iel\u012bm\u0113t rindu p\u0113c", -"Alignment": "L\u012bdzin\u0101jums", -"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", -"Header cell": "Galvenes \u0161\u016bna", -"Column": "Kolona", -"Cell": "\u0160\u016bna", -"Header": "Galvene", -"Cell type": "\u0160\u016bnas tips", -"Copy row": "Kop\u0113t rindu", -"Row properties": "Rindas uzst\u0101d\u012bjumi", -"Table properties": "Tabulas uzst\u0101d\u012bjumi", -"Row group": "Rindu grupa", -"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", -"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", -"H Align": "Horizont\u0101lais l\u012bdzin\u0101jums", -"V Align": "Vertik\u0101lais l\u012bdzin\u0101jums", -"Top": "Aug\u0161\u0101", -"Middle": "Vid\u016b", -"Bottom": "Apak\u0161\u0101", -"Headings": "Virsraksti", -"Heading 1": "1. virsraksts", -"Heading 2": "2. virsraksts", -"Heading 3": "3. virsraksts", -"Heading 4": "4. virsraksts", -"Heading 5": "5. virsraksts", -"Heading 6": "6. virsraksts", -"Add to Dictionary": "Pievienot v\u0101rdn\u012bcai", -"Border color": "Apmales kr\u0101sa", -"Color": "Kr\u0101sa", -"Custom...": "Piel\u0101gots...", -"Custom color": "Nestandarta kr\u0101sa", -"No color": "Bez kr\u0101sas" -}); diff --git a/build/media_source/vendor/tinymce/langs/mk.es5.js b/build/media_source/vendor/tinymce/langs/mk.es5.js deleted file mode 100644 index f5171a1d64eb9..0000000000000 --- a/build/media_source/vendor/tinymce/langs/mk.es5.js +++ /dev/null @@ -1,233 +0,0 @@ -tinymce.addI18n('mk',{ -"Cut": "\u0418\u0441\u0435\u0447\u0438", -"Heading 5": "\u041d\u0430\u0441\u043b\u043e\u0432 5", -"Header 2": "\u041d\u0430\u0441\u043b\u043e\u0432 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\u043e\u0442 \u043f\u0440\u0435\u043b\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043d\u0435 \u043f\u043e\u0434\u0434\u0440\u0436\u0443\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u043f\u0440\u0438\u0441\u0442\u0430\u043f \u0434\u043e \u043c\u0435\u043c\u043e\u0440\u0438\u0458\u0430\u0442\u0430.\u041a\u043e\u0440\u0438\u0441\u0442\u0435\u0442\u0435 \u0433\u0438 Ctrl+X\/C\/V \u043a\u0440\u0430\u0442\u0435\u043d\u043a\u0438\u0442\u0435 \u043d\u0430 \u0442\u0430\u0441\u0442\u0430\u0442\u0443\u0440\u0430\u0442\u0430.", -"Heading 4": "\u041d\u0430\u0441\u043b\u043e\u0432 4", -"Div": "DIV", -"Heading 2": "\u041d\u0430\u0441\u043b\u043e\u0432 2", -"Paste": "\u0412\u043c\u0435\u0442\u043d\u0438", -"Close": "\u0417\u0430\u0442\u0432\u043e\u0440\u0438", -"Font Family": "\u0424\u043e\u043d\u0442 \u0444\u0430\u043c\u0438\u043b\u0438\u0458\u0430", -"Pre": "PRE", -"Align right": "\u0414\u0435\u0441\u043d\u043e \u043f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435", -"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Blockquote": "\u0426\u0438\u0442\u0430\u0442", -"Numbered list": "\u041b\u0438\u0441\u0442\u0430 \u0441\u043e \u0431\u0440\u043e\u0458\u043a\u0438", -"Heading 1": "\u041d\u0430\u0441\u043b\u043e\u0432 1", -"Headings": "\u041d\u0430\u0441\u043b\u043e\u0432\u0438", -"Increase indent": "\u0417\u0433\u043e\u043b\u0435\u043c\u0438 \u0432\u043e\u0432\u043b\u0435\u043a\u0443\u0432\u0430\u045a\u0435", -"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438", -"Headers": "\u041d\u0430\u0441\u043b\u043e\u0432\u0438", -"Select all": "\u041e\u0437\u043d\u0430\u0447\u0438 \u0433\u0438 \u0441\u0438\u0442\u0435", -"Header 3": "\u041d\u0430\u0441\u043b\u043e\u0432 3", -"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0438", -"Undo": "\u0412\u0440\u0430\u0442\u0438", -"Strikethrough": "\u041f\u0440\u0435\u0446\u0440\u0442\u0430\u043d\u043e", -"Bullet list": "\u041b\u0438\u0441\u0442\u0430 \u0441\u043e \u0437\u043d\u0430\u0446\u0438", -"Header 1": "\u041d\u0430\u0441\u043b\u043e\u0432 1", -"Superscript": "\u041d\u0430\u0442\u0442\u0435\u043a\u0441\u0442", -"Clear formatting": "\u0418\u0441\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u045a\u0435", -"Font Sizes": "\u0424\u043e\u043d\u0442 \u0433\u043e\u043b\u0435\u043c\u0438\u043d\u0430", -"Subscript": "\u041f\u043e\u0442\u0442\u0435\u043a\u0441\u0442", -"Header 6": "\u041d\u0430\u0441\u043b\u043e\u0432 6", -"Redo": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438", -"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", -"Ok": "\u041e\u041a", -"Bold": "\u0417\u0434\u0435\u0431\u0435\u043b\u0435\u043d\u043e", -"Code": "\u041a\u043e\u0434", -"Italic": "\u041d\u0430\u043a\u043e\u0441\u0435\u043d\u043e", -"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e", -"Header 5": "\u041d\u0430\u0441\u043b\u043e\u0432 5", -"Heading 6": "\u041d\u0430\u0441\u043b\u043e\u0432 6", -"Heading 3": "\u041d\u0430\u0441\u043b\u043e\u0432 3", -"Decrease indent": "\u0421\u043c\u0430\u043b\u0438 \u0432\u043e\u0432\u043b\u0435\u043a\u0443\u0432\u0430\u045a\u0435", -"Header 4": "\u041d\u0430\u0441\u043b\u043e\u0432 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u043c\u0435\u0442\u043d\u0443\u0432\u0430\u045a\u0435\u0442\u043e \u0435 \u043a\u0430\u043a\u043e \u0447\u0438\u0441\u0442 \u0442\u0435\u043a\u0441\u0442. \u0421\u043e\u0434\u0440\u0436\u0438\u043d\u0430\u0442\u0430 \u045c\u0435 \u0431\u0438\u0434\u0435 \u0432\u043c\u0435\u0442\u043d\u0430\u0442\u0430 \u043a\u0430\u043a\u043e \u0447\u0438\u0441\u0442 \u0442\u0435\u043a\u0441\u0442 \u0441\u00e8 \u0434\u043e\u0434\u0435\u043a\u0430 \u043d\u0435 \u0458\u0430 \u0438\u0441\u043a\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0432\u0430\u0430 \u043e\u043f\u0446\u0438\u0458\u0430.", -"Underline": "\u041f\u043e\u0434\u0432\u043b\u0435\u0447\u0435\u043d\u043e", -"Cancel": "\u041e\u0442\u043a\u0430\u0436\u0438", -"Justify": "\u041f\u043e\u0440\u0430\u043c\u043d\u0435\u0442\u043e", -"Inline": "\u041d\u0430\u0432\u043d\u0430\u0442\u0440\u0435", -"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u0458", -"Align left": "\u041b\u0435\u0432\u043e \u043f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435", -"Visual aids": "\u0412\u0438\u0437\u0443\u0435\u043b\u043d\u0430 \u043f\u043e\u043c\u043e\u0448", -"Lower Greek": "\u041c\u0430\u043b\u0438 \u0433\u0440\u0447\u043a\u0438", -"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442", -"Default": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e", -"Lower Alpha": "\u041c\u0430\u043b\u0438 \u0430\u043b\u0444\u0430", -"Circle": "\u041a\u0440\u0443\u0433", -"Disc": "\u0422\u043e\u0447\u043a\u0430", -"Upper Alpha": "\u0413\u043e\u043b\u0435\u043c\u0438 \u0430\u043b\u0444\u0430", -"Upper Roman": "\u0413\u043e\u043b\u0435\u043c\u0438 \u0440\u0438\u043c\u0441\u043a\u0438", -"Lower Roman": "\u0413\u043e\u043b\u0435\u043c\u0438 \u0440\u0438\u043c\u0441\u043a\u0438", -"Name": "\u0418\u043c\u0435", -"Anchor": "\u0421\u0438\u0434\u0440\u043e", -"You have unsaved changes are you sure you want to navigate away?": "\u0418\u043c\u0430\u0442\u0435 \u043d\u0435\u0437\u0430\u0447\u0443\u0432\u0430\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438, \u0441\u0438\u0433\u0443\u0440\u043d\u043e \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u0458\u0430 \u043d\u0430\u043f\u0443\u0448\u0442\u0438\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430?", -"Restore last draft": "\u0412\u0440\u0430\u0442\u0438 \u0433\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043e\u0442 \u043d\u0430\u0446\u0440\u0442", -"Special character": "\u0421\u043f\u0435\u0446\u0438\u0458\u0430\u043b\u0435\u043d \u043a\u0430\u0440\u0430\u043a\u0442\u0435\u0440", -"Source code": "\u0418\u0437\u0432\u043e\u0440\u0435\u043d \u043a\u043e\u0434", -"Color": "\u0411\u043e\u0458\u0430", -"Right to left": "\u041e\u0434 \u0434\u0435\u0441\u043d\u043e \u043d\u0430 \u043b\u0435\u0432\u043e", -"Left to right": "\u041e\u0434 \u043b\u0435\u0432\u043e \u043d\u0430 \u0434\u0435\u0441\u043d\u043e", -"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438", -"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438", -"Document properties": "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0442", -"Title": "\u041d\u0430\u0441\u043b\u043e\u0432", -"Keywords": "\u041a\u043b\u0443\u0447\u043d\u0438 \u0437\u0431\u043e\u0440\u043e\u0432\u0438", -"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u045a\u0435", -"Description": "\u041e\u043f\u0438\u0441", -"Author": "\u0410\u0432\u0442\u043e\u0440", -"Fullscreen": "\u0426\u0435\u043b \u0435\u043a\u0440\u0430\u043d", -"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u043b\u0438\u043d\u0438\u0458\u0430", -"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0435\u043d \u043f\u0440\u043e\u0441\u0442\u043e\u0440", -"Insert\/edit image": "\u0412\u043c\u0435\u0442\u043d\u0438\/\u0421\u043c\u0435\u043d\u0438 \u0441\u043b\u0438\u043a\u0430", -"General": "\u041e\u043f\u0448\u0442\u043e", -"Advanced": "\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u043e", -"Source": "\u0418\u0437\u0432\u043e\u0440", -"Border": "\u0420\u0430\u043c\u043a\u0430", -"Constrain proportions": "\u0412\u0440\u0437\u0430\u043d\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438", -"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0435\u043d \u043f\u0440\u043e\u0441\u0442\u043e\u0440", -"Image description": "\u041e\u043f\u0438\u0441 \u043d\u0430 \u0441\u043b\u0438\u043a\u0430", -"Style": "\u0421\u0442\u0438\u043b", -"Dimensions": "\u0414\u0438\u043c\u0435\u043d\u0437\u0438\u0438", -"Insert image": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0441\u043b\u0438\u043a\u0430", -"Insert date\/time": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0434\u0430\u0442\u0443\u043c\/\u0432\u0440\u0435\u043c\u0435", -"Remove link": "\u041e\u0442\u0441\u0442\u0440\u0430\u043d\u0438 \u043b\u0438\u043d\u043a", -"Url": "URL", -"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0437\u0430 \u043f\u0440\u0438\u043a\u0430\u0437", -"Anchors": "\u0421\u0438\u0434\u0440\u0430", -"Insert link": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043b\u0438\u043d\u043a", -"New window": "\u041d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446", -"None": "\u041d\u0438\u0448\u0442\u043e", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-\u0442\u043e \u043a\u043e\u0435 \u0433\u043e \u0432\u043d\u0435\u0441\u043e\u0432\u0442\u0435 \u0441\u0435 \u0447\u0438\u043d\u0438 \u0434\u0435\u043a\u0430 \u0435 \u043d\u0430\u0434\u0432\u043e\u0440\u0435\u0448\u043d\u0430 \u0432\u0440\u0441\u043a\u0430. \u0414\u0430\u043b\u0438 \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0434\u0430\u0434\u0435 \u0437\u0430\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438\u043e\u0442 http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", -"Target": "\u0426\u0435\u043b", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "UR-\u0442\u043e \u043a\u043e\u0435 \u0433\u043e \u0432\u043d\u0435\u0441\u043e\u0432\u0442\u0435 \u0441\u0435 \u0447\u0438\u043d\u0438 \u0434\u0435\u043a\u0430 \u0435 \u0435-\u043f\u043e\u0448\u0442\u0430. \u0414\u0430\u043b\u0438 \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0434\u043e\u0434\u0430\u0434\u0435 \u0437\u0430\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438\u043e\u0442 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", -"Insert\/edit link": "\u0412\u043c\u0435\u0442\u043d\u0438\/\u0441\u043c\u0435\u043d\u0438 \u043b\u0438\u043d\u043a", -"Insert\/edit video": "\u0412\u043c\u0435\u0442\u043d\u0438\/\u0441\u043c\u0435\u043d\u0438 \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 \u0438\u0437\u0432\u043e\u0440", -"Paste your embed code below:": "\u0412\u0435\u043c\u0442\u043d\u0438 \u0433\u043e \u043a\u043e\u0434\u043e\u0442 \u0437\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u043e \u043f\u043e\u0434\u043e\u043b\u0443:", -"Insert\/Edit code sample": "\u0412\u043c\u0435\u0442\u043d\u0438\/\u0441\u043c\u0435\u043d\u0438 \u043f\u0440\u0438\u043c\u0435\u0440 \u0437\u0430 \u043a\u043e\u0434", -"Insert video": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0432\u0438\u0434\u0435\u043e", -"Embed": "\u0412\u0433\u0440\u0430\u0434\u0435\u043d\u043e", -"Nonbreaking space": "\u041c\u0435\u0441\u0442\u043e \u0431\u0435\u0437 \u043f\u0440\u0435\u043a\u0440\u0448\u0443\u0432\u0430\u045a\u0435", -"Page break": "\u041f\u0440\u0435\u043a\u0440\u0448\u0443\u0432\u0430\u045a\u0435", -"Paste as text": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043a\u0430\u043a\u043e \u0442\u0435\u043a\u0441\u0442", -"Preview": "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", -"Print": "\u041f\u0435\u0447\u0430\u0442\u0438", -"Save": "\u0417\u0430\u0447\u0443\u0432\u0430\u0458", -"Could not find the specified string.": "\u041d\u0435\u043c\u043e\u0436\u043d\u043e \u0434\u0430 \u0441\u0435 \u043d\u0430\u0458\u0434\u0435 \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u043e\u0442 \u043d\u0438\u0437.", -"Replace": "\u0421\u043c\u0435\u043d\u0438", -"Next": "\u041f\u043e", -"Whole words": "\u0426\u0435\u043b\u0438 \u0437\u0431\u043e\u0440\u043e\u0432\u0438", -"Find and replace": "\u041d\u0430\u0458\u0434\u0438 \u0438 \u0441\u043c\u0435\u043d\u0438", -"Replace with": "\u0421\u043c\u0435\u043d\u0438 \u0441\u043e", -"Find": "\u041d\u0430\u0458\u0434\u0438", -"Replace all": "\u0421\u043c\u0435\u043d\u0438 \u0441\u00e8", -"Match case": "\u0414\u0430 \u0441\u0435 \u0441\u043e\u0432\u043f\u0430\u0453\u0430", -"Prev": "\u041f\u0440\u0435\u0434", -"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441", -"Finish": "\u041a\u0440\u0430\u0458", -"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u0458 \u0441\u00e8", -"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u0458", -"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0434\u0438 \u0432\u043e \u0440\u0435\u0447\u043d\u0438\u043a", -"Insert row before": "\u041d\u043e\u0432 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434", -"Rows": "\u0420\u0435\u0434\u043e\u0432\u0438", -"Height": "\u0412\u0438\u0441\u0438\u043d\u0430", -"Paste row after": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043f\u043e\u0441\u043b\u0435", -"Border color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430", -"Alignment": "\u041f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435", -"Column group": "\u0413\u0440\u0443\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u0438", -"Row": "\u0420\u0435\u0434", -"Insert column before": "\u041d\u043e\u0432\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434", -"Split cell": "\u041f\u043e\u0434\u0435\u043b\u0438 \u045c\u0435\u043b\u0438\u0458\u0430", -"Cell padding": "\u041f\u0440\u043e\u0441\u0442\u043e\u0440 \u0432\u043e \u045c\u0435\u043b\u0438\u0458\u0430", -"Cell spacing": "\u041f\u0440\u043e\u0441\u0442\u043e\u0440 \u043c\u0435\u0453\u0443 \u045c\u0435\u043b\u0438\u0438", -"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434", -"Insert table": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0442\u0430\u0431\u0435\u043b\u0430", -"Body": "\u0422\u0435\u043b\u043e", -"Caption": "\u041d\u0430\u0442\u043f\u0438\u0441", -"Footer": "\u041f\u043e\u0434\u043d\u043e\u0436\u0458\u0435", -"Delete row": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0440\u0435\u0434", -"Paste row before": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434", -"Scope": "\u041e\u043f\u0441\u0435\u0433", -"Delete table": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0442\u0430\u0431\u0435\u043b\u0430", -"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435", -"Top": "\u0413\u043e\u0440\u0435", -"Header cell": "\u041d\u0430\u0441\u043b\u043e\u0432\u043d\u0430 \u045c\u0435\u043b\u0438\u0458\u0430", -"Column": "\u041a\u043e\u043b\u043e\u043d\u0430", -"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u0435\u0434\u043e\u0432\u0438", -"Cell": "\u040c\u0435\u043b\u0438\u0458\u0430", -"Middle": "\u0421\u0440\u0435\u0434\u0438\u043d\u0430", -"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u045c\u0435\u043b\u0438\u0458\u0430", -"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u0440\u0435\u0434", -"Row properties": "\u041a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0440\u0435\u0434", -"Table properties": "\u041a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u0442\u0430\u0431\u0435\u043b\u0430", -"Bottom": "\u0414\u043e\u043b\u0443", -"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435", -"Header": "\u041d\u0430\u0441\u043b\u043e\u0432", -"Right": "\u0414\u0435\u0441\u043d\u043e", -"Insert column after": "\u041d\u043e\u0432\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u043e", -"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438", -"Insert row after": "\u041d\u043e\u0432 \u0440\u0435\u0434 \u043f\u043e", -"Width": "\u0428\u0438\u0440\u0438\u043d\u0430", -"Cell properties": "\u041a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430", -"Left": "\u041b\u0435\u0432\u043e", -"Cut row": "\u041e\u0442\u0441\u0435\u0447\u0438 \u0440\u0435\u0434", -"Delete column": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043a\u043e\u043b\u043e\u043d\u0430", -"Center": "\u0426\u0435\u043d\u0442\u0430\u0440", -"Merge cells": "\u0421\u043f\u043e\u0438 \u043a\u043e\u043b\u043e\u043d\u0438", -"Insert template": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0448\u0430\u0431\u043b\u043e\u043d", -"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", -"Background color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0430", -"Custom...": "\u041f\u043e \u0436\u0435\u043b\u0431\u0430", -"Custom color": "\u0411\u043e\u0458\u0430 \u043f\u043e \u0436\u0435\u043b\u0431\u0430", -"No color": "\u0411\u0435\u0437 \u0431\u043e\u0458\u0430", -"Text color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442", -"Show blocks": "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0431\u043b\u043e\u043a\u043e\u0432\u0438", -"Show invisible characters": "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043d\u0435\u0432\u0438\u0434\u043b\u0438\u0432\u0438 \u043a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438", -"Words: {0}": "\u0417\u0431\u043e\u0440\u043e\u0432\u0438:{0}", -"Insert": "\u0412\u043c\u0435\u0442\u043d\u0438", -"File": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", -"Edit": "\u0423\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0417\u0431\u043e\u0433\u0430\u0442\u0435\u043d\u043e \u043f\u043e\u043b\u0435 \u0437\u0430 \u0442\u0435\u043a\u0441\u0442. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0435\u0442\u0435 ALT-F9 \u0437\u0430 \u043c\u0435\u043d\u0438.\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0435\u0442\u0435 ALT-F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441\u043e \u0430\u043b\u0430\u0442\u043a\u0438.\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0435\u0442\u0435 ALT-0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0448", -"Preformatted": "\u041f\u0440\u0435\u0434\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u043e", -"Tools": "\u0410\u043b\u0430\u0442\u043a\u0438", -"View": "\u041f\u0440\u0438\u043a\u0430\u0437", -"Table": "\u0422\u0430\u0431\u0435\u043b\u0430", -"Format": "\u0424\u043e\u0440\u043c\u0430\u0442", -"Color": "\u0411\u043e\u0458\u0430", -"R": "R", -"G": "G", -"B": "B", -"Rotate counterclockwise": "\u0417\u0430\u0432\u0440\u0442\u0438 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043e\u0434 \u0441\u0442\u0440\u0435\u043b\u043a\u0438\u0442\u0435", -"Rotate clockwise": "\u0417\u0430\u0432\u0440\u0442\u0438 \u0432\u043e \u043f\u0440\u0430\u0432\u0435\u0446 \u043d\u0430 \u0441\u0442\u0440\u0435\u043b\u043a\u0438\u0442\u0435", -"Flip vertically": "\u041f\u0440\u0435\u0432\u0440\u0442\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e", -"Flip horizontally": "\u041f\u0440\u0435\u0432\u0440\u0442\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e", -"Edit image": "\u0423\u0440\u0435\u0434\u0438 \u0441\u043b\u0438\u043a\u0430", -"Image options": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0441\u043b\u0438\u043a\u0430", -"Zoom in": "\u0417\u0433\u043e\u043b\u0435\u043c\u0438", -"Zoom out": "\u041d\u0430\u043c\u0430\u043b\u0438", -"Crop": "\u041e\u0442\u0441\u0435\u0447\u0438 \u0434\u0435\u043b", -"Resize": "\u0420\u0435\u0434\u0438\u043c\u0435\u043d\u0437\u0438\u043e\u043d\u0438\u0440\u0430\u0458", -"Orientation": "\u041d\u0430\u0441\u043e\u0447\u0435\u043d\u043e\u0441\u0442", -"Brightness": "\u041e\u0441\u0432\u0435\u0442\u043b\u0443\u0432\u0430\u045a\u0435", -"Sharpen": "\u041e\u0441\u0442\u0440\u0438\u043d\u0430", -"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", -"Color levels": "\u041d\u0438\u0432\u043e \u043d\u0430 \u0431\u043e\u0438", -"Gamma": "\u0413\u0430\u043c\u0430", -"Invert": "\u0418\u043d\u0432\u0435\u0440\u0437\u043d\u043e", -"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438", -"Back": "\u041d\u0430\u0437\u0430\u0434", -"Id": "ID", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u043f\u043e\u0447\u043d\u0443\u0432\u0430 \u0441\u043e \u0431\u0443\u043a\u0432\u0430, \u0441\u043b\u0435\u0434\u0435\u043d\u0430 \u0441\u0430\u043c\u043e \u043e\u0434 \u0431\u0443\u043a\u0432\u0438, \u0431\u0440\u043e\u0458\u043a\u0438, \u0446\u0440\u0442\u0430, \u0442\u043e\u0447\u043a\u0430, \u0442\u043e\u0447\u043a\u0430-\u0437\u0430\u043f\u0438\u0440\u043a\u0430 \u0438\u043b\u0438 \u043f\u043e\u0434\u0432\u043b\u0435\u0447\u0435\u043d\u043e.", -"Insert/Edit code sample": "\u0412\u043c\u0435\u0442\u043d\u0438/\u0423\u0440\u0435\u0434\u0438 \u0438\u0441\u0435\u0447\u043e\u043a \u043e\u0434 \u043a\u043e\u0434", -"Language": "\u0408\u0430\u0437\u0438\u043a", -"Image": "\u0421\u043b\u0438\u043a\u0430", -"Date/time": "\u0414\u0430\u0442\u0443\u043c/\u0412\u0440\u0435\u043c\u0435", -"Link": "\u0412\u0440\u0441\u043a\u0430", -"Paste or type a link": "\u0412\u043c\u0435\u0442\u043d\u0435\u0442\u0435 \u0458\u0430 \u0438\u043b\u0438 \u0432\u043f\u0438\u0448\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0432\u0440\u0441\u043a\u0430", -"Insert/Edit Media": "\u0412\u043c\u0435\u0442\u043d\u0438/\u0423\u0440\u0435\u0434\u0438 \u043c\u0435\u0434\u0438\u0458", -"Media": "\u041c\u0435\u0434\u0438\u0430", -"Table of Contents": "\u0421\u043e\u0434\u0440\u0436\u0438\u043d\u0430" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/ms.es5.js b/build/media_source/vendor/tinymce/langs/ms.es5.js deleted file mode 100644 index 700fb2ef8d778..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ms.es5.js +++ /dev/null @@ -1,176 +0,0 @@ -tinymce.addI18n('ms',{ -"Cut": "Potong", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Pelayar internet anda tidak menyokong akses terus kepada papan klip. Sila gunakan pintasan papan kekunci Ctrl+X\/C\/V.", -"Paste": "Tampal", -"Close": "Tutup", -"Align right": "Alih ke kanan", -"New document": "Dokumen baru", -"Numbered list": "Senarai bernombor", -"Increase indent": "Tingkatkan inden", -"Formats": "Format", -"Select all": "Pilih semua", -"Undo": "Kembali Ke asal", -"Strikethrough": "Batal", -"Bullet list": "Senarai bullet", -"Superscript": "Superskrip", -"Clear formatting": "Hilangkan format", -"Subscript": "Subskrip", -"Redo": "Buat semula", -"Ok": "Ok", -"Bold": "Tebalkan", -"Italic": "Tulisan senget", -"Align center": "Alih ke tengah", -"Decrease indent": "Kurangkan inden", -"Underline": "Garis bawah", -"Cancel": "Batal", -"Justify": "Sama ratakan", -"Copy": "Salin", -"Align left": "Alihkan ke kiri", -"Visual aids": "Visual bantuan", -"Lower Greek": "Greek Kecil", -"Square": "Petak", -"Default": "Asal", -"Lower Alpha": "Alpha Kecil", -"Circle": "Bulat", -"Disc": "Cakera", -"Upper Alpha": "Alpha Besar", -"Upper Roman": "Roman Besar", -"Lower Roman": "Roman Kecik", -"Name": "Nama", -"Anchor": "Pemberat", -"You have unsaved changes are you sure you want to navigate away?": "Anda mempunyai perubahan yang belum disimpan, anda pasti mahu keluar?", -"Restore last draft": "Kembalikan draf lepas", -"Special character": "Karekter unik", -"Source code": "Sumber Kod", -"Right to left": "Kanan Ke kiri", -"Left to right": "Kiri Ke kanan", -"Emoticons": "Emotikon", -"Robots": "Robot", -"Document properties": "Sifat-sifat dokumen", -"Title": "Tajuk", -"Keywords": "Kata kunci", -"Encoding": "Pengekodan", -"Description": "Penerangan", -"Author": "Pengarang", -"Fullscreen": "Skrin penuh", -"Horizontal line": "Garis mendatar", -"Horizontal space": "Ruang mendatar", -"Insert\/edit image": "Masukkan\/Ubah Gambar", -"General": "Am", -"Advanced": "Lanjutan", -"Source": "Sumber", -"Border": "Sempadan", -"Constrain proportions": "Bentuk kekangan", -"Vertical space": "Ruang menegak", -"Image description": "Penerangan gambar", -"Style": "Gaya", -"Dimensions": "Dimensi", -"Insert image": "Masukkan gambar", -"Insert date\/time": "Masukkan tarikh\/masa", -"Remove link": "Padam pautan", -"Url": "Url", -"Text to display": "Teks untuk dipaparkan", -"Insert link": "Masukkan pautan", -"New window": "Tetingkap baru", -"None": "Tiada", -"Target": "Target", -"Insert\/edit link": "Masukkan\/Ubah pautan", -"Insert\/edit video": "Masukkan\/Ubah video", -"Poster": "Poster", -"Alternative source": "Sumber alternatif", -"Paste your embed code below:": "Tampalkan kod embed anda di bawah:", -"Insert video": "Masukkan video", -"Embed": "Embed", -"Nonbreaking space": "Ruang tidak dipisahkan", -"Preview": "Pratonton", -"Print": "Cetak", -"Save": "Simpan", -"Could not find the specified string.": "Tidak dapat mencari untaian yang dinyatakan.", -"Replace": "Ganti", -"Next": "Seterusnya", -"Whole words": "Keseluruhan perkataan", -"Find and replace": "Cari dan gantikan", -"Replace with": "Gantikan dengan", -"Find": "Cari", -"Replace all": "Ganti semua", -"Match case": "Huruf sepadan", -"Prev": "Kembali", -"Spellcheck": "Semakan Ejaan", -"Finish": "Tamat", -"Ignore all": "Biarkan semua", -"Ignore": "Biarkan", -"Insert row before": "Masukkan baris sebelumnya", -"Rows": "Baris-Baris", -"Height": "Tinggi", -"Paste row after": "Tampal baris selepasnya", -"Alignment": "Penjajaran", -"Column group": "Kumpulan lajur", -"Row": "Baris", -"Insert column before": "Masukkan lajur sebelumnya", -"Split cell": "Asingkan sel", -"Cell padding": "Penebalan sel", -"Cell spacing": "Penjarakkan sel", -"Row type": "Jenis baris", -"Insert table": "Masukkan jadual", -"Body": "Badan", -"Caption": "Keterangan", -"Footer": "Pengaki", -"Delete row": "Padam Baris", -"Paste row before": "Tampal baris sebelumnya", -"Scope": "Skop", -"Delete table": "Padam jadual", -"Header cell": "Sel pengepala", -"Column": "Lajur", -"Cell": "Sel", -"Header": "Pengepala", -"Cell type": "Jenis sel", -"Copy row": "Salin baris", -"Row properties": "Sifat-sifat baris", -"Table properties": "Sifat-sifat jadual", -"Row group": "Kumpulan baris", -"Right": "Kanan", -"Insert column after": "Masukkan lajur selepasnya", -"Cols": "Cols", -"Insert row after": "Masukkan baris selepasnya", -"Width": "Lebar", -"Cell properties": "Sifat-sifat sel", -"Left": "Kiri", -"Cut row": "Potong baris", -"Delete column": "Padam lajur", -"Center": "Tengah", -"Merge cells": "Gabung Sel", -"Insert template": "Masukkan templat", -"Templates": "Templat", -"Background color": "Warna latar belakang", -"Text color": "Warna teks", -"Show blocks": "Papar blok", -"Show invisible characters": "Papar karekter tersembunyi", -"Words: {0}": "Perkataan: {0}", -"Insert": "Masukkan", -"File": "Fail", -"Edit": "Ubah", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ruangan Teks Luas. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk bar perkakasan. Tekan ALT-0 untuk bantuan", -"Tools": "Peralatan", -"View": "Pemandangan", -"Table": "Jadual", -"Format": "Format", -"Inline": "Sebaris", -"Blocks": "Blok-blok", -"Edit image": "Ubah gambar", -"Font Family": "Kumpulan fon", -"Font Sizes": "Saiz fon", -"Paragraph": "Perenggan", -"Address": "Alamat", -"Pre": "Pra", -"Code": "Kod", -"Headers": "Pengepala", -"Header 1": "Pengepala 1", -"Header 2": "Pengepala 2", -"Header 3": "Pengepala 3", -"Header 4": "Pengepala 4", -"Header 5": "Pengepala 5", -"Header 6": "Pengepala 6", -"Insert Time": "Masukkan masa", -"Insert nonbreaking space": "Masukkan ruang yang tidak dipisahkan", -"Toggle blockquote": "Togol Ruang Petikan" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/nb.es5.js b/build/media_source/vendor/tinymce/langs/nb.es5.js deleted file mode 100644 index ff98aa96a9c5b..0000000000000 --- a/build/media_source/vendor/tinymce/langs/nb.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('nb',{ -"Redo": "Gj\u00f8r om", -"Undo": "Angre", -"Cut": "Klipp ut", -"Copy": "Kopier", -"Paste": "Lim inn", -"Select all": "Marker alt", -"New document": "Nytt dokument", -"Ok": "Ok", -"Cancel": "Avbryt", -"Visual aids": "Visuelle hjelpemidler", -"Bold": "Fet", -"Italic": "Kursiv", -"Underline": "Understreking", -"Strikethrough": "Gjennomstreking", -"Superscript": "Hevet skrift", -"Subscript": "Senket skrift", -"Clear formatting": "Fjern formateringer", -"Align left": "Venstrejuster", -"Align center": "Midtstill", -"Align right": "H\u00f8yrejuster", -"Justify": "Blokkjuster", -"Bullet list": "Punktliste", -"Numbered list": "Nummerliste", -"Decrease indent": "Reduser innrykk", -"Increase indent": "\u00d8k innrykk", -"Close": "Lukk", -"Formats": "Stiler", -"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 tastatursnarveiene Ctrl+X\/C\/V.", -"Headers": "Overskrifter", -"Header 1": "Overskrift 1", -"Header 2": "Overskrift 2", -"Header 3": "Overskrift 3", -"Header 4": "Overskrift 4", -"Header 5": "Overskrift 5", -"Header 6": "Overskrift 6", -"Headings": "Overskrifter", -"Heading 1": "Overskrift 1", -"Heading 2": "Overskrift 2", -"Heading 3": "Overskrift 3", -"Heading 4": "Overskrift 4", -"Heading 5": "Overskrift 5", -"Heading 6": "Overskrift 6", -"Preformatted": "Forh\u00e5ndsformatert", -"Div": "Div", -"Pre": "Pre", -"Code": "Kode", -"Paragraph": "Avsnitt", -"Blockquote": "Blockquote", -"Inline": "Innkapslet", -"Blocks": "Blokker", -"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.", -"Fonts": "Fonter", -"Font Sizes": "Fontst\u00f8rrelser", -"Class": "Klasse", -"Browse for an image": "S\u00f8k etter bilde", -"OR": "OR", -"Drop an image here": "Slipp et bilde her", -"Upload": "Last opp", -"Block": "Blokk", -"Align": "Juster", -"Default": "Normal", -"Circle": "\u00c5pen sirkel", -"Disc": "Fylt sirkel", -"Square": "Fylt firkant", -"Lower Alpha": "Minuskler", -"Lower Greek": "Greske minuskler", -"Lower Roman": "Romerske minuskler", -"Upper Alpha": "Versaler", -"Upper Roman": "Romerske versaler", -"Anchor...": "Lenke", -"Name": "Navn", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id burde starte med en bokstav, bare fulgt av bokstaver, nummer, streker, punktum, koloner eller understreker.", -"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", -"Insert\/Edit code sample": "Sett inn\/endre kodeeksempel", -"Language": "Spr\u00e5k", -"Code sample...": "Kodeeksempel", -"Color Picker": "Fargevelger", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Venstre til h\u00f8yre", -"Right to left": "H\u00f8yre til venstre", -"Emoticons": "Hum\u00f8rfjes", -"Emoticons...": "Emoticons..", -"Metadata and Document Properties": "Metadata og dokumentverdier", -"Title": "Tittel", -"Keywords": "N\u00f8kkelord", -"Description": "Beskrivelse", -"Robots": "Roboter", -"Author": "Forfatter", -"Encoding": "Tegnkoding", -"Fullscreen": "Fullskjerm", -"Action": "Handling", -"Shortcut": "Snarvei", -"Help": "Hjelp", -"Address": "Adresse", -"Focus to menubar": "Fokus p\u00e5 menylinje", -"Focus to toolbar": "Fokus p\u00e5 verkt\u00f8ylinje", -"Focus to element path": "Fokus p\u00e5 elementsti", -"Focus to contextual toolbar": "Fokus p\u00e5 kontekstuell verkt\u00f8ylinje", -"Insert link (if link plugin activated)": "Sett inn lenke (dersom lenketillegg er aktivert)", -"Save (if save plugin activated)": "Lagre (dersom lagretillegg er aktivert)", -"Find (if searchreplace plugin activated)": "Finn (dersom tillegg for s\u00f8k og erstatt er aktivert)", -"Plugins installed ({0}):": "Installerte tillegg ({0}):", -"Premium plugins:": "Premiumtillegg:", -"Learn more...": "Les mer ...", -"You are using {0}": "Du bruker {0}", -"Plugins": "Tillegg", -"Handy Shortcuts": "Nyttige snarveier", -"Horizontal line": "Horisontal linje", -"Insert\/edit image": "Sett inn\/endre bilde", -"Alternative description": "Alternativ beskrivelse", -"Accessibility": "Tilgjengelighet", -"Image is decorative": "Bilde er dekorasjon", -"Source": "Bildelenke", -"Dimensions": "Dimensjoner", -"Constrain proportions": "Behold proporsjoner", -"General": "Generelt", -"Advanced": "Avansert", -"Style": "Stil", -"Vertical space": "Vertikal marg", -"Horizontal space": "Horisontal marg", -"Border": "Ramme", -"Insert image": "Sett inn bilde", -"Image...": "Bilde...", -"Image list": "Bildeliste", -"Rotate counterclockwise": "Roter mot venstre", -"Rotate clockwise": "Roter mot h\u00f8yre", -"Flip vertically": "Speilvend vertikalt", -"Flip horizontally": "Speilvend horisontalt", -"Edit image": "Rediger bilde", -"Image options": "Bilde innstillinger", -"Zoom in": "Zoom inn", -"Zoom out": "Zoom ut", -"Crop": "Beskj\u00e6r", -"Resize": "Skaler", -"Orientation": "Orientering", -"Brightness": "Lysstyrke", -"Sharpen": "Skarphet", -"Contrast": "Kontrast", -"Color levels": "Fargeniv\u00e5", -"Gamma": "Gamma", -"Invert": "Inverter", -"Apply": "Utf\u00f8r", -"Back": "Tilbake", -"Insert date\/time": "Sett inn dato\/tid", -"Date\/time": "Dato\/tid", -"Insert\/edit link": "Sett inn\/endre lenke", -"Text to display": "Tekst som skal vises", -"Url": "Url", -"Open link in...": "\u00c5pne lenke i..", -"Current window": "N\u00e5v\u00e6rende vindu", -"None": "Ingen", -"New window": "Nytt vindu", -"Open link": "\u00c5pne lenke", -"Remove link": "Fjern lenke", -"Anchors": "Anker", -"Link...": "Lenke...", -"Paste or type a link": "Lim inn eller skriv en lenke", -"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?", -"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?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Nettadressen du fylte inn ser ut til \u00e5 v\u00e6re en ekstern. \u00d8nsker du \u00e5 legge til p\u00e5krevd 'https:\/\/'-prefiks?", -"Link list": "Lenkeliste", -"Insert video": "Sett inn video", -"Insert\/edit video": "Sett inn\/rediger video", -"Insert\/edit media": "Sett inn\/endre media", -"Alternative source": "Alternativ kilde", -"Alternative source URL": "Alternativ kilde URL", -"Media poster (Image URL)": "Mediaposter (bilde-URL)", -"Paste your embed code below:": "Lim inn inkluderings-koden nedenfor", -"Embed": "Inkluder", -"Media...": "Media..", -"Nonbreaking space": "Hardt mellomrom", -"Page break": "Sideskifte", -"Paste as text": "Lim inn som tekst", -"Preview": "Forh\u00e5ndsvisning", -"Print...": "Skriv ut...", -"Save": "Arkiver", -"Find": "Finn", -"Replace with": "Erstatt med", -"Replace": "Erstatt", -"Replace all": "Erstatt alle", -"Previous": "Forrige", -"Next": "Neste", -"Find and Replace": "Finn og erstatt", -"Find and replace...": "Finn og erstatt...", -"Could not find the specified string.": "Kunne ikke finne den spesifiserte teksten", -"Match case": "Match store og sm\u00e5 bokstaver", -"Find whole words only": "Finn kun hele ord", -"Find in selection": "Finn i utvalg", -"Spellcheck": "Stavekontroll", -"Spellcheck Language": "Stavekontroller spr\u00e5k", -"No misspellings found.": "Ingen feilstaving funnet", -"Ignore": "Ignorer", -"Ignore all": "Ignorer alle", -"Finish": "Avslutt", -"Add to Dictionary": "Legg til i ordliste", -"Insert table": "Sett inn tabell", -"Table properties": "Tabell egenskaper", -"Delete table": "Slett tabell", -"Cell": "Celle", -"Row": "Rad", -"Column": "Kolonne", -"Cell properties": "Celle egenskaper", -"Merge cells": "Sl\u00e5 sammen celler", -"Split cell": "Splitt celle", -"Insert row before": "Sett inn rad f\u00f8r", -"Insert row after": "Sett in rad etter", -"Delete row": "Slett rad", -"Row properties": "Rad egenskaper", -"Cut row": "Klipp ut rad", -"Copy row": "Kopier rad", -"Paste row before": "Lim inn rad f\u00f8r", -"Paste row after": "Lim inn rad etter", -"Insert column before": "Sett inn kolonne f\u00f8r", -"Insert column after": "Sett inn kolonne etter", -"Delete column": "Slett kolonne", -"Cols": "Kolonner", -"Rows": "Rader", -"Width": "Bredde", -"Height": "H\u00f8yde", -"Cell spacing": "Celleavstand", -"Cell padding": "Cellemarg", -"Caption": "Tittel", -"Show caption": "Vis bildetekst", -"Left": "Venstre", -"Center": "Midtstilt", -"Right": "H\u00f8yre", -"Cell type": "Celletype", -"Scope": "Omfang", -"Alignment": "Justering", -"H Align": "H Justering", -"V Align": "V Justering", -"Top": "Topp", -"Middle": "Midten", -"Bottom": "Bunn", -"Header cell": "Topptekst-celle", -"Row group": "Radgruppe", -"Column group": "Kolonnegruppe", -"Row type": "Rad-type", -"Header": "Topptekst", -"Body": "Br\u00f8dtekst", -"Footer": "Bunntekst", -"Border color": "Rammefarge", -"Insert template...": "Sett inn mal..", -"Templates": "Maler", -"Template": "Mal", -"Text color": "Tekstfarge", -"Background color": "Bakgrunnsfarge", -"Custom...": "Tilpass...", -"Custom color": "Tilpasset farge", -"No color": "Ingen farge", -"Remove color": "Fjern farge", -"Table of Contents": "Innholdsfortegnelse", -"Show blocks": "Vis blokker", -"Show invisible characters": "Vis skjulte tegn", -"Word count": "Ordtelling", -"Count": "Opptelling", -"Document": "Dokument", -"Selection": "Utvalg", -"Words": "Ord", -"Words: {0}": "Antall ord: {0}", -"{0} words": "{0} ord", -"File": "Arkiv", -"Edit": "Rediger", -"Insert": "Sett inn", -"View": "Vis", -"Format": "Format", -"Table": "Tabell", -"Tools": "Verkt\u00f8y", -"Powered by {0}": "Redigert med {0}", -"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.", -"Image title": "Bildetittel", -"Border width": "Bordbredde", -"Border style": "Bordstil", -"Error": "Feil", -"Warn": "Advarsel", -"Valid": "Gyldig", -"To open the popup, press Shift+Enter": "For \u00e5 \u00e5pne popup, trykk Shift+Enter", -"Rich Text Area. Press ALT-0 for help.": "Rik-tekstomr\u00e5de. Trykk ALT-0 for hjelp.", -"System Font": "Systemfont", -"Failed to upload image: {0}": "Opplasting av bilde feilet: {0}", -"Failed to load plugin: {0} from url {1}": "Kunne ikke laste tillegg: {0} from url {1}", -"Failed to load plugin url: {0}": "Kunne ikke laste tillegg url: {0}", -"Failed to initialize plugin: {0}": "Kunne ikke initialisere tillegg: {0}", -"example": "eksempel", -"Search": "S\u00f8k", -"All": "Alle", -"Currency": "Valuta", -"Text": "Tekst", -"Quotations": "Sitater", -"Mathematical": "Matematisk", -"Extended Latin": "Utvidet latin", -"Symbols": "Symboler", -"Arrows": "Piler", -"User Defined": "Brukerdefinert", -"dollar sign": "dollartegn", -"currency sign": "valutasymbol", -"euro-currency sign": "Euro-valutasymbol", -"colon sign": "kolon-symbol", -"cruzeiro sign": "cruzeiro-symbol", -"french franc sign": "franske franc-symbol", -"lira sign": "lire-symbol", -"mill sign": "mill-symbol", -"naira sign": "naira-symbol", -"peseta sign": "peseta-symbol", -"rupee sign": "rupee-symbol", -"won sign": "won-symbol", -"new sheqel sign": "Ny sheqel-symbol", -"dong sign": "dong-symbol", -"kip sign": "kip-symbol", -"tugrik sign": "tugrik-symbol", -"drachma sign": "drachma-symbol", -"german penny symbol": "tysk penny-symbol", -"peso sign": "peso-symbol", -"guarani sign": "quarani-symbol", -"austral sign": "austral-symbol", -"hryvnia sign": "hryvina-symbol", -"cedi sign": "credi-symbol", -"livre tournois sign": "livre tournois-symbol", -"spesmilo sign": "spesmilo-symbol", -"tenge sign": "tenge-symbol", -"indian rupee sign": "indisk rupee-symbol", -"turkish lira sign": "tyrkisk lire-symbol", -"nordic mark sign": "nordisk mark-symbol", -"manat sign": "manat-symbol", -"ruble sign": "ruble-symbol", -"yen character": "yen-symbol", -"yuan character": "yuan-symbol", -"yuan character, in hong kong and taiwan": "yuan-symbol, i Hongkong og Taiwan", -"yen\/yuan character variant one": "yen\/yuan-symbol variant en", -"Loading emoticons...": "Laster emoticons..", -"Could not load emoticons": "Kunne ikke laste emoticons", -"People": "Mennesker", -"Animals and Nature": "Dyr og natur", -"Food and Drink": "Mat og drikke", -"Activity": "Aktivitet", -"Travel and Places": "Reise og steder", -"Objects": "Objekter", -"Flags": "Flagg", -"Characters": "Tegn", -"Characters (no spaces)": "Tegn (uten mellomrom)", -"{0} characters": "{0} tegn", -"Error: Form submit field collision.": "Feil: Skjemafelt innsendingskollisjon.", -"Error: No form element found.": "Feil: Intet skjemafelt funnet.", -"Update": "Oppdater", -"Color swatch": "Fargepalett", -"Turquoise": "Turkis", -"Green": "Gr\u00f8nn", -"Blue": "Bl\u00e5", -"Purple": "Lilla", -"Navy Blue": "Marinebl\u00e5", -"Dark Turquoise": "M\u00f8rk turkis", -"Dark Green": "M\u00f8rkegr\u00f8nn", -"Medium Blue": "Mellombl\u00e5", -"Medium Purple": "Medium lilla", -"Midnight Blue": "Midnattbl\u00e5", -"Yellow": "Gul", -"Orange": "Oransje", -"Red": "R\u00f8d", -"Light Gray": "Lys gr\u00e5", -"Gray": "Gr\u00e5", -"Dark Yellow": "M\u00f8rk gul", -"Dark Orange": "M\u00f8rk oransje", -"Dark Red": "M\u00f8rker\u00f8d", -"Medium Gray": "Medium gr\u00e5", -"Dark Gray": "M\u00f8rk gr\u00e5", -"Light Green": "Lys gr\u00f8nn", -"Light Yellow": "Lys gul", -"Light Red": "Lys r\u00f8d", -"Light Purple": "Lys lilla", -"Light Blue": "Lys bl\u00e5", -"Dark Purple": "M\u00f8rk lilla", -"Dark Blue": "M\u00f8rk bl\u00e5", -"Black": "Svart", -"White": "Hvit", -"Switch to or from fullscreen mode": "Bytt til eller fra fullskjermmodus", -"Open help dialog": "\u00c5pne hjelp-dialog", -"history": "historikk", -"styles": "stiler", -"formatting": "formatering", -"alignment": "justering", -"indentation": "innrykk", -"Font": "Skrift", -"Size": "St\u00f8rrelse", -"More...": "Mer...", -"Select...": "Velg...", -"Preferences": "Innstillinger", -"Yes": "Ja", -"No": "Nei", -"Keyboard Navigation": "Navigering med tastaturet", -"Version": "Versjon", -"Code view": "Kodevisning", -"Open popup menu for split buttons": "\u00c5pne sprettoppmeny for splitt-knapper", -"List Properties": "Listeegenskaper", -"List properties...": "Listeegenskaper ...", -"Start list at number": "Start liste p\u00e5 nummer", -"Line height": "Linjeh\u00f8yde", -"comments": "kommentarer", -"Format Painter": "Kopier format", -"Insert\/edit iframe": "Sett inn \/ rediger iframe", -"Capitalization": "Store\/sm\u00e5 bokstaver", -"lowercase": "sm\u00e5 bokstaver", -"UPPERCASE": "STORE BOKSTAVER", -"Title Case": "Tittelbokstav", -"permanent pen": "permanent penn", -"Permanent Pen Properties": "Permanente egenskaper for penn", -"Permanent pen properties...": "Permanente egenskaper for penn...", -"case change": "st\u00f8rrelseendring", -"page embed": "sideinnebygging", -"Advanced sort...": "Avansert sortering ...", -"Advanced Sort": "Avansert sortering", -"Sort table by column ascending": "Sorter tabell etter kolonne stigende", -"Sort table by column descending": "Sorter tabell etter kolonne synkende", -"Sort": "Sorter", -"Order": "Rekkef\u00f8lge", -"Sort by": "Sorter etter", -"Ascending": "Stigende", -"Descending": "Synkende", -"Column {0}": "Kolonne {0}", -"Row {0}": "Rad {0}", -"Spellcheck...": "Stavekontroll ...", -"Misspelled word": "Feilstavet ord", -"Suggestions": "Forslag", -"Change": "Endre", -"Finding word suggestions": "Finner ordforslag", -"Success": "Vellykket", -"Repair": "Reparer", -"Issue {0} of {1}": "Problem {0} av {1}", -"Images must be marked as decorative or have an alternative text description": "Bilder m\u00e5 markeres som dekorasjon eller ha en alternativ tekstbeskrivelse", -"Images must have an alternative text description. Decorative images are not allowed.": "Bilder m\u00e5 ha en alternativ tekstbeskrivelse. Dekorasjonbilder er ikke tillatt.", -"Or provide alternative text:": "Eller fyll inn en alternative tekst:", -"Make image decorative:": "Marker bilde som dekorasjon:", -"ID attribute must be unique": "'ID'-attributtet m\u00e5 v\u00e6re unikt", -"Make ID unique": "Gj\u00f8r 'ID' unik", -"Keep this ID and remove all others": "Behold denne 'ID'-en og fjern alle andre", -"Remove this ID": "Fjern denne 'ID'", -"Remove all IDs": "Fjern alle 'ID'-er", -"Checklist": "Avkryssingsliste", -"Anchor": "Anker", -"Special character": "Spesialtegn", -"Code sample": "Kodeeksempel", -"Color": "Farge", -"Document properties": "Dokumentegenskaper", -"Image description": "Bildebeskrivelse", -"Image": "Bilde", -"Insert link": "Sett inn lenke", -"Target": "M\u00e5l", -"Link": "Lenke", -"Poster": "Plakatbilde", -"Media": "Media", -"Print": "Skriv ut", -"Prev": "Forrige", -"Find and replace": "Finn og erstatt", -"Whole words": "Hele ord", -"Insert template": "Sett inn mal" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/nl.es5.js b/build/media_source/vendor/tinymce/langs/nl.es5.js deleted file mode 100644 index 239b32dabbbe4..0000000000000 --- a/build/media_source/vendor/tinymce/langs/nl.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('nl',{ -"Add to Dictionary": "Toevoegen aan woordenlijst", -"Advanced": "Geavanceerd", -"Align center": "Centreren", -"Align left": "Links uitlijnen", -"Align right": "Rechts uitlijnen", -"Alignment": "Uitlijning", -"Alternative source": "Alternatieve bron", -"Anchor": "Anker", -"Anchors": "Anker", -"Apply": "Toepassen", -"Author": "Auteur", -"B": "Blauw", -"Back": "Terug", -"Background color": "Achtergrondkleur", -"Blockquote": "Citaat", -"Blocks": "Blokken", -"Body": "Inhoud", -"Bold": "Vet", -"Border color": "Randkleur", -"Border": "Rand", -"Bottom": "Onder", -"Brightness": "Helderheid", -"Bullet list": "Opsommingsteken", -"Cancel": "Annuleren", -"Caption": "Onderschrift", -"Cell padding": "Celpadding", -"Cell properties": "Celeigenschappen", -"Cell spacing": "Celruimte", -"Cell type": "Celtype", -"Cell": "Cel", -"Center": "Centreren", -"Circle": "Cirkel", -"Clear formatting": "Opmaak wissen", -"Close": "Sluiten", -"Code": "Codering", -"Color levels": "Kleurniveau's", -"Color": "Kleur", -"Cols": "Kolommen", -"Column group": "Kolomgroep", -"Column": "Kolom", -"Constrain proportions": "Verhoudingen behouden", -"Contrast": "Contrast", -"Copy row": "Kopieer rij", -"Copy": "Kopi\u00ebren", -"Could not find the specified string.": "Geen resultaten gevonden", -"Crop": "Uitsnijden", -"Custom color": "Aangepaste kleur", -"Custom...": "Aangepaste...", -"Cut row": "Rij knippen", -"Cut": "Knippen", -"Date\/time": "Datum\/tijd", -"Decrease indent": "Inspringen verkleinen", -"Default": "Standaard", -"Delete column": "Verwijder kolom", -"Delete row": "Verwijder rij", -"Delete table": "Verwijder tabel", -"Description": "Omschrijving", -"Dimensions": "Afmetingen", -"Disc": "Bolletje", -"Div": "Div", -"Document properties": "Documenteigenschappen", -"Edit image": "Bewerk afbeelding", -"Edit": "Bewerken", -"Embed": "Insluiten", -"Emoticons": "Emoticons", -"Encoding": "Codering", -"File": "Bestand", -"Find and replace": "Zoek en vervang", -"Find": "Zoeken", -"Finish": "Einde", -"Flip horizontally": "Horizontaal spiegelen", -"Flip vertically": "Verticaal spiegelen", -"Font Family": "Lettertype", -"Font Sizes": "Tekengrootte", -"Footer": "Voettekst", -"Format": "Opmaak", -"Formats": "Opmaak", -"Fullscreen": "Volledig scherm", -"G": "Groen", -"Gamma": "Gamma", -"General": "Algemeen", -"H Align": "Horizontaal uitlijnen", -"Header 1": "Kop 1", -"Header 2": "Kop 2", -"Header 3": "Kop 3", -"Header 4": "Kop 4", -"Header 5": "Kop 5", -"Header 6": "Kop 6", -"Header cell": "Kopcel", -"Header": "Koptekst", -"Headers": "Kopteksten", -"Heading 1": "Kop 1", -"Heading 2": "Kop 2", -"Heading 3": "Kop 3", -"Heading 4": "Kop 4", -"Heading 5": "Kop 5", -"Heading 6": "Kop 6", -"Headings": "Koppen", -"Height": "Hoogte", -"Horizontal line": "Horizontale lijn", -"Horizontal space": "Horizontale ruimte", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter, alleen gevolgd door letters, nummers, streepjes, punten, dubbele punten of underscores.", -"Id": "ID", -"Ignore all": "Alles negeren", -"Ignore": "Negeren", -"Image description": "Afbeeldingsomschrijving", -"Image options": "Afbeeldingsopties", -"Image": "Afbeelding", -"Increase indent": "Inspringen vergroten", -"Inline": "Inlijn", -"Insert column after": "Voeg kolom in na", -"Insert column before": "Voeg kolom in voor", -"Insert date\/time": "Voeg datum\/tijd in", -"Insert image": "Afbeelding invoegen", -"Insert link": "Hyperlink invoegen", -"Insert row after": "Voeg rij toe na", -"Insert row before": "Voeg rij toe voor", -"Insert table": "Tabel invoegen", -"Insert template": "Template invoegen", -"Insert video": "Video invoegen", -"Insert": "Invoegen", -"Insert\/Edit code sample": "Codevoorbeeld invoegen\/bewerken", -"Insert\/edit image": "Afbeelding invoegen\/bewerken", -"Insert\/edit link": "Hyperlink invoegen\/bewerken", -"Insert\/edit media": "Media invoegen\/bewerken", -"Insert\/edit video": "Video invoegen\/bewerken", -"Invert": "Omkeren", -"Italic": "Cursief", -"Justify": "Uitvullen", -"Keywords": "Trefwoorden", -"Language": "Taal", -"Left to right": "Links naar rechts", -"Left": "Links", -"Link": "Link", -"Lower Alpha": "Kleine letters", -"Lower Greek": "Griekse letters (klein)", -"Lower Roman": "Romeinse cijfers (klein)", -"Match case": "Identieke hoofd\/kleine letters", -"Media": "Media", -"Merge cells": "Cellen samenvoegen", -"Middle": "Centreren", -"Name": "Naam", -"New document": "Nieuw document", -"New window": "Nieuw venster", -"Next": "Volgende", -"No color": "Geen kleur", -"Nonbreaking space": "Vaste spatie invoegen", -"None": "Geen", -"Numbered list": "Nummering", -"Ok": "Ok", -"Orientation": "Ori\u00ebntatie", -"Page break": "Nieuwe pagina", -"Paragraph": "Paragraaf", -"Paste as text": "Plakken als tekst", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.", -"Paste or type a link": "Plak of typ een link", -"Paste row after": "Plak rij na", -"Paste row before": "Plak rij voor", -"Paste your embed code below:": "Plak uw in te sluiten code hieronder:", -"Paste": "Plakken", -"Poster": "Poster", -"Pre": "Pre", -"Prev": "Vorige", -"Preview": "Voorbeeld", -"Print": "Afdrukken", -"R": "Rood", -"Redo": "Opnieuw", -"Remove link": "Link verwijderen", -"Replace all": "Alles vervangen", -"Replace with": "Vervangen door", -"Replace": "Vervangen", -"Resize": "Formaat aanpassen", -"Restore last draft": "Herstellen naar vorig concept", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Opgemaakte tekstgebied. Druk op ALT-F9 voor het menu. Druk op ALT-F10 voor de werkbalk. Druk op ALT-0 voor de help.", -"Right to left": "Rechts naar links", -"Right": "Rechts", -"Robots": "Robots", -"Rotate clockwise": "Rechtsom draaien", -"Rotate counterclockwise": "Linksom draaien", -"Row group": "Rijgroep", -"Row properties": "Rij-eigenschappen", -"Row type": "Rijtype", -"Row": "Rij", -"Rows": "Rijen", -"Save": "Opslaan", -"Scope": "Bereik", -"Select all": "Alles selecteren", -"Sharpen": "Scherper", -"Show blocks": "Blokken tonen", -"Show invisible characters": "Verborgen tekens tonen", -"Source code": "Broncode", -"Source": "Bron", -"Special character": "Speciale tekens", -"Spellcheck": "Spellingscontrole", -"Split cell": "Cel splitsen", -"Square": "Vierkant", -"Strikethrough": "Doorhalen", -"Style": "Stijl", -"Subscript": "Subscript", -"Superscript": "Superscript", -"Table of Contents": "Inhoudsopgave", -"Table properties": "Tabeleigenschappen", -"Table": "Tabel", -"Target": "Doel", -"Templates": "Templates", -"Text color": "Tekstkleur", -"Text to display": "Tekst om weer te geven", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. Wilt u er \"mailto:\" aan toevoegen?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL lijkt op een externe link. Wilt u er \"http:\/\/\" aan toevoegen?", -"Title": "Titel", -"Tools": "Gereedschap", -"Top": "Bovenaan", -"Underline": "Onderstreept", -"Undo": "Ongedaan maken", -"Upper Alpha": "Hoofdletters alfabetisch", -"Upper Roman": "Hoofdletters Romeinse cijfers", -"Url": "URL", -"V Align": "Verticaal uitlijnen", -"Vertical space": "Verticale ruimte", -"View": "Weergave", -"Visual aids": "Hulpmiddelen", -"Whole words": "Hele woorden", -"Width": "Breedte", -"Words: {0}": "Woorden: {0}", -"You have unsaved changes are you sure you want to navigate away?": "U heeft niet alles opgeslagen weet u zeker dat u de pagina wil verlaten?", -"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 klemboord. Gelieve de ctrl+X\/C\/V sneltoetsen gebruiken.", -"Zoom in": "Inzoomen", -"Zoom out": "Uitzoomen" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/pl.es5.js b/build/media_source/vendor/tinymce/langs/pl.es5.js deleted file mode 100644 index 80f390994953c..0000000000000 --- a/build/media_source/vendor/tinymce/langs/pl.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('pl',{ -"Redo": "Powt\u00f3rz", -"Undo": "Cofnij", -"Cut": "Wytnij", -"Copy": "Kopiuj", -"Paste": "Wklej", -"Select all": "Zaznacz wszystko", -"New document": "Nowy dokument", -"Ok": "Ok", -"Cancel": "Anuluj", -"Visual aids": "Pomoce wizualne", -"Bold": "Pogrubienie", -"Italic": "Kursywa", -"Underline": "Podkre\u015blenie", -"Strikethrough": "Przekre\u015blenie", -"Superscript": "Indeks g\u00f3rny", -"Subscript": "Indeks dolny", -"Clear formatting": "Wyczy\u015b\u0107 formatowanie", -"Align left": "Wyr\u00f3wnaj do lewej", -"Align center": "Wyr\u00f3wnaj do \u015brodka", -"Align right": "Wyr\u00f3wnaj do prawej", -"Justify": "Wyjustuj", -"Bullet list": "Lista wypunktowana", -"Numbered list": "Lista numerowana", -"Decrease indent": "Zmniejsz wci\u0119cie", -"Increase indent": "Zwi\u0119ksz wci\u0119cie", -"Close": "Zamknij", -"Formats": "Formaty", -"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.", -"Headers": "Nag\u0142\u00f3wki", -"Header 1": "Nag\u0142\u00f3wek 1", -"Header 2": "Nag\u0142\u00f3wek 2", -"Header 3": "Nag\u0142\u00f3wek 3", -"Header 4": "Nag\u0142\u00f3wek 4", -"Header 5": "Nag\u0142\u00f3wek 5", -"Header 6": "Nag\u0142\u00f3wek 6", -"Headings": "Nag\u0142\u00f3wki", -"Heading 1": "Nag\u0142\u00f3wek 1", -"Heading 2": "Nag\u0142\u00f3wek 2", -"Heading 3": "Nag\u0142\u00f3wek 3", -"Heading 4": "Nag\u0142\u00f3wek 4", -"Heading 5": "Nag\u0142\u00f3wek 5", -"Heading 6": "Nag\u0142\u00f3wek 6", -"Preformatted": "Wst\u0119pne formatowanie", -"Div": "Div", -"Pre": "Pre", -"Code": "Kod", -"Paragraph": "Akapit", -"Blockquote": "Blok cytatu", -"Inline": "W tek\u015bcie", -"Blocks": "Bloki", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.", -"Fonts": "Fonty", -"Font Sizes": "Rozmiar fontu", -"Class": "Klasa", -"Browse for an image": "Przegl\u0105daj za zdj\u0119ciem", -"OR": "LUB", -"Drop an image here": "Upu\u015b\u0107 obraz tutaj", -"Upload": "Prze\u015blij", -"Block": "Zablokuj", -"Align": "Wyr\u00f3wnaj", -"Default": "Domy\u015blne", -"Circle": "K\u00f3\u0142ko", -"Disc": "Dysk", -"Square": "Kwadrat", -"Lower Alpha": "Ma\u0142e litery", -"Lower Greek": "Ma\u0142e greckie", -"Lower Roman": "Ma\u0142e rzymskie", -"Upper Alpha": "Wielkie litery", -"Upper Roman": "Wielkie rzymskie", -"Anchor...": "Kotwica...", -"Name": "Nazwa", -"Id": "Identyfikator", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi", -"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", -"Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod", -"Language": "J\u0119zyk", -"Code sample...": "Przyk\u0142ad kodu...", -"Color Picker": "Selektor kolor\u00f3w", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Od lewej do prawej", -"Right to left": "Od prawej do lewej", -"Emoticons": "Ikony emocji", -"Emoticons...": "Emotikony...", -"Metadata and Document Properties": "Metadane i w\u0142a\u015bciwo\u015bci dokumentu", -"Title": "Tytu\u0142", -"Keywords": "S\u0142owa kluczowe", -"Description": "Opis", -"Robots": "Roboty", -"Author": "Autor", -"Encoding": "Kodowanie", -"Fullscreen": "Pe\u0142ny ekran", -"Action": "Akcja", -"Shortcut": "Skr\u00f3t", -"Help": "Pomoc", -"Address": "Adres", -"Focus to menubar": "Skup si\u0119 na pasku menu", -"Focus to toolbar": "Skupi\u0107 si\u0119 na pasku", -"Focus to element path": "Skup si\u0119 na \u015bcie\u017cce elementu", -"Focus to contextual toolbar": "Skupi\u0107 si\u0119 na pasku narz\u0119dzi kontekstowych", -"Insert link (if link plugin activated)": "Wstaw \u0142\u0105cze (je\u015bli w\u0142\u0105czysz wtyczk\u0119 link\u00f3w)", -"Save (if save plugin activated)": "Zapisz (je\u015bli aktywowana jest wtyczka do zapisu)", -"Find (if searchreplace plugin activated)": "Znajd\u017a (je\u015bli w\u0142\u0105czysz wtyczk\u0119 do wyszukiwania)", -"Plugins installed ({0}):": "Zainstalowane wtyczki ({0}):", -"Premium plugins:": "Wtyczki Premium:", -"Learn more...": "Dowiedz si\u0119 wi\u0119cej...", -"You are using {0}": "U\u017cywasz {0}", -"Plugins": "Pluginy", -"Handy Shortcuts": "Przydatne skr\u00f3ty", -"Horizontal line": "Pozioma linia", -"Insert\/edit image": "Wstaw\/edytuj obrazek", -"Alternative description": "Alternatywny opis", -"Accessibility": "Dost\u0119pno\u015b\u0107", -"Image is decorative": "Obraz jest dekoracyjny", -"Source": "\u0179r\u00f3d\u0142o", -"Dimensions": "Wymiary", -"Constrain proportions": "Zachowaj proporcje", -"General": "Og\u00f3lne", -"Advanced": "Zaawansowane", -"Style": "Styl", -"Vertical space": "Odst\u0119p pionowy", -"Horizontal space": "Odst\u0119p poziomy", -"Border": "Ramka", -"Insert image": "Wstaw obrazek", -"Image...": "Obraz...", -"Image list": "Lista obrazk\u00f3w", -"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo", -"Rotate clockwise": "Obr\u00f3\u0107 w prawo", -"Flip vertically": "Przerzu\u0107 w pionie", -"Flip horizontally": "Przerzu\u0107 w poziomie", -"Edit image": "Edytuj obrazek", -"Image options": "Opcje obrazu", -"Zoom in": "Powi\u0119ksz", -"Zoom out": "Pomniejsz", -"Crop": "Przytnij", -"Resize": "Zmiana rozmiaru", -"Orientation": "Orientacja", -"Brightness": "Jasno\u015b\u0107", -"Sharpen": "Wyostrz", -"Contrast": "Kontrast", -"Color levels": "Poziom koloru", -"Gamma": "Gamma", -"Invert": "Odwr\u00f3\u0107", -"Apply": "Zaakceptuj", -"Back": "Cofnij", -"Insert date\/time": "Wstaw dat\u0119\/czas", -"Date\/time": "Data\/Czas", -"Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze", -"Text to display": "Tekst do wy\u015bwietlenia", -"Url": "URL", -"Open link in...": "Otw\u00f3rz \u0142\u0105cze w...", -"Current window": "Bie\u017c\u0105ce okno", -"None": "\u017baden", -"New window": "Nowe okno", -"Open link": "Otw\u00f3rz \u0142\u0105cze", -"Remove link": "Usu\u0144 \u0142\u0105cze", -"Anchors": "Kotwice", -"Link...": "\u0141\u0105cze...", -"Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Wprowadzony przez Ciebie adres URL wydaje si\u0119 by\u0107 \u0142\u0105czem zewn\u0119trznym. Czy chcesz doda\u0107 wymagany prefiks https:\/\/?", -"Link list": "Lista link\u00f3w", -"Insert video": "Wstaw wideo", -"Insert\/edit video": "Wstaw\/edytuj wideo", -"Insert\/edit media": "Wstaw\/Edytuj media", -"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o", -"Alternative source URL": "Alternatywny URL \u017ar\u00f3d\u0142a", -"Media poster (Image URL)": "Plakat (URL obrazu)", -"Paste your embed code below:": "Wklej tutaj kod do osadzenia:", -"Embed": "Osad\u017a", -"Media...": "Multimedia...", -"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", -"Find": "Znajd\u017a", -"Replace with": "Zamie\u0144 na", -"Replace": "Zamie\u0144", -"Replace all": "Zamie\u0144 wszystko", -"Previous": "Poprzedni", -"Next": "Nast.", -"Find and Replace": "Znajd\u017a i Zamie\u0144", -"Find and replace...": "Znajd\u017a i zamie\u0144...", -"Could not find the specified string.": "Nie znaleziono szukanego tekstu.", -"Match case": "Dopasuj wielko\u015b\u0107 liter", -"Find whole words only": "Znajd\u017a tylko ca\u0142e wyrazy", -"Find in selection": "Znajd\u017a w zaznaczeniu", -"Spellcheck": "Sprawdzanie pisowni", -"Spellcheck Language": "J\u0119zyk sprawdzania pisowni", -"No misspellings found.": "Brak b\u0142\u0119d\u00f3w pisowni", -"Ignore": "Ignoruj", -"Ignore all": "Ignoruj wszystko", -"Finish": "Zako\u0144cz", -"Add to Dictionary": "Dodaj do s\u0142ownika", -"Insert table": "Wstaw tabel\u0119", -"Table properties": "W\u0142a\u015bciwo\u015bci tabeli", -"Delete table": "Usu\u0144 tabel\u0119", -"Cell": "Kom\u00f3rka", -"Row": "Wiersz", -"Column": "Kolumna", -"Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki", -"Merge cells": "\u0141\u0105cz kom\u00f3rki", -"Split cell": "Podziel kom\u00f3rk\u0119", -"Insert row before": "Wstaw wiersz przed", -"Insert row after": "Wstaw wiersz po", -"Delete row": "Usu\u0144 wiersz", -"Row properties": "W\u0142a\u015bciwo\u015bci wiersza", -"Cut row": "Wytnij wiersz", -"Copy row": "Kopiuj wiersz", -"Paste row before": "Wklej wiersz przed", -"Paste row after": "Wklej wiersz po", -"Insert column before": "Wstaw kolumn\u0119 przed", -"Insert column after": "Wstaw kolumn\u0119 po", -"Delete column": "Usu\u0144 kolumn\u0119", -"Cols": "Kol.", -"Rows": "Wiersz.", -"Width": "Szeroko\u015b\u0107", -"Height": "Wysoko\u015b\u0107", -"Cell spacing": "Odst\u0119py kom\u00f3rek", -"Cell padding": "Dope\u0142nienie kom\u00f3rki", -"Caption": "Tytu\u0142", -"Show caption": "Poka\u017c podpis", -"Left": "Lewo", -"Center": "\u015arodek", -"Right": "Prawo", -"Cell type": "Typ kom\u00f3rki", -"Scope": "Kontekst", -"Alignment": "Wyr\u00f3wnanie", -"H Align": "Wyr\u00f3wnanie w pionie", -"V Align": "Wyr\u00f3wnanie w poziomie", -"Top": "G\u00f3ra", -"Middle": "\u015arodek", -"Bottom": "D\u00f3\u0142", -"Header cell": "Kom\u00f3rka nag\u0142\u00f3wka", -"Row group": "Grupa wierszy", -"Column group": "Grupa kolumn", -"Row type": "Typ wiersza", -"Header": "Nag\u0142\u00f3wek", -"Body": "Tre\u015b\u0107", -"Footer": "Stopka", -"Border color": "Kolor ramki", -"Insert template...": "Wstaw szablon...", -"Templates": "Szablony", -"Template": "Szablon", -"Text color": "Kolor tekstu", -"Background color": "Kolor t\u0142a", -"Custom...": "Niestandardowy...", -"Custom color": "Kolor niestandardowy", -"No color": "Bez koloru", -"Remove color": "Usu\u0144 kolor", -"Table of Contents": "Spis tre\u015bci", -"Show blocks": "Poka\u017c bloki", -"Show invisible characters": "Poka\u017c niewidoczne znaki", -"Word count": "Liczba s\u0142\u00f3w", -"Count": "Liczba", -"Document": "Dokument", -"Selection": "Zaznaczenie", -"Words": "S\u0142owa", -"Words: {0}": "S\u0142\u00f3w: {0}", -"{0} words": "{0} s\u0142\u00f3w", -"File": "Plik", -"Edit": "Edycja", -"Insert": "Wstaw", -"View": "Widok", -"Format": "Format", -"Table": "Tabela", -"Tools": "Narz\u0119dzia", -"Powered by {0}": "Powered by {0}", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc", -"Image title": "Tytu\u0142 obrazu", -"Border width": "Grubo\u015b\u0107 ramki", -"Border style": "Styl ramki", -"Error": "B\u0142\u0105d", -"Warn": "Ostrze\u017cenie", -"Valid": "Prawid\u0142owe", -"To open the popup, press Shift+Enter": "Aby otworzy\u0107 okienko, naci\u015bnij Shift+Enter", -"Rich Text Area. Press ALT-0 for help.": "Obszar tekstu sformatowanego. Naci\u015bnij ALT-0, aby uzyska\u0107 pomoc.", -"System Font": "Font systemowy", -"Failed to upload image: {0}": "Nie uda\u0142o si\u0119 przes\u0142a\u0107 obrazu: {0}", -"Failed to load plugin: {0} from url {1}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 dodatku: {0} spod adresu url {1}", -"Failed to load plugin url: {0}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 adresu url dodatku: {0}", -"Failed to initialize plugin: {0}": "Nie mo\u017cna zainicjowa\u0107 dodatku: {0}", -"example": "przyk\u0142ad", -"Search": "Wyszukaj", -"All": "Wszystkie", -"Currency": "Waluta", -"Text": "Tekst", -"Quotations": "Cudzys\u0142owy", -"Mathematical": "Matematyczne", -"Extended Latin": "Rozszerzony \u0142aci\u0144ski", -"Symbols": "Symbole", -"Arrows": "Strza\u0142ki", -"User Defined": "W\u0142asny", -"dollar sign": "znak dolara", -"currency sign": "znak waluty", -"euro-currency sign": "znak euro", -"colon sign": "znak colon", -"cruzeiro sign": "znak cruzeiro", -"french franc sign": "znak franka francuskiego", -"lira sign": "znak liry", -"mill sign": "znak mill", -"naira sign": "znak nairy", -"peseta sign": "znak pesety", -"rupee sign": "znak rupii", -"won sign": "znak wona", -"new sheqel sign": "znak nowego szekla", -"dong sign": "znak donga", -"kip sign": "znak kipa", -"tugrik sign": "znak tugrika", -"drachma sign": "znak drachmy", -"german penny symbol": "znak feniga", -"peso sign": "znak peso", -"guarani sign": "znak guarani", -"austral sign": "znak australa", -"hryvnia sign": "znak hrywny", -"cedi sign": "znak cedi", -"livre tournois sign": "znak livre tournois", -"spesmilo sign": "znak spesmilo", -"tenge sign": "znak tenge", -"indian rupee sign": "znak rupii indyjskiej", -"turkish lira sign": "znak liry tureckiej", -"nordic mark sign": "znak nordic mark", -"manat sign": "znak manata", -"ruble sign": "znak rubla", -"yen character": "znak jena", -"yuan character": "znak juana", -"yuan character, in hong kong and taiwan": "znak juana w Hongkongu i na Tajwanie", -"yen\/yuan character variant one": "jen\/juan, wariant pierwszy", -"Loading emoticons...": "\u0141adowanie emotikon\u00f3w...", -"Could not load emoticons": "Nie mo\u017cna za\u0142adowa\u0107 emotikon\u00f3w", -"People": "Ludzie", -"Animals and Nature": "Zwierz\u0119ta i natura", -"Food and Drink": "Jedzenie i picie", -"Activity": "Aktywno\u015b\u0107", -"Travel and Places": "Podr\u00f3\u017ce i miejsca", -"Objects": "Obiekty", -"Flags": "Flagi", -"Characters": "Znaki", -"Characters (no spaces)": "Znaki (bez spacji)", -"{0} characters": "{0} znak\u00f3w", -"Error: Form submit field collision.": "B\u0142\u0105d: kolizja pola przesy\u0142ania formularza.", -"Error: No form element found.": "B\u0142\u0105d: nie znaleziono elementu formularza.", -"Update": "Aktualizuj", -"Color swatch": "Pr\u00f3bka koloru", -"Turquoise": "Turkusowy", -"Green": "Zielony", -"Blue": "Niebieski", -"Purple": "Purpurowy", -"Navy Blue": "Ciemnoniebieski", -"Dark Turquoise": "Ciemnoturkusowy", -"Dark Green": "Ciemnozielony", -"Medium Blue": "\u015arednioniebieski", -"Medium Purple": "\u015aredniopurpurowy", -"Midnight Blue": "Nocny b\u0142\u0119kit", -"Yellow": "\u017b\u00f3\u0142ty", -"Orange": "Pomara\u0144czowy", -"Red": "Czerwony", -"Light Gray": "Jasnoszary", -"Gray": "Szary", -"Dark Yellow": "Ciemno\u017c\u00f3\u0142ty", -"Dark Orange": "Ciemnopomara\u0144czowy", -"Dark Red": "Ciemnoczerwony", -"Medium Gray": "\u015arednioszary", -"Dark Gray": "Ciemnoszary", -"Light Green": "Jasnozielony", -"Light Yellow": "Jasno\u017c\u00f3\u0142ty", -"Light Red": "Jasnoczerwony", -"Light Purple": "Jasnopurpurowy", -"Light Blue": "Jasnoniebieski", -"Dark Purple": "Ciemnopurpurowy", -"Dark Blue": "Ciemnoniebieski", -"Black": "Czarny", -"White": "Bia\u0142y", -"Switch to or from fullscreen mode": "W\u0142\u0105cz lub wy\u0142\u0105cz tryb pe\u0142noekranowy", -"Open help dialog": "Otw\u00f3rz okno dialogowe pomocy", -"history": "historia", -"styles": "style", -"formatting": "formatowanie", -"alignment": "wyr\u00f3wnanie", -"indentation": "wci\u0119cie", -"Font": "Font", -"Size": "Rozmiar", -"More...": "Wi\u0119cej...", -"Select...": "Wybierz...", -"Preferences": "Ustawienia", -"Yes": "Tak", -"No": "Nie", -"Keyboard Navigation": "Nawigacja za pomoc\u0105 klawiatury", -"Version": "Wersja", -"Code view": "Widok kodu", -"Open popup menu for split buttons": "Otw\u00f3rz menu podr\u0119czne dla przycisk\u00f3w", -"List Properties": "Ustawienia Listy", -"List properties...": "Ustawienia listy...", -"Start list at number": "Rozpocznij numeracj\u0119 od", -"Line height": "Wysoko\u015b\u0107 Linii", -"comments": "komentarze", -"Format Painter": "Malarz format\u00f3w", -"Insert\/edit iframe": "Wstaw\/edytuj iframe", -"Capitalization": "Jak w zdaniu", -"lowercase": "ma\u0142e litery", -"UPPERCASE": "WIELKIE LITERY", -"Title Case": "Jak Nazwy W\u0142asne", -"permanent pen": "marker", -"Permanent Pen Properties": "W\u0142a\u015bciwo\u015bci markera", -"Permanent pen properties...": "W\u0142a\u015bciwo\u015bci markera...", -"case change": "Zmie\u0144 wielko\u015b\u0107", -"page embed": "strona osadzona", -"Advanced sort...": "Sortowanie zaawansowane...", -"Advanced Sort": "Sortowanie Zaawansowane", -"Sort table by column ascending": "Sortuj tabel\u0119 po kolumnie rosn\u0105co", -"Sort table by column descending": "Sortuj tabel\u0119 po kolumnie malej\u0105co", -"Sort": "Sortuj", -"Order": "Kolejno\u015b\u0107", -"Sort by": "Sortuj wed\u0142ug", -"Ascending": "Rosn\u0105co", -"Descending": "Malej\u0105co", -"Column {0}": "Kolumna {0}", -"Row {0}": "Wiersz {0}", -"Spellcheck...": "Sprawd\u017a pisowni\u0119...", -"Misspelled word": "B\u0142\u0119dna pisownia", -"Suggestions": "Sugestie", -"Change": "Zmie\u0144", -"Finding word suggestions": "Wyszukiwanie propozycji s\u0142\u00f3w", -"Success": "Sukces", -"Repair": "Napraw", -"Issue {0} of {1}": "Problem {0} z {1}", -"Images must be marked as decorative or have an alternative text description": "Obrazy musz\u0105 by\u0107 oznaczone jako dekoracyjne lub posiada\u0107 alternatywny opis tekstowy.", -"Images must have an alternative text description. Decorative images are not allowed.": "Obrazki musz\u0105 mie\u0107 tekst alternatywny. Dekoracyjne obrazy nie s\u0105 dozwolone.", -"Or provide alternative text:": "lub dodaj tekst alternatywny:", -"Make image decorative:": "Uczy\u0144 obraz dekoracyjnym:", -"ID attribute must be unique": "ID atrybutu musi by\u0107 unikalny", -"Make ID unique": "Utw\u00f3rz unikalny ID", -"Keep this ID and remove all others": "Zachowaj to ID oraz usu\u0144 inne", -"Remove this ID": "Usu\u0144 to ID", -"Remove all IDs": "Usu\u0144 wszystkie ID", -"Checklist": "Checklista", -"Anchor": "Kotwica", -"Special character": "Znak specjalny", -"Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego", -"Color": "Kolor", -"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu", -"Image description": "Opis obrazka", -"Image": "Obraz", -"Insert link": "Wstaw \u0142\u0105cze", -"Target": "Cel", -"Link": "Adres \u0142\u0105cza", -"Poster": "Plakat", -"Media": "Media", -"Print": "Drukuj", -"Prev": "Poprz.", -"Find and replace": "Znajd\u017a i zamie\u0144", -"Whole words": "Ca\u0142e s\u0142owa", -"Insert template": "Wstaw szablon" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/pt-BR.es5.js b/build/media_source/vendor/tinymce/langs/pt-BR.es5.js deleted file mode 100644 index f8c21680402ff..0000000000000 --- a/build/media_source/vendor/tinymce/langs/pt-BR.es5.js +++ /dev/null @@ -1,230 +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": "Sobrescrito", -"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. ...", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.", -"Name": "Nome", -"Anchor": "\u00c2ncora", -"Id": "Id", -"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", -"Language": "Idioma", -"Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo", -"B": "B", -"R": "R", -"G": "G", -"Color": "Cor", -"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", -"Image": "Imagem", -"Zoom in": "Aumentar zoom", -"Contrast": "Contraste", -"Back": "Voltar", -"Gamma": "Gama", -"Flip horizontally": "Virar horizontalmente", -"Resize": "Redimensionar", -"Sharpen": "Aumentar nitidez", -"Zoom out": "Diminuir zoom", -"Image options": "Op\u00e7\u00f5es de Imagem", -"Apply": "Aplicar", -"Brightness": "Brilho", -"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio", -"Rotate counterclockwise": "Girar em sentido hor\u00e1rio", -"Edit image": "Editar imagem", -"Color levels": "N\u00edveis de cor", -"Crop": "Cortar", -"Orientation": "Orienta\u00e7\u00e3o", -"Flip vertically": "Virar verticalmente", -"Invert": "Inverter", -"Date\/time": "data\/hora", -"Insert date\/time": "Inserir data\/hora", -"Remove link": "Remover link", -"Url": "Url", -"Text to display": "Texto para mostrar", -"Anchors": "\u00c2ncoras", -"Insert link": "Inserir link", -"Link": "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:\/\/?", -"Paste or type a link": "Cole ou digite um Link", -"Target": "Alvo", -"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": "Inserir\/editar link", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Media": "imagem", -"Alternative source": "Fonte alternativa", -"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:", -"Insert video": "Inserir v\u00eddeo", -"Poster": "Autor", -"Insert\/edit media": "Inserir\/editar imagem", -"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", -"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 da borda", -"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", -"Custom...": "Personalizado...", -"Custom color": "Cor personalizada", -"No color": "Nenhuma cor", -"Text color": "Cor do texto", -"Table of Contents": "\u00edndice de Conte\u00fado", -"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/build/media_source/vendor/tinymce/langs/pt-PT.es5.js b/build/media_source/vendor/tinymce/langs/pt-PT.es5.js deleted file mode 100644 index 6f73db03ae06d..0000000000000 --- a/build/media_source/vendor/tinymce/langs/pt-PT.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('pt-PT',{ -"Cut": "Cortar", -"Heading 5": "T\u00edtulo 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": "T\u00edtulo 4", -"Div": "Div", -"Heading 2": "T\u00edtulo 2", -"Paste": "Colar", -"Close": "Fechar", -"Font Family": "Fonte", -"Pre": "Pre", -"Align right": "Alinhar \u00e0 direita", -"New document": "Novo documento", -"Blockquote": "Cita\u00e7\u00e3o em bloco", -"Numbered list": "Lista numerada", -"Heading 1": "T\u00edtulo 1", -"Headings": "T\u00edtulos", -"Increase indent": "Aumentar avan\u00e7o", -"Formats": "Formatos", -"Headers": "Cabe\u00e7alhos", -"Select all": "Selecionar tudo", -"Header 3": "Cabe\u00e7alho 3", -"Blocks": "Blocos", -"Undo": "Desfazer", -"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", -"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": "T\u00edtulo 6", -"Heading 3": "T\u00edtulo 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": "Na 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. ...", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\u00e7ar com uma letra, seguido por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sobtra\u00e7os.", -"Name": "Nome", -"Anchor": "\u00c2ncora", -"Id": "ID", -"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", -"Language": "Idioma", -"Insert\/Edit code sample": "Inserir\/editar amostra de c\u00f3digo", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "Imagem", -"Zoom in": "Mais zoom", -"Contrast": "Contraste", -"Back": "Voltar", -"Gamma": "Gama", -"Flip horizontally": "Inverter horizontalmente", -"Resize": "Redimensionar", -"Sharpen": "Mais nitidez", -"Zoom out": "Menos zoom", -"Image options": "Op\u00e7\u00f5es de imagem", -"Apply": "Aplicar", -"Brightness": "Brilho", -"Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria", -"Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria", -"Edit image": "Editar imagem", -"Color levels": "N\u00edveis de cor", -"Crop": "Recortar", -"Orientation": "Orienta\u00e7\u00e3o", -"Flip vertically": "Inverter verticalmente", -"Invert": "Inverter", -"Date\/time": "Data\/hora", -"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", -"Link": "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 prefixo http:\/\/ tal como necess\u00e1rio?", -"Paste or type a link": "Copiar ou escrever uma hiperliga\u00e7\u00e3o", -"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: tal como necess\u00e1rio?", -"Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o", -"Insert\/edit video": "Inserir\/editar v\u00eddeo", -"Media": "Media", -"Alternative source": "Localiza\u00e7\u00e3o alternativa", -"Paste your embed code below:": "Colar c\u00f3digo para embeber:", -"Insert video": "Inserir v\u00eddeo", -"Poster": "Autor", -"Insert\/edit media": "Inserir\/editar media", -"Embed": "Embeber", -"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": "Superior", -"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": "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": "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", -"Table of Contents": "\u00cdndice", -"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": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda", -"Tools": "Ferramentas", -"View": "Ver", -"Table": "Tabela", -"Format": "Formatar" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/readme.md b/build/media_source/vendor/tinymce/langs/readme.md deleted file mode 100644 index a52bf03f9a3ae..0000000000000 --- a/build/media_source/vendor/tinymce/langs/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -This is where language files should be placed. - -Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ diff --git a/build/media_source/vendor/tinymce/langs/ro.es5.js b/build/media_source/vendor/tinymce/langs/ro.es5.js deleted file mode 100644 index 367b3e2554b69..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ro.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('ro',{ -"Cut": "Decupeaz\u0103", -"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.", -"Div": "Div", -"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", -"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", -"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", -"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?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "\u021aint\u0103", -"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": "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", -"Insert row before": "Insereaz\u0103 \u00eenainte de linie", -"Rows": "Linii", -"Height": "\u00cen\u0103l\u0163ime", -"Paste row after": "Lipe\u015fte linie dup\u0103", -"Alignment": "Aliniament", -"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", -"Header cell": "Antet celul\u0103", -"Column": "Coloan\u0103", -"Cell": "Celul\u0103", -"Header": "Antet", -"Cell type": "Tip celul\u0103", -"Copy row": "Copiaz\u0103 linie", -"Row properties": "Propriet\u0103\u021bi linie", -"Table properties": "Propriet\u0103\u021bi tabel\u0103", -"Row group": "Grup de linii", -"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", -"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/build/media_source/vendor/tinymce/langs/ru.es5.js b/build/media_source/vendor/tinymce/langs/ru.es5.js deleted file mode 100644 index 3975187969bd6..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ru.es5.js +++ /dev/null @@ -1,230 +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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.", -"Name": "\u0418\u043c\u044f", -"Anchor": "\u042f\u043a\u043e\u0440\u044c", -"Id": "Id", -"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", -"Language": "\u042f\u0437\u044b\u043a", -"Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", -"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c", -"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", -"Back": "\u041d\u0430\u0437\u0430\u0434", -"Gamma": "\u0413\u0430\u043c\u043c\u0430", -"Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438", -"Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440", -"Sharpen": "\u0427\u0435\u0442\u043a\u043e\u0441\u0442\u044c", -"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c", -"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", -"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c", -"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c", -"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435", -"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438", -"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438", -"Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c", -"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f", -"Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438", -"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f", -"Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f", -"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f", -"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", -"Link": "\u0421\u0441\u044b\u043b\u043a\u0430", -"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?", -"Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443", -"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", -"Media": "\u0412\u0438\u0434\u0435\u043e", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a", -"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", -"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", -"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", -"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", -"Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438", -"Show 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" -}); diff --git a/build/media_source/vendor/tinymce/langs/si-LK.es5.js b/build/media_source/vendor/tinymce/langs/si-LK.es5.js deleted file mode 100644 index 3f37cb8b58cb1..0000000000000 --- a/build/media_source/vendor/tinymce/langs/si-LK.es5.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/build/media_source/vendor/tinymce/langs/sk.es5.js b/build/media_source/vendor/tinymce/langs/sk.es5.js deleted file mode 100644 index 148e7383b62c2..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sk.es5.js +++ /dev/null @@ -1,230 +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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by malo za\u010d\u00edna\u0165 p\u00edsmenom, nasledovan\u00e9 p\u00edsmenami, \u010d\u00edslami, pom\u013a\u010dkami, bodkami, dvojbodkami alebo podtr\u017en\u00edkmi.", -"Name": "N\u00e1zov", -"Anchor": "Odkaz", -"Id": "Id", -"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", -"Language": "Jazyk", -"Insert\/Edit code sample": "Vlo\u017ei\u0165\/upravi\u0165 vzorku k\u00f3du", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "Obr\u00e1zok", -"Zoom in": "Pribl\u00ed\u017ei\u0165", -"Contrast": "Kontrast", -"Back": "Sp\u00e4\u0165", -"Gamma": "Gama", -"Flip horizontally": "Preklopi\u0165 horizont\u00e1lne", -"Resize": "Zmeni\u0165 ve\u013ekos\u0165", -"Sharpen": "Zaostri\u0165", -"Zoom out": "Oddiali\u0165", -"Image options": "Mo\u017enosti obr\u00e1zku", -"Apply": "Pou\u017ei\u0165", -"Brightness": "Jas", -"Rotate clockwise": "Oto\u010di\u0165 v smere hodinov\u00fdch ru\u010di\u010diek", -"Rotate counterclockwise": "Oto\u010di\u0165 proti smeru hodinov\u00fdch ru\u010di\u010diek", -"Edit image": "Upravi\u0165 obr\u00e1zok", -"Color levels": "\u00darovne farieb", -"Crop": "Vyreza\u0165", -"Orientation": "Orient\u00e1cia", -"Flip vertically": "Preklopi\u0165 vertik\u00e1lne", -"Invert": "Invertova\u0165", -"Date\/time": "D\u00e1tum\/\u010das", -"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", -"Link": "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 odkaz. Chcete prida\u0165 vy\u017eadovan\u00fa http:\/\/ predponu?", -"Paste or type a link": "Prilepte alebo nap\u00ed\u0161te odkaz", -"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\u017eadovan\u00fa mailto: predponu?", -"Insert\/edit link": "Vlo\u017ei\u0165\/upravi\u0165 odkaz", -"Insert\/edit video": "Vlo\u017ei\u0165\/upravi\u0165 video", -"Media": "M\u00e9di\u00e1", -"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", -"Poster": "Uk\u00e1\u017eka", -"Insert\/edit media": "Vlo\u017ei\u0165\/upravi\u0165 m\u00e9di\u00e1", -"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", -"Table of Contents": "Obsah", -"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/build/media_source/vendor/tinymce/langs/sl.es5.js b/build/media_source/vendor/tinymce/langs/sl.es5.js deleted file mode 100644 index 3a4bb342472b7..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sl.es5.js +++ /dev/null @@ -1,445 +0,0 @@ -tinymce.addI18n('sl',{ -"Redo": "Ponovno uveljavi", -"Undo": "Razveljavi", -"Cut": "Izre\u017ei", -"Copy": "Kopiraj", -"Paste": "Prilepi", -"Select all": "Izberi vse", -"New document": "Nov dokument", -"Ok": "V redu", -"Cancel": "Prekli\u010di", -"Visual aids": "Vizualni pripomo\u010dki", -"Bold": "Krepko", -"Italic": "Po\u0161evno", -"Underline": "Pod\u010drtano", -"Strikethrough": "Pre\u010drtano", -"Superscript": "Nadpisano", -"Subscript": "Podpisano", -"Clear formatting": "Odstrani oblikovanje", -"Align left": "Leva poravnava", -"Align center": "Sredinska poravnava", -"Align right": "Desna poravnava", -"Justify": "Obojestranska poravnava", -"Bullet list": "Ozna\u010den seznam", -"Numbered list": "O\u0161tevil\u010den seznam", -"Decrease indent": "Zmanj\u0161aj zamik", -"Increase indent": "Pove\u010daj zamik", -"Close": "Zapri", -"Formats": "Oblika", -"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.", -"Headers": "Naslovi", -"Header 1": "Naslov 1", -"Header 2": "Naslov 2", -"Header 3": "Naslov 3", -"Header 4": "Naslov 4", -"Header 5": "Naslov 5", -"Header 6": "Naslov 6", -"Headings": "Naslovi", -"Heading 1": "Naslov 1", -"Heading 2": "Naslov 2", -"Heading 3": "Naslov 3", -"Heading 4": "Naslov 4", -"Heading 5": "Naslov 5", -"Heading 6": "Naslov 6", -"Preformatted": "Predformatirano", -"Div": "Div", -"Pre": "Pre", -"Code": "Koda", -"Paragraph": "Odstavek", -"Blockquote": "Blockquote", -"Inline": "Med besedilom", -"Blocks": "Bloki", -"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 sedaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot besedilo, dokler te mo\u017enosti ne izklju\u010dite.", -"Fonts": "Pisave", -"Font Sizes": "Velikosti pisave", -"Class": "Razred", -"Browse for an image": "Prebrskaj za sliko", -"OR": "ALI", -"Drop an image here": "Spusti sliko sem", -"Upload": "Nalo\u017ei", -"Block": "Blok", -"Align": "Poravnava", -"Default": "Privzeto", -"Circle": "Krog", -"Disc": "Disk", -"Square": "Kvadrat", -"Lower Alpha": "Mala alfa", -"Lower Greek": "Male gr\u0161ke \u010drke", -"Lower Roman": "Male rimske \u0161tevilke", -"Upper Alpha": "Velika alfa", -"Upper Roman": "Velike rimske \u0161tevilke", -"Anchor...": "Sidro ...", -"Name": "Naziv", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id se mora za\u010deti s \u010drko, sledijo samo \u010drke, \u0161tevilke, pomi\u0161ljaji, pike, dvopi\u010dja ali pod\u010drtaji.", -"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...": "Poseben znak ...", -"Source code": "Izvorna koda", -"Insert\/Edit code sample": "Vstavi\/Uredi vzor\u010dno kodo", -"Language": "Jezik", -"Code sample...": "Vzor\u010dna koda ...", -"Color Picker": "Izbirnik barve", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "Od leve proti desni", -"Right to left": "Od desne proti levi", -"Emoticons": "\u010custveni simboli", -"Emoticons...": "\u010custveni simboli ...", -"Metadata and Document Properties": "Metapodatki in lastnosti dokumenta", -"Title": "Naslov", -"Keywords": "Klju\u010dne besede", -"Description": "Opis", -"Robots": "Robotki", -"Author": "Avtor", -"Encoding": "Kodiranje", -"Fullscreen": "\u010cez cel zaslon", -"Action": "Dejanje", -"Shortcut": "Bli\u017enjica", -"Help": "Pomo\u010d", -"Address": "Naslov", -"Focus to menubar": "Poudarek na menijski vrstici", -"Focus to toolbar": "Poudarek na orodni vrstici", -"Focus to element path": "Poudarek na poti elementa", -"Focus to contextual toolbar": "Poudarek na kontekstualni orodni vrstici", -"Insert link (if link plugin activated)": "Vstavi povezavo (\u010de je aktiviran vti\u010dnik za povezavo)", -"Save (if save plugin activated)": "Shrani (\u010de je aktiviran vti\u010dnik za shranjevanje)", -"Find (if searchreplace plugin activated)": "I\u0161\u010di (\u010de je aktiviran vti\u010dnik za iskanje\/zamenjavo)", -"Plugins installed ({0}):": "Name\u0161\u010deni vti\u010dniki ({0}):", -"Premium plugins:": "Premium vti\u010dniki:", -"Learn more...": "Ve\u010d ...", -"You are using {0}": "Uporabljate {0}", -"Plugins": "Vti\u010dniki", -"Handy Shortcuts": "Uporabne bli\u017enjice", -"Horizontal line": "Vodoravna \u010drta", -"Insert\/edit image": "Vstavi\/uredi sliko", -"Alternative description": "Nadomestni opis", -"Accessibility": "Dostopnost", -"Image is decorative": "Slika je okrasna", -"Source": "Pot", -"Dimensions": "Dimenzije", -"Constrain proportions": "Obdr\u017ei razmerje", -"General": "Splo\u0161no", -"Advanced": "Napredno", -"Style": "Slog", -"Vertical space": "Navpi\u010dni prostor", -"Horizontal space": "Vodoravni prostor", -"Border": "Meja", -"Insert image": "Vnesi sliko", -"Image...": "Slika ...", -"Image list": "Seznam slik", -"Rotate counterclockwise": "Zavrti v nasprotni smeri urnega kazalca", -"Rotate clockwise": "Zavrti v smeri urnega kazalca", -"Flip vertically": "Obrni navpi\u010dno", -"Flip horizontally": "Obrni vodoravno", -"Edit image": "Uredi sliko", -"Image options": "Mo\u017enosti slike", -"Zoom in": "Pove\u010daj", -"Zoom out": "Pomanj\u0161aj", -"Crop": "Obre\u017ei", -"Resize": "Spremeni velikost", -"Orientation": "Usmerjenost", -"Brightness": "Svetlost", -"Sharpen": "Izostri", -"Contrast": "Kontrast", -"Color levels": "Barvni nivo", -"Gamma": "Gama", -"Invert": "Obrni", -"Apply": "Uporabi", -"Back": "Nazaj", -"Insert date\/time": "Vstavi datum\/\u010das", -"Date\/time": "Datum\/\u010das", -"Insert\/edit link": "Vstavi\/uredi povezavo", -"Text to display": "Besedilo za prikaz", -"Url": "Povezava", -"Open link in...": "Odpri povezavo v ...", -"Current window": "Trenutno okno", -"None": "Brez", -"New window": "Novo okno", -"Open link": "Odpri povezavo", -"Remove link": "Odstrani povezavo", -"Anchors": "Sidra", -"Link...": "Povezava ...", -"Paste or type a link": "Prilepite ali vnesite povezavo", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Vneseni URL predstavlja e-po\u0161tni naslov. Ali \u017eelite dodati potrebno predpono \"mailto:\"?", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Vneseni URL predstavlja zunanjo povezavo. Ali \u017eelite dodati predpono \"http:\/\/\"?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Vneseni URL naslov predstavlja zunanjo povezavo. Ali mu \u017eelite dodati predpono https:\/\/ ?", -"Link list": "Seznam povezav", -"Insert video": "Vstavi video", -"Insert\/edit video": "Vstavi\/uredi video", -"Insert\/edit media": "Vstavi\/uredi medij", -"Alternative source": "Nadomestni vir", -"Alternative source URL": "Nadomestni vir URL", -"Media poster (Image URL)": "Medijski poster (URL slike)", -"Paste your embed code below:": "Spodaj prilepite kodo za vdelavo:", -"Embed": "Vdelaj", -"Media...": "Mediji ...", -"Nonbreaking space": "Nedeljivi presledek", -"Page break": "Prelom strani", -"Paste as text": "Vnesi kot besedilo", -"Preview": "Predogled", -"Print...": "Natisni ...", -"Save": "Shrani", -"Find": "Najdi", -"Replace with": "Zamenjaj z", -"Replace": "Zamenjaj", -"Replace all": "Zamenjaj vse", -"Previous": "Prej\u0161nja", -"Next": "Naslednja", -"Find and Replace": "Najdi in zamenjaj", -"Find and replace...": "Najdi in zamenjaj ...", -"Could not find the specified string.": "Iskanje ni vrnilo rezultatov.", -"Match case": "Ujemanje malih in velikih \u010drk", -"Find whole words only": "I\u0161\u010di samo cele besede", -"Find in selection": "I\u0161\u010di v izboru", -"Spellcheck": "\u010crkovalnik", -"Spellcheck Language": "Jezik \u010drkovalnika", -"No misspellings found.": "Ni najdenih napak v \u010drkovanju.", -"Ignore": "Prezri", -"Ignore all": "Prezri vse", -"Finish": "Zaklju\u010di", -"Add to Dictionary": "Dodaj v slovar", -"Insert table": "Vstavi tabelo", -"Table properties": "Lastnosti tabele", -"Delete table": "Izbri\u0161i tabelo", -"Cell": "Celica", -"Row": "Vrstica", -"Column": "Stolpec", -"Cell properties": "Lastnosti celice", -"Merge cells": "Zdru\u017ei celice", -"Split cell": "Razdeli celico", -"Insert row before": "Vstavi vrstico pred", -"Insert row after": "Vstavi vrstico za", -"Delete row": "Izbri\u0161i vrstico", -"Row properties": "Lastnosti vrstice", -"Cut row": "Izre\u017ei vrstico", -"Copy row": "Kopiraj vrstico", -"Paste row before": "Prilepi vrstico pred", -"Paste row after": "Prilepi vrstico za", -"Insert column before": "Vstavi stolpec pred", -"Insert column after": "Vstavi stolpec za", -"Delete column": "Izbri\u0161i stolpec", -"Cols": "Stolpci", -"Rows": "Vrstice", -"Width": "\u0160irina", -"Height": "Vi\u0161ina", -"Cell spacing": "Razmik med celicami", -"Cell padding": "Polnilo med celicami", -"Caption": "Naslov", -"Show caption": "Poka\u017ei napis", -"Left": "Leva", -"Center": "Sredinska", -"Right": "Desna", -"Cell type": "Tip celice", -"Scope": "Obseg", -"Alignment": "Poravnava", -"H Align": "Vodoravna poravnava", -"V Align": "Navpi\u010dna poravnava", -"Top": "Vrh", -"Middle": "Sredina", -"Bottom": "Dno", -"Header cell": "Celica glave", -"Row group": "Grupiranje vrstic", -"Column group": "Grupiranje stolpcev", -"Row type": "Tip vrstice", -"Header": "Header", -"Body": "Vsebina", -"Footer": "Footer", -"Border color": "Barva obrobe", -"Insert template...": "Vstavi predlogo ...", -"Templates": "Predloge", -"Template": "Predloga", -"Text color": "Barva besedila", -"Background color": "Barva ozadja", -"Custom...": "Po meri ...", -"Custom color": "Barva po meri", -"No color": "Brezbarvno", -"Remove color": "Odstrani barvo", -"Table of Contents": "Kazalo", -"Show blocks": "Prika\u017ei bloke", -"Show invisible characters": "Prika\u017ei skrite znake", -"Word count": "\u0160tevilo besed", -"Count": "\u0160tevilo", -"Document": "Dokument", -"Selection": "Izbor", -"Words": "Besede", -"Words: {0}": "Besed: {0}", -"{0} words": "{0} besed", -"File": "Datoteka", -"Edit": "Uredi", -"Insert": "Vstavi", -"View": "Pogled", -"Format": "Oblika", -"Table": "Tabela", -"Tools": "Orodja", -"Powered by {0}": "Uporablja tehnologijo {0}", -"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", -"Image title": "Naslov slike", -"Border width": "\u0160irina obrobe", -"Border style": "Slog obrobe", -"Error": "Napaka", -"Warn": "Opozorilo", -"Valid": "Veljavno", -"To open the popup, press Shift+Enter": "Za odpiranje pojavnega okna pritisnite Shift + Enter.", -"Rich Text Area. Press ALT-0 for help.": "Bogato besedilo. Pritisnite ALT-0 za pomo\u010d.", -"System Font": "Sistemska pisava", -"Failed to upload image: {0}": "Napaka nalaganja slike: {0}", -"Failed to load plugin: {0} from url {1}": "Napaka nalaganja vti\u010dnika: {0} z url {1}", -"Failed to load plugin url: {0}": "Napaka nalaganja url: {0}", -"Failed to initialize plugin: {0}": "Napaka inicializacije vti\u010dnika: {0}", -"example": "primer", -"Search": "Iskanje", -"All": "Vse", -"Currency": "Valuta", -"Text": "Besedilo", -"Quotations": "Citati", -"Mathematical": "Matemati\u010dno", -"Extended Latin": "Raz\u0161irjena latinica", -"Symbols": "Simboli", -"Arrows": "Pu\u0161\u010dice", -"User Defined": "Uporabnik dolo\u010den", -"dollar sign": "znak za dolar", -"currency sign": "znak za valuto", -"euro-currency sign": "znak za evro", -"colon sign": "znak za dvopi\u010dje", -"cruzeiro sign": "znak za cruzeiro", -"french franc sign": "znak za francoski frank", -"lira sign": "znak za liro", -"mill sign": "znak za mill", -"naira sign": "znak za nairo", -"peseta sign": "znak za peseto", -"rupee sign": "znak za rupijo", -"won sign": "znak za won", -"new sheqel sign": "znak za novi \u0161ekl", -"dong sign": "znak za dong", -"kip sign": "znak za kip", -"tugrik sign": "znak za tugrik", -"drachma sign": "znak za drahmo", -"german penny symbol": "znak za nem\u0161ki peni", -"peso sign": "znak za peso", -"guarani sign": "znak za guarani", -"austral sign": "znak za austral", -"hryvnia sign": "znak za hrivnijo", -"cedi sign": "znak za cedi", -"livre tournois sign": "znak za livre tournois", -"spesmilo sign": "znak za spesmilo", -"tenge sign": "znak za tenge", -"indian rupee sign": "znak za indijsko rupijo", -"turkish lira sign": "znak za tur\u0161ko liro", -"nordic mark sign": "znak za nordijsko marko", -"manat sign": "znak za manat", -"ruble sign": "znak za rubelj", -"yen character": "znak za jen", -"yuan character": "znak za yuan", -"yuan character, in hong kong and taiwan": "znak za yuan, v Hongkongu in na Tajvanu", -"yen\/yuan character variant one": "znak za jen\/yuan, prva razli\u010dica", -"Loading emoticons...": "Nalaganje \u010dustvenih simbolov ...", -"Could not load emoticons": "\u010custvenih simbolov ni mogo\u010de nalo\u017eiti.", -"People": "Ljudje", -"Animals and Nature": "\u017divali in narava", -"Food and Drink": "Hrana in pija\u010da", -"Activity": "Dejavnost", -"Travel and Places": "Potovanja in kraji", -"Objects": "Predmeti", -"Flags": "Zastave", -"Characters": "Znaki", -"Characters (no spaces)": "Znaki (brez presledkov)", -"{0} characters": "{0} znakov", -"Error: Form submit field collision.": "Napaka: navzkri\u017eje polja za oddajo obrazca", -"Error: No form element found.": "Napaka: elementa oblike ni mogo\u010de najti", -"Update": "Posodobitev", -"Color swatch": "Vzorec barv", -"Turquoise": "Turkizna", -"Green": "Zelena", -"Blue": "Modra", -"Purple": "\u0160krlatna", -"Navy Blue": "Mornarsko modra", -"Dark Turquoise": "Temno turkizna", -"Dark Green": "Temno zelena", -"Medium Blue": "Srednje modra", -"Medium Purple": "Srednje \u0161krlatna", -"Midnight Blue": "Polno\u010dno modra", -"Yellow": "Rumena", -"Orange": "Oran\u017ena", -"Red": "Rde\u010da", -"Light Gray": "Svetlo siva", -"Gray": "Siva", -"Dark Yellow": "Temno rumena", -"Dark Orange": "Temno oran\u017ena", -"Dark Red": "Temno rde\u010da", -"Medium Gray": "Srednje siva", -"Dark Gray": "Temno siva", -"Light Green": "Svetlo zelena", -"Light Yellow": "Svetlo rumena", -"Light Red": "Svetlo rde\u010da", -"Light Purple": "Svetlo vijoli\u010dna", -"Light Blue": "Svetlo modra", -"Dark Purple": "Temno vijoli\u010dna", -"Dark Blue": "Temno modra", -"Black": "\u010crna", -"White": "Bela", -"Switch to or from fullscreen mode": "Preklopi v ali iz celozaslonskega na\u010dina", -"Open help dialog": "Odpri pogovorno okno za pomo\u010d", -"history": "zgodovina", -"styles": "slogi", -"formatting": "oblikovanje", -"alignment": "poravnava", -"indentation": "zamik", -"Font": "Pisava", -"Size": "Velikost", -"More...": "Ve\u010d ...", -"Select...": "Izberi ...", -"Preferences": "Preference", -"Yes": "Da", -"No": "Ne", -"Keyboard Navigation": "Krmarjenje s tipkovnico", -"Version": "Razli\u010dica", -"Code view": "Prikaz kode", -"Open popup menu for split buttons": "Odpri pojavni meni za razdeljene gumbe", -"List Properties": "Lastnosti seznama", -"List properties...": "Lastnosti seznama...", -"Start list at number": "Za\u010dni seznam s \u0161tevilko", -"Line height": "Vi\u0161ina vrstice", -"comments": "komentarji", -"Format Painter": "Preslikovalnik Oblik", -"Insert\/edit iframe": "Vstavi\/uredi iFrame", -"Capitalization": "Velika za\u010detnica", -"lowercase": "male \u010drke", -"UPPERCASE": "VELIKE \u010cRKE", -"Title Case": "Velike za\u010detnice naslovov", -"permanent pen": "permanentno pisalo", -"Permanent Pen Properties": "Lastnosti permanentnega pisala", -"Permanent pen properties...": "Lastnosti permanentnega pisala ...", -"case change": "sprememba male\/velike \u010drke", -"page embed": "vstavi stran", -"Advanced sort...": "Napredno razvr\u0161\u010danje", -"Advanced Sort": "Napredno razvr\u0161\u010danje...", -"Sort table by column ascending": "Razvrsti tabelo po stolpcu nara\u0161\u010dajo\u010de", -"Sort table by column descending": "Razvrsti tabelo po stolpcu padajo\u010de", -"Sort": "Razvrsti", -"Order": "Vrstni red", -"Sort by": "Razvrsti po", -"Ascending": "Nara\u0161\u010dajo\u010de", -"Descending": "Padajo\u010de", -"Column {0}": "Stolpec {0}", -"Row {0}": "Vrstica {0}", -"Spellcheck...": "\u010crkovalnik...", -"Misspelled word": "\u00b8Nepravilno \u010drkovana beseda", -"Suggestions": "Predlogi", -"Change": "Spremeni", -"Finding word suggestions": "Iskanje predlogov besed", -"Success": "Uspe\u0161no", -"Repair": "Popravi", -"Issue {0} of {1}": "Te\u017eava {0} od {1}", -"Images must be marked as decorative or have an alternative text description": "Slike morajo biti ozna\u010dene kot okrasne ali morajo imeti nadomestni opis v obliki besedila", -"Images must have an alternative text description. Decorative images are not allowed.": "Slike morajo imeti nadomestni opis v obliki besedila. Okrasne slike niso dovoljene.", -"Or provide alternative text:": "Ali podajte nadomestno besedilo:", -"Make image decorative:": "Dolo\u010di sliko kot okrasno:", -"ID attribute must be unique": "ID atribut mora biti edinstven", -"Make ID unique": "Ustvari edinstven ID", -"Keep this ID and remove all others": "Obdr\u017ei ta ID in odstrani vse ostale", -"Remove this ID": "Odstrani ta ID", -"Remove all IDs": "Odstrani vse IDje", -"Checklist": "Seznam preverjanj" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/sr.es5.js b/build/media_source/vendor/tinymce/langs/sr.es5.js deleted file mode 100644 index ef72404532444..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sr.es5.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/build/media_source/vendor/tinymce/langs/sv.es5.js b/build/media_source/vendor/tinymce/langs/sv.es5.js deleted file mode 100644 index 68531d5377e60..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sv.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('sv',{ -"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 webbl\u00e4sare st\u00f6djer inte direkt \u00e5tkomst till urklipp. 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": "Ta bort format", -"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": "P\u00e5 rad", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID skall b\u00f6rja med en boktav och endast f\u00f6ljas av bokst\u00c4ver a-z, siffror, bindestreck, punkt, kolon eller understreck.", -"Name": "Namn", -"Anchor": "Ankare", -"Id": "ID", -"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", -"Language": "Spr\u00e5k", -"Insert\/Edit code sample": "Infoga\/\u00e4ndra kodexempel", -"B": "B", -"R": "R", -"G": "G", -"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": "Kodning", -"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", -"Image": "Bild", -"Zoom in": "Zooma in", -"Contrast": "Kontrast", -"Back": "Tillbaka", -"Gamma": "Gamma", -"Flip horizontally": "V\u00e4nd horsontellt", -"Resize": "Skala om", -"Sharpen": "Sk\u00e4rpa", -"Zoom out": "Zooma ut", -"Image options": "Bildalternativ", -"Apply": "Verst\u00e4ll", -"Brightness": "Ljusstyrka", -"Rotate clockwise": "Rotera medurs", -"Rotate counterclockwise": "Rotera moturs", -"Edit image": "\u00c4ndra bild", -"Color levels": "F\u00e4rgniv\u00e5er", -"Crop": "Besk\u00e4r", -"Orientation": "Riktning", -"Flip vertically": "V\u00e4nd vertikalt", -"Invert": "Invertera", -"Date\/time": "Datum\/tid", -"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", -"Link": "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?", -"Paste or type a link": "Klistra in eller ange en l\u00e4nk", -"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", -"Poster": "Affish", -"Insert\/edit media": "Infoga\/\u00e4ndra media", -"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 kollumn 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", -"Table of Contents": "Inneh\u00e5llsf\u00f6rteckning", -"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/build/media_source/vendor/tinymce/langs/sw.es5.js b/build/media_source/vendor/tinymce/langs/sw.es5.js deleted file mode 100644 index f3e959ce9cb22..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sw.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('sw',{ -"Cut": "Kata", -"Heading 5": "Kichwa 5", -"Header 2": "Kijajuu 2", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Kisakuzi chako hakiauniwi kufika kwa clipboard moja kwa moja. Tafadhali tumia njia fupi ya kinanda taipu, kama Ctrl+X\/C\/V.", -"Heading 4": "Kichwa 4", -"Div": "Div", -"Heading 2": "Kichwa 2", -"Paste": "Bandika", -"Close": "Funga", -"Font Family": "Jamii ya fonti", -"Pre": "Iliofomatiwa", -"Align right": "Panga kulia", -"New document": "Waraka mpya", -"Blockquote": "Nukuu", -"Numbered list": "Orodha ya nambari", -"Heading 1": "Kichwa 1", -"Headings": "Vichwa", -"Increase indent": "Ongeza jongezo", -"Formats": "Fomati", -"Headers": "Vijajuu", -"Select all": "Chagua zote", -"Header 3": "Kijajuu 3", -"Blocks": "Matofali", -"Undo": "Tengua", -"Strikethrough": "Mkato ulalo", -"Bullet list": "Orodha ya tobo", -"Header 1": "Kijajuu 1", -"Superscript": "Hati juu", -"Clear formatting": "Safisha fomati", -"Font Sizes": "Ukubwa wa fonti", -"Subscript": "Hati chini", -"Header 6": "Kijajuu 6", -"Redo": "Rudia", -"Paragraph": "Aya", -"Ok": "Ok", -"Bold": "Nene", -"Code": "Kodi", -"Italic": "Italiki", -"Align center": "Panga katikati", -"Header 5": "Kijajuu 5", -"Heading 6": "Kichwa 6", -"Heading 3": "Kichwa 3", -"Decrease indent": "Punguza jongezo", -"Header 4": "Kijajuu 4", -"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Bandika sasa iko katika modi ya matini ghafi. Yaliyomo yatabandikwa kama matini ghafi mpaka utakapo zima chaguo hili.", -"Underline": "Pigia mstari", -"Cancel": "Ghairi", -"Justify": "Sawazisha", -"Inline": "Inline", -"Copy": "Nakili", -"Align left": "Panga kushoto", -"Visual aids": "Misaada ya kuona", -"Lower Greek": "Herufi ndogo za kigiriki", -"Square": "Mraba", -"Default": "Difoti", -"Lower Alpha": "Herufi ndogo", -"Circle": "Duara", -"Disc": "Nukta", -"Upper Alpha": "Herufi kubwa", -"Upper Roman": "Herufi kubwa za kirumi", -"Lower Roman": "Herufi ndogo za kirumi", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Kitambulisho kinapaswa kuanza na herufi kufwatiwa na maherufi, manambari, madeshi, vitone, minukta pacha au vistari chini pekee.", -"Name": "Jina", -"Anchor": "Nanga", -"Id": "Kitambulisho", -"You have unsaved changes are you sure you want to navigate away?": "Uko na mabadilisho ambayo hujayahifadhi. Una hakika unataka kuwacha?", -"Restore last draft": "Rejesha mswadajaribio wa mwisho", -"Special character": "Kikambo maalum", -"Source code": "Chanzo", -"Language": "Lugha", -"Insert\/Edit code sample": "Ingiza\/hariri mfano wa kodi", -"B": "B", -"R": "R", -"G": "G", -"Color": "Rangi", -"Right to left": "Kulia-kushoto", -"Left to right": "Kushoto-kulia", -"Emoticons": "Emoticons", -"Robots": "Roboti", -"Document properties": "Sifa za waraka", -"Title": "Kichwa", -"Keywords": "Maneno misingi", -"Encoding": "Usimbaji", -"Description": "Fafanuo", -"Author": "Mwandishi", -"Fullscreen": "Skrini kamili", -"Horizontal line": "Mstari mlalo", -"Horizontal space": "Nafasi mlalo", -"Insert\/edit image": "Ingiza\/hariri picha", -"General": "Ujumla", -"Advanced": "Hali ya juu", -"Source": "Kodi ya chanzo", -"Border": "Mkingo", -"Constrain proportions": "Lazimisha uwiano", -"Vertical space": "Nafasi wima", -"Image description": "Fafanuo la picha", -"Style": "Mtindo", -"Dimensions": "Kipimo", -"Insert image": "Ingiza picha", -"Image": "Picha", -"Zoom in": "Kuza zaidi", -"Contrast": "Ulinganuzi", -"Back": "Nyuma", -"Gamma": "Gamma", -"Flip horizontally": "Geuza mlalo", -"Resize": "Badilisha ukubwa", -"Sharpen": "Chonga", -"Zoom out": "Fifiza", -"Image options": "Machaguo ya picha", -"Apply": "Omba", -"Brightness": "Mwangaza", -"Rotate clockwise": "Zungusha mwelekeo saa", -"Rotate counterclockwise": "Zungusha mwelekeo kinyume cha saa", -"Edit image": "Hariri", -"Color levels": "Viwango vya rangi", -"Crop": "Puna", -"Orientation": "Uelekeo", -"Flip vertically": "Geuza wima", -"Invert": "Pindua", -"Date\/time": "Tarehe\/saa", -"Insert date\/time": "Ingiza tarehe\/saa", -"Remove link": "Ondoa kiungo", -"Url": "URL", -"Text to display": "Matini ya kuonyesha", -"Anchors": "Mananga", -"Insert link": "Ingiza kiungo", -"Link": "Kiungo", -"New window": "Dirisha jipya", -"None": "Hakuna", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL ulioingiza unaonekana ni kama kiungo cha nje. Unataka kuongeza prefix inayohitajika, ambayo ni http:\/\/ ?", -"Paste or type a link": "Bandika au kuchapa kiungo", -"Target": "Lengo", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL ulioingiza unaonekana ni kama anwani ya barua pepe. Unataka kuongeza prefix inayohitajika, ambayo ni mailto: ?", -"Insert\/edit link": "Ingiza\/hariri kiungo", -"Insert\/edit video": "Ingiza\/hariri video", -"Media": "Midia", -"Alternative source": "Chanzo cha mbadala", -"Paste your embed code below:": "Bandika kodi yako ya kupachika hapo chini:", -"Insert video": "Ingiza video", -"Poster": "Bando", -"Insert\/edit media": "Ingiza\/hariri midia", -"Embed": "Pachika", -"Nonbreaking space": "Nafasi fungamanishi", -"Page break": "Kigawa kurasa", -"Paste as text": "Bandika kama matini", -"Preview": "Hakikisho", -"Print": "Chapisha", -"Save": "Hifadhi", -"Could not find the specified string.": "Haikuweza kupata tungo lililoelezwa.", -"Replace": "Badilisha", -"Next": "Ifuatayo", -"Whole words": "Maneno kamili", -"Find and replace": "Tafuta na badilisha", -"Replace with": "Badilisha na", -"Find": "Tafuta", -"Replace all": "Badilisha zote", -"Match case": "Tahadhari herufi ndogo\/kubwa", -"Prev": "Iliopita", -"Spellcheck": "Ukaguzi tahajia", -"Finish": "Maliza", -"Ignore all": "Puuza zote", -"Ignore": "Puuza", -"Add to Dictionary": "Ongeza kwa kamusi", -"Insert row before": "Ingiza safumlalo kabla", -"Rows": "Masafumlalo", -"Height": "Urefu", -"Paste row after": "Bandika safumlalo baada", -"Alignment": "Mpangilio", -"Border color": "Rangi ya mkingo", -"Column group": "Kikundi cha safuwima", -"Row": "Safumlalo", -"Insert column before": "Ingiza safuwima kabla", -"Split cell": "Bainisha seli", -"Cell padding": "Pedi ya seli", -"Cell spacing": "Nafasi ya seli", -"Row type": "Aina ya safumlalo", -"Insert table": "Ingiza jedwali", -"Body": "Mwili", -"Caption": "Manukuu", -"Footer": "Kijachini", -"Delete row": "Futa safumlalo", -"Paste row before": "Bandika safumlalo kabla", -"Scope": "Wigo", -"Delete table": "Futa jedwali", -"H Align": "Pangilia mlalo", -"Top": "Juu", -"Header cell": "Seli ya kijajuu", -"Column": "Safuwima", -"Row group": "Kikundi cha safumlalo", -"Cell": "Seli", -"Middle": "Katikati", -"Cell type": "Aina ya seli", -"Copy row": "Nakili safumlalo", -"Row properties": "Mali ya safumlalo", -"Table properties": "Masifa ya jedwali", -"Bottom": "Chini", -"V Align": "Pangilia wima", -"Header": "Kijajuu", -"Right": "Kulia", -"Insert column after": "Ingiza safuwima baada", -"Cols": "Masafuwima", -"Insert row after": "Ingiza safumlalo baada", -"Width": "Upana", -"Cell properties": "Mali ya seli", -"Left": "Kushoto", -"Cut row": "Kata safumlalo", -"Delete column": "Futa safuwima", -"Center": "Katikati", -"Merge cells": "Unganisha maseli", -"Insert template": "Ingiza templeti", -"Templates": "Templeti", -"Background color": "Rangi ya usuli", -"Custom...": "Desturi...", -"Custom color": "Rangi ya desturi", -"No color": "Hakuna rangi", -"Text color": "Rangi ya matini", -"Table of Contents": "Jedwali la yaliyomo", -"Show blocks": "Onyesha matofali", -"Show invisible characters": "Onyesha vibambo visivyoonekana", -"Words: {0}": "Maneno: {0}", -"Insert": "Ingiza", -"File": "Faili", -"Edit": "Hariri picha", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Eneo la matini tondoti. Bofya ALT-F9 kwa menyu. Bofya ALT-F10 kwa upauzana. Bofya ALT-0 kwa usaidizi", -"Tools": "Zana", -"View": "Mtazamo", -"Table": "Jedwali", -"Format": "Fomati", -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/sy.es5.js b/build/media_source/vendor/tinymce/langs/sy.es5.js deleted file mode 100644 index 70520dd467891..0000000000000 --- a/build/media_source/vendor/tinymce/langs/sy.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('sy',{ -"Cut": "\u0729\u0718\u0728", -"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0721\u0713\u0712\u0717 Ctrl+X\/C\/V \u0712\u072a\u0718\u0723\u072a \u0715\u071d\u0718\u071f\u0742 \u0720\u0710 \u071d\u0720\u0717 \u0721\u072c\u0725\u0715\u072a\u0722\u0710 \u071a\u0715\u072a\u072b\u0710 \u0720\u0725\u0712\u0742\u072a\u0710 \u0720\u071b\u0712\u0742\u0720\u071d\u072c \u0729\u071d\u0728\u072c\u0710. \u0710\u0722 \u0712\u0723\u0721\u0710 \u0720\u0718\u071f\u0742 \u0721\u0726\u0720\u071a \u0713\u0715\u071d\u0721\u0718\u072c \u0729\u0726\u0720\u0710", -"Paste": "\u0715\u0712\u072b", -"Close": "\u0715\u0712\u0742\u0718\u072a", -"Align right": "\u0721\u0723\u0715\u072a\u072c\u0710 \u0720\u071d\u0721\u071d\u0722\u0710", -"New document": "\u0722\u0718\u0717\u072a\u0710 \u071a\u0715\u072c\u0710", -"Numbered list": "\u0729\u071d\u0721\u072c\u0710 \u0721\u072a\u0718\u0729\u0721\u072c\u0710", -"Increase indent": "\u0721\u0719\u071d\u0715 \u0723\u0726\u071d\u0729\u0718\u072c\u0710 \u0715\u072b\u0718\u072a\u071d\u0710 \u0715\u0723\u072a\u071b\u0710", -"Formats": "\u0710\u0723\u071f\u071d\u0721\u0308\u0710", -"Select all": "\u0726\u072a\u0718\u072b \u0720\u071f\u0720", -"Undo": "\u0720\u0710 \u0725\u0712\u0742\u0718\u0715", -"Strikethrough": "\u0723\u072a\u071b\u0710 \u0721\u0713\u0718", -"Bullet list": "\u0729\u071d\u0721\u072c\u0710 \u0715\u071f\u0726\u071d\u072c\u0308\u0710", -"Superscript": "\u072a\u0712 \u0723\u072a\u071b\u0710", -"Clear formatting": "\u072b\u071d\u0718\u0726 \u0720\u0710\u0723\u071f\u071d\u0721\u0308\u0710", -"Subscript": "\u0726\u0725\u0718\u072c \u0723\u072a\u071b\u0710", -"Redo": "\u0721\u071b\u071d\u0712\u0742\u0710", -"Ok": "\u071b\u0712\u0742\u0710", -"Bold": "\u071a\u0720\u071d\u0721\u0710", -"Italic": "\u0713\u0722\u071d\u0710", -"Align center": "\u0721\u0723\u0715\u072a\u072c\u0710 \u0712\u0726\u0720\u0713\u0710", -"Decrease indent": "\u0721\u0712\u0728\u072a \u0723\u0726\u071d\u0729\u0718\u072c \u0715\u072b\u0718\u072a\u071d\u0710 \u0715\u0723\u072a\u071b\u0710", -"Underline": "\u072c\u071a\u0718\u072c \u0713\u0330\u072a\u0713\u0710", -"Cancel": "\u0721\u0712\u071b\u0720", -"Justify": "\u0721\u0719\u0715\u0715\u0729\u0722\u0718\u072c\u0710", -"Copy": "\u0722\u0723\u0718\u071f\u073c", -"Align left": "\u0721\u0723\u0715\u072a\u072c\u0710 \u0720\u0723\u0721\u0720\u0710", -"Visual aids": "\u0725\u0718\u0715\u072a\u0308\u0722\u0710 \u0721\u072c\u071a\u0719\u071d\u0722\u0308\u0710", -"Lower Greek": "\u071d\u0718\u0722\u0722\u071d\u0710 \u072c\u071a\u072c\u071d\u0710", -"Square": "\u0721\u072a\u0712\u0725\u0710", -"Default": "\u0726\u072a\u071d\u072b\u0710", -"Lower Alpha": "\u0710\u0720\u0726\u0712\u071d\u072c \u072c\u071a\u072c\u071d\u0308\u0710", -"Circle": "\u071a\u0718\u0715\u072a\u0710", -"Disc": "\u0729\u0712\u0742\u0722\u0710", -"Upper Alpha": "\u0710\u0720\u0726\u0712\u071d\u072c \u0725\u0720\u071d\u072c\u0710", -"Upper Roman": "\u072a\u0718\u0721\u0722 \u0725\u0720\u071d\u072c\u0710", -"Lower Roman": "\u072a\u0718\u0721\u0722 \u072c\u071a\u072c\u071d\u072c\u0710", -"Name": "\u072b\u0721\u0710", -"Anchor": "\u0721\u072a\u0723\u0710", -"You have unsaved changes are you sure you want to navigate away?": "\u0720\u0710 \u071d\u0718\u072c \u071a\u0718\u0721\u071d\u0710 \u0720\u072b\u0718\u071a\u0720\u0726\u0308\u0710\u060c \u071d\u0718\u072c \u071a\u072c\u071d\u072c\u0710 \u0715\u0712\u0725\u072c \u0726\u0720\u071b\u072c\u061f", -"Restore last draft": "\u071a\u0721\u071d \u0720\u0721\u0718\u071f\u0721\u072c\u0710 \u071a\u072a\u071d\u072c\u0710", -"Special character": "\u0710\u072c\u0718\u072c\u0710 \u0715\u071d\u0720\u0722\u071d\u072c\u0710", -"Source code": "\u071f\u0718\u0715\u0710 \u0715\u0721\u0712\u0718\u0725\u0710", -"Right to left": "\u071d\u0721\u071d\u0722\u0710 \u0720\u0723\u0721\u0720\u0710", -"Left to right": "\u0723\u0721\u0720\u0710 \u0720\u071d\u0721\u071d\u0722\u0710", -"Emoticons": "\u072a\u0308\u0721\u0719\u0710 \u0722\u0712\u0742\u0717\u071d\u0308\u0710", -"Robots": "\u072a\u0718\u0712\u0718\u072c\u0308\u0710", -"Document properties": "\u0715\u071d\u0720\u071d\u072c\u0308\u0710 \u0715\u0710\u072b\u071b\u072a\u0308\u0710", -"Title": "\u0721\u0718\u0722\u0725\u0710", -"Keywords": "\u071a\u0712\u072a\u0308\u0710 \u0715\u0729\u0715\u071d\u0720\u0710", -"Encoding": "\u0721\u072c\u072a\u0721\u0719\u0718\u072c\u0710", -"Description": "\u0710\u072a\u071d\u071f\u0742\u0718\u072c\u0710", -"Author": "\u0723\u071d\u0718\u0721\u0710", -"Fullscreen": "\u072b\u072b\u072c\u0710 \u0721\u0720\u071d\u072c\u0710", -"Horizontal line": "\u0723\u072a\u071b\u0710 \u0710\u0718\u0726\u0729\u071d\u0710", -"Horizontal space": "\u0723\u0726\u071d\u0729\u0718\u072c\u0710 \u0710\u0718\u0726\u0729\u071d\u072c\u0710", -"Insert\/edit image": "\u0721\u0725\u0712\u0742\u072a\/\u072b\u071a\u0720\u0726 \u0720\u0728\u0718\u072a\u072c\u0710", -"General": "\u0713\u0718\u0722\u071d\u0710", -"Advanced": "\u0721\u072b\u0718\u072b\u071b\u0710", -"Source": "URL", -"Border": "\u072c\u071a\u0718\u0721\u0308\u0710", -"Constrain proportions": "\u0712\u071d\u072c\u071d\u0718\u072c\u0710 \u0715\u0721\u0729\u0718\u0715\u0722\u0718\u072c\u0710", -"Vertical space": "\u0723\u0726\u071d\u0729\u0718\u072c\u0710 \u0725\u0721\u0718\u0715\u071d\u072c\u0710", -"Image description": "\u0710\u072a\u071d\u071f\u0742\u0718\u072c\u0710 \u0715\u0728\u0718\u072a\u072c\u0710", -"Style": "\u0710\u0723\u071f\u071d\u0721\u0710", -"Dimensions": "\u072a\u071a\u0729\u0718\u072c\u0710", -"Insert image": "\u0721\u0725\u0712\u0742\u072a \u0728\u0718\u072a\u072c\u0710", -"Insert date\/time": "\u0721\u0725\u0712\u0742\u072a \u0723\u071d\u0729\u0718\u0721\u0710\/\u0725\u0715\u0722\u0710", -"Remove link": "\u072b\u071d\u0718\u0726 \u0720\u0710\u0723\u072a\u0710", -"Url": "Url", -"Text to display": "\u0728\u071a\u071a\u0710 \u0720\u0721\u071a\u0719\u0718\u071d\u0710", -"Insert link": "\u0721\u0725\u0712\u0742\u072a \u0710\u0723\u072a\u0710", -"New window": "\u0718\u071d\u0722\u0715\u0718\u0719 \u071a\u0715\u072c\u072c\u0710", -"None": "\u0717\u071d\u071f\u0330 \u071a\u0715", -"Target": "\u0722\u071d\u072b\u0710", -"Insert\/edit link": "\u0721\u0725\u0712\u0742\u072a\/\u0723\u071d\u0721\u072c\u0710 \u0715\u0710\u0723\u072a\u0710", -"Insert\/edit video": "\u0721\u0725\u0712\u0742\u072a\/\u0723\u071d\u0721\u072c\u0710 \u0715\u0712\u0742\u071d\u0715\u071d\u0718", -"Poster": "\u072b\u0718\u072c\u0726\u071d\u072c\u0308\u0710", -"Alternative source": "\u0721\u0712\u0718\u0725\u0710 \u072c\u071a\u0720\u0718\u0726\u0710", -"Paste your embed code below:": "\u0715\u0712\u072b \u071f\u0718\u0715\u0710 \u071a\u0712\u0742\u071d\u072b\u0710 \u0712\u0710\u0720\u072c\u071a\u072c:", -"Insert video": "\u0721\u0725\u0712\u0742\u072a \u0712\u0742\u071d\u0715\u071d\u0718", -"Embed": "\u071a\u0712\u0742\u0718\u072b", -"Nonbreaking space": "\u0720\u071d\u072c \u0729\u071b\u0725\u072c\u0710 \u0715\u0723\u0726\u071d\u0729\u0718\u072c\u0710", -"Preview": "\u071a\u071d\u072a\u072c\u0710", -"Print": "\u071b\u0712\u0742\u0725\u072c\u0710", -"Save": "\u071a\u0721\u071d\u072c\u0710", -"Could not find the specified string.": "\u0720\u0710 \u0721\u0728\u0710 \u0720\u0717 \u0721\u072b\u071f\u0330\u0718\u071a\u0710 \u072b\u072b\u0720\u072c\u0710 \u072c\u0718\u071a\u0721\u072c\u0710", -"Replace": "\u072b\u071a\u0720\u0726", -"Next": "\u0712\u072c\u0742\u072a\u0717", -"Whole words": "\u071f\u0720\u071d\u0717\u071d \u071a\u0712\u072a\u0308\u0710", -"Find and replace": "\u0721\u072b\u071f\u0330\u071a \u0718\u072b\u071a\u0720\u0726", -"Replace with": "\u072b\u071a\u0720\u0726 \u0712\u071d\u0715", -"Find": "\u0721\u072b\u071f\u0330\u071a", -"Replace all": "\u072b\u071a\u0720\u0726 \u071f\u0720\u071d\u0717\u071d", -"Match case": "\u0713\u0718\u072a\u072c\u0710\/\u0719\u0725\u072a\u072c\u0710 ", -"Prev": "\u0715\u0725\u0712\u0742\u072a", -"Spellcheck": "\u0728\u071a\u0728\u071d\u072c\u0710 \u0715\u0717\u0718\u0713\u071d\u0710", -"Finish": "\u0726\u072a\u0729\u0710", -"Ignore all": "\u0710\u0717\u0721\u071d \u071f\u0720\u071d\u0717\u071d", -"Ignore": "Ign\u0725\u0715\u0722\u0710", -"Insert row before": "\u0721\u0725\u0712\u0742\u072a \u0713\u0330\u072a\u0713\u0710 \u0721\u0729\u0715\u0747\u0721", -"Rows": "Righe", -"Height": "\u071d\u0721\u071d\u0722\u0710", -"Paste row after": "\u0715\u0712\u072b \u0713\u0330\u072a\u0713\u0710 \u0712\u072c\u072a", -"Alignment": "\u0721\u0713\u0330\u072a\u0713\u0722\u072c\u0710", -"Column group": "\u071f\u0718\u0722\u072b\u0710 \u0715\u0725\u0721\u0718\u0715\u0710", -"Row": "\u0713\u0330\u072a\u0713\u0710", -"Insert column before": "\u0721\u0725\u0712\u0742\u072a \u0725\u0721\u0718\u0715\u0710 \u0721\u0729\u0715\u0721", -"Split cell": "\u0712\u072a\u0712\u0719 \u0720\u0729\u0720\u071d\u072c\u0710", -"Cell padding": "\u0721\u0720\u071d\u072c\u0710 \u0715\u0729\u0720\u071d\u072c\u0710", -"Cell spacing": "\u0723\u0726\u071d\u0729\u0718\u072c\u0710 \u0715\u0729\u0720\u071d\u072c\u0710", -"Row type": "\u0710\u0715\u072b\u0710 \u0715\u0713\u0330\u072a\u0713\u0710", -"Insert table": "\u0721\u0725\u0712\u0742\u072a \u0720\u071b\u0712\u0720\u0710", -"Body": "\u0726\u0713\u073c\u072a\u0735\u0710", -"Caption": "\u0712\u072a\u072b\u0721\u0710", -"Footer": "\u0710\u0729\u0726\u072c\u0742\u0710", -"Delete row": "\u072b\u0718\u0726 \u0720\u0713\u0330\u072a\u0713\u0710", -"Paste row before": "\u0715\u0712\u072b \u0713\u0330\u072a\u0713\u0710 \u0721\u0729\u0715\u0721", -"Scope": "\u071a\u0729\u0720\u0710", -"Delete table": "\u072b\u0718\u0726 \u0720\u071b\u0712\u0720\u0710", -"Header cell": "\u0729\u0720\u071d\u072c\u0710 \u0715\u072a\u072b\u0710", -"Column": "\u0725\u0721\u0718\u0715\u0710", -"Cell": "\u0729\u0720\u071d\u072c\u0710", -"Header": "\u072a\u072b\u0710", -"Cell type": "\u0710\u0715\u072b\u0710 \u0715\u0729\u0720\u071d\u072c\u0710", -"Copy row": "\u0722\u0723\u0718\u071f\u0742 \u0713\u0330\u072a\u0713\u0710", -"Row properties": "\u0715\u071d\u0720\u071d\u072c\u0308\u0710 \u0715\u0713\u072a\u0713\u0710", -"Table properties": "\u0715\u071d\u0720\u071d\u072c\u0308\u0710 \u0715\u071b\u0712\u0720\u0710", -"Row group": "\u071f\u0718\u0722\u072b\u0710 \u0715\u0713\u0330\u072a\u0713\u0710", -"Right": "\u071d\u0721\u071d\u0722\u0710", -"Insert column after": "\u0721\u0725\u0712\u0742\u072a \u0725\u0721\u0718\u0715\u0710 \u0712\u072c\u072a", -"Cols": "\u0725\u0721\u0718\u0715\u0308\u0710", -"Insert row after": "\u0721\u0725\u0712\u0742\u072a \u0713\u0330\u072a\u0713\u0710 \u0712\u072c\u072a", -"Width": "\u0726\u072c\u0742\u071d\u0718\u072c\u0742\u0710", -"Cell properties": "\u0715\u071d\u0720\u071d\u072c\u0308\u0710 \u0715\u0729\u0720\u071d\u072c\u0710", -"Left": "\u0723\u0721\u0720\u0710", -"Cut row": "\u0729\u0718\u0728 \u0713\u0330\u072a\u0713\u0710", -"Delete column": "\u072b\u0718\u0726 \u0725\u0721\u0718\u0715\u0710", -"Center": "\u0726\u0720\u0713\u0710", -"Merge cells": "\u071a\u071d\u0715 \u0729\u0720\u071d\u072c\u0308\u0710", -"Insert template": "\u0721\u0725\u0712\u0742\u072a \u0729\u0720\u0712\u0742\u0710", -"Templates": "\u0729\u0720\u0712\u0742\u0710", -"Background color": "\u0713\u0718\u0722\u0710 \u0715\u0712\u072c\u072a\u071d\u0718\u072c\u0710", -"Text color": "\u0713\u0718\u0722\u0710 \u0715\u0728\u071a\u071a\u0710", -"Show blocks": "\u0721\u071a\u0719\u071d \u0720\u0713\u0718\u072b\u0721\u0710", -"Show invisible characters": "\u0721\u071a\u0719\u071d \u0720\u0710\u072c\u0718\u072c\u0308\u0710 \u0720\u0710 \u0721\u072c\u071a\u0719\u071d\u0722\u0308\u0710", -"Words: {0}": "{0} :\u071a\u0712\u072a\u0308\u0710", -"Insert": "\u0721\u0725\u0712\u0742\u072a", -"File": "\u071f\u0722\u0726\u072a\u0710", -"Edit": "\u0723\u071d\u0721\u072c\u0710", -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\u0729\u0710 \u0719\u0718\u0720\u0721\u0710\u0722\u0710 \u0729\u0710 \u0725\u0718\u0715\u072a\u0722\u0710 ALT-F10 \u0729\u0710 \u0720\u0718\u071a\u071d\u072c\u0710. \u0715\u0718\u072b ALT-F9 \u0715\u0718\u072b .Rich Text Area \u0726\u0722\u071d\u072c\u0710 \u0715", -"Tools": "\u0719\u0718\u0720\u0721\u0710\u0722\u0710", -"View": "\u071a\u0719\u071d\u072c\u0710", -"Table": "\u071b\u0712\u0720\u0710", -"Format": "\u0710\u0723\u071f\u071d\u0721\u0710", -"Inline": "\u0725\u0720 \u0713\u0330\u072a\u0713\u0710", -"Blocks": "\u0713\u0718\u072b\u0721\u0710", -"Edit image": "\u0723\u071d\u0721\u072c\u0710 \u0715\u0728\u0718\u072a\u072c\u0710", -"Font Family": "\u071f\u0720\u0726\u072c \u0715\u0726\u032e\u0718\u0722\u072c", -"Font Sizes": "\u072a\u0308\u0712\u0718\u072c\u0710 \u0715\u0726\u032e\u0718\u0722\u072c", -"Paragraph": "\u0726\u072c\u0742\u0713\u073c\u0721\u0710", -"Address": "\u0721\u0718\u0722\u0725\u0710", -"Pre": "\u0721\u072c\u0729\u0720\u0712\u0742\u0722\u0718\u072c\u0710 \u0729\u0715\u0747\u0721\u072c\u0710", -"Code": "\u071f\u0718\u0715\u0710", -"Headers": "\u072a\u0308\u072b\u0722\u0710", -"Header 1": "\u072a\u072b\u0710 1", -"Header 2": "\u072a\u072b\u0710 2", -"Header 3": "\u072a\u072b\u0710 3", -"Header 4": "\u072a\u072b\u0710 4", -"Header 5": "\u072a\u072b\u0710 5", -"Header 6": "\u072a\u072b\u0710 6", -"Insert Time": "\u0721\u0725\u0712\u0742\u072a \u0725\u0715\u0722\u0710", -"Insert nonbreaking space": "\u0721\u0725\u0712\u0742\u072a \u0723\u0726\u071d\u0729\u0718\u072c\u0710 \u0720\u0710 \u072c\u0712\u0742\u071d\u072a\u072c\u0710", -"Toggle blockquote": "\u072b\u071a\u0720\u0726 \u0720\u0713\u0718\u072b\u0721\u072c\u0742 \u072b\u0729\u0720\u072c\u0710", -"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "http:\/\/ prefix? \u0715\u0721\u0718\u0725\u0712\u0742\u072a\u0718\u071f\u0742 \u0721\u0712\u071d\u0718\u0722\u0710 \u071d\u0720\u0717 \u0715\u0717\u0307\u0718 \u071a\u0715 \u0710\u0723\u072a\u0710 \u0712\u072a\u071d\u0710 \u071d\u0720\u0717. \u0712\u0725\u072c \u072c\u0718\u0723\u0726\u072c URL", -"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "mailto: prefix? \u0715\u0721\u0718\u0725\u0712\u0742\u072a\u0718\u071f\u073c \u0721\u0712\u071d\u0718\u0722\u0710 \u071d\u0720\u0717 \u0715\u0717\u0307\u0718 \u071d\u0720\u0717 \u0721\u0718\u0722\u0725\u0710 \u0715\u0712\u071d\u0720\u0715\u072a\u0710 \u0710\u0720\u071f\u072c\u072a\u0718\u0722\u071d\u0710. \u0712\u0725\u072c \u072c\u0718\u0723\u0726\u072c \u0720\u071b\u0720\u0712\u072c\u0710 URL", -"_dir": "rtl" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/ta.es5.js b/build/media_source/vendor/tinymce/langs/ta.es5.js deleted file mode 100644 index 31ff4c769925d..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ta.es5.js +++ /dev/null @@ -1,462 +0,0 @@ -tinymce.addI18n('ta',{ -"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Undo": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0ba4\u0bb5\u0bbf\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd", -"Ok": "\u0b9a\u0bb0\u0bbf", -"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd", -"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1", -"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", -"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", -"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95", -"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95", -"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95", -"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"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.", -"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", -"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", -"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", -"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", -"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", -"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", -"Preformatted": "\u0bae\u0bc1\u0ba9\u0bcd\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", -"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)", -"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)", -"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", -"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd", -"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd", -"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.", -"Fonts": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", -"Class": "Class", -"Browse for an image": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb2\u0bbe\u0bb5\u0bc1\u0b95", -"OR": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1", -"Drop an image here": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0b99\u0bcd\u0b95\u0bc1 \u0b87\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd \u0baa\u0bcb\u0b9f\u0bb5\u0bc1\u0bae\u0bcd", -"Upload": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Block": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf", -"Align": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", -"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", -"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1", -"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd", -"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", -"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", -"Anchor...": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd...", -"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd", -"Id": "Id", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0b86\u0ba9\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd; \u0b87\u0ba4\u0ba9\u0bc8\u0ba4\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd, \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd, \u0b87\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (-), \u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (.), \u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0bb1\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (:) \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (_) \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\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 \u0b89\u0bb0\u0bc1...", -"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", -"Insert\/Edit code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Language": "\u0bae\u0bca\u0bb4\u0bbf", -"Code sample...": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf...", -"Color Picker": "\u0ba8\u0bbf\u0bb1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1", -"R": "R", -"G": "G", -"B": "B", -"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd", -"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd", -"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Metadata and Document Properties": "\u0bae\u0bc0\u0ba4\u0bcd\u0ba4\u0bb0\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b86\u0bb5\u0ba3\u0baa\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", -"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)", -"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd", -"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8", -"Action": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd", -"Shortcut": "\u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf", -"Help": "\u0b89\u0ba4\u0bb5\u0bbf", -"Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", -"Focus to menubar": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Focus to toolbar": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Focus to element path": "\u0bae\u0bc2\u0bb2\u0b95\u0baa\u0bcd \u0baa\u0bbe\u0ba4\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Focus to contextual toolbar": "\u0b9a\u0bc2\u0bb4\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Insert link (if link plugin activated)": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95 (\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", -"Save (if save plugin activated)": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 (\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", -"Find (if searchreplace plugin activated)": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 (\u0ba4\u0bc7\u0b9f\u0bbf\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", -"Plugins installed ({0}):": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd ({0}):", -"Premium plugins:": "\u0b89\u0baf\u0bb0\u0bcd\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd:", -"Learn more...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0b85\u0bb1\u0bbf\u0b95...", -"You are using {0}": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 {0}", -"Plugins": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd", -"Handy Shortcuts": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bcd", -"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1", -"Insert\/edit image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Alternative description": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Accessibility": "\u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bcd\u0ba4\u0ba9\u0bcd\u0bae\u0bc8", -"Image is decorative": "\u0baa\u0b9f\u0bae\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bc1", -"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"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", -"General": "\u0baa\u0bca\u0ba4\u0bc1", -"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", -"Style": "\u0baa\u0bbe\u0ba3\u0bbf", -"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Border": "\u0b95\u0bb0\u0bc8", -"Insert image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Image...": "\u0baa\u0b9f\u0bae\u0bcd...", -"Image list": "\u0baa\u0b9f\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", -"Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", -"Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", -"Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", -"Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1", -"Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", -"Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", -"Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1", -"Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1", -"Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1", -"Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1", -"Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1", -"Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", -"Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd", -"Gamma": "Gamma", -"Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1", -"Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Back": "\u0baa\u0bbf\u0ba9\u0bcd", -"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd", -"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"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", -"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", -"Open link in...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b87\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95...", -"Current window": "\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", -"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", -"Open link": "\u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Link...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1...", -"Paste or type a link": "\u0b92\u0bb0\u0bc1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0b9f\u0bcd\u0b9f\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", -"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?", -"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?", -"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ 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 https:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8 (prefix) \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe?", -"Link list": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Insert\/edit media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd", -"Alternative source URL": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2 \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", -"Media poster (Image URL)": "\u0b8a\u0b9f\u0b95 \u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf (\u0b89\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf)", -"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:", -"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf", -"Media...": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd...", -"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", -"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Previous": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", -"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4", -"Find and Replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Find and replace...": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\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", -"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Find whole words only": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"Find in selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bbf\u0bb2\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", -"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", -"Spellcheck Language": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bca\u0bb4\u0bbf", -"No misspellings found.": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0bbe\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.", -"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\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", -"Finish": "\u0bae\u0bc1\u0b9f\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 table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", -"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", -"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", -"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", -"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd", -"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd", -"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", -"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd", -"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Show caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", -"Left": "\u0b87\u0b9f\u0bae\u0bcd", -"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd", -"Right": "\u0bb5\u0bb2\u0bae\u0bcd", -"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8", -"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8", -"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", -"H Align": "\u0b95\u0bbf (H) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"V Align": "\u0b9a\u0bc6 (V) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", -"Top": "\u0bae\u0bc7\u0bb2\u0bcd", -"Middle": "\u0ba8\u0b9f\u0bc1", -"Bottom": "\u0b95\u0bc0\u0bb4\u0bcd", -"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", -"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", -"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8", -"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Body": "\u0b89\u0b9f\u0bb2\u0bcd", -"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Insert template...": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95...", -"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1", -"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\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", -"Remove color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Table of Contents": "\u0baa\u0bca\u0bb0\u0bc1\u0bb3\u0b9f\u0b95\u0bcd\u0b95\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", -"Word count": "\u0b9a\u0bca\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", -"Count": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", -"Document": "\u0b86\u0bb5\u0ba3\u0bae\u0bcd", -"Selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1", -"Words": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}", -"{0} words": "{0} \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1", -"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", -"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd", -"Powered by {0}": "\u0bb5\u0bb2\u0bc1\u0bb5\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 {0}", -"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", -"Image title": "\u0baa\u0b9f\u0ba4\u0bcd \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Border width": "\u0b95\u0bb0\u0bc8 \u0b85\u0b95\u0bb2\u0bae\u0bcd", -"Border style": "\u0b95\u0bb0\u0bc8 \u0baa\u0bbe\u0ba3\u0bbf", -"Error": "\u0baa\u0bbf\u0bb4\u0bc8", -"Warn": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95", -"Valid": "\u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0ba4\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0ba4\u0bc1", -"To open the popup, press Shift+Enter": "\u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1-\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 Shift+Enter", -"Rich Text Area. Press ALT-0 for help.": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", -"System Font": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", -"Failed to upload image: {0}": "\u0baa\u0b9f\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", -"Failed to load plugin: {0} from url {1}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0} - {1} \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1", -"Failed to load plugin url: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", -"Failed to initialize plugin: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0ba4\u0bc1\u0bb5\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", -"example": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bcd", -"Search": "\u0ba4\u0bc7\u0b9f\u0bc1\u0b95", -"All": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd", -"Currency": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf (Currency)", -"Text": "\u0b89\u0bb0\u0bc8", -"Quotations": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd\u0b95\u0bb3\u0bcd", -"Mathematical": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb2\u0bcd", -"Extended Latin": "\u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b87\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0ba9\u0bcd", -"Symbols": "\u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bb3\u0bcd", -"Arrows": "\u0b85\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"User Defined": "\u0baa\u0baf\u0ba9\u0bb0\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4", -"dollar sign": "dollar \u0b95\u0bc1\u0bb1\u0bbf", -"currency sign": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf\u0b95\u0bcd \u0b95\u0bc1\u0bb1\u0bbf", -"euro-currency sign": "euro-currency \u0b95\u0bc1\u0bb1\u0bbf", -"colon sign": "colon \u0b95\u0bc1\u0bb1\u0bbf", -"cruzeiro sign": "cruzeiro \u0b95\u0bc1\u0bb1\u0bbf", -"french franc sign": "french franc \u0b95\u0bc1\u0bb1\u0bbf", -"lira sign": "lira \u0b95\u0bc1\u0bb1\u0bbf", -"mill sign": "mill \u0b95\u0bc1\u0bb1\u0bbf", -"naira sign": "naira \u0b95\u0bc1\u0bb1\u0bbf", -"peseta sign": "peseta \u0b95\u0bc1\u0bb1\u0bbf", -"rupee sign": "rupee \u0b95\u0bc1\u0bb1\u0bbf", -"won sign": "won \u0b95\u0bc1\u0bb1\u0bbf", -"new sheqel sign": "new sheqel \u0b95\u0bc1\u0bb1\u0bbf", -"dong sign": "dong \u0b95\u0bc1\u0bb1\u0bbf", -"kip sign": "kip \u0b95\u0bc1\u0bb1\u0bbf", -"tugrik sign": "tugrik \u0b95\u0bc1\u0bb1\u0bbf", -"drachma sign": "drachma \u0b95\u0bc1\u0bb1\u0bbf", -"german penny symbol": "german penny \u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf", -"peso sign": "peso \u0b95\u0bc1\u0bb1\u0bbf", -"guarani sign": "guarani \u0b95\u0bc1\u0bb1\u0bbf", -"austral sign": "austral \u0b95\u0bc1\u0bb1\u0bbf", -"hryvnia sign": "hryvnia \u0b95\u0bc1\u0bb1\u0bbf", -"cedi sign": "cedi \u0b95\u0bc1\u0bb1\u0bbf", -"livre tournois sign": "livre tournois \u0b95\u0bc1\u0bb1\u0bbf", -"spesmilo sign": "spesmilo \u0b95\u0bc1\u0bb1\u0bbf", -"tenge sign": "tenge \u0b95\u0bc1\u0bb1\u0bbf", -"indian rupee sign": "indian rupee \u0b95\u0bc1\u0bb1\u0bbf", -"turkish lira sign": "turkish lira \u0b95\u0bc1\u0bb1\u0bbf", -"nordic mark sign": "nordic mark \u0b95\u0bc1\u0bb1\u0bbf", -"manat sign": "manat \u0b95\u0bc1\u0bb1\u0bbf", -"ruble sign": "ruble \u0b95\u0bc1\u0bb1\u0bbf", -"yen character": "yen \u0b89\u0bb0\u0bc1", -"yuan character": "yuan \u0b89\u0bb0\u0bc1", -"yuan character, in hong kong and taiwan": "yuan \u0b89\u0bb0\u0bc1, \u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bbe\u0baf\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd \u0b87\u0bb2\u0bcd", -"yen\/yuan character variant one": "yen\/yuan \u0b89\u0bb0\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", -"Loading emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8f\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba9...", -"Could not load emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", -"People": "\u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Animals and Nature": "\u0bae\u0bbf\u0bb0\u0bc1\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0baf\u0bb1\u0bcd\u0b95\u0bc8", -"Food and Drink": "\u0b89\u0ba3\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0ba9\u0bae\u0bcd", -"Activity": "\u0b9a\u0bc6\u0baf\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", -"Travel and Places": "\u0baa\u0baf\u0ba3\u0bae\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Objects": "\u0baa\u0bca\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd", -"Flags": "\u0b95\u0bca\u0b9f\u0bbf\u0b95\u0bb3\u0bcd", -"Characters": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Characters (no spaces)": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd (\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf\u0b95\u0bb3\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8)", -"{0} characters": "{0} \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", -"Error: Form submit field collision.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bcb\u0ba4\u0bb2\u0bcd.", -"Error: No form element found.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0b95\u0bae\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.", -"Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95", -"Color swatch": "\u0ba8\u0bbf\u0bb1\u0b9a\u0bcd \u0b9a\u0bcb\u0ba4\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bb2\u0bb5\u0bc8", -"Turquoise": "\u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", -"Green": "\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", -"Blue": "\u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Purple": "\u0b8a\u0ba4\u0bbe", -"Navy Blue": "\u0b95\u0b9f\u0bb1\u0bcd\u0baa\u0b9f\u0bc8 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Dark Turquoise": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", -"Dark Green": "\u0b85\u0b9f\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", -"Medium Blue": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Medium Purple": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b8a\u0ba4\u0bbe", -"Midnight Blue": "\u0ba8\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bb5\u0bc1 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Yellow": "\u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", -"Orange": "\u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", -"Red": "\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", -"Light Gray": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", -"Gray": "\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", -"Dark Yellow": "\u0b85\u0b9f\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", -"Dark Orange": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", -"Dark Red": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", -"Medium Gray": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", -"Dark Gray": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", -"Light Green": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", -"Light Yellow": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", -"Light Red": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd\u00a0\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", -"Light Purple": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", -"Light Blue": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Dark Purple": "\u0b85\u0b9f\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", -"Dark Blue": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", -"Black": "\u0b95\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", -"White": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bc8", -"Switch to or from fullscreen mode": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\/\u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0b95", -"Open help dialog": "\u0b89\u0ba4\u0bb5\u0bbf \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95", -"history": "\u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1", -"styles": "\u0baa\u0bbe\u0ba3\u0bbf\u0b95\u0bb3\u0bcd", -"formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", -"alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", -"indentation": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bcd", -"Font": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", -"Size": "\u0b85\u0bb3\u0bb5\u0bc1", -"More...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd...", -"Select...": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95...", -"Preferences": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd", -"Yes": "\u0b86\u0bae\u0bcd", -"No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8", -"Keyboard Navigation": "\u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0bb5\u0bb4\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", -"Version": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1", -"Code view": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1", -"Open popup menu for split buttons": "\u0baa\u0bbf\u0bb3\u0bb5\u0bc1 \u0baa\u0bca\u0ba4\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95", -"List Properties": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95", -"List properties...": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95..", -"Start list at number": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bc8 \u0b87\u0ba8\u0bcd\u0ba4 \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95\u0bc1\u0b95", -"Line height": "\u0bb5\u0bb0\u0bbf \u0b89\u0baf\u0bb0\u0bae\u0bcd", -"comments": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd", -"Format Painter": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc2\u0b9a\u0bbe\u0bb3\u0ba9\u0bcd", -"Insert\/edit iframe": "iframe \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", -"Capitalization": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"lowercase": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"UPPERCASE": "\u0baa\u0bc7\u0bb0\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", -"Title Case": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd", -"permanent pen": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe", -"Permanent Pen Properties": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Permanent pen properties...": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd...", -"case change": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd", -"page embed": "\u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", -"Advanced sort...": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd...", -"Advanced Sort": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", -"Sort table by column ascending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Sort table by column descending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Sort": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Order": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0bae\u0bc1\u0bb1\u0bc8", -"Sort by": "\u0b87\u0ba4\u0ba9\u0bbe\u0bb2\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", -"Ascending": "\u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd", -"Descending": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd", -"Column {0}": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}", -"Row {0}": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}", -"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...", -"Misspelled word": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb2\u0bcd", -"Suggestions": "\u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd", -"Change": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Finding word suggestions": "\u0b9a\u0bca\u0bb2\u0bcd \u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1", -"Success": "\u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbf", -"Repair": "\u0b9a\u0bb0\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", -"Issue {0} of {1}": "\u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 {0} \/ {1}", -"Images must be marked as decorative or have an alternative text description": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0b95 \u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd", -"Images must have an alternative text description. Decorative images are not allowed.": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0baa\u0bcd \u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b85\u0ba9\u0bc1\u0bae\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.", -"Or provide alternative text:": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bc8 \u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd", -"Make image decorative:": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"ID attribute must be unique": "ID \u0baa\u0ba3\u0bcd\u0baa\u0bc1 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd", -"Make ID unique": "ID-\u0baf\u0bc8 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95", -"Keep this ID and remove all others": "\u0b87\u0ba8\u0bcd\u0ba4 ID-\u0baf\u0bc8 \u0bb5\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd", -"Remove this ID": "\u0b87\u0ba8\u0bcd\u0ba4 ID \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Remove all IDs": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 ID-\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Checklist": "\u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", -"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd", -"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", -"Code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf", -"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd", -"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", -"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", -"Image": "\u0baa\u0b9f\u0bae\u0bcd", -"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", -"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1", -"Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1", -"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf", -"Media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd", -"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", -"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", -"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", -"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", -"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95" -}); \ No newline at end of file diff --git a/build/media_source/vendor/tinymce/langs/th.es5.js b/build/media_source/vendor/tinymce/langs/th.es5.js deleted file mode 100644 index 15bfa20162fe9..0000000000000 --- a/build/media_source/vendor/tinymce/langs/th.es5.js +++ /dev/null @@ -1,230 +0,0 @@ -tinymce.addI18n('th',{ -"Cut": "\u0e15\u0e31\u0e14", -"Heading 5": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 5", -"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", -"Heading 4": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 4", -"Div": "Div", -"Heading 2": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 2", -"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", -"Heading 1": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 1", -"Headings": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", -"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", -"Heading 6": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 6", -"Heading 3": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 3", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0e04\u0e27\u0e23\u0e08\u0e30\u0e02\u0e36\u0e49\u0e19\u0e15\u0e49\u0e19\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e32\u0e21\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e31\u0e27\u0e40\u0e25\u0e02 \u0e02\u0e35\u0e14\u0e01\u0e25\u0e32\u0e07 \u0e08\u0e38\u0e14 \u0e2d\u0e31\u0e12\u0e20\u0e32\u0e04 \u0e2b\u0e23\u0e37\u0e2d \u0e02\u0e35\u0e14\u0e25\u0e48\u0e32\u0e07", -"Name": "\u0e0a\u0e37\u0e48\u0e2d", -"Anchor": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14", -"Id": "Id", -"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", -"Language": "\u0e20\u0e32\u0e29\u0e32", -"Insert\/Edit code sample": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14", -"B": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19", -"R": "\u0e41\u0e14\u0e07", -"G": "\u0e40\u0e02\u0e35\u0e22\u0e27", -"Color": "\u0e2a\u0e35", -"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", -"Image": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", -"Zoom in": "\u0e02\u0e22\u0e32\u0e22\u0e40\u0e02\u0e49\u0e32", -"Contrast": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e23\u0e35\u0e22\u0e1a\u0e15\u0e48\u0e32\u0e07", -"Back": "\u0e01\u0e25\u0e31\u0e1a", -"Gamma": "\u0e41\u0e01\u0e21\u0e21\u0e32", -"Flip horizontally": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", -"Resize": "\u0e1b\u0e23\u0e31\u0e1a\u0e02\u0e19\u0e32\u0e14", -"Sharpen": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e21", -"Zoom out": "\u0e22\u0e48\u0e2d\u0e2d\u0e2d\u0e01", -"Image options": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", -"Apply": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49", -"Brightness": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e27\u0e48\u0e32\u0e07", -"Rotate clockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e15\u0e32\u0e21\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32", -"Rotate counterclockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e17\u0e27\u0e19\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32", -"Edit image": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b", -"Color levels": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e35", -"Crop": "\u0e04\u0e23\u0e2d\u0e1b\u0e15\u0e31\u0e14", -"Orientation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e27\u0e32\u0e07", -"Flip vertically": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", -"Invert": "\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", -"Date\/time": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32", -"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", -"Link": "\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?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 http:\/\/ \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48", -"Paste or type a link": "\u0e27\u0e32\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e49\u0e2d\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c", -"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?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e2d\u0e14\u0e40\u0e14\u0e23\u0e2a \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 mailto: \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48", -"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", -"Media": "\u0e2a\u0e37\u0e48\u0e2d", -"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", -"Poster": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c", -"Insert\/edit media": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e37\u0e48\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", -"Add to Dictionary": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e1e\u0e08\u0e19\u0e32\u0e19\u0e38\u0e01\u0e23\u0e21", -"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", -"Border color": "\u0e2a\u0e35\u0e02\u0e2d\u0e1a", -"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", -"H Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", -"Top": "\u0e1a\u0e19", -"Header cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", -"Column": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", -"Row group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e41\u0e16\u0e27", -"Cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c", -"Middle": "\u0e01\u0e25\u0e32\u0e07", -"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", -"Bottom": "\u0e25\u0e48\u0e32\u0e07", -"V Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", -"Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\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", -"Custom...": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", -"Custom color": "\u0e2a\u0e35\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", -"No color": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2a\u0e35", -"Text color": "\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", -"Table of Contents": "\u0e2a\u0e32\u0e23\u0e1a\u0e31\u0e0d", -"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/build/media_source/vendor/tinymce/langs/tr.es5.js b/build/media_source/vendor/tinymce/langs/tr.es5.js deleted file mode 100644 index c512410482a7d..0000000000000 --- a/build/media_source/vendor/tinymce/langs/tr.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('tr',{ -"Cut": "Kes", -"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.", -"Div": "Div", -"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", -"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", -"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?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", -"Target": "Hedef", -"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": "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", -"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", -"Header cell": "Ba\u015fl\u0131k h\u00fccresi", -"Column": "S\u00fctun", -"Cell": "H\u00fccre", -"Header": "Ba\u015fl\u0131k", -"Cell type": "H\u00fccre tipi", -"Copy row": "Sat\u0131r\u0131 kopyala", -"Row properties": "Sat\u0131r \u00f6zellikleri", -"Table properties": "Tablo \u00f6zellikleri", -"Row group": "Sat\u0131r grubu", -"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/build/media_source/vendor/tinymce/langs/ug.es5.js b/build/media_source/vendor/tinymce/langs/ug.es5.js deleted file mode 100644 index 8cd3cbeed88a4..0000000000000 --- a/build/media_source/vendor/tinymce/langs/ug.es5.js +++ /dev/null @@ -1,179 +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", -"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", -"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", -"Header cell": "\u0628\u0627\u0634 \u0643\u0627\u062a\u06d5\u0643", -"Column": "\u0631\u06d5\u062a", -"Cell": "\u0643\u0627\u062a\u06d5\u0643", -"Header": "\u0628\u06d0\u0634\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", -"Row group": "\u0642\u06c7\u0631 \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\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", -"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/build/media_source/vendor/tinymce/langs/uk.es5.js b/build/media_source/vendor/tinymce/langs/uk.es5.js deleted file mode 100644 index fce3eb386d4a1..0000000000000 --- a/build/media_source/vendor/tinymce/langs/uk.es5.js +++ /dev/null @@ -1,230 +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": "Headers", -"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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u041a\u043e\u0434 \u043c\u0430\u0454 \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u043b\u0456\u0442\u0435\u0440\u0438 \u0456 \u043c\u043e\u0436\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043b\u0438\u0448\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 \u043b\u0456\u0442\u0435\u0440, \u0446\u0438\u0444\u0440, \u0434\u0435\u0444\u0456\u0441\u0443, \u043a\u0440\u0430\u043f\u043a\u0438, \u043a\u043e\u043c\u0438 \u0430\u0431\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u0433\u043e \u043f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f.", -"Name": "\u041d\u0430\u0437\u0432\u0430", -"Anchor": "\u042f\u043a\u0456\u0440", -"Id": "\u041a\u043e\u0434", -"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", -"Language": "\u041c\u043e\u0432\u0430", -"Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Zoom in": "\u041d\u0430\u0431\u043b\u0438\u0437\u0438\u0442\u0438", -"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", -"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f", -"Gamma": "\u0413\u0430\u043c\u043c\u0430", -"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456", -"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440", -"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c", -"Zoom out": "\u0412\u0456\u0434\u0434\u0430\u043b\u0438\u0442\u0438", -"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438", -"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c", -"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e", -"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438", -"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432", -"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438", -"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f", -"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456", -"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f", -"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441", -"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", -"Link": "\u041f\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?", -"Paste or type a link": "\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0430\u0431\u043e \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", -"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", -"Media": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456", -"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e", -"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", -"Poster": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", -"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0430\u0443\u0434\u0456\u043e", -"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", -"Table of Contents": "\u0417\u043c\u0456\u0441\u0442", -"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438", -"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", -"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" -}); diff --git a/build/media_source/vendor/tinymce/langs/vi.es5.js b/build/media_source/vendor/tinymce/langs/vi.es5.js deleted file mode 100644 index fb7668bd82cdc..0000000000000 --- a/build/media_source/vendor/tinymce/langs/vi.es5.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": "Name", -"Anchor": "Anchor", -"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": "Special character", -"Source code": "M\u00e3 ngu\u1ed3n", -"Right to left": "Right to left", -"Left to right": "Left to right", -"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": "Fullscreen", -"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": "Insert date\/time", -"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/build/media_source/vendor/tinymce/langs/zh-CN.es5.js b/build/media_source/vendor/tinymce/langs/zh-CN.es5.js deleted file mode 100644 index 130e3d10e114b..0000000000000 --- a/build/media_source/vendor/tinymce/langs/zh-CN.es5.js +++ /dev/null @@ -1,230 +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", -"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002", -"Name": "\u540d\u79f0", -"Anchor": "\u951a\u70b9", -"Id": "\u6807\u8bc6\u7b26", -"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", -"Language": "\u8bed\u8a00", -"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b", -"B": "B", -"R": "R", -"G": "G", -"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", -"Image": "\u56fe\u7247", -"Zoom in": "\u653e\u5927", -"Contrast": "\u5bf9\u6bd4\u5ea6", -"Back": "\u540e\u9000", -"Gamma": "\u4f3d\u9a6c\u503c", -"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c", -"Resize": "\u8c03\u6574\u5927\u5c0f", -"Sharpen": "\u9510\u5316", -"Zoom out": "\u7f29\u5c0f", -"Image options": "\u56fe\u7247\u9009\u9879", -"Apply": "\u5e94\u7528", -"Brightness": "\u4eae\u5ea6", -"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c", -"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c", -"Edit image": "\u7f16\u8f91\u56fe\u7247", -"Color levels": "\u989c\u8272\u5c42\u6b21", -"Crop": "\u88c1\u526a", -"Orientation": "\u65b9\u5411", -"Flip vertically": "\u5782\u76f4\u7ffb\u8f6c", -"Invert": "\u53cd\u8f6c", -"Date\/time": "\u65e5\u671f\/\u65f6\u95f4", -"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", -"Link": "\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", -"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5", -"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\u4e3a\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", -"Media": "\u5a92\u4f53", -"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", -"Poster": "\u5c01\u9762", -"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53", -"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", -"Table of Contents": "\u5185\u5bb9\u5217\u8868", -"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/build/media_source/vendor/tinymce/langs/zh-TW.es5.js b/build/media_source/vendor/tinymce/langs/zh-TW.es5.js deleted file mode 100644 index 2468e57123480..0000000000000 --- a/build/media_source/vendor/tinymce/langs/zh-TW.es5.js +++ /dev/null @@ -1,179 +0,0 @@ -tinymce.addI18n('zh-TW',{ -"Cut": "\u526a\u4e0b", -"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", -"Div": "Div", -"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", -"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", -"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/package-lock.json b/package-lock.json index 36f76970fc4ad..59c2c17d686a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "joomla", - "version": "5.4.0", + "version": "6.0.0", "hasInstallScript": true, "license": "GPL-2.0-or-later", "dependencies": { @@ -54,7 +54,8 @@ "shepherd.js": "^11.2.0", "short-and-sweet": "^1.0.4", "skipto": "^4.1.7", - "tinymce": "^6.8.6", + "tinymce": "^8.0.1", + "tinymce-i18n": "^25.8.4", "vue": "^3.5.18", "vue-focus-lock": "^2.0.7", "vuex": "^4.1.0", @@ -11199,10 +11200,14 @@ "license": "MIT" }, "node_modules/tinymce": { - "version": "6.8.6", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.8.6.tgz", - "integrity": "sha512-++XYEs8lKWvZxDCjrr8Baiw7KiikraZ5JkLMg6EdnUVNKJui0IsrAADj5MsyUeFkcEryfn2jd3p09H7REvewyg==", - "license": "MIT" + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-8.0.1.tgz", + "integrity": "sha512-KQ/+KaWmkIzSkNCYmqhXD2mftt+EEhz1bd1QCVopa2DNkoJ/rYFXhMnYGg1gVcRQa43xkmmv0Jj0ph+05VY0hQ==" + }, + "node_modules/tinymce-i18n": { + "version": "25.8.4", + "resolved": "https://registry.npmjs.org/tinymce-i18n/-/tinymce-i18n-25.8.4.tgz", + "integrity": "sha512-7wsQNyPhqa/97/nfzUGqnwlyI9hHi5tEY+RLq+wp3ROG4QBf/fVWtY3u+diuE9LZ12Ev6UakMDrnlh/nKr54iA==" }, "node_modules/tippy.js": { "version": "6.3.7", diff --git a/package.json b/package.json index 189391b1e479e..7ebc6ebf43563 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,8 @@ "shepherd.js": "^11.2.0", "short-and-sweet": "^1.0.4", "skipto": "^4.1.7", - "tinymce": "^6.8.6", + "tinymce": "^8.0.1", + "tinymce-i18n": "^25.8.4", "vue": "^3.5.18", "vue-focus-lock": "^2.0.7", "vuex": "^4.1.0", diff --git a/plugins/editors/tinymce/forms/setoptions.xml b/plugins/editors/tinymce/forms/setoptions.xml index 6585b38905576..6bace1a80bb71 100644 --- a/plugins/editors/tinymce/forms/setoptions.xml +++ b/plugins/editors/tinymce/forms/setoptions.xml @@ -239,6 +239,24 @@ + +
+ + +
+ useScript('plg_editors_tinymce.jtemplate'); $plugins[] = 'jtemplate'; @@ -431,6 +431,21 @@ public function prepareTinyMCEUploadPath(string $path): string } } + // Add the current domain to the sandbox_iframes_exclusions list + $sandboxIframesExclusions = Uri::getInstance()->getHost(); + + // Build the list of additional domains to add to the sandbox_iframes_exclusions list + if (isset($extraOptions->sandbox_iframes_exclusions) && $extraOptions->sandbox_iframes_exclusions) { + $exclusionsArray = []; + foreach ($extraOptions->sandbox_iframes_exclusions as $value) { + if (isset($value->exclusion_domain)) { + $exclusionsArray[] = $value->exclusion_domain; + } + } + // Join the URLs into a comma-separated string and add to the sandbox_iframes_exclusions list + $sandboxIframesExclusions .= ', ' . implode(', ', $exclusionsArray); + } + // Build the final options set $scriptOptions = array_merge( $scriptOptions, @@ -506,10 +521,13 @@ public function prepareTinyMCEUploadPath(string $path): string 'branding' => false, 'promotion' => false, + // Set License + 'license_key' => 'gpl', + // Hardened security - // @todo enable with TinyMCE 7 using https://www.tiny.cloud/docs/tinymce/latest/content-filtering/#sandbox-iframes-exclusions otherwise all embed PDFs are broken - 'sandbox_iframes' => (bool) $levelParams->get('sandbox_iframes', true), - 'convert_unsafe_embeds' => true, + 'sandbox_iframes' => (bool) $levelParams->get('sandbox_iframes', true), + 'sandbox_iframes_exclusions' => $sandboxIframesExclusions, + 'convert_unsafe_embeds' => true, // Specify the attributes to be used when previewing a style. This prevents white text on a white background making the preview invisible. 'preview_styles' => 'font-family font-size font-weight font-style text-decoration text-transform background-color border border-radius outline text-shadow', diff --git a/plugins/editors/tinymce/tinymce.xml b/plugins/editors/tinymce/tinymce.xml index 6bca2090fb643..693fed75f87bc 100644 --- a/plugins/editors/tinymce/tinymce.xml +++ b/plugins/editors/tinymce/tinymce.xml @@ -1,7 +1,7 @@ plg_editors_tinymce - 6.8.6 + 8.0.1 2005-08 Tiny Technologies, Inc N/A From c4eba010d560fb062870daf6052bb60cf0cd18e6 Mon Sep 17 00:00:00 2001 From: Richard Fath Date: Thu, 14 Aug 2025 09:42:46 +0200 Subject: [PATCH 172/279] [6.0] Update deleted files and folders in script.php for the upcoming 6.0.0-beta1 (#45849) --- administrator/components/com_admin/script.php | 154 +++++++++++++++++- 1 file changed, 151 insertions(+), 3 deletions(-) diff --git a/administrator/components/com_admin/script.php b/administrator/components/com_admin/script.php index 15a5f56a2953d..7a4609fef611a 100644 --- a/administrator/components/com_admin/script.php +++ b/administrator/components/com_admin/script.php @@ -452,6 +452,7 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/administrator/components/com_admin/sql/updates/mysql/5.3.0-2025-03-14.sql', '/administrator/components/com_admin/sql/updates/mysql/5.4.0-2025-04-23.sql', '/administrator/components/com_admin/sql/updates/mysql/5.4.0-2025-05-10.sql', + '/administrator/components/com_admin/sql/updates/mysql/5.4.0-2025-08-02.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-11.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-03-17.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.0.0-2023-07-12.sql', @@ -488,6 +489,7 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/administrator/components/com_admin/sql/updates/postgresql/5.3.1-2025-04-27.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.4.0-2025-04-23.sql', '/administrator/components/com_admin/sql/updates/postgresql/5.4.0-2025-05-10.sql', + '/administrator/components/com_admin/sql/updates/postgresql/5.4.0-2025-08-02.sql', '/administrator/components/com_content/forms/filter_featured.xml', '/administrator/components/com_content/tmpl/featured/default.php', '/administrator/components/com_content/tmpl/featured/default.xml', @@ -523,9 +525,6 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/libraries/src/Input/Files.php', '/libraries/src/Input/Input.php', '/libraries/src/Input/Json.php', - '/libraries/vendor/algo26-matthias/idna-convert/src/NamePrep/CaseFolding.php', - '/libraries/vendor/algo26-matthias/idna-convert/src/NamePrep/CaseFoldingData.php', - '/libraries/vendor/algo26-matthias/idna-convert/src/NamePrep/CaseFoldingDataInterface.php', '/libraries/vendor/symfony/polyfill-iconv/bootstrap.php', '/libraries/vendor/symfony/polyfill-iconv/bootstrap80.php', '/libraries/vendor/symfony/polyfill-iconv/Iconv.php', @@ -824,6 +823,144 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/media/legacy/js/tabs-state.js', '/media/legacy/js/tabs-state.min.js', '/media/legacy/js/tabs-state.min.js.gz', + // From 6.0.0-alpha2 to 6.0.0-alpha3 + '/administrator/modules/mod_menu/mod_menu.php', + '/modules/mod_random_image/mod_random_image.php', + // From 6.0.0-alpha3 to 6.0.0-beta1 + '/administrator/modules/mod_latest/mod_latest.php', + '/administrator/modules/mod_logged/mod_logged.php', + '/administrator/modules/mod_popular/mod_popular.php', + '/administrator/modules/mod_privacy_dashboard/mod_privacy_dashboard.php', + '/administrator/modules/mod_submenu/mod_submenu.php', + '/libraries/src/Adapter/Adapter.php', + '/libraries/src/Adapter/AdapterInstance.php', + '/libraries/src/MVC/Model/DatabaseAwareTrait.php', + '/libraries/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + '/libraries/vendor/joomla/database/src/Query/LimitableInterface.php', + '/libraries/vendor/joomla/database/src/Query/PreparableInterface.php', + '/libraries/vendor/joomla/string/src/phputf8/LICENSE', + '/libraries/vendor/joomla/string/src/phputf8/mbstring/core.php', + '/libraries/vendor/joomla/string/src/phputf8/native/core.php', + '/libraries/vendor/joomla/string/src/phputf8/ord.php', + '/libraries/vendor/joomla/string/src/phputf8/README', + '/libraries/vendor/joomla/string/src/phputf8/str_ireplace.php', + '/libraries/vendor/joomla/string/src/phputf8/str_pad.php', + '/libraries/vendor/joomla/string/src/phputf8/str_split.php', + '/libraries/vendor/joomla/string/src/phputf8/strcasecmp.php', + '/libraries/vendor/joomla/string/src/phputf8/strcspn.php', + '/libraries/vendor/joomla/string/src/phputf8/stristr.php', + '/libraries/vendor/joomla/string/src/phputf8/strrev.php', + '/libraries/vendor/joomla/string/src/phputf8/strspn.php', + '/libraries/vendor/joomla/string/src/phputf8/substr_replace.php', + '/libraries/vendor/joomla/string/src/phputf8/trim.php', + '/libraries/vendor/joomla/string/src/phputf8/ucfirst.php', + '/libraries/vendor/joomla/string/src/phputf8/ucwords.php', + '/libraries/vendor/joomla/string/src/phputf8/utf8.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/ascii.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/bad.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/patterns.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/position.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/specials.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/unicode.php', + '/libraries/vendor/joomla/string/src/phputf8/utils/validation.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/create_uploaded_file.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/marshal_headers_from_sapi.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/marshal_method_from_sapi.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/marshal_protocol_version_from_sapi.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/marshal_uri_from_sapi.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/marshal_uri_from_sapi.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/normalize_server.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/normalize_uploaded_files.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/functions/parse_cookie_header.legacy.php', + '/libraries/vendor/laminas/laminas-diactoros/src/PhpInputStream.php', + '/libraries/vendor/lcobucci/clock/renovate.json', + '/libraries/vendor/symfony/http-client/Internal/AmpBody.php', + '/libraries/vendor/symfony/http-client/Internal/AmpClientState.php', + '/libraries/vendor/symfony/http-client/Internal/AmpListener.php', + '/libraries/vendor/symfony/http-client/Internal/AmpResolver.php', + '/libraries/vendor/symfony/http-client/Internal/LegacyHttplugInterface.php', + '/libraries/vendor/symfony/http-client/Response/AmpResponse.php', + '/libraries/vendor/symfony/polyfill-php83/bootstrap.php', + '/libraries/vendor/symfony/polyfill-php83/bootstrap81.php', + '/libraries/vendor/symfony/polyfill-php83/LICENSE', + '/libraries/vendor/symfony/polyfill-php83/Php83.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/Override.php', + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php', + '/media/vendor/tinymce/langs/af.js', + '/media/vendor/tinymce/langs/af.min.js', + '/media/vendor/tinymce/langs/af.min.js.gz', + '/media/vendor/tinymce/langs/bg.js', + '/media/vendor/tinymce/langs/bg.min.js', + '/media/vendor/tinymce/langs/bg.min.js.gz', + '/media/vendor/tinymce/langs/bs.js', + '/media/vendor/tinymce/langs/bs.min.js', + '/media/vendor/tinymce/langs/bs.min.js.gz', + '/media/vendor/tinymce/langs/fo.js', + '/media/vendor/tinymce/langs/fo.min.js', + '/media/vendor/tinymce/langs/fo.min.js.gz', + '/media/vendor/tinymce/langs/fr.js', + '/media/vendor/tinymce/langs/fr.min.js', + '/media/vendor/tinymce/langs/fr.min.js.gz', + '/media/vendor/tinymce/langs/he.js', + '/media/vendor/tinymce/langs/he.min.js', + '/media/vendor/tinymce/langs/he.min.js.gz', + '/media/vendor/tinymce/langs/hu.js', + '/media/vendor/tinymce/langs/hu.min.js', + '/media/vendor/tinymce/langs/hu.min.js.gz', + '/media/vendor/tinymce/langs/ka.js', + '/media/vendor/tinymce/langs/ka.min.js', + '/media/vendor/tinymce/langs/ka.min.js.gz', + '/media/vendor/tinymce/langs/km.js', + '/media/vendor/tinymce/langs/km.min.js', + '/media/vendor/tinymce/langs/km.min.js.gz', + '/media/vendor/tinymce/langs/ko.js', + '/media/vendor/tinymce/langs/ko.min.js', + '/media/vendor/tinymce/langs/ko.min.js.gz', + '/media/vendor/tinymce/langs/lb.js', + '/media/vendor/tinymce/langs/lb.min.js', + '/media/vendor/tinymce/langs/lb.min.js.gz', + '/media/vendor/tinymce/langs/mk.js', + '/media/vendor/tinymce/langs/mk.min.js', + '/media/vendor/tinymce/langs/mk.min.js.gz', + '/media/vendor/tinymce/langs/ms.js', + '/media/vendor/tinymce/langs/ms.min.js', + '/media/vendor/tinymce/langs/ms.min.js.gz', + '/media/vendor/tinymce/langs/nb.js', + '/media/vendor/tinymce/langs/nb.min.js', + '/media/vendor/tinymce/langs/nb.min.js.gz', + '/media/vendor/tinymce/langs/readme.md', + '/media/vendor/tinymce/langs/si-LK.js', + '/media/vendor/tinymce/langs/si-LK.min.js', + '/media/vendor/tinymce/langs/si-LK.min.js.gz', + '/media/vendor/tinymce/langs/sl.js', + '/media/vendor/tinymce/langs/sl.min.js', + '/media/vendor/tinymce/langs/sl.min.js.gz', + '/media/vendor/tinymce/langs/sv.js', + '/media/vendor/tinymce/langs/sv.min.js', + '/media/vendor/tinymce/langs/sv.min.js.gz', + '/media/vendor/tinymce/langs/sw.js', + '/media/vendor/tinymce/langs/sw.min.js', + '/media/vendor/tinymce/langs/sw.min.js.gz', + '/media/vendor/tinymce/langs/sy.js', + '/media/vendor/tinymce/langs/sy.min.js', + '/media/vendor/tinymce/langs/sy.min.js.gz', + '/media/vendor/tinymce/langs/th.js', + '/media/vendor/tinymce/langs/th.min.js', + '/media/vendor/tinymce/langs/th.min.js.gz', + '/media/vendor/tinymce/license.txt', + '/modules/mod_finder/mod_finder.php', + '/modules/mod_login/mod_login.php', + '/modules/mod_menu/mod_menu.php', + '/modules/mod_whosonline/mod_whosonline.php', ]; $folders = [ @@ -859,6 +996,17 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) '/libraries/src/Application/CLI', '/administrator/components/com_finder/helpers/indexer', '/administrator/components/com_content/tmpl/featured', + // From 6.0.0-alpha3 to 6.0.0-beta1 + '/libraries/vendor/symfony/polyfill-php83/Resources/stubs', + '/libraries/vendor/symfony/polyfill-php83/Resources', + '/libraries/vendor/symfony/polyfill-php83', + '/libraries/vendor/joomla/string/src/phputf8/utils', + '/libraries/vendor/joomla/string/src/phputf8/native', + '/libraries/vendor/joomla/string/src/phputf8/mbstring', + '/libraries/vendor/joomla/string/src/phputf8', + '/libraries/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector', + '/libraries/vendor/doctrine/inflector/lib/Doctrine/Common', + '/libraries/src/Adapter', ]; $status['files_checked'] = $files; From fbe4f776380eb5a58b7571c7f9270ba0d115b10c Mon Sep 17 00:00:00 2001 From: Martina Scholz <64533137+LadySolveig@users.noreply.github.com> Date: Fri, 15 Aug 2025 04:08:39 +0200 Subject: [PATCH 173/279] [6.0] Update OpenLDAP container image in CI workflow to use own mirror image (#45914) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 594ba1feda7e8..71bdeb849cb4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,7 +140,7 @@ jobs: - name: Start LDAP container uses: docker://docker with: - args: docker run -d --name openldap --network ${{ job.container.network }} --network-alias openldap -e "LDAP_ADMIN_USERNAME=admin" -e "LDAP_ADMIN_PASSWORD=adminpassword" -e "LDAP_USERS=customuser" -e "LDAP_PASSWORDS=custompassword" -e "LDAP_ENABLE_TLS=yes" -e "LDAP_TLS_CERT_FILE=/certs/openldap.crt" -e "LDAP_TLS_KEY_FILE=/certs/openldap.key" -e "LDAP_TLS_CA_FILE=/certs/CA.crt" -e "BITNAMI_DEBUG=true" -e "LDAP_CONFIG_ADMIN_ENABLED=yes" -e "LDAP_CONFIG_ADMIN_USERNAME=admin" -e "LDAP_CONFIG_ADMIN_PASSWORD=configpassword" -v "${{ github.workspace }}/tests/certs/openldap.crt":"/certs/openldap.crt" -v "${{ github.workspace }}/tests/certs/openldap.key":"/certs/openldap.key" -v "${{ github.workspace }}/tests/certs/CA.crt":"/certs/CA.crt" bitnami/openldap:latest + args: docker run -d --name openldap --network ${{ job.container.network }} --network-alias openldap -e "LDAP_ADMIN_USERNAME=admin" -e "LDAP_ADMIN_PASSWORD=adminpassword" -e "LDAP_USERS=customuser" -e "LDAP_PASSWORDS=custompassword" -e "LDAP_ENABLE_TLS=yes" -e "LDAP_TLS_CERT_FILE=/certs/openldap.crt" -e "LDAP_TLS_KEY_FILE=/certs/openldap.key" -e "LDAP_TLS_CA_FILE=/certs/CA.crt" -e "BITNAMI_DEBUG=true" -e "LDAP_CONFIG_ADMIN_ENABLED=yes" -e "LDAP_CONFIG_ADMIN_USERNAME=admin" -e "LDAP_CONFIG_ADMIN_PASSWORD=configpassword" -v "${{ github.workspace }}/tests/certs/openldap.crt":"/certs/openldap.crt" -v "${{ github.workspace }}/tests/certs/openldap.key":"/certs/openldap.key" -v "${{ github.workspace }}/tests/certs/CA.crt":"/certs/CA.crt" ghcr.io/joomla-projects/mirror-bitnami-openldap:latest - uses: actions/cache/restore@v4 with: path: libraries/vendor From a99398f8e0b87420ed5f135db69725af27b66028 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Fri, 15 Aug 2025 17:13:18 +0200 Subject: [PATCH 174/279] [6.0] Deprecate Http CMS package (#45751) * HTTP Response: Moving b/c getter from framework to CMS * Deprecate CMS Http package. Use framework instead * Remove deprecated calls to Http CMS package * Codestyle * More fixes * Revert change --- libraries/src/Http/Http.php | 6 ++- libraries/src/Http/HttpFactory.php | 10 ++++- libraries/src/Http/Response.php | 43 ++++++++++++++++++- .../src/Http/Transport/CurlTransport.php | 14 +++++- .../src/Http/Transport/SocketTransport.php | 16 +++++-- .../src/Http/Transport/StreamTransport.php | 12 +++++- libraries/src/Http/TransportInterface.php | 2 +- 7 files changed, 92 insertions(+), 11 deletions(-) diff --git a/libraries/src/Http/Http.php b/libraries/src/Http/Http.php index a49ba3f8ab9c9..ccf084b7a3574 100644 --- a/libraries/src/Http/Http.php +++ b/libraries/src/Http/Http.php @@ -20,6 +20,8 @@ * HTTP client class. * * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Http instead */ class Http extends FrameworkHttp { @@ -30,8 +32,10 @@ class Http extends FrameworkHttp * these will be added to the request headers. * @param ?FrameworkTransportInterface $transport The HTTP transport object. * - * @since 1.7.3 * @throws \InvalidArgumentException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Http::__construct() instead */ public function __construct($options = [], ?FrameworkTransportInterface $transport = null) { diff --git a/libraries/src/Http/HttpFactory.php b/libraries/src/Http/HttpFactory.php index 7bc49a085969e..721e357f680bb 100644 --- a/libraries/src/Http/HttpFactory.php +++ b/libraries/src/Http/HttpFactory.php @@ -20,6 +20,8 @@ * HTTP factory class. * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\HttpFactory instead */ class HttpFactory { @@ -31,8 +33,10 @@ class HttpFactory * * @return Http * - * @since 3.0.0 * @throws \RuntimeException + * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\HttpFactory::getHttp() instead */ public static function getHttp($options = [], $adapters = null) { @@ -64,6 +68,8 @@ public static function getHttp($options = [], $adapters = null) * @return TransportInterface|boolean Interface sub-class or boolean false if no adapters are available * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\HttpFactory::getAvailableDriver() instead */ public static function getAvailableDriver($options = [], $default = null) { @@ -101,6 +107,8 @@ public static function getAvailableDriver($options = [], $default = null) * @return array An array of available transport handlers * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\HttpFactory::getHttpTransports() instead */ public static function getHttpTransports() { diff --git a/libraries/src/Http/Response.php b/libraries/src/Http/Response.php index 345ee82e2c042..82f9b6975e155 100644 --- a/libraries/src/Http/Response.php +++ b/libraries/src/Http/Response.php @@ -20,9 +20,50 @@ * * @since 1.7.3 * - * @deprecated 4.0 will be removed in 6.0 + * @deprecated 4.0 will be removed in 7.0 * Use Joomla\Http\Response instead */ class Response extends FrameworkResponse { + /** + * Magic getter for backward compatibility with the 1.x Joomla Framework API + * + * @param string $name The variable to return + * + * @return mixed + * + * @since __DEPLOY_VERSION__ + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Access data via the PSR-7 ResponseInterface instead + */ + public function __get($name) + { + switch (strtolower($name)) { + case 'body': + $stream = $this->getBody(); + $stream->rewind(); + return $stream->getContents(); + + case 'code': + return $this->getStatusCode(); + + case 'headers': + return $this->getHeaders(); + + default: + $trace = debug_backtrace(); + + trigger_error( + \sprintf( + 'Undefined property via __get(): %s in %s on line %s', + $name, + $trace[0]['file'], + $trace[0]['line'] + ), + E_USER_NOTICE + ); + + break; + } + } } diff --git a/libraries/src/Http/Transport/CurlTransport.php b/libraries/src/Http/Transport/CurlTransport.php index 137aefca27e6d..846a1cd552672 100644 --- a/libraries/src/Http/Transport/CurlTransport.php +++ b/libraries/src/Http/Transport/CurlTransport.php @@ -27,6 +27,8 @@ * HTTP transport class for using cURL. * * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Curl instead */ class CurlTransport extends AbstractTransport implements TransportInterface { @@ -42,8 +44,10 @@ class CurlTransport extends AbstractTransport implements TransportInterface * * @return Response * - * @since 1.7.3 * @throws \RuntimeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Curl::request() instead */ public function request($method, UriInterface $uri, $data = null, array $headers = [], $timeout = null, $userAgent = null) { @@ -211,8 +215,10 @@ public function request($method, UriInterface $uri, $data = null, array $headers * * @return Response * - * @since 1.7.3 * @throws InvalidResponseCodeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Curl::getResponse() instead */ protected function getResponse($content, $info) { @@ -270,6 +276,8 @@ protected function getResponse($content, $info) * @return boolean true if available, else false * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Curl::isSupported() instead */ public static function isSupported() { @@ -282,6 +290,8 @@ public static function isSupported() * @return boolean * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Curl::redirectsAllowed() instead */ private function redirectsAllowed() { diff --git a/libraries/src/Http/Transport/SocketTransport.php b/libraries/src/Http/Transport/SocketTransport.php index 6f5deab3b784c..5e178b777be6e 100644 --- a/libraries/src/Http/Transport/SocketTransport.php +++ b/libraries/src/Http/Transport/SocketTransport.php @@ -26,6 +26,8 @@ * HTTP transport class for using sockets directly. * * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Socket instead */ class SocketTransport extends AbstractTransport implements TransportInterface { @@ -47,8 +49,10 @@ class SocketTransport extends AbstractTransport implements TransportInterface * * @return Response * - * @since 1.7.3 * @throws \RuntimeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Socket::request() instead */ public function request($method, UriInterface $uri, $data = null, array $headers = [], $timeout = null, $userAgent = null) { @@ -144,8 +148,10 @@ public function request($method, UriInterface $uri, $data = null, array $headers * * @return Response * - * @since 1.7.3 * @throws InvalidResponseCodeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Socket::getResponse() instead */ protected function getResponse($content) { @@ -188,8 +194,10 @@ protected function getResponse($content) * * @return resource Socket connection resource. * - * @since 1.7.3 * @throws \RuntimeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Socket::connect() instead */ protected function connect(UriInterface $uri, $timeout = null) { @@ -270,6 +278,8 @@ protected function connect(UriInterface $uri, $timeout = null) * @return boolean True if available else false * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Socket::isSupported() instead */ public static function isSupported() { diff --git a/libraries/src/Http/Transport/StreamTransport.php b/libraries/src/Http/Transport/StreamTransport.php index 320db7b78268c..e2724f05cccda 100644 --- a/libraries/src/Http/Transport/StreamTransport.php +++ b/libraries/src/Http/Transport/StreamTransport.php @@ -27,6 +27,8 @@ * HTTP transport class for using PHP streams. * * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Stream instead */ class StreamTransport extends AbstractTransport implements TransportInterface { @@ -42,8 +44,10 @@ class StreamTransport extends AbstractTransport implements TransportInterface * * @return Response * - * @since 1.7.3 * @throws \RuntimeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Stream::request() instead */ public function request($method, UriInterface $uri, $data = null, array $headers = [], $timeout = null, $userAgent = null) { @@ -190,8 +194,10 @@ public function request($method, UriInterface $uri, $data = null, array $headers * * @return Response * - * @since 1.7.3 * @throws InvalidResponseCodeException + * @since 1.7.3 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Stream::getResponse() instead */ protected function getResponse(array $headers, $body) { @@ -219,6 +225,8 @@ protected function getResponse(array $headers, $body) * @return boolean true if available else false * * @since 3.0.0 + * @deprecated __DEPLOY_VERSION__ will be removed in 7.0 + * Use Joomla\Http\Transport\Stream::isSupported() instead */ public static function isSupported() { diff --git a/libraries/src/Http/TransportInterface.php b/libraries/src/Http/TransportInterface.php index 4d40986073bcb..c9246ecabb629 100644 --- a/libraries/src/Http/TransportInterface.php +++ b/libraries/src/Http/TransportInterface.php @@ -20,7 +20,7 @@ * * @since 1.7.3 * - * @deprecated 4.0 will be removed in 6.0 + * @deprecated 4.0 will be removed in 7.0 * Implement Joomla\Http\TransportInterface instead */ interface TransportInterface extends FrameworkTransportInterface From 019fc3306de1d8e08a9a246041a6d08081f5e990 Mon Sep 17 00:00:00 2001 From: Benjamin Trenkle Date: Fri, 15 Aug 2025 17:39:23 +0200 Subject: [PATCH 175/279] [6.0] Allow adding additional layout base path to form fields (#44590) * Allow adding addition layout paths to FormField fields * Allow adding layout include paths via form XML * Move layout include path to __set method * Use auto add for layout include path * Rename parameter and add as string * Add since tag * Remove mistake * Add template override possibility * CS * Add layoutPaths to getter method * Remove unnecessary method * Cleanup set method * Improve layout set/generation * Code style --- libraries/src/Form/FormField.php | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/libraries/src/Form/FormField.php b/libraries/src/Form/FormField.php index ae60376c7af0c..2cfb2dba961e4 100644 --- a/libraries/src/Form/FormField.php +++ b/libraries/src/Form/FormField.php @@ -21,6 +21,7 @@ use Joomla\Database\DatabaseAwareTrait; use Joomla\Database\DatabaseInterface; use Joomla\Database\Exception\DatabaseNotFoundException; +use Joomla\Filesystem\Path; use Joomla\Registry\Registry; use Joomla\String\Normalise; use Joomla\String\StringHelper; @@ -398,6 +399,14 @@ abstract class FormField implements DatabaseAwareInterface, CurrentUserInterface */ protected $renderLabelLayout = 'joomla.form.renderlabel'; + /** + * Additional layout paths to look for layout files + * + * @var array + * @since __DEPLOY_VERSION__ + */ + protected $layoutPaths = []; + /** * The data-attribute name and values of the form field. * For example, data-action-type="click" data-action-type="change" @@ -474,6 +483,7 @@ public function __get($name) case 'validationtext': case 'showon': case 'parentclass': + case 'layoutPaths': return $this->$name; case 'input': @@ -591,6 +601,10 @@ public function __set($name, $value) $this->$name = (int) $value; break; + case 'layoutIncludePath': + $this->layoutPaths = \is_array($value) ? $value : explode(',', (string) $value); + break; + default: // Detect data attribute(s) if (str_starts_with($name, 'data-')) { @@ -658,7 +672,7 @@ public function setup(\SimpleXMLElement $element, $value, $group = null) $attributes = [ 'multiple', 'name', 'id', 'hint', 'class', 'description', 'labelclass', 'onchange', 'onclick', 'validate', 'pattern', 'validationtext', 'default', 'required', 'disabled', 'readonly', 'autofocus', 'hidden', 'autocomplete', 'spellcheck', 'translateHint', 'translateLabel', - 'translate_label', 'translateDescription', 'translate_description', 'size', 'showon', ]; + 'translate_label', 'translateDescription', 'translate_description', 'size', 'showon', 'layoutIncludePath']; $this->default = isset($element['value']) ? (string) $element['value'] : $this->default; @@ -1060,7 +1074,13 @@ public function renderField($options = []) $data = array_merge($this->collectLayoutData(), $data); - return $this->getRenderer($this->renderLayout)->render($data); + $renderer = $this->getRenderer($this->renderLayout); + + if (isset($options['layoutIncludePath']) && is_dir(Path::check($options['layoutIncludePath']))) { + $renderer->addIncludePaths($options['layoutIncludePath']); + } + + return $renderer->render($data); } /** @@ -1372,7 +1392,13 @@ protected function getLayoutPaths() { $renderer = new FileLayout('default'); - return $renderer->getDefaultIncludePaths(); + $paths = $renderer->getDefaultIncludePaths(); + + foreach ($this->layoutPaths as $path) { + array_unshift($paths, JPATH_ROOT . '/' . ltrim((string) $path, '/')); + } + + return $paths; } /** From 4b976fc5980f337aeb6d7f1e6a887a15af90bad6 Mon Sep 17 00:00:00 2001 From: Martina Scholz <64533137+LadySolveig@users.noreply.github.com> Date: Sat, 16 Aug 2025 12:55:33 +0200 Subject: [PATCH 176/279] Refactor checkbox input in Grid helper - remove onclick and add class for js (#45910) --- libraries/src/HTML/Helpers/Grid.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/src/HTML/Helpers/Grid.php b/libraries/src/HTML/Helpers/Grid.php index 8dd523b468ece..44ac0fad85200 100644 --- a/libraries/src/HTML/Helpers/Grid.php +++ b/libraries/src/HTML/Helpers/Grid.php @@ -114,14 +114,14 @@ public static function id($rowNum, $recId, $checkedOut = false, $name = 'cid', $ if ($formId !== null) { return $checkedOut ? '' : '' - . ''; + . ''; } return $checkedOut ? '' : '' - . ''; + . ''; } /** From 89f9d4ac4adb3172139d62e368848c0d571b09bc Mon Sep 17 00:00:00 2001 From: Dimitris Grammatikogiannis Date: Sat, 16 Aug 2025 14:58:43 +0300 Subject: [PATCH 177/279] [6.0] Field simple color as web component (#45004) * Redo * Update layouts/joomla/form/field/color/simple.php Co-authored-by: Quy * Update layouts/joomla/form/field/color/simple.php Co-authored-by: Quy * Fix layout shift * deprecate lang strings * Update simple.php * use scss * Add a color validation * Remove the named colors * fix a11y, use Object.assign for the template * (partly) decouple the i18n * Update build/.eslintrc Co-authored-by: Richard Fath * Update joomla-field-simple-color.w-c.es6.js * add shadow dom css in a CSP strict way --- administrator/language/en-GB/joomla.ini | 3 + api/language/en-GB/joomla.ini | 3 + .../joomla-field-simple-color.w-c.es6.js | 561 +++++------------- .../fields/joomla-field-simple-color.scss | 85 ++- language/en-GB/joomla.ini | 3 + layouts/joomla/form/field/color/simple.php | 39 +- 6 files changed, 221 insertions(+), 473 deletions(-) diff --git a/administrator/language/en-GB/joomla.ini b/administrator/language/en-GB/joomla.ini index b9e4e0c88e1dd..db5d787f4508d 100644 --- a/administrator/language/en-GB/joomla.ini +++ b/administrator/language/en-GB/joomla.ini @@ -220,8 +220,11 @@ JFIELD_COLOR_LABEL_SLIDER_HUE="Hue Slider" JFIELD_COLOR_LABEL_SLIDER_INPUT="Selected Colour Value" JFIELD_COLOR_LABEL_SLIDER_LIGHT="Light Slider" JFIELD_COLOR_LABEL_SLIDER_SATURATION="Saturation Slider" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_SELECT="Select a colour" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_TRANSPARENT="No colour, transparent" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_VALUE="Colour with hexadecimal value of" JFIELD_DISPLAY_READONLY_LABEL="Display When Read-Only" JFIELD_ENABLED_DESC="The enabled status of this item." diff --git a/api/language/en-GB/joomla.ini b/api/language/en-GB/joomla.ini index b1cf4418198cd..a29ec02964bbb 100644 --- a/api/language/en-GB/joomla.ini +++ b/api/language/en-GB/joomla.ini @@ -218,8 +218,11 @@ JFIELD_COLOR_LABEL_SLIDER_HUE="Hue Slider" JFIELD_COLOR_LABEL_SLIDER_INPUT="Selected Colour Value" JFIELD_COLOR_LABEL_SLIDER_LIGHT="Light Slider" JFIELD_COLOR_LABEL_SLIDER_SATURATION="Saturation Slider" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_SELECT="Select a colour" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_TRANSPARENT="No colour, transparent" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_VALUE="Colour with hexadecimal value of" JFIELD_DISPLAY_READONLY_LABEL="Display When Read-Only" JFIELD_ENABLED_DESC="The enabled status of this item." diff --git a/build/media_source/system/js/fields/joomla-field-simple-color.w-c.es6.js b/build/media_source/system/js/fields/joomla-field-simple-color.w-c.es6.js index 6ce1e67346ed6..347a3f696ef83 100644 --- a/build/media_source/system/js/fields/joomla-field-simple-color.w-c.es6.js +++ b/build/media_source/system/js/fields/joomla-field-simple-color.w-c.es6.js @@ -1,449 +1,192 @@ /** - * Based on: - * Very simple jQuery Color Picker - * Copyright (C) 2012 Tanguy Krotoff - * Licensed under the MIT license - * - * ADAPTED BY: Dimitris Grammatikogiannis - * - * MIT License - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * @copyright (C) 2024 Open Source Matters, Inc. + * @license GNU General Public License version 2 or later; see LICENSE.txt */ -((customElements) => { - const KEYCODE = { - TAB: 9, - ESC: 27, - }; - - const colorNames = { - aliceblue: '#f0f8ff', - antiquewhite: '#faebd7', - aqua: '#00ffff', - aquamarine: '#7fffd4', - azure: '#f0ffff', - beige: '#f5f5dc', - bisque: '#ffe4c4', - black: '#000000', - blanchedalmond: '#ffebcd', - blue: '#0000ff', - blueviolet: '#8a2be2', - brown: '#a52a2a', - burlywood: '#deb887', - cadetblue: '#5f9ea0', - chartreuse: '#7fff00', - chocolate: '#d2691e', - coral: '#ff7f50', - cornflowerblue: '#6495ed', - cornsilk: '#fff8dc', - crimson: '#dc143c', - cyan: '#00ffff', - darkblue: '#00008b', - darkcyan: '#008b8b', - darkgoldenrod: '#b8860b', - darkgray: '#a9a9a9', - darkgreen: '#006400', - darkgrey: '#a9a9a9', - darkkhaki: '#bdb76b', - darkmagenta: '#8b008b', - darkolivegreen: '#556b2f', - darkorange: '#ff8c00', - darkorchid: '#9932cc', - darkred: '#8b0000', - darksalmon: '#e9967a', - darkseagreen: '#8fbc8f', - darkslateblue: '#483d8b', - darkslategray: '#2f4f4f', - darkslategrey: '#2f4f4f', - darkturquoise: '#00ced1', - darkviolet: '#9400d3', - deeppink: '#ff1493', - deepskyblue: '#00bfff', - dimgray: '#696969', - dimgrey: '#696969', - dodgerblue: '#1e90ff', - firebrick: '#b22222', - floralwhite: '#fffaf0', - forestgreen: '#228b22', - fuchsia: '#ff00ff', - gainsboro: '#dcdcdc', - ghostwhite: '#f8f8ff', - gold: '#ffd700', - goldenrod: '#daa520', - gray: '#808080', - green: '#008000', - greenyellow: '#adff2f', - grey: '#808080', - honeydew: '#f0fff0', - hotpink: '#ff69b4', - indianred: '#cd5c5c', - indigo: '#4b0082', - ivory: '#fffff0', - khaki: '#f0e68c', - lavender: '#e6e6fa', - lavenderblush: '#fff0f5', - lawngreen: '#7cfc00', - lemonchiffon: '#fffacd', - lightblue: '#add8e6', - lightcoral: '#f08080', - lightcyan: '#e0ffff', - lightgoldenrodyellow: '#fafad2', - lightgray: '#d3d3d3', - lightgreen: '#90ee90', - lightgrey: '#d3d3d3', - lightpink: '#ffb6c1', - lightsalmon: '#ffa07a', - lightseagreen: '#20b2aa', - lightskyblue: '#87cefa', - lightslategray: '#778899', - lightslategrey: '#778899', - lightsteelblue: '#b0c4de', - lightyellow: '#ffffe0', - lime: '#00ff00', - limegreen: '#32cd32', - linen: '#faf0e6', - magenta: '#ff00ff', - maroon: '#800000', - mediumaquamarine: '#66cdaa', - mediumblue: '#0000cd', - mediumorchid: '#ba55d3', - mediumpurple: '#9370db', - mediumseagreen: '#3cb371', - mediumslateblue: '#7b68ee', - mediumspringgreen: '#00fa9a', - mediumturquoise: '#48d1cc', - mediumvioletred: '#c71585', - midnightblue: '#191970', - mintcream: '#f5fffa', - mistyrose: '#ffe4e1', - moccasin: '#ffe4b5', - navajowhite: '#ffdead', - navy: '#000080', - oldlace: '#fdf5e6', - olive: '#808000', - olivedrab: '#6b8e23', - orange: '#ffa500', - orangered: '#ff4500', - orchid: '#da70d6', - palegoldenrod: '#eee8aa', - palegreen: '#98fb98', - paleturquoise: '#afeeee', - palevioletred: '#db7093', - papayawhip: '#ffefd5', - peachpuff: '#ffdab9', - peru: '#cd853f', - pink: '#ffc0cb', - plum: '#dda0dd', - powderblue: '#b0e0e6', - purple: '#800080', - red: '#ff0000', - rosybrown: '#bc8f8f', - royalblue: '#4169e1', - saddlebrown: '#8b4513', - salmon: '#fa8072', - sandybrown: '#f4a460', - seagreen: '#2e8b57', - seashell: '#fff5ee', - sienna: '#a0522d', - silver: '#c0c0c0', - skyblue: '#87ceeb', - slateblue: '#6a5acd', - slategray: '#708090', - slategrey: '#708090', - snow: '#fffafa', - springgreen: '#00ff7f', - steelblue: '#4682b4', - tan: '#d2b48c', - teal: '#008080', - thistle: '#d8bfd8', - tomato: '#ff6347', - turquoise: '#40e0d0', - violet: '#ee82ee', - wheat: '#f5deb3', - white: '#ffffff', - whitesmoke: '#f5f5f5', - yellow: '#ffff00', - yellowgreen: '#9acd32', - }; - - class JoomlaFieldSimpleColor extends HTMLElement { - constructor() { - super(); - - // Define some variables - this.select = ''; - this.options = []; - this.icon = ''; - this.panel = ''; - this.buttons = []; - this.focusableElements = null; - this.focusableSelectors = [ - 'a[href]', - 'area[href]', - 'input:not([disabled])', - 'select:not([disabled])', - 'textarea:not([disabled])', - 'button:not([disabled])', - 'iframe', - 'object', - 'embed', - '[contenteditable]', - '[tabindex]:not([tabindex^="-"])']; - } - - connectedCallback() { - this.select = this.querySelector('select'); - - if (!this.select) { - throw new Error('Simple color field requires a select element'); - } - - this.options = this.select.querySelectorAll('option'); - this.select.classList.add('hidden'); - - // Build the pop up - this.options.forEach((option) => { - let color = option.value; - let clss = 'swatch'; +function getText(translatableText, fallbackText) { + const translatedText = typeof Joomla?.Text?._ === 'function' ? Joomla.Text._(translatableText) : ''; + + return translatedText !== translatableText ? translatedText : fallbackText; +} + +const texts = { + none: ['JNONE', 'None'], + close: ['JCLOSE', 'Close'], +}; + +const checker = 'url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3ggRDQENU0dyawAAACZJREFUGNNjPHXqDAMSMDY2ROYyMeAFNJVm/Pv3LzL/7Nnzg8VpAKebCGpIIxHBAAAAAElFTkSuQmCC")'; +const template = Object.assign(document.createElement('template'), { + innerHTML: ` + +
+ + +
`, +}); + +const sheet = new CSSStyleSheet(); +sheet.replaceSync('[part=close] svg { padding-block-start: .2rem; }'); + +// Expand any short code +function getColorName(value) { + let newValue = value; + if (newValue === 'none') return getText(texts.none[0], texts.none[1]); + if (value.startsWith('#') && value.length === 4) { + const tmpValue = value.split(''); + newValue = tmpValue[0] + tmpValue[1] + tmpValue[1] + tmpValue[2] + tmpValue[2] + tmpValue[3] + tmpValue[3]; + } - if (color === 'none') { - clss += ' nocolor'; - color = 'transparent'; - } - if (option.selected) { - clss += ' active'; - } + return newValue; +} - const el = document.createElement('button'); - el.setAttribute('class', clss); - el.style.backgroundColor = color; - el.setAttribute('type', 'button'); - const a11yColor = color === 'transparent' ? this.textTransp : this.getColorName(color); - el.innerHTML = Joomla.sanitizeHtml(`${a11yColor}`); +class JoomlaFieldSimpleColor extends HTMLElement { + static formAssociated = true; - this.buttons.push(el); - }); + get value() { return this.getAttribute('value'); } - // Add a close button - const close = document.createElement('button'); - close.setAttribute('class', 'btn-close'); - close.setAttribute('type', 'button'); - close.setAttribute('aria-label', this.textClose); + set value(value) { this.setAttribute('value', value); } - this.buttons.push(close); + constructor() { + super(); - let color = this.select.value; - let clss = ''; + this.attachShadow({ mode: 'open' }); + this.shadowRoot.appendChild(template.content.cloneNode(true)); + this.shadowRoot.adoptedStyleSheets = [sheet]; - if (color === 'none') { - clss += ' nocolor'; - color = 'transparent'; - } + this.internals = null; + this.show = this.show.bind(this); + this.hide = this.hide.bind(this); + this.keys = this.keys.bind(this); + this.colorSelect = this.colorSelect.bind(this); + this.getActiveElement = this.getActiveElement.bind(this); + this.onDocumentClick = this.onDocumentClick.bind(this); - this.icon = document.createElement('button'); - - if (clss) { - this.icon.setAttribute('class', clss); - } + // Create a dummy div for the validation of the colors + this.div = document.createElement('div'); + } - const uniqueId = `simple-color-${Math.random().toString(36).substring(2, 12)}`; - this.icon.setAttribute('type', 'button'); - this.icon.setAttribute('tabindex', '0'); - this.icon.style.backgroundColor = color; - this.icon.innerHTML = Joomla.sanitizeHtml(`${this.textSelect}`); - this.icon.id = uniqueId; - this.select.insertAdjacentElement('beforebegin', this.icon); - this.icon.addEventListener('click', this.show.bind(this)); - - this.panel = document.createElement('div'); - this.panel.classList.add('simplecolors-panel'); - this.panel.setAttribute('aria-labelledby', uniqueId); - this.hide = this.hide.bind(this); - this.colorSelect = this.colorSelect.bind(this); - - this.buttons.forEach((el) => { - if (el.classList.contains('btn-close')) { - el.addEventListener('click', this.hide); - } else { - el.addEventListener('click', this.colorSelect); - } - - this.panel.insertAdjacentElement('beforeend', el); - }); - - this.appendChild(this.panel); - - this.focusableElements = [].slice - .call(this.panel.querySelectorAll(this.focusableSelectors.join())); - - this.keys = this.keys.bind(this); - this.hide = this.hide.bind(this); - this.mousedown = this.mousedown.bind(this); + connectedCallback() { + try { + this.internals = this.attachInternals(); + this.form = this.internals.form; + } catch (error) { + throw new Error('Unsupported browser'); } - static get observedAttributes() { - return ['text-select', 'text-color', 'text-close', 'text-transparent']; + if (this.internals) { + this.querySelector('input[type=hidden]')?.remove(); } - get textSelect() { return this.getAttribute('text-select'); } - - get textColor() { return this.getAttribute('text-color'); } - - get textClose() { return this.getAttribute('text-close'); } - - get textTransp() { return this.getAttribute('text-transparent'); } + if (this.internals && this.internals.labels.length) { + this.internals.labels.forEach((label) => label.addEventListener('click', this.show)); + } - // Show the panel - show() { - document.addEventListener('mousedown', this.hide); - this.addEventListener('keydown', this.keys); - this.panel.addEventListener('mousedown', this.mousedown); - this.panel.setAttribute('data-open', ''); + this.button = this.shadowRoot.querySelector('[part=opener]'); + this.panel = this.shadowRoot.querySelector('[part=panel]'); + this.closeButton = this.panel.querySelector('[part=close]'); + this.panel.style.display = 'none'; + this.button.style.background = this.value === 'none' ? checker : this.value; - const focused = this.panel.querySelector('button'); + this.button.addEventListener('click', this.show); + this.internals.setFormValue(this.value); + } - if (focused) { - focused.focus(); + // Show the panel + show() { + let focused; + this.slotted = this.shadowRoot.querySelector('slot[name=colors]'); + this.addEventListener('keydown', this.keys); + this.closeButton.addEventListener('click', this.hide); + this.closeButton.setAttribute('aria-label', getText(texts.close[0], texts.close[1])); + this.slotted.assignedElements().forEach((element) => { + if (!this.validateColor(element.value)) { + element.remove(); } - } - - // Hide panel - hide() { - document.removeEventListener('mousedown', this.hide, false); - this.removeEventListener('keydown', this.keys); - if (this.panel.hasAttribute('data-open')) { - this.panel.removeAttribute('data-open'); + element.style.background = element.value === 'none' ? checker : element.value; + element.setAttribute('aria-label', getColorName(element.value)); + element.addEventListener('click', this.colorSelect); + if (element.getAttribute('aria-pressed') === 'true') { + focused = element; } - - this.icon.focus(); + }); + this.button.style.display = 'none'; + this.panel.style.display = 'flex'; + this.button.setAttribute('aria-expanded', 'true'); + + if (focused) { + focused.focus(); + } else { + this.closeButton.focus(); } + document.addEventListener('click', this.onDocumentClick); + } - colorSelect(e) { - let color = ''; - let bgcolor = ''; - let clss = ''; - - if (e.target.classList.contains('nocolor')) { - color = 'none'; - bgcolor = 'transparent'; - clss = 'nocolor'; - } else { - color = this.rgb2hex(e.target.style.backgroundColor); - bgcolor = color; - } - - // Reset the active class - this.buttons.forEach((el) => { - if (el.classList.contains('active')) { - el.classList.remove('active'); - } - }); - - // Add the active class to the selected button - e.target.classList.add('active'); - - this.icon.classList.remove('nocolor'); - this.icon.setAttribute('class', clss); - this.icon.style.backgroundColor = bgcolor; + // Hide the panel + hide() { + this.removeEventListener('keydown', this.keys); + document.removeEventListener('click', this.onDocumentClick); + this.button.setAttribute('aria-expanded', 'false'); + this.panel.style.display = 'none'; + this.button.style.display = 'block'; - // trigger change event both on the select and on the custom element - this.select.dispatchEvent(new Event('change')); - this.dispatchEvent(new CustomEvent('change', { - detail: { value: color }, - bubbles: true, - })); + this.slotted.assignedElements().forEach((element) => element.removeEventListener('click', this.colorSelect)); + this.button.focus(); + } - // Hide the panel + onDocumentClick(e) { + if ([...this.internals.labels].includes(e.target)) return; + if ((e.target.closest('joomla-field-simple-color') !== this) && this.panel.style.display === 'flex') { this.hide(); - - // Change select value - this.options.forEach((el) => { - if (el.selected) { - el.removeAttribute('selected'); - } - - if (el.value === bgcolor) { - el.setAttribute('selected', ''); - } - }); } + } - keys(e) { - if (e.keyCode === KEYCODE.ESC) { - this.hide(); - } - - if (e.keyCode === KEYCODE.TAB) { - // Get the index of the current active element - const focusedIndex = this.focusableElements.indexOf(document.activeElement); - - // If first element is focused and shiftkey is in use, focus last item within modal - if (e.shiftKey && (focusedIndex === 0 || focusedIndex === -1)) { - this.focusableElements[this.focusableElements.length - 1].focus(); - e.preventDefault(); - } - // If last element is focused and shiftkey is not in use, focus first item within modal - if (!e.shiftKey && focusedIndex === this.focusableElements.length - 1) { - this.focusableElements[0].focus(); - e.preventDefault(); - } - } - } + colorSelect(event) { + const { currentTarget } = event; + this.slotted.assignedElements().forEach((element) => element.setAttribute('aria-pressed', element !== currentTarget ? 'false' : 'true')); + this.button.style.background = currentTarget.value === 'none' ? checker : currentTarget.value; + this.hide(); + this.internals.setFormValue(currentTarget.value); + this.value = currentTarget.value; + this.dispatchEvent(new Event('change')); + } - // Prevents the mousedown event from "eating" the click event. - mousedown(e) { - e.stopPropagation(); - e.preventDefault(); + keys(e) { + if (e.code === 'Escape') { + this.hide(); } - getColorName(value) { - // Expand any short code - let newValue = value; - if (value.length === 4) { - const tmpValue = value.split(''); - newValue = tmpValue[0] + tmpValue[1] + tmpValue[1] + tmpValue[2] - + tmpValue[2] + tmpValue[3] + tmpValue[3]; + // Trap the focus + if (e.code === 'Tab') { + const focusableElements = [...this.slotted.assignedElements(), this.closeButton]; + const focusedIndex = focusableElements.indexOf(this.getActiveElement()); + + if (e.shiftKey && (focusedIndex === 0)) { + focusableElements[focusableElements.length - 1].focus(); + e.preventDefault(); + } else if (!e.shiftKey && focusedIndex === focusableElements.length - 1) { + focusableElements[0].focus(); + e.preventDefault(); } + } + } - for (const color in colorNames) { - if (colorNames.hasOwnProperty(color) && newValue.toLowerCase() === colorNames[color]) { - return color; - } - } + getActiveElement(root = document) { + const activeEl = root.activeElement; - return `${this.textColor} ${value.replace('#', '').split('').join(', ')}`; + if (!activeEl) { + return null; } - /** - * Converts a RGB color to its hexadecimal value. - * See http://stackoverflow.com/questions/1740700/get-hex-value-rather-than-rgb-value-using-$ - */ - rgb2hex(rgb) { - const hex = (x) => (`0${parseInt(x, 10).toString(16)}`).slice(-2); - const matches = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/); + return activeEl.shadowRoot ? this.getActiveElement(activeEl.shadowRoot) : activeEl; + } - return `#${hex(matches[1])}${hex(matches[2])}${hex(matches[3])}`; - } + validateColor(color) { + this.div.style.color = color; + return this.div.style.color !== ''; } +} - customElements.define('joomla-field-simple-color', JoomlaFieldSimpleColor); -})(customElements); +customElements.define('joomla-field-simple-color', JoomlaFieldSimpleColor); diff --git a/build/media_source/system/scss/fields/joomla-field-simple-color.scss b/build/media_source/system/scss/fields/joomla-field-simple-color.scss index d7c9f3691eb35..21ba29cc28c97 100644 --- a/build/media_source/system/scss/fields/joomla-field-simple-color.scss +++ b/build/media_source/system/scss/fields/joomla-field-simple-color.scss @@ -1,69 +1,52 @@ joomla-field-simple-color { display: block; - .hidden { - display: none; + button { + width: 2rem; + height: 2rem; + appearance: none; + background: none; + border: var(--border-width, 1px) solid var(--input-border-color, #ccc); + border-radius: var(--border-radius, .25rem); + margin-inline: .5rem; + margin-block-end: .24rem; } - .visually-hidden { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); + &::part(close) { + appearance: none; + background: none; border: 0; + margin-inline: .5rem; + margin-block-end: .2rem; } - button { - width: 20px; - height: 20px; + &::part(opener) { + width: 2rem; + height: 2rem; overflow: hidden; vertical-align: middle; - background: none; - border: solid 1px #ccc; - border-radius: 3px; + border: var(--border-width, 1px) solid var(--input-border-color, #ccc); + border-radius: var(--border-radius, .25rem); appearance: none; + margin-block: .7rem; } - .btn-close { - width: auto; - padding: 0 6px; - margin-top: -4px; - font-size: 1rem; - line-height: 1.5; - text-align: center; - vertical-align: middle; - } - - .nocolor { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3ggRDQENU0dyawAAACZJREFUGNNjPHXqDAMSMDY2ROYyMeAFNJVm/Pv3LzL/7Nnzg8VpAKebCGpIIxHBAAAAAElFTkSuQmCC") !important; - } - .simplecolors-panel .swatch { - margin: 0 4px 4px 0; + &::part(opener):focus, + &::part(opener):hover, + button[aria-pressed=true] { + border: 2px solid var(--template-link-color, rgba(82 168 236 / .8)); + box-shadow: 0 0 0 .25rem #2a69b740; } - .swatch:hover, - .swatch.active { - border-color: rgba(82, 168, 236, .8); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82, 168, 236, .6); - } - - .simplecolors-panel[data-open=""] { - display: block; - } - .simplecolors-panel { - position: absolute; - z-index: 12; - display: none; - float: left; - padding: 6px 2px 2px 6px; - margin: 1px 0 0; - background-color: #fff; + &::part(panel) { + flex-direction: row; + flex-wrap: wrap; + float: inline-start; + padding: .64rem 0 .4rem; + background-color: var(--body-bg, #fff); background-clip: padding-box; - border: 1px solid #ddd; - border-radius: 5px; - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + border: var(--border-width, 1px) solid var(--input-border-color, #ccc); + border-radius: var(--border-radius, .25rem); + box-shadow: 0 5px 10px rgba(0 0 0 / .2); } } diff --git a/language/en-GB/joomla.ini b/language/en-GB/joomla.ini index e67786a11e636..85d8332a4a0fe 100644 --- a/language/en-GB/joomla.ini +++ b/language/en-GB/joomla.ini @@ -182,8 +182,11 @@ JFIELD_ALIAS_LABEL="Alias" JFIELD_ALIAS_PLACEHOLDER="Auto-generate from title" JFIELD_ALT_PAGE_TITLE_LABEL="Alternative Page Title" JFIELD_CATEGORY_DESC="Category" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_SELECT="Select a colour" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_TRANSPARENT="No colour, transparent" +; The following string is deprecated and will be removed with 7.0 JFIELD_COLOR_VALUE="Colour with hexadecimal value of" JFIELD_FIELDS_CATEGORY_DESC="Select the category that this field is assigned to." JFIELD_LANGUAGE_DESC="Assign a language to this article." diff --git a/layouts/joomla/form/field/color/simple.php b/layouts/joomla/form/field/color/simple.php index 2ed3e632ead10..73e443135eb3e 100644 --- a/layouts/joomla/form/field/color/simple.php +++ b/layouts/joomla/form/field/color/simple.php @@ -12,6 +12,7 @@ use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; +use Joomla\Utilities\ArrayHelper; extract($displayData); @@ -51,22 +52,34 @@ * @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output * @var array $dataAttributes Miscellaneous data attribute for eg, data-*. */ - -$class = ' class="form-select ' . trim($class) . '"'; -$disabled = $disabled ? ' disabled' : ''; -$readonly = $readonly ? ' readonly' : ''; - Factory::getDocument()->getWebAssetManager() ->useStyle('webcomponent.field-simple-color') ->useScript('webcomponent.field-simple-color'); +Text::script('JCLOSE'); +Text::script('JNONE'); + +$slots = []; +$attr = [ + 'name' => $name, + 'id' => $id, + 'class' => trim($class), + 'value' => trim($color), +]; + +if ($disabled) { + $attr['disabled'] = ''; +} + +if ($readonly) { + $attr['readonly'] = ''; +} + +foreach ($colors as $val) { + $slots[] = ''; +} ?> - - +> + + From 433bacf344e1f75c8aaf6a0d158c57e901f7e20a Mon Sep 17 00:00:00 2001 From: Dimitris Grammatikogiannis Date: Sat, 16 Aug 2025 15:18:04 +0300 Subject: [PATCH 178/279] [6.0] Remove chosen (#45018) * Remove chosen * missed tag.js * Update minify-vendor.mjs * Update patches.mjs --- build/build-modules-js/init/minify-vendor.mjs | 1 - build/build-modules-js/init/patches.mjs | 15 +- build/build-modules-js/settings.json | 34 ---- .../media_source/legacy/js/ajax-chosen.es5.js | 161 ------------------ .../legacy/js/joomla-chosen.es5.js | 102 ----------- .../media_source/system/js/fields/tag.es5.js | 66 ------- .../media_source/system/js/searchtools.es6.js | 20 --- .../site/cassiopeia/scss/template.scss | 1 - .../site/cassiopeia/scss/vendor/_chosen.scss | 121 ------------- package-lock.json | 7 - package.json | 1 - 11 files changed, 1 insertion(+), 528 deletions(-) delete mode 100644 build/media_source/legacy/js/ajax-chosen.es5.js delete mode 100644 build/media_source/legacy/js/joomla-chosen.es5.js delete mode 100644 build/media_source/system/js/fields/tag.es5.js delete mode 100644 build/media_source/templates/site/cassiopeia/scss/vendor/_chosen.scss diff --git a/build/build-modules-js/init/minify-vendor.mjs b/build/build-modules-js/init/minify-vendor.mjs index 848887b2107d0..5772170ce31fb 100644 --- a/build/build-modules-js/init/minify-vendor.mjs +++ b/build/build-modules-js/init/minify-vendor.mjs @@ -8,7 +8,6 @@ const RootPath = process.cwd(); const folders = [ 'media/vendor/accessibility/js', - 'media/vendor/chosen/js', 'media/vendor/debugbar', 'media/vendor/diff/js', 'media/vendor/es-module-shims/js', diff --git a/build/build-modules-js/init/patches.mjs b/build/build-modules-js/init/patches.mjs index 1a20efff1c513..d18f546ff799a 100644 --- a/build/build-modules-js/init/patches.mjs +++ b/build/build-modules-js/init/patches.mjs @@ -10,22 +10,9 @@ const RootPath = process.cwd(); * * @returns {Promise} */ -export const patchPackages = async (options) => { +export const patchPackages = async () => { const mediaVendorPath = join(RootPath, 'media/vendor'); - // Joomla's hack to expose the chosen base classes so we can extend it ourselves - // (it was better than the many hacks we had before. But I'm still ashamed of myself). - const dest = join(mediaVendorPath, 'chosen'); - const chosenPath = `${dest}/${options.settings.vendors['chosen-js'].js['chosen.jquery.js']}`; - let ChosenJs = await readFile(chosenPath, { encoding: 'utf8' }); - ChosenJs = ChosenJs.replace( - '}).call(this);', - ` document.AbstractChosen = AbstractChosen; - document.Chosen = Chosen; -}).call(this);`, - ); - await writeFile(chosenPath, ChosenJs, { encoding: 'utf8', mode: 0o644 }); - // Include the v5 shim for Font Awesome const faPath = join(mediaVendorPath, 'fontawesome-free/scss/fontawesome.scss'); const newScss = (await readFile(faPath, { encoding: 'utf8' })).concat(` diff --git a/build/build-modules-js/settings.json b/build/build-modules-js/settings.json index 7b376a12bd9dd..4ce05cd8544e8 100644 --- a/build/build-modules-js/settings.json +++ b/build/build-modules-js/settings.json @@ -631,40 +631,6 @@ } ] }, - "chosen-js": { - "name": "chosen", - "js": { - "chosen.jquery.js": "js/chosen.jquery.js" - }, - "css": { - "chosen.css": "css/chosen.css", - "chosen-sprite.png": "css/chosen-sprite.png", - "chosen-sprite@2x.png": "css/chosen-sprite@2x.png" - }, - "provideAssets": [ - { - "name": "chosen", - "type": "style", - "uri": "chosen.css" - }, - { - "name": "chosen", - "type": "script", - "uri": "chosen.jquery.js", - "dependencies": [ - "jquery" - ] - }, - { - "name": "chosen", - "type": "preset", - "dependencies": [ - "chosen#style", - "chosen#script" - ] - } - ] - }, "accessibility": { "name": "accessibility", "licenseFilename": "LICENSE", diff --git a/build/media_source/legacy/js/ajax-chosen.es5.js b/build/media_source/legacy/js/ajax-chosen.es5.js deleted file mode 100644 index 9790e596793e5..0000000000000 --- a/build/media_source/legacy/js/ajax-chosen.es5.js +++ /dev/null @@ -1,161 +0,0 @@ -/** - * @copyright (C) 2013 Open Source Matters, Inc. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -/** - * ajaxChosen javascript behavior - * - * Used for displaying tags - * - * @package Joomla.JavaScript - * @since 1.5 - * @version 1.0 - */ -(function($) { - return $.fn.ajaxChosen = function(settings, callback, chosenOptions) { - var chosenXhr, defaultOptions, options, select; - if (settings == null) { - settings = {}; - } - if (callback == null) { - callback = {}; - } - if (chosenOptions == null) { - chosenOptions = function() {}; - } - defaultOptions = { - minTermLength: 3, - afterTypeDelay: 500, - jsonTermKey: "term", - keepTypingMsg: Joomla.Text._('JGLOBAL_KEEP_TYPING'), - lookingForMsg: Joomla.Text._('JGLOBAL_LOOKING_FOR') - }; - select = this; - chosenXhr = null; - options = $.extend({}, defaultOptions, $(select).data(), settings); - this.jchosen(chosenOptions ? chosenOptions : {}); - return this.each(function() { - return $(this).next('.chosen-container').find(".search-field > input, .chosen-search > input").bind('keyup', function() { - var field, msg, success, untrimmed_val, val; - untrimmed_val = $(this).val(); - val = $.trim($(this).val()); - msg = val.length < options.minTermLength ? options.keepTypingMsg : options.lookingForMsg + (" '" + val + "'"); - select.next('.chosen-container').find('.no-results').text(msg); - if (val === $(this).data('prevVal')) { - return false; - } - $(this).data('prevVal', val); - if (this.timer) { - clearTimeout(this.timer); - } - if (val.length < options.minTermLength) { - return false; - } - field = $(this); - if (!(options.data != null)) { - options.data = {}; - } - options.data[options.jsonTermKey] = val; - if (options.dataCallback != null) { - options.data = options.dataCallback(options.data); - } - success = options.success; - options.success = function(data) { - var items, nbItems, selected_values; - if (!(data != null)) { - return; - } - selected_values = []; - select.find('option').each(function() { - if (!$(this).is(":selected")) { - return $(this).remove(); - } else { - return selected_values.push($(this).val() + "-" + $(this).text()); - } - }); - select.find('optgroup:empty').each(function() { - return $(this).remove(); - }); - items = callback.apply(null, data); - nbItems = 0; - $.each(items, function(i, element) { - var group, text, value; - nbItems++; - if (element.group) { - group = select.find("optgroup[label='" + element.text + "']"); - if (!group.size()) { - group = $(""); - } - group.attr('label', element.text).appendTo(select); - return $.each(element.items, function(i, element) { - var text, value; - if (typeof element === "string") { - value = i; - text = element; - } else { - value = element.value; - text = element.text; - } - if ($.inArray(value + "-" + text, selected_values) === -1) { - return $("'); - group.append(option); - this.form_field_jq.append(group); - this.form_field.options[this.form_field.options.length - 1].selected = true; - if (!evt.metaKey) { - this.results_hide(); - } - return this.results_build(); - } - - return JoomlaChosen.__super__.result_select.apply(this, arguments); - }; - - JoomlaChosen.prototype.find_custom_group = function () { - var found, group, _i, _len, _ref; - _ref = $('optgroup', this.form_field); - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - group = _ref[_i]; - if (group.getAttribute('label') === this.custom_group_text) { - found = group; - } - } - return found; - }; - - JoomlaChosen.prototype.add_unique_custom_group = function () { - var group; - group = this.find_custom_group(); - if (!group) { - group = $(''); - } - return $(group); - }; - - /** - * We choose to override this function so deliberately don't call super - */ - JoomlaChosen.prototype.container_width = function () { - if (this.options.width != null) { - return this.options.width; - } else { - // Original: return "" + this.form_field.offsetWidth + "px"; - return this.form_field_jq.css("width") || "" + this.form_field.offsetWidth + "px"; - } - }; - - return JoomlaChosen; - - })(Chosen); -})(jQuery, document.Chosen, document.AbstractChosen); diff --git a/build/media_source/system/js/fields/tag.es5.js b/build/media_source/system/js/fields/tag.es5.js deleted file mode 100644 index 0cc2af0634be0..0000000000000 --- a/build/media_source/system/js/fields/tag.es5.js +++ /dev/null @@ -1,66 +0,0 @@ -/** - * @copyright (C) 2016 Open Source Matters, Inc. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -/** - * Field user - */ -jQuery(document).ready(function ($) { - - if (Joomla.getOptions('field-tag-custom')) { - - var options = Joomla.getOptions('field-tag-custom'), - customTagPrefix = '#new#'; - - // Method to add tags pressing enter - $(options.selector + '_chosen input').keyup(function(event) { - - var tagOption; - - // Tag is greater than the minimum required chars and enter pressed - if (this.value && this.value.length >= options.minTermLength && (event.which === 13 || event.which === 188)) { - - // Search a highlighted result - var highlighted = $(options.selector + '_chosen').find('li.active-result.highlighted').first(); - - // Add the highlighted option - if (event.which === 13 && highlighted.text() !== '') - { - // Extra check. If we have added a custom tag with this text remove it - var customOptionValue = customTagPrefix + highlighted.text(); - $(options.selector + ' option').filter(function () { return $(this).val() == customOptionValue; }).remove(); - - // Select the highlighted result - tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == highlighted.text(); }); - tagOption.attr('selected', 'selected'); - } - // Add the custom tag option - else - { - var customTag = this.value; - - // Extra check. Search if the custom tag already exists (typed faster than AJAX ready) - tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == customTag; }); - if (tagOption.text() !== '') - { - tagOption.attr('selected', 'selected'); - } - else - { - var option = $('