@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
@@ -37,8 +37,8 @@ pdfjs-open-file-button =
37
37
  .title = Deschide un fișier
38
38
  pdfjs-open-file-button-label = Deschide
39
39
  pdfjs-print-button =
40
- .title = Tipărește
41
- pdfjs-print-button-label = Tipărește
40
+ .title = Listează
41
+ pdfjs-print-button-label = Listează
42
42
  pdfjs-save-button =
43
43
  .title = Salvează
44
44
  pdfjs-save-button-label = Salvează
@@ -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) } MB ({ $b } octeți)
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 } KB ({ $size_b } byți)
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 } MB ({ $size_b } byți)
123
115
  pdfjs-document-properties-title = Titlu:
124
116
  pdfjs-document-properties-author = Autor:
125
117
  pdfjs-document-properties-subject = Subiect:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data modificării:
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 = Autor:
137
125
  pdfjs-document-properties-producer = Producător PDF:
138
126
  pdfjs-document-properties-version = Versiune PDF:
@@ -168,13 +156,13 @@ pdfjs-document-properties-close-button = Închide
168
156
 
169
157
  ## Print
170
158
 
171
- pdfjs-print-progress-message = Se pregătește documentul pentru tipărire
159
+ pdfjs-print-progress-message = Se pregătește documentul pentru listare
172
160
  # Variables:
173
161
  # $progress (Number) - percent value
174
162
  pdfjs-print-progress-percent = { $progress }%
175
163
  pdfjs-print-progress-close-button = Anulează
176
- pdfjs-printing-not-supported = Avertisment: Tipărirea nu este suportată în totalitate de acest browser.
177
- pdfjs-printing-not-ready = Avertisment: PDF-ul nu este încărcat complet pentru tipărire.
164
+ pdfjs-printing-not-supported = Avertisment: Listarea nu este suportată complet de acest browser.
165
+ pdfjs-printing-not-ready = Avertisment: PDF-ul nu este încărcat complet pentru listare.
178
166
 
179
167
  ## Tooltips and alt text for side panel toolbar buttons
180
168
 
@@ -277,10 +265,6 @@ pdfjs-rendering-error = A intervenit o eroare la randarea paginii.
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 = Editor de text
390
374
  .default-content = Începe să tastezi...
391
- pdfjs-free-text =
392
- .aria-label = Editor de text
393
- pdfjs-free-text-default-content = Începe să tastezi…
394
- pdfjs-ink =
395
- .aria-label = Editor de desene
396
- pdfjs-ink-canvas =
397
- .aria-label = Imagine creată de utilizator
398
375
 
399
376
  ## Alt-text dialog
400
377
 
401
378
  pdfjs-editor-alt-text-button-label = Text alternativ
402
379
  pdfjs-editor-alt-text-edit-button =
403
380
  .aria-label = Editează textul alternativ
404
- pdfjs-editor-alt-text-edit-button-label = Editează textul alternativ
405
381
  pdfjs-editor-alt-text-dialog-label = Alege o opțiune
406
382
  pdfjs-editor-alt-text-dialog-description = Textul alternativ (alt text) ajută când oamenii nu pot vedea imaginea sau când nu se încarcă.
407
383
  pdfjs-editor-alt-text-add-description-label = Adaugă o descriere
@@ -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 = Colțul din stânga sus — redimensionează
425
- pdfjs-editor-resizer-label-top-middle = Mijloc de sus — redimensionează
426
- pdfjs-editor-resizer-label-top-right = Colțul din dreapta sus — redimensionează
427
- pdfjs-editor-resizer-label-middle-right = Mijloc dreapta — redimensionează
428
- pdfjs-editor-resizer-label-bottom-right = Colțul din dreapta jos — redimensionează
429
- pdfjs-editor-resizer-label-bottom-middle = Mijloc de jos - redimensionează
430
- pdfjs-editor-resizer-label-bottom-left = Colțul din stânga jos — redimensionează
431
- pdfjs-editor-resizer-label-middle-left = Mijloc stânga — redimensionează
432
400
  pdfjs-editor-resizer-top-left =
433
401
  .aria-label = Colțul din stânga sus — redimensionează
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:
@@ -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 =
@@ -104,24 +104,12 @@ pdfjs-document-properties-button =
104
104
  pdfjs-document-properties-button-label = ᱫᱚᱞᱤᱞ ᱜᱩᱱᱠᱚ …
105
105
  pdfjs-document-properties-file-name = ᱨᱮᱫᱽ ᱧᱩᱛᱩᱢ :
106
106
  pdfjs-document-properties-file-size = ᱨᱮᱫᱽ ᱢᱟᱯ :
107
- # Variables:
108
- # $size_kb (Number) - the PDF file size in kilobytes
109
- # $size_b (Number) - the PDF file size in bytes
110
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } ᱵᱟᱭᱤᱴ ᱠᱚ)
111
- # Variables:
112
- # $size_mb (Number) - the PDF file size in megabytes
113
- # $size_b (Number) - the PDF file size in bytes
114
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } ᱵᱟᱭᱤᱴ ᱠᱚ)
115
107
  pdfjs-document-properties-title = ᱧᱩᱛᱩᱢ :
116
108
  pdfjs-document-properties-author = ᱚᱱᱚᱞᱤᱭᱟᱹ :
117
109
  pdfjs-document-properties-subject = ᱵᱤᱥᱚᱭ :
118
110
  pdfjs-document-properties-keywords = ᱠᱟᱹᱴᱷᱤ ᱥᱟᱵᱟᱫᱽ :
119
111
  pdfjs-document-properties-creation-date = ᱛᱮᱭᱟᱨ ᱢᱟᱸᱦᱤᱛ :
120
112
  pdfjs-document-properties-modification-date = ᱵᱚᱫᱚᱞ ᱦᱚᱪᱚ ᱢᱟᱹᱦᱤᱛ :
121
- # Variables:
122
- # $date (Date) - the creation/modification date of the PDF file
123
- # $time (Time) - the creation/modification time of the PDF file
124
- pdfjs-document-properties-date-string = { $date }, { $time }
125
113
  pdfjs-document-properties-creator = ᱵᱮᱱᱟᱣᱤᱡ :
126
114
  pdfjs-document-properties-producer = PDF ᱛᱮᱭᱟᱨ ᱚᱰᱚᱠᱤᱡ :
127
115
  pdfjs-document-properties-version = PDF ᱵᱷᱟᱹᱨᱥᱚᱱ :
@@ -249,10 +237,6 @@ pdfjs-rendering-error = ᱥᱟᱦᱴᱟ ᱮᱢ ᱡᱚᱦᱚᱠ ᱢᱤᱫ ᱵᱷ
249
237
 
250
238
  ## Annotations
251
239
 
252
- # Variables:
253
- # $date (Date) - the modification date of the annotation
254
- # $time (Time) - the modification time of the annotation
255
- pdfjs-annotation-date-string = { $date }, { $time }
256
240
  # .alt: This is used as a tooltip.
257
241
  # Variables:
258
242
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -292,10 +276,3 @@ pdfjs-editor-ink-opacity-input = ᱟᱨᱯᱟᱨ
292
276
  pdfjs-editor-stamp-add-image-button =
293
277
  .title = ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ
294
278
  pdfjs-editor-stamp-add-image-button-label = ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ
295
- pdfjs-free-text =
296
- .aria-label = ᱚᱞ ᱥᱟᱯᱲᱟᱣᱤᱭᱟᱹ
297
- pdfjs-free-text-default-content = ᱚᱞ ᱮᱛᱦᱚᱵ ᱢᱮ …
298
- pdfjs-ink =
299
- .aria-label = ᱛᱮᱭᱟᱨ ᱥᱟᱯᱲᱟᱣᱤᱭᱟᱹ
300
- pdfjs-ink-canvas =
301
- .aria-label = ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱛᱮᱭᱟᱨ ᱠᱟᱫ ᱪᱤᱛᱟᱹᱨ
@@ -95,24 +95,12 @@ pdfjs-document-properties-button =
95
95
  pdfjs-document-properties-button-label = Propiedades de su documentu…
96
96
  pdfjs-document-properties-file-name = Nòmine de s'archìviu:
97
97
  pdfjs-document-properties-file-size = Mannària de s'archìviu:
98
- # Variables:
99
- # $size_kb (Number) - the PDF file size in kilobytes
100
- # $size_b (Number) - the PDF file size in bytes
101
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
102
- # Variables:
103
- # $size_mb (Number) - the PDF file size in megabytes
104
- # $size_b (Number) - the PDF file size in bytes
105
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
106
98
  pdfjs-document-properties-title = Tìtulu:
107
99
  pdfjs-document-properties-author = Autoria:
108
100
  pdfjs-document-properties-subject = Ogetu:
109
101
  pdfjs-document-properties-keywords = Faeddos crae:
110
102
  pdfjs-document-properties-creation-date = Data de creatzione:
111
103
  pdfjs-document-properties-modification-date = Data de modìfica:
112
- # Variables:
113
- # $date (Date) - the creation/modification date of the PDF file
114
- # $time (Time) - the creation/modification time of the PDF file
115
- pdfjs-document-properties-date-string = { $date }, { $time }
116
104
  pdfjs-document-properties-creator = Creatzione:
117
105
  pdfjs-document-properties-producer = Produtore de PDF:
118
106
  pdfjs-document-properties-version = Versione de PDF:
@@ -234,13 +222,6 @@ pdfjs-missing-file-error = Ammancat s'archìviu PDF.
234
222
  pdfjs-unexpected-response-error = Risposta imprevista de su serbidore.
235
223
  pdfjs-rendering-error = Faddina in sa visualizatzione de sa pàgina.
236
224
 
237
- ## Annotations
238
-
239
- # Variables:
240
- # $date (Date) - the modification date of the annotation
241
- # $time (Time) - the modification time of the annotation
242
- pdfjs-annotation-date-string = { $date }, { $time }
243
-
244
225
  ## Password
245
226
 
246
227
  pdfjs-password-label = Inserta sa crae pro abèrrere custu archìviu PDF.
@@ -291,18 +272,10 @@ pdfjs-editor-stamp-add-image-button =
291
272
  pdfjs-editor-stamp-add-image-button-label = Agiunghe un’immàgine
292
273
  # This refers to the thickness of the line used for free highlighting (not bound to text)
293
274
  pdfjs-editor-free-highlight-thickness-input = Grussària
294
- pdfjs-free-text =
295
- .aria-label = Editore de testu
296
- pdfjs-free-text-default-content = Cumintza a iscrìere…
297
- pdfjs-ink =
298
- .aria-label = Editore de disinnos
299
- pdfjs-ink-canvas =
300
- .aria-label = Immàgine creada dae s’utente
301
275
 
302
276
  ## Alt-text dialog
303
277
 
304
278
  pdfjs-editor-alt-text-button-label = Testu alternativu
305
- pdfjs-editor-alt-text-edit-button-label = Modifica su testu alternativu
306
279
  pdfjs-editor-alt-text-dialog-label = Sèbera un’optzione
307
280
  pdfjs-editor-alt-text-dialog-description = Su testu alternativu (“alt text”) est ùtile pro persones chi non podent bìdere s’immàgine o cando non benit carrigada.
308
281
  pdfjs-editor-alt-text-add-description-label = Agiunghe una descritzione
@@ -354,3 +327,11 @@ pdfjs-editor-alt-text-settings-editor-title = Editore de testu alternativu
354
327
  pdfjs-editor-alt-text-settings-show-dialog-button-label = Mustra deretu s’editore de testu alternativu cando siat agiunta un’immàgine
355
328
  pdfjs-editor-alt-text-settings-show-dialog-description = T’agiudat a assegurare chi totu is immàgines tuas tèngiant unu testu alternativu.
356
329
  pdfjs-editor-alt-text-settings-close-button = Serra
330
+
331
+ ## Dialog buttons
332
+
333
+ pdfjs-editor-add-signature-cancel-button = Annulla
334
+
335
+ ## Edit a comment dialog
336
+
337
+ pdfjs-editor-edit-comment-manager-cancel-button = Annulla
@@ -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 nemme:
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 = Subjeck:
103
95
  pdfjs-document-properties-keywords = Keywirds:
104
96
  pdfjs-document-properties-creation-date = Date o Makkin:
105
97
  pdfjs-document-properties-modification-date = Date o Chynges:
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 = Makker:
111
99
  pdfjs-document-properties-producer = PDF Producer:
112
100
  pdfjs-document-properties-version = PDF Version:
@@ -233,10 +221,6 @@ pdfjs-rendering-error = A mishanter tuik place while renderin the page.
233
221
 
