Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes
This commit is contained in:
parent
b11a755ba8
commit
c0a0d5a94c
|
@ -12,3 +12,6 @@ indent_size = 2
|
|||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[composer.json]
|
||||
indent_size = 4
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#
|
||||
|
||||
# Protect files and directories from prying eyes.
|
||||
<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock))$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
|
||||
<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock))$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
@ -93,7 +93,7 @@ AddEncoding gzip svgz
|
|||
# If you do not have mod_rewrite installed, you should remove these
|
||||
# directories from your webroot or otherwise protect them from being
|
||||
# downloaded.
|
||||
RewriteRule "(^|/)\." - [F]
|
||||
RewriteRule "(^|/)\.(?!well-known)" - [F]
|
||||
|
||||
# If your site can be accessed both with and without the 'www.' prefix, you
|
||||
# can use one of the following settings to redirect users to your preferred
|
||||
|
|
|
@ -36,8 +36,8 @@ thousands of contributed modules (for functionality not included with Drupal
|
|||
core) available for download.
|
||||
|
||||
More about configuration:
|
||||
* Install, upgrade, and maintain Drupal:
|
||||
See INSTALL.txt and UPGRADE.txt in the "core" directory.
|
||||
* Install, update, and maintain Drupal:
|
||||
See INSTALL.txt and UPDATE.txt in the "core" directory.
|
||||
* Learn about how to use Drupal to create your site:
|
||||
https://www.drupal.org/documentation
|
||||
* Follow best practices:
|
||||
|
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"name": "drupal/drupal",
|
||||
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0+",
|
||||
"require": {
|
||||
"composer/installers": "^1.0.21",
|
||||
"wikimedia/composer-merge-plugin": "~1.3"
|
||||
},
|
||||
"replace": {
|
||||
"drupal/core": "~8.0"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"preferred-install": "dist",
|
||||
"autoloader-suffix": "Drupal8"
|
||||
},
|
||||
"extra": {
|
||||
"_readme": [
|
||||
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
|
||||
"To change the autoloader you can edit ./autoload.php."
|
||||
],
|
||||
"merge-plugin": {
|
||||
"include": [
|
||||
"core/composer.json"
|
||||
],
|
||||
"recurse": false,
|
||||
"replace": false,
|
||||
"merge-extra": false
|
||||
"name": "drupal/drupal",
|
||||
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0+",
|
||||
"require": {
|
||||
"composer/installers": "^1.0.21",
|
||||
"wikimedia/composer-merge-plugin": "~1.3"
|
||||
},
|
||||
"replace": {
|
||||
"drupal/core": "~8.1"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"preferred-install": "dist",
|
||||
"autoloader-suffix": "Drupal8"
|
||||
},
|
||||
"extra": {
|
||||
"_readme": [
|
||||
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
|
||||
"To change the autoloader you can edit ./autoload.php."
|
||||
],
|
||||
"merge-plugin": {
|
||||
"include": [
|
||||
"core/composer.json"
|
||||
],
|
||||
"recurse": false,
|
||||
"replace": false,
|
||||
"merge-extra": false
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
|
||||
"post-autoload-dump": "Drupal\\Core\\Composer\\Composer::ensureHtaccess",
|
||||
"post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
|
||||
"post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
|
||||
"post-autoload-dump": "Drupal\\Core\\Composer\\Composer::ensureHtaccess",
|
||||
"post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
|
||||
"post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
|
||||
}
|
||||
}
|
||||
|
|
713
composer.lock
generated
713
composer.lock
generated
File diff suppressed because it is too large
Load diff
19
core/.gitignore
vendored
19
core/.gitignore
vendored
|
@ -1,19 +0,0 @@
|
|||
# SimpleTest breaks with the following files, so avoid adding them.
|
||||
vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php
|
||||
vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/php5.4/traits.php
|
||||
vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services11.php
|
||||
|
||||
# The resources for the Validator component are not required.
|
||||
vendor/symfony/validator/Symfony/Component/Validator/Resources
|
||||
|
||||
# Symfony Validator depends on Symfony Translation but only requires the
|
||||
# TranslatorInterface. Thus, we add only the required interface from Symfony
|
||||
# Translation by ignoring everything except the interface.
|
||||
vendor/symfony/translation/Symfony/Component/Translation/*
|
||||
!vendor/symfony/translation/Symfony/Component/Translation/TranslatorInterface.php
|
||||
|
||||
# PHPUnit provides some binary dependencies that are already available.
|
||||
vendor/phpunit/phpunit/build/dependencies
|
||||
|
||||
# The PHAR file below contains CRLF characters that cause a problem with PIFR.
|
||||
vendor/symfony/dependency-injection/Tests/Fixtures/includes/ProjectWithXsdExtensionInPhar.phar
|
|
@ -1,6 +1,49 @@
|
|||
Drupal 8.0.4, 2016-02-24
|
||||
Drupal 8.1.0, 2016-04-20
|
||||
------------------------
|
||||
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001.
|
||||
- Removed Composer-managed vendor from the git repository:
|
||||
* Drupal.org packager adds dependencies to zip and tar package. This can be
|
||||
used without any further steps.
|
||||
* When not using zip / tar files, e.g. when using a git clone, run composer
|
||||
install to get dependencies.
|
||||
* See https://www.drupal.org/documentation/install/download#git
|
||||
for instructions.
|
||||
- Added vendor libraries:
|
||||
* Added Symfony Polyfill Iconv 1.1.0.
|
||||
* Added paragonie/random_compat 1.4.1.
|
||||
- Updated vendor libraries:
|
||||
* Updated to Symfony 2.8.4.
|
||||
* Updated to CKEditor 4.5.8.
|
||||
* Updated to Modernizr 3.3.1.
|
||||
- Added modules:
|
||||
* Added the Migrate Drupal UI module (experimental) to provide a UI for
|
||||
migrating content and configuration from Drupal 6 and Drupal 7.
|
||||
* Added the BigPipe module (experimental) to improve perceived performance.
|
||||
- Improved authoring features:
|
||||
* Enabled browsers' (native) spell checker in CKEditor.
|
||||
* Added language toolbar button in CKEditor for identifying the language of
|
||||
text parts.
|
||||
- Improved site administration experience:
|
||||
* Improved admin/help page to be more flexible and list tours on it.
|
||||
- Improved site building features:
|
||||
* Added a "Rendered entity" field handler in Views.
|
||||
- Improved distribution building features:
|
||||
* Added support for distributions to specify an installation language.
|
||||
- Improved developer APIs:
|
||||
* Added local ID and revision fields to HAL web service output.
|
||||
* Added support for image toolkits to be defined with plugin derivatives,
|
||||
reducing the code needed to extend them.
|
||||
* Simplified Migrate API by replacing migration configuration entities with
|
||||
migration plugins.
|
||||
* Added support for entity types to specify translatable plural labels.
|
||||
* Added a revision log interface and trait for revisionable entity types.
|
||||
* Added key field definitions to ContentEntityBase, reducing code from
|
||||
child classes.
|
||||
* Added generic route providers for add-page and add-form entity routes,
|
||||
reducing the code needed to define an entity type.
|
||||
- Testing improvements:
|
||||
* Added support for automated JavaScript testing.
|
||||
* Added verbose output for BrowserTestBase.
|
||||
* Improved reporting of PHPUnit results.
|
||||
|
||||
Drupal 8.0.0, 2015-11-19
|
||||
------------------------
|
||||
|
|
|
@ -261,6 +261,10 @@ Basic Auth module
|
|||
- Klaus Purer 'klausi' https://www.drupal.org/u/klausi
|
||||
- Juampy Novillo Requena 'juampy' https://www.drupal.org/u/juampy
|
||||
|
||||
BigPipe module
|
||||
- Wim Leers 'Wim Leers' https://www.drupal.org/u/wim-leers
|
||||
- Fabian Franz 'Fabianx' https://www.drupal.org/u/fabianx
|
||||
|
||||
Block module
|
||||
- Tim Plunkett 'tim.plunkett' https://www.drupal.org/u/tim.plunkett
|
||||
- Ben Dougherty 'benjy' https://www.drupal.org/u/benjy
|
||||
|
|
|
@ -7,10 +7,10 @@ To upgrade from a previous major version (for example, Drupal 6 or 7), the
|
|||
process involves importing site configuration and content from your old site
|
||||
into a new Drupal 8 site. The tools and process are currently experimental,
|
||||
rather than being fully supported, so be sure to test in a development
|
||||
environment. You will need to use the contributed Drupal Upgrade module
|
||||
(https://www.drupal.org/project/migrate_upgrade), as well as the core Migrate
|
||||
and Migrate Drupal modules. See https://www.drupal.org/upgrade/migrate for
|
||||
details, and https://www.drupal.org/node/2167633 for known issues.
|
||||
environment. You will need to use the core Migrate Drupal UI module which
|
||||
provides a user interface for the Migrate and Migrate Drupal modules included
|
||||
in core. See https://www.drupal.org/upgrade/migrate for details, and
|
||||
https://www.drupal.org/node/2167633 for known issues.
|
||||
|
||||
First steps and definitions:
|
||||
|
||||
|
@ -38,19 +38,19 @@ First steps and definitions:
|
|||
version you are upgrading or updating to on the Drupal project page
|
||||
(https://www.drupal.org/project/drupal).
|
||||
|
||||
UPGRADE PROBLEMS
|
||||
UPDATE PROBLEMS
|
||||
----------------
|
||||
If you encounter errors during this process,
|
||||
|
||||
* Note any error messages you see.
|
||||
|
||||
* Restore your site to its previous state, using the file and database backups
|
||||
you created before you started the upgrade process. Do not attempt to do
|
||||
further upgrades on a site that had update problems.
|
||||
you created before you started the update process. Do not attempt to do
|
||||
further updates on a site that had update problems.
|
||||
|
||||
* Consult one of the support options listed on https://www.drupal.org/support
|
||||
|
||||
More in-depth information on upgrading can be found at
|
||||
More in-depth information on updating and upgrading can be found at
|
||||
https://www.drupal.org/upgrade
|
||||
|
||||
MINOR AND PATCH VERSION UPDATES
|
||||
|
@ -130,8 +130,8 @@ following the instructions in the INTRODUCTION section at the top of this file:
|
|||
- Change it into:
|
||||
$settings['update_free_access'] = TRUE;
|
||||
|
||||
- Once the upgrade is done, $settings['update_free_access'] must be
|
||||
reverted to FALSE.
|
||||
- Once the update is done, $settings['update_free_access'] must be reverted
|
||||
to FALSE.
|
||||
|
||||
7. Go to Administration > Reports > Status report. Verify that everything is
|
||||
working as expected.
|
58
core/assets/vendor/ckeditor/CHANGES.md
vendored
58
core/assets/vendor/ckeditor/CHANGES.md
vendored
|
@ -1,6 +1,60 @@
|
|||
CKEditor 4 Changelog
|
||||
====================
|
||||
|
||||
## CKEditor 4.5.8
|
||||
|
||||
New Features:
|
||||
|
||||
* [#12440](http://dev.ckeditor.com/ticket/12440): Added the [`config.colorButton_enableAutomatic`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-colorButton_enableAutomatic) option to allow hiding the "Automatic" option in the [color picker](http://ckeditor.com/addon/colorbutton).
|
||||
|
||||
Fixed Issues:
|
||||
|
||||
* [#10448](http://dev.ckeditor.com/ticket/10448): Fixed: Lack of scrollbar in the [right-to-left text direction](http://ckeditor.com/addon/bidi).
|
||||
* [#12707](http://dev.ckeditor.com/ticket/12707): Fixed: The order of table elements does not comply with the HTML specification.
|
||||
* [#13756](http://dev.ckeditor.com/ticket/13756): [Edge] Fixed: Context menus are cut-off.
|
||||
|
||||
## CKEditor 4.5.7
|
||||
|
||||
New Features:
|
||||
|
||||
* [#14327](http://dev.ckeditor.com/ticket/14327): Added Swiss German localization. Thanks to [Miro Grenda](https://twitter.com/mirogrenda)!
|
||||
|
||||
Fixed Issues:
|
||||
|
||||
* [#13816](http://dev.ckeditor.com/ticket/13816): Introduced a new strategy for Filling Character handling to avoid changes in DOM. This fixes the following issues:
|
||||
* [#12727](http://dev.ckeditor.com/ticket/12727): [Blink] `IndexSizeError` when using the [Div Editing Area](http://ckeditor.com/addon/divarea) and [Content Templates](http://ckeditor.com/addon/templates) plugins.
|
||||
* [#13377](http://dev.ckeditor.com/ticket/13377): [Widget](http://ckeditor.com/addon/widget) plugin issue when typing in Korean.
|
||||
* [#13389](http://dev.ckeditor.com/ticket/13389): [Blink] [`editor.getData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getData) fails when the cursor is next to an `<hr>` tag.
|
||||
* [#13513](http://dev.ckeditor.com/ticket/13513): [Blink, WebKit] [Div Editing Area](http://ckeditor.com/addon/divarea) and [`editor.getData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getData) throw an error when an image is the only data in the editor.
|
||||
* [#13884](http://dev.ckeditor.com/ticket/13884): [Firefox] Fixed: Copying and pasting a table results in just the first cell being pasted.
|
||||
* [#14234](http://dev.ckeditor.com/ticket/14234): Fixed: URL input field is not marked as required in the [Media Embed](http://ckeditor.com/addon/embed) dialog.
|
||||
|
||||
## CKEditor 4.5.6
|
||||
|
||||
New Features:
|
||||
|
||||
* Introduced the [`CKEDITOR.tools.getCookie()`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-getCookie) and [`CKEDITOR.tools.setCookie()`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-setCookie) methods for accessing cookies.
|
||||
* Introduced the [`CKEDITOR.tools.getCsrfToken()`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-getCsrfToken) method. The CSRF token is now automatically sent by the [File Browser](http://ckeditor.com/addon/filebrowser) and [File Tools](http://ckeditor.com/addon/filetools) plugins during file uploads. The server-side upload handlers may check it and use it to additionally secure the communication.
|
||||
|
||||
Other Changes:
|
||||
|
||||
* Updated [SCAYT](http://ckeditor.com/addon/scayt) (Spell Check As You Type):
|
||||
- New features:
|
||||
- CKEditor [Language](http://ckeditor.com/addon/language) plugin support.
|
||||
- CKEditor [Placeholder](http://ckeditor.com/addon/placeholder) plugin support.
|
||||
- [Drag&Drop](http://sdk.ckeditor.com/samples/fileupload.html) support.
|
||||
- **Experimental** [GRAYT](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-grayt_autoStartup) (Grammar As You Type) functionality.
|
||||
- Fixed issues:
|
||||
* [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98): SCAYT affects dialog double-click. Fixed in SCAYT core.
|
||||
* [#102](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/102): SCAYT core performance enhancements.
|
||||
* [#104](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/104): SCAYT's spans leak into the clipboard and after pasting.
|
||||
* [#105](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/105): A JavaScript error fired in case of multiple instances of CKEditor on one page.
|
||||
* [#107](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/107): SCAYT should not check non-editable parts of content.
|
||||
* [#108](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/108): Latest SCAYT copies the ID of the editor element to the iframe.
|
||||
* SCAYT stops working when CKEditor [Undo plugin](http://ckeditor.com/addon/undo) not enabled.
|
||||
* Issue with pasting SCAYT markup in CKEditor.
|
||||
* SCAYT stops working after pressing the *Cancel* button in the WSC dialog.
|
||||
|
||||
## CKEditor 4.5.5
|
||||
|
||||
Fixed Issues:
|
||||
|
@ -23,7 +77,7 @@ Fixed Issues:
|
|||
|
||||
Other Changes:
|
||||
|
||||
* [#13859](http://dev.ckeditor.com/ticket/13859): Test cases created with `benter.tools.createTestsForEditors` will also receive editor bot as a second parameter.
|
||||
* [#13859](http://dev.ckeditor.com/ticket/13859): Test cases created with `bender.tools.createTestsForEditors` will also receive editor bot as a second parameter.
|
||||
|
||||
## CKEditor 4.5.4
|
||||
|
||||
|
@ -56,7 +110,7 @@ Other Changes:
|
|||
|
||||
New Features:
|
||||
|
||||
* [#13501](http://dev.ckeditor.com/ticket/13501): Added the [`config.fileTools_defaultFileName`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-fileTools_defaultFileName) option to allow setting a default filen ame for paste uploads.
|
||||
* [#13501](http://dev.ckeditor.com/ticket/13501): Added the [`config.fileTools_defaultFileName`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-fileTools_defaultFileName) option to allow setting a default file name for paste uploads.
|
||||
* [#13603](http://dev.ckeditor.com/ticket/13603): Added support for uploading dropped BMP images.
|
||||
|
||||
Fixed Issues:
|
||||
|
|
4
core/assets/vendor/ckeditor/LICENSE.md
vendored
4
core/assets/vendor/ckeditor/LICENSE.md
vendored
|
@ -2,7 +2,7 @@ Software License Agreement
|
|||
==========================
|
||||
|
||||
CKEditor - The text editor for Internet - http://ckeditor.com
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
|
||||
Licensed under the terms of any of the following licenses at your
|
||||
choice:
|
||||
|
@ -37,7 +37,7 @@ done by developers outside of CKSource with their express permission.
|
|||
|
||||
The following libraries are included in CKEditor under the MIT license (see Appendix D):
|
||||
|
||||
* CKSource Samples Framework (included in the samples) - Copyright (c) 2014-2015, CKSource - Frederico Knabben.
|
||||
* CKSource Samples Framework (included in the samples) - Copyright (c) 2014-2016, CKSource - Frederico Knabben.
|
||||
* PicoModal (included in `samples/js/sf.js`) - Copyright (c) 2012 James Frasca.
|
||||
* CodeMirror (included in the samples) - Copyright (C) 2014 by Marijn Haverbeke <marijnh@gmail.com> and others.
|
||||
|
||||
|
|
3
core/assets/vendor/ckeditor/build-config.js
vendored
3
core/assets/vendor/ckeditor/build-config.js
vendored
|
@ -40,6 +40,8 @@ var CKBUILDER_CONFIG = {
|
|||
'bender-err.log',
|
||||
'bender-out.log',
|
||||
'node_modules',
|
||||
'.jscsrc',
|
||||
'.jshintrc',
|
||||
// Parts of CKEditor that we consciously don't ship with Drupal.
|
||||
'adapters',
|
||||
'config.js',
|
||||
|
@ -69,6 +71,7 @@ var CKBUILDER_CONFIG = {
|
|||
'wysiwygarea' : 1,
|
||||
'indent' : 1,
|
||||
'indentlist' : 1,
|
||||
'language' : 1,
|
||||
'list' : 1,
|
||||
'magicline' : 1,
|
||||
'maximize' : 1,
|
||||
|
|
1874
core/assets/vendor/ckeditor/ckeditor.js
vendored
1874
core/assets/vendor/ckeditor/ckeditor.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
|
||||
af.js Found: 62 Missing: 4
|
||||
|
|
4
core/assets/vendor/ckeditor/lang/af.js
vendored
4
core/assets/vendor/ckeditor/lang/af.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ar.js
vendored
4
core/assets/vendor/ckeditor/lang/ar.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/bg.js
vendored
4
core/assets/vendor/ckeditor/lang/bg.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/bn.js
vendored
4
core/assets/vendor/ckeditor/lang/bn.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/bs.js
vendored
4
core/assets/vendor/ckeditor/lang/bs.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ca.js
vendored
4
core/assets/vendor/ckeditor/lang/ca.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/cs.js
vendored
4
core/assets/vendor/ckeditor/lang/cs.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/cy.js
vendored
4
core/assets/vendor/ckeditor/lang/cy.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/da.js
vendored
4
core/assets/vendor/ckeditor/lang/da.js
vendored
File diff suppressed because one or more lines are too long
5
core/assets/vendor/ckeditor/lang/de-ch.js
vendored
Normal file
5
core/assets/vendor/ckeditor/lang/de-ch.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/de.js
vendored
4
core/assets/vendor/ckeditor/lang/de.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/el.js
vendored
4
core/assets/vendor/ckeditor/lang/el.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/en-au.js
vendored
4
core/assets/vendor/ckeditor/lang/en-au.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/en-ca.js
vendored
4
core/assets/vendor/ckeditor/lang/en-ca.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/en-gb.js
vendored
4
core/assets/vendor/ckeditor/lang/en-gb.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/en.js
vendored
4
core/assets/vendor/ckeditor/lang/en.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/eo.js
vendored
4
core/assets/vendor/ckeditor/lang/eo.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/es.js
vendored
4
core/assets/vendor/ckeditor/lang/es.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/et.js
vendored
4
core/assets/vendor/ckeditor/lang/et.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/eu.js
vendored
4
core/assets/vendor/ckeditor/lang/eu.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/fa.js
vendored
4
core/assets/vendor/ckeditor/lang/fa.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/fi.js
vendored
4
core/assets/vendor/ckeditor/lang/fi.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/fo.js
vendored
4
core/assets/vendor/ckeditor/lang/fo.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/fr-ca.js
vendored
4
core/assets/vendor/ckeditor/lang/fr-ca.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/fr.js
vendored
4
core/assets/vendor/ckeditor/lang/fr.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/gl.js
vendored
4
core/assets/vendor/ckeditor/lang/gl.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/gu.js
vendored
4
core/assets/vendor/ckeditor/lang/gu.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/he.js
vendored
4
core/assets/vendor/ckeditor/lang/he.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/hi.js
vendored
4
core/assets/vendor/ckeditor/lang/hi.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/hr.js
vendored
4
core/assets/vendor/ckeditor/lang/hr.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/hu.js
vendored
4
core/assets/vendor/ckeditor/lang/hu.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/id.js
vendored
4
core/assets/vendor/ckeditor/lang/id.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/is.js
vendored
4
core/assets/vendor/ckeditor/lang/is.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/it.js
vendored
4
core/assets/vendor/ckeditor/lang/it.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ja.js
vendored
4
core/assets/vendor/ckeditor/lang/ja.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ka.js
vendored
4
core/assets/vendor/ckeditor/lang/ka.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/km.js
vendored
4
core/assets/vendor/ckeditor/lang/km.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ko.js
vendored
4
core/assets/vendor/ckeditor/lang/ko.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ku.js
vendored
4
core/assets/vendor/ckeditor/lang/ku.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/lt.js
vendored
4
core/assets/vendor/ckeditor/lang/lt.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/lv.js
vendored
4
core/assets/vendor/ckeditor/lang/lv.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/mk.js
vendored
4
core/assets/vendor/ckeditor/lang/mk.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/mn.js
vendored
4
core/assets/vendor/ckeditor/lang/mn.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ms.js
vendored
4
core/assets/vendor/ckeditor/lang/ms.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/nb.js
vendored
4
core/assets/vendor/ckeditor/lang/nb.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/nl.js
vendored
4
core/assets/vendor/ckeditor/lang/nl.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/no.js
vendored
4
core/assets/vendor/ckeditor/lang/no.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/pl.js
vendored
4
core/assets/vendor/ckeditor/lang/pl.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/pt-br.js
vendored
4
core/assets/vendor/ckeditor/lang/pt-br.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/pt.js
vendored
4
core/assets/vendor/ckeditor/lang/pt.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ro.js
vendored
4
core/assets/vendor/ckeditor/lang/ro.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ru.js
vendored
4
core/assets/vendor/ckeditor/lang/ru.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/si.js
vendored
4
core/assets/vendor/ckeditor/lang/si.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sk.js
vendored
4
core/assets/vendor/ckeditor/lang/sk.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sl.js
vendored
4
core/assets/vendor/ckeditor/lang/sl.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sq.js
vendored
4
core/assets/vendor/ckeditor/lang/sq.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sr-latn.js
vendored
4
core/assets/vendor/ckeditor/lang/sr-latn.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sr.js
vendored
4
core/assets/vendor/ckeditor/lang/sr.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/sv.js
vendored
4
core/assets/vendor/ckeditor/lang/sv.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/th.js
vendored
4
core/assets/vendor/ckeditor/lang/th.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/tr.js
vendored
4
core/assets/vendor/ckeditor/lang/tr.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/tt.js
vendored
4
core/assets/vendor/ckeditor/lang/tt.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/ug.js
vendored
4
core/assets/vendor/ckeditor/lang/ug.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/uk.js
vendored
4
core/assets/vendor/ckeditor/lang/uk.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/vi.js
vendored
4
core/assets/vendor/ckeditor/lang/vi.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/zh-cn.js
vendored
4
core/assets/vendor/ckeditor/lang/zh-cn.js
vendored
File diff suppressed because one or more lines are too long
4
core/assets/vendor/ckeditor/lang/zh.js
vendored
4
core/assets/vendor/ckeditor/lang/zh.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add("a11yHelp",function(l){var a=l.lang.a11yhelp,n=CKEDITOR.tools.getNextId(),e={8:a.backspace,9:a.tab,13:a.enter,16:a.shift,17:a.ctrl,18:a.alt,19:a.pause,20:a.capslock,27:a.escape,33:a.pageUp,34:a.pageDown,35:a.end,36:a.home,37:a.leftArrow,38:a.upArrow,39:a.rightArrow,40:a.downArrow,45:a.insert,46:a["delete"],91:a.leftWindowKey,92:a.rightWindowKey,93:a.selectKey,96:a.numpad0,97:a.numpad1,98:a.numpad2,99:a.numpad3,100:a.numpad4,101:a.numpad5,102:a.numpad6,103:a.numpad7,104:a.numpad8,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
|
||||
cs.js Found: 30 Missing: 0
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","af",{title:"Toeganglikheid instruksies",contents:"Hulp inhoud. Druk ESC om toe te maak.",legend:[{name:"Algemeen",items:[{name:"Bewerker balk",legend:"Druk ${toolbarFocus} om op die werkbalk te land. Beweeg na die volgende en voorige wekrbalkgroep met TAB and SHIFT+TAB. Beweeg na die volgende en voorige werkbalkknop met die regter of linker pyl. Druk SPASIE of ENTER om die knop te bevestig."},{name:"Bewerker dialoog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","ar",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"عام",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","bg",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"Общо",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","ca",{title:"Instruccions d'Accessibilitat",contents:"Continguts de l'Ajuda. Per tancar aquest quadre de diàleg premi ESC.",legend:[{name:"General",items:[{name:"Editor de barra d'eines",legend:"Premi ${toolbarFocus} per desplaçar-se per la barra d'eines. Vagi en el següent i anterior grup de barra d'eines amb TAB i SHIFT+TAB. Vagi en el següent i anterior botó de la barra d'eines amb RIGHT ARROW i LEFT ARROW. Premi SPACE o ENTER per activar el botó de la barra d'eines."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","cs",{title:"Instrukce pro přístupnost",contents:"Obsah nápovědy. Pro uzavření tohoto dialogu stiskněte klávesu ESC.",legend:[{name:"Obecné",items:[{name:"Panel nástrojů editoru",legend:"Stiskněte${toolbarFocus} k procházení panelu nástrojů. Přejděte na další a předchozí skupiny pomocí TAB a SHIFT+TAB. Přechod na další a předchozí tlačítko panelu nástrojů je pomocí ŠIPKA VPRAVO nebo ŠIPKA VLEVO. Stisknutím mezerníku nebo klávesy ENTER tlačítko aktivujete."},{name:"Dialogové okno editoru",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","cy",{title:"Canllawiau Hygyrchedd",contents:"Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.",legend:[{name:"Cyffredinol",items:[{name:"Bar Offer y Golygydd",legend:"Pwyswch $ {toolbarFocus} i fynd at y bar offer. Symudwch i'r grŵp bar offer nesaf a blaenorol gyda TAB a SHIFT+TAB. Symudwch i'r botwm bar offer nesaf a blaenorol gyda SAETH DDE neu SAETH CHWITH. Pwyswch SPACE neu ENTER i wneud botwm y bar offer yn weithredol."},{name:"Deialog y Golygydd",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","da",{title:"Tilgængelighedsinstrukser",contents:"Onlinehjælp. For at lukke dette vindue klik ESC",legend:[{name:"Generelt",items:[{name:"Editor værktøjslinje",legend:"Tryk ${toolbarFocus} for at navigere til værktøjslinjen. Flyt til næste eller forrige værktøjsline gruppe ved hjælp af TAB eller SHIFT+TAB. Flyt til næste eller forrige værktøjslinje knap med venstre- eller højre piltast. Tryk på SPACE eller ENTER for at aktivere værktøjslinje knappen."},{name:"Editor dialogboks",
|
||||
|
|
12
core/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js
vendored
Normal file
12
core/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","de-ch",{title:"Barrierefreiheitinformationen",contents:"Hilfeinhalt. Um den Dialog zu schliessen die Taste ESC drücken.",legend:[{name:"Allgemein",items:[{name:"Editorwerkzeugleiste",legend:"Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT+TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren."},
|
||||
{name:"Editordialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Editor-Kontextmenü",legend:"Dürcken Sie ${contextMenu} oder die Anwendungstaste um das Kontextmenü zu öffnen. Man kann die Pfeiltasten zum Wechsel benutzen. Mit der Leertaste oder der Enter-Taste kann man den Menüpunkt aufrufen. Schliessen Sie das Kontextmenü mit der ESC-Taste."},
|
||||
{name:"Editor-Listenbox",legend:"Innerhalb einer Listenbox kann man mit der TAB-Taste oder den Pfeilrunter-Taste den nächsten Menüeintrag wählen. Mit der SHIFT+TAB Tastenkombination oder der Pfeilhoch-Taste gelangt man zum vorherigen Menüpunkt. Mit der Leertaste oder Enter kann man den Menüpunkt auswählen. Drücken Sie ESC zum Verlassen des Menüs."},{name:"Editor-Elementpfadleiste",legend:"Drücken Sie ${elementsPathFocus} um sich durch die Pfadleiste zu bewegen. Um zum nächsten Element zu gelangen drücken Sie TAB oder die Pfeilrechts-Taste. Zum vorherigen Element gelangen Sie mit der SHIFT+TAB oder der Pfeillinks-Taste. Drücken Sie die Leertaste oder Enter um das Element auszuwählen."}]},
|
||||
{name:"Befehle",items:[{name:"Rückgängig-Befehl",legend:"Drücken Sie ${undo}"},{name:"Wiederherstellen-Befehl",legend:"Drücken Sie ${redo}"},{name:"Fettschrift-Befehl",legend:"Drücken Sie ${bold}"},{name:"Kursiv-Befehl",legend:"Drücken Sie ${italic}"},{name:"Unterstreichen-Befehl",legend:"Drücken Sie ${underline}"},{name:"Link-Befehl",legend:"Drücken Sie ${link}"},{name:"Werkzeugleiste einklappen-Befehl",legend:"Drücken Sie ${toolbarCollapse}"},{name:"Zugang bisheriger Fokussierung Raumbefehl ",legend:"Drücken Sie ${accessPreviousSpace} auf den am nächsten nicht erreichbar Fokus-Abstand vor die Einfügemarke zugreifen: zwei benachbarte HR-Elemente. Wiederholen Sie die Tastenkombination um entfernte Fokusräume zu erreichen. "},
|
||||
{name:"Zugang nächster Schwerpunkt Raumbefehl ",legend:"Drücken Sie $ { accessNextSpace }, um den nächsten unerreichbar Fokus Leerzeichen nach dem Cursor zum Beispiel auf: zwei benachbarten HR Elemente. Wiederholen Sie die Tastenkombination zum fernen Fokus Bereiche zu erreichen. "},{name:"Eingabehilfen",legend:"Drücken Sie ${a11yHelp}"}]}],backspace:"Rücktaste",tab:"Tab",enter:"Eingabe",shift:"Umschalt",ctrl:"Strg",alt:"Alt",pause:"Pause",capslock:"Feststell",escape:"Escape",pageUp:"Bild auf",pageDown:"Bild ab",
|
||||
end:"Ende",home:"Pos1",leftArrow:"Linke Pfeiltaste",upArrow:"Obere Pfeiltaste",rightArrow:"Rechte Pfeiltaste",downArrow:"Untere Pfeiltaste",insert:"Einfügen","delete":"Entfernen",leftWindowKey:"Linke Windowstaste",rightWindowKey:"Rechte Windowstaste",selectKey:"Taste auswählen",numpad0:"Ziffernblock 0",numpad1:"Ziffernblock 1",numpad2:"Ziffernblock 2",numpad3:"Ziffernblock 3",numpad4:"Ziffernblock 4",numpad5:"Ziffernblock 5",numpad6:"Ziffernblock 6",numpad7:"Ziffernblock 7",numpad8:"Ziffernblock 8",
|
||||
numpad9:"Ziffernblock 9",multiply:"Multiplizieren",add:"Addieren",subtract:"Subtrahieren",decimalPoint:"Punkt",divide:"Dividieren",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Ziffernblock feststellen",scrollLock:"Rollen",semiColon:"Semikolon",equalSign:"Gleichheitszeichen",comma:"Komma",dash:"Bindestrich",period:"Punkt",forwardSlash:"Schrägstrich",graveAccent:"Gravis",openBracket:"Öffnende eckige Klammer",backSlash:"Rückwärtsgewandter Schrägstrich",
|
||||
closeBracket:"Schliessende eckige Klammer",singleQuote:"Einfaches Anführungszeichen"});
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","de",{title:"Barrierefreiheitinformationen",contents:"Hilfeinhalt. Um den Dialog zu schliessen die Taste ESC drücken.",legend:[{name:"Allgemein",items:[{name:"Editorwerkzeugleiste",legend:"Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT+TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","el",{title:"Οδηγίες Προσβασιμότητας",contents:"Περιεχόμενα Βοήθειας. Πατήστε ESC για κλείσιμο.",legend:[{name:"Γενικά",items:[{name:"Εργαλειοθήκη Επεξεργαστή",legend:"Πατήστε ${toolbarFocus} για να περιηγηθείτε στην γραμμή εργαλείων. Μετακινηθείτε ανάμεσα στις ομάδες της γραμμής εργαλείων με TAB και SHIFT+TAB. Μετακινηθείτε ανάμεσα στα κουμπιά εργαλείων με το ΔΕΞΙ ή ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Πατήστε ΔΙΑΣΤΗΜΑ ή ENTER για να ενεργοποιήσετε το ενεργό κουμπί εργαλείου."},{name:"Παράθυρο Διαλόγου Επεξεργαστή",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","en-gb",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","en",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","eo",{title:"Uzindikoj pri atingeblo",contents:"Helpilenhavo. Por fermi tiun dialogon, premu la ESKAPAN klavon.",legend:[{name:"Ĝeneralaĵoj",items:[{name:"Ilbreto de la redaktilo",legend:"Premu ${toolbarFocus} por atingi la ilbreton. Moviĝu al la sekva aŭ antaŭa grupoj de la ilbreto per la klavoj TABA kaj MAJUSKLIGA+TABA. Moviĝu al la sekva aŭ antaŭa butonoj de la ilbreto per la klavoj SAGO DEKSTREN kaj SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por aktivigi la ilbretbutonon."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","es",{title:"Instrucciones de accesibilidad",contents:"Ayuda. Para cerrar presione ESC.",legend:[{name:"General",items:[{name:"Barra de herramientas del editor",legend:'Presiona ${toolbarFocus} para navegar por la barra de herramientas. Para moverse por los distintos grupos de herramientas usa las teclas TAB y MAY+TAB. Para moverse por las distintas herramientas usa FLECHA DERECHA o FECHA IZQUIERDA. Presiona "espacio" o "intro" para activar la herramienta.'},{name:"Editor de diálogo",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","et",{title:"Accessibility Instructions",contents:"Abi sisu. Selle dialoogi sulgemiseks vajuta ESC klahvi.",legend:[{name:"Üldine",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","eu",{title:"Erabilerraztasunaren argibideak",contents:"Laguntzaren edukiak. Elkarrizketa-koadro hau ixteko sakatu ESC.",legend:[{name:"Orokorra",items:[{name:"Editorearen tresna-barra",legend:"Sakatu ${toolbarFocus} tresna-barrara nabigatzeko. Tresna-barrako aurreko eta hurrengo taldera joateko erabili TAB eta MAIUS+TAB. Tresna-barrako aurreko eta hurrengo botoira joateko erabili ESKUIN-GEZIA eta EZKER-GEZIA. Sakatu ZURIUNEA edo SARTU tresna-barrako botoia aktibatzeko."},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fa",{title:"دستورالعملهای دسترسی",contents:"راهنمای فهرست مطالب. برای بستن این کادر محاورهای ESC را فشار دهید.",legend:[{name:"عمومی",items:[{name:"نوار ابزار ویرایشگر",legend:"${toolbarFocus} را برای باز کردن نوار ابزار بفشارید. با کلید Tab و Shift+Tab در مجموعه نوار ابزار بعدی و قبلی حرکت کنید. برای حرکت در کلید نوار ابزار قبلی و بعدی با کلید جهتنمای راست و چپ جابجا شوید. کلید Space یا Enter را برای فعال کردن کلید نوار ابزار بفشارید."},{name:"پنجره محاورهای ویرایشگر",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue