@sync-in/server 1.4.0 → 1.5.1

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 (229) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +2 -1
  3. package/package.json +5 -5
  4. package/server/applications/comments/comments.controller.spec.js +103 -4
  5. package/server/applications/comments/comments.controller.spec.js.map +1 -1
  6. package/server/applications/comments/services/comments-manager.service.spec.js +409 -9
  7. package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -1
  8. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js +333 -0
  9. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js.map +1 -0
  10. package/server/applications/files/constants/routes.js +6 -1
  11. package/server/applications/files/constants/routes.js.map +1 -1
  12. package/server/applications/files/files-only-office.controller.js +11 -0
  13. package/server/applications/files/files-only-office.controller.js.map +1 -1
  14. package/server/applications/files/files-only-office.controller.spec.js +97 -3
  15. package/server/applications/files/files-only-office.controller.spec.js.map +1 -1
  16. package/server/applications/files/files-tasks.controller.spec.js +91 -1
  17. package/server/applications/files/files-tasks.controller.spec.js.map +1 -1
  18. package/server/applications/files/files.controller.spec.js +268 -46
  19. package/server/applications/files/files.controller.spec.js.map +1 -1
  20. package/server/applications/files/guards/files-only-office.guard.spec.js +77 -1
  21. package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -1
  22. package/server/applications/files/services/files-only-office-manager.service.js +5 -0
  23. package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
  24. package/server/applications/links/links.controller.spec.js +91 -58
  25. package/server/applications/links/links.controller.spec.js.map +1 -1
  26. package/server/applications/links/services/links-manager.service.js +4 -6
  27. package/server/applications/links/services/links-manager.service.js.map +1 -1
  28. package/server/applications/links/services/links-manager.service.spec.js +378 -14
  29. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  30. package/server/applications/links/services/links-queries.service.js +1 -1
  31. package/server/applications/links/services/links-queries.service.js.map +1 -1
  32. package/server/applications/notifications/notifications.controller.spec.js +56 -1
  33. package/server/applications/notifications/notifications.controller.spec.js.map +1 -1
  34. package/server/applications/notifications/services/notifications-manager.service.spec.js +461 -5
  35. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
  36. package/server/applications/shares/services/shares-manager.service.spec.js +590 -14
  37. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  38. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js +120 -0
  39. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js.map +1 -0
  40. package/server/applications/sync/services/sync-clients-manager.service.spec.js +548 -8
  41. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
  42. package/server/applications/sync/services/sync-manager.service.spec.js +837 -5
  43. package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -1
  44. package/server/applications/sync/services/sync-paths-manager.service.spec.js +900 -7
  45. package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -1
  46. package/server/applications/users/services/admin-users-manager.service.js +22 -24
  47. package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
  48. package/server/applications/users/services/admin-users-manager.service.spec.js +763 -17
  49. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
  50. package/server/applications/users/services/users-manager.service.js +1 -1
  51. package/server/applications/users/services/users-manager.service.js.map +1 -1
  52. package/server/applications/users/services/users-manager.service.spec.js +938 -49
  53. package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
  54. package/server/applications/webdav/decorators/if-header.decorator.js +4 -1
  55. package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -1
  56. package/server/applications/webdav/filters/webdav.filter.spec.js +77 -0
  57. package/server/applications/webdav/filters/webdav.filter.spec.js.map +1 -0
  58. package/server/applications/webdav/guards/webdav-protocol.guard.js +3 -7
  59. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  60. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +580 -0
  61. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -0
  62. package/server/applications/webdav/services/webdav-methods.service.spec.js +1582 -3
  63. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  64. package/server/applications/webdav/services/webdav-spaces.service.spec.js +390 -2
  65. package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -1
  66. package/server/applications/webdav/webdav.controller.js +2 -2
  67. package/server/applications/webdav/webdav.controller.js.map +1 -1
  68. package/server/authentication/guards/auth-basic.guard.js.map +1 -1
  69. package/server/authentication/guards/auth-digest.guard.js +1 -2
  70. package/server/authentication/guards/auth-digest.guard.js.map +1 -1
  71. package/server/authentication/guards/auth-local.guard.js.map +1 -1
  72. package/server/infrastructure/context/interceptors/context.interceptor.spec.js +135 -0
  73. package/server/infrastructure/context/interceptors/context.interceptor.spec.js.map +1 -0
  74. package/static/3rdpartylicenses.txt +26 -26
  75. package/static/assets/pdfjs/build/pdf.mjs +1177 -255
  76. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  77. package/static/assets/pdfjs/build/pdf.sandbox.mjs +25 -2
  78. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  79. package/static/assets/pdfjs/build/pdf.worker.mjs +140 -16
  80. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  81. package/static/assets/pdfjs/version +1 -1
  82. package/static/assets/pdfjs/web/debugger.css +31 -0
  83. package/static/assets/pdfjs/web/debugger.mjs +144 -2
  84. package/static/assets/pdfjs/web/images/comment-editButton.svg +6 -1
  85. package/static/assets/pdfjs/web/locale/ach/viewer.ftl +0 -63
  86. package/static/assets/pdfjs/web/locale/af/viewer.ftl +0 -71
  87. package/static/assets/pdfjs/web/locale/an/viewer.ftl +0 -63
  88. package/static/assets/pdfjs/web/locale/ast/viewer.ftl +0 -60
  89. package/static/assets/pdfjs/web/locale/az/viewer.ftl +0 -63
  90. package/static/assets/pdfjs/web/locale/be/viewer.ftl +38 -0
  91. package/static/assets/pdfjs/web/locale/bg/viewer.ftl +0 -37
  92. package/static/assets/pdfjs/web/locale/bn/viewer.ftl +0 -63
  93. package/static/assets/pdfjs/web/locale/bo/viewer.ftl +0 -63
  94. package/static/assets/pdfjs/web/locale/br/viewer.ftl +0 -37
  95. package/static/assets/pdfjs/web/locale/brx/viewer.ftl +0 -63
  96. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +22 -0
  97. package/static/assets/pdfjs/web/locale/ca/viewer.ftl +0 -54
  98. package/static/assets/pdfjs/web/locale/cak/viewer.ftl +0 -54
  99. package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +0 -63
  100. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +38 -0
  101. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +38 -0
  102. package/static/assets/pdfjs/web/locale/da/viewer.ftl +38 -0
  103. package/static/assets/pdfjs/web/locale/de/viewer.ftl +38 -0
  104. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +38 -0
  105. package/static/assets/pdfjs/web/locale/el/viewer.ftl +38 -0
  106. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +38 -0
  107. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +38 -0
  108. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +25 -0
  109. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +38 -0
  110. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +38 -0
  111. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +38 -0
  112. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -6
  113. package/static/assets/pdfjs/web/locale/et/viewer.ftl +0 -57
  114. package/static/assets/pdfjs/web/locale/fa/viewer.ftl +0 -37
  115. package/static/assets/pdfjs/web/locale/ff/viewer.ftl +0 -63
  116. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +38 -0
  117. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +38 -0
  118. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +38 -0
  119. package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +0 -71
  120. package/static/assets/pdfjs/web/locale/gd/viewer.ftl +0 -54
  121. package/static/assets/pdfjs/web/locale/gl/viewer.ftl +8 -0
  122. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +38 -0
  123. package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +0 -63
  124. package/static/assets/pdfjs/web/locale/he/viewer.ftl +38 -0
  125. package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +0 -60
  126. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +38 -0
  127. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +38 -0
  128. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +0 -49
  129. package/static/assets/pdfjs/web/locale/hye/viewer.ftl +0 -60
  130. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +38 -0
  131. package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -3
  132. package/static/assets/pdfjs/web/locale/it/viewer.ftl +31 -0
  133. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +8 -0
  134. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +48 -10
  135. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +5 -0
  136. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +8 -0
  137. package/static/assets/pdfjs/web/locale/km/viewer.ftl +0 -63
  138. package/static/assets/pdfjs/web/locale/kn/viewer.ftl +0 -71
  139. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +38 -0
  140. package/static/assets/pdfjs/web/locale/lij/viewer.ftl +0 -63
  141. package/static/assets/pdfjs/web/locale/lo/viewer.ftl +0 -54
  142. package/static/assets/pdfjs/web/locale/lt/viewer.ftl +0 -60
  143. package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +0 -63
  144. package/static/assets/pdfjs/web/locale/lv/viewer.ftl +0 -63
  145. package/static/assets/pdfjs/web/locale/meh/viewer.ftl +0 -75
  146. package/static/assets/pdfjs/web/locale/mk/viewer.ftl +0 -63
  147. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +0 -3
  148. package/static/assets/pdfjs/web/locale/mr/viewer.ftl +0 -63
  149. package/static/assets/pdfjs/web/locale/ms/viewer.ftl +0 -63
  150. package/static/assets/pdfjs/web/locale/my/viewer.ftl +0 -71
  151. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +44 -6
  152. package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +0 -71
  153. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +38 -0
  154. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +45 -1
  155. package/static/assets/pdfjs/web/locale/oc/viewer.ftl +0 -31
  156. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +38 -0
  157. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +39 -1
  158. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +38 -0
  159. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +355 -1
  160. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +38 -0
  161. package/static/assets/pdfjs/web/locale/sat/viewer.ftl +0 -54
  162. package/static/assets/pdfjs/web/locale/sc/viewer.ftl +0 -38
  163. package/static/assets/pdfjs/web/locale/scn/viewer.ftl +0 -92
  164. package/static/assets/pdfjs/web/locale/sco/viewer.ftl +0 -60
  165. package/static/assets/pdfjs/web/locale/si/viewer.ftl +0 -51
  166. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +38 -0
  167. package/static/assets/pdfjs/web/locale/skr/viewer.ftl +0 -27
  168. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +8 -0
  169. package/static/assets/pdfjs/web/locale/son/viewer.ftl +0 -71
  170. package/static/assets/pdfjs/web/locale/sr/viewer.ftl +0 -33
  171. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +38 -0
  172. package/static/assets/pdfjs/web/locale/szl/viewer.ftl +0 -63
  173. package/static/assets/pdfjs/web/locale/ta/viewer.ftl +0 -63
  174. package/static/assets/pdfjs/web/locale/te/viewer.ftl +0 -60
  175. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +38 -0
  176. package/static/assets/pdfjs/web/locale/tl/viewer.ftl +0 -63
  177. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +40 -2
  178. package/static/assets/pdfjs/web/locale/trs/viewer.ftl +0 -72
  179. package/static/assets/pdfjs/web/locale/ur/viewer.ftl +0 -60
  180. package/static/assets/pdfjs/web/locale/uz/viewer.ftl +0 -71
  181. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +38 -0
  182. package/static/assets/pdfjs/web/locale/wo/viewer.ftl +0 -77
  183. package/static/assets/pdfjs/web/locale/xh/viewer.ftl +0 -71
  184. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +38 -0
  185. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +38 -0
  186. package/static/assets/pdfjs/web/viewer.css +649 -120
  187. package/static/assets/pdfjs/web/viewer.html +19 -0
  188. package/static/assets/pdfjs/web/viewer.mjs +489 -38
  189. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  190. package/static/chunk-22EANI6R.js +1 -0
  191. package/static/{chunk-N2LYWNTC.js → chunk-2456KVFZ.js} +1 -1
  192. package/static/{chunk-YCINY2YI.js → chunk-2LVCLKCK.js} +1 -1
  193. package/static/{chunk-5YKWZT33.js → chunk-2V5S7DWD.js} +1 -1
  194. package/static/{chunk-3GC2BQZD.js → chunk-44YDXGNZ.js} +1 -1
  195. package/static/{chunk-W3QXNDI5.js → chunk-4LSJLWYV.js} +1 -1
  196. package/static/{chunk-T55FAU2O.js → chunk-4UT5VH7R.js} +1 -1
  197. package/static/{chunk-VMQMD36Z.js → chunk-5GOMMRRE.js} +1 -1
  198. package/static/{chunk-TXPODW5Q.js → chunk-5J4VRDKB.js} +1 -1
  199. package/static/{chunk-FQ4AFNGE.js → chunk-6PVKNZ7Q.js} +1 -1
  200. package/static/{chunk-XE5YHU5J.js → chunk-BIUNUYZ5.js} +1 -1
  201. package/static/{chunk-X43VWRFP.js → chunk-DFQKHCDR.js} +1 -1
  202. package/static/{chunk-TDQAEVZN.js → chunk-EE2TDTY4.js} +1 -1
  203. package/static/{chunk-MOVWEZ7J.js → chunk-ESNDJ5T6.js} +1 -1
  204. package/static/{chunk-TCFKH6K6.js → chunk-GDKKLLEU.js} +1 -1
  205. package/static/{chunk-VHYIXL7R.js → chunk-GSR2MCQG.js} +1 -1
  206. package/static/{chunk-LJIGRUEF.js → chunk-HR7KS5BR.js} +1 -1
  207. package/static/chunk-HW2H3ISM.js +559 -0
  208. package/static/{chunk-HZA7R43P.js → chunk-IMB3C547.js} +1 -1
  209. package/static/{chunk-B2Y2RNFP.js → chunk-J4ALHUDX.js} +1 -1
  210. package/static/{chunk-PF4K7MVG.js → chunk-KP6LSQTK.js} +1 -1
  211. package/static/{chunk-C23BPTJZ.js → chunk-LUZCOHFN.js} +1 -1
  212. package/static/{chunk-GBCYYDCI.js → chunk-MHSCCXVL.js} +1 -1
  213. package/static/{chunk-PY3BGNJN.js → chunk-OMRQYBXV.js} +1 -1
  214. package/static/chunk-P7CTJ5BG.js +27 -0
  215. package/static/{chunk-Y2CDUS4J.js → chunk-P7PX67IR.js} +4 -4
  216. package/static/{chunk-VMUOUCEI.js → chunk-PPO7DBVO.js} +1 -1
  217. package/static/{chunk-TTQ37MUV.js → chunk-RSS6GYNE.js} +1 -1
  218. package/static/{chunk-WWIC7UW3.js → chunk-SLGGINMR.js} +1 -1
  219. package/static/{chunk-KZQCFEPT.js → chunk-UHD5XD3G.js} +1 -1
  220. package/static/{chunk-TNW2CGK6.js → chunk-UPYYAJCJ.js} +1 -1
  221. package/static/{chunk-6F55D74O.js → chunk-VHYPQ3D4.js} +1 -1
  222. package/static/{chunk-DGVNNICG.js → chunk-YQSDS6BO.js} +1 -1
  223. package/static/{chunk-MTRNPGS4.js → chunk-ZC5NIT55.js} +1 -1
  224. package/static/index.html +1 -1
  225. package/static/main-FYD34UEC.js +7 -0
  226. package/static/chunk-RSNLYAN6.js +0 -560
  227. package/static/chunk-WHMS3PJ3.js +0 -24
  228. package/static/chunk-ZZ3LHYOY.js +0 -1
  229. package/static/main-7LDKYVXO.js +0 -10