234
222
  ## Annotations
235
223
 
236
- # Variables:
237
- # $date (Date) - the modification date of the annotation
238
- # $time (Time) - the modification time of the annotation
239
- pdfjs-annotation-date-string = { $date }, { $time }
240
224
  # .alt: This is used as a tooltip.
241
225
  # Variables:
242
226
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -80,24 +80,12 @@ pdfjs-document-properties-button =
80
80
  pdfjs-document-properties-button-label = ලේඛනයේ ගුණාංග…
81
81
  pdfjs-document-properties-file-name = ගොනුවේ නම:
82
82
  pdfjs-document-properties-file-size = ගොනුවේ ප්‍රමාණය:
83
- # Variables:
84
- # $size_kb (Number) - the PDF file size in kilobytes
85
- # $size_b (Number) - the PDF file size in bytes
86
- pdfjs-document-properties-kb = කි.බ. { $size_kb } (බයිට { $size_b })
87
- # Variables:
88
- # $size_mb (Number) - the PDF file size in megabytes
89
- # $size_b (Number) - the PDF file size in bytes
90
- pdfjs-document-properties-mb = මෙ.බ. { $size_mb } (බයිට { $size_b })
91
83
  pdfjs-document-properties-title = සිරැසිය:
92
84
  pdfjs-document-properties-author = කතෘ:
93
85
  pdfjs-document-properties-subject = මාතෘකාව:
94
86
  pdfjs-document-properties-keywords = මූල පද:
95
87
  pdfjs-document-properties-creation-date = සෑදූ දිනය:
96
88
  pdfjs-document-properties-modification-date = සංශෝධිත දිනය:
97
- # Variables:
98
- # $date (Date) - the creation/modification date of the PDF file
99
- # $time (Time) - the creation/modification time of the PDF file
100
- pdfjs-document-properties-date-string = { $date }, { $time }
101
89
  pdfjs-document-properties-creator = නිර්මාතෘ:
102
90
  pdfjs-document-properties-producer = පීඩීඑෆ් සම්පාදක:
103
91
  pdfjs-document-properties-version = පීඩීඑෆ් අනුවාදය:
@@ -207,13 +195,6 @@ pdfjs-invalid-file-error = වලංගු නොවන හෝ හානිව
207
195
  pdfjs-missing-file-error = මඟහැරුණු පීඩීඑෆ් ගොනුවකි.
208
196
  pdfjs-unexpected-response-error = අනපේක්‍ෂිත සේවාදායක ප්‍රතිචාරයකි.
209
197
 
210
- ## Annotations
211
-
212
- # Variables:
213
- # $date (Date) - the modification date of the annotation
214
- # $time (Time) - the modification time of the annotation
215
- pdfjs-annotation-date-string = { $date }, { $time }
216
-
217
198
  ## Password
218
199
 
219
200
  pdfjs-password-label = මෙම පීඩීඑෆ් ගොනුව විවෘත කිරීමට මුරපදය යොදන්න.
@@ -241,9 +222,6 @@ pdfjs-editor-free-text-color-input = වර්ණය
241
222
  pdfjs-editor-free-text-size-input = තරම
242
223
  pdfjs-editor-ink-color-input = වර්ණය
243
224
  pdfjs-editor-ink-thickness-input = ඝණකම
244
- pdfjs-free-text =
245
- .aria-label = වදන් සකසනය
246
- pdfjs-free-text-default-content = ලිවීීම අරඹන්න…
247
225
 
248
226
  ## Alt-text dialog
249
227
 
@@ -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) } MB ({ $b } bajtov)
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 } kB ({ $size_b } bajtov)
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 } MB ({ $size_b } bajtov)
123
115
  pdfjs-document-properties-title = Názov:
124
116
  pdfjs-document-properties-author = Autor:
125
117
  pdfjs-document-properties-subject = Predmet:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Dátum úpravy:
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 = Aplikácia:
137
125
  pdfjs-document-properties-producer = Tvorca PDF:
138
126
  pdfjs-document-properties-version = Verzia PDF:
@@ -279,10 +267,6 @@ pdfjs-rendering-error = Pri vykresľovaní stránky sa vyskytla chyba.
279
267
 
280
268
  ## Annotations
281
269
 
