@ckeditor/ckeditor5-list-multi-level 41.3.1 → 41.4.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 (102) hide show
  1. package/README.md +32 -0
  2. package/build/list-multi-level.js +1 -1
  3. package/dist/index-content.css +19 -0
  4. package/dist/index-editor.css +32 -0
  5. package/dist/index.css +106 -0
  6. package/dist/index.js +23 -0
  7. package/dist/translations/ar.d.ts +8 -0
  8. package/dist/translations/ar.js +23 -0
  9. package/dist/translations/bg.d.ts +8 -0
  10. package/dist/translations/bg.js +23 -0
  11. package/dist/translations/bn.d.ts +8 -0
  12. package/dist/translations/bn.js +23 -0
  13. package/dist/translations/ca.d.ts +8 -0
  14. package/dist/translations/ca.js +23 -0
  15. package/dist/translations/cs.d.ts +8 -0
  16. package/dist/translations/cs.js +23 -0
  17. package/dist/translations/da.d.ts +8 -0
  18. package/dist/translations/da.js +23 -0
  19. package/dist/translations/de.d.ts +8 -0
  20. package/dist/translations/de.js +23 -0
  21. package/dist/translations/el.d.ts +8 -0
  22. package/dist/translations/el.js +23 -0
  23. package/dist/translations/en.d.ts +8 -0
  24. package/dist/translations/en.js +23 -0
  25. package/dist/translations/es-co.d.ts +8 -0
  26. package/dist/translations/es-co.js +23 -0
  27. package/dist/translations/es.d.ts +8 -0
  28. package/dist/translations/es.js +23 -0
  29. package/dist/translations/et.d.ts +8 -0
  30. package/dist/translations/et.js +23 -0
  31. package/dist/translations/fi.d.ts +8 -0
  32. package/dist/translations/fi.js +23 -0
  33. package/dist/translations/fr.d.ts +8 -0
  34. package/dist/translations/fr.js +23 -0
  35. package/dist/translations/he.d.ts +8 -0
  36. package/dist/translations/he.js +23 -0
  37. package/dist/translations/hi.d.ts +8 -0
  38. package/dist/translations/hi.js +23 -0
  39. package/dist/translations/hr.d.ts +8 -0
  40. package/dist/translations/hr.js +23 -0
  41. package/dist/translations/hu.d.ts +8 -0
  42. package/dist/translations/hu.js +23 -0
  43. package/dist/translations/id.d.ts +8 -0
  44. package/dist/translations/id.js +23 -0
  45. package/dist/translations/it.d.ts +8 -0
  46. package/dist/translations/it.js +23 -0
  47. package/dist/translations/ja.d.ts +8 -0
  48. package/dist/translations/ja.js +23 -0
  49. package/dist/translations/ko.d.ts +8 -0
  50. package/dist/translations/ko.js +23 -0
  51. package/dist/translations/lt.d.ts +8 -0
  52. package/dist/translations/lt.js +23 -0
  53. package/dist/translations/lv.d.ts +8 -0
  54. package/dist/translations/lv.js +23 -0
  55. package/dist/translations/ms.d.ts +8 -0
  56. package/dist/translations/ms.js +23 -0
  57. package/dist/translations/nl.d.ts +8 -0
  58. package/dist/translations/nl.js +23 -0
  59. package/dist/translations/no.d.ts +8 -0
  60. package/dist/translations/no.js +23 -0
  61. package/dist/translations/pl.d.ts +8 -0
  62. package/dist/translations/pl.js +23 -0
  63. package/dist/translations/pt-br.d.ts +8 -0
  64. package/dist/translations/pt-br.js +23 -0
  65. package/dist/translations/pt.d.ts +8 -0
  66. package/dist/translations/pt.js +23 -0
  67. package/dist/translations/ro.d.ts +8 -0
  68. package/dist/translations/ro.js +23 -0
  69. package/dist/translations/ru.d.ts +8 -0
  70. package/dist/translations/ru.js +23 -0
  71. package/dist/translations/sk.d.ts +8 -0
  72. package/dist/translations/sk.js +23 -0
  73. package/dist/translations/sr.d.ts +8 -0
  74. package/dist/translations/sr.js +23 -0
  75. package/dist/translations/sv.d.ts +8 -0
  76. package/dist/translations/sv.js +23 -0
  77. package/dist/translations/th.d.ts +8 -0
  78. package/dist/translations/th.js +23 -0
  79. package/dist/translations/tr.d.ts +8 -0
  80. package/dist/translations/tr.js +23 -0
  81. package/dist/translations/uk.d.ts +8 -0
  82. package/dist/translations/uk.js +23 -0
  83. package/dist/translations/vi.d.ts +8 -0
  84. package/dist/translations/vi.js +23 -0
  85. package/dist/translations/zh-cn.d.ts +8 -0
  86. package/dist/translations/zh-cn.js +23 -0
  87. package/dist/translations/zh.d.ts +8 -0
  88. package/dist/translations/zh.js +23 -0
  89. package/dist/types/augmentation.d.ts +18 -0
  90. package/dist/types/index.d.ts +15 -0
  91. package/dist/types/multilevellist.d.ts +31 -0
  92. package/dist/types/multilevellistcommand.d.ts +53 -0
  93. package/dist/types/multilevellistediting.d.ts +31 -0
  94. package/dist/types/multilevellistui.d.ts +32 -0
  95. package/dist/types/ui/multilevellistview.d.ts +9 -0
  96. package/package.json +4 -3
  97. package/src/index.js +1 -1
  98. package/src/multilevellist.js +1 -1
  99. package/src/multilevellistcommand.js +1 -1
  100. package/src/multilevellistediting.js +1 -1
  101. package/src/multilevellistui.js +1 -1
  102. package/src/ui/multilevellistview.js +1 -1
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'et':{'dictionary':{'Multi-level\x20List':'Mitmetasandiline\x20loend','Multi-level\x20list\x20styles\x20toolbar':'Mitmetasandilise\x20loendi\x20stiilide\x20tööriistariba'},'getPluralForm':_0x617604=>0x1!=_0x617604}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'fi':{'dictionary':{'Multi-level\x20List':'Monitasoinen\x20lista','Multi-level\x20list\x20styles\x20toolbar':'Monitasoisten\x20listojen\x20tyylipalkki'},'getPluralForm':_0x5a1284=>0x1!=_0x5a1284}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'fr':{'dictionary':{'Multi-level\x20List':'Liste\x20à\x20plusieurs\x20niveaux','Multi-level\x20list\x20styles\x20toolbar':'Barre\x20d\x27outils\x20des\x20styles\x20de\x20liste\x20à\x20plusieurs\x20niveaux'},'getPluralForm':_0x178152=>0x0==_0x178152||0x1==_0x178152?0x0:0x0!=_0x178152&&_0x178152%0xf4240==0x0?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'he':{'dictionary':{'Multi-level\x20List':'רשימה\x20מרובת\x20רמות','Multi-level\x20list\x20styles\x20toolbar':'סרגל\x20הכלים\x20של\x20סגנונות\x20רשימה\x20מרובת\x20רמות'},'getPluralForm':_0xb6645f=>0x1==_0xb6645f&&_0xb6645f%0x1==0x0?0x0:0x2==_0xb6645f&&_0xb6645f%0x1==0x0?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'hi':{'dictionary':{'Multi-level\x20List':'मल्टी-लेवल\x20लिस्ट','Multi-level\x20list\x20styles\x20toolbar':'मल्टी-लेवल\x20लिस्ट\x20स्टाइल्स\x20टूलबार'},'getPluralForm':_0x5100fa=>0x1!=_0x5100fa}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'hr':{'dictionary':{'Multi-level\x20List':'Lista\x20s\x20više\x20razina','Multi-level\x20list\x20styles\x20toolbar':'Alatna\x20traka\x20za\x20stilove\x20liste\x20s\x20više\x20razina'},'getPluralForm':_0x3dff70=>_0x3dff70%0xa==0x1&&_0x3dff70%0x64!=0xb?0x0:_0x3dff70%0xa>=0x2&&_0x3dff70%0xa<=0x4&&(_0x3dff70%0x64<0xa||_0x3dff70%0x64>=0x14)?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'hu':{'dictionary':{'Multi-level\x20List':'Többszintű\x20lista','Multi-level\x20list\x20styles\x20toolbar':'Többszintű\x20lista\x20stílus\x20eszköztára'},'getPluralForm':_0x9d4708=>0x1!=_0x9d4708}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'id':{'dictionary':{'Multi-level\x20List':'Daftar\x20Bertingkat','Multi-level\x20list\x20styles\x20toolbar':'Bilah\x20alat\x20gaya\x20dengan\x20daftar\x20bertingkat'},'getPluralForm':_0xa67a0c=>0x0}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'it':{'dictionary':{'Multi-level\x20List':'Elenco\x20a\x20più\x20livelli','Multi-level\x20list\x20styles\x20toolbar':'Barra\x20degli\x20strumenti\x20degli\x20stili\x20di\x20elenco\x20a\x20più\x20livelli'},'getPluralForm':_0x5a08f0=>0x1==_0x5a08f0?0x0:0x0!=_0x5a08f0&&_0x5a08f0%0xf4240==0x0?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'ja':{'dictionary':{'Multi-level\x20List':'マルチレベルリスト','Multi-level\x20list\x20styles\x20toolbar':'マルチレベルリストスタイルツールバー'},'getPluralForm':_0x2fe5ef=>0x0}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'ko':{'dictionary':{'Multi-level\x20List':'다단계\x20목록','Multi-level\x20list\x20styles\x20toolbar':'다단계\x20목록\x20스타일\x20도구\x20모음'},'getPluralForm':_0x5d45ad=>0x0}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'lt':{'dictionary':{'Multi-level\x20List':'Kelių\x20lygių\x20sąrašas','Multi-level\x20list\x20styles\x20toolbar':'Kelių\x20lygių\x20sąrašo\x20stiliaus\x20įrankių\x20juosta'},'getPluralForm':_0x4edc64=>_0x4edc64%0xa==0x1&&(_0x4edc64%0x64>0x13||_0x4edc64%0x64<0xb)?0x0:_0x4edc64%0xa>=0x2&&_0x4edc64%0xa<=0x9&&(_0x4edc64%0x64>0x13||_0x4edc64%0x64<0xb)?0x1:_0x4edc64%0x1!=0x0?0x2:0x3}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'lv':{'dictionary':{'Multi-level\x20List':'Daudzlīmeņu\x20saraksts','Multi-level\x20list\x20styles\x20toolbar':'Daudzlīmeņu\x20sarakstu\x20stilu\x20rīkjosla'},'getPluralForm':_0x4e15a4=>_0x4e15a4%0xa==0x1&&_0x4e15a4%0x64!=0xb?0x0:0x0!=_0x4e15a4?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'ms':{'dictionary':{'Multi-level\x20List':'Senarai\x20pelbagai\x20peringkat','Multi-level\x20list\x20styles\x20toolbar':'Bar\x20alat\x20gaya\x20senarai\x20pelbagai\x20peringkat'},'getPluralForm':_0x2db191=>0x0}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'nl':{'dictionary':{'Multi-level\x20List':'Lijst\x20met\x20meerdere\x20niveaus','Multi-level\x20list\x20styles\x20toolbar':'Werkbalk\x20voor\x20lijststijlen\x20met\x20meerdere\x20niveaus'},'getPluralForm':_0x230e0b=>0x1!=_0x230e0b}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'no':{'dictionary':{'Multi-level\x20List':'Liste\x20med\x20flere\x20nivåer','Multi-level\x20list\x20styles\x20toolbar':'Verkøylinje\x20–\x20stil,\x20liste\x20med\x20flere\x20nivåer'},'getPluralForm':_0x2e644f=>0x1!=_0x2e644f}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'pl':{'dictionary':{'Multi-level\x20List':'Lista\x20wielopoziomowa','Multi-level\x20list\x20styles\x20toolbar':'Pasek\x20narzędzi\x20stylów\x20listy\x20wielopoziomowej'},'getPluralForm':_0x9d5b01=>0x1==_0x9d5b01?0x0:_0x9d5b01%0xa>=0x2&&_0x9d5b01%0xa<=0x4&&(_0x9d5b01%0x64<0xc||_0x9d5b01%0x64>0xe)?0x1:0x1!=_0x9d5b01&&_0x9d5b01%0xa>=0x0&&_0x9d5b01%0xa<=0x1||_0x9d5b01%0xa>=0x5&&_0x9d5b01%0xa<=0x9||_0x9d5b01%0x64>=0xc&&_0x9d5b01%0x64<=0xe?0x2:0x3}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export default{'pt-br':{'dictionary':{'Multi-level\x20List':'Lista\x20multinível','Multi-level\x20list\x20styles\x20toolbar':'Barra\x20de\x20ferramentas\x20de\x20estilos\x20de\x20listas\x20multinível'},'getPluralForm':_0x20076d=>0x0==_0x20076d||0x1==_0x20076d?0x0:0x0!=_0x20076d&&_0x20076d%0xf4240==0x0?0x1:0x2}};
@@ -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 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;