@@ -12,20 +12,6 @@ pdfjs-zoom-in-button =
12
12
  .title = Cchiù granni
13
13
  pdfjs-zoom-in-button-label = Cchiù granni
14
14
 
15
- ## Secondary toolbar and context menu
16
-
17
-
18
- ## Document properties dialog
19
-
20
-
21
- ## Variables:
22
- ## $width (Number) - the width of the (current) page
23
- ## $height (Number) - the height of the (current) page
24
- ## $unit (String) - the unit of measurement of the (current) page
25
- ## $name (String) - the name of the (current) page
26
- ## $orientation (String) - the orientation of the (current) page
27
-
28
-
29
15
  ##
30
16
 
31
17
  # The linearization status of the document; usually called "Fast Web View" in
@@ -37,88 +23,10 @@ pdfjs-document-properties-linearized-yes = Se
37
23
 
38
24
  pdfjs-print-progress-close-button = Sfai
39
25
 
40
- ## Tooltips and alt text for side panel toolbar buttons
41
-
42
-
43
- ## Thumbnails panel item (tooltip and alt text for images)
44
-
45
-
46
- ## Find panel button title and messages
47
-
48
-
49
26
  ## Predefined zoom values
50
27
 
51
28
  pdfjs-page-scale-width = Larghizza dâ pàggina
52
29
 
53
- ## PDF page
54
-
55
-
56
- ## Loading indicator messages
57
-
58
-
59
- ## Annotations
60
-
61
-
62
30
  ## Password
63
31
 
64
32
  pdfjs-password-cancel-button = Sfai
65
-
66
- ## Editing
67
-
68
-
69
- ## Default editor aria labels
70
-
71
-
72
- ## Remove button for the various kind of editor.
73
-
74
-
75
- ##
76
-
77
-
78
- ## Alt-text dialog
79
-
80
-
81
- ## Editor resizers
82
- ## This is used in an aria label to help to understand the role of the resizer.
83
-
84
-
85
- ## Color picker
86
-
87
-
88
- ## Show all highlights
89
- ## This is a toggle button to show/hide all the highlights.
90
-
91
-
92
- ## New alt-text dialog
93
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
94
-
95
-
96
- ## Image alt-text settings
97
-
98
-
99
- ## "Annotations removed" bar
100
-
101
-
102
- ## Add a signature dialog
103
-
104
-
105
- ## Tab names
106
-
107
-
108
- ## Tab panels
109
-
110
-
111
- ## Controls
112
-
113
-
114
- ## Dialog buttons
115
-
116
-
117
- ## Main menu for adding/removing signatures
118
-
119
-
120
- ## Editor toolbar
121
-
122
-
123
- ## Edit signature description dialog
124
-
@@ -252,63 +252,3 @@ pdfjs-password-invalid = Passwird no suithfest. Gonnae gie it anither shot.
252
252
  pdfjs-password-ok-button = OK
253
253
  pdfjs-password-cancel-button = Stap
254
254
  pdfjs-web-fonts-disabled = Wab fonts are disabled: cannae yaise embeddit PDF fonts.
255
-
256
- ## Editing
257
-
258
-
259
- ## Default editor aria labels
260
-
261
-
262
- ## Remove button for the various kind of editor.
263
-
264
-
265
- ##
266
-
267
-
268
- ## Alt-text dialog
269
-
270
-
271
- ## Editor resizers
272
- ## This is used in an aria label to help to understand the role of the resizer.
273
-
274
-
275
- ## Color picker
276
-
277
-
278
- ## Show all highlights
279
- ## This is a toggle button to show/hide all the highlights.
280
-
281
-
282
- ## New alt-text dialog
283
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
284
-
285
-
286
- ## Image alt-text settings
287
-
288
-
289
- ## "Annotations removed" bar
290
-
291
-
292
- ## Add a signature dialog
293
-
294
-
295
- ## Tab names
296
-
297
-
298
- ## Tab panels
299
-
300
-
301
- ## Controls
302
-
303
-
304
- ## Dialog buttons
305
-
306
-
307
- ## Main menu for adding/removing signatures
308
-
309
-
310
- ## Editor toolbar
311
-
312
-
313
- ## Edit signature description dialog
314
-
@@ -234,12 +234,6 @@ pdfjs-editor-stamp-button =
234
234
  .title = රූප සංස්කරණය හෝ එක් කරන්න
