Parcourir la source

Merge branch 'stable'

Piotrek Koszuliński il y a 6 ans
Parent
commit
9312b41f8d

+ 3 - 3
packages/ckeditor5-ckfinder/README.md

@@ -8,13 +8,13 @@ CKEditor 5's CKFinder integration
 [![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-ckfinder/status.svg)](https://david-dm.org/ckeditor/ckeditor5-ckfinder)
 [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-ckfinder/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-ckfinder?type=dev)
 
-This package implements the [CKFinder feature](https://ckeditor.com/docs/ckeditor5/latest/features/ckfinder.html). This feature allows you to easily insert images as well as links to files into the editor content. It is a bridge between the CKEditor 5 WYSIWYG editor and the [CKFinder file manager and uploader](https://ckeditor.com/ckfinder).
+This package implements the [CKFinder feature](https://ckeditor.com/docs/ckeditor5/latest/features/ckfinder.html). This feature allows you to easily insert images as well as links to files into the editor content. It is a bridge between CKEditor 5 WYSIWYG editor and [CKFinder file manager and uploader](https://ckeditor.com/ckfinder).
 
 ## Documentation
 
-See the ["CKFinder integration" guide](https://ckeditor.com/docs/ckeditor5/latest/features/ckfinder.html) and the [plugin documentation](https://ckeditor.com/docs/ckeditor5/latest/api/ckfinder.html) to learn more about the integration.
+See the [CKFinder integration guide](https://ckeditor.com/docs/ckeditor5/latest/features/ckfinder.html) and the [plugin documentation](https://ckeditor.com/docs/ckeditor5/latest/api/ckfinder.html) to learn more about the integration.
 
-Check out the [comprehensive "Image upload" guide](https://ckeditor.com/docs/ckeditor5/latest/features/image-upload.html) to learn about other ways to upload images into CKEditor 5.
+Check out the [comprehensive Image upload guide](https://ckeditor.com/docs/ckeditor5/latest/features/image-upload.html) to learn about other ways to upload images into CKEditor 5.
 
 ## License
 

+ 6 - 5
packages/ckeditor5-ckfinder/src/ckfinder.js

@@ -89,8 +89,8 @@ export default class CKFinder extends Plugin {
  *
  * Supported types are:
  *
- * * `'modal'` - opens a CKFinder in a modal,
- * * `'popup'` - opens a CKFinder in a new "pop-up" window.
+ * * `'modal'` – Opens CKFinder in a modal,
+ * * `'popup'` – Opens CKFinder in a new "pop-up" window.
  *
  * Defaults to `'modal'`.
  *
@@ -98,10 +98,11 @@ export default class CKFinder extends Plugin {
  */
 
 /**
- * The path (URL) to the connector which handles the file upload in the CKFinder file manager.
- * When specified, enables the automatic upload of resources such as images inserted into the content.
+ * The path (URL) to the connector which handles the file upload in CKFinder file manager.
+ * When specified, it enables the automatic upload of resources such as images inserted into the content.
  *
- * For instance, to use CKFinder's {@glink @ckfinder ckfinder3-php/commands.html#command_quick_upload quick upload}
+ * For instance, to use CKFinder's
+ * [quick upload](https://ckeditor.com/docs/ckfinder/ckfinder3-php/commands.html#command_quick_upload)
  * command, your can use the following (or similar) path:
  *
  *		ClassicEditor

+ 2 - 2
packages/ckeditor5-ckfinder/src/ckfindercommand.js

@@ -13,8 +13,8 @@ import Command from '@ckeditor/ckeditor5-core/src/command';
 import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';
 
 /**
- * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing ckfinder editing feature}
- * to open a CKFinder file browser to insert an image or a link to a file into content.
+ * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing CKFinder editing feature}
+ * to open the CKFinder file manager to insert an image or a link to a file into the editor content.
  *
  *		editor.execute( 'ckfinder' );
  *

+ 1 - 1
packages/ckeditor5-ckfinder/src/ckfinderediting.js

@@ -15,7 +15,7 @@ import Notification from '@ckeditor/ckeditor5-ui/src/notification/notification';
 import CKFinderCommand from './ckfindercommand';
 
 /**
- * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand ckfinder command}.
+ * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}.
  *
  * @extends module:core/plugin~Plugin
  */

+ 1 - 1
packages/ckeditor5-ckfinder/src/ckfinderui.js

@@ -13,7 +13,7 @@ import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
 import browseFilesIcon from '../theme/icons/browse-files.svg';
 
 /**
- * The CKFinder UI plugin. It introduces he `'ckfinder'` toolbar button.
+ * The CKFinder UI plugin. It introduces the `'ckfinder'` toolbar button.
  *
  * @extends module:core/plugin~Plugin
  */