@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
@@ -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 } byte)
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 } byte)
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 } byte)
123
115
  pdfjs-document-properties-title = Judul:
124
116
  pdfjs-document-properties-author = Penyusun:
125
117
  pdfjs-document-properties-subject = Subjek:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Tanggal Dimodifikasi:
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 = Pembuat:
137
125
  pdfjs-document-properties-producer = Pemroduksi PDF:
138
126
  pdfjs-document-properties-version = Versi PDF:
@@ -267,10 +255,6 @@ pdfjs-rendering-error = Galat terjadi saat merender laman.
267
255
 
268
256
  ## Annotations
269
257
 
270
- # Variables:
271
- # $date (Date) - the modification date of the annotation
272
- # $time (Time) - the modification time of the annotation
273
- pdfjs-annotation-date-string = { $date }, { $time }
274
258
  # .alt: This is used as a tooltip.
275
259
  # Variables:
276
260
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -294,9 +278,13 @@ pdfjs-web-fonts-disabled = Font web dinonaktifkan: tidak dapat menggunakan font
294
278
 
295
279
  pdfjs-editor-free-text-button =
296
280
  .title = Teks
281
+ pdfjs-editor-color-picker-free-text-input =
282
+ .title = Ubah warna teks
297
283
  pdfjs-editor-free-text-button-label = Teks
298
284
  pdfjs-editor-ink-button =
299
285
  .title = Gambar
286
+ pdfjs-editor-color-picker-ink-input =
287
+ .title = Ubah warna gambar
300
288
  pdfjs-editor-ink-button-label = Gambar
301
289
  pdfjs-editor-stamp-button =
302
290
  .title = Tambah atau edit gambar
@@ -308,6 +296,10 @@ pdfjs-highlight-floating-button1 =
308
296
  .title = Sorot
309
297
  .aria-label = Sorot
310
298
  pdfjs-highlight-floating-button-label = Sorot
299
+ pdfjs-comment-floating-button =
300
+ .title = Komentar
301
+ .aria-label = Komentar
302
+ pdfjs-comment-floating-button-label = Komentar
311
303
  pdfjs-editor-signature-button =
312
304
  .title = Tambahkan tanda tangan
313
305
  pdfjs-editor-signature-button-label = Tambahkan tanda tangan
@@ -370,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
370
362
  pdfjs-free-text2 =
371
363
  .aria-label = Editor Teks
372
364
  .default-content = Mulai mengetik…
373
- pdfjs-free-text =
374
- .aria-label = Editor Teks
375
- pdfjs-free-text-default-content = Mulai mengetik…
376
- pdfjs-ink =
377
- .aria-label = Editor Gambar
378
- pdfjs-ink-canvas =
379
- .aria-label = Gambar yang dibuat pengguna
380
365
 
381
366
  ## Alt-text dialog
382
367
 
383
368
  pdfjs-editor-alt-text-button-label = Teks alternatif
384
369
  pdfjs-editor-alt-text-edit-button =
385
370
  .aria-label = Edit teks alternatif
386
- pdfjs-editor-alt-text-edit-button-label = Edit teks alternatif
387
371
  pdfjs-editor-alt-text-dialog-label = Pilih opsi
388
372
  pdfjs-editor-alt-text-dialog-description = Teks alternatif membantu ketika orang tidak dapat melihat gambar atau ketika tidak termuat.
389
373
  pdfjs-editor-alt-text-add-description-label = Tambahkan deskripsi
@@ -403,14 +387,6 @@ pdfjs-editor-alt-text-button =
403
387
  ## Editor resizers
404
388
  ## This is used in an aria label to help to understand the role of the resizer.
405
389
 
406
- pdfjs-editor-resizer-label-top-left = Pojok kiri atas — ubah ukuran
407
- pdfjs-editor-resizer-label-top-middle = Tengah atas — ubah ukuran
408
- pdfjs-editor-resizer-label-top-right = Pojok kanan atas — ubah ukuran
409
- pdfjs-editor-resizer-label-middle-right = Kanan tengah — ubah ukuran
410
- pdfjs-editor-resizer-label-bottom-right = Pojok kanan bawah — ubah ukuran
411
- pdfjs-editor-resizer-label-bottom-middle = Tengah bawah — ubah ukuran
412
- pdfjs-editor-resizer-label-bottom-left = Pojok kiri bawah — ubah ukuran
413
- pdfjs-editor-resizer-label-middle-left = Kiri tengah — ubah ukuran
414
390
  pdfjs-editor-resizer-top-left =
415
391
  .aria-label = Pojok kiri atas — ubah ukuran
416
392
  pdfjs-editor-resizer-top-middle =
@@ -516,6 +492,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Tampilkan editor teks
516
492
  pdfjs-editor-alt-text-settings-show-dialog-description = Membantu Anda memastikan semua gambar Anda memiliki teks alternatif.
517
493
  pdfjs-editor-alt-text-settings-close-button = Tutup
518
494
 
495
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
496
+
497
+ pdfjs-editor-highlight-added-alert = Sorotan ditambahkan
498
+ pdfjs-editor-freetext-added-alert = Teks ditambahkan
499
+ pdfjs-editor-ink-added-alert = Gambar ditambahkan
500
+ pdfjs-editor-stamp-added-alert = Citra ditambahkan
501
+ pdfjs-editor-signature-added-alert = Tanda tangan ditambahkan
502
+
519
503
  ## "Annotations removed" bar
520
504
 
521
505
  pdfjs-editor-undo-bar-message-highlight = Sorotan dihapus
@@ -580,6 +564,8 @@ pdfjs-editor-add-signature-save-checkbox = Simpan tanda tangan
580
564
  pdfjs-editor-add-signature-save-warning-message = Anda telah mencapai batas 5 tanda tangan tersimpan. Hapus untuk menyimpan lebih banyak.
581
565
  pdfjs-editor-add-signature-image-upload-error-title = Tidak dapat mengunggah gambar
582
566
  pdfjs-editor-add-signature-image-upload-error-description = Periksa sambungan jaringan Anda atau coba gambar lain.
567
+ pdfjs-editor-add-signature-image-no-data-error-title = Tak bisa mengonversi citra ini menjadi tanda tangan
568
+ pdfjs-editor-add-signature-image-no-data-error-description = Coba unggah gambar lain.
583
569
  pdfjs-editor-add-signature-error-close-button = Tutup
584
570
 
585
571
  ## Dialog buttons
@@ -588,6 +574,26 @@ pdfjs-editor-add-signature-cancel-button = Batal
588
574
  pdfjs-editor-add-signature-add-button = Tambah
589
575
  pdfjs-editor-edit-signature-update-button = Perbarui
590
576
 
577
+ ## Edit a comment dialog
578
+
579
+ pdfjs-editor-edit-comment-actions-button-label = Aksi
580
+ pdfjs-editor-edit-comment-actions-button =
581
+ .title = Aksi
582
+ pdfjs-editor-edit-comment-close-button-label = Tutup
583
+ pdfjs-editor-edit-comment-close-button =
584
+ .title = Tutup
585
+ pdfjs-editor-edit-comment-actions-edit-button-label = Sunting
586
+ pdfjs-editor-edit-comment-actions-delete-button-label = Hapus
587
+ pdfjs-editor-edit-comment-manager-text-input =
588
+ .placeholder = Masukkan komentar Anda
589
+ pdfjs-editor-edit-comment-manager-cancel-button = Batal
590
+ pdfjs-editor-edit-comment-manager-save-button = Simpan
591
+
592
+ ## Edit a comment button in the editor toolbar
593
+
594
+ pdfjs-editor-edit-comment-button =
595
+ .title = Sunting komentar
596
+
591
597
  ## Main menu for adding/removing signatures
592
598
 
593
599
  pdfjs-editor-delete-signature-button1 =
@@ -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 } bæti)
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 } bytes)
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 } bytes)
123
115
  pdfjs-document-properties-title = Titill:
124
116
  pdfjs-document-properties-author = Hönnuður:
125
117
  pdfjs-document-properties-subject = Efni:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Dags breytingar:
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 = Höfundur:
137
125
  pdfjs-document-properties-producer = PDF framleiðandi:
138
126
  pdfjs-document-properties-version = PDF útgáfa:
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Upp kom villa við að birta síðuna.
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
@@ -360,20 +344,12 @@ pdfjs-editor-add-saved-signature-button =
360
344
  pdfjs-free-text2 =
361
345
  .aria-label = Textaritill
362
346
  .default-content = Byrjaðu að skrifa…
363
- pdfjs-free-text =
364
- .aria-label = Textaritill
365
- pdfjs-free-text-default-content = Byrjaðu að skrifa…
366
- pdfjs-ink =
367
- .aria-label = Teikniritill
368
- pdfjs-ink-canvas =
369
- .aria-label = Mynd gerð af notanda
370
347
 
371
348
  ## Alt-text dialog
372
349
 
373
350
  pdfjs-editor-alt-text-button-label = Alt-varatexti
374
351
  pdfjs-editor-alt-text-edit-button =
375
352
  .aria-label = Breyta alt-myndatexta
376
- pdfjs-editor-alt-text-edit-button-label = Breyta alt-varatexta
377
353
  pdfjs-editor-alt-text-dialog-label = Veldu valkost
378
354
  pdfjs-editor-alt-text-dialog-description = Alt-varatexti (auka-myndatexti) hjálpar þegar fólk getur ekki séð myndina eða þegar hún hleðst ekki inn.
379
355
  pdfjs-editor-alt-text-add-description-label = Bættu við lýsingu
@@ -393,14 +369,6 @@ pdfjs-editor-alt-text-button =
393
369
  ## Editor resizers
394
370
  ## This is used in an aria label to help to understand the role of the resizer.
395
371
 
396
- pdfjs-editor-resizer-label-top-left = Efst í vinstra horni - breyta stærð
397
- pdfjs-editor-resizer-label-top-middle = Efst á miðju - breyta stærð
398
- pdfjs-editor-resizer-label-top-right = Efst í hægra horni - breyta stærð
399
- pdfjs-editor-resizer-label-middle-right = Miðja til hægri - breyta stærð
400
- pdfjs-editor-resizer-label-bottom-right = Neðst í hægra horni - breyta stærð
401
- pdfjs-editor-resizer-label-bottom-middle = Neðst á miðju - breyta stærð
402
- pdfjs-editor-resizer-label-bottom-left = Neðst í vinstra horni - breyta stærð
403
- pdfjs-editor-resizer-label-middle-left = Miðja til vinstri - breyta stærð
404
372
  pdfjs-editor-resizer-top-left =
405
373
  .aria-label = Efst í vinstra horni - breyta stærð
406
374
  pdfjs-editor-resizer-top-middle =
@@ -506,6 +474,11 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Sýna alt-myndatextari
506
474
  pdfjs-editor-alt-text-settings-show-dialog-description = Hjálpar þér að tryggja að allar myndirnar þínar séu með alt-myndatexta.
507
475
  pdfjs-editor-alt-text-settings-close-button = Loka
508
476
 
477
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
478
+
479
+ pdfjs-editor-stamp-added-alert = Mynd bætt við
480
+ pdfjs-editor-signature-added-alert = Undirritun bætt við
481
+
509
482
  ## "Annotations removed" bar
510
483
 
511
484
  pdfjs-editor-undo-bar-message-highlight = Áherslulitun fjarlægð
@@ -574,6 +547,8 @@ pdfjs-editor-add-signature-save-checkbox = Vista undirskrift
574
547
  pdfjs-editor-add-signature-save-warning-message = Þú hefur náð hámarki 5 vistaðra undirskrifta. Fjarlægðu eina til að geta vistað fleiri.
575
548
  pdfjs-editor-add-signature-image-upload-error-title = Ekki tókst að senda inn mynd
576
549
  pdfjs-editor-add-signature-image-upload-error-description = Athugaðu nettenginguna þína eða prófaðu aðra mynd.
550
+ pdfjs-editor-add-signature-image-no-data-error-title = Get ekki breytt þessari mynd í undirskrift
551
+ pdfjs-editor-add-signature-image-no-data-error-description = Reyndu að senda inn aðra mynd.
577
552
  pdfjs-editor-add-signature-error-close-button = Loka
578
553
 
579
554
  ## Dialog buttons
@@ -582,6 +557,26 @@ pdfjs-editor-add-signature-cancel-button = Hætta við
582
557
  pdfjs-editor-add-signature-add-button = Bæta við
583
558
  pdfjs-editor-edit-signature-update-button = Uppfæra
584
559
 
560
+ ## Edit a comment dialog
561
+
562
+ pdfjs-editor-edit-comment-actions-button-label = Aðgerðir
563
+ pdfjs-editor-edit-comment-actions-button =
564
+ .title = Aðgerðir
565
+ pdfjs-editor-edit-comment-close-button-label = Loka
566
+ pdfjs-editor-edit-comment-close-button =
567
+ .title = Loka
568
+ pdfjs-editor-edit-comment-actions-edit-button-label = Breyta
569
+ pdfjs-editor-edit-comment-actions-delete-button-label = Eyða
570
+ pdfjs-editor-edit-comment-manager-text-input =
571
+ .placeholder = Settu inn athugasemdina þína
572
+ pdfjs-editor-edit-comment-manager-cancel-button = Hætta við
573
+ pdfjs-editor-edit-comment-manager-save-button = Vista
574
+
575
+ ## Edit a comment button in the editor toolbar
576
+
577
+ pdfjs-editor-edit-comment-button =
578
+ .title = Breyta athugasemd
579
+
585
580
  ## Main menu for adding/removing signatures
586
581
 
587
582
  pdfjs-editor-delete-signature-button1 =
@@ -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 } byte)
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 } byte)
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 } byte)
123
115
  pdfjs-document-properties-title = Titolo:
124
116
  pdfjs-document-properties-author = Autore:
125
117
  pdfjs-document-properties-subject = Oggetto:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data modifica:
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 = Autore originale:
137
125
  pdfjs-document-properties-producer = Produttore PDF:
138
126
  pdfjs-document-properties-version = Versione PDF:
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Si è verificato un errore durante il rendering della pa
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
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
386
370
  pdfjs-free-text2 =
387
371
  .aria-label = Editor di testo
388
372
  .default-content = Inizia a digitare…
389
- pdfjs-free-text =
390
- .aria-label = Editor di testo
391
- pdfjs-free-text-default-content = Inizia a digitare…
392
- pdfjs-ink =
393
- .aria-label = Editor disegni
394
- pdfjs-ink-canvas =
395
- .aria-label = Immagine creata dall’utente
396
373
 
397
374
  ## Alt-text dialog
398
375
 
399
376
  pdfjs-editor-alt-text-button-label = Testo alternativo
400
377
  pdfjs-editor-alt-text-edit-button =
401
378
  .aria-label = Modifica testo alternativo
402
- pdfjs-editor-alt-text-edit-button-label = Modifica testo alternativo
403
379
  pdfjs-editor-alt-text-dialog-label = Scegli un’opzione
404
380
  pdfjs-editor-alt-text-dialog-description = Il testo alternativo (“alt text”) aiuta quando le persone non possono vedere l’immagine o quando l’immagine non viene caricata.
405
381
  pdfjs-editor-alt-text-add-description-label = Aggiungi una descrizione
@@ -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 = Angolo in alto a sinistra — ridimensiona
423
- pdfjs-editor-resizer-label-top-middle = Lato superiore nel mezzo — ridimensiona
424
- pdfjs-editor-resizer-label-top-right = Angolo in alto a destra — ridimensiona
425
- pdfjs-editor-resizer-label-middle-right = Lato destro nel mezzo — ridimensiona
426
- pdfjs-editor-resizer-label-bottom-right = Angolo in basso a destra — ridimensiona
427
- pdfjs-editor-resizer-label-bottom-middle = Lato inferiore nel mezzo — ridimensiona
428
- pdfjs-editor-resizer-label-bottom-left = Angolo in basso a sinistra — ridimensiona
429
- pdfjs-editor-resizer-label-middle-left = Lato sinistro nel mezzo — ridimensiona
430
398
  pdfjs-editor-resizer-top-left =
431
399
  .aria-label = Angolo in alto a sinistra — ridimensiona
432
400
  pdfjs-editor-resizer-top-middle =
@@ -651,4 +619,3 @@ pdfjs-editor-add-signature-edit-button-label = Modifica descrizione
651
619
  ## Edit signature description dialog
652
620
 
653
621
  pdfjs-editor-edit-signature-dialog-title = Modifica descrizione
654
-
@@ -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 } 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 } 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 のバージョン:
@@ -267,10 +255,6 @@ pdfjs-rendering-error = ページのレンダリング中にエラーが発生
267
255
 
268
256
  ## Annotations
269
257
 
270
- # Variables:
271
- # $date (Date) - the modification date of the annotation
272
- # $time (Time) - the modification time of the annotation
273
- pdfjs-annotation-date-string = { $date }, { $time }
274
258
  # .alt: This is used as a tooltip.
275
259
  # Variables:
276
260
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -294,9 +278,13 @@ pdfjs-web-fonts-disabled = ウェブフォントが無効になっています:
294
278
 
295
279
  pdfjs-editor-free-text-button =
296
280
  .title = フリーテキスト注釈を追加します
281
+ pdfjs-editor-color-picker-free-text-input =
282
+ .title = テキスト色を変更します
297
283
  pdfjs-editor-free-text-button-label = フリーテキスト注釈
298
284
  pdfjs-editor-ink-button =
299
285
  .title = インク注釈を追加します
286
+ pdfjs-editor-color-picker-ink-input =
287
+ .title = インク色を変更します
300
288
  pdfjs-editor-ink-button-label = インク注釈
301
289
  pdfjs-editor-stamp-button =
302
290
  .title = 画像を追加または編集します
@@ -305,9 +293,13 @@ pdfjs-editor-highlight-button =
305
293
  .title = 強調します
306
294
  pdfjs-editor-highlight-button-label = 強調
307
295
  pdfjs-highlight-floating-button1 =
308
- .title = 強調
296
+ .title = 強調します
309
297
  .aria-label = 強調します
310
298
  pdfjs-highlight-floating-button-label = 強調
299
+ pdfjs-comment-floating-button =
300
+ .title = コメントを追加します
301
+ .aria-label = コメントを追加します
302
+ pdfjs-comment-floating-button-label = コメント
311
303
  pdfjs-editor-signature-button =
312
304
  .title = 署名を追加します
313
305
  pdfjs-editor-signature-button-label = 署名を追加
@@ -370,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
370
362
  pdfjs-free-text2 =
371
363
  .aria-label = フリーテキスト注釈エディター
372
364
  .default-content = テキストを入力してください...
373
- pdfjs-free-text =
374
- .aria-label = フリーテキスト注釈エディター
375
- pdfjs-free-text-default-content = テキストを入力してください...
376
- pdfjs-ink =
377
- .aria-label = インク注釈エディター
378
- pdfjs-ink-canvas =
379
- .aria-label = ユーザー作成画像
380
365
 
381
366
  ## Alt-text dialog
382
367
 
383
368
  pdfjs-editor-alt-text-button-label = 代替テキスト
384
369
  pdfjs-editor-alt-text-edit-button =
385
370
  .aria-label = 代替テキストを編集
386
- pdfjs-editor-alt-text-edit-button-label = 代替テキストを編集
387
371
  pdfjs-editor-alt-text-dialog-label = オプションの選択
388
372
  pdfjs-editor-alt-text-dialog-description = 代替テキストは画像が表示されない場合や読み込まれない場合にユーザーの助けになります。
389
373
  pdfjs-editor-alt-text-add-description-label = 説明を追加
@@ -403,14 +387,6 @@ pdfjs-editor-alt-text-button =
403
387
  ## Editor resizers
404
388
  ## This is used in an aria label to help to understand the role of the resizer.
405
389
 
406
- pdfjs-editor-resizer-label-top-left = 左上隅 — サイズ変更
407
- pdfjs-editor-resizer-label-top-middle = 上中央 — サイズ変更
408
- pdfjs-editor-resizer-label-top-right = 右上隅 — サイズ変更
409
- pdfjs-editor-resizer-label-middle-right = 右中央 — サイズ変更
410
- pdfjs-editor-resizer-label-bottom-right = 右下隅 — サイズ変更
411
- pdfjs-editor-resizer-label-bottom-middle = 下中央 — サイズ変更
412
- pdfjs-editor-resizer-label-bottom-left = 左下隅 — サイズ変更
413
- pdfjs-editor-resizer-label-middle-left = 左中央 — サイズ変更
414
390
  pdfjs-editor-resizer-top-left =
415
391
  .aria-label = 左上隅 — サイズ変更
416
392
  pdfjs-editor-resizer-top-middle =
@@ -588,6 +564,8 @@ pdfjs-editor-add-signature-save-checkbox = 署名を保存
588
564
  pdfjs-editor-add-signature-save-warning-message = 保存された署名が上限の 5 個に達しました。さらに保存するにはいずれかを削除してください。
589
565
  pdfjs-editor-add-signature-image-upload-error-title = 画像をアップロードできません
590
566
  pdfjs-editor-add-signature-image-upload-error-description = ネットワーク接続を確認するか別の画像を試してください。
567
+ pdfjs-editor-add-signature-image-no-data-error-title = この画像は署名に変換できません
568
+ pdfjs-editor-add-signature-image-no-data-error-description = 別の画像をアップロードしてください。
591
569
  pdfjs-editor-add-signature-error-close-button = 閉じる
592
570
 
593
571
  ## Dialog buttons
@@ -596,6 +574,26 @@ pdfjs-editor-add-signature-cancel-button = キャンセル
596
574
  pdfjs-editor-add-signature-add-button = 追加
597
575
  pdfjs-editor-edit-signature-update-button = 更新
598
576
 
577
+ ## Edit a comment dialog
578
+
579
+ pdfjs-editor-edit-comment-actions-button-label = 操作
580
+ pdfjs-editor-edit-comment-actions-button =
581
+ .title = 操作
582
+ pdfjs-editor-edit-comment-close-button-label = 閉じる
583
+ pdfjs-editor-edit-comment-close-button =
584
+ .title = 閉じる
585
+ pdfjs-editor-edit-comment-actions-edit-button-label = 編集
586
+ pdfjs-editor-edit-comment-actions-delete-button-label = 削除
587
+ pdfjs-editor-edit-comment-manager-text-input =
588
+ .placeholder = コメントを入力してください
589
+ pdfjs-editor-edit-comment-manager-cancel-button = キャンセル
590
+ pdfjs-editor-edit-comment-manager-save-button = 保存
591
+
592
+ ## Edit a comment button in the editor toolbar
593
+
594
+ pdfjs-editor-edit-comment-button =
595
+ .title = Edit comment
596
+
599
597
  ## Main menu for adding/removing signatures
600
598
 
601
599
  pdfjs-editor-delete-signature-button1 =
@@ -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
@@ -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 =
@@ -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 } yibiten)
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 } KAṬ ({ $size_b } ibiten)
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 } MAṬ ({ $size_b } iṭamḍanen)
123
115
  pdfjs-document-properties-title = Azwel:
124
116
  pdfjs-document-properties-author = Ameskar:
125
117
  pdfjs-document-properties-subject = Amgay:
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Azemz n usnifel:
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 = Yerna-t:
137
125
  pdfjs-document-properties-producer = Afecku n uselket PDF:
138
126
  pdfjs-document-properties-version = Lqem PDF:
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Teḍra-d tuccḍa deg uskan n usebter.
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
@@ -378,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
378
362
  pdfjs-free-text2 =
379
363
  .aria-label = Amaẓrag n uḍris
380
364
  .default-content = Bdu tira…
381
- pdfjs-free-text =
382
- .aria-label = Amaẓrag n uḍris
383
- pdfjs-free-text-default-content = Bdu tira...
384
- pdfjs-ink =
385
- .aria-label = Amaẓrag n usuneɣ
386
- pdfjs-ink-canvas =
387
- .aria-label = Tugna yettwarnan sɣur useqdac
388
365
 
389
366
  ## Alt-text dialog
390
367
 
391
368
  pdfjs-editor-alt-text-button-label = Aḍris amaskal
392
369
  pdfjs-editor-alt-text-edit-button =
393
370
  .aria-label = Ẓreg aḍris amaskal
394
- pdfjs-editor-alt-text-edit-button-label = Ẓreg aḍris amaskal
395
371
  pdfjs-editor-alt-text-dialog-label = Fren taxtirt
396
372
  pdfjs-editor-alt-text-dialog-description = Aḍris amaskal yettallel mi ara yili imdanen ur ttwalin ara tugna neɣ mi ara yili ur d-tuli ara.
397
373
  pdfjs-editor-alt-text-add-description-label = Rnu aglam
@@ -411,14 +387,6 @@ pdfjs-editor-alt-text-button =
411
387
  ## Editor resizers
412
388
  ## This is used in an aria label to help to understand the role of the resizer.
413
389
 
414
- pdfjs-editor-resizer-label-top-left = Tiɣmert n ufella n zelmeḍ — semsawi teɣzi
415
- pdfjs-editor-resizer-label-top-middle = Talemmat n ufella — semsawi teɣzi
416
- pdfjs-editor-resizer-label-top-right = Tiɣmert n ufella n yeffus — semsawi teɣzi
417
- pdfjs-editor-resizer-label-middle-right = Talemmast tayeffust — semsawi teɣzi
418
- pdfjs-editor-resizer-label-bottom-right = Tiɣmert n wadda n yeffus — semsawi teɣzi
419
- pdfjs-editor-resizer-label-bottom-middle = Talemmat n wadda — semsawi teɣzi
420
- pdfjs-editor-resizer-label-bottom-left = Tiɣmert n wadda n zelmeḍ — semsawi teɣzi
421
- pdfjs-editor-resizer-label-middle-left = Talemmast tazelmdaḍt — semsawi teɣzi
422
390
  pdfjs-editor-resizer-top-left =
423
391
  .aria-label = Tiɣmert n ufella n zelmeḍ — semsawi teɣzi
424
392
  pdfjs-editor-resizer-top-middle =