@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) } МБ ({ $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
@@ -302,6 +286,8 @@ pdfjs-web-fonts-disabled = Веб қаріптері сөндірілген: қ
302
286
 
303
287
  pdfjs-editor-free-text-button =
304
288
  .title = Мәтін
289
+ pdfjs-editor-color-picker-free-text-input =
290
+ .title = Мәтін түсін өзгерту
305
291
  pdfjs-editor-free-text-button-label = Мәтін
306
292
  pdfjs-editor-ink-button =
307
293
  .title = Сурет салу
@@ -316,12 +302,21 @@ pdfjs-highlight-floating-button1 =
316
302
  .title = Ерекшелеу
317
303
  .aria-label = Ерекшелеу
318
304
  pdfjs-highlight-floating-button-label = Ерекшелеу
305
+ pdfjs-comment-floating-button =
306
+ .title = Түсіндірме
307
+ .aria-label = Түсіндірме
308
+ pdfjs-comment-floating-button-label = Түсіндірме
319
309
  pdfjs-editor-signature-button =
320
310
  .title = Қолтаңбаны қосу
321
311
  pdfjs-editor-signature-button-label = Қолтаңбаны қосу
322
312
 
323
313
  ## Default editor aria labels
324
314
 
315
+ # Used when a signature editor is selected/hovered.
316
+ # Variables:
317
+ # $description (String) - a string describing/labeling the signature.
318
+ pdfjs-editor-signature-editor1 =
319
+ .aria-description = Қолтаңба түзеткіші: { $description }
325
320
  pdfjs-editor-stamp-editor =
326
321
  .aria-label = Сурет редакторы
327
322
 
@@ -367,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
367
362
  pdfjs-free-text2 =
368
363
  .aria-label = Мәтін түзеткіші
369
364
  .default-content = Теріп бастаңыз…
370
- pdfjs-free-text =
371
- .aria-label = Мәтін түзеткіші
372
- pdfjs-free-text-default-content = Теруді бастау…
373
- pdfjs-ink =
374
- .aria-label = Сурет түзеткіші
375
- pdfjs-ink-canvas =
376
- .aria-label = Пайдаланушы жасаған сурет
377
365
 
378
366
  ## Alt-text dialog
379
367
 
380
368
  pdfjs-editor-alt-text-button-label = Балама мәтін
381
369
  pdfjs-editor-alt-text-edit-button =
382
370
  .aria-label = Балама мәтінді өңдеу
383
- pdfjs-editor-alt-text-edit-button-label = Балама мәтінді өңдеу
384
371
  pdfjs-editor-alt-text-dialog-label = Опцияны таңдау
385
372
  pdfjs-editor-alt-text-dialog-description = Балама мәтін адамдар суретті көре алмағанда немесе ол жүктелмегенде көмектеседі.
386
373
  pdfjs-editor-alt-text-add-description-label = Сипаттаманы қосу
@@ -400,14 +387,6 @@ pdfjs-editor-alt-text-button =
400
387
  ## Editor resizers
401
388
  ## This is used in an aria label to help to understand the role of the resizer.
402
389
 
403
- pdfjs-editor-resizer-label-top-left = Жоғарғы сол жақ бұрыш — өлшемін өзгерту
404
- pdfjs-editor-resizer-label-top-middle = Жоғарғы ортасы — өлшемін өзгерту
405
- pdfjs-editor-resizer-label-top-right = Жоғарғы оң жақ бұрыш — өлшемін өзгерту
406
- pdfjs-editor-resizer-label-middle-right = Ортаңғы оң жақ — өлшемін өзгерту
407
- pdfjs-editor-resizer-label-bottom-right = Төменгі оң жақ бұрыш — өлшемін өзгерту
408
- pdfjs-editor-resizer-label-bottom-middle = Төменгі ортасы — өлшемін өзгерту
409
- pdfjs-editor-resizer-label-bottom-left = Төменгі сол жақ бұрыш — өлшемін өзгерту
410
- pdfjs-editor-resizer-label-middle-left = Ортаңғы сол жақ — өлшемін өзгерту
411
390
  pdfjs-editor-resizer-top-left =
412
391
  .aria-label = Жоғарғы сол жақ бұрыш — өлшемін өзгерту
413
392
  pdfjs-editor-resizer-top-middle =
@@ -596,6 +575,26 @@ pdfjs-editor-add-signature-cancel-button = Бас тарту
596
575
  pdfjs-editor-add-signature-add-button = Қосу
597
576
  pdfjs-editor-edit-signature-update-button = Жаңарту
598
577
 
578
+ ## Edit a comment dialog
579
+
580
+ pdfjs-editor-edit-comment-actions-button-label = Әрекеттер
581
+ pdfjs-editor-edit-comment-actions-button =
582
+ .title = Әрекеттер
583
+ pdfjs-editor-edit-comment-close-button-label = Жабу
584
+ pdfjs-editor-edit-comment-close-button =
585
+ .title = Жабу
586
+ pdfjs-editor-edit-comment-actions-edit-button-label = Түзету
587
+ pdfjs-editor-edit-comment-actions-delete-button-label = Өшіру
588
+ pdfjs-editor-edit-comment-manager-text-input =
589
+ .placeholder = Пікіріңізді енгізіңіз
590
+ pdfjs-editor-edit-comment-manager-cancel-button = Бас тарту
591
+ pdfjs-editor-edit-comment-manager-save-button = Сақтау
592
+
593
+ ## Edit a comment button in the editor toolbar
594
+
595
+ pdfjs-editor-edit-comment-button =
596
+ .title = Пікірді түзету
597
+
599
598
  ## Main menu for adding/removing signatures
600
599
 
601
600
  pdfjs-editor-delete-signature-button1 =
@@ -71,24 +71,12 @@ pdfjs-document-properties-button =
71
71
  pdfjs-document-properties-button-label = លក្ខណ​សម្បត្តិ​ឯកសារ…
72
72
  pdfjs-document-properties-file-name = ឈ្មោះ​ឯកសារ៖
73
73
  pdfjs-document-properties-file-size = ទំហំ​ឯកសារ៖
74
- # Variables:
75
- # $size_kb (Number) - the PDF file size in kilobytes
76
- # $size_b (Number) - the PDF file size in bytes
77
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } បៃ)
78
- # Variables:
79
- # $size_mb (Number) - the PDF file size in megabytes
80
- # $size_b (Number) - the PDF file size in bytes
81
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } បៃ)
82
74
  pdfjs-document-properties-title = ចំណងជើង៖