235
235
  pdfjs-editor-stamp-button-label = රූප සංස්කරණය හෝ එක් කරන්න
236
236
 
237
- ## Default editor aria labels
238
-
239
-
240
- ## Remove button for the various kind of editor.
241
-
242
-
243
237
  ##
244
238
 
245
239
  # Editor Parameters
@@ -254,48 +248,3 @@ pdfjs-free-text-default-content = ලිවීීම අරඹන්න…
254
248
  ## Alt-text dialog
255
249
 
256
250
  pdfjs-editor-alt-text-mark-decorative-description = මෙය දාර හෝ දිය සලකුණු වැනි අලංකාර රූප සඳහා භාවිතා වේ.
257
-
258
- ## Editor resizers
259
- ## This is used in an aria label to help to understand the role of the resizer.
260
-
261
-
262
- ## Color picker
263
-
264
-
265
- ## Show all highlights
266
- ## This is a toggle button to show/hide all the highlights.
267
-
268
-
269
- ## New alt-text dialog
270
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
271
-
272
-
273
- ## Image alt-text settings
274
-
275
-
276
- ## "Annotations removed" bar
277
-
278
-
279
- ## Add a signature dialog
280
-
281
-
282
- ## Tab names
283
-
284
-
285
- ## Tab panels
286
-
287
-
288
- ## Controls
289
-
290
-
291
- ## Dialog buttons
292
-
293
-
294
- ## Main menu for adding/removing signatures
295
-
296
-
297
- ## Editor toolbar
298
-
299
-
300
- ## Edit signature description dialog
301
-
@@ -306,9 +306,13 @@ pdfjs-web-fonts-disabled = Webové písma sú vypnuté: nie je možné použiť
306
306
 
307
307
  pdfjs-editor-free-text-button =
308
308
  .title = Text
309
+ pdfjs-editor-color-picker-free-text-input =
310
+ .title = Zmeniť farbu textu
309
311
  pdfjs-editor-free-text-button-label = Text
310
312
  pdfjs-editor-ink-button =
311
313
  .title = Kresliť
314
+ pdfjs-editor-color-picker-ink-input =
315
+ .title = Zmeniť farbu kresby
312
316
  pdfjs-editor-ink-button-label = Kresliť
313
317
  pdfjs-editor-stamp-button =
314
318
  .title = Pridať alebo upraviť obrázky
@@ -320,6 +324,10 @@ pdfjs-highlight-floating-button1 =
320
324
  .title = Zvýrazniť
321
325
  .aria-label = Zvýrazniť
322
326
  pdfjs-highlight-floating-button-label = Zvýrazniť
327
+ pdfjs-comment-floating-button =
328
+ .title = Pridať komentár
329
+ .aria-label = Pridať komentár
330
+ pdfjs-comment-floating-button-label = Pridať komentár
323
331
  pdfjs-editor-signature-button =
324
332
  .title = Pridať podpis
325
333
  pdfjs-editor-signature-button-label = Pridať podpis
@@ -528,6 +536,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Pri pridávaní obráz
528
536
  pdfjs-editor-alt-text-settings-show-dialog-description = Pomáha vám zabezpečiť, aby všetky vaše obrázky mali alternatívny text.
529
537
  pdfjs-editor-alt-text-settings-close-button = Zavrieť
530
538
 
539
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
540
+
541
+ pdfjs-editor-highlight-added-alert = Zvýraznenie bolo pridané
542
+ pdfjs-editor-freetext-added-alert = Text bol pridaný
543
+ pdfjs-editor-ink-added-alert = Kresba bola pridaná
544
+ pdfjs-editor-stamp-added-alert = Obrázok bol pridaný
545
+ pdfjs-editor-signature-added-alert = Podpis bol pridaný
546
+
531
547
  ## "Annotations removed" bar
532
548
 
533
549
  pdfjs-editor-undo-bar-message-highlight = Zvýraznenie bolo odstránené
@@ -598,6 +614,8 @@ pdfjs-editor-add-signature-save-checkbox = Uložiť podpis
598
614
  pdfjs-editor-add-signature-save-warning-message = Dosiahli ste limit 5 uložených podpisov. Ak chcete uložiť ďalší, jeden odstráňte.
599
615
  pdfjs-editor-add-signature-image-upload-error-title = Obrázok sa nepodarilo nahrať
600
616
  pdfjs-editor-add-signature-image-upload-error-description = Skontrolujte sieťové pripojenie alebo skúste iný obrázok.
617
+ pdfjs-editor-add-signature-image-no-data-error-title = Tento obrázok sa nedá previesť na podpis
618
+ pdfjs-editor-add-signature-image-no-data-error-description = Skúste nahrať iný obrázok.
601
619
  pdfjs-editor-add-signature-error-close-button = Zavrieť
602
620
 
603
621
  ## Dialog buttons
@@ -606,6 +624,26 @@ pdfjs-editor-add-signature-cancel-button = Zrušiť
606
624
  pdfjs-editor-add-signature-add-button = Pridať
607
625
  pdfjs-editor-edit-signature-update-button = Aktualizovať
608
626
 
627
+ ## Edit a comment dialog
628
+
629
+ pdfjs-editor-edit-comment-actions-button-label = Akcie
630
+ pdfjs-editor-edit-comment-actions-button =
631
+ .title = Akcie
632
+ pdfjs-editor-edit-comment-close-button-label = Zavrieť
633
+ pdfjs-editor-edit-comment-close-button =
634
+ .title = Zavrieť
635
+ pdfjs-editor-edit-comment-actions-edit-button-label = Upraviť
636
+ pdfjs-editor-edit-comment-actions-delete-button-label = Odstrániť
637
+ pdfjs-editor-edit-comment-manager-text-input =
638
+ .placeholder = Zadajte svoj komentár
639
+ pdfjs-editor-edit-comment-manager-cancel-button = Zrušiť
640
+ pdfjs-editor-edit-comment-manager-save-button = Uložiť
641
+
642
+ ## Edit a comment button in the editor toolbar
643
+
644
+ pdfjs-editor-edit-comment-button =
645
+ .title = Upraviť komentár
646
+
609
647
  ## Main menu for adding/removing signatures
610
648
 
611
649
  pdfjs-editor-delete-signature-button1 =
@@ -317,9 +317,6 @@ pdfjs-highlight-floating-button1 =
317
317
  .aria-label = نمایاں کرو
318
318
  pdfjs-highlight-floating-button-label = نمایاں کرو
319
319
 
320
- ## Default editor aria labels
321
-
322
-
323
320
  ## Remove button for the various kind of editor.
324
321
 
325
322
  pdfjs-editor-remove-ink-button =
@@ -498,27 +495,3 @@ pdfjs-editor-undo-bar-undo-button-label = کیتا اݨ کیتا
498
495
  pdfjs-editor-undo-bar-close-button =
499
496
  .title = بند کرو
500
497
  pdfjs-editor-undo-bar-close-button-label = بند کرو
501
-
502
- ## Add a signature dialog
503
-
504
-
505
- ## Tab names
506
-
507
-
508
- ## Tab panels
509
-
510
-
511
- ## Controls
512
-
513
-
514
- ## Dialog buttons
515
-
516
-
517
- ## Main menu for adding/removing signatures
518
-
519
-
520
- ## Editor toolbar
521
-
522
-
523
- ## Edit signature description dialog
524
-
@@ -528,6 +528,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Ob dodajanju slike tak
528
528
  pdfjs-editor-alt-text-settings-show-dialog-description = Pomaga vam zagotoviti, da imajo vse vaše slike nadomestno besedilo.
529
529
  pdfjs-editor-alt-text-settings-close-button = Zapri
530
530
 
531
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
532
+
533
+ pdfjs-editor-highlight-added-alert = Označba dodana
534
+ pdfjs-editor-freetext-added-alert = Besedilo dodano
535
+ pdfjs-editor-ink-added-alert = Risba dodana
536
+ pdfjs-editor-stamp-added-alert = Slika dodana
537
+ pdfjs-editor-signature-added-alert = Podpis dodan
538
+
531
539
  ## "Annotations removed" bar
532
540
 
533
541
  pdfjs-editor-undo-bar-message-highlight = Označba odstranjena
@@ -88,14 +88,6 @@ pdfjs-document-properties-producer = PDF berandikaw:
88
88
  pdfjs-document-properties-version = PDF dumi:
89
89
  pdfjs-document-properties-page-count = Moo hinna:
90
90
 
91
- ## Variables:
92
- ## $width (Number) - the width of the (current) page
93
- ## $height (Number) - the height of the (current) page
94
- ## $unit (String) - the unit of measurement of the (current) page
95
- ## $name (String) - the name of the (current) page
96
- ## $orientation (String) - the orientation of the (current) page
97
-
98
-
99
91
  ##
100
92
 
101
93
  pdfjs-document-properties-close-button = Daabu