282
- # Variables:
283
- # $date (Date) - the modification date of the annotation
284
- # $time (Time) - the modification time of the annotation
285
- pdfjs-annotation-date-string = { $date }, { $time }
286
270
  # .alt: This is used as a tooltip.
287
271
  # Variables:
288
272
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -390,20 +374,12 @@ pdfjs-editor-add-saved-signature-button =
390
374
  pdfjs-free-text2 =
391
375
  .aria-label = Textový editor
392
376
  .default-content = Začnite písať…
393
- pdfjs-free-text =
394
- .aria-label = Textový editor
395
- pdfjs-free-text-default-content = Začnite písať…
396
- pdfjs-ink =
397
- .aria-label = Editor kreslenia
398
- pdfjs-ink-canvas =
399
- .aria-label = Obrázok vytvorený používateľom
400
377
 
401
378
  ## Alt-text dialog
402
379
 
403
380
  pdfjs-editor-alt-text-button-label = Alternatívny text
404
381
  pdfjs-editor-alt-text-edit-button =
405
382
  .aria-label = Upraviť alternatívny text
406
- pdfjs-editor-alt-text-edit-button-label = Upraviť alternatívny text
407
383
  pdfjs-editor-alt-text-dialog-label = Vyberte možnosť
408
384
  pdfjs-editor-alt-text-dialog-description = Alternatívny text (alt text) pomáha, keď ľudia obrázok nevidia alebo sa nenačítava.
409
385
  pdfjs-editor-alt-text-add-description-label = Pridať popis
@@ -423,14 +399,6 @@ pdfjs-editor-alt-text-button =
423
399
  ## Editor resizers
424
400
  ## This is used in an aria label to help to understand the role of the resizer.
425
401
 
426
- pdfjs-editor-resizer-label-top-left = Ľavý horný roh – zmena veľkosti
427
- pdfjs-editor-resizer-label-top-middle = Horný stred – zmena veľkosti
428
- pdfjs-editor-resizer-label-top-right = Pravý horný roh – zmena veľkosti
429
- pdfjs-editor-resizer-label-middle-right = Vpravo uprostred – zmena veľkosti
430
- pdfjs-editor-resizer-label-bottom-right = Pravý dolný roh – zmena veľkosti
431
- pdfjs-editor-resizer-label-bottom-middle = Stred dole – zmena veľkosti
432
- pdfjs-editor-resizer-label-bottom-left = Ľavý dolný roh – zmena veľkosti
433
- pdfjs-editor-resizer-label-middle-left = Vľavo uprostred – zmena veľkosti
434
402
  pdfjs-editor-resizer-top-left =
435
403
  .aria-label = Ľavý horný roh – zmena veľkosti
436
404
  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) } MB ({ $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
@@ -343,18 +327,10 @@ pdfjs-editor-stamp-add-image-button-label = تصویر شامل کرو
343
327
  pdfjs-editor-free-highlight-thickness-input = مُٹاݨ
344
328
  pdfjs-editor-free-highlight-thickness-title =
345
329
  .title = متن توں ان٘ج ٻئے شئیں کوں نمایاں کرݨ ویلے مُٹاݨ کوں بدلو
346
- pdfjs-free-text =
347
- .aria-label = ٹیکسٹ ایڈیٹر
348
- pdfjs-free-text-default-content = ٹائپنگ شروع کرو …
349
- pdfjs-ink =
350
- .aria-label = ڈرا ایڈیٹر
351
- pdfjs-ink-canvas =
352
- .aria-label = صارف دی بݨائی ہوئی تصویر
353
330
 
354
331
  ## Alt-text dialog
355
332
 
356
333
  pdfjs-editor-alt-text-button-label = Alt متن
357
- pdfjs-editor-alt-text-edit-button-label = alt متن وِچ ترمیم کرو
358
334
  pdfjs-editor-alt-text-dialog-label = ہِک اختیار چُݨو
359
335
  pdfjs-editor-alt-text-dialog-description = Alt متن (متبادل متن) اِیں ویلے مَدَت کرین٘دا ہِے جہڑیلے لوک تصویر کوں نِھیں ݙیکھ سڳدے یا جہڑیلے اِیہ لوڈ کائنی تِھین٘دا۔
360
336
  pdfjs-editor-alt-text-add-description-label = تفصیل شامل کرو
@@ -374,14 +350,6 @@ pdfjs-editor-alt-text-button =
374
350
  ## Editor resizers
375
351
  ## This is used in an aria label to help to understand the role of the resizer.
376
352
 
377
- pdfjs-editor-resizer-label-top-left = اُتلی کَھٻّی نُکّڑ — سائز بدلو
378
- pdfjs-editor-resizer-label-top-middle = اُتلا وِچلا — سائز بدلو
379
- pdfjs-editor-resizer-label-top-right = اُتلی سَڄّی نُکَّڑ — سائز بدلو
380
- pdfjs-editor-resizer-label-middle-right = وِچلا سڄّا — سائز بدلو
381
- pdfjs-editor-resizer-label-bottom-right = تلوِیں سَڄّی نُکَّڑ — سائز بدلو
382
- pdfjs-editor-resizer-label-bottom-middle = تلواں وِچلا — سائز بدلو
383
- pdfjs-editor-resizer-label-bottom-left = تلوِیں کَھٻّی نُکّڑ — سائز بدلو
384
- pdfjs-editor-resizer-label-middle-left = وِچلا کَھٻّا — سائز بدلو
385
353
  pdfjs-editor-resizer-top-left =
386
354
  .aria-label = اُتلی کَھٻّی نُکّڑ — سائز بدلو
387
355
  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) } MB ({ $b } bajtov)
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 } KB ({ $size_b } bajtov)
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 } MB ({ $size_b } bajtov)
123
115
  pdfjs-document-properties-title = Ime:
124
116
  pdfjs-document-properties-author = Avtor:
125
117
  pdfjs-document-properties-subject = Tema:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Datum spremembe:
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 = Ustvaril:
137
125
  pdfjs-document-properties-producer = Izdelovalec PDF:
138
126
  pdfjs-document-properties-version = Različica PDF:
@@ -279,10 +267,6 @@ pdfjs-rendering-error = Med pripravljanjem strani je prišlo do napake!
279
267
 
280
268
  ## Annotations
281
269
 
282
- # Variables:
283
- # $date (Date) - the modification date of the annotation
284
- # $time (Time) - the modification time of the annotation
285
- pdfjs-annotation-date-string = { $date }, { $time }
286
270
  # .alt: This is used as a tooltip.
287
271
  # Variables:
288
272
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -306,9 +290,13 @@ pdfjs-web-fonts-disabled = Spletne pisave so onemogočene: vgradnih pisav za PDF
306
290
 
307
291
  pdfjs-editor-free-text-button =
308
292
  .title = Besedilo
293
+ pdfjs-editor-color-picker-free-text-input =
294
+ .title = Spremeni barvo besedila
309
295
  pdfjs-editor-free-text-button-label = Besedilo
310
296
  pdfjs-editor-ink-button =
311
297
  .title = Riši
298
+ pdfjs-editor-color-picker-ink-input =
299
+ .title = Spremeni barvo risbe
312
300
  pdfjs-editor-ink-button-label = Riši
313
301
  pdfjs-editor-stamp-button =
314
302
  .title = Dodajanje ali urejanje slik
@@ -320,6 +308,10 @@ pdfjs-highlight-floating-button1 =
320
308
  .title = Označi
321
309
  .aria-label = Označi
322
310
  pdfjs-highlight-floating-button-label = Označi
311
+ pdfjs-comment-floating-button =
312
+ .title = Komentiraj
313
+ .aria-label = Komentiraj
314
+ pdfjs-comment-floating-button-label = Komentiraj
323
315
  pdfjs-editor-signature-button =
324
316
  .title = Dodaj podpis
325
317
  pdfjs-editor-signature-button-label = Dodaj podpis
@@ -382,20 +374,12 @@ pdfjs-editor-add-saved-signature-button =
382
374
  pdfjs-free-text2 =
383
375
  .aria-label = Urejevalnik besedila
384
376
  .default-content = Začnite tipkati …
385
- pdfjs-free-text =
386
- .aria-label = Urejevalnik besedila
387
- pdfjs-free-text-default-content = Začnite tipkati …
388
- pdfjs-ink =
389
- .aria-label = Urejevalnik risanja
390
- pdfjs-ink-canvas =
391
- .aria-label = Uporabnikova slika
392
377
 