83
75
  pdfjs-document-properties-author = អ្នក​និពន្ធ៖
84
76
  pdfjs-document-properties-subject = ប្រធានបទ៖
85
77
  pdfjs-document-properties-keywords = ពាក្យ​គន្លឹះ៖
86
78
  pdfjs-document-properties-creation-date = កាលបរិច្ឆេទ​បង្កើត៖
87
79
  pdfjs-document-properties-modification-date = កាលបរិច្ឆេទ​កែប្រែ៖
88
- # Variables:
89
- # $date (Date) - the creation/modification date of the PDF file
90
- # $time (Time) - the creation/modification time of the PDF file
91
- pdfjs-document-properties-date-string = { $date }, { $time }
92
80
  pdfjs-document-properties-creator = អ្នក​បង្កើត៖
93
81
  pdfjs-document-properties-producer = កម្មវិធី​បង្កើត PDF ៖
94
82
  pdfjs-document-properties-version = កំណែ PDF ៖
@@ -71,24 +71,12 @@ pdfjs-document-properties-button =
71
71
  pdfjs-document-properties-button-label = ಡಾಕ್ಯುಮೆಂಟ್‌ ಗುಣಗಳು...
72
72
  pdfjs-document-properties-file-name = ಕಡತದ ಹೆಸರು:
73
73
  pdfjs-document-properties-file-size = ಕಡತದ ಗಾತ್ರ:
74
- # Variables:
75
- # $size_kb (Number) - the PDF file size in kilobytes
76
- # $size_b (Number) - the PDF file size in bytes
77
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } ಬೈಟ್‍ಗಳು)
78
- # Variables:
79
- # $size_mb (Number) - the PDF file size in megabytes
80
- # $size_b (Number) - the PDF file size in bytes
81
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } ಬೈಟ್‍ಗಳು)
82
74
  pdfjs-document-properties-title = ಶೀರ್ಷಿಕೆ:
83
75
  pdfjs-document-properties-author = ಕರ್ತೃ:
84
76
  pdfjs-document-properties-subject = ವಿಷಯ:
85
77
  pdfjs-document-properties-keywords = ಮುಖ್ಯಪದಗಳು:
86
78
  pdfjs-document-properties-creation-date = ರಚಿಸಿದ ದಿನಾಂಕ:
87
79
  pdfjs-document-properties-modification-date = ಮಾರ್ಪಡಿಸಲಾದ ದಿನಾಂಕ:
88
- # Variables:
89
- # $date (Date) - the creation/modification date of the PDF file
90
- # $time (Time) - the creation/modification time of the PDF file
91
- pdfjs-document-properties-date-string = { $date }, { $time }
92
80
  pdfjs-document-properties-creator = ರಚಿಸಿದವರು:
93
81
  pdfjs-document-properties-producer = PDF ಉತ್ಪಾದಕ:
94
82
  pdfjs-document-properties-version = PDF ಆವೃತ್ತಿ:
@@ -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
@@ -378,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
378
362
  pdfjs-free-text2 =
379
363
  .aria-label = 텍스트 편집기
380
364
  .default-content = 입력을 시작하세요…
381
- pdfjs-free-text =
382
- .aria-label = 텍스트 편집기
383
- pdfjs-free-text-default-content = 입력하세요…
384
- pdfjs-ink =
385
- .aria-label = 그리기 편집기
386
- pdfjs-ink-canvas =
387
- .aria-label = 사용자 생성 이미지
388
365
 
389
366
  ## Alt-text dialog
390
367
 
391
368
  pdfjs-editor-alt-text-button-label = 대체 텍스트
392
369
  pdfjs-editor-alt-text-edit-button =
393
370
  .aria-label = 대체 텍스트 편집
394
- pdfjs-editor-alt-text-edit-button-label = 대체 텍스트 편집
395
371
  pdfjs-editor-alt-text-dialog-label = 옵션을 선택하세요
396
372
  pdfjs-editor-alt-text-dialog-description = 대체 텍스트는 사람들이 이미지를 볼 수 없거나 이미지가 로드되지 않을 때 도움이 됩니다.
397
373
  pdfjs-editor-alt-text-add-description-label = 설명 추가
@@ -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 = 왼쪽 위 — 크기 조정
415
- pdfjs-editor-resizer-label-top-middle = 가운데 위 - 크기 조정
416
- pdfjs-editor-resizer-label-top-right = 오른쪽 위 — 크기 조정
417
- pdfjs-editor-resizer-label-middle-right = 오른쪽 가운데 — 크기 조정
418
- pdfjs-editor-resizer-label-bottom-right = 오른쪽 아래 - 크기 조정
419
- pdfjs-editor-resizer-label-bottom-middle = 가운데 아래 — 크기 조정
420
- pdfjs-editor-resizer-label-bottom-left = 왼쪽 아래 - 크기 조정
421
- pdfjs-editor-resizer-label-middle-left = 왼쪽 가운데 — 크기 조정
422
390
  pdfjs-editor-resizer-top-left =
423
391
  .aria-label = 왼쪽 위 — 크기 조정
424
392
  pdfjs-editor-resizer-top-middle =
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Propietæ do documento…
90
90
  pdfjs-document-properties-file-name = Nomme schedaio:
91
91
  pdfjs-document-properties-file-size = Dimenscion schedaio:
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 } byte)
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 } byte)
100
92
  pdfjs-document-properties-title = Titolo:
101
93
  pdfjs-document-properties-author = Aoto:
102
94
  pdfjs-document-properties-subject = Ogetto:
103
95
  pdfjs-document-properties-keywords = Paròlle ciave:
104
96
  pdfjs-document-properties-creation-date = Dæta creaçion:
105
97
  pdfjs-document-properties-modification-date = Dæta cangiamento:
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 = Aotô originale:
111
99
  pdfjs-document-properties-producer = Produtô PDF:
112
100
  pdfjs-document-properties-version = Verscion PDF:
@@ -98,24 +98,12 @@ pdfjs-document-properties-button =
98
98
  pdfjs-document-properties-button-label = ຄຸນສົມບັດເອກະສານ...
99
99
  pdfjs-document-properties-file-name = ຊື່ໄຟລ໌:
100
100
  pdfjs-document-properties-file-size = ຂະຫນາດໄຟລ໌:
101
- # Variables:
102
- # $size_kb (Number) - the PDF file size in kilobytes
103
- # $size_b (Number) - the PDF file size in bytes
104
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } ໄບຕ໌)
105
- # Variables:
106
- # $size_mb (Number) - the PDF file size in megabytes
107
- # $size_b (Number) - the PDF file size in bytes
108
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } ໄບຕ໌)
109
101
  pdfjs-document-properties-title = ຫົວຂໍ້:
110
102
  pdfjs-document-properties-author = ຜູ້ຂຽນ:
111
103
  pdfjs-document-properties-subject = ຫົວຂໍ້:
112
104
  pdfjs-document-properties-keywords = ຄໍາທີ່ຕ້ອງການຄົ້ນຫາ:
113
105
  pdfjs-document-properties-creation-date = ວັນທີສ້າງ:
114
106
  pdfjs-document-properties-modification-date = ວັນທີແກ້ໄຂ:
115
- # Variables:
116
- # $date (Date) - the creation/modification date of the PDF file
117
- # $time (Time) - the creation/modification time of the PDF file
118
- pdfjs-document-properties-date-string = { $date }, { $time }
119
107
  pdfjs-document-properties-creator = ຜູ້ສ້າງ:
120
108
  pdfjs-document-properties-producer = ຜູ້ຜະລິດ PDF:
121
109
  pdfjs-document-properties-version = ເວີຊັ່ນ PDF:
@@ -243,10 +231,6 @@ pdfjs-rendering-error = ມີຂໍ້ຜິດພາດເກີດຂື້
243
231
 
244
232
  ## Annotations
245
233
 
246
- # Variables:
247
- # $date (Date) - the modification date of the annotation
248
- # $time (Time) - the modification time of the annotation
249
- pdfjs-annotation-date-string = { $date }, { $time }
250
234
  # .alt: This is used as a tooltip.
251
235
  # Variables:
252
236
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -280,10 +264,3 @@ pdfjs-editor-free-text-size-input = ຂະຫນາດ
280
264
  pdfjs-editor-ink-color-input = ສີ
281
265
  pdfjs-editor-ink-thickness-input = ຄວາມຫນາ
282
266
  pdfjs-editor-ink-opacity-input = ຄວາມໂປ່ງໃສ
283
- pdfjs-free-text =
284
- .aria-label = ຕົວແກ້ໄຂຂໍ້ຄວາມ
285
- pdfjs-free-text-default-content = ເລີ່ມພິມ...
286
- pdfjs-ink =
287
- .aria-label = ຕົວແກ້ໄຂຮູບແຕ້ມ
288
- pdfjs-ink-canvas =
289
- .aria-label = ຮູບພາບທີ່ຜູ້ໃຊ້ສ້າງ
@@ -92,24 +92,12 @@ pdfjs-document-properties-button =
92
92
  pdfjs-document-properties-button-label = Dokumento savybės…
93
93
  pdfjs-document-properties-file-name = Failo vardas:
94
94
  pdfjs-document-properties-file-size = Failo dydis:
95
- # Variables:
96
- # $size_kb (Number) - the PDF file size in kilobytes
97
- # $size_b (Number) - the PDF file size in bytes
98
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } B)
99
- # Variables:
100
- # $size_mb (Number) - the PDF file size in megabytes
101
- # $size_b (Number) - the PDF file size in bytes
102
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } B)
103
95
  pdfjs-document-properties-title = Antraštė:
104
96
  pdfjs-document-properties-author = Autorius:
105
97
  pdfjs-document-properties-subject = Tema:
106
98
  pdfjs-document-properties-keywords = Reikšminiai žodžiai:
107
99
  pdfjs-document-properties-creation-date = Sukūrimo data:
108
100
  pdfjs-document-properties-modification-date = Modifikavimo data:
109
- # Variables:
110
- # $date (Date) - the creation/modification date of the PDF file
111
- # $time (Time) - the creation/modification time of the PDF file
112
- pdfjs-document-properties-date-string = { $date }, { $time }
113
101
  pdfjs-document-properties-creator = Kūrėjas:
114
102
  pdfjs-document-properties-producer = PDF generatorius:
115
103
  pdfjs-document-properties-version = PDF versija:
@@ -237,10 +225,6 @@ pdfjs-rendering-error = Atvaizduojant puslapį įvyko klaida.
237
225
 
238
226
  ## Annotations
239
227
 
240
- # Variables:
241
- # $date (Date) - the modification date of the annotation
242
- # $time (Time) - the modification time of the annotation
243
- pdfjs-annotation-date-string = { $date }, { $time }
244
228
  # .alt: This is used as a tooltip.
245
229
  # Variables:
246
230
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Dokumenta īstatiejumi…
90
90
  pdfjs-document-properties-file-name = Faila nūsaukums:
91
91
  pdfjs-document-properties-file-size = Faila izmārs:
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 } biti)
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 } biti)
100
92
  pdfjs-document-properties-title = Nūsaukums:
101
93
  pdfjs-document-properties-author = Autors:
102
94
  pdfjs-document-properties-subject = Tema:
103
95
  pdfjs-document-properties-keywords = Atslāgi vuordi:
104
96
  pdfjs-document-properties-creation-date = Izveides datums:
105
97
  pdfjs-document-properties-modification-date = lobuošonys datums:
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 = Radeituojs:
111
99
  pdfjs-document-properties-producer = PDF producents:
112
100
  pdfjs-document-properties-version = PDF verseja:
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Dokumenta iestatījumi…
90
90
  pdfjs-document-properties-file-name = Faila nosaukums:
91
91
  pdfjs-document-properties-file-size = Faila izmērs:
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 } biti)
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 } biti)
100
92
  pdfjs-document-properties-title = Nosaukums:
101
93
  pdfjs-document-properties-author = Autors:
102
94
  pdfjs-document-properties-subject = Tēma:
103
95
  pdfjs-document-properties-keywords = Atslēgas vārdi:
104
96
  pdfjs-document-properties-creation-date = Izveides datums:
105
97
  pdfjs-document-properties-modification-date = LAbošanas datums:
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 = Radītājs:
111
99
  pdfjs-document-properties-producer = PDF producents:
112
100
  pdfjs-document-properties-version = PDF versija:
@@ -11,13 +11,6 @@ pdfjs-zoom-select =
11
11
  .title = Nasa´a ka´nu/Nasa´a luli
12
12
  pdfjs-open-file-button-label = Síne
13
13
 
14
- ## Document properties dialog
15
-
16
- # Variables:
17
- # $date (Date) - the creation/modification date of the PDF file
18
- # $time (Time) - the creation/modification time of the PDF file
19
- pdfjs-document-properties-date-string = { $date }, { $time }
20
-
21
14
  ## Variables:
22
15
  ## $width (Number) - the width of the (current) page
23
16
  ## $height (Number) - the height of the (current) page
@@ -50,13 +43,6 @@ pdfjs-findbar-button-label = Nánuku
50
43
  # $scale (Number) - percent value for page scale
51
44
  pdfjs-page-scale-percent = { $scale }%
52
45
 
53
- ## Annotations
54
-
55
- # Variables:
56
- # $date (Date) - the modification date of the annotation
57
- # $time (Time) - the modification time of the annotation
58
- pdfjs-annotation-date-string = { $date }, { $time }
59
-
60
46
  ## Password
61
47
 
62
48
  pdfjs-password-cancel-button = Nkuvi-ka