@@ -166,9 +158,6 @@ pdfjs-page-scale-actual = Adadu cimi
166
158
  # $scale (Number) - percent value for page scale
167
159
  pdfjs-page-scale-percent = { $scale }%
168
160
 
169
- ## PDF page
170
-
171
-
172
161
  ## Loading indicator messages
173
162
 
174
163
  pdfjs-loading-error = Firka bangay kaŋ PDF goo ma zumandi.
@@ -194,63 +183,3 @@ pdfjs-password-invalid = Šennikufal laalo. Ceeci koyne taare.
194
183
  pdfjs-password-ok-button = Ayyo
195
184
  pdfjs-password-cancel-button = Naŋ
196
185
  pdfjs-web-fonts-disabled = Interneti šigirawey kay: ši hin ka goy nda PDF šigira hurantey.
197
-
198
- ## Editing
199
-
200
-
201
- ## Default editor aria labels
202
-
203
-
204
- ## Remove button for the various kind of editor.
205
-
206
-
207
- ##
208
-
209
-
210
- ## Alt-text dialog
211
-
212
-
213
- ## Editor resizers
214
- ## This is used in an aria label to help to understand the role of the resizer.
215
-
216
-
217
- ## Color picker
218
-
219
-
220
- ## Show all highlights
221
- ## This is a toggle button to show/hide all the highlights.
222
-
223
-
224
- ## New alt-text dialog
225
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
226
-
227
-
228
- ## Image alt-text settings
229
-
230
-
231
- ## "Annotations removed" bar
232
-
233
-
234
- ## Add a signature dialog
235
-
236
-
237
- ## Tab names
238
-
239
-
240
- ## Tab panels
241
-
242
-
243
- ## Controls
244
-
245
-
246
- ## Dialog buttons
247
-
248
-
249
- ## Main menu for adding/removing signatures
250
-
251
-
252
- ## Editor toolbar
253
-
254
-
255
- ## Edit signature description dialog
256
-
@@ -288,9 +288,6 @@ pdfjs-highlight-floating-button1 =
288
288
  .aria-label = Означи
289
289
  pdfjs-highlight-floating-button-label = Означи
290
290
 
291
- ## Default editor aria labels
292
-
293
-
294
291
  ## Remove button for the various kind of editor.
295
292
 
296
293
  pdfjs-editor-remove-ink-button =
@@ -419,33 +416,3 @@ pdfjs-editor-new-alt-text-disclaimer1 = Овај алтернативни тек
419
416
  pdfjs-editor-new-alt-text-disclaimer-learn-more-url = Сазнајте више
420
417
  pdfjs-editor-new-alt-text-create-automatically-button-label = Прави алтернативни текст аутоматски
421
418
  pdfjs-editor-new-alt-text-not-now-button = Не сада
422
-
423
- ## Image alt-text settings
424
-
425
-
426
- ## "Annotations removed" bar
427
-
428
-
429
- ## Add a signature dialog
430
-
431
-
432
- ## Tab names
433
-
434
-
435
- ## Tab panels
436
-
437
-
438
- ## Controls
439
-
440
-
441
- ## Dialog buttons
442
-
443
-
444
- ## Main menu for adding/removing signatures
445
-
446
-
447
- ## Editor toolbar
448
-
449
-
450
- ## Edit signature description dialog
451
-
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = Webbtypsnitt är inaktiverade: kan inte använda inb
302
302
 
303
303
  pdfjs-editor-free-text-button =
304
304
  .title = Text
305
+ pdfjs-editor-color-picker-free-text-input =
306
+ .title = Ändra textfärg
305
307
  pdfjs-editor-free-text-button-label = Text
306
308
  pdfjs-editor-ink-button =
307
309
  .title = Rita
310
+ pdfjs-editor-color-picker-ink-input =
311
+ .title = Ändra ritningsfärg
308
312
  pdfjs-editor-ink-button-label = Rita
309
313
  pdfjs-editor-stamp-button =
310
314
  .title = Lägg till eller redigera bilder
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
316
320
  .title = Markera
317
321
  .aria-label = Markera
318
322
  pdfjs-highlight-floating-button-label = Markera
323
+ pdfjs-comment-floating-button =
324
+ .title = Kommentar
325
+ .aria-label = Kommentar
326
+ pdfjs-comment-floating-button-label = Kommentar
319
327
  pdfjs-editor-signature-button =
320
328
  .title = Lägg till signatur
321
329
  pdfjs-editor-signature-button-label = Lägg till signatur
@@ -524,6 +532,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Visa alternativ textre
524
532
  pdfjs-editor-alt-text-settings-show-dialog-description = Hjälper dig att se till att alla dina bilder har alternativ text.
525
533
  pdfjs-editor-alt-text-settings-close-button = Stäng
526
534
 