393
378
  ## Alt-text dialog
394
379
 
395
380
  pdfjs-editor-alt-text-button-label = Nadomestno besedilo
396
381
  pdfjs-editor-alt-text-edit-button =
397
382
  .aria-label = Uredi nadomestno besedilo
398
- pdfjs-editor-alt-text-edit-button-label = Uredi nadomestno besedilo
399
383
  pdfjs-editor-alt-text-dialog-label = Izberite možnost
400
384
  pdfjs-editor-alt-text-dialog-description = Nadomestno besedilo se prikaže tistim, ki ne vidijo slike, ali če se ta ne naloži.
401
385
  pdfjs-editor-alt-text-add-description-label = Dodaj opis
@@ -415,14 +399,6 @@ pdfjs-editor-alt-text-button =
415
399
  ## Editor resizers
416
400
  ## This is used in an aria label to help to understand the role of the resizer.
417
401
 
418
- pdfjs-editor-resizer-label-top-left = Zgornji levi kot – spremeni velikost
419
- pdfjs-editor-resizer-label-top-middle = Zgoraj na sredini – spremeni velikost
420
- pdfjs-editor-resizer-label-top-right = Zgornji desni kot – spremeni velikost
421
- pdfjs-editor-resizer-label-middle-right = Desno na sredini – spremeni velikost
422
- pdfjs-editor-resizer-label-bottom-right = Spodnji desni kot – spremeni velikost
423
- pdfjs-editor-resizer-label-bottom-middle = Spodaj na sredini – spremeni velikost
424
- pdfjs-editor-resizer-label-bottom-left = Spodnji levi kot – spremeni velikost
425
- pdfjs-editor-resizer-label-middle-left = Levo na sredini – spremeni velikost
426
402
  pdfjs-editor-resizer-top-left =
427
403
  .aria-label = Zgornji levi kot – spremeni velikost
428
404
  pdfjs-editor-resizer-top-middle =
@@ -606,6 +582,8 @@ pdfjs-editor-add-signature-save-checkbox = Shrani podpis
606
582
  pdfjs-editor-add-signature-save-warning-message = Dosegli ste omejitev 5 shranjenih podpisov. Če želite shraniti novega, enega odstranite.
607
583
  pdfjs-editor-add-signature-image-upload-error-title = Slike ni bilo mogoče naložiti
608
584
  pdfjs-editor-add-signature-image-upload-error-description = Preverite svojo povezavo z omrežjem ali poskusite z drugo sliko.
585
+ pdfjs-editor-add-signature-image-no-data-error-title = Te slike ni mogoče pretvoriti v podpis
586
+ pdfjs-editor-add-signature-image-no-data-error-description = Poskusite naložiti drugo sliko.
609
587
  pdfjs-editor-add-signature-error-close-button = Zapri
610
588
 
611
589
  ## Dialog buttons
@@ -614,6 +592,26 @@ pdfjs-editor-add-signature-cancel-button = Prekliči
614
592
  pdfjs-editor-add-signature-add-button = Dodaj
615
593
  pdfjs-editor-edit-signature-update-button = Spremeni
616
594
 
595
+ ## Edit a comment dialog
596
+
597
+ pdfjs-editor-edit-comment-actions-button-label = Dejanja
598
+ pdfjs-editor-edit-comment-actions-button =
599
+ .title = Dejanja
600
+ pdfjs-editor-edit-comment-close-button-label = Zapri
601
+ pdfjs-editor-edit-comment-close-button =
602
+ .title = Zapri
603
+ pdfjs-editor-edit-comment-actions-edit-button-label = Uredi
604
+ pdfjs-editor-edit-comment-actions-delete-button-label = Izbriši
605
+ pdfjs-editor-edit-comment-manager-text-input =
606
+ .placeholder = Vnesite komentar
607
+ pdfjs-editor-edit-comment-manager-cancel-button = Prekliči
608
+ pdfjs-editor-edit-comment-manager-save-button = Shrani
609
+
610
+ ## Edit a comment button in the editor toolbar
611
+
612
+ pdfjs-editor-edit-comment-button =
613
+ .title = Uredi komentar
614
+
617
615
  ## Main menu for adding/removing signatures
618
616
 
619
617
  pdfjs-editor-delete-signature-button1 =