Add ckeditor + editor mail
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
@import "tailwindcss";
|
||||
@import "editor/ckeditor5.css";
|
||||
@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');
|
||||
|
||||
h1,h2,h3,h4,h5,h6,
|
||||
|
||||
@@ -1,6 +1,29 @@
|
||||
import {disableBodyScroll, enableBodyScroll, clearAllBodyScrollLocks} from 'body-scroll-lock';
|
||||
import sortable from "sortablejs/src/Sortable.js";
|
||||
|
||||
import {
|
||||
InlineEditor,
|
||||
Autosave,
|
||||
Bold,
|
||||
Code,
|
||||
Essentials,
|
||||
FontBackgroundColor,
|
||||
FontColor,
|
||||
FontFamily,
|
||||
FontSize,
|
||||
Highlight,
|
||||
ImageEditing,
|
||||
ImageUtils,
|
||||
Italic,
|
||||
Paragraph,
|
||||
RemoveFormat,
|
||||
Strikethrough,
|
||||
Subscript,
|
||||
Superscript,
|
||||
Underline
|
||||
} from '../editor/ckeditor5.js';
|
||||
import translations from '../editor/translations/fr.js';
|
||||
|
||||
export class MainframeEmailEditor extends HTMLElement {
|
||||
connectedCallback() {
|
||||
|
||||
@@ -788,6 +811,75 @@ export class MainframeEmailEditor extends HTMLElement {
|
||||
link -> input + opt button
|
||||
social -> fb / insta / linkedin / tiktok
|
||||
`;
|
||||
if(mType == "text") {
|
||||
let textarea = document.createElement('div');
|
||||
textarea.classList = "editor-container editor-container_inline-editor";
|
||||
textarea.innerHTML = `<div class="editor-container__editor"><div id="editor"></div></div>`;
|
||||
|
||||
sideEditor.appendChild(textarea);
|
||||
|
||||
const LICENSE_KEY = 'GPL';
|
||||
const editorConfig = {
|
||||
toolbar: {
|
||||
items: [
|
||||
'undo',
|
||||
'redo',
|
||||
'|',
|
||||
'fontSize',
|
||||
'fontFamily',
|
||||
'fontColor',
|
||||
'fontBackgroundColor',
|
||||
'|',
|
||||
'bold',
|
||||
'italic',
|
||||
'underline',
|
||||
'strikethrough',
|
||||
'subscript',
|
||||
'superscript',
|
||||
'code',
|
||||
'removeFormat',
|
||||
'|',
|
||||
'highlight'
|
||||
],
|
||||
shouldNotGroupWhenFull: false
|
||||
},
|
||||
plugins: [
|
||||
Autosave,
|
||||
Bold,
|
||||
Code,
|
||||
Essentials,
|
||||
FontBackgroundColor,
|
||||
FontColor,
|
||||
FontFamily,
|
||||
FontSize,
|
||||
Highlight,
|
||||
ImageEditing,
|
||||
ImageUtils,
|
||||
Italic,
|
||||
Paragraph,
|
||||
RemoveFormat,
|
||||
Strikethrough,
|
||||
Subscript,
|
||||
Superscript,
|
||||
Underline
|
||||
],
|
||||
fontFamily: {
|
||||
supportAllValues: true
|
||||
},
|
||||
fontSize: {
|
||||
options: [10, 12, 14, 'default', 18, 20, 22],
|
||||
supportAllValues: true
|
||||
},
|
||||
initialData:
|
||||
"<h2>Congratulations on setting up CKEditor 5! 🎉</h2>\n<p>\n\tYou've successfully created a CKEditor 5 project. This powerful text editor\n\twill enhance your application, enabling rich text editing capabilities that\n\tare customizable and easy to use.\n</p>\n<h3>What's next?</h3>\n<ol>\n\t<li>\n\t\t<strong>Integrate into your app</strong>: time to bring the editing into\n\t\tyour application. Take the code you created and add to your application.\n\t</li>\n\t<li>\n\t\t<strong>Explore features:</strong> Experiment with different plugins and\n\t\ttoolbar options to discover what works best for your needs.\n\t</li>\n\t<li>\n\t\t<strong>Customize your editor:</strong> Tailor the editor's\n\t\tconfiguration to match your application's style and requirements. Or\n\t\teven write your plugin!\n\t</li>\n</ol>\n<p>\n\tKeep experimenting, and don't hesitate to push the boundaries of what you\n\tcan achieve with CKEditor 5. Your feedback is invaluable to us as we strive\n\tto improve and evolve. Happy editing!\n</p>\n<h3>Helpful resources</h3>\n<p>\n\t<i>An editor without the </i><code>Link</code>\n\t<i>plugin? That's brave! We hope the links below will be useful anyway </i>😉\n</p>\n<ul>\n\t<li>📝 Trial sign up: https://portal.ckeditor.com/checkout?plan=free,</li>\n\t<li>📕 Documentation: https://ckeditor.com/docs/ckeditor5/latest/installation/index.html,</li>\n\t<li>⭐️ GitHub (star us if you can!): https://github.com/ckeditor/ckeditor5,</li>\n\t<li>🏠 CKEditor Homepage: https://ckeditor.com,</li>\n\t<li>🧑💻 CKEditor 5 Demos: https://ckeditor.com/ckeditor-5/demo/</li>\n</ul>\n<h3>Need help?</h3>\n<p>\n\tSee this text, but the editor is not starting up? Check the browser's\n\tconsole for clues and guidance. It may be related to an incorrect license\n\tkey if you use premium features or another feature-related requirement. If\n\tyou cannot make it work, file a GitHub issue, and we will help as soon as\n\tpossible!\n</p>\n",
|
||||
language: 'fr',
|
||||
licenseKey: LICENSE_KEY,
|
||||
placeholder: 'Type or paste your content here!',
|
||||
translations: [translations]
|
||||
};
|
||||
InlineEditor.create(textarea, editorConfig);
|
||||
|
||||
}
|
||||
sideEditor.querySelector('.closed-btn-m').addEventListener('click', (e)=>{
|
||||
e.preventDefault();
|
||||
sideEditor.remove();
|
||||
|
||||
55
assets/editor/LICENSE-ckeditor5.md
Normal file
55
assets/editor/LICENSE-ckeditor5.md
Normal file
@@ -0,0 +1,55 @@
|
||||
Software License Agreement
|
||||
==========================
|
||||
|
||||
**CKEditor 5** (https://github.com/ckeditor/ckeditor5)<br>
|
||||
Copyright (c) 2003–2025, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
||||
|
||||
Licensed under a dual-license model, this software is available under:
|
||||
|
||||
* the [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html) (see COPYING.GPL),
|
||||
* or commercial license terms from CKSource Holding sp. z o.o.
|
||||
|
||||
For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
|
||||
|
||||
If you are using CKEditor under commercial terms, you are free to remove the COPYING.GPL file with the full copy of a GPL license.
|
||||
|
||||
Sources of Intellectual Property Included in CKEditor
|
||||
-----------------------------------------------------
|
||||
|
||||
Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor will incorporate work done by developers outside of CKSource with their express permission.
|
||||
|
||||
The following libraries are included in CKEditor under the [MIT license](https://opensource.org/licenses/MIT):
|
||||
|
||||
* @types/color-convert - Copyright (c) DefinitelyTyped.
|
||||
* blurhash - Copyright (c) Wolt Enterprises.
|
||||
* color-convert - Copyright (c) 2011–2016 Heather Arthur <fayearthur@gmail.com>, copyright (c) 2016–2021 Josh Junon <josh@junon.me>.
|
||||
* color-parse - Copyright (c) 2015 Dmitry Ivanov.
|
||||
* emojibase-data - Copyright (c) 2017-2019 Miles Johnson.
|
||||
* es-toolkit - Copyright (c) 2024 Viva Republica, Inc.
|
||||
* fuzzysort - Copyright (c) 2018 Stephen Kamenar.
|
||||
* is-emoji-supported - Copyright (c) 2016-2020 Koala Interactive, Inc.
|
||||
* vanilla-colorful - Copyright (c) 2020 Serhii Kulykov <iamkulykov@gmail.com>.
|
||||
* Regular Expression for URL validation - Copyright (c) 2010-2018 Diego Perini.
|
||||
* @types/hast - Copyright (c) Microsoft Corporation.
|
||||
* hast-util-to-html - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
||||
* hast-util-to-mdast - Copyright (c) Titus Wormer <tituswormer@gmail.com> and Copyright (c) Seth Vincent <sethvincent@gmail.com>
|
||||
* hastscript - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
||||
* rehype-remark - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
||||
* remark-breaks - Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
||||
* remark-gfm - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
||||
* remark-parse - Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
||||
* remark-rehype - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
||||
* remark-stringify - Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
||||
* unified - Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
||||
* unist-util-visit - Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
The following libraries are included in CKEditor under the [ISC license](https://opensource.org/license/isc-license-txt):
|
||||
|
||||
* hast-util-from-dom - Copyright (c) Keith McKnight <keith@mcknig.ht>
|
||||
* rehype-dom-parse - Copyright (c) 2018 Keith McKnight <keith@mcknig.ht>
|
||||
* rehype-dom-stringify - Copyright (c) 2018 Keith McKnight <keith@mcknig.ht>
|
||||
|
||||
Trademarks
|
||||
----------
|
||||
|
||||
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
||||
5
assets/editor/ckeditor5-content.css
Normal file
5
assets/editor/ckeditor5-content.css
Normal file
File diff suppressed because one or more lines are too long
5
assets/editor/ckeditor5-editor.css
Normal file
5
assets/editor/ckeditor5-editor.css
Normal file
File diff suppressed because one or more lines are too long
6
assets/editor/ckeditor5.css
Normal file
6
assets/editor/ckeditor5.css
Normal file
File diff suppressed because one or more lines are too long
1
assets/editor/ckeditor5.css.map
Normal file
1
assets/editor/ckeditor5.css.map
Normal file
File diff suppressed because one or more lines are too long
6
assets/editor/ckeditor5.js
Normal file
6
assets/editor/ckeditor5.js
Normal file
File diff suppressed because one or more lines are too long
1
assets/editor/ckeditor5.js.map
Normal file
1
assets/editor/ckeditor5.js.map
Normal file
File diff suppressed because one or more lines are too long
1388
assets/editor/ckeditor5.umd.js
Normal file
1388
assets/editor/ckeditor5.umd.js
Normal file
File diff suppressed because one or more lines are too long
1
assets/editor/ckeditor5.umd.js.map
Normal file
1
assets/editor/ckeditor5.umd.js.map
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/af.d.ts
vendored
Normal file
8
assets/editor/translations/af.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/af.js
Normal file
5
assets/editor/translations/af.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/af.umd.js
Normal file
11
assets/editor/translations/af.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/ar.d.ts
vendored
Normal file
8
assets/editor/translations/ar.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/ar.js
Normal file
5
assets/editor/translations/ar.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/ar.umd.js
Normal file
11
assets/editor/translations/ar.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/ast.d.ts
vendored
Normal file
8
assets/editor/translations/ast.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/ast.js
Normal file
5
assets/editor/translations/ast.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/ast.umd.js
Normal file
11
assets/editor/translations/ast.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/az.d.ts
vendored
Normal file
8
assets/editor/translations/az.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/az.js
Normal file
5
assets/editor/translations/az.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/az.umd.js
Normal file
11
assets/editor/translations/az.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/be.d.ts
vendored
Normal file
8
assets/editor/translations/be.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/be.js
Normal file
5
assets/editor/translations/be.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/be.umd.js
Normal file
11
assets/editor/translations/be.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/bg.d.ts
vendored
Normal file
8
assets/editor/translations/bg.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/bg.js
Normal file
5
assets/editor/translations/bg.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/bg.umd.js
Normal file
11
assets/editor/translations/bg.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/bn.d.ts
vendored
Normal file
8
assets/editor/translations/bn.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/bn.js
Normal file
5
assets/editor/translations/bn.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/bn.umd.js
Normal file
11
assets/editor/translations/bn.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/bs.d.ts
vendored
Normal file
8
assets/editor/translations/bs.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/bs.js
Normal file
5
assets/editor/translations/bs.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/bs.umd.js
Normal file
11
assets/editor/translations/bs.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/ca.d.ts
vendored
Normal file
8
assets/editor/translations/ca.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/ca.js
Normal file
5
assets/editor/translations/ca.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/ca.umd.js
Normal file
11
assets/editor/translations/ca.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/cs.d.ts
vendored
Normal file
8
assets/editor/translations/cs.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/cs.js
Normal file
5
assets/editor/translations/cs.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/cs.umd.js
Normal file
11
assets/editor/translations/cs.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/da.d.ts
vendored
Normal file
8
assets/editor/translations/da.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/da.js
Normal file
5
assets/editor/translations/da.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/da.umd.js
Normal file
11
assets/editor/translations/da.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/de-ch.d.ts
vendored
Normal file
8
assets/editor/translations/de-ch.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/de-ch.js
Normal file
5
assets/editor/translations/de-ch.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/de-ch.umd.js
Normal file
11
assets/editor/translations/de-ch.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/de.d.ts
vendored
Normal file
8
assets/editor/translations/de.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/de.js
Normal file
5
assets/editor/translations/de.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/de.umd.js
Normal file
11
assets/editor/translations/de.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/el.d.ts
vendored
Normal file
8
assets/editor/translations/el.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/el.js
Normal file
5
assets/editor/translations/el.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/el.umd.js
Normal file
11
assets/editor/translations/el.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/en-au.d.ts
vendored
Normal file
8
assets/editor/translations/en-au.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/en-au.js
Normal file
5
assets/editor/translations/en-au.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/en-au.umd.js
Normal file
11
assets/editor/translations/en-au.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/en-gb.d.ts
vendored
Normal file
8
assets/editor/translations/en-gb.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/en-gb.js
Normal file
5
assets/editor/translations/en-gb.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/en-gb.umd.js
Normal file
11
assets/editor/translations/en-gb.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/en.d.ts
vendored
Normal file
8
assets/editor/translations/en.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/en.js
Normal file
5
assets/editor/translations/en.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/en.umd.js
Normal file
11
assets/editor/translations/en.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/eo.d.ts
vendored
Normal file
8
assets/editor/translations/eo.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/eo.js
Normal file
5
assets/editor/translations/eo.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/eo.umd.js
Normal file
11
assets/editor/translations/eo.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/es-co.d.ts
vendored
Normal file
8
assets/editor/translations/es-co.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/es-co.js
Normal file
5
assets/editor/translations/es-co.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/es-co.umd.js
Normal file
11
assets/editor/translations/es-co.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/es.d.ts
vendored
Normal file
8
assets/editor/translations/es.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/es.js
Normal file
5
assets/editor/translations/es.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/es.umd.js
Normal file
11
assets/editor/translations/es.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/et.d.ts
vendored
Normal file
8
assets/editor/translations/et.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/et.js
Normal file
5
assets/editor/translations/et.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/et.umd.js
Normal file
11
assets/editor/translations/et.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/eu.d.ts
vendored
Normal file
8
assets/editor/translations/eu.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/eu.js
Normal file
5
assets/editor/translations/eu.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/eu.umd.js
Normal file
11
assets/editor/translations/eu.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/fa.d.ts
vendored
Normal file
8
assets/editor/translations/fa.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/fa.js
Normal file
5
assets/editor/translations/fa.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/fa.umd.js
Normal file
11
assets/editor/translations/fa.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/fi.d.ts
vendored
Normal file
8
assets/editor/translations/fi.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/fi.js
Normal file
5
assets/editor/translations/fi.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/fi.umd.js
Normal file
11
assets/editor/translations/fi.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/fr.d.ts
vendored
Normal file
8
assets/editor/translations/fr.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/fr.js
Normal file
5
assets/editor/translations/fr.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/fr.umd.js
Normal file
11
assets/editor/translations/fr.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/gl.d.ts
vendored
Normal file
8
assets/editor/translations/gl.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/gl.js
Normal file
5
assets/editor/translations/gl.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/gl.umd.js
Normal file
11
assets/editor/translations/gl.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/gu.d.ts
vendored
Normal file
8
assets/editor/translations/gu.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/gu.js
Normal file
5
assets/editor/translations/gu.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/gu.umd.js
Normal file
11
assets/editor/translations/gu.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/he.d.ts
vendored
Normal file
8
assets/editor/translations/he.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/he.js
Normal file
5
assets/editor/translations/he.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/he.umd.js
Normal file
11
assets/editor/translations/he.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/hi.d.ts
vendored
Normal file
8
assets/editor/translations/hi.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/hi.js
Normal file
5
assets/editor/translations/hi.js
Normal file
File diff suppressed because one or more lines are too long
11
assets/editor/translations/hi.umd.js
Normal file
11
assets/editor/translations/hi.umd.js
Normal file
File diff suppressed because one or more lines are too long
8
assets/editor/translations/hr.d.ts
vendored
Normal file
8
assets/editor/translations/hr.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
||||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
||||
*/
|
||||
|
||||
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
||||
declare const translations: Translations;
|
||||
export default translations;
|
||||
5
assets/editor/translations/hr.js
Normal file
5
assets/editor/translations/hr.js
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user