535
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
536
+
537
+ pdfjs-editor-highlight-added-alert = Markering tillagd
538
+ pdfjs-editor-freetext-added-alert = Text tillagd
539
+ pdfjs-editor-ink-added-alert = Ritning tillagd
540
+ pdfjs-editor-stamp-added-alert = Bild tillagd
541
+ pdfjs-editor-signature-added-alert = Signatur tillagd
542
+
527
543
  ## "Annotations removed" bar
528
544
 
529
545
  pdfjs-editor-undo-bar-message-highlight = Markering borttagen
@@ -592,6 +608,8 @@ pdfjs-editor-add-signature-save-checkbox = Spara signatur
592
608
  pdfjs-editor-add-signature-save-warning-message = Du har nått gränsen på 5 sparade signaturer. Ta bort en för att spara fler.
593
609
  pdfjs-editor-add-signature-image-upload-error-title = Det gick inte att ladda upp bilden
594
610
  pdfjs-editor-add-signature-image-upload-error-description = Kontrollera din nätverksanslutning eller försök med en annan bild.
611
+ pdfjs-editor-add-signature-image-no-data-error-title = Det går inte att konvertera den här bilden till en signatur
612
+ pdfjs-editor-add-signature-image-no-data-error-description = Prova att ladda upp en annan bild.
595
613
  pdfjs-editor-add-signature-error-close-button = Stäng
596
614
 
597
615
  ## Dialog buttons
@@ -600,6 +618,26 @@ pdfjs-editor-add-signature-cancel-button = Avbryt
600
618
  pdfjs-editor-add-signature-add-button = Lägg till
601
619
  pdfjs-editor-edit-signature-update-button = Uppdatera
602
620
 
621
+ ## Edit a comment dialog
622
+
623
+ pdfjs-editor-edit-comment-actions-button-label = Åtgärder
624
+ pdfjs-editor-edit-comment-actions-button =
625
+ .title = Åtgärder
626
+ pdfjs-editor-edit-comment-close-button-label = Stäng
627
+ pdfjs-editor-edit-comment-close-button =
628
+ .title = Stäng
629
+ pdfjs-editor-edit-comment-actions-edit-button-label = Redigera
630
+ pdfjs-editor-edit-comment-actions-delete-button-label = Ta bort
631
+ pdfjs-editor-edit-comment-manager-text-input =
632
+ .placeholder = Ange din kommentar
633
+ pdfjs-editor-edit-comment-manager-cancel-button = Avbryt
634
+ pdfjs-editor-edit-comment-manager-save-button = Spara
635
+
636
+ ## Edit a comment button in the editor toolbar
637
+
638
+ pdfjs-editor-edit-comment-button =
639
+ .title = Redigera kommentar
640
+
603
641
  ## Main menu for adding/removing signatures
604
642
 
605
643
  pdfjs-editor-delete-signature-button1 =
@@ -213,9 +213,6 @@ pdfjs-page-scale-actual = Aktualno srogość
213
213
  # $scale (Number) - percent value for page scale
214
214
  pdfjs-page-scale-percent = { $scale }%
215
215
 
216
- ## PDF page
217
-
218
-
219
216
  ## Loading indicator messages
220
217
 
221
218
  pdfjs-loading-error = Przi ladowaniu PDFa pokozoł sie feler.
@@ -245,63 +242,3 @@ pdfjs-password-invalid = Hasło je złe. Sprōbuj jeszcze roz.
245
242
  pdfjs-password-ok-button = OK
246
243
  pdfjs-password-cancel-button = Pociep
247
244
  pdfjs-web-fonts-disabled = Necowe fōnty sōm zastawiōne: niy idzie użyć wkludzōnych fōntōw PDF.
248
-
249
- ## Editing
250
-
251
-
252
- ## Default editor aria labels
253
-
254
-
255
- ## Remove button for the various kind of editor.
256
-
257
-
258
- ##
259
-
260
-
261
- ## Alt-text dialog
262
-
263
-
264
- ## Editor resizers
265
- ## This is used in an aria label to help to understand the role of the resizer.
266
-
267
-
268
- ## Color picker
269
-
270
-
271
- ## Show all highlights
272
- ## This is a toggle button to show/hide all the highlights.
273
-
274
-
275
- ## New alt-text dialog
276
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
277
-
278
-
279
- ## Image alt-text settings
280
-
281
-
282
- ## "Annotations removed" bar
283
-
284
-
285
- ## Add a signature dialog
286
-
287
-
288
- ## Tab names
289
-
290
-
291
- ## Tab panels
292
-
293
-
294
- ## Controls
295
-
296
-
297
- ## Dialog buttons
298
-
299
-
300
- ## Main menu for adding/removing signatures
301
-
302
-
303
- ## Editor toolbar
304
-
305
-
306
- ## Edit signature description dialog
307
-