@@ -68,24 +68,12 @@ pdfjs-document-properties-button =
68
68
  pdfjs-document-properties-button-label = Својства на документот…
69
69
  pdfjs-document-properties-file-name = Име на датотека:
70
70
  pdfjs-document-properties-file-size = Големина на датотеката:
71
- # Variables:
72
- # $size_kb (Number) - the PDF file size in kilobytes
73
- # $size_b (Number) - the PDF file size in bytes
74
- pdfjs-document-properties-kb = { $size_kb } КБ ({ $size_b } бајти)
75
- # Variables:
76
- # $size_mb (Number) - the PDF file size in megabytes
77
- # $size_b (Number) - the PDF file size in bytes
78
- pdfjs-document-properties-mb = { $size_mb } МБ ({ $size_b } бајти)
79
71
  pdfjs-document-properties-title = Наслов:
80
72
  pdfjs-document-properties-author = Автор:
81
73
  pdfjs-document-properties-subject = Тема:
82
74
  pdfjs-document-properties-keywords = Клучни зборови:
83
75
  pdfjs-document-properties-creation-date = Датум на создавање:
84
76
  pdfjs-document-properties-modification-date = Датум на промена:
85
- # Variables:
86
- # $date (Date) - the creation/modification date of the PDF file
87
- # $time (Time) - the creation/modification time of the PDF file
88
- pdfjs-document-properties-date-string = { $date }, { $time }
89
77
  pdfjs-document-properties-creator = Креатор:
90
78
  pdfjs-document-properties-version = Верзија на PDF:
91
79
  pdfjs-document-properties-page-count = Број на страници:
@@ -186,13 +174,6 @@ pdfjs-missing-file-error = Недостасува PDF документ.
186
174
  pdfjs-unexpected-response-error = Неочекуван одговор од серверот.
187
175
  pdfjs-rendering-error = Настана грешка при прикажувањето на страницата.
188
176
 
189
- ## Annotations
190
-
191
- # Variables:
192
- # $date (Date) - the modification date of the annotation
193
- # $time (Time) - the modification time of the annotation
194
- pdfjs-annotation-date-string = { $date }, { $time }
195
-
196
177
  ## Password
197
178
 
198
179
  pdfjs-password-label = Внесете ја лозинката за да ја отворите оваа датотека.
@@ -91,14 +91,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
91
91
  # $mb (Number) - the PDF file size in megabytes
92
92
  # $b (Number) - the PDF file size in bytes
93
93
  pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } ബൈറ്റുകൾ)
94
- # Variables:
95
- # $size_kb (Number) - the PDF file size in kilobytes
96
- # $size_b (Number) - the PDF file size in bytes
97
- pdfjs-document-properties-kb = { $size_kb } കെബി ({ $size_b } ബൈറ്റുകള്‍)
98
- # Variables:
99
- # $size_mb (Number) - the PDF file size in megabytes
100
- # $size_b (Number) - the PDF file size in bytes
101
- pdfjs-document-properties-mb = { $size_mb } എംബി ({ $size_b } ബൈറ്റുകള്‍)
102
94
  pdfjs-document-properties-title = തലക്കെട്ട്‌
103
95
  pdfjs-document-properties-author = രചയിതാവ്:
104
96
  pdfjs-document-properties-subject = വിഷയം:
@@ -108,10 +100,6 @@ pdfjs-document-properties-modification-date = മാറ്റം വരുത്
108
100
  # Variables:
109
101
  # $dateObj (Date) - the creation/modification date and time of the PDF file
110
102
  pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
111
- # Variables:
112
- # $date (Date) - the creation/modification date of the PDF file
113
- # $time (Time) - the creation/modification time of the PDF file
114
- pdfjs-document-properties-date-string = { $date }, { $time }
115
103
  pdfjs-document-properties-creator = സൃഷ്ടികര്‍ത്താവ്:
116
104
  pdfjs-document-properties-producer = പിഡിഎഫ് പ്രൊഡ്യൂസര്‍:
117
105
  pdfjs-document-properties-version = പിഡിഎഫ് പതിപ്പ്:
@@ -246,10 +234,6 @@ pdfjs-rendering-error = താള്‍ റെണ്ടര്‍ ചെയ്യ
246
234
 
247
235
  ## Annotations
248
236
 
249
- # Variables:
250
- # $date (Date) - the modification date of the annotation
251
- # $time (Time) - the modification time of the annotation
252
- pdfjs-annotation-date-string = { $date }, { $time }
253
237
  # .alt: This is used as a tooltip.
254
238
  # Variables:
255
239
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -325,16 +309,12 @@ pdfjs-editor-signature-add-signature-button-label = പുതിയ ഒപ്പ
325
309
  # $description (String) - a string describing/labeling the signature.
326
310
  pdfjs-editor-add-saved-signature-button =
327
311
  .title = കരുതിവച്ച ഒപ്പു് : { $description }
328
- pdfjs-free-text-default-content = എഴുതാൻ തുടങ്ങുക…
329
- pdfjs-ink-canvas =
330
- .aria-label = ഉപയോക്താവ് ഉണ്ടാക്കിയ ചിത്രം
331
312
 
332
313
  ## Alt-text dialog
333
314
 
334
315
  pdfjs-editor-alt-text-button-label = മറുയെഴുത്തു്
335
316
  pdfjs-editor-alt-text-edit-button =
336
317
  .aria-label = മറുയെഴുത്തു് തിരുത്തുക
337
- pdfjs-editor-alt-text-edit-button-label = മറുയെഴുത്തു് തിരുത്തുക
338
318
  pdfjs-editor-alt-text-dialog-label = സാധ്യത തിരഞ്ഞെടുക്കൂ
339
319
  pdfjs-editor-alt-text-add-description-label = ഒരു വിവരണം ചേർക്കുക
340
320
  pdfjs-editor-alt-text-cancel-button = റദ്ദാക്കുക
@@ -346,17 +326,6 @@ pdfjs-editor-alt-text-textarea =
346
326
  pdfjs-editor-alt-text-button =
347
327
  .aria-label = മറുയെഴുത്തു്
348
328
 
349
- ## Editor resizers
350
- ## This is used in an aria label to help to understand the role of the resizer.
351
-
352
- pdfjs-editor-resizer-label-top-left = ഇടതു മീത്ത മുക്ക് — വലുപ്പം മാറ്റുക
353
- pdfjs-editor-resizer-label-top-middle = നടുവിൽ മീത്ത മുക്ക് - വലുപ്പം മാറ്റുക
354
- pdfjs-editor-resizer-label-top-right = വലതു മീത്ത മുക്ക് — വലുപ്പം മാറ്റുക
355
- pdfjs-editor-resizer-label-middle-right = വലതു നടുവിലുള്ള മുക്ക് — വലുപ്പം മാറ്റുക
356
- pdfjs-editor-resizer-label-bottom-right = വലതു കീഴിലുള്ള മുക്ക് — വലുപ്പം മാറ്റുക
357
- pdfjs-editor-resizer-label-bottom-middle = നടുവെ കീഴിലുള്ള മുക്ക് — വലുപ്പം മാറ്റുക
358
- pdfjs-editor-resizer-label-bottom-left = ഇടതു കീഴിലുള്ള മുക്ക് — വലുപ്പം മാറ്റുക
359
-
360
329
  ## Color picker
361
330
 
362
331
  # This means "Color used to highlight text"
@@ -77,24 +77,12 @@ pdfjs-document-properties-button =
77
77
  pdfjs-document-properties-button-label = दस्तऐवज गुणधर्म…
78
78
  pdfjs-document-properties-file-name = फाइलचे नाव:
79
79
  pdfjs-document-properties-file-size = फाइल आकार:
80
- # Variables:
81
- # $size_kb (Number) - the PDF file size in kilobytes
82
- # $size_b (Number) - the PDF file size in bytes
83
- pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } बाइट्स)
84
- # Variables:
85
- # $size_mb (Number) - the PDF file size in megabytes
86
- # $size_b (Number) - the PDF file size in bytes
87
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } बाइट्स)
88
80
  pdfjs-document-properties-title = शिर्षक:
89
81
  pdfjs-document-properties-author = लेखक:
90
82
  pdfjs-document-properties-subject = विषय:
91
83
  pdfjs-document-properties-keywords = मुख्यशब्द:
92
84
  pdfjs-document-properties-creation-date = निर्माण दिनांक:
93
85
  pdfjs-document-properties-modification-date = दुरूस्ती दिनांक:
94
- # Variables:
95
- # $date (Date) - the creation/modification date of the PDF file
96
- # $time (Time) - the creation/modification time of the PDF file
97
- pdfjs-document-properties-date-string = { $date }, { $time }
98
86
  pdfjs-document-properties-creator = निर्माता:
99
87
  pdfjs-document-properties-producer = PDF निर्माता:
100
88
  pdfjs-document-properties-version = PDF आवृत्ती:
@@ -205,10 +193,6 @@ pdfjs-rendering-error = पृष्ठ दाखवतेवेळी त्र
205
193
 
206
194
  ## Annotations
207
195
 
208
- # Variables:
209
- # $date (Date) - the modification date of the annotation
210
- # $time (Time) - the modification time of the annotation
211
- pdfjs-annotation-date-string = { $date }, { $time }
212
196
  # .alt: This is used as a tooltip.
213
197
  # Variables:
214
198
  # $type (String) - an annotation type from a list defined in the PDF spec
@@ -89,24 +89,12 @@ pdfjs-document-properties-button =
89
89
  pdfjs-document-properties-button-label = Sifat Dokumen…
90
90
  pdfjs-document-properties-file-name = Nama fail:
91
91
  pdfjs-document-properties-file-size = Saiz fail:
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 } bait)
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 } bait)
100
92
  pdfjs-document-properties-title = Tajuk:
101
93
  pdfjs-document-properties-author = Pengarang:
102
94
  pdfjs-document-properties-subject = Subjek:
103
95
  pdfjs-document-properties-keywords = Kata kunci:
104
96
  pdfjs-document-properties-creation-date = Masa Dicipta:
105
97
  pdfjs-document-properties-modification-date = Tarikh Ubahsuai:
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 = Pencipta:
111
99
  pdfjs-document-properties-producer = Pengeluar PDF:
112
100
  pdfjs-document-properties-version = Versi PDF:
@@ -65,24 +65,12 @@ pdfjs-document-properties-button =
65
65
  pdfjs-document-properties-button-label = မှတ်တမ်းမှတ်ရာ ဂုဏ်သတ္တိများ
66
66
  pdfjs-document-properties-file-name = ဖိုင် :
67
67
  pdfjs-document-properties-file-size = ဖိုင်ဆိုဒ် :
68
- # Variables:
69
- # $size_kb (Number) - the PDF file size in kilobytes
70
- # $size_b (Number) - the PDF file size in bytes
71
- pdfjs-document-properties-kb = { $size_kb } ကီလိုဘိုတ် ({ $size_b }ဘိုတ်)
72
- # Variables:
73
- # $size_mb (Number) - the PDF file size in megabytes
74
- # $size_b (Number) - the PDF file size in bytes
75
- pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
76
68
  pdfjs-document-properties-title = ခေါင်းစဉ်‌ -
77
69
  pdfjs-document-properties-author = ရေးသားသူ:
78
70
  pdfjs-document-properties-subject = အကြောင်းအရာ:
79
71
  pdfjs-document-properties-keywords = သော့ချက် စာလုံး:
80
72
  pdfjs-document-properties-creation-date = ထုတ်လုပ်ရက်စွဲ:
81
73
  pdfjs-document-properties-modification-date = ပြင်ဆင်ရက်စွဲ:
82
- # Variables:
83
- # $date (Date) - the creation/modification date of the PDF file
84
- # $time (Time) - the creation/modification time of the PDF file
85
- pdfjs-document-properties-date-string = { $date }, { $time }
86
74
  pdfjs-document-properties-creator = ဖန်တီးသူ:
87
75
  pdfjs-document-properties-producer = PDF ထုတ်လုပ်သူ:
88
76
  pdfjs-document-properties-version = PDF ဗားရှင်း: