@ckeditor/ckeditor5-clipboard 0.0.0-nightly-next-20260117.0 → 0.0.0-nightly-20260118.0

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.
Files changed (104) hide show
  1. package/lang/contexts.json +5 -0
  2. package/lang/translations/af.po +24 -0
  3. package/lang/translations/ar.po +24 -0
  4. package/lang/translations/ast.po +24 -0
  5. package/lang/translations/az.po +24 -0
  6. package/lang/translations/be.po +24 -0
  7. package/lang/translations/bg.po +24 -0
  8. package/lang/translations/bn.po +24 -0
  9. package/lang/translations/bs.po +24 -0
  10. package/lang/translations/ca.po +24 -0
  11. package/lang/translations/cs.po +24 -0
  12. package/lang/translations/da.po +24 -0
  13. package/lang/translations/de-ch.po +24 -0
  14. package/lang/translations/de.po +24 -0
  15. package/lang/translations/el.po +24 -0
  16. package/lang/translations/en-au.po +24 -0
  17. package/lang/translations/en-gb.po +24 -0
  18. package/lang/translations/en.po +24 -0
  19. package/lang/translations/eo.po +24 -0
  20. package/lang/translations/es-co.po +24 -0
  21. package/lang/translations/es.po +24 -0
  22. package/lang/translations/et.po +24 -0
  23. package/lang/translations/eu.po +24 -0
  24. package/lang/translations/fa.po +24 -0
  25. package/lang/translations/fi.po +24 -0
  26. package/lang/translations/fr.po +24 -0
  27. package/lang/translations/gl.po +24 -0
  28. package/lang/translations/gu.po +24 -0
  29. package/lang/translations/he.po +24 -0
  30. package/lang/translations/hi.po +24 -0
  31. package/lang/translations/hr.po +24 -0
  32. package/lang/translations/hu.po +24 -0
  33. package/lang/translations/hy.po +24 -0
  34. package/lang/translations/id.po +24 -0
  35. package/lang/translations/it.po +24 -0
  36. package/lang/translations/ja.po +24 -0
  37. package/lang/translations/jv.po +24 -0
  38. package/lang/translations/kk.po +24 -0
  39. package/lang/translations/km.po +24 -0
  40. package/lang/translations/kn.po +24 -0
  41. package/lang/translations/ko.po +24 -0
  42. package/lang/translations/ku.po +24 -0
  43. package/lang/translations/lt.po +24 -0
  44. package/lang/translations/lv.po +24 -0
  45. package/lang/translations/ms.po +24 -0
  46. package/lang/translations/nb.po +24 -0
  47. package/lang/translations/ne.po +24 -0
  48. package/lang/translations/nl.po +24 -0
  49. package/lang/translations/no.po +24 -0
  50. package/lang/translations/oc.po +24 -0
  51. package/lang/translations/pl.po +24 -0
  52. package/lang/translations/pt-br.po +24 -0
  53. package/lang/translations/pt.po +24 -0
  54. package/lang/translations/ro.po +24 -0
  55. package/lang/translations/ru.po +24 -0
  56. package/lang/translations/si.po +24 -0
  57. package/lang/translations/sk.po +24 -0
  58. package/lang/translations/sl.po +24 -0
  59. package/lang/translations/sq.po +24 -0
  60. package/lang/translations/sr-latn.po +24 -0
  61. package/lang/translations/sr.po +24 -0
  62. package/lang/translations/sv.po +24 -0
  63. package/lang/translations/th.po +24 -0
  64. package/lang/translations/ti.po +24 -0
  65. package/lang/translations/tk.po +24 -0
  66. package/lang/translations/tr.po +24 -0
  67. package/lang/translations/tt.po +24 -0
  68. package/lang/translations/ug.po +24 -0
  69. package/lang/translations/uk.po +24 -0
  70. package/lang/translations/ur.po +24 -0
  71. package/lang/translations/uz.po +24 -0
  72. package/lang/translations/vi.po +24 -0
  73. package/lang/translations/zh-cn.po +24 -0
  74. package/lang/translations/zh.po +24 -0
  75. package/package.json +43 -23
  76. package/src/augmentation.js +5 -0
  77. package/src/clipboard.js +66 -0
  78. package/src/clipboardmarkersutils.js +500 -0
  79. package/src/clipboardobserver.js +75 -0
  80. package/src/clipboardpipeline.js +287 -0
  81. package/src/dragdrop.js +619 -0
  82. package/src/dragdropblocktoolbar.js +124 -0
  83. package/src/dragdroptarget.js +390 -0
  84. package/src/index.js +23 -0
  85. package/src/lineview.js +46 -0
  86. package/src/pasteplaintext.js +102 -0
  87. package/src/utils/normalizeclipboarddata.js +28 -0
  88. package/src/utils/plaintexttohtml.js +39 -0
  89. package/src/utils/viewtoplaintext.js +96 -0
  90. package/theme/clipboard.css +39 -0
  91. /package/{dist → src}/augmentation.d.ts +0 -0
  92. /package/{dist → src}/clipboard.d.ts +0 -0
  93. /package/{dist → src}/clipboardmarkersutils.d.ts +0 -0
  94. /package/{dist → src}/clipboardobserver.d.ts +0 -0
  95. /package/{dist → src}/clipboardpipeline.d.ts +0 -0
  96. /package/{dist → src}/dragdrop.d.ts +0 -0
  97. /package/{dist → src}/dragdropblocktoolbar.d.ts +0 -0
  98. /package/{dist → src}/dragdroptarget.d.ts +0 -0
  99. /package/{dist → src}/index.d.ts +0 -0
  100. /package/{dist → src}/lineview.d.ts +0 -0
  101. /package/{dist → src}/pasteplaintext.d.ts +0 -0
  102. /package/{dist → src}/utils/normalizeclipboarddata.d.ts +0 -0
  103. /package/{dist → src}/utils/plaintexttohtml.d.ts +0 -0
  104. /package/{dist → src}/utils/viewtoplaintext.d.ts +0 -0
@@ -0,0 +1,5 @@
1
+ {
2
+ "Copy selected content": "Keystroke description for assistive technologies: keystroke for copying selected content.",
3
+ "Paste content": "Keystroke description for assistive technologies: keystroke for pasting content.",
4
+ "Paste content as plain text": "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
5
+ }
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: af\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: ar\n"
11
+ "Plural-Forms: nplurals=6; plural=(n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "انسخْ المحتوى المحدد"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "الصقْ المحتوى"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "الصقْ المحتوى كنص عادي"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: ast\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: az\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: be\n"
11
+ "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Капіяваць выбраны змест"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Уставіць змест"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Уставіць змест у выглядзе простага тэксту"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: bg\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Копиране на избраното съдържание"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Поставяне на съдържанието"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Поставяне на съдържанието като обикновен текст"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: bn\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "সিলেক্ট করা কন্টেন্ট কপি করুন"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "কন্টেন্ট পেস্ট করুন"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "প্লেইন টেক্সট হিসেবে কন্টেন্ট পেস্ট করুন"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: bs\n"
11
+ "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: ca\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Copia el contingut seleccionat"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Enganxa el contingut"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Enganxa el contingut com a text pla"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: cs\n"
11
+ "Plural-Forms: nplurals=3; plural=(n == 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Zkopírovat vybraný obsah"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Vložit obsah"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Vyložit obsah jako prostý text"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: da\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Kopier markeret indhold"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Indsæt indhold"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Indsæt indhold som ren tekst"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: de_CH\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: de\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Markierten Inhalt kopieren"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Inhalt einfügen"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Inhalt als Klartext einfügen"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: el\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Αντιγραφή επιλεγμένου περιεχομένου"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Επικόλληση περιεχομένου"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Επικόλληση περιεχομένου ως απλό κείμενο"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: en_AU\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: en_GB\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: en\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Copy selected content"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Paste content"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Paste content as plain text"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: eo\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: es_CO\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Copiar contenido seleccionado"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Pegar contenido"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Pegar contenido como texto plano"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: es\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Copia el contenido seleccionado"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Pega el contenido"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Pega el contenido como texto sin formato"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: et\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Kopeeri valitud sisu"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Kleebi sisu"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Kleebi sisu lihttekstina"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: eu\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: fa\n"
11
+ "Plural-Forms: nplurals=1; plural=0;\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr ""
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr ""
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr ""
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: fi\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Kopioi valittu sisältö"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Liitä sisältö"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Liitä sisältö pelkkänä tekstinä"
@@ -0,0 +1,24 @@
1
+ # Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # Want to contribute to this file? Submit your changes via a GitHub Pull Request.
4
+ #
5
+ # Check out the official contributor's guide:
6
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Language: fr\n"
11
+ "Plural-Forms: nplurals=2; plural=(n <= -2 || n >= 2);\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+
14
+ msgctxt "Keystroke description for assistive technologies: keystroke for copying selected content."
15
+ msgid "Copy selected content"
16
+ msgstr "Copier le contenu sélectionné"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Coller le contenu"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Coller le contenu sous forme de texte brut"