@ckeditor/ckeditor5-ui 41.3.0-alpha.4 → 41.3.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 (324) hide show
  1. package/ckeditor5-metadata.json +1 -1
  2. package/lang/contexts.json +12 -2
  3. package/lang/translations/af.po +210 -0
  4. package/lang/translations/ar.po +44 -4
  5. package/lang/translations/ast.po +44 -4
  6. package/lang/translations/az.po +44 -4
  7. package/lang/translations/bg.po +44 -4
  8. package/lang/translations/bn.po +44 -4
  9. package/lang/translations/bs.po +210 -0
  10. package/lang/translations/ca.po +44 -4
  11. package/lang/translations/cs.po +44 -4
  12. package/lang/translations/da.po +44 -4
  13. package/lang/translations/de-ch.po +44 -4
  14. package/lang/translations/de.po +44 -4
  15. package/lang/translations/el.po +44 -4
  16. package/lang/translations/en-au.po +44 -4
  17. package/lang/translations/en-gb.po +44 -4
  18. package/lang/translations/en.po +44 -4
  19. package/lang/translations/eo.po +44 -4
  20. package/lang/translations/es-co.po +210 -0
  21. package/lang/translations/es.po +44 -4
  22. package/lang/translations/et.po +44 -4
  23. package/lang/translations/eu.po +44 -4
  24. package/lang/translations/fa.po +44 -4
  25. package/lang/translations/fi.po +44 -4
  26. package/lang/translations/fr.po +44 -4
  27. package/lang/translations/gl.po +44 -4
  28. package/lang/translations/he.po +44 -4
  29. package/lang/translations/hi.po +44 -4
  30. package/lang/translations/hr.po +44 -4
  31. package/lang/translations/hu.po +44 -4
  32. package/lang/translations/id.po +44 -4
  33. package/lang/translations/it.po +44 -4
  34. package/lang/translations/ja.po +44 -4
  35. package/lang/translations/jv.po +210 -0
  36. package/lang/translations/km.po +44 -4
  37. package/lang/translations/kn.po +44 -4
  38. package/lang/translations/ko.po +44 -4
  39. package/lang/translations/ku.po +44 -4
  40. package/lang/translations/lt.po +44 -4
  41. package/lang/translations/lv.po +44 -4
  42. package/lang/translations/ms.po +44 -4
  43. package/lang/translations/nb.po +44 -4
  44. package/lang/translations/ne.po +44 -4
  45. package/lang/translations/nl.po +44 -4
  46. package/lang/translations/no.po +44 -4
  47. package/lang/translations/pl.po +44 -4
  48. package/lang/translations/pt-br.po +44 -4
  49. package/lang/translations/pt.po +44 -4
  50. package/lang/translations/ro.po +44 -4
  51. package/lang/translations/ru.po +44 -4
  52. package/lang/translations/sk.po +44 -4
  53. package/lang/translations/sl.po +44 -4
  54. package/lang/translations/sq.po +44 -4
  55. package/lang/translations/sr-latn.po +44 -4
  56. package/lang/translations/sr.po +44 -4
  57. package/lang/translations/sv.po +44 -4
  58. package/lang/translations/th.po +44 -4
  59. package/lang/translations/tk.po +44 -4
  60. package/lang/translations/tr.po +44 -4
  61. package/lang/translations/tt.po +44 -4
  62. package/lang/translations/ug.po +44 -4
  63. package/lang/translations/uk.po +44 -4
  64. package/lang/translations/ur.po +44 -4
  65. package/lang/translations/uz.po +44 -4
  66. package/lang/translations/vi.po +44 -4
  67. package/lang/translations/zh-cn.po +44 -4
  68. package/lang/translations/zh.po +44 -4
  69. package/package.json +3 -4
  70. package/src/button/button.d.ts +6 -0
  71. package/src/button/buttonview.d.ts +4 -0
  72. package/src/button/buttonview.js +1 -0
  73. package/src/button/filedialogbuttonview.d.ts +80 -0
  74. package/src/button/filedialogbuttonview.js +103 -0
  75. package/src/dropdown/utils.js +1 -5
  76. package/src/editorui/accessibilityhelp/accessibilityhelp.d.ts +4 -0
  77. package/src/editorui/accessibilityhelp/accessibilityhelp.js +25 -9
  78. package/src/index.d.ts +12 -3
  79. package/src/index.js +10 -2
  80. package/src/menubar/menubarmenubuttonview.d.ts +35 -0
  81. package/src/menubar/menubarmenubuttonview.js +64 -0
  82. package/src/menubar/menubarmenulistitembuttonview.d.ts +21 -0
  83. package/src/menubar/menubarmenulistitembuttonview.js +30 -0
  84. package/src/menubar/menubarmenulistitemfiledialogbuttonview.d.ts +23 -0
  85. package/src/menubar/menubarmenulistitemfiledialogbuttonview.js +32 -0
  86. package/src/menubar/menubarmenulistitemview.d.ts +25 -0
  87. package/src/menubar/menubarmenulistitemview.js +34 -0
  88. package/src/menubar/menubarmenulistview.d.ts +24 -0
  89. package/src/menubar/menubarmenulistview.js +23 -0
  90. package/src/menubar/menubarmenupanelview.d.ts +53 -0
  91. package/src/menubar/menubarmenupanelview.js +60 -0
  92. package/src/menubar/menubarmenuview.d.ts +109 -0
  93. package/src/menubar/menubarmenuview.js +159 -0
  94. package/src/menubar/menubarview.d.ts +164 -0
  95. package/src/menubar/menubarview.js +254 -0
  96. package/src/menubar/utils.d.ts +432 -0
  97. package/src/menubar/utils.js +1320 -0
  98. package/src/toolbar/toolbarview.js +5 -3
  99. package/src/tooltipmanager.d.ts +11 -0
  100. package/src/tooltipmanager.js +37 -6
  101. package/theme/components/menubar/menubar.css +10 -0
  102. package/theme/components/menubar/menubarmenu.css +9 -0
  103. package/theme/components/menubar/menubarmenubutton.css +11 -0
  104. package/theme/components/menubar/menubarmenulistitem.css +10 -0
  105. package/theme/components/menubar/menubarmenulistitembutton.css +10 -0
  106. package/theme/components/menubar/menubarmenupanel.css +62 -0
  107. package/theme/components/tooltip/tooltip.css +0 -3
  108. package/theme/globals/_reset.css +13 -0
  109. package/theme/globals/globals.css +1 -0
  110. package/dist/content-index.css +0 -4
  111. package/dist/editor-index.css +0 -445
  112. package/dist/index.css +0 -844
  113. package/dist/index.css.map +0 -1
  114. package/dist/translations/ar.d.ts +0 -8
  115. package/dist/translations/ar.js +0 -5
  116. package/dist/translations/ast.d.ts +0 -8
  117. package/dist/translations/ast.js +0 -5
  118. package/dist/translations/az.d.ts +0 -8
  119. package/dist/translations/az.js +0 -5
  120. package/dist/translations/bg.d.ts +0 -8
  121. package/dist/translations/bg.js +0 -5
  122. package/dist/translations/bn.d.ts +0 -8
  123. package/dist/translations/bn.js +0 -5
  124. package/dist/translations/ca.d.ts +0 -8
  125. package/dist/translations/ca.js +0 -5
  126. package/dist/translations/cs.d.ts +0 -8
  127. package/dist/translations/cs.js +0 -5
  128. package/dist/translations/da.d.ts +0 -8
  129. package/dist/translations/da.js +0 -5
  130. package/dist/translations/de-ch.d.ts +0 -8
  131. package/dist/translations/de-ch.js +0 -5
  132. package/dist/translations/de.d.ts +0 -8
  133. package/dist/translations/de.js +0 -5
  134. package/dist/translations/el.d.ts +0 -8
  135. package/dist/translations/el.js +0 -5
  136. package/dist/translations/en-au.d.ts +0 -8
  137. package/dist/translations/en-au.js +0 -5
  138. package/dist/translations/en-gb.d.ts +0 -8
  139. package/dist/translations/en-gb.js +0 -5
  140. package/dist/translations/en.d.ts +0 -8
  141. package/dist/translations/en.js +0 -5
  142. package/dist/translations/eo.d.ts +0 -8
  143. package/dist/translations/eo.js +0 -5
  144. package/dist/translations/es.d.ts +0 -8
  145. package/dist/translations/es.js +0 -5
  146. package/dist/translations/et.d.ts +0 -8
  147. package/dist/translations/et.js +0 -5
  148. package/dist/translations/eu.d.ts +0 -8
  149. package/dist/translations/eu.js +0 -5
  150. package/dist/translations/fa.d.ts +0 -8
  151. package/dist/translations/fa.js +0 -5
  152. package/dist/translations/fi.d.ts +0 -8
  153. package/dist/translations/fi.js +0 -5
  154. package/dist/translations/fr.d.ts +0 -8
  155. package/dist/translations/fr.js +0 -5
  156. package/dist/translations/gl.d.ts +0 -8
  157. package/dist/translations/gl.js +0 -5
  158. package/dist/translations/he.d.ts +0 -8
  159. package/dist/translations/he.js +0 -5
  160. package/dist/translations/hi.d.ts +0 -8
  161. package/dist/translations/hi.js +0 -5
  162. package/dist/translations/hr.d.ts +0 -8
  163. package/dist/translations/hr.js +0 -5
  164. package/dist/translations/hu.d.ts +0 -8
  165. package/dist/translations/hu.js +0 -5
  166. package/dist/translations/id.d.ts +0 -8
  167. package/dist/translations/id.js +0 -5
  168. package/dist/translations/it.d.ts +0 -8
  169. package/dist/translations/it.js +0 -5
  170. package/dist/translations/ja.d.ts +0 -8
  171. package/dist/translations/ja.js +0 -5
  172. package/dist/translations/km.d.ts +0 -8
  173. package/dist/translations/km.js +0 -5
  174. package/dist/translations/kn.d.ts +0 -8
  175. package/dist/translations/kn.js +0 -5
  176. package/dist/translations/ko.d.ts +0 -8
  177. package/dist/translations/ko.js +0 -5
  178. package/dist/translations/ku.d.ts +0 -8
  179. package/dist/translations/ku.js +0 -5
  180. package/dist/translations/lt.d.ts +0 -8
  181. package/dist/translations/lt.js +0 -5
  182. package/dist/translations/lv.d.ts +0 -8
  183. package/dist/translations/lv.js +0 -5
  184. package/dist/translations/ms.d.ts +0 -8
  185. package/dist/translations/ms.js +0 -5
  186. package/dist/translations/nb.d.ts +0 -8
  187. package/dist/translations/nb.js +0 -5
  188. package/dist/translations/ne.d.ts +0 -8
  189. package/dist/translations/ne.js +0 -5
  190. package/dist/translations/nl.d.ts +0 -8
  191. package/dist/translations/nl.js +0 -5
  192. package/dist/translations/no.d.ts +0 -8
  193. package/dist/translations/no.js +0 -5
  194. package/dist/translations/pl.d.ts +0 -8
  195. package/dist/translations/pl.js +0 -5
  196. package/dist/translations/pt-br.d.ts +0 -8
  197. package/dist/translations/pt-br.js +0 -5
  198. package/dist/translations/pt.d.ts +0 -8
  199. package/dist/translations/pt.js +0 -5
  200. package/dist/translations/ro.d.ts +0 -8
  201. package/dist/translations/ro.js +0 -5
  202. package/dist/translations/ru.d.ts +0 -8
  203. package/dist/translations/ru.js +0 -5
  204. package/dist/translations/sk.d.ts +0 -8
  205. package/dist/translations/sk.js +0 -5
  206. package/dist/translations/sl.d.ts +0 -8
  207. package/dist/translations/sl.js +0 -5
  208. package/dist/translations/sq.d.ts +0 -8
  209. package/dist/translations/sq.js +0 -5
  210. package/dist/translations/sr-latn.d.ts +0 -8
  211. package/dist/translations/sr-latn.js +0 -5
  212. package/dist/translations/sr.d.ts +0 -8
  213. package/dist/translations/sr.js +0 -5
  214. package/dist/translations/sv.d.ts +0 -8
  215. package/dist/translations/sv.js +0 -5
  216. package/dist/translations/th.d.ts +0 -8
  217. package/dist/translations/th.js +0 -5
  218. package/dist/translations/tk.d.ts +0 -8
  219. package/dist/translations/tk.js +0 -5
  220. package/dist/translations/tr.d.ts +0 -8
  221. package/dist/translations/tr.js +0 -5
  222. package/dist/translations/tt.d.ts +0 -8
  223. package/dist/translations/tt.js +0 -5
  224. package/dist/translations/ug.d.ts +0 -8
  225. package/dist/translations/ug.js +0 -5
  226. package/dist/translations/uk.d.ts +0 -8
  227. package/dist/translations/uk.js +0 -5
  228. package/dist/translations/ur.d.ts +0 -8
  229. package/dist/translations/ur.js +0 -5
  230. package/dist/translations/uz.d.ts +0 -8
  231. package/dist/translations/uz.js +0 -5
  232. package/dist/translations/vi.d.ts +0 -8
  233. package/dist/translations/vi.js +0 -5
  234. package/dist/translations/zh-cn.d.ts +0 -8
  235. package/dist/translations/zh-cn.js +0 -5
  236. package/dist/translations/zh.d.ts +0 -8
  237. package/dist/translations/zh.js +0 -5
  238. package/dist/types/arialiveannouncer.d.ts +0 -102
  239. package/dist/types/augmentation.d.ts +0 -92
  240. package/dist/types/autocomplete/autocompleteview.d.ts +0 -85
  241. package/dist/types/bindings/addkeyboardhandlingforgrid.d.ts +0 -31
  242. package/dist/types/bindings/clickoutsidehandler.d.ts +0 -32
  243. package/dist/types/bindings/csstransitiondisablermixin.d.ts +0 -44
  244. package/dist/types/bindings/draggableviewmixin.d.ts +0 -50
  245. package/dist/types/bindings/injectcsstransitiondisabler.d.ts +0 -63
  246. package/dist/types/bindings/preventdefault.d.ts +0 -37
  247. package/dist/types/bindings/submithandler.d.ts +0 -61
  248. package/dist/types/button/button.d.ts +0 -179
  249. package/dist/types/button/buttonlabel.d.ts +0 -38
  250. package/dist/types/button/buttonlabelview.d.ts +0 -35
  251. package/dist/types/button/buttonview.d.ts +0 -185
  252. package/dist/types/button/switchbuttonview.d.ts +0 -49
  253. package/dist/types/collapsible/collapsibleview.d.ts +0 -74
  254. package/dist/types/colorgrid/colorgridview.d.ts +0 -136
  255. package/dist/types/colorgrid/colortileview.d.ts +0 -32
  256. package/dist/types/colorgrid/utils.d.ts +0 -51
  257. package/dist/types/colorpicker/colorpickerview.d.ts +0 -146
  258. package/dist/types/colorpicker/utils.d.ts +0 -52
  259. package/dist/types/colorselector/colorgridsfragmentview.d.ts +0 -199
  260. package/dist/types/colorselector/colorpickerfragmentview.d.ts +0 -133
  261. package/dist/types/colorselector/colorselectorview.d.ts +0 -246
  262. package/dist/types/colorselector/documentcolorcollection.d.ts +0 -74
  263. package/dist/types/componentfactory.d.ts +0 -85
  264. package/dist/types/dialog/dialog.d.ts +0 -277
  265. package/dist/types/dialog/dialogactionsview.d.ts +0 -73
  266. package/dist/types/dialog/dialogcontentview.d.ts +0 -31
  267. package/dist/types/dialog/dialogview.d.ts +0 -260
  268. package/dist/types/dropdown/button/dropdownbutton.d.ts +0 -29
  269. package/dist/types/dropdown/button/dropdownbuttonview.d.ts +0 -52
  270. package/dist/types/dropdown/button/splitbuttonview.d.ts +0 -166
  271. package/dist/types/dropdown/dropdownpanelfocusable.d.ts +0 -25
  272. package/dist/types/dropdown/dropdownpanelview.d.ts +0 -66
  273. package/dist/types/dropdown/dropdownview.d.ts +0 -319
  274. package/dist/types/dropdown/utils.d.ts +0 -239
  275. package/dist/types/editableui/editableuiview.d.ts +0 -76
  276. package/dist/types/editableui/inline/inlineeditableuiview.d.ts +0 -44
  277. package/dist/types/editorui/accessibilityhelp/accessibilityhelp.d.ts +0 -51
  278. package/dist/types/editorui/accessibilityhelp/accessibilityhelpcontentview.d.ts +0 -39
  279. package/dist/types/editorui/bodycollection.d.ts +0 -59
  280. package/dist/types/editorui/boxed/boxededitoruiview.d.ts +0 -44
  281. package/dist/types/editorui/editorui.d.ts +0 -292
  282. package/dist/types/editorui/editoruiview.d.ts +0 -43
  283. package/dist/types/editorui/poweredby.d.ts +0 -75
  284. package/dist/types/focuscycler.d.ts +0 -249
  285. package/dist/types/formheader/formheaderview.d.ts +0 -63
  286. package/dist/types/highlightedtext/highlightedtextview.d.ts +0 -42
  287. package/dist/types/icon/iconview.d.ts +0 -92
  288. package/dist/types/iframe/iframeview.d.ts +0 -54
  289. package/dist/types/index.d.ts +0 -78
  290. package/dist/types/input/inputbase.d.ts +0 -123
  291. package/dist/types/input/inputview.d.ts +0 -40
  292. package/dist/types/inputnumber/inputnumberview.d.ts +0 -53
  293. package/dist/types/inputtext/inputtextview.d.ts +0 -22
  294. package/dist/types/label/labelview.d.ts +0 -40
  295. package/dist/types/labeledfield/labeledfieldview.d.ts +0 -191
  296. package/dist/types/labeledfield/utils.d.ts +0 -127
  297. package/dist/types/labeledinput/labeledinputview.d.ts +0 -129
  298. package/dist/types/list/listitemgroupview.d.ts +0 -63
  299. package/dist/types/list/listitemview.d.ts +0 -40
  300. package/dist/types/list/listseparatorview.d.ts +0 -22
  301. package/dist/types/list/listview.d.ts +0 -128
  302. package/dist/types/model.d.ts +0 -26
  303. package/dist/types/notification/notification.d.ts +0 -215
  304. package/dist/types/panel/balloon/balloonpanelview.d.ts +0 -689
  305. package/dist/types/panel/balloon/contextualballoon.d.ts +0 -303
  306. package/dist/types/panel/sticky/stickypanelview.d.ts +0 -160
  307. package/dist/types/search/filteredview.d.ts +0 -35
  308. package/dist/types/search/searchinfoview.d.ts +0 -49
  309. package/dist/types/search/searchresultsview.d.ts +0 -58
  310. package/dist/types/search/text/searchtextqueryview.d.ts +0 -80
  311. package/dist/types/search/text/searchtextview.d.ts +0 -223
  312. package/dist/types/spinner/spinnerview.d.ts +0 -29
  313. package/dist/types/template.d.ts +0 -946
  314. package/dist/types/textarea/textareaview.d.ts +0 -108
  315. package/dist/types/toolbar/balloon/balloontoolbar.d.ts +0 -121
  316. package/dist/types/toolbar/block/blockbuttonview.d.ts +0 -39
  317. package/dist/types/toolbar/block/blocktoolbar.d.ts +0 -157
  318. package/dist/types/toolbar/normalizetoolbarconfig.d.ts +0 -44
  319. package/dist/types/toolbar/toolbarlinebreakview.d.ts +0 -22
  320. package/dist/types/toolbar/toolbarseparatorview.d.ts +0 -22
  321. package/dist/types/toolbar/toolbarview.d.ts +0 -271
  322. package/dist/types/tooltipmanager.d.ts +0 -188
  323. package/dist/types/view.d.ts +0 -426
  324. package/dist/types/viewcollection.d.ts +0 -143
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"ru":{"dictionary":{"Rich Text Editor":"Редактор","Editor editing area: %0":"Область редактирования редактора: %0","Edit block":"Редактировать блок","Click to edit block":"Нажмите, чтобы редактировать блок","Drag to move":"Перетащить","Next":"Следующий","Previous":"Предыдущий","Editor toolbar":"Панель инструментов редактора","Dropdown toolbar":"Выпадающая панель инструментов","Black":"Чёрный","Dim grey":"Тёмно-серый","Grey":"Серый","Light grey":"Светло-серый","White":"Белый","Red":"Красный","Orange":"Оранжевый","Yellow":"Жёлтый","Light green":"Салатовый","Green":"Зелёный","Aquamarine":"Аквамариновый","Turquoise":"Бирюзовый","Light blue":"Голубой","Blue":"Синий","Purple":"Фиолетовый","Editor block content toolbar":"Панель инструментов редактора","Editor contextual toolbar":"Контекстуальная панель инструментов редактора","HEX":"HEX","Accept":"Принять","No results found":"Результаты не найдены","No searchable items":"Нет элементов для поиска","Editor dialog":"Диалоговое окно редактора","Close":"Закрыть","Help Contents. To close this dialog press ESC.":"Содержание справки. Чтобы закрыть это диалоговое окно, нажмите ESC.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Ниже вы можете найти список сочетаний клавиш, которые можно использовать в редакторе.","(may require <kbd>Fn</kbd>)":"(может требовать <kbd>Fn</kbd>)","Accessibility help":"Помощь по специальным возможностям","Press %0 for help.":"Нажмите %0 для получения помощи.","Move focus in and out of an active dialog window":"Переместить фокус в активное диалоговое окно и обратно."},getPluralForm(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sk":{"dictionary":{"Rich Text Editor":"Editor s formátovaním","Editor editing area: %0":"Oblasť úprav editora: %0","Edit block":"Upraviť odsek","Click to edit block":"Úprava bloku kliknutím","Drag to move":"Potiahnuť a presunúť","Next":"Ďalšie","Previous":"Predchádzajúce","Editor toolbar":"Panel nástrojov editora","Dropdown toolbar":"Panel nástrojov roletového menu","Black":"Čierna","Dim grey":"Tmavosivá","Grey":"Sivá","Light grey":"Bledosivá","White":"Biela","Red":"Červená","Orange":"Oranžová","Yellow":"Žltá","Light green":"Bledozelená","Green":"Zelená","Aquamarine":"Akvamarínová","Turquoise":"Tyrkysová","Light blue":"Bledomodrá","Blue":"Modrá","Purple":"Fialová","Editor block content toolbar":"Panel s nástrojmi obsahu bloku editora","Editor contextual toolbar":"Kontextový panel nástrojov editora","HEX":"HEX","Accept":"Potvrdiť","No results found":"Neboli nájdené žiadne výsledky","No searchable items":"Žiadne vyhľadávateľné položky","Editor dialog":"Dialóg editora","Close":"Zatvoriť","Help Contents. To close this dialog press ESC.":"Obsah pomocníka. Toto dialógové okno zavriete klávesom Esc.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Nižšie nájdete zoznam klávesových skratiek, ktoré môžete používať v editore.","(may require <kbd>Fn</kbd>)":"(môže si vyžadovať stlačenie klávesu <kbd>Fn</kbd>)","Accessibility help":"Pomoc so zjednodušením ovládania","Press %0 for help.":"Ak potrebujete pomoc, stlačte %0.","Move focus in and out of an active dialog window":"Presunúť zameranie z/do aktívneho dialógového okna"},getPluralForm(n){return (n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sl":{"dictionary":{"Rich Text Editor":"","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"","Next":"","Previous":"","Editor toolbar":"","Dropdown toolbar":"","Black":"Črna","Dim grey":"Temno siva","Grey":"Siva","Light grey":"Svetlo siva","White":"Bela","Red":"Rdeča","Orange":"Oranžna","Yellow":"Rumena","Light green":"Svetlo zelena","Green":"Zelena","Aquamarine":"Akvamarin","Turquoise":"Turkizna","Light blue":"Svetlo modra","Blue":"Modra","Purple":"Vijolična","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sq":{"dictionary":{"Rich Text Editor":"Redaktues i Tekstit të Pasur","Editor editing area: %0":"","Edit block":"Redakto bllokun","Click to edit block":"","Drag to move":"","Next":"E radhës","Previous":"Paraprake","Editor toolbar":"Kokështrirja e redaktuesit","Dropdown toolbar":"Zgjero kokështrirjen","Black":"E zezë","Dim grey":"","Grey":"Ngjyrë hiri","Light grey":"","White":"E bardhë","Red":"E kuqe","Orange":"Ngjyrë portokalli","Yellow":"E verdhë","Light green":"","Green":"E gjelbër","Aquamarine":"","Turquoise":"","Light blue":"","Blue":"E kaltër","Purple":"","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n != 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sr-latn":{"dictionary":{"Rich Text Editor":"Prošireni uređivač teksta","Editor editing area: %0":"Oblast za uređivanje urednika: %0","Edit block":"Blok uređivač","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili","Next":"Sledeći","Previous":"Prethodni","Editor toolbar":"Uređivač traka sa alatkama","Dropdown toolbar":"Padajuća traka sa alatkama","Black":"Crna","Dim grey":"Bledo siva","Grey":"Siva","Light grey":"Svetlo siva","White":"Bela","Red":"Crvena","Orange":"Narandžasta","Yellow":"Žuta","Light green":"Svetlo zelena","Green":"Zelena","Aquamarine":"Zelenkastoplava","Turquoise":"Tirkizna","Light blue":"Svetloplava","Blue":"Plava","Purple":"Ljubičasta","Editor block content toolbar":"Traka sa alatkama za blokiranje sadržaja uređivača","Editor contextual toolbar":"Kontekstualna traka sa alatkama Editor","HEX":"HEX","Accept":"Prihvati","No results found":"Nije pronađen nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sr":{"dictionary":{"Rich Text Editor":"Проширен уређивач текста","Editor editing area: %0":"Област за уређивање уредника: %0","Edit block":"Блок уређивач","Click to edit block":"Kliknite da biste uredili blok","Drag to move":"Prevucite da biste premestili","Next":"Следећи","Previous":"Претходни","Editor toolbar":"Уређивач трака са алаткама","Dropdown toolbar":"Падајућа трака са алаткама","Black":"Црна","Dim grey":"Бледо сива","Grey":"Сива","Light grey":"Светло сива","White":"Бела","Red":"Црвена","Orange":"Нараџаста","Yellow":"Жута","Light green":"Светлозелена","Green":"Зелена","Aquamarine":"Зеленкастоплава","Turquoise":"Тиркизна","Light blue":"Светлоплава","Blue":"Плава","Purple":"Љубичаста","Editor block content toolbar":"Трака са алаткама за блокирање садржаја уређивача","Editor contextual toolbar":"Контекстуална трака са алаткама Едитор","HEX":"HEX","Accept":"Prihvati","No results found":"Nije pronađen nijedan rezultat","No searchable items":"Nema stavki koje se mogu pretražiti","Editor dialog":"Dijalog za uređivanje","Close":"Zatvori","Help Contents. To close this dialog press ESC.":"Sadržaji za pomoć. Kako biste zatvorili ovaj dijalog pritisnite taster ESC.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Ispod možete pronaći listu prečica na tastaturi koje se mogu koristiti u uređivaču.","(may require <kbd>Fn</kbd>)":"(možda će biti neophodan <kbd>Fn</kbd>)","Accessibility help":"Pomoć oko pristupačnosti","Press %0 for help.":"Pritisni %0 za pomoć.","Move focus in and out of an active dialog window":"Pomeri fokus u i van aktivnog prozora dijaloga"},getPluralForm(n){return (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"sv":{"dictionary":{"Rich Text Editor":"Rich Text-editor","Editor editing area: %0":"Ordbehandlares redigeringsområde: %0","Edit block":"Redigera block","Click to edit block":"Klicka för att redigera blocket","Drag to move":"Dra för att flytta","Next":"Nästa","Previous":"Föregående","Editor toolbar":"Redigeringsverktygsfält","Dropdown toolbar":"Rullgardinsverktygsfält","Black":"Svart","Dim grey":"Dunkelgrå","Grey":"Grå","Light grey":"Ljusgrå","White":"Vit","Red":"Röd","Orange":"Orange","Yellow":"Gul","Light green":"Ljusgrön","Green":"Grön","Aquamarine":"Akvamarin","Turquoise":"Turkos","Light blue":"Ljusblå","Blue":"Blå","Purple":"Lila","Editor block content toolbar":"Verktygsfält vid block av innehåll","Editor contextual toolbar":"Ordbehandlarens kontextuella verktygsfält","HEX":"HEX","Accept":"Acceptera","No results found":"Inga resultat hittades","No searchable items":"Inga sökbara objekt","Editor dialog":"Ordbehandlardialog","Close":"Stäng","Help Contents. To close this dialog press ESC.":"Hjälpinnehåll. Tryck på ESC för att stänga dialogrutan.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Nedan hittar du en lista med kortkommandon som kan användas i redigeraren.","(may require <kbd>Fn</kbd>)":"(kan kräva <kbd>Fn</kbd>)","Accessibility help":"Hjälp med tillgänglighet","Press %0 for help.":"Tryck på %0 för hjälp.","Move focus in and out of an active dialog window":"Flytta fokus till och från en aktiv dialogruta"},getPluralForm(n){return (n != 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"th":{"dictionary":{"Rich Text Editor":"โปรแกรมแก้ไข Rich Text","Editor editing area: %0":"พื้นที่แก้ไขของตัวแก้ไข: %0","Edit block":"แก้ไขบล็อก","Click to edit block":"คลิกเพื่อแก้ไขบล็อก","Drag to move":"ลากเพื่อย้าย","Next":"ถัดไป","Previous":"ก่อนหน้า","Editor toolbar":"แถบเครื่องมือแก้ไข","Dropdown toolbar":"แถบเครื่องมือแบบเลื่อนลง","Black":"สีดำ","Dim grey":"สีเทาเข้ม","Grey":"สีเทา","Light grey":"สีเทาอ่อน","White":"สีขาว","Red":"สีแดง","Orange":"สีส้ม","Yellow":"สีเหลือง","Light green":"สีเขียวอ่อน","Green":"สีเขียว","Aquamarine":"พลอยสีฟ้า","Turquoise":"สีเขียวขุ่น","Light blue":"สีฟ้า","Blue":"สีน้ำเงิน","Purple":"สีม่วง","Editor block content toolbar":"แถบเครื่องมือแก้ไขบล็อกเนื้อหา","Editor contextual toolbar":"แถบเครื่องมือแก้ไขข้อความ","HEX":"HEX","Accept":"ยอมรับ","No results found":"ไม่พบผลลัพธ์","No searchable items":"ไม่มีรายการที่สามารถค้นหาได้","Editor dialog":"การสนทนาของบรรณาธิการ","Close":"ปิด","Help Contents. To close this dialog press ESC.":"เนื้อหาความช่วยเหลือ หากต้องการปิดกล่องโต้ตอบนี้ ให้กดปุ่ม ESC","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"ด้านล่างนี้ คุณจะพบกับรายการแป้นพิมพ์ลัดที่สามารถใช้ในตัวแก้ไขได้","(may require <kbd>Fn</kbd>)":"(อาจจำเป็นต้องมี <kbd>Fn</kbd>)","Accessibility help":"ความช่วยเหลือการเข้าถึง","Press %0 for help.":"กด %0 เพื่อความช่วยเหลือ","Move focus in and out of an active dialog window":"ย้ายโฟกัสเข้าและออกจากกล่องโต้ตอบที่ใช้งานอยู่"},getPluralForm(n){return 0;}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"tk":{"dictionary":{"Rich Text Editor":"Baý Tekst Redaktory","Editor editing area: %0":"","Edit block":"Bloky redaktirläň","Click to edit block":"","Drag to move":"","Next":"Indiki","Previous":"Öňki","Editor toolbar":"Redaktor gurallar paneli","Dropdown toolbar":"Açylýan gurallar paneli","Black":"Gara","Dim grey":"Goýy çal","Grey":"Çal","Light grey":"Açyk çal","White":"Ak","Red":"Gyzyl","Orange":"Mämişi","Yellow":"Sary","Light green":"Açyk ýaşyl","Green":"Ýaşyl","Aquamarine":"Akuamarin","Turquoise":"Turkuaz","Light blue":"Açyk gök","Blue":"Gök","Purple":"Gyrmyzy","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n != 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"tr":{"dictionary":{"Rich Text Editor":"Zengin İçerik Editörü","Editor editing area: %0":"Editör düzenleme alanı: %0","Edit block":"Bloğu Düzenle","Click to edit block":"Bloğu düzenlemek için tıkla","Drag to move":"Taşımak için sürükle","Next":"Sonraki","Previous":"Önceki","Editor toolbar":"Düzenleme araç çubuğu","Dropdown toolbar":"Açılır araç çubuğu","Black":"Siyah","Dim grey":"Koyu Gri","Grey":"Gri","Light grey":"Açık Gri","White":"Beyaz","Red":"Kırmızı","Orange":"Turuncu","Yellow":"Sarı","Light green":"Açık Yeşil","Green":"Yeşil","Aquamarine":"Su Yeşili","Turquoise":"Turkuaz","Light blue":"Açık Mavi","Blue":"Mavi","Purple":"Mor","Editor block content toolbar":"Düzenleyici engelleme içerik araç çubuğu","Editor contextual toolbar":"Düzenleyici içeriksel araç çubuğu","HEX":"ONALTILIK","Accept":"Kabul et","No results found":"Sonuç bulunamadı","No searchable items":"Aranabilir öge yok","Editor dialog":"Düzenleyici iletişim kutusu","Close":"Kapat","Help Contents. To close this dialog press ESC.":"Yardım İçerikleri. Bu iletişim kutusunu kapatmak için ESC tuşuna basın.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Aşağıda editörde kullanılabilecek klavye kısayollarının bir listesini bulabilirsiniz.","(may require <kbd>Fn</kbd>)":"(<kbd>Fn</kbd> gerekebilir)","Accessibility help":"Erişilebilirlik yardımı","Press %0 for help.":"Yardım için %0 tuşuna basın.","Move focus in and out of an active dialog window":"Odağı etkin iletişim penceresinin içine ve dışına taşı"},getPluralForm(n){return (n > 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"tt":{"dictionary":{"Rich Text Editor":"","Editor editing area: %0":"","Edit block":"","Click to edit block":"","Drag to move":"","Next":"","Previous":"","Editor toolbar":"","Dropdown toolbar":"","Black":"Кара","Dim grey":"","Grey":"Соры","Light grey":"Ачык соры","White":"Ак","Red":"Кызыл","Orange":"Кызгылт","Yellow":"Сары","Light green":"Ачык яшел","Green":"Яшел","Aquamarine":"Аквамарин","Turquoise":"Фервоз","Light blue":"Ачык зәңгәр","Blue":"Зәңгәр","Purple":"Шәмәхә","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return 0;}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"ug":{"dictionary":{"Rich Text Editor":"تېكىست تەھرىرلىگۈچ","Editor editing area: %0":"تەھرىرلىگۈچ تەھرىرلەش رايونى: %0","Edit block":"بۆلەك تەھرىر","Click to edit block":"چېكىلسە بۆلەك تەھرىرلىنىدۇ","Drag to move":"يۆتكەشتە سۆرىلىدۇ","Next":"كېيىنكى","Previous":"ئالدىنقى","Editor toolbar":"تەھرىرلىگۈچ قورال بالداق","Dropdown toolbar":"سىرىلما قورال بالداق","Black":"قارا","Dim grey":"سۇس كۈلرەڭ","Grey":"كۈلرەڭ","Light grey":"ئوچۇق كۈلرەڭ","White":"ئاق","Red":"قىزىل","Orange":"قىزغۇچ سېرىق","Yellow":"سېرىق","Light green":"ئوچۇق يېشىل","Green":"يېشىل","Aquamarine":"دېڭىز كۆكى","Turquoise":"","Light blue":"ئوچۇق كۆك","Blue":"كۆك","Purple":"بىنەپشە","Editor block content toolbar":"تەھرىرلىگۈچ بۆلىكى مەزمۇن قورال بالداق","Editor contextual toolbar":"تەھرىرلىگۈچ مەزمۇن قورال بالداق","HEX":"","Accept":"قوشۇل","No results found":"ھېچقانداق نەتىجە تېپىلمىدى","No searchable items":"ئىزدىگۈدەك تۈر يوق","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n != 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"uk":{"dictionary":{"Rich Text Editor":"Розширений текстовий редактор","Editor editing area: %0":"Область редагування редактора: %0","Edit block":"Редагувати блок","Click to edit block":"Клацніть, щоб редагувати блок","Drag to move":"Потягніть, щоб перемістити","Next":"Наступний","Previous":"Попередній","Editor toolbar":"Панель інструментів редактора","Dropdown toolbar":"Випадаюча панель інструментів","Black":"Чорний","Dim grey":"Темно-сірий","Grey":"Сірий","Light grey":"Світло-сірий","White":"Білий","Red":"Червоний","Orange":"Помаранчевий","Yellow":"Жовтий","Light green":"Світло-зелений","Green":"Зелений","Aquamarine":"Аквамариновий","Turquoise":"Бірюзовий","Light blue":"Світло-синій","Blue":"Синій","Purple":"Фіолетовий","Editor block content toolbar":"Панель інструментів вмісту блоку редактора","Editor contextual toolbar":"Контекстна панель інструментів редактора","HEX":"Шістнадцятковий","Accept":"Прийняти","No results found":"Нічого не знайдено","No searchable items":"Немає шуканих об'єктів","Editor dialog":"Діалогове вікно редактора","Close":"Закрити","Help Contents. To close this dialog press ESC.":"Зміст довідки. Щоб закрити це діалогове вікно, натисніть ESC.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Нижче ви можете знайти список комбінацій клавіш, які можна використовувати в редакторі.","(may require <kbd>Fn</kbd>)":"(може вимагати <kbd>Fn</kbd>)","Accessibility help":"Довідка щодо доступності","Press %0 for help.":"Натисніть %0 для довідки.","Move focus in and out of an active dialog window":"Переміщення фокуса в активному діалоговому вікні та з нього"},getPluralForm(n){return (n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"ur":{"dictionary":{"Rich Text Editor":"خانۂ ترمیم","Editor editing area: %0":"رقبہ خانۂ ترمیم: 0%","Edit block":"خانہ کی تدوین","Click to edit block":"","Drag to move":"","Next":"اگلا","Previous":"پچھلا","Editor toolbar":"ایڈیٹر آلہ جات","Dropdown toolbar":"آلہ جات برائے فہرست ","Black":"سیاہ","Dim grey":"پھیکا سرمئی","Grey":"سرمئی","Light grey":"ہلکا سرمئی","White":"سفید","Red":"سرخ","Orange":"نارنجی","Yellow":"پیلا","Light green":"ہلکا سبز","Green":"سبز","Aquamarine":"نیلگوں بلور","Turquoise":"فیروزی","Light blue":"ہلکا نیلا","Blue":"نیلا","Purple":"ارغوانی","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return (n != 1);}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"uz":{"dictionary":{"Rich Text Editor":"Tahrirlovchi","Editor editing area: %0":"","Edit block":"Blokni tahrirlash","Click to edit block":"","Drag to move":"","Next":"Keyingi","Previous":"Oldingi","Editor toolbar":"Tahrirlovchi asboblar paneli","Dropdown toolbar":"Ochiladigan asboblar paneli","Black":"Qora","Dim grey":"To'q kulrang","Grey":"Kulrang","Light grey":"Och kulrang","White":"Oq","Red":"Qizil","Orange":"To'q sariq","Yellow":"Sariq","Light green":"Och yashil","Green":"Yashil","Aquamarine":"Akuamarin","Turquoise":"Turkuaz","Light blue":"Moviy","Blue":"Ko'k","Purple":"Siyohrang","Editor block content toolbar":"","Editor contextual toolbar":"","HEX":"","Accept":"","No results found":"","No searchable items":"","Editor dialog":"","Close":"","Help Contents. To close this dialog press ESC.":"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"","(may require <kbd>Fn</kbd>)":"","Accessibility help":"","Press %0 for help.":"","Move focus in and out of an active dialog window":""},getPluralForm(n){return 0;}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"vi":{"dictionary":{"Rich Text Editor":"Trình soạn thảo văn bản","Editor editing area: %0":"Vùng chỉnh sửa của trình chỉnh sửa: %0","Edit block":"Chỉnh sửa đoạn","Click to edit block":"Nhấp để sửa khối","Drag to move":"Kéo để di chuyển","Next":"Tiếp theo","Previous":"Quay lại","Editor toolbar":"Thanh công cụ biên tập","Dropdown toolbar":"Thanh công cụ danh mục","Black":"Đen","Dim grey":"Xám mờ","Grey":"Xám","Light grey":"Xám nhạt","White":"Trắng","Red":"Đỏ","Orange":"Cam","Yellow":"Vàng","Light green":"Xanh lá nhạt","Green":"Xanh lá","Aquamarine":"Xanh ngọc biển","Turquoise":"Xanh ngọc bích","Light blue":"Xanh dương","Blue":"Xanh biển","Purple":"Tím","Editor block content toolbar":"Thanh công cụ chỉnh sửa khối nội dung","Editor contextual toolbar":"Thanh công cụ chỉnh sửa theo ngữ cảnh","HEX":"HEX","Accept":"Chấp nhận","No results found":"Không tìm thấy kết quả","No searchable items":"Không có mục nào tìm kiếm được","Editor dialog":"Hộp thoại trình biên tập","Close":"Đóng","Help Contents. To close this dialog press ESC.":"Nội dung Trợ giúp. Nhấn phím ESC để đóng hộp thoại này.","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"Dưới đây, bạn có thể tìm thấy danh sách các phím tắt mà bạn có thể dùng trong trình biên tập này.","(may require <kbd>Fn</kbd>)":"(có thể cần nhấn phím <kbd>Fn</kbd>)","Accessibility help":"Trợ giúp về khả năng truy cập","Press %0 for help.":"Nhấn %0 để được trợ giúp.","Move focus in and out of an active dialog window":"Di chuyển tiêu điểm vào và ra khỏi cửa sổ hộp thoại đang kích hoạt"},getPluralForm(n){return 0;}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"zh-cn":{"dictionary":{"Rich Text Editor":"富文本编辑器","Editor editing area: %0":"编辑器编辑区域:%0","Edit block":"编辑框","Click to edit block":"单击以编辑块","Drag to move":"拖拽以移动","Next":"下一步","Previous":"上一步","Editor toolbar":"编辑器工具栏","Dropdown toolbar":"下拉工具栏","Black":"黑色","Dim grey":"暗灰色","Grey":"灰色","Light grey":"浅灰色","White":"白色","Red":"红色","Orange":"橙色","Yellow":"黄色","Light green":"浅绿色","Green":"绿色","Aquamarine":"海蓝色","Turquoise":"青色","Light blue":"浅蓝色","Blue":"蓝色","Purple":"紫色","Editor block content toolbar":"编辑器块内容工具栏","Editor contextual toolbar":"编辑器上下文工具栏","HEX":"十六进制","Accept":"接受","No results found":"未找到结果","No searchable items":"没有可搜索的项目","Editor dialog":"编辑器对话框","Close":"关闭","Help Contents. To close this dialog press ESC.":"帮助内容。要关闭此对话框,请按 ESC 键。","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"您可以在下方找到可在编辑器中使用的键盘快捷键列表。","(may require <kbd>Fn</kbd>)":"(可能需要用到 <kbd>Fn</kbd>键)","Accessibility help":"无障碍辅助功能帮助","Press %0 for help.":"按 %0 获取帮助。","Move focus in and out of an active dialog window":"将焦点移入或移出活跃的对话框窗口"},getPluralForm(n){return 0;}}}
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
- */
5
- export default {"zh":{"dictionary":{"Rich Text Editor":"富文本編輯器","Editor editing area: %0":"編輯器編輯區:%0","Edit block":"編輯區塊","Click to edit block":"點擊來編輯區塊","Drag to move":"拖曳來移動","Next":"下一","Previous":"上一","Editor toolbar":"編輯器工具","Dropdown toolbar":"下拉選單","Black":"黑色","Dim grey":"淡灰色","Grey":"灰色","Light grey":"亮灰色","White":"白色","Red":"紅色","Orange":"橘色","Yellow":"黃色","Light green":"亮綠色","Green":"綠色","Aquamarine":"淺綠色","Turquoise":"藍綠色","Light blue":"亮藍色","Blue":"藍色","Purple":"紫色","Editor block content toolbar":"編輯器區塊內容工具列","Editor contextual toolbar":"編輯器關聯式工具列","HEX":"十六進位","Accept":"接受","No results found":"找不到結果","No searchable items":"沒有可搜尋的項目","Editor dialog":"編輯工具對話框","Close":"關閉","Help Contents. To close this dialog press ESC.":"協助內容。想關閉此對話框,請按 ESC 鍵。","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"下方是可在編輯器中使用的鍵盤快捷鍵列表。","(may require <kbd>Fn</kbd>)":"(可能需要 <kbd>Fn</kbd>)","Accessibility help":"無障礙協助","Press %0 for help.":"按下 %0 來取得協助。","Move focus in and out of an active dialog window":"將焦點移入或移出啟用中的對話視窗"},getPluralForm(n){return 0;}}}
@@ -1,102 +0,0 @@
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
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
- */
9
- /**
10
- * @module ui/arialiveannouncer
11
- */
12
- import type { Editor } from '@ckeditor/ckeditor5-core';
13
- import type { Locale } from '@ckeditor/ckeditor5-utils';
14
- import type ViewCollection from './viewcollection.js';
15
- import View from './view.js';
16
- import '../theme/components/arialiveannouncer/arialiveannouncer.css';
17
- /**
18
- * The politeness level of an `aria-live` announcement.
19
- *
20
- * Available keys are:
21
- * * `AriaLiveAnnouncerPoliteness.POLITE`,
22
- * * `AriaLiveAnnouncerPoliteness.ASSERTIVE`
23
- *
24
- * [Learn more](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions#Politeness_levels).
25
- */
26
- export declare const AriaLiveAnnouncerPoliteness: {
27
- readonly POLITE: "polite";
28
- readonly ASSERTIVE: "assertive";
29
- };
30
- /**
31
- * An accessibility helper that manages all ARIA live regions associated with an editor instance. ARIA live regions announce changes
32
- * to the state of the editor features.
33
- *
34
- * These announcements are consumed and propagated by screen readers and give users a better understanding of the current
35
- * state of the editor.
36
- *
37
- * To announce a state change to an editor feature named `'Some feature'`, use the {@link #announce} method:
38
- * ```ts
39
- * editor.ui.ariaLiveAnnouncer.announce( 'Some feature', 'Text of an announcement.' );
40
- * ```
41
- */
42
- export default class AriaLiveAnnouncer {
43
- /**
44
- * The editor instance.
45
- */
46
- readonly editor: Editor;
47
- /**
48
- * The view that aggregates all `aria-live` regions.
49
- */
50
- view?: AriaLiveAnnouncerView;
51
- /**
52
- * @inheritDoc
53
- */
54
- constructor(editor: Editor);
55
- /**
56
- * Sets an announcement text to an aria region associated with a specific editor feature. The text is then
57
- * announced by a screen reader to the user.
58
- *
59
- * If the aria region of a given name does not exist, it will be created and can be re-used later. The name of the region
60
- * groups announcements originating from a specific editor feature and does not get announced by a screen reader.
61
- *
62
- * Using multiple regions allows for many announcements to be emitted in a short period of time. Changes to ARIA-live announcements
63
- * are captured by a screen reader and read out in the order they were emitted.
64
- *
65
- * The default announcement politeness level is `'polite'`.
66
- *
67
- * ```ts
68
- * // Most screen readers will queue announcements from multiple aria-live regions and read them out in the order they were emitted.
69
- * editor.ui.ariaLiveAnnouncer.announce( 'image', 'Image uploaded.' );
70
- * editor.ui.ariaLiveAnnouncer.announce( 'network', 'Connection lost. Reconnecting.' );
71
- * ```
72
- */
73
- announce(regionName: string, announcementText: string, politeness?: typeof AriaLiveAnnouncerPoliteness[keyof typeof AriaLiveAnnouncerPoliteness]): void;
74
- }
75
- /**
76
- * The view that aggregates all `aria-live` regions.
77
- */
78
- export declare class AriaLiveAnnouncerView extends View {
79
- /**
80
- * A collection of all views that represent individual `aria-live` regions.
81
- */
82
- readonly regionViews: ViewCollection<AriaLiveAnnouncerRegionView>;
83
- constructor(locale: Locale);
84
- }
85
- /**
86
- * The view that represents a single `aria-live` region (e.g. for a specific editor feature) and its text.
87
- */
88
- export declare class AriaLiveAnnouncerRegionView extends View {
89
- /**
90
- * Current text of the region.
91
- */
92
- text: string;
93
- /**
94
- * Current politeness level of the region.
95
- */
96
- politeness: typeof AriaLiveAnnouncerPoliteness[keyof typeof AriaLiveAnnouncerPoliteness];
97
- /**
98
- * A unique name of the region, usually associated with a specific editor feature or system.
99
- */
100
- regionName: string;
101
- constructor(locale: Locale);
102
- }
@@ -1,92 +0,0 @@
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
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
- */
9
- import type { BalloonToolbar, BlockToolbar, ContextualBalloon, Notification, Dialog, AccessibilityHelp } from './index.js';
10
- import type { ToolbarConfig } from '@ckeditor/ckeditor5-core';
11
- declare module '@ckeditor/ckeditor5-core' {
12
- interface EditorConfig {
13
- /**
14
- * Contextual toolbar configuration. Used by the {@link module:ui/toolbar/balloon/balloontoolbar~BalloonToolbar}
15
- * feature.
16
- *
17
- * ## Configuring toolbar items
18
- *
19
- * ```ts
20
- * const config = {
21
- * balloonToolbar: [ 'bold', 'italic', 'undo', 'redo' ]
22
- * };
23
- * ```
24
- *
25
- * You can also use `'|'` to create a separator between groups of items:
26
- *
27
- * ```ts
28
- * const config = {
29
- * balloonToolbar: [ 'bold', 'italic', '|', 'undo', 'redo' ]
30
- * };
31
- * ```
32
- *
33
- * Read also about configuring the main editor toolbar in {@link module:core/editor/editorconfig~EditorConfig#toolbar}.
34
- *
35
- * ## Configuring items grouping
36
- *
37
- * You can prevent automatic items grouping by setting the `shouldNotGroupWhenFull` option:
38
- *
39
- * ```ts
40
- * const config = {
41
- * balloonToolbar: {
42
- * items: [ 'bold', 'italic', 'undo', 'redo' ],
43
- * shouldNotGroupWhenFull: true
44
- * },
45
- * };
46
- * ```
47
- */
48
- balloonToolbar?: ToolbarConfig;
49
- /**
50
- * The block toolbar configuration. Used by the {@link module:ui/toolbar/block/blocktoolbar~BlockToolbar}
51
- * feature.
52
- *
53
- * ```ts
54
- * const config = {
55
- * blockToolbar: [ 'paragraph', 'heading1', 'heading2', 'bulletedList', 'numberedList' ]
56
- * };
57
- * ```
58
- *
59
- * You can also use `'|'` to create a separator between groups of items:
60
- *
61
- * ```ts
62
- * const config = {
63
- * blockToolbar: [ 'paragraph', 'heading1', 'heading2', '|', 'bulletedList', 'numberedList' ]
64
- * };
65
- * ```
66
- *
67
- * ## Configuring items grouping
68
- *
69
- * You can prevent automatic items grouping by setting the `shouldNotGroupWhenFull` option:
70
- *
71
- * ```ts
72
- * const config = {
73
- * blockToolbar: {
74
- * items: [ 'paragraph', 'heading1', 'heading2', '|', 'bulletedList', 'numberedList' ],
75
- * shouldNotGroupWhenFull: true
76
- * },
77
- * };
78
- * ```
79
- *
80
- * Read more about configuring the main editor toolbar in {@link module:core/editor/editorconfig~EditorConfig#toolbar}.
81
- */
82
- blockToolbar?: ToolbarConfig;
83
- }
84
- interface PluginsMap {
85
- [BalloonToolbar.pluginName]: BalloonToolbar;
86
- [BlockToolbar.pluginName]: BlockToolbar;
87
- [ContextualBalloon.pluginName]: ContextualBalloon;
88
- [Dialog.pluginName]: Dialog;
89
- [Notification.pluginName]: Notification;
90
- [AccessibilityHelp.pluginName]: AccessibilityHelp;
91
- }
92
- }