@ckeditor/ckeditor5-undo 47.6.1-alpha.1 → 48.0.0-alpha.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 (94) hide show
  1. package/ckeditor5-metadata.json +3 -3
  2. package/dist/index.css +3 -0
  3. package/dist/index.css.map +1 -0
  4. package/package.json +23 -43
  5. package/lang/contexts.json +0 -4
  6. package/lang/translations/af.po +0 -20
  7. package/lang/translations/ar.po +0 -20
  8. package/lang/translations/ast.po +0 -20
  9. package/lang/translations/az.po +0 -20
  10. package/lang/translations/be.po +0 -20
  11. package/lang/translations/bg.po +0 -20
  12. package/lang/translations/bn.po +0 -20
  13. package/lang/translations/bs.po +0 -20
  14. package/lang/translations/ca.po +0 -20
  15. package/lang/translations/cs.po +0 -20
  16. package/lang/translations/da.po +0 -20
  17. package/lang/translations/de-ch.po +0 -20
  18. package/lang/translations/de.po +0 -20
  19. package/lang/translations/el.po +0 -20
  20. package/lang/translations/en-au.po +0 -20
  21. package/lang/translations/en-gb.po +0 -20
  22. package/lang/translations/en.po +0 -20
  23. package/lang/translations/eo.po +0 -20
  24. package/lang/translations/es-co.po +0 -20
  25. package/lang/translations/es.po +0 -20
  26. package/lang/translations/et.po +0 -20
  27. package/lang/translations/eu.po +0 -20
  28. package/lang/translations/fa.po +0 -20
  29. package/lang/translations/fi.po +0 -20
  30. package/lang/translations/fr.po +0 -20
  31. package/lang/translations/gl.po +0 -20
  32. package/lang/translations/gu.po +0 -20
  33. package/lang/translations/he.po +0 -20
  34. package/lang/translations/hi.po +0 -20
  35. package/lang/translations/hr.po +0 -20
  36. package/lang/translations/hu.po +0 -20
  37. package/lang/translations/hy.po +0 -20
  38. package/lang/translations/id.po +0 -20
  39. package/lang/translations/it.po +0 -20
  40. package/lang/translations/ja.po +0 -20
  41. package/lang/translations/jv.po +0 -20
  42. package/lang/translations/kk.po +0 -20
  43. package/lang/translations/km.po +0 -20
  44. package/lang/translations/kn.po +0 -20
  45. package/lang/translations/ko.po +0 -20
  46. package/lang/translations/ku.po +0 -20
  47. package/lang/translations/lt.po +0 -20
  48. package/lang/translations/lv.po +0 -20
  49. package/lang/translations/ms.po +0 -20
  50. package/lang/translations/nb.po +0 -20
  51. package/lang/translations/ne.po +0 -20
  52. package/lang/translations/nl.po +0 -20
  53. package/lang/translations/no.po +0 -20
  54. package/lang/translations/oc.po +0 -20
  55. package/lang/translations/pl.po +0 -20
  56. package/lang/translations/pt-br.po +0 -20
  57. package/lang/translations/pt.po +0 -20
  58. package/lang/translations/ro.po +0 -20
  59. package/lang/translations/ru.po +0 -20
  60. package/lang/translations/si.po +0 -20
  61. package/lang/translations/sk.po +0 -20
  62. package/lang/translations/sl.po +0 -20
  63. package/lang/translations/sq.po +0 -20
  64. package/lang/translations/sr-latn.po +0 -20
  65. package/lang/translations/sr.po +0 -20
  66. package/lang/translations/sv.po +0 -20
  67. package/lang/translations/th.po +0 -20
  68. package/lang/translations/ti.po +0 -20
  69. package/lang/translations/tk.po +0 -20
  70. package/lang/translations/tr.po +0 -20
  71. package/lang/translations/tt.po +0 -20
  72. package/lang/translations/ug.po +0 -20
  73. package/lang/translations/uk.po +0 -20
  74. package/lang/translations/ur.po +0 -20
  75. package/lang/translations/uz.po +0 -20
  76. package/lang/translations/vi.po +0 -20
  77. package/lang/translations/zh-cn.po +0 -20
  78. package/lang/translations/zh.po +0 -20
  79. package/src/augmentation.js +0 -5
  80. package/src/basecommand.js +0 -192
  81. package/src/index.js +0 -14
  82. package/src/redocommand.js +0 -44
  83. package/src/undo.js +0 -127
  84. package/src/undocommand.js +0 -44
  85. package/src/undoediting.js +0 -109
  86. package/src/undoui.js +0 -80
  87. /package/{src → dist}/augmentation.d.ts +0 -0
  88. /package/{src → dist}/basecommand.d.ts +0 -0
  89. /package/{src → dist}/index.d.ts +0 -0
  90. /package/{src → dist}/redocommand.d.ts +0 -0
  91. /package/{src → dist}/undo.d.ts +0 -0
  92. /package/{src → dist}/undocommand.d.ts +0 -0
  93. /package/{src → dist}/undoediting.d.ts +0 -0
  94. /package/{src → dist}/undoui.d.ts +0 -0
@@ -5,17 +5,17 @@
5
5
  "className": "Undo",
6
6
  "description": "Support the undo and redo functionalities.",
7
7
  "docs": "features/undo-redo.html",
8
- "path": "src/undo.js",
8
+ "path": "src/undo.ts",
9
9
  "uiComponents": [
10
10
  {
11
11
  "type": "Button",
12
12
  "name": "undo",
13
- "iconPath": "@ckeditor/ckeditor5-icons/theme/icons/undo.svg"
13
+ "iconName": "IconUndo"
14
14
  },
15
15
  {
16
16
  "type": "Button",
17
17
  "name": "redo",
18
- "iconPath": "@ckeditor/ckeditor5-icons/theme/icons/redo.svg"
18
+ "iconName": "IconRedo"
19
19
  }
20
20
  ]
21
21
  }
package/dist/index.css CHANGED
@@ -2,3 +2,6 @@
2
2
  * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
+
6
+
7
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index.css.map */"]}
package/package.json CHANGED
@@ -1,61 +1,41 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-undo",
3
- "version": "47.6.1-alpha.1",
3
+ "version": "48.0.0-alpha.0",
4
4
  "description": "Undo feature for CKEditor 5.",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "author": "CKSource (http://cksource.com/)",
7
+ "homepage": "https://ckeditor.com/ckeditor-5",
8
+ "bugs": "https://github.com/ckeditor/ckeditor5/issues",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/ckeditor/ckeditor5.git",
12
+ "directory": "packages/ckeditor5-undo"
13
+ },
5
14
  "keywords": [
6
15
  "ckeditor",
7
16
  "ckeditor5",
8
17
  "ckeditor 5",
9
18
  "ckeditor5-feature",
10
- "ckeditor5-plugin",
11
- "ckeditor5-dll"
19
+ "ckeditor5-plugin"
12
20
  ],
13
21
  "type": "module",
14
- "main": "src/index.js",
15
- "dependencies": {
16
- "@ckeditor/ckeditor5-core": "47.6.1-alpha.1",
17
- "@ckeditor/ckeditor5-engine": "47.6.1-alpha.1",
18
- "@ckeditor/ckeditor5-icons": "47.6.1-alpha.1",
19
- "@ckeditor/ckeditor5-ui": "47.6.1-alpha.1",
20
- "@ckeditor/ckeditor5-utils": "47.6.1-alpha.1"
22
+ "main": "./dist/index.js",
23
+ "exports": {
24
+ ".": "./dist/index.js",
25
+ "./dist/*": "./dist/*",
26
+ "./package.json": "./package.json"
21
27
  },
22
- "author": "CKSource (http://cksource.com/)",
23
- "license": "SEE LICENSE IN LICENSE.md",
24
- "homepage": "https://ckeditor.com/ckeditor-5",
25
- "bugs": "https://github.com/ckeditor/ckeditor5/issues",
26
- "repository": {
27
- "type": "git",
28
- "url": "https://github.com/ckeditor/ckeditor5.git",
29
- "directory": "packages/ckeditor5-undo"
28
+ "dependencies": {
29
+ "@ckeditor/ckeditor5-core": "48.0.0-alpha.0",
30
+ "@ckeditor/ckeditor5-engine": "48.0.0-alpha.0",
31
+ "@ckeditor/ckeditor5-icons": "48.0.0-alpha.0",
32
+ "@ckeditor/ckeditor5-ui": "48.0.0-alpha.0",
33
+ "@ckeditor/ckeditor5-utils": "48.0.0-alpha.0"
30
34
  },
31
35
  "files": [
32
36
  "dist",
33
- "lang",
34
- "src/**/*.js",
35
- "src/**/*.d.ts",
36
- "theme",
37
37
  "ckeditor5-metadata.json",
38
38
  "CHANGELOG.md"
39
39
  ],
40
- "types": "src/index.d.ts",
41
- "exports": {
42
- ".": {
43
- "types": "./src/index.d.ts",
44
- "import": "./src/index.js",
45
- "default": "./src/index.js"
46
- },
47
- "./dist/*": {
48
- "types": "./src/index.d.ts",
49
- "import": "./dist/*",
50
- "default": "./dist/*"
51
- },
52
- "./src/*": {
53
- "types": "./src/*.d.ts",
54
- "import": "./src/*",
55
- "default": "./src/*"
56
- },
57
- "./lang/*": "./lang/*",
58
- "./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
59
- "./package.json": "./package.json"
60
- }
40
+ "types": "./dist/index.d.ts"
61
41
  }
@@ -1,4 +0,0 @@
1
- {
2
- "Undo": "Toolbar button tooltip for the Undo feature.",
3
- "Redo": "Toolbar button tooltip for the Redo feature."
4
- }
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr ""
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr ""
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "تراجع"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "إعادة"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Desfacer"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Refacer"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "İmtina et"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Təkrar et"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Адмяніць"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Паўтарыць"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Отмени"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Повтори"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "পূর্বাবস্থায় ফেরান"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "রেডো"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr ""
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr ""
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Desfer"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Refer"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Zpět"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Znovu"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Fortryd"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Gentag"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Rückgängig"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Wiederherstellen"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Rückgängig"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Wiederherstellen"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Αναίρεση"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Επανάληψη"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Undo"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Redo"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Undo"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Redo"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Undo"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Redo"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Malfari"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Refari"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr ""
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr ""
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Deshacer"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Rehacer"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Võta tagasi"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Tee uuesti"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Desegin"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Berregin"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "بازگردانی"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "باز انجام"
@@ -1,20 +0,0 @@
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 "Toolbar button tooltip for the Undo feature."
15
- msgid "Undo"
16
- msgstr "Peru"
17
-
18
- msgctxt "Toolbar button tooltip for the Redo feature."
19
- msgid "Redo"
20
- msgstr "Tee uudelleen"