@sync-in/server 1.5.2 → 1.6.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 (355) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +2 -1
  3. package/environment/environment.dist.min.yaml +1 -0
  4. package/environment/environment.dist.yaml +88 -30
  5. package/migrations/0002_sleepy_korath.sql +1 -0
  6. package/migrations/meta/0002_snapshot.json +2424 -0
  7. package/migrations/meta/_journal.json +7 -0
  8. package/package.json +14 -12
  9. package/server/app.bootstrap.js +1 -1
  10. package/server/app.bootstrap.js.map +1 -1
  11. package/server/applications/files/services/files-manager.service.js +1 -2
  12. package/server/applications/files/services/files-manager.service.js.map +1 -1
  13. package/server/applications/files/services/files-only-office-manager.service.js +5 -6
  14. package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
  15. package/server/applications/files/utils/files.js +6 -4
  16. package/server/applications/files/utils/files.js.map +1 -1
  17. package/server/applications/links/links.controller.js +2 -2
  18. package/server/applications/links/links.controller.js.map +1 -1
  19. package/server/applications/links/services/links-manager.service.js +2 -1
  20. package/server/applications/links/services/links-manager.service.js.map +1 -1
  21. package/server/applications/links/services/links-manager.service.spec.js +6 -3
  22. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  23. package/server/applications/notifications/constants/notifications.js +9 -0
  24. package/server/applications/notifications/constants/notifications.js.map +1 -1
  25. package/server/applications/notifications/i18n/fr.js +10 -1
  26. package/server/applications/notifications/i18n/fr.js.map +1 -1
  27. package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -1
  28. package/server/applications/notifications/mails/models.js +41 -3
  29. package/server/applications/notifications/mails/models.js.map +1 -1
  30. package/server/applications/notifications/mails/templates.js +1 -1
  31. package/server/applications/notifications/mails/templates.js.map +1 -1
  32. package/server/applications/notifications/schemas/notifications.schema.js +2 -1
  33. package/server/applications/notifications/schemas/notifications.schema.js.map +1 -1
  34. package/server/applications/notifications/services/notifications-manager.service.js +16 -13
  35. package/server/applications/notifications/services/notifications-manager.service.js.map +1 -1
  36. package/server/applications/notifications/services/notifications-manager.service.spec.js +9 -8
  37. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
  38. package/server/applications/notifications/services/notifications-queries.service.js +1 -1
  39. package/server/applications/notifications/services/notifications-queries.service.js.map +1 -1
  40. package/server/applications/shares/services/shares-manager.service.js +3 -2
  41. package/server/applications/shares/services/shares-manager.service.js.map +1 -1
  42. package/server/applications/sync/constants/auth.js +2 -2
  43. package/server/applications/sync/constants/auth.js.map +1 -1
  44. package/server/applications/sync/dtos/sync-client-registration.dto.js +5 -0
  45. package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -1
  46. package/server/applications/sync/dtos/sync-operations.dto.js +1 -2
  47. package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -1
  48. package/server/applications/sync/schemas/sync-clients.schema.js +2 -1
  49. package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -1
  50. package/server/applications/sync/schemas/sync-paths.schema.js +2 -1
  51. package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -1
  52. package/server/applications/sync/services/sync-clients-manager.service.js +28 -20
  53. package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -1
  54. package/server/applications/sync/services/sync-clients-manager.service.spec.js +24 -18
  55. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
  56. package/server/applications/sync/services/sync-queries.service.js +5 -5
  57. package/server/applications/sync/services/sync-queries.service.js.map +1 -1
  58. package/server/applications/users/admin-users.controller.js +48 -37
  59. package/server/applications/users/admin-users.controller.js.map +1 -1
  60. package/server/applications/users/admin-users.controller.spec.js +15 -0
  61. package/server/applications/users/admin-users.controller.spec.js.map +1 -1
  62. package/server/applications/users/constants/routes.js +5 -0
  63. package/server/applications/users/constants/routes.js.map +1 -1
  64. package/server/applications/users/constants/user.js +8 -0
  65. package/server/applications/users/constants/user.js.map +1 -1
  66. package/server/applications/users/dto/delete-user.dto.js +5 -23
  67. package/server/applications/users/dto/delete-user.dto.js.map +1 -1
  68. package/server/applications/users/dto/user-properties.dto.js +38 -3
  69. package/server/applications/users/dto/user-properties.dto.js.map +1 -1
  70. package/server/applications/users/interfaces/admin-user.interface.js.map +1 -1
  71. package/server/applications/users/interfaces/user-secrets.interface.js +10 -0
  72. package/server/applications/users/interfaces/user-secrets.interface.js.map +1 -0
  73. package/server/applications/users/models/user.model.js +84 -50
  74. package/server/applications/users/models/user.model.js.map +1 -1
  75. package/server/applications/users/schemas/user.interface.js.map +1 -1
  76. package/server/applications/users/schemas/users.schema.js +2 -0
  77. package/server/applications/users/schemas/users.schema.js.map +1 -1
  78. package/server/applications/users/services/admin-users-manager.service.js +7 -19
  79. package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
  80. package/server/applications/users/services/admin-users-manager.service.spec.js +7 -26
  81. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
  82. package/server/applications/users/services/admin-users-queries.service.js +1 -0
  83. package/server/applications/users/services/admin-users-queries.service.js.map +1 -1
  84. package/server/applications/users/services/users-manager.service.js +138 -28
  85. package/server/applications/users/services/users-manager.service.js.map +1 -1
  86. package/server/applications/users/services/users-manager.service.spec.js +11 -9
  87. package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
  88. package/server/applications/users/services/users-queries.service.js +63 -57
  89. package/server/applications/users/services/users-queries.service.js.map +1 -1
  90. package/server/applications/users/users.controller.js +48 -1
  91. package/server/applications/users/users.controller.js.map +1 -1
  92. package/server/applications/users/users.controller.spec.js +8 -1
  93. package/server/applications/users/users.controller.spec.js.map +1 -1
  94. package/server/applications/users/users.e2e-spec.js +2 -1
  95. package/server/applications/users/users.e2e-spec.js.map +1 -1
  96. package/server/applications/users/utils/avatar.js +48 -0
  97. package/server/applications/users/utils/avatar.js.map +1 -0
  98. package/server/authentication/auth.config.js +89 -26
  99. package/server/authentication/auth.config.js.map +1 -1
  100. package/server/authentication/auth.controller.js +117 -9
  101. package/server/authentication/auth.controller.js.map +1 -1
  102. package/server/authentication/auth.controller.spec.js +16 -1
  103. package/server/authentication/auth.controller.spec.js.map +1 -1
  104. package/server/authentication/auth.e2e-spec.js +4 -3
  105. package/server/authentication/auth.e2e-spec.js.map +1 -1
  106. package/server/authentication/auth.module.js +4 -1
  107. package/server/authentication/auth.module.js.map +1 -1
  108. package/server/authentication/constants/auth-ldap.js +44 -0
  109. package/server/authentication/constants/auth-ldap.js.map +1 -0
  110. package/server/authentication/constants/auth.js +37 -4
  111. package/server/authentication/constants/auth.js.map +1 -1
  112. package/server/authentication/constants/routes.js +21 -0
  113. package/server/authentication/constants/routes.js.map +1 -1
  114. package/server/authentication/constants/scope.js +20 -0
  115. package/server/authentication/constants/scope.js.map +1 -0
  116. package/server/authentication/dto/login-response.dto.js +27 -4
  117. package/server/authentication/dto/login-response.dto.js.map +1 -1
  118. package/server/authentication/dto/token-response.dto.js +5 -0
  119. package/server/authentication/dto/token-response.dto.js.map +1 -1
  120. package/server/{applications/users/dto/user-password.dto.js → authentication/dto/two-fa-verify.dto.js} +27 -9
  121. package/server/authentication/dto/two-fa-verify.dto.js.map +1 -0
  122. package/server/authentication/guards/auth-basic.strategy.js +6 -5
  123. package/server/authentication/guards/auth-basic.strategy.js.map +1 -1
  124. package/server/authentication/guards/auth-token-access.strategy.js +3 -2
  125. package/server/authentication/guards/auth-token-access.strategy.js.map +1 -1
  126. package/server/authentication/guards/auth-token-refresh.strategy.js +3 -2
  127. package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -1
  128. package/server/authentication/guards/auth-two-fa-guard.js +81 -0
  129. package/server/authentication/guards/auth-two-fa-guard.js.map +1 -0
  130. package/server/authentication/interfaces/jwt-payload.interface.js +5 -0
  131. package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -1
  132. package/server/authentication/interfaces/token.interface.js +2 -0
  133. package/server/authentication/interfaces/token.interface.js.map +1 -1
  134. package/server/authentication/interfaces/two-fa-setup.interface.js +10 -0
  135. package/server/authentication/interfaces/two-fa-setup.interface.js.map +1 -0
  136. package/server/authentication/models/auth-method.js.map +1 -1
  137. package/server/authentication/services/auth-manager.service.js +72 -49
  138. package/server/authentication/services/auth-manager.service.js.map +1 -1
  139. package/server/authentication/services/auth-methods/auth-method-database.service.js +3 -3
  140. package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -1
  141. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +5 -0
  142. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -1
  143. package/server/authentication/services/auth-methods/auth-method-ldap.service.js +151 -66
  144. package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -1
  145. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +52 -50
  146. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -1
  147. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +251 -0
  148. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -0
  149. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +41 -0
  150. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -0
  151. package/server/authentication/utils/crypt-secret.js +68 -0
  152. package/server/authentication/utils/crypt-secret.js.map +1 -0
  153. package/server/common/functions.js +18 -2
  154. package/server/common/functions.js.map +1 -1
  155. package/server/common/qrcode.js +34 -0
  156. package/server/common/qrcode.js.map +1 -0
  157. package/server/common/shared.js +18 -0
  158. package/server/common/shared.js.map +1 -1
  159. package/server/configuration/config.environment.js +23 -6
  160. package/server/configuration/config.environment.js.map +1 -1
  161. package/server/configuration/config.interfaces.js +10 -0
  162. package/server/configuration/config.interfaces.js.map +1 -0
  163. package/server/configuration/config.loader.js.map +1 -1
  164. package/server/configuration/config.validation.js +13 -13
  165. package/server/configuration/config.validation.js.map +1 -1
  166. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +6 -6
  167. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -1
  168. package/server/infrastructure/cache/schemas/mysql-cache.schema.js +2 -1
  169. package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -1
  170. package/server/infrastructure/cache/services/cache.service.js.map +1 -1
  171. package/server/infrastructure/database/columns.js +39 -0
  172. package/server/infrastructure/database/columns.js.map +1 -0
  173. package/server/infrastructure/database/database.config.js +0 -1
  174. package/server/infrastructure/database/database.config.js.map +1 -1
  175. package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -1
  176. package/server/infrastructure/mailer/mailer.config.js +12 -0
  177. package/server/infrastructure/mailer/mailer.config.js.map +1 -1
  178. package/server/infrastructure/mailer/mailer.service.js +2 -1
  179. package/server/infrastructure/mailer/mailer.service.js.map +1 -1
  180. package/static/assets/mimes/text-x-c.svg +1 -0
  181. package/static/assets/pdfjs/build/pdf.mjs +2522 -914
  182. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  183. package/static/assets/pdfjs/build/pdf.sandbox.mjs +2 -2
  184. package/static/assets/pdfjs/build/pdf.worker.mjs +1024 -566
  185. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  186. package/static/assets/pdfjs/version +1 -1
  187. package/static/assets/pdfjs/web/debugger.mjs +116 -37
  188. package/static/assets/pdfjs/web/images/comment-popup-editButton.svg +5 -0
  189. package/static/assets/pdfjs/web/locale/ach/viewer.ftl +0 -12
  190. package/static/assets/pdfjs/web/locale/af/viewer.ftl +0 -12
  191. package/static/assets/pdfjs/web/locale/an/viewer.ftl +0 -16
  192. package/static/assets/pdfjs/web/locale/ar/viewer.ftl +0 -32
  193. package/static/assets/pdfjs/web/locale/ast/viewer.ftl +0 -19
  194. package/static/assets/pdfjs/web/locale/az/viewer.ftl +0 -16
  195. package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -32
  196. package/static/assets/pdfjs/web/locale/bg/viewer.ftl +0 -32
  197. package/static/assets/pdfjs/web/locale/bn/viewer.ftl +0 -16
  198. package/static/assets/pdfjs/web/locale/bo/viewer.ftl +0 -12
  199. package/static/assets/pdfjs/web/locale/br/viewer.ftl +0 -22
  200. package/static/assets/pdfjs/web/locale/brx/viewer.ftl +0 -16
  201. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -32
  202. package/static/assets/pdfjs/web/locale/ca/viewer.ftl +12 -23
  203. package/static/assets/pdfjs/web/locale/cak/viewer.ftl +0 -23
  204. package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +0 -16
  205. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +0 -32
  206. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -32
  207. package/static/assets/pdfjs/web/locale/da/viewer.ftl +3 -35
  208. package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -32
  209. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -32
  210. package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -32
  211. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +0 -32
  212. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -32
  213. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +25 -13
  214. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -32
  215. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -32
  216. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -32
  217. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +5 -32
  218. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -32
  219. package/static/assets/pdfjs/web/locale/et/viewer.ftl +0 -16
  220. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +38 -32
  221. package/static/assets/pdfjs/web/locale/fa/viewer.ftl +0 -19
  222. package/static/assets/pdfjs/web/locale/ff/viewer.ftl +0 -12
  223. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -32
  224. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -32
  225. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -32
  226. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +0 -32
  227. package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +0 -12
  228. package/static/assets/pdfjs/web/locale/gd/viewer.ftl +0 -23
  229. package/static/assets/pdfjs/web/locale/gl/viewer.ftl +0 -32
  230. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -32
  231. package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +0 -12
  232. package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -32
  233. package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +0 -16
  234. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +0 -32
  235. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -32
  236. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -32
  237. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +372 -16
  238. package/static/assets/pdfjs/web/locale/hye/viewer.ftl +0 -16
  239. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -32
  240. package/static/assets/pdfjs/web/locale/id/viewer.ftl +38 -32
  241. package/static/assets/pdfjs/web/locale/is/viewer.ftl +27 -32
  242. package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -33
  243. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +31 -33
  244. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +0 -32
  245. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -32
  246. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +31 -32
  247. package/static/assets/pdfjs/web/locale/km/viewer.ftl +0 -12
  248. package/static/assets/pdfjs/web/locale/kn/viewer.ftl +0 -12
  249. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -32
  250. package/static/assets/pdfjs/web/locale/lij/viewer.ftl +0 -12
  251. package/static/assets/pdfjs/web/locale/lo/viewer.ftl +0 -23
  252. package/static/assets/pdfjs/web/locale/lt/viewer.ftl +0 -16
  253. package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +0 -12
  254. package/static/assets/pdfjs/web/locale/lv/viewer.ftl +0 -12
  255. package/static/assets/pdfjs/web/locale/meh/viewer.ftl +0 -14
  256. package/static/assets/pdfjs/web/locale/mk/viewer.ftl +0 -19
  257. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +0 -31
  258. package/static/assets/pdfjs/web/locale/mr/viewer.ftl +0 -16
  259. package/static/assets/pdfjs/web/locale/ms/viewer.ftl +0 -12
  260. package/static/assets/pdfjs/web/locale/my/viewer.ftl +0 -12
  261. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +0 -32
  262. package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +0 -12
  263. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -32
  264. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +0 -32
  265. package/static/assets/pdfjs/web/locale/oc/viewer.ftl +0 -24
  266. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -32
  267. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -32
  268. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -32
  269. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +0 -32
  270. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -32
  271. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +5 -37
  272. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +0 -32
  273. package/static/assets/pdfjs/web/locale/sat/viewer.ftl +0 -23
  274. package/static/assets/pdfjs/web/locale/sc/viewer.ftl +8 -27
  275. package/static/assets/pdfjs/web/locale/sco/viewer.ftl +0 -16
  276. package/static/assets/pdfjs/web/locale/si/viewer.ftl +0 -22
  277. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -32
  278. package/static/assets/pdfjs/web/locale/skr/viewer.ftl +0 -32
  279. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +30 -32
  280. package/static/assets/pdfjs/web/locale/son/viewer.ftl +0 -12
  281. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -32
  282. package/static/assets/pdfjs/web/locale/sr/viewer.ftl +0 -32
  283. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -32
  284. package/static/assets/pdfjs/web/locale/szl/viewer.ftl +0 -16
  285. package/static/assets/pdfjs/web/locale/ta/viewer.ftl +0 -12
  286. package/static/assets/pdfjs/web/locale/te/viewer.ftl +0 -16
  287. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -32
  288. package/static/assets/pdfjs/web/locale/th/viewer.ftl +38 -32
  289. package/static/assets/pdfjs/web/locale/tl/viewer.ftl +0 -16
  290. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -32
  291. package/static/assets/pdfjs/web/locale/trs/viewer.ftl +0 -12
  292. package/static/assets/pdfjs/web/locale/uk/viewer.ftl +0 -32
  293. package/static/assets/pdfjs/web/locale/ur/viewer.ftl +0 -16
  294. package/static/assets/pdfjs/web/locale/uz/viewer.ftl +0 -12
  295. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -32
  296. package/static/assets/pdfjs/web/locale/xh/viewer.ftl +0 -12
  297. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -32
  298. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -32
  299. package/static/assets/pdfjs/web/viewer.css +586 -437
  300. package/static/assets/pdfjs/web/viewer.html +12 -23
  301. package/static/assets/pdfjs/web/viewer.mjs +955 -514
  302. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  303. package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
  304. package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +10 -22
  305. package/static/{chunk-SPTF6FSM.js → chunk-27YQB3TE.js} +1 -1
  306. package/static/chunk-2I4CUFUA.js +1 -0
  307. package/static/chunk-2MTM6SWN.js +4 -0
  308. package/static/{chunk-7VRUZRJG.js → chunk-34MKICK5.js} +2 -2
  309. package/static/chunk-5O3DIUU3.js +1 -0
  310. package/static/{chunk-VJRTMDEJ.js → chunk-6NMVZIIT.js} +1 -1
  311. package/static/{chunk-L6MU6S2V.js → chunk-7DN7ZAPU.js} +1 -1
  312. package/static/{chunk-MVO4WZLK.js → chunk-7FUM3JGM.js} +1 -1
  313. package/static/{chunk-RSS6GYNE.js → chunk-7ITZXYYJ.js} +1 -1
  314. package/static/chunk-7P27WBGC.js +4 -0
  315. package/static/chunk-ATP3BFHV.js +562 -0
  316. package/static/chunk-AWQ2YTVC.js +1 -0
  317. package/static/chunk-DSOE3FEP.js +1 -0
  318. package/static/{chunk-2R6HHGUR.js → chunk-EFKMBLRE.js} +1 -1
  319. package/static/chunk-FUFKVHPU.js +1 -0
  320. package/static/{chunk-MRSWNAVB.js → chunk-HCDLWTMW.js} +1 -1
  321. package/static/chunk-IPAC4VAF.js +1 -0
  322. package/static/{chunk-ZC5NIT55.js → chunk-IQOALFYU.js} +1 -1
  323. package/static/chunk-JASU3CIH.js +1 -0
  324. package/static/{chunk-6OJZWYRZ.js → chunk-JQ5FTO2M.js} +1 -1
  325. package/static/chunk-JUNZFADM.js +1 -0
  326. package/static/{chunk-LLWSLOSX.js → chunk-LJUKI4SQ.js} +1 -1
  327. package/static/{chunk-WI7FOANP.js → chunk-LUWQFIWR.js} +1 -1
  328. package/static/{chunk-BIUNUYZ5.js → chunk-ORMRCEGT.js} +1 -1
  329. package/static/{chunk-IZL7JPTS.js → chunk-Q7D6RN4N.js} +1 -1
  330. package/static/{chunk-JYXLQRHG.js → chunk-QJX6ITLW.js} +1 -1
  331. package/static/{chunk-YJMN3B4N.js → chunk-QQ6UQQBR.js} +1 -1
  332. package/static/chunk-S2HDY3OL.js +1 -0
  333. package/static/{chunk-NE4NDO45.js → chunk-S75P2FFI.js} +1 -1
  334. package/static/{chunk-CRQNEHTX.js → chunk-T3EYFSVZ.js} +1 -1
  335. package/static/{chunk-MCLQFZ3S.js → chunk-U34OZUZ7.js} +1 -1
  336. package/static/chunk-Y7EH7G5K.js +1 -0
  337. package/static/{chunk-MGGT6MIJ.js → chunk-ZQQPUYLU.js} +1 -1
  338. package/static/index.html +2 -2
  339. package/static/main-7SQDDVMD.js +9 -0
  340. package/static/{styles-FYUSO6OJ.css → styles-A5VYX3CE.css} +1 -1
  341. package/server/applications/users/dto/user-password.dto.js.map +0 -1
  342. package/static/chunk-4U5A2DEP.js +0 -4
  343. package/static/chunk-54EAZ2UD.js +0 -1
  344. package/static/chunk-7ZRXJONB.js +0 -1
  345. package/static/chunk-F2J2IIJE.js +0 -1
  346. package/static/chunk-FNFGUIQH.js +0 -4
  347. package/static/chunk-GGLK52CG.js +0 -1
  348. package/static/chunk-HW2H3ISM.js +0 -559
  349. package/static/chunk-HX6BBYVD.js +0 -1
  350. package/static/chunk-JF7S3UYQ.js +0 -1
  351. package/static/chunk-KSHPKI4G.js +0 -1
  352. package/static/chunk-VPJ2V27B.js +0 -1
  353. package/static/chunk-VUI3KV7V.js +0 -1
  354. package/static/chunk-ZXS4V7J2.js +0 -1
  355. package/static/main-FFIWFD2F.js +0 -7
