@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,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: pt_BR\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 conteúdo selecionado"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Colar conteúdo"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Colar conteúdo como texto simples"
@@ -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: pt\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 o conteúdo selecionado"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Colar o conteúdo"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Colar o conteúdo como texto sem formatação"
@@ -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: ro\n"
11
+ "Plural-Forms: nplurals=3; plural=(n == 1 ? 0 : (n == 0 || (n % 100 > 0 && 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 "Copiază conținutul selectat"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Lipește conținut"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Lipește conținutul ca text simplu"
@@ -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: ru\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: si_LK\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: sk\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 "Skopírovať vybraný obsah"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Prilepiť 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 "Prilepiť obsah iba ako 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: sl\n"
11
+ "Plural-Forms: nplurals=4; plural=(n % 100 == 1 ? 1 : n % 100 == 2 ? 2 : n % 100 == 3 || n % 100 == 4 ? 3 : 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: sq\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: sr@latin\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 "Kopirajte izabrani sadržaj"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Nalepite sadržaj"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Nalepite sadržaj kao običan 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: sr\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 "Kopiraj odabrani sadržaj"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Nalepi sadržaj"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Nalepi sadržaj kao običan 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: sv\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 "Kopiera markerat innehåll"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Klistra in innehåll"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Klistra in innehåll som vanlig 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: th\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: ti\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: tk\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: tr\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 "Seçilen içeriği kopyala"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "İçeriği yapıştır"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "İçeriği düz metin olarak yapıştır"
@@ -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: tt\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: ug\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: uk\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: ur\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: uz\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: vi\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 "Sao chép nội dung đã chọn"
17
+
18
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content."
19
+ msgid "Paste content"
20
+ msgstr "Dán nội dung"
21
+
22
+ msgctxt "Keystroke description for assistive technologies: keystroke for pasting content as plain text."
23
+ msgid "Paste content as plain text"
24
+ msgstr "Dán nội dung dưới dạng văn bản thuần túy"
@@ -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: zh_CN\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: zh_TW\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 "將內容貼上為純文字"