@ckeditor/ckeditor5-comments 0.0.0-internal-20241017.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 (434) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +23 -0
  3. package/README.md +58 -0
  4. package/build/comments.js +5 -0
  5. package/build/translations/af.js +1 -0
  6. package/build/translations/ar.js +1 -0
  7. package/build/translations/bg.js +1 -0
  8. package/build/translations/bn.js +1 -0
  9. package/build/translations/bs.js +1 -0
  10. package/build/translations/ca.js +1 -0
  11. package/build/translations/cs.js +1 -0
  12. package/build/translations/da.js +1 -0
  13. package/build/translations/de-ch.js +1 -0
  14. package/build/translations/de.js +1 -0
  15. package/build/translations/el.js +1 -0
  16. package/build/translations/en-au.js +1 -0
  17. package/build/translations/es-co.js +1 -0
  18. package/build/translations/es.js +1 -0
  19. package/build/translations/et.js +1 -0
  20. package/build/translations/fa.js +1 -0
  21. package/build/translations/fi.js +1 -0
  22. package/build/translations/fr.js +1 -0
  23. package/build/translations/gl.js +1 -0
  24. package/build/translations/he.js +1 -0
  25. package/build/translations/hi.js +1 -0
  26. package/build/translations/hr.js +1 -0
  27. package/build/translations/hu.js +1 -0
  28. package/build/translations/id.js +1 -0
  29. package/build/translations/it.js +1 -0
  30. package/build/translations/ja.js +1 -0
  31. package/build/translations/jv.js +1 -0
  32. package/build/translations/ko.js +1 -0
  33. package/build/translations/lt.js +1 -0
  34. package/build/translations/lv.js +1 -0
  35. package/build/translations/ms.js +1 -0
  36. package/build/translations/nl.js +1 -0
  37. package/build/translations/no.js +1 -0
  38. package/build/translations/pl.js +1 -0
  39. package/build/translations/pt-br.js +1 -0
  40. package/build/translations/pt.js +1 -0
  41. package/build/translations/ro.js +1 -0
  42. package/build/translations/ru.js +1 -0
  43. package/build/translations/sk.js +1 -0
  44. package/build/translations/sq.js +1 -0
  45. package/build/translations/sr-latn.js +1 -0
  46. package/build/translations/sr.js +1 -0
  47. package/build/translations/sv.js +1 -0
  48. package/build/translations/th.js +1 -0
  49. package/build/translations/ti.js +1 -0
  50. package/build/translations/tk.js +1 -0
  51. package/build/translations/tr.js +1 -0
  52. package/build/translations/tt.js +1 -0
  53. package/build/translations/ug.js +1 -0
  54. package/build/translations/uk.js +1 -0
  55. package/build/translations/ur.js +1 -0
  56. package/build/translations/vi.js +1 -0
  57. package/build/translations/zh-cn.js +1 -0
  58. package/build/translations/zh.js +1 -0
  59. package/ckeditor5-metadata.json +55 -0
  60. package/dist/annotations/annotation.d.ts +101 -0
  61. package/dist/annotations/annotationcollection.d.ts +102 -0
  62. package/dist/annotations/annotations.d.ts +166 -0
  63. package/dist/annotations/annotationsuis.d.ts +244 -0
  64. package/dist/annotations/editorannotations.d.ts +79 -0
  65. package/dist/annotations/inlineannotations.d.ts +102 -0
  66. package/dist/annotations/narrowsidebar.d.ts +97 -0
  67. package/dist/annotations/sidebar.d.ts +112 -0
  68. package/dist/annotations/view/annotationcounterbuttonview.d.ts +33 -0
  69. package/dist/annotations/view/annotationview.d.ts +94 -0
  70. package/dist/annotations/view/sidebaritemview.d.ts +63 -0
  71. package/dist/annotations/view/sidebarview.d.ts +57 -0
  72. package/dist/annotations/widesidebar.d.ts +89 -0
  73. package/dist/augmentation.d.ts +56 -0
  74. package/dist/comments/addcommentthreadcommand.d.ts +39 -0
  75. package/dist/comments/commentsarchive.d.ts +43 -0
  76. package/dist/comments/commentsarchiveui.d.ts +50 -0
  77. package/dist/comments/commentsediting.d.ts +105 -0
  78. package/dist/comments/commentsrepository.d.ts +1137 -0
  79. package/dist/comments/commentsui.d.ts +49 -0
  80. package/dist/comments/integrations/clipboard.d.ts +30 -0
  81. package/dist/comments/integrations/commentsrestrictededitingmode.d.ts +21 -0
  82. package/dist/comments/integrations/importword.d.ts +25 -0
  83. package/dist/comments/ui/commenteditor/commenteditor.d.ts +40 -0
  84. package/dist/comments/ui/commenteditor/commenteditorui.d.ts +35 -0
  85. package/dist/comments/ui/commenteditor/commenteditoruiview.d.ts +40 -0
  86. package/dist/comments/ui/commentthreadcontroller.d.ts +68 -0
  87. package/dist/comments/ui/view/basecommentthreadview.d.ts +152 -0
  88. package/dist/comments/ui/view/basecommentview.d.ts +154 -0
  89. package/dist/comments/ui/view/collapsedcommentsview.d.ts +17 -0
  90. package/dist/comments/ui/view/commentcontentview.d.ts +18 -0
  91. package/dist/comments/ui/view/commentinputview.d.ts +105 -0
  92. package/dist/comments/ui/view/commentsarchiveview.d.ts +50 -0
  93. package/dist/comments/ui/view/commentslistview.d.ts +116 -0
  94. package/dist/comments/ui/view/commentthreadheadercontextview.d.ts +25 -0
  95. package/dist/comments/ui/view/commentthreadheaderview.d.ts +80 -0
  96. package/dist/comments/ui/view/commentthreadinputview.d.ts +60 -0
  97. package/dist/comments/ui/view/commentthreadview.d.ts +127 -0
  98. package/dist/comments/ui/view/commentview.d.ts +244 -0
  99. package/dist/comments.d.ts +47 -0
  100. package/dist/commentsonly.d.ts +45 -0
  101. package/dist/config.d.ts +199 -0
  102. package/dist/index-content.css +5 -0
  103. package/dist/index-editor.css +847 -0
  104. package/dist/index.css +1077 -0
  105. package/dist/index.d.ts +32 -0
  106. package/dist/index.js +31 -0
  107. package/dist/translations/af.d.ts +8 -0
  108. package/dist/translations/af.js +23 -0
  109. package/dist/translations/af.umd.js +23 -0
  110. package/dist/translations/ar.d.ts +8 -0
  111. package/dist/translations/ar.js +23 -0
  112. package/dist/translations/ar.umd.js +23 -0
  113. package/dist/translations/bg.d.ts +8 -0
  114. package/dist/translations/bg.js +23 -0
  115. package/dist/translations/bg.umd.js +23 -0
  116. package/dist/translations/bn.d.ts +8 -0
  117. package/dist/translations/bn.js +23 -0
  118. package/dist/translations/bn.umd.js +23 -0
  119. package/dist/translations/bs.d.ts +8 -0
  120. package/dist/translations/bs.js +23 -0
  121. package/dist/translations/bs.umd.js +23 -0
  122. package/dist/translations/ca.d.ts +8 -0
  123. package/dist/translations/ca.js +23 -0
  124. package/dist/translations/ca.umd.js +23 -0
  125. package/dist/translations/cs.d.ts +8 -0
  126. package/dist/translations/cs.js +23 -0
  127. package/dist/translations/cs.umd.js +23 -0
  128. package/dist/translations/da.d.ts +8 -0
  129. package/dist/translations/da.js +23 -0
  130. package/dist/translations/da.umd.js +23 -0
  131. package/dist/translations/de-ch.d.ts +8 -0
  132. package/dist/translations/de-ch.js +23 -0
  133. package/dist/translations/de-ch.umd.js +23 -0
  134. package/dist/translations/de.d.ts +8 -0
  135. package/dist/translations/de.js +23 -0
  136. package/dist/translations/de.umd.js +23 -0
  137. package/dist/translations/el.d.ts +8 -0
  138. package/dist/translations/el.js +23 -0
  139. package/dist/translations/el.umd.js +23 -0
  140. package/dist/translations/en-au.d.ts +8 -0
  141. package/dist/translations/en-au.js +23 -0
  142. package/dist/translations/en-au.umd.js +23 -0
  143. package/dist/translations/en.d.ts +8 -0
  144. package/dist/translations/en.js +23 -0
  145. package/dist/translations/en.umd.js +23 -0
  146. package/dist/translations/es-co.d.ts +8 -0
  147. package/dist/translations/es-co.js +23 -0
  148. package/dist/translations/es-co.umd.js +23 -0
  149. package/dist/translations/es.d.ts +8 -0
  150. package/dist/translations/es.js +23 -0
  151. package/dist/translations/es.umd.js +23 -0
  152. package/dist/translations/et.d.ts +8 -0
  153. package/dist/translations/et.js +23 -0
  154. package/dist/translations/et.umd.js +23 -0
  155. package/dist/translations/fa.d.ts +8 -0
  156. package/dist/translations/fa.js +23 -0
  157. package/dist/translations/fa.umd.js +23 -0
  158. package/dist/translations/fi.d.ts +8 -0
  159. package/dist/translations/fi.js +23 -0
  160. package/dist/translations/fi.umd.js +23 -0
  161. package/dist/translations/fr.d.ts +8 -0
  162. package/dist/translations/fr.js +23 -0
  163. package/dist/translations/fr.umd.js +23 -0
  164. package/dist/translations/gl.d.ts +8 -0
  165. package/dist/translations/gl.js +23 -0
  166. package/dist/translations/gl.umd.js +23 -0
  167. package/dist/translations/he.d.ts +8 -0
  168. package/dist/translations/he.js +23 -0
  169. package/dist/translations/he.umd.js +23 -0
  170. package/dist/translations/hi.d.ts +8 -0
  171. package/dist/translations/hi.js +23 -0
  172. package/dist/translations/hi.umd.js +23 -0
  173. package/dist/translations/hr.d.ts +8 -0
  174. package/dist/translations/hr.js +23 -0
  175. package/dist/translations/hr.umd.js +23 -0
  176. package/dist/translations/hu.d.ts +8 -0
  177. package/dist/translations/hu.js +23 -0
  178. package/dist/translations/hu.umd.js +23 -0
  179. package/dist/translations/id.d.ts +8 -0
  180. package/dist/translations/id.js +23 -0
  181. package/dist/translations/id.umd.js +23 -0
  182. package/dist/translations/it.d.ts +8 -0
  183. package/dist/translations/it.js +23 -0
  184. package/dist/translations/it.umd.js +23 -0
  185. package/dist/translations/ja.d.ts +8 -0
  186. package/dist/translations/ja.js +23 -0
  187. package/dist/translations/ja.umd.js +23 -0
  188. package/dist/translations/jv.d.ts +8 -0
  189. package/dist/translations/jv.js +23 -0
  190. package/dist/translations/jv.umd.js +23 -0
  191. package/dist/translations/ko.d.ts +8 -0
  192. package/dist/translations/ko.js +23 -0
  193. package/dist/translations/ko.umd.js +23 -0
  194. package/dist/translations/lt.d.ts +8 -0
  195. package/dist/translations/lt.js +23 -0
  196. package/dist/translations/lt.umd.js +23 -0
  197. package/dist/translations/lv.d.ts +8 -0
  198. package/dist/translations/lv.js +23 -0
  199. package/dist/translations/lv.umd.js +23 -0
  200. package/dist/translations/ms.d.ts +8 -0
  201. package/dist/translations/ms.js +23 -0
  202. package/dist/translations/ms.umd.js +23 -0
  203. package/dist/translations/nl.d.ts +8 -0
  204. package/dist/translations/nl.js +23 -0
  205. package/dist/translations/nl.umd.js +23 -0
  206. package/dist/translations/no.d.ts +8 -0
  207. package/dist/translations/no.js +23 -0
  208. package/dist/translations/no.umd.js +23 -0
  209. package/dist/translations/pl.d.ts +8 -0
  210. package/dist/translations/pl.js +23 -0
  211. package/dist/translations/pl.umd.js +23 -0
  212. package/dist/translations/pt-br.d.ts +8 -0
  213. package/dist/translations/pt-br.js +23 -0
  214. package/dist/translations/pt-br.umd.js +23 -0
  215. package/dist/translations/pt.d.ts +8 -0
  216. package/dist/translations/pt.js +23 -0
  217. package/dist/translations/pt.umd.js +23 -0
  218. package/dist/translations/ro.d.ts +8 -0
  219. package/dist/translations/ro.js +23 -0
  220. package/dist/translations/ro.umd.js +23 -0
  221. package/dist/translations/ru.d.ts +8 -0
  222. package/dist/translations/ru.js +23 -0
  223. package/dist/translations/ru.umd.js +23 -0
  224. package/dist/translations/sk.d.ts +8 -0
  225. package/dist/translations/sk.js +23 -0
  226. package/dist/translations/sk.umd.js +23 -0
  227. package/dist/translations/sq.d.ts +8 -0
  228. package/dist/translations/sq.js +23 -0
  229. package/dist/translations/sq.umd.js +23 -0
  230. package/dist/translations/sr-latn.d.ts +8 -0
  231. package/dist/translations/sr-latn.js +23 -0
  232. package/dist/translations/sr-latn.umd.js +23 -0
  233. package/dist/translations/sr.d.ts +8 -0
  234. package/dist/translations/sr.js +23 -0
  235. package/dist/translations/sr.umd.js +23 -0
  236. package/dist/translations/sv.d.ts +8 -0
  237. package/dist/translations/sv.js +23 -0
  238. package/dist/translations/sv.umd.js +23 -0
  239. package/dist/translations/th.d.ts +8 -0
  240. package/dist/translations/th.js +23 -0
  241. package/dist/translations/th.umd.js +23 -0
  242. package/dist/translations/ti.d.ts +8 -0
  243. package/dist/translations/ti.js +23 -0
  244. package/dist/translations/ti.umd.js +23 -0
  245. package/dist/translations/tk.d.ts +8 -0
  246. package/dist/translations/tk.js +23 -0
  247. package/dist/translations/tk.umd.js +23 -0
  248. package/dist/translations/tr.d.ts +8 -0
  249. package/dist/translations/tr.js +23 -0
  250. package/dist/translations/tr.umd.js +23 -0
  251. package/dist/translations/tt.d.ts +8 -0
  252. package/dist/translations/tt.js +23 -0
  253. package/dist/translations/tt.umd.js +23 -0
  254. package/dist/translations/ug.d.ts +8 -0
  255. package/dist/translations/ug.js +23 -0
  256. package/dist/translations/ug.umd.js +23 -0
  257. package/dist/translations/uk.d.ts +8 -0
  258. package/dist/translations/uk.js +23 -0
  259. package/dist/translations/uk.umd.js +23 -0
  260. package/dist/translations/ur.d.ts +8 -0
  261. package/dist/translations/ur.js +23 -0
  262. package/dist/translations/ur.umd.js +23 -0
  263. package/dist/translations/vi.d.ts +8 -0
  264. package/dist/translations/vi.js +23 -0
  265. package/dist/translations/vi.umd.js +23 -0
  266. package/dist/translations/zh-cn.d.ts +8 -0
  267. package/dist/translations/zh-cn.js +23 -0
  268. package/dist/translations/zh-cn.umd.js +23 -0
  269. package/dist/translations/zh.d.ts +8 -0
  270. package/dist/translations/zh.js +23 -0
  271. package/dist/translations/zh.umd.js +23 -0
  272. package/dist/utils/common-translations.d.ts +13 -0
  273. package/dist/utils/createmutationobserver.d.ts +18 -0
  274. package/lang/contexts.json +42 -0
  275. package/lang/translations/af.po +182 -0
  276. package/lang/translations/ar.po +190 -0
  277. package/lang/translations/bg.po +182 -0
  278. package/lang/translations/bn.po +182 -0
  279. package/lang/translations/bs.po +184 -0
  280. package/lang/translations/ca.po +182 -0
  281. package/lang/translations/cs.po +186 -0
  282. package/lang/translations/da.po +182 -0
  283. package/lang/translations/de-ch.po +182 -0
  284. package/lang/translations/de.po +182 -0
  285. package/lang/translations/el.po +182 -0
  286. package/lang/translations/en-au.po +182 -0
  287. package/lang/translations/en.po +182 -0
  288. package/lang/translations/es-co.po +184 -0
  289. package/lang/translations/es.po +184 -0
  290. package/lang/translations/et.po +182 -0
  291. package/lang/translations/fa.po +182 -0
  292. package/lang/translations/fi.po +182 -0
  293. package/lang/translations/fr.po +184 -0
  294. package/lang/translations/gl.po +182 -0
  295. package/lang/translations/he.po +184 -0
  296. package/lang/translations/hi.po +182 -0
  297. package/lang/translations/hr.po +184 -0
  298. package/lang/translations/hu.po +182 -0
  299. package/lang/translations/id.po +180 -0
  300. package/lang/translations/it.po +184 -0
  301. package/lang/translations/ja.po +180 -0
  302. package/lang/translations/jv.po +180 -0
  303. package/lang/translations/ko.po +180 -0
  304. package/lang/translations/lt.po +186 -0
  305. package/lang/translations/lv.po +184 -0
  306. package/lang/translations/ms.po +180 -0
  307. package/lang/translations/nl.po +182 -0
  308. package/lang/translations/no.po +182 -0
  309. package/lang/translations/pl.po +186 -0
  310. package/lang/translations/pt-br.po +184 -0
  311. package/lang/translations/pt.po +184 -0
  312. package/lang/translations/ro.po +184 -0
  313. package/lang/translations/ru.po +186 -0
  314. package/lang/translations/sk.po +186 -0
  315. package/lang/translations/sq.po +182 -0
  316. package/lang/translations/sr-latn.po +184 -0
  317. package/lang/translations/sr.po +184 -0
  318. package/lang/translations/sv.po +182 -0
  319. package/lang/translations/th.po +180 -0
  320. package/lang/translations/ti.po +182 -0
  321. package/lang/translations/tk.po +182 -0
  322. package/lang/translations/tr.po +182 -0
  323. package/lang/translations/tt.po +180 -0
  324. package/lang/translations/ug.po +182 -0
  325. package/lang/translations/uk.po +186 -0
  326. package/lang/translations/ur.po +182 -0
  327. package/lang/translations/vi.po +180 -0
  328. package/lang/translations/zh-cn.po +180 -0
  329. package/lang/translations/zh.po +180 -0
  330. package/package.json +66 -0
  331. package/src/annotations/annotation.d.ts +97 -0
  332. package/src/annotations/annotation.js +24 -0
  333. package/src/annotations/annotationcollection.d.ts +98 -0
  334. package/src/annotations/annotationcollection.js +23 -0
  335. package/src/annotations/annotations.d.ts +162 -0
  336. package/src/annotations/annotations.js +23 -0
  337. package/src/annotations/annotationsuis.d.ts +240 -0
  338. package/src/annotations/annotationsuis.js +23 -0
  339. package/src/annotations/editorannotations.d.ts +75 -0
  340. package/src/annotations/editorannotations.js +23 -0
  341. package/src/annotations/inlineannotations.d.ts +98 -0
  342. package/src/annotations/inlineannotations.js +23 -0
  343. package/src/annotations/narrowsidebar.d.ts +93 -0
  344. package/src/annotations/narrowsidebar.js +23 -0
  345. package/src/annotations/sidebar.d.ts +108 -0
  346. package/src/annotations/sidebar.js +23 -0
  347. package/src/annotations/view/annotationcounterbuttonview.d.ts +29 -0
  348. package/src/annotations/view/annotationcounterbuttonview.js +23 -0
  349. package/src/annotations/view/annotationview.d.ts +90 -0
  350. package/src/annotations/view/annotationview.js +23 -0
  351. package/src/annotations/view/sidebaritemview.d.ts +59 -0
  352. package/src/annotations/view/sidebaritemview.js +23 -0
  353. package/src/annotations/view/sidebarview.d.ts +53 -0
  354. package/src/annotations/view/sidebarview.js +23 -0
  355. package/src/annotations/widesidebar.d.ts +85 -0
  356. package/src/annotations/widesidebar.js +23 -0
  357. package/src/augmentation.d.ts +52 -0
  358. package/src/augmentation.js +23 -0
  359. package/src/comments/addcommentthreadcommand.d.ts +35 -0
  360. package/src/comments/addcommentthreadcommand.js +23 -0
  361. package/src/comments/commentsarchive.d.ts +39 -0
  362. package/src/comments/commentsarchive.js +23 -0
  363. package/src/comments/commentsarchiveui.d.ts +46 -0
  364. package/src/comments/commentsarchiveui.js +23 -0
  365. package/src/comments/commentsediting.d.ts +101 -0
  366. package/src/comments/commentsediting.js +23 -0
  367. package/src/comments/commentsrepository.d.ts +1133 -0
  368. package/src/comments/commentsrepository.js +25 -0
  369. package/src/comments/commentsui.d.ts +45 -0
  370. package/src/comments/commentsui.js +23 -0
  371. package/src/comments/integrations/clipboard.d.ts +26 -0
  372. package/src/comments/integrations/clipboard.js +23 -0
  373. package/src/comments/integrations/commentsrestrictededitingmode.d.ts +17 -0
  374. package/src/comments/integrations/commentsrestrictededitingmode.js +23 -0
  375. package/src/comments/integrations/importword.d.ts +21 -0
  376. package/src/comments/integrations/importword.js +23 -0
  377. package/src/comments/ui/commenteditor/commenteditor.d.ts +36 -0
  378. package/src/comments/ui/commenteditor/commenteditor.js +24 -0
  379. package/src/comments/ui/commenteditor/commenteditorui.d.ts +31 -0
  380. package/src/comments/ui/commenteditor/commenteditorui.js +23 -0
  381. package/src/comments/ui/commenteditor/commenteditoruiview.d.ts +36 -0
  382. package/src/comments/ui/commenteditor/commenteditoruiview.js +23 -0
  383. package/src/comments/ui/commentthreadcontroller.d.ts +64 -0
  384. package/src/comments/ui/commentthreadcontroller.js +24 -0
  385. package/src/comments/ui/view/basecommentthreadview.d.ts +148 -0
  386. package/src/comments/ui/view/basecommentthreadview.js +23 -0
  387. package/src/comments/ui/view/basecommentview.d.ts +150 -0
  388. package/src/comments/ui/view/basecommentview.js +23 -0
  389. package/src/comments/ui/view/collapsedcommentsview.d.ts +13 -0
  390. package/src/comments/ui/view/collapsedcommentsview.js +23 -0
  391. package/src/comments/ui/view/commentcontentview.d.ts +14 -0
  392. package/src/comments/ui/view/commentcontentview.js +23 -0
  393. package/src/comments/ui/view/commentinputview.d.ts +101 -0
  394. package/src/comments/ui/view/commentinputview.js +23 -0
  395. package/src/comments/ui/view/commentsarchiveview.d.ts +46 -0
  396. package/src/comments/ui/view/commentsarchiveview.js +23 -0
  397. package/src/comments/ui/view/commentslistview.d.ts +112 -0
  398. package/src/comments/ui/view/commentslistview.js +23 -0
  399. package/src/comments/ui/view/commentthreadheadercontextview.d.ts +21 -0
  400. package/src/comments/ui/view/commentthreadheadercontextview.js +23 -0
  401. package/src/comments/ui/view/commentthreadheaderview.d.ts +76 -0
  402. package/src/comments/ui/view/commentthreadheaderview.js +23 -0
  403. package/src/comments/ui/view/commentthreadinputview.d.ts +56 -0
  404. package/src/comments/ui/view/commentthreadinputview.js +23 -0
  405. package/src/comments/ui/view/commentthreadview.d.ts +123 -0
  406. package/src/comments/ui/view/commentthreadview.js +24 -0
  407. package/src/comments/ui/view/commentview.d.ts +240 -0
  408. package/src/comments/ui/view/commentview.js +24 -0
  409. package/src/comments.d.ts +43 -0
  410. package/src/comments.js +23 -0
  411. package/src/commentsonly.d.ts +41 -0
  412. package/src/commentsonly.js +23 -0
  413. package/src/config.d.ts +195 -0
  414. package/src/config.js +23 -0
  415. package/src/index.d.ts +28 -0
  416. package/src/index.js +23 -0
  417. package/src/utils/common-translations.d.ts +9 -0
  418. package/src/utils/common-translations.js +23 -0
  419. package/src/utils/createmutationobserver.d.ts +14 -0
  420. package/src/utils/createmutationobserver.js +23 -0
  421. package/theme/annotation-inline.css +50 -0
  422. package/theme/annotation.css +151 -0
  423. package/theme/comment.css +179 -0
  424. package/theme/commentinput.css +96 -0
  425. package/theme/commentmarker.css +45 -0
  426. package/theme/commentsarchive.css +49 -0
  427. package/theme/commentthread.css +292 -0
  428. package/theme/icons/add-comment.svg +11 -0
  429. package/theme/icons/comments-archive.svg +11 -0
  430. package/theme/icons/edit-comment.svg +11 -0
  431. package/theme/icons/remove-comment.svg +11 -0
  432. package/theme/icons/undo.svg +1 -0
  433. package/theme/sidebar-narrow.css +91 -0
  434. package/theme/sidebar.css +72 -0
@@ -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
+ (_0x39d340=>{const {et:{dictionary:_0x9fa7e8,getPluralForm:_0x12442b}}={'et':{'dictionary':{'Comment\x20editor':'Kommentaari\x20redaktor','NUMBER_OF_COMMENTS':['%0\x20kommentaar','%0\x20kommentaari'],'TOO_LONG_COMMENT_ALERT':'Kommentaari\x20sisu\x20on\x20liiga\x20pikk.\x20Sinu\x20kommentaaris\x20on\x20%0\x20märki,\x20aga\x20maksimaalne\x20märkide\x20arv\x20on\x20%1.','Reply...':'Vasta...','Reply\x20to\x20reopen\x20discussion...':'Vastus\x20arutelu\x20taasavamiseks...','Write\x20a\x20comment...':'Kirjuta\x20kommentaar.','Comment\x20was\x20made\x20on\x20an\x20element':'Kommentaar\x20tehti\x20elemendi\x20kohta','Edit':'Muuda','Resolve':'Lahendama','Reopen':'Avama','Remove':'Eemalda','Reply':'Vasta','Delete\x20comment?':'Kustutada\x20kommentaar?','Delete\x20comment\x20thread?':'Kustutada\x20kommentati\x20lõim?','Marked\x20as\x20resolved':'Märgitud\x20lahendatuks','Comment':'Kommentaar','Annotations\x20sidebar':'Allmärkuste\x20külgriba','Annotations\x20list':'Allmärkuste\x20nimekiri','Thread\x20comments':'Teema\x20kommentaarid','THREAD_CONTEXT_LABEL':'Teema\x20kontekst:\x20%0','COMMENT_THREAD_LABEL':['Kommenteeritava\x20teema\x20koostas\x20%1.\x20%1\x20vastas.','Kommenteeritava\x20teema\x20koostas\x20%1.\x20%1\x20vastas.'],'COMMENT_THREAD_DESCRIPTION':'Rohkemateks\x20valikuteks\x20vajutage\x20Enter\x20klahvi.\x20Väljumiseks\x20vajutage\x20Escape.','COMMENT_ARIA_LABEL':'Kommenteeris\x20%0.\x20Koostatud\x20%1.\x20\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Kommentaaride\x20nimekiri','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Allmärkuse\x20teemade\x20kasutamise\x20kiirklahvid\x20(nt\x20kommentaarid,\x20muudatuste\x20jälgimissoovitused)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Keskendu\x20teemale,\x20kui\x20valik\x20püsib\x20omas\x20kohas','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Väljuge\x20allmärkusest\x20ja\x20keskenduge\x20taas\x20muudetud\x20sisule','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Sirvige\x20kasutusel\x20allmärkuste\x20teemale\x20või\x20teema\x20kommentaarile','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Vahetage\x20allmärkuste\x20teema\x20sisevalikuid','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Saatke\x20vastus\x20kommenteerimise\x20ajal','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Keskenduge\x20allmärkuste\x20külgriba\x20või\x20kommentaaride\x20arhiivi\x20eelmisele\x20või\x20järgmisele\x20teemale','ENTER_COMMENT_ANNOUNCEMENT':'Kommenteeritud\x20sisu\x20sisestamine.\x20Aruteluks\x20vajutage\x20%0.','LEAVE_COMMENT_ANNOUNCEMENT':'Kommenteeritud\x20sisu\x20avaldamine.','PENDING_ACTION_COMMENT_THREAD':'Salvestamata\x20muudatused\x20kommentaaride\x20lõimes.','EXTERNAL_COMMENT':'Kommentaar\x20pärineb\x20välisallikast.','EXTERNAL_IMPORT_WORD_COMMENT':'See\x20kommentaar\x20pärineb\x20imporditud\x20Wordi\x20failist.','EXTERNAL_AVATAR':'Kuvatud\x20autori\x20nimi\x20pärineb\x20välisest\x20allikast\x20(lisas\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Kuvatud\x20autori\x20nimi\x20pärineb\x20Wordi\x20dokumendist,\x20mille\x20on\x20importinud\x20%0','COMMENTS_ARCHIVE':'Kommentaarid\x20arhiiv','EMPTY_COMMENTS_ARCHIVE':'Puuduvad\x20arhiveeritud\x20kommentaar\x20niidid.'},'getPluralForm':_0x49f277=>0x1!=_0x49f277}};_0x39d340['et']||={'dictionary':{},'getPluralForm':null},_0x39d340['et']['dictionary']=Object['assign'](_0x39d340['et']['dictionary'],_0x9fa7e8),_0x39d340['et']['getPluralForm']=_0x12442b;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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{'fa':{'dictionary':{'Comment\x20editor':'ویرایشگر\x20نظر','NUMBER_OF_COMMENTS':['',''],'TOO_LONG_COMMENT_ALERT':'محتوای\x20نظر\x20خیلی\x20طولانی\x20است.\x20نظر\x20شما\x200%\x20حرف\x20دارد\x20اما\x20حد\x20مجاز\x201%\x20حرف\x20است.','Reply...':'پاسخ...','Reply\x20to\x20reopen\x20discussion...':'','Write\x20a\x20comment...':'نظر\x20بنویسید...','Comment\x20was\x20made\x20on\x20an\x20element':'','Edit':'ویرایش','Resolve':'','Reopen':'','Remove':'حذف','Reply':'ثبت\x20پاسخ','Delete\x20comment?':'نظر\x20حذف\x20شود؟','Delete\x20comment\x20thread?':'رشته\x20نظرات\x20حذف\x20شود؟','Marked\x20as\x20resolved':'','Comment':'نظر','Annotations\x20sidebar':'','Annotations\x20list':'','Thread\x20comments':'','THREAD_CONTEXT_LABEL':'','COMMENT_THREAD_LABEL':['',''],'COMMENT_THREAD_DESCRIPTION':'','COMMENT_ARIA_LABEL':'','COMMENTS_ARCHIVE_LIST_LABEL':'','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'','ENTER_COMMENT_ANNOUNCEMENT':'','LEAVE_COMMENT_ANNOUNCEMENT':'','PENDING_ACTION_COMMENT_THREAD':'تغییرات\x20ثبت\x20نشده\x20در\x20نظر\x20وجود\x20دارد.','EXTERNAL_COMMENT':'این\x20نظر\x20از\x20یک\x20منع\x20بیرونی\x20آمده\x20است.','EXTERNAL_IMPORT_WORD_COMMENT':'این\x20نظر\x20از\x20یک\x20فایل\x20ورد\x20آمده\x20است.','EXTERNAL_AVATAR':'نام\x20نمایش\x20داده\x20شده\x20نویسنده\x20از\x20منبع\x20خارجی\x20آمده\x20است.\x20(اضافه\x20شده\x20توسط\x200%)','EXTERNAL_IMPORT_WORD_AVATAR':'نام\x20نمایش\x20داده\x20شده\x20نویسنده\x20از\x20یک\x20فایل\x20ورد\x20وارد\x20شده\x20توسط\x200%\x20آمده\x20است.','COMMENTS_ARCHIVE':'بایگانی\x20نظرات','EMPTY_COMMENTS_ARCHIVE':'هیچ\x20نظر\x20بایگانی\x20شده\x20ای\x20وجود\x20ندارد.'},'getPluralForm':_0x19dcd5=>_0x19dcd5>0x1}};
@@ -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
+ (_0x504377=>{const {fa:{dictionary:_0x2cdf8c,getPluralForm:_0x37970}}={'fa':{'dictionary':{'Comment\x20editor':'ویرایشگر\x20نظر','NUMBER_OF_COMMENTS':['',''],'TOO_LONG_COMMENT_ALERT':'محتوای\x20نظر\x20خیلی\x20طولانی\x20است.\x20نظر\x20شما\x200%\x20حرف\x20دارد\x20اما\x20حد\x20مجاز\x201%\x20حرف\x20است.','Reply...':'پاسخ...','Reply\x20to\x20reopen\x20discussion...':'','Write\x20a\x20comment...':'نظر\x20بنویسید...','Comment\x20was\x20made\x20on\x20an\x20element':'','Edit':'ویرایش','Resolve':'','Reopen':'','Remove':'حذف','Reply':'ثبت\x20پاسخ','Delete\x20comment?':'نظر\x20حذف\x20شود؟','Delete\x20comment\x20thread?':'رشته\x20نظرات\x20حذف\x20شود؟','Marked\x20as\x20resolved':'','Comment':'نظر','Annotations\x20sidebar':'','Annotations\x20list':'','Thread\x20comments':'','THREAD_CONTEXT_LABEL':'','COMMENT_THREAD_LABEL':['',''],'COMMENT_THREAD_DESCRIPTION':'','COMMENT_ARIA_LABEL':'','COMMENTS_ARCHIVE_LIST_LABEL':'','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'','ENTER_COMMENT_ANNOUNCEMENT':'','LEAVE_COMMENT_ANNOUNCEMENT':'','PENDING_ACTION_COMMENT_THREAD':'تغییرات\x20ثبت\x20نشده\x20در\x20نظر\x20وجود\x20دارد.','EXTERNAL_COMMENT':'این\x20نظر\x20از\x20یک\x20منع\x20بیرونی\x20آمده\x20است.','EXTERNAL_IMPORT_WORD_COMMENT':'این\x20نظر\x20از\x20یک\x20فایل\x20ورد\x20آمده\x20است.','EXTERNAL_AVATAR':'نام\x20نمایش\x20داده\x20شده\x20نویسنده\x20از\x20منبع\x20خارجی\x20آمده\x20است.\x20(اضافه\x20شده\x20توسط\x200%)','EXTERNAL_IMPORT_WORD_AVATAR':'نام\x20نمایش\x20داده\x20شده\x20نویسنده\x20از\x20یک\x20فایل\x20ورد\x20وارد\x20شده\x20توسط\x200%\x20آمده\x20است.','COMMENTS_ARCHIVE':'بایگانی\x20نظرات','EMPTY_COMMENTS_ARCHIVE':'هیچ\x20نظر\x20بایگانی\x20شده\x20ای\x20وجود\x20ندارد.'},'getPluralForm':_0x298bfd=>_0x298bfd>0x1}};_0x504377['fa']||={'dictionary':{},'getPluralForm':null},_0x504377['fa']['dictionary']=Object['assign'](_0x504377['fa']['dictionary'],_0x2cdf8c),_0x504377['fa']['getPluralForm']=_0x37970;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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':{'Comment\x20editor':'Kommenttieditori','NUMBER_OF_COMMENTS':['%0\x20kommentti','%0\x20kommentti'],'TOO_LONG_COMMENT_ALERT':'Kommenttisi\x20sisältö\x20on\x20liian\x20pitkä.\x20Kommentissasi\x20on\x20%0\x20merkkiä,\x20kun\x20taas\x20yläraja\x20on\x20%1\x20merkkiä.','Reply...':'Vastaa...','Reply\x20to\x20reopen\x20discussion...':'Vastaa\x20avataksesi\x20keskustelun\x20uudelleen...','Write\x20a\x20comment...':'Kirjoita\x20kommentti...','Comment\x20was\x20made\x20on\x20an\x20element':'Kommentti\x20annettiin\x20elementistä','Edit':'Muokkaa','Resolve':'Ratkaise','Reopen':'Avaa\x20uudelleen','Remove':'Poista','Reply':'Vastaa','Delete\x20comment?':'Poistetaanko\x20kommentti?','Delete\x20comment\x20thread?':'Poistetaanko\x20kommenttiketju?','Marked\x20as\x20resolved':'Merkitty\x20ratkaistuksi','Comment':'Kommentti','Annotations\x20sidebar':'Huomautussivupalkki','Annotations\x20list':'Luettelo\x20huomautuksista','Thread\x20comments':'Ketjun\x20kommentit','THREAD_CONTEXT_LABEL':'Ketjun\x20konteksti:\x20%0','COMMENT_THREAD_LABEL':['Kommenttiketjun\x20tehnyt\x20%1.\x20%1\x20vastaus.','Kommenttiketjun\x20tehnyt\x20%1.\x20%1\x20vastausta.'],'COMMENT_THREAD_DESCRIPTION':'Saat\x20lisää\x20vaihtoehtoja\x20painamalla\x20Enter-näppäintä.\x20Poistu\x20painamalla\x20Escape-näppäintä.','COMMENT_ARIA_LABEL':'Kommentit\x20tehnyt\x20%0.\x20Luotu\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Luettelo\x20kommenteista','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Näppäinpainallukset\x20toimintaan\x20huomautusketjuissa\x20(esim.\x20kommentit,\x20jäljitä\x20muutosehdotuksia)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Siirrä\x20kohdennus\x20ketjuun,\x20kun\x20valinta\x20on\x20ankkuroitu\x20merkitsimeensä','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Poistu\x20huomautuksesta\x20ja\x20siirrä\x20kohdennus\x20takaisin\x20muokattuun\x20sisältöön','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Selaa\x20kohdennettua\x20merkintäketjua\x20tai\x20ketjun\x20kommenttia','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Liiku\x20muokkausketjun\x20sisäisissä','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Lähetä\x20vastaus\x20kirjoittaessasi\x20kommenttia','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Siirry\x20edelliseen\x20tai\x20seuraavaan\x20ketjuun\x20huomautussivupalkissa\x20tai\x20kommenttiarkistossa','ENTER_COMMENT_ANNOUNCEMENT':'Tullaan\x20sisältöön,\x20jossa\x20on\x20kommentteja.\x20Paina\x20%0\x20siirtyäksesi\x20keskusteluun.','LEAVE_COMMENT_ANNOUNCEMENT':'Poistutaan\x20sisällöstä,\x20jossa\x20on\x20kommentteja.','PENDING_ACTION_COMMENT_THREAD':'Tallentamaton\x20muutos\x20kommenttiketjussa.','EXTERNAL_COMMENT':'Tämä\x20kommentti\x20tulee\x20ulkoisesta\x20lähteestä.','EXTERNAL_IMPORT_WORD_COMMENT':'Tämä\x20kommentti\x20tulee\x20tuodusta\x20Word-tiedostosta.','EXTERNAL_AVATAR':'Esitetty\x20kirjoittajan\x20nimi\x20tulee\x20ulkoisesta\x20lähteestä\x20(lisännyt:\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Esitetty\x20kirjoittajan\x20nimi\x20tulee\x20henkilön\x20%0\x20tuomasta\x20Word-tiedostosta','COMMENTS_ARCHIVE':'Kommenttiarkisto','EMPTY_COMMENTS_ARCHIVE':'Arkistoituja\x20kommenttiketjuja\x20ei\x20ole.'},'getPluralForm':_0x1f6812=>0x1!=_0x1f6812}};
@@ -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
+ (_0x403c24=>{const {fi:{dictionary:_0x4b2a92,getPluralForm:_0x549365}}={'fi':{'dictionary':{'Comment\x20editor':'Kommenttieditori','NUMBER_OF_COMMENTS':['%0\x20kommentti','%0\x20kommentti'],'TOO_LONG_COMMENT_ALERT':'Kommenttisi\x20sisältö\x20on\x20liian\x20pitkä.\x20Kommentissasi\x20on\x20%0\x20merkkiä,\x20kun\x20taas\x20yläraja\x20on\x20%1\x20merkkiä.','Reply...':'Vastaa...','Reply\x20to\x20reopen\x20discussion...':'Vastaa\x20avataksesi\x20keskustelun\x20uudelleen...','Write\x20a\x20comment...':'Kirjoita\x20kommentti...','Comment\x20was\x20made\x20on\x20an\x20element':'Kommentti\x20annettiin\x20elementistä','Edit':'Muokkaa','Resolve':'Ratkaise','Reopen':'Avaa\x20uudelleen','Remove':'Poista','Reply':'Vastaa','Delete\x20comment?':'Poistetaanko\x20kommentti?','Delete\x20comment\x20thread?':'Poistetaanko\x20kommenttiketju?','Marked\x20as\x20resolved':'Merkitty\x20ratkaistuksi','Comment':'Kommentti','Annotations\x20sidebar':'Huomautussivupalkki','Annotations\x20list':'Luettelo\x20huomautuksista','Thread\x20comments':'Ketjun\x20kommentit','THREAD_CONTEXT_LABEL':'Ketjun\x20konteksti:\x20%0','COMMENT_THREAD_LABEL':['Kommenttiketjun\x20tehnyt\x20%1.\x20%1\x20vastaus.','Kommenttiketjun\x20tehnyt\x20%1.\x20%1\x20vastausta.'],'COMMENT_THREAD_DESCRIPTION':'Saat\x20lisää\x20vaihtoehtoja\x20painamalla\x20Enter-näppäintä.\x20Poistu\x20painamalla\x20Escape-näppäintä.','COMMENT_ARIA_LABEL':'Kommentit\x20tehnyt\x20%0.\x20Luotu\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Luettelo\x20kommenteista','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Näppäinpainallukset\x20toimintaan\x20huomautusketjuissa\x20(esim.\x20kommentit,\x20jäljitä\x20muutosehdotuksia)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Siirrä\x20kohdennus\x20ketjuun,\x20kun\x20valinta\x20on\x20ankkuroitu\x20merkitsimeensä','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Poistu\x20huomautuksesta\x20ja\x20siirrä\x20kohdennus\x20takaisin\x20muokattuun\x20sisältöön','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Selaa\x20kohdennettua\x20merkintäketjua\x20tai\x20ketjun\x20kommenttia','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Liiku\x20muokkausketjun\x20sisäisissä','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Lähetä\x20vastaus\x20kirjoittaessasi\x20kommenttia','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Siirry\x20edelliseen\x20tai\x20seuraavaan\x20ketjuun\x20huomautussivupalkissa\x20tai\x20kommenttiarkistossa','ENTER_COMMENT_ANNOUNCEMENT':'Tullaan\x20sisältöön,\x20jossa\x20on\x20kommentteja.\x20Paina\x20%0\x20siirtyäksesi\x20keskusteluun.','LEAVE_COMMENT_ANNOUNCEMENT':'Poistutaan\x20sisällöstä,\x20jossa\x20on\x20kommentteja.','PENDING_ACTION_COMMENT_THREAD':'Tallentamaton\x20muutos\x20kommenttiketjussa.','EXTERNAL_COMMENT':'Tämä\x20kommentti\x20tulee\x20ulkoisesta\x20lähteestä.','EXTERNAL_IMPORT_WORD_COMMENT':'Tämä\x20kommentti\x20tulee\x20tuodusta\x20Word-tiedostosta.','EXTERNAL_AVATAR':'Esitetty\x20kirjoittajan\x20nimi\x20tulee\x20ulkoisesta\x20lähteestä\x20(lisännyt:\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Esitetty\x20kirjoittajan\x20nimi\x20tulee\x20henkilön\x20%0\x20tuomasta\x20Word-tiedostosta','COMMENTS_ARCHIVE':'Kommenttiarkisto','EMPTY_COMMENTS_ARCHIVE':'Arkistoituja\x20kommenttiketjuja\x20ei\x20ole.'},'getPluralForm':_0x45401d=>0x1!=_0x45401d}};_0x403c24['fi']||={'dictionary':{},'getPluralForm':null},_0x403c24['fi']['dictionary']=Object['assign'](_0x403c24['fi']['dictionary'],_0x4b2a92),_0x403c24['fi']['getPluralForm']=_0x549365;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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':{'Comment\x20editor':'Éditeur\x20de\x20commentaire','NUMBER_OF_COMMENTS':['%0\x20commentaire','%0\x20commentaires','%0\x20commentaires'],'TOO_LONG_COMMENT_ALERT':'Le\x20contenu\x20du\x20commentaire\x20est\x20trop\x20long.\x20Votre\x20commentaire\x20contient\x20%0\x20caractères\x20alors\x20que\x20la\x20limite\x20est\x20de\x20%1\x20caractères.','Reply...':'Répondre...','Reply\x20to\x20reopen\x20discussion...':'Répondre\x20pour\x20rouvrir\x20la\x20discussion...','Write\x20a\x20comment...':'Écrire\x20un\x20commentaire...','Comment\x20was\x20made\x20on\x20an\x20element':'Un\x20commentaire\x20a\x20été\x20ajouté\x20sur\x20un\x20élément','Edit':'Éditer','Resolve':'Résoudre','Reopen':'Rouvrir','Remove':'Supprimer','Reply':'Répondre','Delete\x20comment?':'Supprimer\x20le\x20commentaire\x20?','Delete\x20comment\x20thread?':'Supprimer\x20le\x20fil\x20des\x20commentaires\x20?\x20','Marked\x20as\x20resolved':'Marqué\x20comme\x20résolu','Comment':'Commenter','Annotations\x20sidebar':'Barre\x20latérale\x20des\x20annotations','Annotations\x20list':'Liste\x20des\x20annotations','Thread\x20comments':'Commentaires\x20sur\x20le\x20fil\x20de\x20discussion','THREAD_CONTEXT_LABEL':'Contexte\x20du\x20fil\x20de\x20discussion\u00a0:\x20%0','COMMENT_THREAD_LABEL':['Commentaire\x20du\x20fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.','Fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.','Fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.'],'COMMENT_THREAD_DESCRIPTION':'Appuyez\x20sur\x20«\x20Entrée\x20»\x20pour\x20accéder\x20à\x20plus\x20d\x27options.\x20Appuyez\x20sur\x20«\x20Échap\x20»\x20pour\x20quitter.','COMMENT_ARIA_LABEL':'Commentaire\x20de\x20%0.\x20Créé\x20le\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Liste\x20des\x20commentaires','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Touches\x20permettant\x20d\x27interagir\x20avec\x20les\x20fils\x20d\x27annotation\x20(par\x20exemple,\x20commentaires,\x20suggestions\x20de\x20suivi\x20des\x20modifications)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Déplacer\x20le\x20focus\x20sur\x20le\x20fil\x20de\x20discussion\x20lorsque\x20la\x20sélection\x20est\x20ancrée\x20dans\x20son\x20marqueur','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Quitter\x20l\x27annotation\x20et\x20remettre\x20le\x20focus\x20sur\x20le\x20contenu\x20modifié','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Parcourir\x20le\x20fil\x20d\x27annotation\x20ou\x20le\x20commentaire\x20du\x20fil\x20de\x20discussion\x20ciblé','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Se\x20déplacer\x20à\x20travers\x20les\x20éléments\x20internes\x20du\x20fil\x20d\x27annotation','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Soumettre\x20la\x20réponse\x20en\x20écrivant\x20un\x20commentaire','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Passer\x20au\x20fil\x20de\x20discussion\x20précédent\x20ou\x20suivant\x20dans\x20la\x20barre\x20latérale\x20des\x20annotations\x20ou\x20dans\x20l\x27archive\x20des\x20commentaires','ENTER_COMMENT_ANNOUNCEMENT':'Saisir\x20un\x20contenu\x20avec\x20des\x20commentaires.\x20Appuyez\x20sur\x20%0\x20pour\x20accéder\x20à\x20la\x20discussion.','LEAVE_COMMENT_ANNOUNCEMENT':'Laisser\x20un\x20contenu\x20avec\x20des\x20commentaires.','PENDING_ACTION_COMMENT_THREAD':'Changement\x20non\x20enregistré\x20dans\x20le\x20fil\x20des\x20commentaires.','EXTERNAL_COMMENT':'Ce\x20commentaire\x20provient\x20d\x27une\x20source\x20externe.','EXTERNAL_IMPORT_WORD_COMMENT':'Ce\x20commentaire\x20provient\x20d\x27un\x20fichier\x20Word\x20importé.','EXTERNAL_AVATAR':'Le\x20nom\x20de\x20l\x27auteur\x20affiché\x20provient\x20d\x27une\x20source\x20externe\x20(ajouté\x20par\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Le\x20nom\x20d\x27auteur\x20affiché\x20provient\x20d\x27un\x20document\x20Word\x20importé\x20par\x20%0','COMMENTS_ARCHIVE':'Archive\x20des\x20commentaires','EMPTY_COMMENTS_ARCHIVE':'Il\x20n\x27y\x20a\x20pas\x20de\x20fils\x20de\x20commentaires\x20archivés.'},'getPluralForm':_0x4eac41=>0x0==_0x4eac41||0x1==_0x4eac41?0x0:0x0!=_0x4eac41&&_0x4eac41%0xf4240==0x0?0x1:0x2}};
@@ -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
+ (_0xfac1b3=>{const {fr:{dictionary:_0x2527de,getPluralForm:_0x1acd8f}}={'fr':{'dictionary':{'Comment\x20editor':'Éditeur\x20de\x20commentaire','NUMBER_OF_COMMENTS':['%0\x20commentaire','%0\x20commentaires','%0\x20commentaires'],'TOO_LONG_COMMENT_ALERT':'Le\x20contenu\x20du\x20commentaire\x20est\x20trop\x20long.\x20Votre\x20commentaire\x20contient\x20%0\x20caractères\x20alors\x20que\x20la\x20limite\x20est\x20de\x20%1\x20caractères.','Reply...':'Répondre...','Reply\x20to\x20reopen\x20discussion...':'Répondre\x20pour\x20rouvrir\x20la\x20discussion...','Write\x20a\x20comment...':'Écrire\x20un\x20commentaire...','Comment\x20was\x20made\x20on\x20an\x20element':'Un\x20commentaire\x20a\x20été\x20ajouté\x20sur\x20un\x20élément','Edit':'Éditer','Resolve':'Résoudre','Reopen':'Rouvrir','Remove':'Supprimer','Reply':'Répondre','Delete\x20comment?':'Supprimer\x20le\x20commentaire\x20?','Delete\x20comment\x20thread?':'Supprimer\x20le\x20fil\x20des\x20commentaires\x20?\x20','Marked\x20as\x20resolved':'Marqué\x20comme\x20résolu','Comment':'Commenter','Annotations\x20sidebar':'Barre\x20latérale\x20des\x20annotations','Annotations\x20list':'Liste\x20des\x20annotations','Thread\x20comments':'Commentaires\x20sur\x20le\x20fil\x20de\x20discussion','THREAD_CONTEXT_LABEL':'Contexte\x20du\x20fil\x20de\x20discussion\u00a0:\x20%0','COMMENT_THREAD_LABEL':['Commentaire\x20du\x20fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.','Fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.','Fil\x20de\x20discussion\x20de\x20%1.\x20%1\x20réponse.'],'COMMENT_THREAD_DESCRIPTION':'Appuyez\x20sur\x20«\x20Entrée\x20»\x20pour\x20accéder\x20à\x20plus\x20d\x27options.\x20Appuyez\x20sur\x20«\x20Échap\x20»\x20pour\x20quitter.','COMMENT_ARIA_LABEL':'Commentaire\x20de\x20%0.\x20Créé\x20le\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Liste\x20des\x20commentaires','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Touches\x20permettant\x20d\x27interagir\x20avec\x20les\x20fils\x20d\x27annotation\x20(par\x20exemple,\x20commentaires,\x20suggestions\x20de\x20suivi\x20des\x20modifications)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Déplacer\x20le\x20focus\x20sur\x20le\x20fil\x20de\x20discussion\x20lorsque\x20la\x20sélection\x20est\x20ancrée\x20dans\x20son\x20marqueur','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Quitter\x20l\x27annotation\x20et\x20remettre\x20le\x20focus\x20sur\x20le\x20contenu\x20modifié','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Parcourir\x20le\x20fil\x20d\x27annotation\x20ou\x20le\x20commentaire\x20du\x20fil\x20de\x20discussion\x20ciblé','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Se\x20déplacer\x20à\x20travers\x20les\x20éléments\x20internes\x20du\x20fil\x20d\x27annotation','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Soumettre\x20la\x20réponse\x20en\x20écrivant\x20un\x20commentaire','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Passer\x20au\x20fil\x20de\x20discussion\x20précédent\x20ou\x20suivant\x20dans\x20la\x20barre\x20latérale\x20des\x20annotations\x20ou\x20dans\x20l\x27archive\x20des\x20commentaires','ENTER_COMMENT_ANNOUNCEMENT':'Saisir\x20un\x20contenu\x20avec\x20des\x20commentaires.\x20Appuyez\x20sur\x20%0\x20pour\x20accéder\x20à\x20la\x20discussion.','LEAVE_COMMENT_ANNOUNCEMENT':'Laisser\x20un\x20contenu\x20avec\x20des\x20commentaires.','PENDING_ACTION_COMMENT_THREAD':'Changement\x20non\x20enregistré\x20dans\x20le\x20fil\x20des\x20commentaires.','EXTERNAL_COMMENT':'Ce\x20commentaire\x20provient\x20d\x27une\x20source\x20externe.','EXTERNAL_IMPORT_WORD_COMMENT':'Ce\x20commentaire\x20provient\x20d\x27un\x20fichier\x20Word\x20importé.','EXTERNAL_AVATAR':'Le\x20nom\x20de\x20l\x27auteur\x20affiché\x20provient\x20d\x27une\x20source\x20externe\x20(ajouté\x20par\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Le\x20nom\x20d\x27auteur\x20affiché\x20provient\x20d\x27un\x20document\x20Word\x20importé\x20par\x20%0','COMMENTS_ARCHIVE':'Archive\x20des\x20commentaires','EMPTY_COMMENTS_ARCHIVE':'Il\x20n\x27y\x20a\x20pas\x20de\x20fils\x20de\x20commentaires\x20archivés.'},'getPluralForm':_0x3fec46=>0x0==_0x3fec46||0x1==_0x3fec46?0x0:0x0!=_0x3fec46&&_0x3fec46%0xf4240==0x0?0x1:0x2}};_0xfac1b3['fr']||={'dictionary':{},'getPluralForm':null},_0xfac1b3['fr']['dictionary']=Object['assign'](_0xfac1b3['fr']['dictionary'],_0x2527de),_0xfac1b3['fr']['getPluralForm']=_0x1acd8f;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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{'gl':{'dictionary':{'Comment\x20editor':'Editor\x20de\x20comentarios','NUMBER_OF_COMMENTS':['%0\x20comentario','%0\x20comentarios'],'TOO_LONG_COMMENT_ALERT':'O\x20contido\x20dos\x20comentarios\x20é\x20demasiado\x20longo.\x20O\x20seu\x20comentario\x20ten\x20%0\x20caracteres\x20mais\x20o\x20límite\x20é\x20de\x20%1\x20caracteres.','Reply...':'Responder…','Reply\x20to\x20reopen\x20discussion...':'Responder\x20para\x20volver\x20abrir\x20a\x20discusión...','Write\x20a\x20comment...':'Escribir\x20un\x20comentario…','Comment\x20was\x20made\x20on\x20an\x20element':'Comentouse\x20un\x20elemento','Edit':'Editar','Resolve':'Solucionar','Reopen':'Volver\x20abrir','Remove':'Retirar','Reply':'Responder','Delete\x20comment?':'Eliminar\x20o\x20comentario?','Delete\x20comment\x20thread?':'Eliminar\x20o\x20fío\x20de\x20comentarios?','Marked\x20as\x20resolved':'Marcado\x20como\x20solucionado','Comment':'Comentario','Annotations\x20sidebar':'Barra\x20lateral\x20de\x20anotacións','Annotations\x20list':'Lista\x20de\x20anotacións','Thread\x20comments':'Fío\x20de\x20comentarios','THREAD_CONTEXT_LABEL':'Contexto\x20do\x20fío:\x20%0','COMMENT_THREAD_LABEL':['Fío\x20de\x20comentarios\x20de\x20%\x201.\x20%1\x20resposta.','Fío\x20de\x20comentarios\x20de\x20%1.\x20%0\x20respostas.'],'COMMENT_THREAD_DESCRIPTION':'Prema\x20Intro\x20para\x20obter\x20máis\x20opcións.\x20Prema\x20Escape\x20para\x20saír.','COMMENT_ARIA_LABEL':'Comentario\x20de\x20%0.\x20Creado\x20o\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Lista\x20de\x20comentarios','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Teclas\x20de\x20atallo\x20para\x20interactuar\x20cos\x20fíos\x20de\x20anotación\x20(p.\x20ex.,\x20comentarios,\x20seguimento\x20de\x20propostas\x20de\x20cambios)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Mover\x20o\x20foco\x20ao\x20fío\x20cando\x20a\x20selección\x20estea\x20ancorada\x20no\x20seu\x20marcador','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Sair\x20da\x20anotación\x20e\x20mover\x20o\x20foco\x20de\x20volta\x20ao\x20contido\x20editado','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Examinar\x20o\x20fío\x20de\x20anotación\x20enfocado\x20ou\x20o\x20comentario\x20do\x20fío','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Desprazarse\x20polos\x20elementos\x20internos\x20do\x20fío\x20de\x20anotación','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Enviar\x20a\x20resposta\x20mentres\x20escribe\x20un\x20comentario','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Mover\x20ao\x20fío\x20anterior\x20ou\x20seguinte\x20na\x20barra\x20lateral\x20de\x20anotacións\x20ou\x20no\x20arquivo\x20de\x20comentarios','ENTER_COMMENT_ANNOUNCEMENT':'Introducir\x20un\x20contido\x20con\x20comentarios.\x20Prema\x20%0\x20para\x20ir\x20á\x20discusión.','LEAVE_COMMENT_ANNOUNCEMENT':'Abandonando\x20un\x20contido\x20con\x20comentarios.','PENDING_ACTION_COMMENT_THREAD':'Cambio\x20sen\x20gardar\x20no\x20fío\x20de\x20comentarios.','EXTERNAL_COMMENT':'Este\x20comentario\x20procede\x20dunha\x20fonte\x20externa.','EXTERNAL_IMPORT_WORD_COMMENT':'Este\x20comentario\x20procede\x20dun\x20ficheiro\x20de\x20Word\x20importado.','EXTERNAL_AVATAR':'O\x20nome\x20do\x20autor\x20amosado\x20procede\x20dunha\x20fonte\x20externa\x20(engadido\x20por\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'O\x20nome\x20do\x20autor\x20amosado\x20procede\x20dun\x20documento\x20de\x20Word\x20importado\x20por\x20%0','COMMENTS_ARCHIVE':'Arquivo\x20de\x20comentarios','EMPTY_COMMENTS_ARCHIVE':'Non\x20hai\x20fíos\x20de\x20comentarios\x20arquivados.'},'getPluralForm':_0x2580d0=>0x1!=_0x2580d0}};
@@ -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
+ (_0x551e8d=>{const {gl:{dictionary:_0x593e06,getPluralForm:_0x2d161b}}={'gl':{'dictionary':{'Comment\x20editor':'Editor\x20de\x20comentarios','NUMBER_OF_COMMENTS':['%0\x20comentario','%0\x20comentarios'],'TOO_LONG_COMMENT_ALERT':'O\x20contido\x20dos\x20comentarios\x20é\x20demasiado\x20longo.\x20O\x20seu\x20comentario\x20ten\x20%0\x20caracteres\x20mais\x20o\x20límite\x20é\x20de\x20%1\x20caracteres.','Reply...':'Responder…','Reply\x20to\x20reopen\x20discussion...':'Responder\x20para\x20volver\x20abrir\x20a\x20discusión...','Write\x20a\x20comment...':'Escribir\x20un\x20comentario…','Comment\x20was\x20made\x20on\x20an\x20element':'Comentouse\x20un\x20elemento','Edit':'Editar','Resolve':'Solucionar','Reopen':'Volver\x20abrir','Remove':'Retirar','Reply':'Responder','Delete\x20comment?':'Eliminar\x20o\x20comentario?','Delete\x20comment\x20thread?':'Eliminar\x20o\x20fío\x20de\x20comentarios?','Marked\x20as\x20resolved':'Marcado\x20como\x20solucionado','Comment':'Comentario','Annotations\x20sidebar':'Barra\x20lateral\x20de\x20anotacións','Annotations\x20list':'Lista\x20de\x20anotacións','Thread\x20comments':'Fío\x20de\x20comentarios','THREAD_CONTEXT_LABEL':'Contexto\x20do\x20fío:\x20%0','COMMENT_THREAD_LABEL':['Fío\x20de\x20comentarios\x20de\x20%\x201.\x20%1\x20resposta.','Fío\x20de\x20comentarios\x20de\x20%1.\x20%0\x20respostas.'],'COMMENT_THREAD_DESCRIPTION':'Prema\x20Intro\x20para\x20obter\x20máis\x20opcións.\x20Prema\x20Escape\x20para\x20saír.','COMMENT_ARIA_LABEL':'Comentario\x20de\x20%0.\x20Creado\x20o\x20%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'Lista\x20de\x20comentarios','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'Teclas\x20de\x20atallo\x20para\x20interactuar\x20cos\x20fíos\x20de\x20anotación\x20(p.\x20ex.,\x20comentarios,\x20seguimento\x20de\x20propostas\x20de\x20cambios)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'Mover\x20o\x20foco\x20ao\x20fío\x20cando\x20a\x20selección\x20estea\x20ancorada\x20no\x20seu\x20marcador','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'Sair\x20da\x20anotación\x20e\x20mover\x20o\x20foco\x20de\x20volta\x20ao\x20contido\x20editado','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'Examinar\x20o\x20fío\x20de\x20anotación\x20enfocado\x20ou\x20o\x20comentario\x20do\x20fío','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'Desprazarse\x20polos\x20elementos\x20internos\x20do\x20fío\x20de\x20anotación','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'Enviar\x20a\x20resposta\x20mentres\x20escribe\x20un\x20comentario','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'Mover\x20ao\x20fío\x20anterior\x20ou\x20seguinte\x20na\x20barra\x20lateral\x20de\x20anotacións\x20ou\x20no\x20arquivo\x20de\x20comentarios','ENTER_COMMENT_ANNOUNCEMENT':'Introducir\x20un\x20contido\x20con\x20comentarios.\x20Prema\x20%0\x20para\x20ir\x20á\x20discusión.','LEAVE_COMMENT_ANNOUNCEMENT':'Abandonando\x20un\x20contido\x20con\x20comentarios.','PENDING_ACTION_COMMENT_THREAD':'Cambio\x20sen\x20gardar\x20no\x20fío\x20de\x20comentarios.','EXTERNAL_COMMENT':'Este\x20comentario\x20procede\x20dunha\x20fonte\x20externa.','EXTERNAL_IMPORT_WORD_COMMENT':'Este\x20comentario\x20procede\x20dun\x20ficheiro\x20de\x20Word\x20importado.','EXTERNAL_AVATAR':'O\x20nome\x20do\x20autor\x20amosado\x20procede\x20dunha\x20fonte\x20externa\x20(engadido\x20por\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'O\x20nome\x20do\x20autor\x20amosado\x20procede\x20dun\x20documento\x20de\x20Word\x20importado\x20por\x20%0','COMMENTS_ARCHIVE':'Arquivo\x20de\x20comentarios','EMPTY_COMMENTS_ARCHIVE':'Non\x20hai\x20fíos\x20de\x20comentarios\x20arquivados.'},'getPluralForm':_0x3e7496=>0x1!=_0x3e7496}};_0x551e8d['gl']||={'dictionary':{},'getPluralForm':null},_0x551e8d['gl']['dictionary']=Object['assign'](_0x551e8d['gl']['dictionary'],_0x593e06),_0x551e8d['gl']['getPluralForm']=_0x2d161b;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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':{'Comment\x20editor':'עורך\x20התגובות','NUMBER_OF_COMMENTS':['%0\x20תגובה','%0\x20תגובה','%0\x20תגובה'],'TOO_LONG_COMMENT_ALERT':'תוכן\x20התגובה\x20ארוך\x20מדי.\x20התגובה\x20שלך\x20מכילה\x20%0\x20תווים\x20אך\x20המגבלה\x20היא\x20%1\x20תווים.','Reply...':'תשובה...','Reply\x20to\x20reopen\x20discussion...':'ענו\x20כדי\x20לפתוח\x20מחדש\x20את\x20הדיון...','Write\x20a\x20comment...':'כתבו\x20תגובה...','Comment\x20was\x20made\x20on\x20an\x20element':'ההערה\x20נעשתה\x20על\x20אלמנט','Edit':'ערוך','Resolve':'פתור','Reopen':'פתח\x20מחדש','Remove':'הסר','Reply':'תשובה','Delete\x20comment?':'למחוק\x20את\x20התגובה?','Delete\x20comment\x20thread?':'למחוק\x20את\x20שרשור\x20התגובות?','Marked\x20as\x20resolved':'סומן\x20כפתור','Comment':'תגובה','Annotations\x20sidebar':'סרגל\x20צד\x20של\x20ביאורים','Annotations\x20list':'רשימת\x20ביאורים','Thread\x20comments':'שרשור\x20תגובות','THREAD_CONTEXT_LABEL':'הקשר\x20שרשור:\x20%0','COMMENT_THREAD_LABEL':['שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.','שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.','שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.'],'COMMENT_THREAD_DESCRIPTION':'לחצו\x20על\x20Enter\x20לאפשרויות\x20נוספות.\x20לחצו\x20על\x20Escape\x20כדי\x20לצאת.','COMMENT_ARIA_LABEL':'תגובה\x20מאת\x20%0.\x20נוצרה\x20ב-%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'רשימת\x20תגובות','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'מקשים\x20לאינטראקציה\x20עם\x20שרשורי\x20ביאורים\x20(למשל\x20תגובות,\x20מעקב\x20אחר\x20הצעות\x20לשינויים)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'העברת\x20המיקוד\x20לשרשור\x20כאשר\x20הבחירה\x20מעוגנת\x20בסמן\x20שלו','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'יציאה\x20מהביאור\x20והעברת\x20המיקוד\x20חזרה\x20לתוכן\x20הערוך','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'עיון\x20בשרשור\x20הביאורים\x20שבמיקוד\x20או\x20בתגובת\x20שרשור','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'מעבר\x20בין\x20החלקים\x20הפנימיים\x20של\x20שרשור\x20הביאורים','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'שליחת\x20התשובה\x20בעת\x20כתיבת\x20תגובה','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'מעבר\x20לשרשור\x20הקודם\x20או\x20הבא\x20בסרגל\x20הצד\x20של\x20הביאורים\x20או\x20בארכיון\x20התגובות','ENTER_COMMENT_ANNOUNCEMENT':'נכנס\x20לתוכן\x20עם\x20תגובות.\x20לחצו\x20על\x20%0\x20כדי\x20לעבור\x20לדיון.','LEAVE_COMMENT_ANNOUNCEMENT':'יוצא\x20מתוכן\x20עם\x20תגובות.','PENDING_ACTION_COMMENT_THREAD':'שינוי\x20שלא\x20נשמר\x20בשרשור\x20התגובות.','EXTERNAL_COMMENT':'הערה\x20זו\x20מגיעה\x20ממקור\x20חיצוני.','EXTERNAL_IMPORT_WORD_COMMENT':'הערה\x20זו\x20מגיעה\x20מקובץ\x20Word\x20מיובא.','EXTERNAL_AVATAR':'שם\x20המחבר\x20מגיע\x20ממקור\x20חיצוני\x20(נוסף\x20על\x20ידי\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'שם\x20המחבר\x20המוצג\x20מגיע\x20מקובץ\x20Word\x20שיובא\x20\x20על\x20ידי\x20%0','COMMENTS_ARCHIVE':'ארכיון\x20הערות','EMPTY_COMMENTS_ARCHIVE':'אין\x20שרשורי\x20הערות\x20בארכיון.'},'getPluralForm':_0x3c2b11=>0x1==_0x3c2b11&&_0x3c2b11%0x1==0x0?0x0:0x2==_0x3c2b11&&_0x3c2b11%0x1==0x0?0x1:0x2}};
@@ -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
+ (_0x5ba442=>{const {he:{dictionary:_0x322bb4,getPluralForm:_0x27a307}}={'he':{'dictionary':{'Comment\x20editor':'עורך\x20התגובות','NUMBER_OF_COMMENTS':['%0\x20תגובה','%0\x20תגובה','%0\x20תגובה'],'TOO_LONG_COMMENT_ALERT':'תוכן\x20התגובה\x20ארוך\x20מדי.\x20התגובה\x20שלך\x20מכילה\x20%0\x20תווים\x20אך\x20המגבלה\x20היא\x20%1\x20תווים.','Reply...':'תשובה...','Reply\x20to\x20reopen\x20discussion...':'ענו\x20כדי\x20לפתוח\x20מחדש\x20את\x20הדיון...','Write\x20a\x20comment...':'כתבו\x20תגובה...','Comment\x20was\x20made\x20on\x20an\x20element':'ההערה\x20נעשתה\x20על\x20אלמנט','Edit':'ערוך','Resolve':'פתור','Reopen':'פתח\x20מחדש','Remove':'הסר','Reply':'תשובה','Delete\x20comment?':'למחוק\x20את\x20התגובה?','Delete\x20comment\x20thread?':'למחוק\x20את\x20שרשור\x20התגובות?','Marked\x20as\x20resolved':'סומן\x20כפתור','Comment':'תגובה','Annotations\x20sidebar':'סרגל\x20צד\x20של\x20ביאורים','Annotations\x20list':'רשימת\x20ביאורים','Thread\x20comments':'שרשור\x20תגובות','THREAD_CONTEXT_LABEL':'הקשר\x20שרשור:\x20%0','COMMENT_THREAD_LABEL':['שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.','שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.','שרשור\x20תגובה\x20מאת\x20%1.\x20%1\x20תשובה.'],'COMMENT_THREAD_DESCRIPTION':'לחצו\x20על\x20Enter\x20לאפשרויות\x20נוספות.\x20לחצו\x20על\x20Escape\x20כדי\x20לצאת.','COMMENT_ARIA_LABEL':'תגובה\x20מאת\x20%0.\x20נוצרה\x20ב-%1.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'רשימת\x20תגובות','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'מקשים\x20לאינטראקציה\x20עם\x20שרשורי\x20ביאורים\x20(למשל\x20תגובות,\x20מעקב\x20אחר\x20הצעות\x20לשינויים)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'העברת\x20המיקוד\x20לשרשור\x20כאשר\x20הבחירה\x20מעוגנת\x20בסמן\x20שלו','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'יציאה\x20מהביאור\x20והעברת\x20המיקוד\x20חזרה\x20לתוכן\x20הערוך','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'עיון\x20בשרשור\x20הביאורים\x20שבמיקוד\x20או\x20בתגובת\x20שרשור','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'מעבר\x20בין\x20החלקים\x20הפנימיים\x20של\x20שרשור\x20הביאורים','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'שליחת\x20התשובה\x20בעת\x20כתיבת\x20תגובה','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'מעבר\x20לשרשור\x20הקודם\x20או\x20הבא\x20בסרגל\x20הצד\x20של\x20הביאורים\x20או\x20בארכיון\x20התגובות','ENTER_COMMENT_ANNOUNCEMENT':'נכנס\x20לתוכן\x20עם\x20תגובות.\x20לחצו\x20על\x20%0\x20כדי\x20לעבור\x20לדיון.','LEAVE_COMMENT_ANNOUNCEMENT':'יוצא\x20מתוכן\x20עם\x20תגובות.','PENDING_ACTION_COMMENT_THREAD':'שינוי\x20שלא\x20נשמר\x20בשרשור\x20התגובות.','EXTERNAL_COMMENT':'הערה\x20זו\x20מגיעה\x20ממקור\x20חיצוני.','EXTERNAL_IMPORT_WORD_COMMENT':'הערה\x20זו\x20מגיעה\x20מקובץ\x20Word\x20מיובא.','EXTERNAL_AVATAR':'שם\x20המחבר\x20מגיע\x20ממקור\x20חיצוני\x20(נוסף\x20על\x20ידי\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'שם\x20המחבר\x20המוצג\x20מגיע\x20מקובץ\x20Word\x20שיובא\x20\x20על\x20ידי\x20%0','COMMENTS_ARCHIVE':'ארכיון\x20הערות','EMPTY_COMMENTS_ARCHIVE':'אין\x20שרשורי\x20הערות\x20בארכיון.'},'getPluralForm':_0x181807=>0x1==_0x181807&&_0x181807%0x1==0x0?0x0:0x2==_0x181807&&_0x181807%0x1==0x0?0x1:0x2}};_0x5ba442['he']||={'dictionary':{},'getPluralForm':null},_0x5ba442['he']['dictionary']=Object['assign'](_0x5ba442['he']['dictionary'],_0x322bb4),_0x5ba442['he']['getPluralForm']=_0x27a307;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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':{'Comment\x20editor':'Comment\x20editor','NUMBER_OF_COMMENTS':['%0\x20Comment','%0\x20Comments'],'TOO_LONG_COMMENT_ALERT':'Comment\x20content\x20is\x20too\x20long.\x20Your\x20comment\x20has\x20%0\x20characters\x20but\x20the\x20limit\x20is\x20%1\x20characters.','Reply...':'Reply...','Reply\x20to\x20reopen\x20discussion...':'डिस्कशन\x20को\x20दोबारा\x20शुरू\x20करने\x20के\x20लिए\x20जवाब\x20दें......','Write\x20a\x20comment...':'Write\x20a\x20comment...','Comment\x20was\x20made\x20on\x20an\x20element':'एक\x20एलिमेंट\x20पर\x20कमेंट\x20किया\x20गया\x20था','Edit':'Edit','Resolve':'रिजॉल्व\x20करें','Reopen':'दोबारा\x20खोलें','Remove':'Remove','Reply':'जवाब\x20दें','Delete\x20comment?':'Delete\x20comment?','Delete\x20comment\x20thread?':'Delete\x20comment\x20thread?','Marked\x20as\x20resolved':'रिजॉल्व्ड\x20मार्क\x20कर\x20दिया\x20गया\x20है','Comment':'Comment','Annotations\x20sidebar':'एनोटेशन\x20साइडबार','Annotations\x20list':'एनोटेशन\x20लिस्ट','Thread\x20comments':'थ्रेड\x20कमेंट्स','THREAD_CONTEXT_LABEL':'थ्रेड\x20का\x20संदर्भ:\x20%0','COMMENT_THREAD_LABEL':['%1\x20द्वारा\x20कमेंट\x20थ्रेड.\x20%1\x20उत्तर.','%1\x20द्वारा\x20कमेंट\x20थ्रेड.\x20%1\x20उत्तर.'],'COMMENT_THREAD_DESCRIPTION':'अधिक\x20विकल्पों\x20के\x20लिए\x20Enter\x20दबाएँ.\x20बाहर\x20निकलने\x20के\x20लिए\x20Escape\x20दबाएँ.','COMMENT_ARIA_LABEL':'%0\x20द्वारा\x20कमेंट.\x20%1\x20को\x20बनाया\x20गया.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'कमेंट्स\x20की\x20लिस्ट','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'एनोटेशन\x20थ्रेड्स\x20के\x20साथ\x20इंटरैक्ट\x20करने\x20के\x20लिए\x20कीस्ट्रोक्स\x20(जैसे\x20कमेंट्स,\x20ट्रैक\x20परिवर्तन\x20सुझाव)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'जब\x20सिलेक्शन\x20अपने\x20मार्कर\x20पर\x20स्थिर\x20हो\x20जाए\x20तो\x20फ़ोकस\x20को\x20थ्रेड\x20पर\x20ले\x20जाएँ','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'एनोटेशन\x20से\x20बाहर\x20निकलें\x20और\x20फ़ोकस\x20को\x20एडिट\x20किए\x20गए\x20कंटेंट\x20पर\x20वापस\x20ले\x20जाएं','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'फ़ोकस\x20किए\x20गए\x20एनोटेशन\x20थ्रेड\x20या\x20थ्रेड\x20कमेंट\x20को\x20ब्राउज़\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'एनोटेशन\x20थ्रेड\x20के\x20आंतरिक\x20भाग\x20में\x20मूव\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'कमेंट\x20लिखते\x20समय\x20उत्तर\x20सबमिट\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'एनोटेशन\x20साइडबार\x20या\x20कमेंट्स\x20संग्रह\x20में\x20पिछले\x20या\x20अगले\x20थ्रेड\x20पर\x20जाएं','ENTER_COMMENT_ANNOUNCEMENT':'कमेंट्स\x20के\x20साथ\x20वाले\x20एक\x20कंटेंट\x20में\x20प्रवेश\x20किया\x20जा\x20रहा\x20है.\x20चर्चा\x20में\x20जाने\x20के\x20लिए\x20%0\x20दबाएँ.','LEAVE_COMMENT_ANNOUNCEMENT':'कमेंट्स\x20के\x20साथ\x20वाले\x20एक\x20कंटेंट\x20को\x20छोड़ा\x20जा\x20रहा\x20है.','PENDING_ACTION_COMMENT_THREAD':'Unsaved\x20change\x20in\x20comment\x20thread.','EXTERNAL_COMMENT':'यह\x20कमेंट\x20एक\x20एक्सटर्नल\x20सोर्स\x20से\x20आता\x20है\x20।','EXTERNAL_IMPORT_WORD_COMMENT':'यह\x20कॉमेंट\x20एक\x20इंपोर्ट\x20की\x20गई\x20वर्ड\x20फाइल\x20से\x20आया\x20है','EXTERNAL_AVATAR':'डिस्प्ले\x20किया\x20गया\x20ऑथर\x20का\x20नाम\x20एक्सटर्नल\x20सोर्स\x20से\x20आया\x20है\x20(%0\x20द्वारा\x20ऐड\x20किया\x20गया)','EXTERNAL_IMPORT_WORD_AVATAR':'डिस्प्ले\x20किया\x20गया\x20ऑथर\x20का\x20नाम\x20%0\x20द्वारा\x20इंपोर्ट\x20किए\x20गए\x20वर्ड\x20डॉक्यूमेंट\x20से\x20आया\x20है','COMMENTS_ARCHIVE':'कमेन्ट\x20आर्काइव','EMPTY_COMMENTS_ARCHIVE':'यहां\x20कोई\x20भी\x20कमेंट\x20थ्रेड\x20आर्काइव\x20नहीं\x20किए\x20गए\x20हैं।'},'getPluralForm':_0x418345=>0x1!=_0x418345}};
@@ -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
+ (_0x2bc827=>{const {hi:{dictionary:_0xa5345b,getPluralForm:_0x3a272e}}={'hi':{'dictionary':{'Comment\x20editor':'Comment\x20editor','NUMBER_OF_COMMENTS':['%0\x20Comment','%0\x20Comments'],'TOO_LONG_COMMENT_ALERT':'Comment\x20content\x20is\x20too\x20long.\x20Your\x20comment\x20has\x20%0\x20characters\x20but\x20the\x20limit\x20is\x20%1\x20characters.','Reply...':'Reply...','Reply\x20to\x20reopen\x20discussion...':'डिस्कशन\x20को\x20दोबारा\x20शुरू\x20करने\x20के\x20लिए\x20जवाब\x20दें......','Write\x20a\x20comment...':'Write\x20a\x20comment...','Comment\x20was\x20made\x20on\x20an\x20element':'एक\x20एलिमेंट\x20पर\x20कमेंट\x20किया\x20गया\x20था','Edit':'Edit','Resolve':'रिजॉल्व\x20करें','Reopen':'दोबारा\x20खोलें','Remove':'Remove','Reply':'जवाब\x20दें','Delete\x20comment?':'Delete\x20comment?','Delete\x20comment\x20thread?':'Delete\x20comment\x20thread?','Marked\x20as\x20resolved':'रिजॉल्व्ड\x20मार्क\x20कर\x20दिया\x20गया\x20है','Comment':'Comment','Annotations\x20sidebar':'एनोटेशन\x20साइडबार','Annotations\x20list':'एनोटेशन\x20लिस्ट','Thread\x20comments':'थ्रेड\x20कमेंट्स','THREAD_CONTEXT_LABEL':'थ्रेड\x20का\x20संदर्भ:\x20%0','COMMENT_THREAD_LABEL':['%1\x20द्वारा\x20कमेंट\x20थ्रेड.\x20%1\x20उत्तर.','%1\x20द्वारा\x20कमेंट\x20थ्रेड.\x20%1\x20उत्तर.'],'COMMENT_THREAD_DESCRIPTION':'अधिक\x20विकल्पों\x20के\x20लिए\x20Enter\x20दबाएँ.\x20बाहर\x20निकलने\x20के\x20लिए\x20Escape\x20दबाएँ.','COMMENT_ARIA_LABEL':'%0\x20द्वारा\x20कमेंट.\x20%1\x20को\x20बनाया\x20गया.\x20%2.\x20%3','COMMENTS_ARCHIVE_LIST_LABEL':'कमेंट्स\x20की\x20लिस्ट','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'एनोटेशन\x20थ्रेड्स\x20के\x20साथ\x20इंटरैक्ट\x20करने\x20के\x20लिए\x20कीस्ट्रोक्स\x20(जैसे\x20कमेंट्स,\x20ट्रैक\x20परिवर्तन\x20सुझाव)','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'जब\x20सिलेक्शन\x20अपने\x20मार्कर\x20पर\x20स्थिर\x20हो\x20जाए\x20तो\x20फ़ोकस\x20को\x20थ्रेड\x20पर\x20ले\x20जाएँ','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'एनोटेशन\x20से\x20बाहर\x20निकलें\x20और\x20फ़ोकस\x20को\x20एडिट\x20किए\x20गए\x20कंटेंट\x20पर\x20वापस\x20ले\x20जाएं','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'फ़ोकस\x20किए\x20गए\x20एनोटेशन\x20थ्रेड\x20या\x20थ्रेड\x20कमेंट\x20को\x20ब्राउज़\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'एनोटेशन\x20थ्रेड\x20के\x20आंतरिक\x20भाग\x20में\x20मूव\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'कमेंट\x20लिखते\x20समय\x20उत्तर\x20सबमिट\x20करें','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'एनोटेशन\x20साइडबार\x20या\x20कमेंट्स\x20संग्रह\x20में\x20पिछले\x20या\x20अगले\x20थ्रेड\x20पर\x20जाएं','ENTER_COMMENT_ANNOUNCEMENT':'कमेंट्स\x20के\x20साथ\x20वाले\x20एक\x20कंटेंट\x20में\x20प्रवेश\x20किया\x20जा\x20रहा\x20है.\x20चर्चा\x20में\x20जाने\x20के\x20लिए\x20%0\x20दबाएँ.','LEAVE_COMMENT_ANNOUNCEMENT':'कमेंट्स\x20के\x20साथ\x20वाले\x20एक\x20कंटेंट\x20को\x20छोड़ा\x20जा\x20रहा\x20है.','PENDING_ACTION_COMMENT_THREAD':'Unsaved\x20change\x20in\x20comment\x20thread.','EXTERNAL_COMMENT':'यह\x20कमेंट\x20एक\x20एक्सटर्नल\x20सोर्स\x20से\x20आता\x20है\x20।','EXTERNAL_IMPORT_WORD_COMMENT':'यह\x20कॉमेंट\x20एक\x20इंपोर्ट\x20की\x20गई\x20वर्ड\x20फाइल\x20से\x20आया\x20है','EXTERNAL_AVATAR':'डिस्प्ले\x20किया\x20गया\x20ऑथर\x20का\x20नाम\x20एक्सटर्नल\x20सोर्स\x20से\x20आया\x20है\x20(%0\x20द्वारा\x20ऐड\x20किया\x20गया)','EXTERNAL_IMPORT_WORD_AVATAR':'डिस्प्ले\x20किया\x20गया\x20ऑथर\x20का\x20नाम\x20%0\x20द्वारा\x20इंपोर्ट\x20किए\x20गए\x20वर्ड\x20डॉक्यूमेंट\x20से\x20आया\x20है','COMMENTS_ARCHIVE':'कमेन्ट\x20आर्काइव','EMPTY_COMMENTS_ARCHIVE':'यहां\x20कोई\x20भी\x20कमेंट\x20थ्रेड\x20आर्काइव\x20नहीं\x20किए\x20गए\x20हैं।'},'getPluralForm':_0x41dac9=>0x1!=_0x41dac9}};_0x2bc827['hi']||={'dictionary':{},'getPluralForm':null},_0x2bc827['hi']['dictionary']=Object['assign'](_0x2bc827['hi']['dictionary'],_0xa5345b),_0x2bc827['hi']['getPluralForm']=_0x3a272e;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
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':{'Comment\x20editor':'Editor\x20komentara','NUMBER_OF_COMMENTS':['%0\x20komentar','%0\x20komentara','%0\x20komentara'],'TOO_LONG_COMMENT_ALERT':'Sadržaj\x20komentara\x20je\x20predugačak.\x20Vaš\x20komentar\x20sadrži\x20%0\x20znakova,\x20a\x20ograničenje\x20je\x20%1\x20znakova.','Reply...':'Odgovori...','Reply\x20to\x20reopen\x20discussion...':'Odgovori\x20na\x20ponovno\x20otvorenu\x20raspravu...','Write\x20a\x20comment...':'Napiši\x20komentar...','Comment\x20was\x20made\x20on\x20an\x20element':'Napravljen\x20je\x20komentar\x20na\x20elementu','Edit':'Promijeni','Resolve':'Riješi','Reopen':'Ponovo\x20otvori','Remove':'Ukloni','Reply':'Odgovori...','Delete\x20comment?':'Obriši\x20komentar?','Delete\x20comment\x20thread?':'Obriši\x20granu\x20komentara?','Marked\x20as\x20resolved':'Označi\x20kao\x20riješeno','Comment':'Komentar','Annotations\x20sidebar':'','Annotations\x20list':'','Thread\x20comments':'','THREAD_CONTEXT_LABEL':'','COMMENT_THREAD_LABEL':['','',''],'COMMENT_THREAD_DESCRIPTION':'','COMMENT_ARIA_LABEL':'','COMMENTS_ARCHIVE_LIST_LABEL':'','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'','ENTER_COMMENT_ANNOUNCEMENT':'','LEAVE_COMMENT_ANNOUNCEMENT':'','PENDING_ACTION_COMMENT_THREAD':'Ne\x20snimljene\x20promjene\x20u\x20grani\x20komentara.','EXTERNAL_COMMENT':'Ovaj\x20komentar\x20dolazi\x20iz\x20vanjskog\x20izvora.','EXTERNAL_IMPORT_WORD_COMMENT':'Ovaj\x20komentar\x20dolazi\x20iz\x20uvezene\x20Word\x20datoteke.','EXTERNAL_AVATAR':'Prikazano\x20ime\x20autora\x20dolazi\x20iz\x20vanjskog\x20izvora\x20(dodan\x20od\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Prikazano\x20ime\x20autora\x20dolazi\x20i\x20Word\x20dokumenta\x20kojeg\x20je\x20uvezao\x20%0','COMMENTS_ARCHIVE':'Arhiva\x20komentara','EMPTY_COMMENTS_ARCHIVE':'Nema\x20arhiviranih\x20komentara.'},'getPluralForm':_0x30c174=>_0x30c174%0xa==0x1&&_0x30c174%0x64!=0xb?0x0:_0x30c174%0xa>=0x2&&_0x30c174%0xa<=0x4&&(_0x30c174%0x64<0xa||_0x30c174%0x64>=0x14)?0x1:0x2}};
@@ -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
+ (_0xc736ee=>{const {hr:{dictionary:_0x10e44a,getPluralForm:_0x29ebb4}}={'hr':{'dictionary':{'Comment\x20editor':'Editor\x20komentara','NUMBER_OF_COMMENTS':['%0\x20komentar','%0\x20komentara','%0\x20komentara'],'TOO_LONG_COMMENT_ALERT':'Sadržaj\x20komentara\x20je\x20predugačak.\x20Vaš\x20komentar\x20sadrži\x20%0\x20znakova,\x20a\x20ograničenje\x20je\x20%1\x20znakova.','Reply...':'Odgovori...','Reply\x20to\x20reopen\x20discussion...':'Odgovori\x20na\x20ponovno\x20otvorenu\x20raspravu...','Write\x20a\x20comment...':'Napiši\x20komentar...','Comment\x20was\x20made\x20on\x20an\x20element':'Napravljen\x20je\x20komentar\x20na\x20elementu','Edit':'Promijeni','Resolve':'Riješi','Reopen':'Ponovo\x20otvori','Remove':'Ukloni','Reply':'Odgovori...','Delete\x20comment?':'Obriši\x20komentar?','Delete\x20comment\x20thread?':'Obriši\x20granu\x20komentara?','Marked\x20as\x20resolved':'Označi\x20kao\x20riješeno','Comment':'Komentar','Annotations\x20sidebar':'','Annotations\x20list':'','Thread\x20comments':'','THREAD_CONTEXT_LABEL':'','COMMENT_THREAD_LABEL':['','',''],'COMMENT_THREAD_DESCRIPTION':'','COMMENT_ARIA_LABEL':'','COMMENTS_ARCHIVE_LIST_LABEL':'','ACCESSIBILITY_HELP_ANNOTATIONS_GROUP':'','ACCESSIBILITY_HELP_ANNOTATIONS_MOVE_TO':'','ACCESSIBILITY_HELP_ANNOTATIONS_EXIT':'','ACCESSIBILITY_HELP_ANNOTATIONS_ENTER':'','ACCESSIBILITY_HELP_ANNOTATIONS_BROWSE_GROUPS':'','ACCESSIBILITY_HELP_ANNOTATIONS_SUBMIT_COMMENT':'','ACCESSIBILITY_HELP_ANNOTATIONS_NAVIGATE_THREADS':'','ENTER_COMMENT_ANNOUNCEMENT':'','LEAVE_COMMENT_ANNOUNCEMENT':'','PENDING_ACTION_COMMENT_THREAD':'Ne\x20snimljene\x20promjene\x20u\x20grani\x20komentara.','EXTERNAL_COMMENT':'Ovaj\x20komentar\x20dolazi\x20iz\x20vanjskog\x20izvora.','EXTERNAL_IMPORT_WORD_COMMENT':'Ovaj\x20komentar\x20dolazi\x20iz\x20uvezene\x20Word\x20datoteke.','EXTERNAL_AVATAR':'Prikazano\x20ime\x20autora\x20dolazi\x20iz\x20vanjskog\x20izvora\x20(dodan\x20od\x20%0)','EXTERNAL_IMPORT_WORD_AVATAR':'Prikazano\x20ime\x20autora\x20dolazi\x20i\x20Word\x20dokumenta\x20kojeg\x20je\x20uvezao\x20%0','COMMENTS_ARCHIVE':'Arhiva\x20komentara','EMPTY_COMMENTS_ARCHIVE':'Nema\x20arhiviranih\x20komentara.'},'getPluralForm':_0x362c9e=>_0x362c9e%0xa==0x1&&_0x362c9e%0x64!=0xb?0x0:_0x362c9e%0xa>=0x2&&_0x362c9e%0xa<=0x4&&(_0x362c9e%0x64<0xa||_0x362c9e%0x64>=0x14)?0x1:0x2}};_0xc736ee['hr']||={'dictionary':{},'getPluralForm':null},_0xc736ee['hr']['dictionary']=Object['assign'](_0xc736ee['hr']['dictionary'],_0x10e44a),_0xc736ee['hr']['getPluralForm']=_0x29ebb4;})(window['CKEDITOR_TRANSLATIONS']||={});
@@ -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 '@ckeditor/ckeditor5-utils';
7
+ declare const translations: Translations;
8
+ export default translations;