@ckeditor/ckeditor5-clipboard 43.0.0-alpha.0 → 43.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+
6
+ import type { Translations } from '@ckeditor/ckeditor5-utils';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ export default {"gl":{"dictionary":{"Copy selected content":"Copiar o contido seleccionado","Paste content":"Pegar contido","Paste content as plain text":"Pega o contido como texto simple"},getPluralForm(n){return (n != 1);}}}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+
6
+ ( e => {
7
+ const { [ 'gl' ]: { dictionary, getPluralForm } } = {"gl":{"dictionary":{"Copy selected content":"Copiar o contido seleccionado","Paste content":"Pegar contido","Paste content as plain text":"Pega o contido como texto simple"},getPluralForm(n){return (n != 1);}}};
8
+ e[ 'gl' ] ||= { dictionary: {}, getPluralForm: null };
9
+ e[ 'gl' ].dictionary = Object.assign( e[ 'gl' ].dictionary, dictionary );
10
+ e[ 'gl' ].getPluralForm = getPluralForm;
11
+ } )( window.CKEDITOR_TRANSLATIONS ||= {} );
@@ -0,0 +1,30 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Galician (https://app.transifex.com/ckeditor/teams/11143/gl/)\n"
16
+ "Language: gl\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
21
+ msgid "Copy selected content"
22
+ msgstr "Copiar o contido seleccionado"
23
+
24
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
25
+ msgid "Paste content"
26
+ msgstr "Pegar contido"
27
+
28
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
29
+ msgid "Paste content as plain text"
30
+ msgstr "Pega o contido como texto simple"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-clipboard",
3
- "version": "43.0.0-alpha.0",
3
+ "version": "43.0.0-alpha.2",
4
4
  "description": "Clipboard integration feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "43.0.0-alpha.0",
17
- "@ckeditor/ckeditor5-engine": "43.0.0-alpha.0",
18
- "@ckeditor/ckeditor5-ui": "43.0.0-alpha.0",
19
- "@ckeditor/ckeditor5-utils": "43.0.0-alpha.0",
20
- "@ckeditor/ckeditor5-widget": "43.0.0-alpha.0",
16
+ "@ckeditor/ckeditor5-core": "43.0.0-alpha.2",
17
+ "@ckeditor/ckeditor5-engine": "43.0.0-alpha.2",
18
+ "@ckeditor/ckeditor5-ui": "43.0.0-alpha.2",
19
+ "@ckeditor/ckeditor5-utils": "43.0.0-alpha.2",
20
+ "@ckeditor/ckeditor5-widget": "43.0.0-alpha.2",
21
21
  "lodash-es": "4.17.21"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",