@@ -1 +1 @@
1
- v5.4.149
1
+ v5.4.296
@@ -295,7 +295,7 @@ class Stepper {
295
295
  this.currentIdx = -1;
296
296
  this.operatorListIdx = 0;
297
297
  this.indentLevel = 0;
298
- this.operatorGroups = null;
298
+ this.operatorsGroups = null;
299
299
  this.pageContainer = pageContainer;
300
300
  }
301
301
 
@@ -439,7 +439,7 @@ class Stepper {
439
439
  this.table.append(chunk);
440
440
  }
441
441
 
442
- setOperatorGroups(groups) {
442
+ setOperatorBBoxes(bboxes, metadata) {
443
443
  let boxesContainer = this.pageContainer.querySelector(".pdfBugGroupsLayer");
444
444
  if (!boxesContainer) {
445
445
  boxesContainer = this.#c("div");
@@ -457,12 +457,55 @@ class Stepper {
457
457
  }
458
458
  boxesContainer.innerHTML = "";
459
459
 
460
- groups = groups.toSorted((a, b) => {
460
+ const dependents = new Map();
461
+ for (const [dependentIdx, { dependencies: ownDependencies }] of metadata) {
462
+ for (const dependencyIdx of ownDependencies) {
463
+ let ownDependents = dependents.get(dependencyIdx);
464
+ if (!ownDependents) {
465
+ dependents.set(dependencyIdx, (ownDependents = new Set()));
466
+ }
467
+ ownDependents.add(dependentIdx);
468
+ }
469
+ }
470
+
471
+ const groups = Array.from({ length: bboxes.length }, (_, i) => {
472
+ let minX = null;
473
+ let minY = null;
474
+ let maxX = null;
475
+ let maxY = null;
476
+ if (!bboxes.isEmpty(i)) {
477
+ minX = bboxes.minX(i);
478
+ minY = bboxes.minY(i);
479
+ maxX = bboxes.maxX(i);
480
+ maxY = bboxes.maxY(i);
481
+ }
482
+
483
+ return {
484
+ minX,
485
+ minY,
486
+ maxX,
487
+ maxY,
488
+ dependencies: Array.from(metadata.get(i)?.dependencies ?? []).sort(),
489
+ dependents: Array.from(dependents.get(i) ?? []).sort(),
490
+ isRenderingOperation: metadata.get(i)?.isRenderingOperation ?? false,
491
+ idx: i,
492
+ };
493
+ });
494
+ this.operatorsGroups = groups;
495
+
496
+ const operatorsGroupsByZindex = groups.toSorted((a, b) => {
497
+ if (a.minX === null) {
498
+ return b.minX === null ? 0 : 1;
499
+ }
500
+ if (b.minX === null) {
501
+ return -1;
502
+ }
503
+
461
504
  const diffs = [
462
- a.minX - b.minX,
463
505
  a.minY - b.minY,
464
- b.maxX - a.maxX,
506
+ a.minX - b.minX,
465
507
  b.maxY - a.maxY,
508
+ b.maxX - a.maxX,
466
509
  ];
467
510
  for (const diff of diffs) {
468
511
  if (Math.abs(diff) > 0.01) {
@@ -476,16 +519,18 @@ class Stepper {
476
519
  }
477
520
  return 0;
478
521
  });
479
- this.operatorGroups = groups;
480
522
 
481
- for (let i = 0; i < groups.length; i++) {
482
- const el = this.#c("div");
483
- el.style.left = `${groups[i].minX * 100}%`;
484
- el.style.top = `${groups[i].minY * 100}%`;
485
- el.style.width = `${(groups[i].maxX - groups[i].minX) * 100}%`;
486
- el.style.height = `${(groups[i].maxY - groups[i].minY) * 100}%`;
487
- el.dataset.groupIdx = i;
488
- boxesContainer.append(el);
523
+ for (let i = 0; i < operatorsGroupsByZindex.length; i++) {
524
+ const group = operatorsGroupsByZindex[i];
525
+ if (group.minX !== null) {
526
+ const el = this.#c("div");
527
+ el.style.left = `${group.minX * 100}%`;
528
+ el.style.top = `${group.minY * 100}%`;
529
+ el.style.width = `${(group.maxX - group.minX) * 100}%`;
530
+ el.style.height = `${(group.maxY - group.minY) * 100}%`;
531
+ el.dataset.idx = group.idx;
532
+ boxesContainer.append(el);
533
+ }
489
534
  }
490
535
  }
491
536
 
@@ -496,51 +541,85 @@ class Stepper {
496
541
  }
497
542
 
498
543
  const index = +tr.dataset.idx;
544
+ this.#highlightStepsGroup(index);
545
+ }
499
546
 
500
- const closestGroupIndex =
501
- this.operatorGroups?.findIndex(({ idx }) => idx === index) ?? -1;
502
- if (closestGroupIndex === -1) {
503
- this.hoverStyle.innerText = "";
547
+ #handleDebugBoxHover(e) {
548
+ if (e.target.dataset.idx === undefined) {
504
549
  return;
505
550
  }
506
551
 
507
- this.#highlightStepsGroup(closestGroupIndex);
552
+ const idx = Number(e.target.dataset.idx);
553
+ this.#highlightStepsGroup(idx);
508
554
  }
509
555
 
510
- #handleDebugBoxHover(e) {
511
- if (e.target.dataset.groupIdx === undefined) {
556
+ #handleDebugBoxClick(e) {
557
+ if (e.target.dataset.idx === undefined) {
512
558
  return;
513
559
  }
514
560
 
515
- const groupIdx = Number(e.target.dataset.groupIdx);
516
- this.#highlightStepsGroup(groupIdx);
561
+ const idx = Number(e.target.dataset.idx);
562
+
563
+ this.table.childNodes[idx].scrollIntoView();
517
564
  }
518
565
 
519
- #handleDebugBoxClick(e) {
520
- if (e.target.dataset.groupIdx === undefined) {
566
+ #highlightStepsGroup(index) {
567
+ const group = this.operatorsGroups?.[index];
568
+ if (!group) {
521
569
  return;
522
570
  }
523
571
 
524
- const groupIdx = Number(e.target.dataset.groupIdx);
525
- const group = this.operatorGroups[groupIdx];
572
+ const renderingColor = `rgba(0, 0, 0, 0.1)`;
573
+ const dependencyColor = `rgba(0, 255, 255, 0.1)`;
574
+ const dependentColor = `rgba(255, 0, 0, 0.1)`;
575
+
576
+ const solid = color => `background-color: ${color}`;
577
+ // Used for operations that have an empty bounding box
578
+ const striped = color => `
579
+ background-image: repeating-linear-gradient(
580
+ -45deg,
581
+ white,
582
+ white 10px,
583
+ ${color} 10px,
584
+ ${color} 20px
585
+ )
586
+ `;
526
587
 
527
- this.table.childNodes[group.idx].scrollIntoView();
528
- }
588
+ const select = idx => `#${this.panel.id} tr[data-idx="${idx}"]`;
589
+ const selectN = idxs =>
590
+ idxs.length === 0 ? "q:not(q)" : idxs.map(select).join(", ");
529
591
 
530
- #highlightStepsGroup(groupIndex) {
531
- const group = this.operatorGroups[groupIndex];
592
+ const isEmpty = idx =>
593
+ !this.operatorsGroups[idx] || this.operatorsGroups[idx].minX === null;
532
594
 
533
- this.hoverStyle.innerText = `#${this.panel.id} tr[data-idx="${group.idx}"] { background-color: rgba(0, 0, 0, 0.1); }`;
595
+ const selfColor = group.isRenderingOperation
596
+ ? renderingColor
597
+ : dependentColor;
534
598
 
599
+ this.hoverStyle.innerText = `${select(index)} {
600
+ ${group.minX === null ? striped(selfColor) : solid(selfColor)}
601
+ }`;
535
602
  if (group.dependencies.length > 0) {
536
- const selector = group.dependencies
537
- .map(idx => `#${this.panel.id} tr[data-idx="${idx}"]`)
538
- .join(", ");
539
- this.hoverStyle.innerText += `${selector} { background-color: rgba(0, 255, 255, 0.1); }`;
603
+ this.hoverStyle.innerText += `
604
+ ${selectN(group.dependencies.filter(idx => !isEmpty(idx)))} {
605
+ ${solid(dependencyColor)}
606
+ }
607
+ ${selectN(group.dependencies.filter(isEmpty))} {
608
+ ${striped(dependencyColor)}
609
+ }`;
610
+ }
611
+ if (group.dependents.length > 0) {
612
+ this.hoverStyle.innerText += `
613
+ ${selectN(group.dependents.filter(idx => !isEmpty(idx)))} {
614
+ ${solid(dependentColor)}
615
+ }
616
+ ${selectN(group.dependents.filter(isEmpty))} {
617
+ ${striped(dependentColor)}
618
+ }`;
540
619
  }
541
620
 
542
621
  this.hoverStyle.innerText += `
543
- #viewer [data-page-number="${this.pageIndex + 1}"] .pdfBugGroupsLayer :nth-child(${groupIndex + 1}) {
622
+ #viewer [data-page-number="${this.pageIndex + 1}"] .pdfBugGroupsLayer [data-idx="${index}"] {
544
623
  background-color: var(--hover-background-color);
545
624
  outline-style: var(--hover-outline-style);
546
625
  }
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.0189877 13.6645L0.612989 10.4635C0.687989 10.0545 0.884989 9.6805 1.18099 9.3825L9.98199 0.5805C10.756 -0.1925 12.015 -0.1945 12.792 0.5805L14.42 2.2085C15.194 2.9835 15.194 4.2435 14.42 5.0185L5.61599 13.8215C5.31999 14.1165 4.94599 14.3125 4.53799 14.3875L1.33599 14.9815C1.26599 14.9935 1.19799 15.0005 1.12999 15.0005C0.832989 15.0005 0.544988 14.8835 0.330988 14.6695C0.0679874 14.4055 -0.0490122 14.0305 0.0189877 13.6645ZM12.472 5.1965L13.632 4.0365L13.631 3.1885L11.811 1.3675L10.963 1.3685L9.80299 2.5285L12.472 5.1965ZM4.31099 13.1585C4.47099 13.1285 4.61799 13.0515 4.73399 12.9345L11.587 6.0815L8.91899 3.4135L2.06599 10.2655C1.94899 10.3835 1.87199 10.5305 1.84099 10.6915L1.36699 13.2485L1.75199 13.6335L4.31099 13.1585Z" fill="black"/>
3
+ </svg>
4
+
5
+ <!--path d="M0.0189877 14.1645L0.612989 10.9635C0.687989 10.5545 0.884989 10.1805 1.18099 9.8825L9.98199 1.0805C10.756 0.3075 12.015 0.3055 12.792 1.0805L14.42 2.7085C15.194 3.4835 15.194 4.7435 14.42 5.5185L5.61599 14.3215C5.31999 14.6165 4.94599 14.8125 4.53799 14.8875L1.33599 15.4815C1.26599 15.4935 1.19799 15.5005 1.12999 15.5005C0.832989 15.5005 0.544988 15.3835 0.330988 15.1695C0.0679874 14.9055 -0.0490122 14.5305 0.0189877 14.1645ZM12.472 5.6965L13.632 4.5365L13.631 3.6885L11.811 1.8675L10.963 1.8685L9.80299 3.0285L12.472 5.6965ZM4.31099 13.6585C4.47099 13.6285 4.61799 13.5515 4.73399 13.4345L11.587 6.5815L8.91899 3.9135L2.06599 10.7655C1.94899 10.8835 1.87199 11.0305 1.84099 11.1915L1.36699 13.7485L1.75199 14.1335L4.31099 13.6585Z" fill="black"/-->
@@ -71,24 +71,12 @@ pdfjs-document-properties-button =
71
71
  pdfjs-document-properties-button-label = Jami me gin acoya…
72
72
  pdfjs-document-properties-file-name = Nying pwail:
73
73
  pdfjs-document-properties-file-size = Dit pa pwail:
74
- # Variables:
75
- # $size_kb (Number) - the PDF file size in kilobytes
76
- # $size_b (Number) - the PDF file size in bytes
77
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
78
- # Variables:
79
- # $size_mb (Number) - the PDF file size in megabytes
80
- # $size_b (Number) - the PDF file size in bytes
81
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
82
74
  pdfjs-document-properties-title = Wiye:
83
75
  pdfjs-document-properties-author = Ngat mucoyo:
84
76
  pdfjs-document-properties-subject = Subjek:
85
77
  pdfjs-document-properties-keywords = Lok mapire tek:
86
78
  pdfjs-document-properties-creation-date = Nino dwe me cwec:
87
79
  pdfjs-document-properties-modification-date = Nino dwe me yub:
88
- # Variables:
89
- # $date (Date) - the creation/modification date of the PDF file
90
- # $time (Time) - the creation/modification time of the PDF file
91
- pdfjs-document-properties-date-string = { $date }, { $time }
92
80
  pdfjs-document-properties-creator = Lacwec:
93
81
  pdfjs-document-properties-producer = Layub PDF:
94
82
  pdfjs-document-properties-version = Kit PDF:
@@ -71,24 +71,12 @@ pdfjs-document-properties-button =
71
71
  pdfjs-document-properties-button-label = Dokumenteienskappe…
72
72
  pdfjs-document-properties-file-name = Lêernaam:
73
73
  pdfjs-document-properties-file-size = Lêergrootte:
74
- # Variables:
75
- # $size_kb (Number) - the PDF file size in kilobytes
76
- # $size_b (Number) - the PDF file size in bytes
77
- pdfjs-document-properties-kb = { $size_kb } kG ({ $size_b } grepe)
78
- # Variables:
79
- # $size_mb (Number) - the PDF file size in megabytes
80
- # $size_b (Number) - the PDF file size in bytes
81
- pdfjs-document-properties-mb = { $size_mb } MG ({ $size_b } grepe)
82
74
  pdfjs-document-properties-title = Titel:
83
75
  pdfjs-document-properties-author = Outeur:
84
76
  pdfjs-document-properties-subject = Onderwerp:
85
77
  pdfjs-document-properties-keywords = Sleutelwoorde:
86
78
  pdfjs-document-properties-creation-date = Skeppingsdatum:
87
79
  pdfjs-document-properties-modification-date = Wysigingsdatum:
88
- # Variables:
89
- # $date (Date) - the creation/modification date of the PDF file
90
- # $time (Time) - the creation/modification time of the PDF file
91
- pdfjs-document-properties-date-string = { $date }, { $time }
92
80
  pdfjs-document-properties-creator = Skepper:
93
81
  pdfjs-document-properties-producer = PDF-vervaardiger:
94
82
  pdfjs-document-properties-version = PDF-weergawe:
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Propiedatz d'o documento...
90
90
  pdfjs-document-properties-file-name = Nombre de fichero:
91
91
  pdfjs-document-properties-file-size = Grandaria d'o fichero:
92
- # Variables:
93
- # $size_kb (Number) - the PDF file size in kilobytes
94
- # $size_b (Number) - the PDF file size in bytes
95
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
96
- # Variables:
97
- # $size_mb (Number) - the PDF file size in megabytes
98
- # $size_b (Number) - the PDF file size in bytes
99
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
100
92
  pdfjs-document-properties-title = Titol:
101
93
  pdfjs-document-properties-author = Autor:
102
94
  pdfjs-document-properties-subject = Afer:
103
95
  pdfjs-document-properties-keywords = Parolas clau:
104
96
  pdfjs-document-properties-creation-date = Calendata de creyación:
105
97
  pdfjs-document-properties-modification-date = Calendata de modificación:
106
- # Variables:
107
- # $date (Date) - the creation/modification date of the PDF file
108
- # $time (Time) - the creation/modification time of the PDF file
109
- pdfjs-document-properties-date-string = { $date }, { $time }
110
98
  pdfjs-document-properties-creator = Creyador:
111
99
  pdfjs-document-properties-producer = Creyador de PDF:
112
100
  pdfjs-document-properties-version = Versión de PDF:
@@ -223,10 +211,6 @@ pdfjs-rendering-error = Ha ocurriu una error en renderizar a pachina.
223
211
 
224
212
  ## Annotations
225
213
 
226
- # Variables:
227
- # $date (Date) - the modification date of the annotation
228
- # $time (Time) - the modification time of the annotation
229
- pdfjs-annotation-date-string = { $date }, { $time }
230
214
  # .alt: This is used as a tooltip.
231
215
  # Variables:
232
216
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
112
112
  # $mb (Number) - the PDF file size in megabytes
113
113
  # $b (Number) - the PDF file size in bytes
114
114
  pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } م.بايت ({ $b } بايتات)
115
- # Variables:
116
- # $size_kb (Number) - the PDF file size in kilobytes
117
- # $size_b (Number) - the PDF file size in bytes
118
- pdfjs-document-properties-kb = { $size_kb } ك.بايت ({ $size_b } بايت)
119
- # Variables:
120
- # $size_mb (Number) - the PDF file size in megabytes
121
- # $size_b (Number) - the PDF file size in bytes
122
- pdfjs-document-properties-mb = { $size_mb } م.بايت ({ $size_b } بايت)
123
115
  pdfjs-document-properties-title = العنوان:
124
116
  pdfjs-document-properties-author = المؤلف:
125
117
  pdfjs-document-properties-subject = الموضوع:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = تاريخ التعديل:
129
121
  # Variables:
130
122
  # $dateObj (Date) - the creation/modification date and time of the PDF file
131
123
  pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
132
- # Variables:
133
- # $date (Date) - the creation/modification date of the PDF file
134
- # $time (Time) - the creation/modification time of the PDF file
135
- pdfjs-document-properties-date-string = { $date }، { $time }
136
124
  pdfjs-document-properties-creator = المنشئ:
137
125
  pdfjs-document-properties-producer = منتج PDF:
138
126
  pdfjs-document-properties-version = إصدارة PDF:
@@ -283,10 +271,6 @@ pdfjs-rendering-error = حدث خطأ أثناء عرض الصفحة.
283
271
 
284
272
  ## Annotations
285
273
 
286
- # Variables:
287
- # $date (Date) - the modification date of the annotation
288
- # $time (Time) - the modification time of the annotation
289
- pdfjs-annotation-date-string = { $date }، { $time }
290
274
  # .alt: This is used as a tooltip.
291
275
  # Variables:
292
276
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
386
370
  pdfjs-free-text2 =
387
371
  .aria-label = محرِّر النص
388
372
  .default-content = ابدأ في كتابة…
389
- pdfjs-free-text =
390
- .aria-label = محرِّر النص
391
- pdfjs-free-text-default-content = ابدأ الكتابة…
392
- pdfjs-ink =
393
- .aria-label = محرِّر الرسم
394
- pdfjs-ink-canvas =
395
- .aria-label = صورة أنشأها المستخدم
396
373
 
397
374
  ## Alt-text dialog
398
375
 
399
376
  pdfjs-editor-alt-text-button-label = نص بديل
400
377
  pdfjs-editor-alt-text-edit-button =
401
378
  .aria-label = حرّر النص البديل
402
- pdfjs-editor-alt-text-edit-button-label = تحرير النص البديل
403
379
  pdfjs-editor-alt-text-dialog-label = اختر خيار
404
380
  pdfjs-editor-alt-text-dialog-description = يساعد النص البديل عندما لا يتمكن الأشخاص من رؤية الصورة أو عندما لا يتم تحميلها.
405
381
  pdfjs-editor-alt-text-add-description-label = أضِف وصف
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
419
395
  ## Editor resizers
420
396
  ## This is used in an aria label to help to understand the role of the resizer.
421
397
 
422
- pdfjs-editor-resizer-label-top-left = الزاوية اليُسرى العُليا — غيّر الحجم
423
- pdfjs-editor-resizer-label-top-middle = أعلى الوسط - غيّر الحجم
424
- pdfjs-editor-resizer-label-top-right = الزاوية اليُمنى العُليا - غيّر الحجم
425
- pdfjs-editor-resizer-label-middle-right = اليمين الأوسط - غيّر الحجم
426
- pdfjs-editor-resizer-label-bottom-right = الزاوية اليُمنى السُفلى - غيّر الحجم
427
- pdfjs-editor-resizer-label-bottom-middle = أسفل الوسط - غيّر الحجم
428
- pdfjs-editor-resizer-label-bottom-left = الزاوية اليُسرى السُفلية - غيّر الحجم
429
- pdfjs-editor-resizer-label-middle-left = مُنتصف اليسار - غيّر الحجم
430
398
  pdfjs-editor-resizer-top-left =
431
399
  .aria-label = الزاوية اليُسرى العُليا — غيّر الحجم
432
400
  pdfjs-editor-resizer-top-middle =
@@ -77,22 +77,10 @@ pdfjs-document-properties-button =
77
77
  pdfjs-document-properties-button-label = Propiedaes del documentu…
78
78
  pdfjs-document-properties-file-name = Nome del ficheru:
79
79
  pdfjs-document-properties-file-size = Tamañu del ficheru:
80
- # Variables:
81
- # $size_kb (Number) - the PDF file size in kilobytes
82
- # $size_b (Number) - the PDF file size in bytes
83
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
84
- # Variables:
85
- # $size_mb (Number) - the PDF file size in megabytes
86
- # $size_b (Number) - the PDF file size in bytes
87
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
88
80
  pdfjs-document-properties-title = Títulu:
89
81
  pdfjs-document-properties-keywords = Pallabres clave:
90
82
  pdfjs-document-properties-creation-date = Data de creación:
91
83
  pdfjs-document-properties-modification-date = Data de modificación:
92
- # Variables:
93
- # $date (Date) - the creation/modification date of the PDF file
94
- # $time (Time) - the creation/modification time of the PDF file
95
- pdfjs-document-properties-date-string = { $date }, { $time }
96
84
  pdfjs-document-properties-producer = Productor del PDF:
97
85
  pdfjs-document-properties-version = Versión del PDF:
98
86
  pdfjs-document-properties-page-count = Númberu de páxines:
@@ -178,13 +166,6 @@ pdfjs-page-landmark =
178
166
 
179
167
  pdfjs-loading-error = Asocedió un fallu mentanto se cargaba'l PDF.
180
168
 
181
- ## Annotations
182
-
183
- # Variables:
184
- # $date (Date) - the modification date of the annotation
185
- # $time (Time) - the modification time of the annotation
186
- pdfjs-annotation-date-string = { $date }, { $time }
187
-
188
169
  ## Password
189
170
 
190
171
  pdfjs-password-ok-button = Aceptar
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Sənəd xüsusiyyətləri…
90
90
  pdfjs-document-properties-file-name = Fayl adı:
91
91
  pdfjs-document-properties-file-size = Fayl ölçüsü:
92
- # Variables:
93
- # $size_kb (Number) - the PDF file size in kilobytes
94
- # $size_b (Number) - the PDF file size in bytes
95
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bayt)
96
- # Variables:
97
- # $size_mb (Number) - the PDF file size in megabytes
98
- # $size_b (Number) - the PDF file size in bytes
99
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bayt)
100
92
  pdfjs-document-properties-title = Başlık:
101
93
  pdfjs-document-properties-author = Müəllif:
102
94
  pdfjs-document-properties-subject = Mövzu:
103
95
  pdfjs-document-properties-keywords = Açar sözlər:
104
96
  pdfjs-document-properties-creation-date = Yaradılış Tarixi :
105
97
  pdfjs-document-properties-modification-date = Dəyişdirilmə Tarixi :
106
- # Variables:
107
- # $date (Date) - the creation/modification date of the PDF file
108
- # $time (Time) - the creation/modification time of the PDF file
109
- pdfjs-document-properties-date-string = { $date }, { $time }
110
98
  pdfjs-document-properties-creator = Yaradan:
111
99
  pdfjs-document-properties-producer = PDF yaradıcısı:
112
100
  pdfjs-document-properties-version = PDF versiyası:
@@ -223,10 +211,6 @@ pdfjs-rendering-error = Səhifə göstərilərkən səhv yarandı.
223
211
 
224
212
  ## Annotations
225
213
 
226
- # Variables:
227
- # $date (Date) - the modification date of the annotation
228
- # $time (Time) - the modification time of the annotation
229
- pdfjs-annotation-date-string = { $date }, { $time }
230
214
  # .alt: This is used as a tooltip.
231
215
  # Variables:
232
216
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
112
112
  # $mb (Number) - the PDF file size in megabytes
113
113
  # $b (Number) - the PDF file size in bytes
114
114
  pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } МБ ({ $b } байтаў)
115
- # Variables:
116
- # $size_kb (Number) - the PDF file size in kilobytes
117
- # $size_b (Number) - the PDF file size in bytes
118
- pdfjs-document-properties-kb = { $size_kb } КБ ({ $size_b } байт)
119
- # Variables:
120
- # $size_mb (Number) - the PDF file size in megabytes
121
- # $size_b (Number) - the PDF file size in bytes
122
- pdfjs-document-properties-mb = { $size_mb } МБ ({ $size_b } байт)
123
115
  pdfjs-document-properties-title = Загаловак:
124
116
  pdfjs-document-properties-author = Аўтар:
125
117
  pdfjs-document-properties-subject = Тэма:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Дата змянення:
129
121
  # Variables:
130
122
  # $dateObj (Date) - the creation/modification date and time of the PDF file
131
123
  pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
132
- # Variables:
133
- # $date (Date) - the creation/modification date of the PDF file
134
- # $time (Time) - the creation/modification time of the PDF file
135
- pdfjs-document-properties-date-string = { $date }, { $time }
136
124
  pdfjs-document-properties-creator = Стваральнік:
137
125
  pdfjs-document-properties-producer = Вырабнік PDF:
138
126
  pdfjs-document-properties-version = Версія PDF:
@@ -277,10 +265,6 @@ pdfjs-rendering-error = Здарылася памылка падчас адлю
277
265
 
278
266
  ## Annotations
279
267
 
280
- # Variables:
281
- # $date (Date) - the modification date of the annotation
282
- # $time (Time) - the modification time of the annotation
283
- pdfjs-annotation-date-string = { $date }, { $time }
284
268
  # .alt: This is used as a tooltip.
285
269
  # Variables:
286
270
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -388,20 +372,12 @@ pdfjs-editor-add-saved-signature-button =
388
372
  pdfjs-free-text2 =
389
373
  .aria-label = Тэкставы рэдактар
390
374
  .default-content = Пачніце ўводзіць…
391
- pdfjs-free-text =
392
- .aria-label = Тэкставы рэдактар
393
- pdfjs-free-text-default-content = Пачніце набор тэксту…
394
- pdfjs-ink =
395
- .aria-label = Графічны рэдактар
396
- pdfjs-ink-canvas =
397
- .aria-label = Выява, створаная карыстальнікам
398
375
 
399
376
  ## Alt-text dialog
400
377
 
401
378
  pdfjs-editor-alt-text-button-label = Альтэрнатыўны тэкст
402
379
  pdfjs-editor-alt-text-edit-button =
403
380
  .aria-label = Змяніць альтэрнатыўны тэкст
404
- pdfjs-editor-alt-text-edit-button-label = Змяніць альтэрнатыўны тэкст
405
381
  pdfjs-editor-alt-text-dialog-label = Выберыце варыянт
406
382
  pdfjs-editor-alt-text-dialog-description = Альтэрнатыўны тэкст дапамагае, калі людзі не бачаць выяву або калі яна не загружаецца.
407
383
  pdfjs-editor-alt-text-add-description-label = Дадаць апісанне
@@ -421,14 +397,6 @@ pdfjs-editor-alt-text-button =
421
397
  ## Editor resizers
422
398
  ## This is used in an aria label to help to understand the role of the resizer.
423
399
 
424
- pdfjs-editor-resizer-label-top-left = Верхні левы кут — змяніць памер
425
- pdfjs-editor-resizer-label-top-middle = Уверсе пасярэдзіне — змяніць памер
426
- pdfjs-editor-resizer-label-top-right = Верхні правы кут — змяніць памер
427
- pdfjs-editor-resizer-label-middle-right = Пасярэдзіне справа — змяніць памер
428
- pdfjs-editor-resizer-label-bottom-right = Правы ніжні кут — змяніць памер
429
- pdfjs-editor-resizer-label-bottom-middle = Пасярэдзіне ўнізе — змяніць памер
430
- pdfjs-editor-resizer-label-bottom-left = Левы ніжні кут — змяніць памер
431
- pdfjs-editor-resizer-label-middle-left = Пасярэдзіне злева — змяніць памер
432
400
  pdfjs-editor-resizer-top-left =
433
401
  .aria-label = Верхні левы кут — змяніць памер
434
402
  pdfjs-editor-resizer-top-middle =
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
112
112
  # $mb (Number) - the PDF file size in megabytes
113
113
  # $b (Number) - the PDF file size in bytes
114
114
  pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } МБ ({ $b } байта)
115
- # Variables:
116
- # $size_kb (Number) - the PDF file size in kilobytes
117
- # $size_b (Number) - the PDF file size in bytes
118
- pdfjs-document-properties-kb = { $size_kb } КБ ({ $size_b } байта)
119
- # Variables:
120
- # $size_mb (Number) - the PDF file size in megabytes
121
- # $size_b (Number) - the PDF file size in bytes
122
- pdfjs-document-properties-mb = { $size_mb } МБ ({ $size_b } байта)
123
115
  pdfjs-document-properties-title = Заглавие:
124
116
  pdfjs-document-properties-author = Автор:
125
117
  pdfjs-document-properties-subject = Тема:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Дата на промяна:
129
121
  # Variables:
130
122
  # $dateObj (Date) - the creation/modification date and time of the PDF file
131
123
  pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
132
- # Variables:
133
- # $date (Date) - the creation/modification date of the PDF file
134
- # $time (Time) - the creation/modification time of the PDF file
135
- pdfjs-document-properties-date-string = { $date }, { $time }
136
124
  pdfjs-document-properties-creator = Създател:
137
125
  pdfjs-document-properties-producer = PDF произведен от:
138
126
  pdfjs-document-properties-version = Издание на PDF:
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Грешка при изчертаване на стра
275
263
 
276
264
  ## Annotations
277
265
 
278
- # Variables:
279
- # $date (Date) - the modification date of the annotation
280
- # $time (Time) - the modification time of the annotation
281
- pdfjs-annotation-date-string = { $date }, { $time }
282
266
  # .alt: This is used as a tooltip.
283
267
  # Variables:
284
268
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -336,18 +320,10 @@ pdfjs-editor-stamp-add-image-button-label = Добавяне на изображ
336
320
  pdfjs-free-text2 =
337
321
  .aria-label = Текстов редактор
338
322
  .default-content = Започнете да пишете…
339
- pdfjs-free-text =
340
- .aria-label = Текстов редактор
341
- pdfjs-free-text-default-content = Започнете да пишете…
342
- pdfjs-ink =
343
- .aria-label = Промяна на рисунка
344
- pdfjs-ink-canvas =
345
- .aria-label = Изображение, създадено от потребител
346
323
 
347
324
  ## Alt-text dialog
348
325
 
349
326
  pdfjs-editor-alt-text-button-label = Алтернативен текст
350
- pdfjs-editor-alt-text-edit-button-label = Промяна на алтернативния текст
351
327
  pdfjs-editor-alt-text-dialog-label = Изберете от възможностите
352
328
  pdfjs-editor-alt-text-dialog-description = Алтернативният текст помага на потребителите, когато не могат да видят изображението или то не се зарежда.
353
329
  pdfjs-editor-alt-text-add-description-label = Добавяне на описание
@@ -364,14 +340,6 @@ pdfjs-editor-alt-text-textarea =
364
340
  ## Editor resizers
365
341
  ## This is used in an aria label to help to understand the role of the resizer.
366
342
 
367
- pdfjs-editor-resizer-label-top-left = Горен ляв ъгъл — преоразмеряване
368
- pdfjs-editor-resizer-label-top-middle = Горе в средата — преоразмеряване
369
- pdfjs-editor-resizer-label-top-right = Горен десен ъгъл — преоразмеряване
370
- pdfjs-editor-resizer-label-middle-right = Дясно в средата — преоразмеряване
371
- pdfjs-editor-resizer-label-bottom-right = Долен десен ъгъл — преоразмеряване
372
- pdfjs-editor-resizer-label-bottom-middle = Долу в средата — преоразмеряване
373
- pdfjs-editor-resizer-label-bottom-left = Долен ляв ъгъл — преоразмеряване
374
- pdfjs-editor-resizer-label-middle-left = Ляво в средата — преоразмеряване
375
343
  pdfjs-editor-resizer-top-left =
376
344
  .aria-label = Горен ляв ъгъл — преоразмеряване
377
345
  pdfjs-editor-resizer-top-middle =
@@ -85,24 +85,12 @@ pdfjs-document-properties-button =
85
85
  pdfjs-document-properties-button-label = নথি বৈশিষ্ট্য…
86
86
  pdfjs-document-properties-file-name = ফাইলের নাম:
87
87
  pdfjs-document-properties-file-size = ফাইলের আকার:
88
- # Variables:
89
- # $size_kb (Number) - the PDF file size in kilobytes
90
- # $size_b (Number) - the PDF file size in bytes
91
- pdfjs-document-properties-kb = { $size_kb } কেবি ({ $size_b } বাইট)
92
- # Variables:
93
- # $size_mb (Number) - the PDF file size in megabytes
94
- # $size_b (Number) - the PDF file size in bytes
95
- pdfjs-document-properties-mb = { $size_mb } এমবি ({ $size_b } বাইট)
96
88
  pdfjs-document-properties-title = শিরোনাম:
97
89
  pdfjs-document-properties-author = লেখক:
98
90
  pdfjs-document-properties-subject = বিষয়:
99
91
  pdfjs-document-properties-keywords = কীওয়ার্ড:
100
92
  pdfjs-document-properties-creation-date = তৈরির তারিখ:
101
93
  pdfjs-document-properties-modification-date = পরিবর্তনের তারিখ:
102
- # Variables:
103
- # $date (Date) - the creation/modification date of the PDF file
104
- # $time (Time) - the creation/modification time of the PDF file
105
- pdfjs-document-properties-date-string = { $date }, { $time }
106
94
  pdfjs-document-properties-creator = প্রস্তুতকারক:
107
95
  pdfjs-document-properties-producer = পিডিএফ প্রস্তুতকারক:
108
96
  pdfjs-document-properties-version = পিডিএফ সংষ্করণ:
@@ -213,10 +201,6 @@ pdfjs-rendering-error = পাতা উপস্থাপনার সময়
213
201
 
214
202
  ## Annotations
215
203
 
216
- # Variables:
217
- # $date (Date) - the modification date of the annotation
218
- # $time (Time) - the modification time of the annotation
219
- pdfjs-annotation-date-string = { $date }, { $time }
220
204
  # .alt: This is used as a tooltip.
221
205
  # Variables:
222
206
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Document Properties…
90
90
  pdfjs-document-properties-file-name = File name:
91
91
  pdfjs-document-properties-file-size = File size:
92
- # Variables:
93
- # $size_kb (Number) - the PDF file size in kilobytes
94
- # $size_b (Number) - the PDF file size in bytes
95
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
96
- # Variables:
97
- # $size_mb (Number) - the PDF file size in megabytes
98
- # $size_b (Number) - the PDF file size in bytes
99
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
100
92
  pdfjs-document-properties-title = Title:
101
93
  pdfjs-document-properties-author = Author:
102
94
  pdfjs-document-properties-subject = Subject:
103
95
  pdfjs-document-properties-keywords = Keywords:
104
96
  pdfjs-document-properties-creation-date = Creation Date:
105
97
  pdfjs-document-properties-modification-date = Modification Date:
106
- # Variables:
107
- # $date (Date) - the creation/modification date of the PDF file
108
- # $time (Time) - the creation/modification time of the PDF file
109
- pdfjs-document-properties-date-string = { $date }, { $time }
110
98
  pdfjs-document-properties-creator = Creator:
111
99
  pdfjs-document-properties-producer = PDF Producer:
112
100
  pdfjs-document-properties-version = PDF Version: