@sync-in/server 1.9.3 → 1.10.0

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 (349) hide show
  1. package/CHANGELOG.md +41 -4
  2. package/environment/environment.dist.yaml +15 -5
  3. package/package.json +18 -19
  4. package/server/app.bootstrap.js +1 -1
  5. package/server/app.bootstrap.js.map +1 -1
  6. package/server/app.constants.js +3 -2
  7. package/server/app.constants.js.map +1 -1
  8. package/server/applications/files/constants/cache.js +2 -5
  9. package/server/applications/files/constants/cache.js.map +1 -1
  10. package/server/applications/files/constants/files.js +4 -0
  11. package/server/applications/files/constants/files.js.map +1 -1
  12. package/server/applications/files/constants/operations.js +4 -0
  13. package/server/applications/files/constants/operations.js.map +1 -1
  14. package/server/applications/files/constants/routes.js +1 -26
  15. package/server/applications/files/constants/routes.js.map +1 -1
  16. package/server/applications/files/files.config.js +15 -39
  17. package/server/applications/files/files.config.js.map +1 -1
  18. package/server/applications/files/files.controller.js +4 -4
  19. package/server/applications/files/files.controller.js.map +1 -1
  20. package/server/applications/files/files.module.js +12 -9
  21. package/server/applications/files/files.module.js.map +1 -1
  22. package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
  23. package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
  24. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +32 -0
  25. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -0
  26. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +280 -0
  27. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -0
  28. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +552 -0
  29. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -0
  30. package/server/applications/files/modules/collabora-online/collabora-online.config.js +40 -0
  31. package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -0
  32. package/server/applications/files/modules/collabora-online/collabora-online.constants.js +110 -0
  33. package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -0
  34. package/server/applications/files/modules/collabora-online/collabora-online.controller.js +128 -0
  35. package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -0
  36. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +47 -0
  37. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -0
  38. package/server/applications/files/{interfaces/only-office-config.interface.js → modules/collabora-online/collabora-online.dtos.js} +1 -1
  39. package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -0
  40. package/server/applications/files/{guards/files-only-office.guard.js → modules/collabora-online/collabora-online.guard.js} +7 -21
  41. package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -0
  42. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +86 -0
  43. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -0
  44. package/server/applications/files/modules/collabora-online/collabora-online.interface.js +10 -0
  45. package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -0
  46. package/server/applications/files/modules/collabora-online/collabora-online.module.js +41 -0
  47. package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -0
  48. package/server/applications/files/modules/collabora-online/collabora-online.routes.js +35 -0
  49. package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -0
  50. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +59 -0
  51. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -0
  52. package/server/applications/files/modules/collabora-online/collabora-online.utils.js +28 -0
  53. package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -0
  54. package/server/applications/files/{decorators → modules/only-office}/only-office-environment.decorator.js +5 -5
  55. package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -0
  56. package/server/applications/files/{services/files-only-office-manager.service.js → modules/only-office/only-office-manager.service.js} +101 -97
  57. package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -0
  58. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +477 -0
  59. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -0
  60. package/server/applications/files/modules/only-office/only-office.config.js +51 -0
  61. package/server/applications/files/modules/only-office/only-office.config.js.map +1 -0
  62. package/server/applications/files/modules/only-office/only-office.constants.js +417 -0
  63. package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -0
  64. package/server/applications/files/{files-only-office.controller.js → modules/only-office/only-office.controller.js} +35 -52
  65. package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -0
  66. package/server/applications/files/{files-only-office.controller.spec.js → modules/only-office/only-office.controller.spec.js} +24 -21
  67. package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -0
  68. package/server/applications/files/modules/only-office/only-office.dtos.js +10 -0
  69. package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -0
  70. package/server/applications/files/modules/only-office/only-office.guard.js +40 -0
  71. package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -0
  72. package/server/applications/files/{guards/files-only-office.guard.spec.js → modules/only-office/only-office.guard.spec.js} +15 -21
  73. package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -0
  74. package/server/applications/files/modules/only-office/only-office.interface.js +10 -0
  75. package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -0
  76. package/server/applications/files/modules/only-office/only-office.module.js +41 -0
  77. package/server/applications/files/modules/only-office/only-office.module.js.map +1 -0
  78. package/server/applications/files/modules/only-office/only-office.routes.js +45 -0
  79. package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -0
  80. package/server/applications/files/{guards/files-only-office.strategy.js → modules/only-office/only-office.strategy.js} +11 -11
  81. package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -0
  82. package/server/applications/files/services/files-lock-manager.service.js +25 -33
  83. package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
  84. package/server/applications/files/services/files-manager.service.js +17 -16
  85. package/server/applications/files/services/files-manager.service.js.map +1 -1
  86. package/server/applications/files/services/files-methods.service.js +2 -2
  87. package/server/applications/files/services/files-methods.service.js.map +1 -1
  88. package/server/applications/files/services/files-methods.service.spec.js +5 -5
  89. package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
  90. package/server/applications/files/services/files-recents.service.js +4 -0
  91. package/server/applications/files/services/files-recents.service.js.map +1 -1
  92. package/server/applications/files/services/files-scheduler.service.js +24 -5
  93. package/server/applications/files/services/files-scheduler.service.js.map +1 -1
  94. package/server/applications/files/utils/files.js +10 -2
  95. package/server/applications/files/utils/files.js.map +1 -1
  96. package/server/applications/links/constants/routes.js +5 -0
  97. package/server/applications/links/constants/routes.js.map +1 -1
  98. package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
  99. package/server/applications/links/links.controller.js +25 -5
  100. package/server/applications/links/links.controller.js.map +1 -1
  101. package/server/applications/links/services/links-manager.service.js +43 -21
  102. package/server/applications/links/services/links-manager.service.js.map +1 -1
  103. package/server/applications/links/services/links-manager.service.spec.js +4 -3
  104. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  105. package/server/applications/links/services/links-queries.service.js +9 -2
  106. package/server/applications/links/services/links-queries.service.js.map +1 -1
  107. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
  108. package/server/applications/shares/services/shares-manager.service.js +3 -0
  109. package/server/applications/shares/services/shares-manager.service.js.map +1 -1
  110. package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
  111. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  112. package/server/applications/shares/services/shares-queries.service.js +1 -0
  113. package/server/applications/shares/services/shares-queries.service.js.map +1 -1
  114. package/server/applications/spaces/constants/spaces.js +2 -2
  115. package/server/applications/spaces/constants/spaces.js.map +1 -1
  116. package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
  117. package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
  118. package/server/applications/spaces/guards/space.guard.js +40 -33
  119. package/server/applications/spaces/guards/space.guard.js.map +1 -1
  120. package/server/applications/spaces/guards/space.guard.spec.js +10 -15
  121. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
  122. package/server/applications/spaces/services/spaces-scheduler.service.js +9 -1
  123. package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
  124. package/server/applications/webdav/constants/webdav.js +4 -0
  125. package/server/applications/webdav/constants/webdav.js.map +1 -1
  126. package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
  127. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  128. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
  129. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
  130. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
  131. package/server/applications/webdav/services/webdav-methods.service.js +40 -17
  132. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
  133. package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
  134. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  135. package/server/applications/webdav/utils/webdav.js +8 -4
  136. package/server/applications/webdav/utils/webdav.js.map +1 -1
  137. package/server/applications/webdav/webdav.controller.js +4 -4
  138. package/server/applications/webdav/webdav.controller.js.map +1 -1
  139. package/server/authentication/guards/auth-token-access.guard.js +8 -3
  140. package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
  141. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
  142. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
  143. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
  144. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
  145. package/server/configuration/config.environment.js +5 -1
  146. package/server/configuration/config.environment.js.map +1 -1
  147. package/server/configuration/config.interfaces.js.map +1 -1
  148. package/static/3rdpartylicenses.txt +507 -507
  149. package/static/assets/pdfjs/build/pdf.mjs +93 -33
  150. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  151. package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
  152. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  153. package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
  154. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  155. package/static/assets/pdfjs/version +1 -1
  156. package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
  157. package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
  158. package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
  159. package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
  160. package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
  161. package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
  162. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
  163. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
  164. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
  165. package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
  166. package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
  167. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
  168. package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
  169. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
  170. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
  171. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
  172. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
  173. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
  174. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
  175. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
  176. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
  177. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
  178. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
  179. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
  180. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
  181. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
  182. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
  183. package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
  184. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
  185. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
  186. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
  187. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
  188. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
  189. package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
  190. package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
  191. package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
  192. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
  193. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
  194. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
  195. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
  196. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
  197. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
  198. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
  199. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
  200. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
  201. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
  202. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
  203. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
  204. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
  205. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
  206. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
  207. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
  208. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
  209. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
  210. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
  211. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
  212. package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
  213. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
  214. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
  215. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
  216. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
  217. package/static/assets/pdfjs/web/viewer.css +1778 -835
  218. package/static/assets/pdfjs/web/viewer.html +167 -86
  219. package/static/assets/pdfjs/web/viewer.mjs +1106 -801
  220. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  221. package/static/chunk-27V66YJV.js +2 -0
  222. package/static/{chunk-WJYVS27M.js → chunk-27Z3SYRL.js} +1 -1
  223. package/static/{chunk-NFIES7BC.js → chunk-2RWLNKZH.js} +1 -1
  224. package/static/chunk-2YQ4SX3A.js +13 -0
  225. package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
  226. package/static/chunk-3QTROEHV.js +1 -0
  227. package/static/{chunk-ZPI7RQ2S.js → chunk-3RPUQ22U.js} +1 -1
  228. package/static/{chunk-R6VB3INJ.js → chunk-3WZ6F3LC.js} +1 -1
  229. package/static/chunk-3ZLBVUCX.js +2 -0
  230. package/static/{chunk-5HCVWZMA.js → chunk-45AZ6ZML.js} +1 -1
  231. package/static/chunk-46TJLPJY.js +1 -0
  232. package/static/chunk-4NIYCYRS.js +2 -0
  233. package/static/{chunk-XXYMVRSH.js → chunk-4TPFERL6.js} +1 -1
  234. package/static/{chunk-CAZSNVMS.js → chunk-5O66CLTD.js} +1 -1
  235. package/static/chunk-6OEOADR6.js +1 -0
  236. package/static/chunk-6WMXMIE4.js +1 -0
  237. package/static/{chunk-NK2NMAJI.js → chunk-7VRYTDX4.js} +1 -1
  238. package/static/{chunk-ASBPYTLT.js → chunk-ARS47O5X.js} +1 -1
  239. package/static/chunk-B6HQYQYG.js +1 -0
  240. package/static/chunk-BCN4T5DO.js +2 -0
  241. package/static/{chunk-PKU4IIIR.js → chunk-CCZWPM7Q.js} +1 -1
  242. package/static/{chunk-QUSS6SUC.js → chunk-CMNMPG6Z.js} +1 -1
  243. package/static/{chunk-GDPJRUVU.js → chunk-CSVPAZHK.js} +1 -1
  244. package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
  245. package/static/{chunk-Z6RJZIDG.js → chunk-D5FQ72R4.js} +1 -1
  246. package/static/{chunk-4DF2SQD4.js → chunk-DGCVA6BM.js} +1 -1
  247. package/static/{chunk-TVJQXN73.js → chunk-DVCN3P7Q.js} +1 -1
  248. package/static/chunk-E32J777S.js +5 -0
  249. package/static/{chunk-5NHB7SV3.js → chunk-FIUF2JM4.js} +1 -1
  250. package/static/{chunk-RJOHDAPM.js → chunk-G3PL6YX3.js} +1 -1
  251. package/static/chunk-G7RZN7HN.js +1 -0
  252. package/static/{chunk-DDRGLHOP.js → chunk-GQHXYX6Z.js} +1 -1
  253. package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
  254. package/static/{chunk-ZC5ZDCDC.js → chunk-GXWGB7WO.js} +1 -1
  255. package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
  256. package/static/{chunk-4KXJ6C4N.js → chunk-HZAB6F4Q.js} +1 -1
  257. package/static/chunk-I3FR3A45.js +1 -0
  258. package/static/{chunk-A6J6SOM6.js → chunk-I5SPA4G2.js} +1 -1
  259. package/static/{chunk-TGHBDJZA.js → chunk-IMFO2MI7.js} +1 -1
  260. package/static/{chunk-CURVLK7L.js → chunk-JNTNMIUH.js} +1 -1
  261. package/static/chunk-JRXG43AA.js +2 -0
  262. package/static/{chunk-XAIOGRBO.js → chunk-KAUCN24H.js} +1 -1
  263. package/static/chunk-KDUAB76O.js +1 -0
  264. package/static/chunk-KPOQLDWF.js +1 -0
  265. package/static/{chunk-HE6EDXWI.js → chunk-KWFELZTM.js} +1 -1
  266. package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
  267. package/static/{chunk-U75PLYIJ.js → chunk-LGIVVJDD.js} +1 -1
  268. package/static/{chunk-JEVBUJQ4.js → chunk-LNLBIJZD.js} +1 -1
  269. package/static/chunk-LTJNLOX2.js +1 -0
  270. package/static/{chunk-SDR3UG2F.js → chunk-LZUHREOF.js} +1 -1
  271. package/static/{chunk-VO4WVT6K.js → chunk-NIR4YE2E.js} +1 -1
  272. package/static/{chunk-S6YKBWJE.js → chunk-NJJURHX4.js} +1 -1
  273. package/static/chunk-NNZWSNAW.js +1 -0
  274. package/static/chunk-NWKBB7J4.js +1 -0
  275. package/static/chunk-O3YLAEVE.js +3 -0
  276. package/static/chunk-OUHCDDT6.js +1 -0
  277. package/static/{chunk-ZRBLCAOK.js → chunk-PDG7DOEF.js} +1 -1
  278. package/static/chunk-POUWUMC4.js +1 -0
  279. package/static/{chunk-YTBSB2GE.js → chunk-PPJCVBJH.js} +1 -1
  280. package/static/{chunk-K3MOXDU5.js → chunk-PQZLR4P3.js} +1 -1
  281. package/static/chunk-PVYVY3GD.js +1 -0
  282. package/static/chunk-Q5X5TPAG.js +1 -0
  283. package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
  284. package/static/{chunk-A7DSX7VP.js → chunk-R4VMWCM5.js} +1 -1
  285. package/static/{chunk-27XEAHMV.js → chunk-R7PLNX75.js} +1 -1
  286. package/static/chunk-RJULB733.js +1 -0
  287. package/static/{chunk-MBFMTBVJ.js → chunk-RNVPQQKT.js} +5 -5
  288. package/static/chunk-RTNEBRKJ.js +1 -0
  289. package/static/{chunk-FXM7XXWA.js → chunk-S3TTWPQA.js} +1 -1
  290. package/static/{chunk-6VJI4X2A.js → chunk-SDJNZULP.js} +1 -1
  291. package/static/chunk-SNOOCDJD.js +1 -0
  292. package/static/chunk-T42BV6TR.js +1 -0
  293. package/static/{chunk-4OV3SAUS.js → chunk-TNCKNU6I.js} +1 -1
  294. package/static/{chunk-2LHHXDD5.js → chunk-ULSPQ3HP.js} +1 -1
  295. package/static/{chunk-4EUHBTWV.js → chunk-UOK3LKSX.js} +1 -1
  296. package/static/{chunk-7NI353LS.js → chunk-VD5JHSDS.js} +1 -1
  297. package/static/{chunk-YXWF2DGF.js → chunk-XBKCQCBI.js} +1 -1
  298. package/static/{chunk-KBWK65KM.js → chunk-XEWLBWFF.js} +1 -1
  299. package/static/{chunk-FLPZB3OX.js → chunk-XTVNHFKX.js} +1 -1
  300. package/static/chunk-ZCSHU3D7.js +1 -0
  301. package/static/{chunk-FRBTL2ER.js → chunk-ZEJLIGAY.js} +1 -1
  302. package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
  303. package/static/chunk-ZOMRIN3G.js +2 -0
  304. package/static/index.html +2 -2
  305. package/static/main-YKDNJ7LK.js +11 -0
  306. package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
  307. package/server/applications/files/constants/only-office.js +0 -531
  308. package/server/applications/files/constants/only-office.js.map +0 -1
  309. package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
  310. package/server/applications/files/files-only-office.controller.js.map +0 -1
  311. package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
  312. package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
  313. package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
  314. package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
  315. package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
  316. package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
  317. package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
  318. package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
  319. package/static/chunk-2XY4PMI5.js +0 -1
  320. package/static/chunk-33WFRCUP.js +0 -1
  321. package/static/chunk-3LVFDMTN.js +0 -1
  322. package/static/chunk-42L6C5MT.js +0 -1
  323. package/static/chunk-5WCQBTXW.js +0 -1
  324. package/static/chunk-A7R246NW.js +0 -1
  325. package/static/chunk-BSB4VROD.js +0 -2
  326. package/static/chunk-DHFQIFOF.js +0 -1
  327. package/static/chunk-DRHPEERW.js +0 -2
  328. package/static/chunk-FCGTI42I.js +0 -1
  329. package/static/chunk-H4RLHI3Y.js +0 -1
  330. package/static/chunk-ITVA26X2.js +0 -2
  331. package/static/chunk-IUJ4IK26.js +0 -1
  332. package/static/chunk-L3PDWJZ3.js +0 -3
  333. package/static/chunk-LBXOAKBD.js +0 -1
  334. package/static/chunk-LZKI5P5T.js +0 -1
  335. package/static/chunk-MYM43ENO.js +0 -1
  336. package/static/chunk-MZBO5PAR.js +0 -1
  337. package/static/chunk-NAH4V2R6.js +0 -2
  338. package/static/chunk-O7UXVNR2.js +0 -1
  339. package/static/chunk-PCFH5HCI.js +0 -2
  340. package/static/chunk-SRBOO7AO.js +0 -1
  341. package/static/chunk-UUX3M6DC.js +0 -1
  342. package/static/chunk-VJ2HWQRJ.js +0 -5
  343. package/static/chunk-VZPCXSRG.js +0 -2
  344. package/static/chunk-W72JYHOH.js +0 -1
  345. package/static/chunk-XHQEF2IX.js +0 -1
  346. package/static/chunk-XKEBQNQJ.js +0 -1
  347. package/static/chunk-ZERBTNFW.js +0 -13
  348. package/static/main-FE6GWZXU.js +0 -11
  349. /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
@@ -1 +0,0 @@
1
- import{k as b}from"./chunk-MYM43ENO.js";import{b as u,e as h}from"./chunk-LFAQLJZK.js";import{Ia as d,Kd as g,Oa as o,Tb as s,Ub as v,Ye as x,ab as f,ja as p,og as R,rb as c,sb as t,sg as E,tb as i,ub as r}from"./chunk-BJARRIS6.js";import"./chunk-KAVP6UXH.js";var A=(()=>{let e=class e{constructor(){this.logoUrl=b,this.icons={faExclamationCircle:x},this.activatedRoute=p(u),this.activatedRoute.params.subscribe(l=>this.error=E[l.error])}};e.\u0275fac=function(n){return new(n||e)},e.\u0275cmp=f({type:e,selectors:[["app-public-link-error"]],decls:14,vars:3,consts:[[1,"link-page"],[1,"header"],["routerLink",""],["alt","","height","40",3,"src"],["size","4x",1,"text-white",3,"icon"],["l10nTranslate","",1,"error-code","mt-2",2,"font-size","24px"],[1,"error-text"],[1,"hr"],["l10nTranslate",""]],template:function(n,m){n&1&&(t(0,"div",0)(1,"div",1)(2,"a",2),r(3,"img",3),i()(),r(4,"fa-icon",4),t(5,"div",5),s(6,"Link error"),i(),t(7,"div",6),r(8,"span",7)(9,"br"),t(10,"span",8),s(11),i(),r(12,"br")(13,"br"),i()()),n&2&&(o(3),c("src",m.logoUrl,d),o(),c("icon",m.icons.faExclamationCircle),o(7),v(m.error))},dependencies:[h,g,R],encapsulation:2});let a=e;return a})();export{A as PublicLinkErrorComponent};
@@ -1 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var i="Kimlik do\u011Frulama",n="Kullan\u0131c\u0131 ad\u0131",r="Parola",l="Onayla",t="\u0130ptal",o="Kapat",s="Filtre",d="Filtreler",u="ara",m="Ara",c="G\xF6r\xFCnt\xFCle",y="G\xF6rev yok",p="{{ nb }} g\xF6rev tamamland\u0131",k="{{ nb }} g\xF6rev tamamland\u0131",h="Toplam {{ nb }} g\xF6revden {{ nba }} g\xF6rev devam ediyor",b="Toplam {{ nb }} g\xF6revden {{ nba }} g\xF6rev devam ediyor",g="{{nb}} \xF6\u011Fe",z="{{nb}} i\u015Flem",f="{{ nb }} yeni mesaj",v="{{ nb }} yeni mesaj",S="{{ nb }} okunmam\u0131\u015F bildirim",w="{{ nb }} okunmam\u0131\u015F bildirim",A="Uygulama",T="uygulama",D="Bildirim",B="Bildirimler",K="Olay",Y="Dosya",P="Dosyalar",G="Ki\u015Fisel",E="Harici",M="Gruplar",_="Grup",C="grup",x="gruplar",U="G\xF6r\xFCn\xFCr",F="\xD6zel",R="Yal\u0131t\u0131lm\u0131\u015F",L="Ekle",N="Y\xF6netici",O="Y\xF6netim",H="Kullan\u0131c\u0131",W="kullan\u0131c\u0131",I="Kullan\u0131c\u0131lar",V="kullan\u0131c\u0131lar",q="hesap",j="Hesap",Q="E-posta",Z="Durum",J="Rol",X="IP",$="G\xF6r\xFCld\xFC",ee="Ba\u011Flant\u0131",ae="Ba\u011Flant\u0131lar",ie="Kullan\u0131labilir alan d\xFC\u015F\xFCk ( {{ nb }}% )",ne="\xE7evrimi\xE7i",re="S\u0131n\u0131rs\u0131z",le="\xFCye",te="\xFCyeler",oe="\xDCye",se="\xDCyeler",de="Y\xF6netici",ue="y\xF6netici",me="Y\xF6neticiler",ce="Olu\u015Ftur",ye="\u0130\xE7e aktar",pe="Yap\u0131land\u0131rma",ke="Uygulamalar",he="uygulamalar",be="Avatar",ge="G\xFCncelle",ze="Dil",fe="Ana sayfa",ve="Son kullan\u0131lanlar",Se="son",we="\xC7\xF6p kutusu",Ae="Payla\u015F\u0131mlar",Te="Payla\u015F",De="payla\u015F\u0131mlar",Be="payla\u015F\u0131ld\u0131",Ke="Ki\u015Fisel alana eri\u015Fim",Ye="Alanlara eri\u015Fim",Pe="Alan y\xF6netimi",Ge="Payla\u015F\u0131mlara eri\u015Fim",Ee="Payla\u015F\u0131m y\xF6netimi",Me="Misafir y\xF6netimi",_e="Ki\u015Fisel grup y\xF6netimi",Ce="Masa\xFCst\xFC uygulamas\u0131ndan eri\u015Fim",xe="Masa\xFCst\xFC uygulamas\u0131ndan e\u015Fitleme",Ue="WebDAV eri\u015Fimi",Fe="WebDAV",Re="Alan",Le="Alanlar",Ne="alanlar",Oe="sabitledi",He="sabitlemeyi kald\u0131rd\u0131",We="Konum",Ie="Sabitlenmi\u015F",Ve="Ayarlar",qe="Se\xE7enekler",je="Ad",Qe="\u0130ndir",Ze="Ta\u015F\u0131",Je="Kopyala",Xe="Yeniden adland\u0131r",$e="D\xFCzenle",ea="Kald\u0131r",aa="Pano",ia="Yenile",na="Bo\u015Falt",ra="Liste",la="G\xF6r\xFCnt\xFC",ta="<b>{{arg}}</b> \xE7\xF6p kutusuna ta\u015F\u0131ns\u0131n m\u0131?",oa="<b>{{arg}}</b> kal\u0131c\u0131 olarak silinsin mi?",sa="Bu <b>{{arg}} dosya</b> \xE7\xF6p kutusuna ta\u015F\u0131ns\u0131n m\u0131?",da="Bu <b>{{arg}} dosya</b> kal\u0131c\u0131 olarak silinsin mi?",ua="e\u015Fitleme",ma="E\u015Fitleme",ca="E\u015Fitlemeler",ya="E\u015Fitle",pa="E\u015Fitle",ka="E\u015Fitlendi",ha="S\u0131k\u0131\u015Ft\u0131r",ba="S\u0131k\u0131\u015Ft\u0131rmay\u0131 a\xE7",ga="Bilgi",za="Boyut",fa="De\u011Fi\u015Ftirildi",va="de\u011Fi\u015Ftirildi",Sa="G\xF6revler",wa="Metin",Aa="\xD6\u011Feler",Ta="Yeni",Da="Klas\xF6r",Ba="klas\xF6r",Ka="dosya",Ya="dosyalar",Pa="dizin",Ga="dizinler",Ea="Toplam",Ma="se\xE7im yok",_a="{{ nb }} \xF6\u011Fe se\xE7ildi",Ca="{{ nb }} \xF6\u011Fe se\xE7ildi",xa="\xF6\u011Fe",Ua="\xF6\u011Fe",Fa="olu\u015Ftur",Ra="yaz",La="ta\u015F\u0131",Na="sil",Oa="de\u011Fi\u015Ftir",Ha="payla\u015F\u0131m",Wa="Ba\u011Flant\u0131",Ia="ba\u011Flant\u0131",Va="Ba\u011Flant\u0131lar",qa="ba\u011Flant\u0131lar",ja="Misafir",Qa="Misafirler",Za="misafir",Ja="misafirler",Xa="S\xFCresi doldu",$a="s\xFCresi doldu",ei="yok",ai="\u0130zinler",ii="Sahip",ni="Ben",ri="Payla\u015F\u0131lan",li="Olu\u015Fturulma",ti="Tarih",oi="Yol",si="aktif",di="Aktif",ui="ask\u0131da",mi="T\xFCr",ci="A\xE7\u0131klama",yi="G\xF6r\xFCn\xFCrl\xFCk",pi="Bilinmiyor",ki="Sona erme",hi="Eri\u015Fim",bi="Eri\u015Fildi",gi="Yorum",zi="Yorumlar",fi="yorumlar",vi="yorum yapt\u0131",Si="evet",wi="hay\u0131r",Ai="\u0130stemci",Ti="\u0130stemciler",Di="kullan\u0131labilir",Bi="me\u015Fgul",Ki="yok",Yi="\xE7evrimd\u0131\u015F\u0131",Pi="G\xF6r\xFCnt\xFCle",Gi="\xE7\u0131k\u0131\u015F",Ei="g\xFCn",Mi="g\xFCn",_i="Sil",Ci="Zamanlay\u0131c\u0131",xi="paralel",Ui="ard\u0131\u015F\u0131k",Fi="Aktar\u0131mlar",Ri="Sim\xFCle et",Li="S\u0131f\u0131rla",Ni="G\xF6zat",Oi="\u0130\u015Flem",Hi="Eklendi",Wi="Kald\u0131r\u0131ld\u0131",Ii="Kopyaland\u0131",Vi="Ta\u015F\u0131nd\u0131",qi="Filtrelendi",ji="Hata",Qi="Sunucu",Zi="Y\xF6n",Ji="\xC7ak\u0131\u015Fma",Xi="son",$i="Kaynak",en="Hedef",an="Mod",nn="Ard\u0131\u015F\u0131k olarak",rn="Paralel olarak",ln="h\u0131zl\u0131",tn="g\xFCvenli",on="etkin",sn="Etkinle\u015Ftir",dn="devre d\u0131\u015F\u0131",un="Devre d\u0131\u015F\u0131 b\u0131rak",mn="saat",cn="dakika",yn="g\xFCn",pn="her ikisi",kn="asla",hn="Sihirbaz",bn="\u0130leri",gn="Geri",zn="Bitti",fn="\u2192",vn="Depo",Sn="genel",wn="yerel",An="uzak",Tn="Web sitesi",Dn="Dok\xFCmantasyon",Bn="S\xFCr\xFCmler",Kn="G\xFCvenlik",Yn="Y\xF6net",Pn="<b>{{ old }}</b> dosyas\u0131n\u0131 <b>{{ new }}</b> olarak yeniden adland\u0131rmak istiyor musunuz?",Gn="Kaydet",En="Geri Al",Mn="Yinele",_n="ben",Cn="Kilidi A\xE7",xn="Kilit",Un="M\xFCnhas\u0131r",Fn="Tam ekran",Rn="Boyutlar",Ln={"Sign-in to your account":"Hesab\u0131n\u0131za giri\u015F yap\u0131n","Wrong login or password":"Kullan\u0131c\u0131 ad\u0131 veya parola yanl\u0131\u015F","Authentication service error":"Kimlik do\u011Frulama hizmeti hatas\u0131","Account locked":"Hesap kilitlendi","Account is not allowed":"Hesaba izin verilmiyor","Account matching error":"Hesap e\u015Fle\u015Ftirme hatas\u0131",Authentication:i,"Sign in":"Giri\u015F yap",Login:n,Password:r,"Login or Email":"Kullan\u0131c\u0131 ad\u0131 veya E-posta","Login already used":"Bu kullan\u0131c\u0131 ad\u0131 zaten kullan\u0131l\u0131yor","You are already logged in":"Zaten giri\u015F yapt\u0131n\u0131z","Name already used":"Bu ad zaten kullan\u0131l\u0131yor","Token has expired":"Belirtecin s\xFCresi doldu",Confirm:l,Cancel:t,Close:o,"Server connection error":"Sunucu ba\u011Flant\u0131 hatas\u0131",Filter:s,Filters:d,search:u,Search:m,"Search for content":"\u0130\xE7erik ara","Search for files":"Dosya ara","Full-text search":"Tam metin arama","Full-text search is disabled":"Tam metin arama devre d\u0131\u015F\u0131","Type to search for users or groups to add":"Eklenecek kullan\u0131c\u0131 veya grubu aray\u0131n","Type to search for groups to add":"Eklenecek grubu aray\u0131n","Type to search for users to add":"Eklenecek kullan\u0131c\u0131y\u0131 aray\u0131n","Type to search for managers to add":"Eklenecek y\xF6neticiyi aray\u0131n","Member since":"\xDCyelik tarihi","Windows Manager":"Pencere Y\xF6neticisi","Mark as read":"Okundu olarak i\u015Faretle",See:c,no_task:y,one_task:p,nb_tasks:k,one_active_task:h,nb_active_tasks:b,nb_elements:g,nb_actions:z,one_message:f,nb_messages:v,one_notification:S,nb_notifications:w,Application:A,application:T,"application and email":"uygulama ve e-posta",Notification:D,Notifications:B,Event:K,File:Y,Files:P,"Personal files":"Ki\u015Fisel dosyalar","for personal files":"ki\u015Fisel dosyalar i\xE7in",Personal:G,External:E,"Share status":"Payla\u015F\u0131m durumu","Share description":"Payla\u015F\u0131m a\xE7\u0131klamas\u0131","No recent files":"Son dosya yok",Groups:M,Group:_,group:C,"New personal group":"Yeni ki\u015Fisel grup","Edit personal group":"Ki\u015Fisel grubu d\xFCzenle","personal group":"ki\u015Fisel grup","Personal group":"Ki\u015Fisel grup","Personal groups":"Ki\u015Fisel gruplar",groups:x,"Parent group":"\xDCst grup","Group updated":"Grup g\xFCncellendi","Group created":"Grup olu\u015Fturuldu","Group not found":"Grup bulunamad\u0131","Group error":"Grup hatas\u0131","Set as group manager":"Grup y\xF6neticisi yap","As a manager, the user will be able to manage the group and its members.":"Y\xF6netici, grubu ve \xFCyelerini y\xF6netebilir.","As a manager, the user will be able to manage group members but not group properties.":"Y\xF6netici, grup \xFCyelerini y\xF6netebilir ancak grup \xF6zelliklerini y\xF6netemez.",Visible:U,Private:F,Isolated:R,"Select the parent group":"\xDCst grubu se\xE7in","from the group":"gruptan","New group":"Yeni grup","Edit group":"Grubu d\xFCzenle","Leave group":"Gruptan ayr\u0131l","Delete group":"Grubu sil","Remove from group":"Gruptan kald\u0131r","Group must have at least one manager":"Grubun en az bir y\xF6neticisi olmal\u0131d\u0131r","The group was left":"Gruptan ayr\u0131ld\u0131n\u0131z","The group was not left":"Gruptan ayr\u0131lamad\u0131","will be left, you will no longer be a member of this group":"gruptan ayr\u0131lacaks\u0131n\u0131z; art\u0131k bu grubun \xFCyesi olmayacaks\u0131n\u0131z","All users can see this group.":"T\xFCm kullan\u0131c\u0131lar bu grubu g\xF6rebilir.","Users who are not members of this group cannot see it.":"Bu grubun \xFCyesi olmayanlar g\xF6remez.","The group is not visible, its members cannot see it and cannot see each other.":"Grup g\xF6r\xFCn\xFCr de\u011Fil; \xFCyeler grubu ve birbirlerini g\xF6remez.",Add:L,"Add members":"\xDCye ekle","See members":"\xDCyeleri g\xF6r\xFCnt\xFCle",Administrator:N,Administration:O,User:H,user:W,Users:I,users:V,"New user":"Yeni kullan\u0131c\u0131",account:q,Account:j,"Account status":"Hesap durumu",Email:Q,"Email already used":"Bu e-posta zaten kullan\u0131l\u0131yor","First name":"Ad","Last name":"Soyad","Full name":"Ad Soyad",Status:Z,Role:J,IP:X,"IP Addresses":"IP Adresleri",Seen:$,Connection:ee,Connections:ae,"Confirm deletion":"Silme onay\u0131","Confirm permanent deletion of data":"Verilerin kal\u0131c\u0131 silinmesini onayla","Space and data will be deleted in":"Alan ve veriler \u015Fu s\xFCre i\xE7inde silinecek","Space is disabled":"Alan devre d\u0131\u015F\u0131","Storage Space":"Depolama Alan\u0131","Storage Quota":"Depolama Kotas\u0131","Storage Usage":"Depolama Kullan\u0131m\u0131","Space status":"Alan durumu","Storage quota exceeded":"Depolama kotas\u0131 a\u015F\u0131ld\u0131","Storage quota will be exceeded":"Depolama kotas\u0131 a\u015F\u0131lacak","No more space available":"Bo\u015F alan kalmad\u0131",available_space_is_low:ie,online:ne,"Online users":"\xC7evrimi\xE7i kullan\u0131c\u0131lar",Unlimited:re,member:le,members:te,Member:oe,Members:se,Manager:de,manager:ue,Managers:me,"At least one manager is required":"En az bir y\xF6netici gerekir",Generate:ce,Import:ye,Configuration:pe,Applications:ke,applications:he,"Permissions inherited from groups":"Gruplardan devral\u0131nan izinler","Only the group will be deleted, the members will no longer be part of it.":"Yaln\u0131zca grup silinecek; \xFCyeler art\u0131k onun par\xE7as\u0131 olmayacak.",Avatar:be,Update:ge,"current password":"mevcut parola","new password":"yeni parola","Change me !":"Beni de\u011Fi\u015Ftir!","Current password missing !":"Mevcut parola eksik!","New password missing !":"Yeni parola eksik!","New password must have 8 characters minimum":"Yeni parola en az 8 karakter olmal\u0131d\u0131r","Current password does not match":"Mevcut parola e\u015Fle\u015Fmiyor","Password has been updated":"Parola g\xFCncellendi","Unable to update password":"Parola g\xFCncellenemedi","Bad password":"Hatal\u0131 parola","too many login attempts":"\xE7ok fazla giri\u015F denemesi",Language:ze,"Language updated":"Dil g\xFCncellendi","Unable to update language":"Dil g\xFCncellenemedi","Notification preference updated":"Bildirim tercihi g\xFCncellendi","Full-text search preference updated":"Tam metin arama tercihi g\xFCncellendi","Unable to update notification preference":"Bildirim tercihi g\xFCncellenemedi","Unable to update full-text search preference":"Tam metin arama tercihi g\xFCncellenemedi","Unable to open document":"Belge a\xE7\u0131lamad\u0131","Unable to save document":"Belge kaydedilemedi",Home:fe,Recents:ve,recents:Se,Trash:we,"trash bins":"\xE7\xF6p kutular\u0131",Shares:Ae,Share:Te,shares:De,shared:Be,personal_space:Ke,spaces_access:Ye,spaces_admin:Pe,shares_access:Ge,shares_admin:Ee,guests_admin:Me,personal_groups_admin:_e,desktop_app_access:Ce,desktop_app_sync:xe,webdav_access:Ue,"Create share":"Payla\u015F\u0131m olu\u015Ftur","Edit share":"Payla\u015F\u0131m\u0131 d\xFCzenle","Delete share":"Payla\u015F\u0131m\u0131 sil","Child shares":"Alt payla\u015F\u0131mlar",webdav:Fe,"Share is disabled":"Payla\u015F\u0131m devre d\u0131\u015F\u0131",Space:Re,Spaces:Le,spaces:Ne,"Space name":"Alan ad\u0131","New space":"Yeni alan","Create a new space":"Yeni alan olu\u015Ftur","Create space":"Alan olu\u015Ftur","Edit space":"Alan\u0131 d\xFCzenle","Delete space":"Alan\u0131 sil","Create a new share":"Yeni payla\u015F\u0131m olu\u015Ftur","Type to search for space to select":"Se\xE7ilecek alan\u0131 aray\u0131n","Anchor to a space":"Bir alana sabitle","Anchor files to a space":"Dosyalar\u0131 bir alana sabitle","You have been invited to join this space":"Bu alana kat\u0131lmaya davet edildiniz","You have been invited to join this share":"Bu payla\u015F\u0131ma kat\u0131lmaya davet edildiniz","Shared with others":"Ba\u015Fkalar\u0131yla payla\u015F\u0131lan","With others":"Ba\u015Fkalar\u0131yla","Shared with me":"Benimle payla\u015F\u0131lan","With me":"Benimle","Shared via links":"Ba\u011Flant\u0131yla payla\u015F\u0131lan","Via links":"Ba\u011Flant\u0131yla","Shared from":"Payla\u015Fan","share with you this":"\u015Funu sizinle payla\u015Ft\u0131","shared with you":"sizinle payla\u015Ft\u0131","no longer share with you":"art\u0131k sizinle payla\u015Fm\u0131yor","You now have access to the space":"Art\u0131k alana eri\u015Fiminiz var","You no longer have access to the space":"Art\u0131k alana eri\u015Fiminiz yok","This space has been permanently deleted":"Bu alan kal\u0131c\u0131 olarak silindi","You now have access to the share":"Art\u0131k payla\u015F\u0131ma eri\u015Fiminiz var","You no longer have access to the share":"Art\u0131k payla\u015F\u0131ma eri\u015Fiminiz yok","You are no longer a member of the parent share, your child share has been deleted":"\xDCst payla\u015F\u0131m\u0131n \xFCyesi olmad\u0131\u011F\u0131n\u0131z i\xE7in alt payla\u015F\u0131m\u0131n\u0131z silindi",anchored:Oe,unanchored:He,"Share not found":"Payla\u015F\u0131m bulunamad\u0131","Go to":"Git",Location:We,"Name and location are required":"Ad ve konum gereklidir","Parent location already exists in files":"\xDCst konum dosyalarda zaten mevcut","Check the location":"Konumu kontrol et","Location not found":"Konum bulunamad\u0131","Forbidden resource":"\u0130zin verilmeyen konum","Resource already exists":"\xD6\u011Fe zaten mevcut","The location does not exist":"Konum mevcut de\u011Fil","The location is not readable":"Konum okunam\u0131yor","The location is not writeable":"Konuma yaz\u0131lam\u0131yor","The location is a directory":"Konum bir dizin","The file is locked":"Dosya kilitli","This share is protected by a password":"Bu payla\u015F\u0131m parola ile korunuyor","You do not have share permission":"Payla\u015Fma izniniz yok","You can not share a space":"Bir alan\u0131 payla\u015Famazs\u0131n\u0131z","You can not remove an anchored file":"Sabitlenmi\u015F bir dosyay\u0131 kald\u0131ramazs\u0131n\u0131z","You are not allowed to write here":"Buraya yazma izniniz yok","You are not allowed to do this action":"Bu i\u015Flemi yapma izniniz yok","You can not move an anchored file":"Sabitlenmi\u015F bir dosyay\u0131 ta\u015F\u0131yamazs\u0131n\u0131z","You can not move a locked file":"Kilitli bir dosyay\u0131 ta\u015F\u0131yamazs\u0131n\u0131z",Anchored:Ie,"Anchored by":"Sabitleyen","Manage my anchored files":"Sabitlenmi\u015F dosyalar\u0131m\u0131 y\xF6net","You have no files anchored on this space":"Bu alana sabitlenmi\u015F dosyan\u0131z yok","An anchored file already has this name":"Ayn\u0131 adl\u0131 sabitlenmi\u015F bir dosya zaten var",Settings:Ve,Options:qe,Name:je,Download:Qe,"Download done":"\u0130ndirme tamamland\u0131","Download failed":"\u0130ndirme ba\u015Far\u0131s\u0131z","Upload done":"Y\xFCkleme tamamland\u0131","Upload failed":"Y\xFCkleme ba\u015Far\u0131s\u0131z","Copy/Move":"Kopyala/Ta\u015F\u0131",Move:Ze,"Move done":"Ta\u015F\u0131ma tamamland\u0131","Move failed":"Ta\u015F\u0131ma ba\u015Far\u0131s\u0131z","Deletion done":"Silme tamamland\u0131","Deletion failed":"Silme ba\u015Far\u0131s\u0131z","Creation failed":"Olu\u015Fturma ba\u015Far\u0131s\u0131z",Copy:Je,"Copy done":"Kopyalama tamamland\u0131","Copy failed":"Kopyalama ba\u015Far\u0131s\u0131z","Copy-Paste":"Kopyala-Yap\u0131\u015Ft\u0131r","Cut-Paste":"Kes-Yap\u0131\u015Ft\u0131r",Rename:Xe,Edit:$e,"Share inside":"\u0130\xE7eride payla\u015F","Share outside":"D\u0131\u015Far\u0131da payla\u015F",Remove:ea,Clipboard:aa,"Send to Clipboard":"Panoya g\xF6nder","will be removed":"kald\u0131r\u0131lacak",Refresh:ia,Empty:na,List:ra,Display:la,"Sort by":"S\u0131rala",trash_one_file:ta,delete_one_file:oa,trash_multiple_files:sa,delete_multiple_files:da,"Moving to trash":"\xC7\xF6p kutusuna ta\u015F\u0131n\u0131yor","Permanent deletion":"Kal\u0131c\u0131 silme","Would you like to empty the trash ?":"\xC7\xF6p kutusunu bo\u015Faltmak ister misiniz?","All items will be permanently deleted":"T\xFCm \xF6\u011Feler kal\u0131c\u0131 olarak silinecek","Actions will be performed in the current folder":"\u0130\u015Flemler mevcut klas\xF6rde ger\xE7ekle\u015Ftirilecek","The client will no longer have permission to access your account and will no longer be able to synchronize.":"\u0130stemcinin hesab\u0131n\u0131za eri\u015Fim izni olmayacak ve art\u0131k e\u015Fitleme yapamayacak.","The access expires":"Eri\u015Fim s\xFCresi doluyor","The access has expired":"Eri\u015Fim s\xFCresi doldu","Never expires":"S\xFCresiz",synchronization:ua,Synchronization:ma,Synchronizations:ca,Synchronize:ya,Sync:pa,"Stop synchronization":"E\u015Fitlemeyi durdur","Synchronize all":"T\xFCm\xFCn\xFC e\u015Fitle","Stop synchronizations":"E\u015Fitlemeleri durdur",Synced:ka,"Sync already exists":"E\u015Fitleme zaten mevcut","Sync was reset":"E\u015Fitleme s\u0131f\u0131rland\u0131","Sync deleted":"E\u015Fitleme silindi","This client":"Bu istemci","You are no longer synchronizing":"Art\u0131k e\u015Fitleme yapm\u0131yorsunuz",Compress:ha,Decompress:ba,"Compress and Download":"S\u0131k\u0131\u015Ft\u0131r ve indir","Compress and Save":"S\u0131k\u0131\u015Ft\u0131r ve kaydet","Enable compression":"S\u0131k\u0131\u015Ft\u0131rmay\u0131 etkinle\u015Ftir","Compression done":"S\u0131k\u0131\u015Ft\u0131rma tamamland\u0131","Compression failed":"S\u0131k\u0131\u015Ft\u0131rma ba\u015Far\u0131s\u0131z","Decompression done":"S\u0131k\u0131\u015Ft\u0131rma a\xE7ma tamamland\u0131","Decompression failed":"S\u0131k\u0131\u015Ft\u0131rma a\xE7ma ba\u015Far\u0131s\u0131z","(this may take longer)":"(bu i\u015Flem daha uzun s\xFCrebilir)","Save in the current directory":"Mevcut dizine kaydet","This name is already used":"Bu ad zaten kullan\u0131l\u0131yor",Info:ga,Size:za,Modified:fa,modified:va,Tasks:Sa,"Download from URL":"URL'den indir","Upload files":"Dosya y\xFCkle","Upload folders":"Klas\xF6r y\xFCkle","Folder name":"Klas\xF6r ad\u0131","New folder":"Yeni klas\xF6r","Document name":"Belge ad\u0131","New document":"Yeni belge","File name":"Dosya ad\u0131","File permissions":"Dosya izinleri",Text:wa,"Rich Text Format":"Zengin Metin Bi\xE7imi","Forbidden characters":"\u0130zin verilmeyen karakterler",Elements:Aa,"Malformed URL":"Hatal\u0131 URL",New:Ta,Folder:Da,folder:Ba,file:Ka,files:Ya,directory:Pa,directories:Ga,Total:Ea,no_selection:Ma,one_selection:_a,nb_selections:Ca,"Archive name":"Ar\u015Fiv ad\u0131","Drag and drop your files here":"Dosyalar\u0131n\u0131z\u0131 buraya s\xFCr\xFCkleyip b\u0131rak\u0131n","The destination already exists":"Hedef zaten mevcut","This item is already selected":"Bu \xF6\u011Fe zaten se\xE7ili","Parent item is already selected":"\xDCst \xF6\u011Fe zaten se\xE7ili","This file contains binary data that can not be read":"Bu dosya okunamayan ikili veri i\xE7eriyor","Navigation Tree":"Gezinme A\u011Fac\u0131",item:xa,items:Ua,create:Fa,write:Ra,move:La,delete:Na,modify:Oa,"Delete user":"Kullan\u0131c\u0131y\u0131 sil","Delete all user files":"Kullan\u0131c\u0131n\u0131n t\xFCm dosyalar\u0131n\u0131 sil",share:Ha,"Share name":"Payla\u015F\u0131m ad\u0131","New share":"Yeni payla\u015F\u0131m","New share link":"Yeni payla\u015F\u0131m ba\u011Flant\u0131s\u0131","New link":"Yeni ba\u011Flant\u0131","Edit children shares":"Alt payla\u015F\u0131mlar\u0131 d\xFCzenle",Link:Wa,link:Ia,Links:Va,links:qa,"Link copied":"Ba\u011Flant\u0131 kopyaland\u0131","Link created":"Ba\u011Flant\u0131 olu\u015Fturuldu","Link deleted":"Ba\u011Flant\u0131 silindi","Link error":"Ba\u011Flant\u0131 hatas\u0131","Copy link":"Ba\u011Flant\u0131y\u0131 kopyala","Edit link":"Ba\u011Flant\u0131y\u0131 d\xFCzenle","Guest Link":"Misafir Ba\u011Flant\u0131s\u0131","Guest name":"Misafir ad\u0131","Guest email":"Misafir e-postas\u0131","Guest language":"Misafir dili",Guest:ja,Guests:Qa,guest:Za,guests:Ja,"New guest":"Yeni misafir","Edit guest":"Misafiri d\xFCzenle","Guest created":"Misafir olu\u015Fturuldu","Guest deleted":"Misafir silindi","Guest updated":"Misafir g\xFCncellendi","Guest error":"Misafir hatas\u0131","Add an external location":"Harici konum ekle","External location":"Harici konum","Select a file":"Dosya se\xE7","The link is expired":"Ba\u011Flant\u0131n\u0131n s\xFCresi doldu","The link is disabled":"Ba\u011Flant\u0131 devre d\u0131\u015F\u0131","The link was not found":"Ba\u011Flant\u0131 bulunamad\u0131",Expired:Xa,expired:$a,none:ei,"The maximum number of access allowed to the link is exceeded":"Ba\u011Flant\u0131 i\xE7in izin verilen en fazla eri\u015Fim say\u0131s\u0131 a\u015F\u0131ld\u0131","Set a password":"Parola ayarla","Enter your password":"Parolan\u0131z\u0131 girin",Permissions:ai,"No permissions":"\u0130zin yok",Owner:ii,Me:ni,Shared:ri,Created:li,"Created & Modified":"Olu\u015Fturulma ve De\u011Fi\u015Ftirilme","Creation date":"Olu\u015Fturulma tarihi","Modification date":"De\u011Fi\u015Ftirilme tarihi","Deactivation date":"Devre d\u0131\u015F\u0131 b\u0131rakma tarihi",Date:ti,Path:oi,active:si,Active:di,suspended:ui,"Unable to rename user space":"Kullan\u0131c\u0131 alan\u0131 yeniden adland\u0131r\u0131lam\u0131yor","Unable to delete user space":"Kullan\u0131c\u0131 alan\u0131 silinemiyor","Unable to update user":"Kullan\u0131c\u0131 g\xFCncellenemiyor","Unable to update user groups":"Kullan\u0131c\u0131 gruplar\u0131 g\xFCncellenemiyor","User created":"Kullan\u0131c\u0131 olu\u015Fturuldu","User updated":"Kullan\u0131c\u0131 g\xFCncellendi","User not found":"Kullan\u0131c\u0131 bulunamad\u0131","Edit user":"Kullan\u0131c\u0131y\u0131 d\xFCzenle","Impersonate identity":"Kimli\u011Fine b\xFCr\xFCn",Type:mi,Description:ci,Visibility:yi,"Unknown error !":"Bilinmeyen hata!",Unknown:pi,Expiration:ki,"Limit access":"Eri\u015Fimi s\u0131n\u0131rla","Current access count":"Mevcut eri\u015Fim say\u0131s\u0131",Access:hi,Accessed:bi,"Last access":"Son eri\u015Fim","Last accesses":"Son eri\u015Fimler",Comment:gi,Comments:zi,comments:fi,commented:vi,"No recent comments":"Son yorum yok","Write a comment ...":"Yorum yaz\u0131n ...",yes:Si,no:wi,Client:Ai,Clients:Ti,available:Di,busy:Bi,absent:Ki,offline:Yi,View:Pi,"Session has expired":"Oturumun s\xFCresi doldu","Please sign in":"L\xFCtfen yeniden giri\u015F yap\u0131n",logout:Gi,days:Ei,day:Mi,Delete:_i,Scheduler:Ci,async:xi,seq:Ui,Transfers:Fi,Simulate:Ri,Reset:Li,Browse:Ni,Action:Oi,Added:Hi,Removed:Wi,Copied:Ii,Moved:Vi,Filtered:qi,Error:ji,Server:Qi,Direction:Zi,Conflict:Ji,"Show filtered files":"Filtrelenen dosyalar\u0131 g\xF6ster",recent:Xi,Source:$i,Destination:en,Mode:an,Sequentially:nn,Asynchronously:rn,fast:ln,secure:tn,enabled:on,Enable:sn,disabled:dn,Disable:un,scheduler_unit_hour:mn,scheduler_unit_minute:cn,scheduler_unit_day:yn,"You must have permission to modify the server folder to choose a different sync mode":"Farkl\u0131 bir e\u015Fitleme modu se\xE7mek i\xE7in sunucu klas\xF6r\xFCn\xFC de\u011Fi\u015Ftirme iznine sahip olmal\u0131s\u0131n\u0131z","upload only":"yaln\u0131zca y\xFCkle","download only":"yaln\u0131zca indir",both:pn,never:kn,"Clear events":"Olaylar\u0131 temizle","Events from":"\u015Euradan olaylar","All syncs":"T\xFCm e\u015Fitlemeler","All events":"T\xFCm olaylar","will be cleared":"temizlenecek","No differences":"Fark yok","Select a folder":"Klas\xF6r se\xE7","The files containing":"\u015Eunlar\u0131 i\xE7eren dosyalar","The files starting":"\u015Eunlarla ba\u015Flayan dosyalar","The files ending":"\u015Eunlarla biten dosyalar","Expert (Regexp)":"Uzman (Regexp)","click on the browse button":"g\xF6zat d\xFC\u011Fmesine t\u0131klay\u0131n","with a name or pattern":"ad veya desenle","with the extension ('.mp3', '.avi', '.mov' ...)":"uzant\u0131ya g\xF6re ('.mp3', '.avi', '.mov' ...)",Wizard:hn,Next:bn,Previous:gn,Done:zn,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Bu sihirbaz, bilgisayar\u0131n\u0131zdaki bir dizini bir Sync-in diziniyle e\u015Fitlemenize yard\u0131mc\u0131 olur.","To begin, select a folder on your computer.":"Ba\u015Flamak i\xE7in bilgisayar\u0131n\u0131zda bir klas\xF6r se\xE7in.",'You can drag the folder into the area below or click on the "Select" button.':'Klas\xF6r\xFC a\u015Fa\u011F\u0131daki alana s\xFCr\xFCkleyebilir veya "Se\xE7" d\xFC\u011Fmesine t\u0131klayabilirsiniz.',"Drop folder here":"Klas\xF6r\xFC buraya b\u0131rak\u0131n","This directory is already synced":"Bu dizin zaten e\u015Fitlenmi\u015F","The parent directory is already synced":"\xDCst dizin zaten e\u015Fitlenmi\u015F","This directory is not accessible":"Bu dizine eri\u015Filemiyor","This directory is read-only, you will not be able to modify it":"Bu dizin salt okunurdur, de\u011Fi\u015Ftiremezsiniz","Please select the server directory to sync, if it doesn't exist you can create it.":"L\xFCtfen e\u015Fitlenecek sunucu dizinini se\xE7in; yoksa olu\u015Fturabilirsiniz.","Double click to browse directories":"Dizinlere g\xF6z atmak i\xE7in \xE7ift t\u0131klay\u0131n","The data will be synchronized from":"Veriler \u015Furadan e\u015Fitlenecek","the client folder":"istemci klas\xF6r\xFC","the server folder":"sunucu klas\xF6r\xFC","(One-Way)":"(tek y\xF6nl\xFC)","(Two-Way)":"(\xE7ift y\xF6nl\xFC)",to:fn,"and from":"ve \u2190","All files created or modified in":"\u015Eurada olu\u015Fturulan veya de\u011Fi\u015Ftirilen t\xFCm dosyalar","will be ignored and deleted":"yok say\u0131lacak ve silinecek","In case of conflict,":"\xC7ak\u0131\u015Fma durumunda,","the most recent files will be kept":"en yeni dosyalar korunur","the client\u2019s files take precedence":"istemci dosyalar\u0131 \xF6nceliklidir","the server\u2019s files take precedence":"sunucu dosyalar\u0131 \xF6nceliklidir","the files in":"\u015Furadaki dosyalar","will be preferred":"tercih edilecektir","Loading...":"Y\xFCkleniyor...","No results":"Sonu\xE7 yok","Download ARM64 version":"ARM64 s\xFCr\xFCm\xFCn\xFC indir","Download Apple Silicon ARM64 version":"Apple Silicon ARM64 s\xFCr\xFCm\xFCn\xFC indir","Download tar.gz version":"tar.gz s\xFCr\xFCm\xFCn\xFC indir",Repository:vn,public:Sn,local:wn,remote:An,"System requirements":"Sistem gereksinimleri","Feature not enabled":"\xD6zellik etkin de\u011Fil","Check the settings":"Ayarlar\u0131 kontrol edin",Website:Tn,Documentation:Dn,Versions:Bn,Security:Kn,"Recovery code":"Kurtarma kodu","Use a recovery code":"Kurtarma kodu kullan","Authentication code":"Do\u011Frulama kodu","Secret copied":"Gizli anahtar kopyaland\u0131","Recovery codes copied":"Kurtarma kodlar\u0131 kopyaland\u0131","Invalid code":"Ge\xE7ersiz kod","Incorrect code or password":"Kod veya parola yanl\u0131\u015F","Application Passwords":"Uygulama Parolalar\u0131","Generate a new app password":"Yeni uygulama parolas\u0131 olu\u015Ftur","Generated password":"Olu\u015Fturulan parola","This password will only be shown once after it is generated":"Bu parola yaln\u0131zca olu\u015Fturulduktan sonra bir kez g\xF6sterilecektir","Password name":"Parola ad\u0131",Manage:Yn,"Manage app passwords":"Uygulama parolalar\u0131n\u0131 y\xF6net","Password Authentication":"Parola ile Kimlik Do\u011Frulama","Two-Factor Authentication":"\u0130ki A\u015Famal\u0131 Do\u011Frulama","Two-Factor Authentication is enabled":"\u0130ki a\u015Famal\u0131 do\u011Frulama etkin","Two-Factor Authentication is disabled":"\u0130ki a\u015Famal\u0131 do\u011Frulama devre d\u0131\u015F\u0131","Scan this QR code using your authenticator app.":"Kimlik do\u011Frulama uygulaman\u0131zla bu QR kodu taray\u0131n.","(Such as FreeOTP, Proton Authenticator etc.)":"(\xD6rne\u011Fin FreeOTP, Proton Authenticator vb.)","Or enter this secret manually":"Veya bu gizli anahtar\u0131 elle girin","Valid with your TOTP code":"TOTP kodunuzla do\u011Frulay\u0131n","The secret has expired":"Gizli anahtar\u0131n s\xFCresi doldu","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Bu kodlar\u0131 g\xFCvenli bir yerde saklay\u0131n. \u0130ki a\u015Famal\u0131 do\u011Frulamaya eri\u015Fimi kaybetseniz bile hesab\u0131n\u0131za eri\u015Fmenizi sa\u011Flar.","These recovery codes are for one-time use only and will only be displayed here once.":"Bu kurtarma kodlar\u0131 tek kullan\u0131ml\u0131kt\u0131r ve burada yaln\u0131zca bir kez g\xF6r\xFCnt\xFClenir.","Overwrite Existing File(s)":"Mevcut dosya(lar\u0131) \xFCzerine yaz","Replace Existing File":"Mevcut dosyay\u0131 de\u011Fi\u015Ftir","Do you want to replace the existing file(s)?":"Mevcut dosya(lar\u0131) de\u011Fi\u015Ftirmek istiyor musunuz?",RenameFileToExisting:Pn,Save:Gn,"Line Wrap":"Sat\u0131r kayd\u0131rma","Read-only":"Salt okunur","Read-write":"Okuma/Yazma","Save And Exit":"Kaydet ve \xE7\u0131k","Close Without Saving":"Kaydetmeden kapat",Undo:En,Redo:Mn,me:_n,"The file is locked by":"Dosya \u015Fu ki\u015Fi taraf\u0131ndan kilitlendi",Unlock:Cn,Lock:xn,Exclusive:Un,"Send an unlock request":"Kilidi a\xE7ma iste\u011Fi g\xF6nder","sends you a request to unlock the file":"dosyan\u0131n kilidini a\xE7man\u0131z i\xE7in size bir istek g\xF6nderiyor","As the file owner, you can unlock the file or request the current lock owner to release it.":"Dosyan\u0131n sahibi olarak, dosyan\u0131n kilidini a\xE7abilir veya mevcut kilit sahibinden kilidi kald\u0131rmas\u0131n\u0131 isteyebilirsiniz.","The file is edited by":"Dosya \u015Fu ki\u015Fi taraf\u0131ndan d\xFCzenleniyor","A new update is available":"Yeni bir g\xFCncelleme mevcut",Fullscreen:Fn,Dimensions:Rn,"Start Slideshow":"Slayt g\xF6sterisini ba\u015Flat"};export{hi as Access,bi as Accessed,j as Account,Oi as Action,di as Active,L as Add,Hi as Added,O as Administration,N as Administrator,Ie as Anchored,A as Application,ke as Applications,rn as Asynchronously,i as Authentication,be as Avatar,Ni as Browse,t as Cancel,Ai as Client,Ti as Clients,aa as Clipboard,o as Close,gi as Comment,zi as Comments,ha as Compress,pe as Configuration,l as Confirm,Ji as Conflict,ee as Connection,ae as Connections,Ii as Copied,Je as Copy,li as Created,ti as Date,ba as Decompress,_i as Delete,ci as Description,en as Destination,Rn as Dimensions,Zi as Direction,un as Disable,la as Display,Dn as Documentation,zn as Done,Qe as Download,$e as Edit,Aa as Elements,Q as Email,na as Empty,sn as Enable,ji as Error,K as Event,Un as Exclusive,ki as Expiration,Xa as Expired,E as External,Y as File,P as Files,s as Filter,qi as Filtered,d as Filters,Da as Folder,Fn as Fullscreen,ce as Generate,_ as Group,M as Groups,ja as Guest,Qa as Guests,fe as Home,X as IP,ye as Import,ga as Info,R as Isolated,ze as Language,Wa as Link,Va as Links,ra as List,We as Location,xn as Lock,n as Login,Yn as Manage,de as Manager,me as Managers,ni as Me,oe as Member,se as Members,an as Mode,fa as Modified,Ze as Move,Vi as Moved,je as Name,Ta as New,bn as Next,D as Notification,B as Notifications,qe as Options,ii as Owner,r as Password,oi as Path,ai as Permissions,G as Personal,gn as Previous,F as Private,ve as Recents,Mn as Redo,ia as Refresh,ea as Remove,Wi as Removed,Xe as Rename,Pn as RenameFileToExisting,vn as Repository,Li as Reset,J as Role,Gn as Save,Ci as Scheduler,m as Search,Kn as Security,c as See,$ as Seen,nn as Sequentially,Qi as Server,Ve as Settings,Te as Share,ri as Shared,Ae as Shares,Ri as Simulate,za as Size,$i as Source,Re as Space,Le as Spaces,Z as Status,pa as Sync,ka as Synced,ma as Synchronization,ca as Synchronizations,ya as Synchronize,Sa as Tasks,wa as Text,Ea as Total,Fi as Transfers,we as Trash,mi as Type,En as Undo,pi as Unknown,re as Unlimited,Cn as Unlock,ge as Update,H as User,I as Users,Bn as Versions,Pi as View,yi as Visibility,U as Visible,Tn as Website,hn as Wizard,Ki as absent,q as account,si as active,Oe as anchored,T as application,he as applications,xi as async,Di as available,ie as available_space_is_low,pn as both,Bi as busy,vi as commented,fi as comments,Fa as create,Mi as day,Ei as days,Ln as default,Na as delete,da as delete_multiple_files,oa as delete_one_file,Ce as desktop_app_access,xe as desktop_app_sync,Ga as directories,Pa as directory,dn as disabled,on as enabled,$a as expired,ln as fast,Ka as file,Ya as files,Ba as folder,C as group,x as groups,Za as guest,Ja as guests,Me as guests_admin,xa as item,Ua as items,Ia as link,qa as links,wn as local,Gi as logout,ue as manager,_n as me,le as member,te as members,va as modified,Oa as modify,La as move,z as nb_actions,b as nb_active_tasks,g as nb_elements,v as nb_messages,w as nb_notifications,Ca as nb_selections,k as nb_tasks,kn as never,wi as no,Ma as no_selection,y as no_task,ei as none,Yi as offline,h as one_active_task,f as one_message,S as one_notification,_a as one_selection,p as one_task,ne as online,_e as personal_groups_admin,Ke as personal_space,Sn as public,Xi as recent,Se as recents,An as remote,yn as scheduler_unit_day,mn as scheduler_unit_hour,cn as scheduler_unit_minute,u as search,tn as secure,Ui as seq,Ha as share,Be as shared,De as shares,Ge as shares_access,Ee as shares_admin,Ne as spaces,Ye as spaces_access,Pe as spaces_admin,ui as suspended,ua as synchronization,fn as to,sa as trash_multiple_files,ta as trash_one_file,He as unanchored,W as user,V as users,Fe as webdav,Ue as webdav_access,Ra as write,Si as yes};
@@ -1 +0,0 @@
1
- var o="assets",e=".svg",r=`${o}/mimes`,i="file",c="directory",n="directory_share",p="directory_sync",m="directory_disabled",a="directory_error";function s(t){return`${r}/${t}${e}`}var l=`${o}/favicon${e}`,x=`${o}/logo-dark${e}`,d=`${o}/logo${e}`,g=`${o}/protected.png`,E=s(i),y=new Set(["application-gzip","application-zip","application-x-tar"]),D={DOCUMENT:"document",TEXT:"text",IMAGE:"image",MEDIA:"media",PDF:"pdf"},M=new Set(["rar","7z","iso","zip","tar","gz","bz2","xz","exe","dll","msi","cmd","apk","appimage","dmg","img","bin","vhd","vmdk","so","o","a","lib","sys","drv","cab"]);export{o as a,i as b,c,n as d,p as e,m as f,a as g,s as h,l as i,x as j,d as k,g as l,E as m,y as n,D as o,M as p};
@@ -1 +0,0 @@
1
- import{c as Y,d as Te,h as ee,m as ue}from"./chunk-MYM43ENO.js";import{a as Ht}from"./chunk-25PWAXTJ.js";import{b as Ut}from"./chunk-XHQEF2IX.js";import{l as Pt,n as Rt,o as Nt,p as $t,q as U,r as Ot,s as H,w as Mt}from"./chunk-O7UXVNR2.js";import{a as Ft,b as Bt}from"./chunk-5HYSNQR4.js";import{b as Q}from"./chunk-WJYVS27M.js";import{$a as de,Ba as he,Ca as Et,Cb as Z,Db as u,Gb as wt,Hb as xt,Ib as Tt,Ja as Ie,K as Ct,Mb as xe,N as At,Na as N,Nb as B,Ob as I,Pb as Dt,W as ce,Wa as bt,gb as yt,ib as vt,s as lt,t as pt,tb as It,w as ct,x as mt,y as ht,ya as k}from"./chunk-L3PDWJZ3.js";import{d as se}from"./chunk-LFAQLJZK.js";import{Bb as oe,Cd as ot,Dd as st,De as St,Eb as D,Ed as le,Ef as _t,G as _e,Gb as d,Jd as pe,Kd as at,L as Oe,Oa as l,Od as dt,Pc as qe,Qa as ke,Qb as je,Ra as Ue,Rb as J,Sb as P,Tb as c,Ub as q,Vb as O,Wb as Ke,Wf as kt,Xb as Ee,Yb as be,Yc as W,Zb as ye,ab as re,cc as G,ea as R,ed as Ge,f as Ne,fd as We,gc as Ve,ha as Me,hd as ae,ia as ne,ie as ut,ja as S,jd as Ze,kc as b,kd as Ye,lb as A,ld as ve,le as ft,mb as E,mc as y,nb as He,nd as _,oa as K,od as Xe,og as me,p as z,pa as V,pb as Ce,pd as ze,pg as we,qb as Ae,qd as Je,qg as Lt,ra as Fe,rb as m,rg as F,sb as s,sd as Qe,t as $e,tb as a,td as et,ub as g,ud as tt,v as f,vd as it,wd as nt,wf as gt,xa as Be,xd as rt}from"./chunk-BJARRIS6.js";import{n as M}from"./chunk-DM4NXKEP.js";import{a as v,b as L,d as Re}from"./chunk-KAVP6UXH.js";var X={BASE:`${ce}/link`,LINK:"link",VALIDATION:"validation",ACCESS:"access",AUTH:"auth"},jt=`${X.BASE}/${X.VALIDATION}`,Le=`${X.BASE}/${X.ACCESS}`,Kt=`${X.BASE}/${X.AUTH}`;var h={BASE:`${ce}/shares`,LIST:"list",CHILDREN:"children",LINKS:"links",LINKS_LIST:"links/list",LINKS_UUID:"links/uuid"},Vt=`${h.BASE}/${h.LIST}`,te=`${h.BASE}/${h.LINKS}`,qt=`${h.BASE}/${h.LINKS_LIST}`,Gt=`${h.BASE}/${h.LINKS_UUID}`;var Wt=new Me("WindowToken",typeof window<"u"&&window.document?{providedIn:"root",factory:()=>window}:{providedIn:"root",factory:()=>{}});var Zt=(()=>{class o{constructor(i,e,t){this.ngZone=i,this.document=e,this.window=t,this.copySubject=new Ne,this.copyResponse$=this.copySubject.asObservable(),this.config={}}configure(i){this.config=i}copy(i){if(!this.isSupported||!i)return this.pushCopyResponse({isSuccess:!1,content:i});let e=this.copyFromContent(i);return e?this.pushCopyResponse({content:i,isSuccess:e}):this.pushCopyResponse({isSuccess:!1,content:i})}get isSupported(){return!!this.document.queryCommandSupported&&!!this.document.queryCommandSupported("copy")&&!!this.window}isTargetValid(i){if(i instanceof HTMLInputElement||i instanceof HTMLTextAreaElement){if(i.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');return!0}throw new Error("Target should be input or textarea")}copyFromInputElement(i,e=!0){try{this.selectTarget(i);let t=this.copyText();return this.clearSelection(e?i:void 0,this.window),t&&this.isCopySuccessInIE11()}catch{return!1}}isCopySuccessInIE11(){let i=this.window.clipboardData;return!(i&&i.getData&&!i.getData("Text"))}copyFromContent(i,e=this.document.body){if(this.tempTextArea&&!e.contains(this.tempTextArea)&&this.destroy(this.tempTextArea.parentElement||void 0),!this.tempTextArea){this.tempTextArea=this.createTempTextArea(this.document,this.window);try{e.appendChild(this.tempTextArea)}catch{throw new Error("Container should be a Dom element")}}this.tempTextArea.value=i;let t=this.copyFromInputElement(this.tempTextArea,!1);return this.config.cleanUpAfterCopy&&this.destroy(this.tempTextArea.parentElement||void 0),t}destroy(i=this.document.body){this.tempTextArea&&(i.removeChild(this.tempTextArea),this.tempTextArea=void 0)}selectTarget(i){return i.select(),i.setSelectionRange(0,i.value.length),i.value.length}copyText(){return this.document.execCommand("copy")}clearSelection(i,e){i&&i.focus(),e.getSelection()?.removeAllRanges()}createTempTextArea(i,e){let t=i.documentElement.getAttribute("dir")==="rtl",n;n=i.createElement("textarea"),n.style.fontSize="12pt",n.style.border="0",n.style.padding="0",n.style.margin="0",n.style.position="absolute",n.style[t?"right":"left"]="-9999px";let p=e.pageYOffset||i.documentElement.scrollTop;return n.style.top=p+"px",n.setAttribute("readonly",""),n}pushCopyResponse(i){this.copySubject.observers.length>0&&this.ngZone.run(()=>{this.copySubject.next(i)})}pushCopyReponse(i){this.pushCopyResponse(i)}}return o.\u0275fac=function(i){return new(i||o)(ne(Ue),ne(Fe),ne(Wt,8))},o.\u0275prov=R({token:o,factory:o.\u0275fac,providedIn:"root"}),o})();var De=(function(o){return o[o.COMMON=0]="COMMON",o[o.LINK=1]="LINK",o})(De||{}),Yt=Object.values(k).filter(o=>o!==k.SHARE_INSIDE).sort().join(":");function ti(o,r){if(o&1&&g(0,"fa-icon",2),o&2){let i=d();P(i.repository.class),je("min-width",i.galleryMode.dimensions/3,"px")("min-height",i.galleryMode.dimensions/3,"px")("font-size",i.galleryMode.faSize/1.8,"px"),m("icon",i.repository.icon)}}function ii(o,r){if(o&1&&g(0,"fa-icon",5),o&2){let i=d(2);P(i.repository.class),m("icon",i.repository.icon)}}function ni(o,r){if(o&1&&(c(0),b(1,"translate")),o&2){let i=d(2);O(" ",y(1,1,i.repository.label,i.locale.language)," ")}}function ri(o,r){if(o&1&&c(0),o&2){let i=d(2);O(" ",i.repository.label," ")}}function oi(o,r){if(o&1&&(s(0,"div",1),A(1,ii,1,3,"fa-icon",3),s(2,"span",4),A(3,ni,2,4)(4,ri,1,1),a()()),o&2){let i=d();l(),E(i.showIcon?1:-1),l(2),E(i.repository.translate?3:4)}}var Xt=(()=>{let r=class r{constructor(){this.showIcon=!0,this.showFullPath=!1,this.locale=S(le),this.layout=S(Z),this.unknownRepository={icon:dt,label:"",class:"circle-primary-icon",translate:!1}}ngOnInit(){this.setRepository()}ngOnChanges(){this.setRepository()}setRepository(){this.share.parent?.id||this.share.parent?.id===0?this.repository={icon:B.SHARES,label:this.share.parent.name,class:"circle-purple-icon",translate:!1}:this.share.file?.ownerId?this.repository={icon:B.PERSONAL,label:xe.PERSONAL_FILES,class:"circle-primary-icon",translate:!0}:this.share.file?.space?.alias?this.repository={icon:B.SPACES,label:`${this.share.file.space.name}`,class:"circle-primary-icon",translate:!1}:this.share.externalPath?this.repository={icon:B.EXTERNAL,label:"External",class:"circle-primary-icon",translate:!0}:this.repository=v({},this.unknownRepository),this.showFullPath&&this.setFullPath()}setFullPath(){if(!this.repository.label)return;let e=this.share.file?.path?this.share.file.path.split("/").filter(t=>t&&t!=="."):[];this.share.parent?.id&&!this.share.file?.id&&this.share.file?.path.indexOf("/")===-1?e.shift():this.share.file?.space?.alias&&this.share.file.space?.root?.alias&&(e.length?e.unshift(this.share.file.space.root.name):e.push(this.share.file.space.root.name)),this.repository.label===xe.PERSONAL_FILES&&(this.repository.label=this.layout.translateString(this.repository.label)),e.length&&(this.repository.label=`${this.repository.label}/${e.join("/")}`)}};r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=re({type:r,selectors:[["app-share-repository"]],inputs:{share:"share",galleryMode:"galleryMode",showIcon:"showIcon",showFullPath:"showFullPath"},features:[Be],decls:2,vars:1,consts:[[3,"icon","class","min-width","min-height","font-size"],[1,"d-flex","align-items-center","overflow-wrap-and-whitespace"],[3,"icon"],[1,"me-2",3,"icon","class"],["draggable","false",1,"no-pointer-events"],[1,"me-2",3,"icon"]],template:function(t,n){t&1&&A(0,ti,1,9,"fa-icon",0)(1,oi,5,2,"div",1),t&2&&E(n.galleryMode?0:1)},dependencies:[me,pe],encapsulation:2});let o=r;return o})();function Se(o){o.file?.id?(o.file.isDir&&(o.file.mime=o.parent?.alias?Te:Y),o.mimeUrl=ee(o.file.mime)):o.mimeUrl=ee(o.parent?.alias?Te:Y)}function zt(o){let r,i=o.file.path?o.file.path.split("/").filter(t=>t&&t!=="."):[];if(o.parent?.id){if(!i.length)return[I.SPACES_SHARES,o.parent.alias];r=`${I.SPACES_SHARES}/${o.parent.alias}`}else o.file.space?.alias?o.file.inTrash?r=`${I.SPACES_TRASH}/${o.file.space.alias}`:(r=`${I.SPACES_FILES}/${o.file.space.alias}`,o.file.space?.root?.alias&&(i.length?r=`${r}/${o.file.space.root.alias}`:i.push(o.file.space.root.name))):o.file?.ownerId?r=`${o.file.inTrash?I.PERSONAL_TRASH:I.PERSONAL_FILES}`:console.warn("unable to find the right file path",o);let e=i.pop();return r&&i.length&&(r=`${r}/${i.join("/")}`),[r,e]}var w=class{constructor(r){this.members=[],this.links=[],this.hPerms={},this.setMembers(N("members",r),r.externalPath||r.file?.isDir?[k.SHARE_INSIDE]:[]),Object.assign(this,r),Se(this),this.checkFile(),this.setPermissions()}fallBackMimeUrl(){this.mimeUrl=ue}setMembers(r,i){if(r)for(let e of r)e.linkId?this.links.push(new H(e,[...i,k.SHARE_OUTSIDE])):this.members.push(new H(e,i))}checkFile(){this.file&&(!this.file.path&&this.file.space.root?.name&&(this.file.path=this.file.space.root.name,this.file.name=this.file.space.root.name),this.file.permissions&&(this.file.permissions=this.file.permissions.split(":").filter(r=>r===k.SHARE_INSIDE||r===k.ADD&&this.file.id&&!this.file.isDir?!1:!(r===k.DELETE&&this.file.id&&!this.file.isDir)).join(":")))}setPermissions(){typeof this.file?.permissions=="string"?this.hPerms=U(this.file.permissions):this.externalPath&&(this.hPerms=U(Yt))}};var Jt=(()=>{let r=class r{constructor(){this.http=S(W),this.router=S(se)}getShare(e){return this.http.get(`${h.BASE}/${e}`).pipe(f(t=>new w(t)))}createShare(e){return this.http.post(h.BASE,e).pipe(f(t=>new w(t)))}updateShare(e){return this.http.put(`${h.BASE}/${e.id}`,e).pipe(f(t=>new w(t)))}deleteShare(e){return this.http.delete(`${h.BASE}/${e}`)}listShares(){return this.http.get(Vt)}getShareChild(e,t){return this.http.get(`${h.BASE}/${e}/${h.CHILDREN}/${t}`).pipe(f(n=>new w(n)))}updateShareChild(e,t,n){return this.http.put(`${h.BASE}/${e}/${h.CHILDREN}/${t}`,n).pipe(f(p=>new w(p)))}deleteShareChild(e,t){return this.http.delete(`${h.BASE}/${e}/${h.CHILDREN}/${t}`)}listChildShares(e){return this.http.get(`${h.BASE}/${e}/${h.CHILDREN}`)}initShareFromFile(e,t,n=!1,p=!1){let C,x=null,T=v({id:0,name:"",createdAt:new Date,modifiedAt:new Date,storageIndexing:!0,enabled:!0},n?{parent:{id:0,ownerId:0,alias:t.space.alias,name:t.space.name}}:{});if(t){p&&(x=t.root.id);let Pe=null;(t?.root?.owner.login===e.login||!t?.space?.alias)&&(t.space=null,Pe=e.id),C=new w(L(v({},T),{name:t.name,file:L(v({},t),{path:p?".":bt(t.path,2),ownerId:Pe})}))}else C=new w(T);return[C,x]}goTo(e){if(!e.id)return $e(z(!1));if(e.externalPath&&!e.parent?.id)return this.router.navigate([I.SPACES_SHARES],{queryParams:{select:e.name}});if(e.parent?.id&&!e.file?.id&&e.file?.path.indexOf("/")===-1)return this.router.navigate([I.SPACES_SHARES],{queryParams:{select:e.parent.name}});{let[t,n]=zt(e);return this.router.navigate([t],{queryParams:{select:n}})}}};r.\u0275fac=function(t){return new(t||r)},r.\u0275prov=R({token:r,factory:r.\u0275fac,providedIn:"root"});let o=r;return o})();var $=class{constructor(r){this.hTimeExpirationAgo=0,this.hPerms={},this.newly=0,Object.assign(this,r),Se(this),this.updatePermission(),this.updateTimes()}fallBackMimeUrl(){this.mimeUrl=ue}updatePermission(){this.hPerms=U(this.link.permissions)}updateTimes(){if(this.hTimeAccessAgo=M(this.link.currentAccess).fromNow(!0),this.newly=de(this.link.currentAccess),this.link.expiresAt){this.link.expiresAt=new Date(M(this.link.expiresAt).local().format("YYYY-MM-DD"));let r=Math.max(0,M(this.link.expiresAt).diff(M(),"hours"));r===0?this.hTimeExpirationAgo=0:r<=24?this.hTimeExpirationAgo=1:this.hTimeExpirationAgo=Math.round(r/24)+1}else this.hTimeExpirationAgo=0}};var j=class{constructor(r){this.roots=[],this.managers=[],this.members=[],this.links=[],this.hPerms={},this.newly=0,this.hPerms=U(r.permissions),this.setMembers(N("members",r)),this.setRoots(N("roots",r)),Object.assign(this,r),this.hTimeAgo=M(this.modifiedAt).fromNow(!0),this.newly=de(this.modifiedAt),this.sort()}addRoot(r,i=!1){r.hPerms=Nt(r.permissions,[k.SHARE_INSIDE]),r.owner?.login&&(r.owner.avatarUrl=It(r.owner.login)),r.file.mimeUrl=ee(r.file?.mime?r.file.mime:Y),i?this.roots.unshift(r):this.roots.push(r),r.isDir=r.file.mime===Y||!!r.externalPath}havePermission(r){return this.permissions.indexOf(r)>-1}setMembers(r){if(r)for(let i of r){let e=new H(i);e.isLink?this.links.push(e):e.spaceRole===he.IS_MANAGER?this.managers.push(e):this.members.push(e)}}setRoots(r){if(r)for(let i of r)this.addRoot(i)}sort(){Q(this.roots,"createdAt",!1),Q(this.managers,"createdAt",!1),Q(this.members,"createdAt",!1),Q(this.links,"createdAt",!1)}};var Qt=(()=>{let r=class r{constructor(){this.http=S(W)}listSpaces(){return this.http.get(wt).pipe(f(e=>e.map(t=>new j(t))))}getSpace(e){return this.http.get(`${u.BASE}/${e}`).pipe(f(t=>new j(t)))}getUserSpaceRoots(e){return this.http.get(`${u.BASE}/${e}/${u.ROOTS}`)}createUserSpaceRoots(e,t){return this.http.post(`${u.BASE}/${e}/${u.ROOTS}`,t)}updateUserSpaceRoots(e,t){return this.http.put(`${u.BASE}/${e}/${u.ROOTS}`,t)}updateSpace(e){return this.http.put(`${u.BASE}/${e.id}`,e).pipe(f(t=>t?new j(t):null))}createSpace(e){return this.http.post(u.BASE,e).pipe(f(t=>(t.permissions=Et,new j(t))))}deleteSpace(e,t){return this.http.request("delete",`${u.BASE}/${e}`,{body:t})}searchSpaces(e){return this.http.request("search",u.BASE,{body:e})}listSpaceShares(e){return this.http.get(`${u.BASE}/${e}/${u.SHARES}`)}getSpaceShare(e,t){return this.http.get(`${u.BASE}/${e}/${u.SHARES}/${t}`).pipe(f(n=>new w(n)))}updateSpaceShare(e,t){return this.http.put(`${u.BASE}/${e}/${u.SHARES}/${t.id}`,t).pipe(f(n=>new w(n)))}deleteSpaceShare(e,t){return this.http.delete(`${u.BASE}/${e}/${u.SHARES}/${t}`)}getSpaceShareLink(e,t){return this.http.get(`${u.BASE}/${e}/${u.LINKS}/${t}`).pipe(f(n=>new $(n)))}listTrashBins(){return this.http.get(xt)}checkSpaceRootPath(e){return this.http.post(Tt,{path:e})}};r.\u0275fac=function(t){return new(t||r)},r.\u0275prov=R({token:r,factory:r.\u0275fac,providedIn:"root"});let o=r;return o})();var ai=o=>({dateInputFormat:"YYYY-MM-DD",containerClass:"theme-dark-blue",returnFocusToInput:!0,minDate:o,showWeekNumbers:!1}),li=(o,r)=>r.key;function pi(o,r){o&1&&(s(0,"span",4),c(1,"Edit link"),a())}function ci(o,r){o&1&&(s(0,"span",4),c(1,"New link"),a())}function mi(o,r){o&1&&g(0,"div",54)}function hi(o,r){if(o&1){let i=oe();s(0,"button",53),b(1,"translate"),ye("ngModelChange",function(t){let n=K(i).$implicit,p=d(3);return be(p.permissions[n.key],t)||(p.permissions[n.key]=t),V(t)}),D("ngModelChange",function(){K(i);let t=d(3);return V(t.onPermissionChange())}),g(2,"fa-icon",50),a(),A(3,mi,1,0,"div",54)}if(o&2){let i=r.$implicit,e=r.$index,t=r.$count,n=d(3);Ee("ngModel",n.permissions[i.key]),m("tooltip",y(1,4,n.SPACES_PERMISSIONS_TEXT[i.key].text,n.locale.language)),l(2),m("icon",n.SPACES_PERMISSIONS_TEXT[i.key].icon),l(),E(e===t-1?3:-1)}}function di(o,r){if(o&1&&(Ce(0,hi,4,7,null,null,li),b(2,"keyvalue")),o&2){let i=d(2);Ae(y(2,0,i.permissions,i.originalOrderKeyValue))}}function ui(o,r){if(o&1&&(s(0,"div",51),g(1,"app-share-repository",55),a()),o&2){let i=d(2);l(),m("share",i.share)("showIcon",!0)("showFullPath",!0)}}function fi(o,r){if(o&1){let i=oe();s(0,"div",44),g(1,"fa-icon",45),s(2,"div",46)(3,"span"),c(4),a(),s(5,"span",47),c(6),a()(),s(7,"div",48),A(8,di,3,3),s(9,"button",49),b(10,"translate"),D("click",function(){K(i);let t=d();return V(t.toggleRequireAuth())}),g(11,"fa-icon",50),a(),s(12,"button",49),b(13,"translate"),D("click",function(){K(i);let t=d();return V(t.copyToClipboard())}),g(14,"fa-icon",50),a()()(),A(15,ui,2,3,"div",51),g(16,"hr",52)}if(o&2){let i=d();l(),m("icon",i.icons.links),l(3),q(i.linkForm.value.name||i.linkForm.value.shareName),l(2),q(i.linkForm.value.email),l(2),E(i.share&&i.permissions?8:-1),l(),P(G("btn btn-sm ",i.linkForm.value.requireAuth?"btn-success":"btn-warning")),m("tooltip",y(10,15,"Password",i.locale.language)),l(2),m("icon",i.linkForm.value.requireAuth?i.icons.faLock:i.icons.faLockOpen),l(),P(G("btn btn-sm ms-2 ",i.linkWasCopied?"btn-info":"btn-secondary")),m("tooltip",y(13,18,"Copy link",i.locale.language)),l(2),m("icon",i.linkWasCopied?i.icons.faClipboardCheck:i.icons.faClipboard),l(),E(i.share?15:-1)}}function Si(o,r){if(o&1&&(s(0,"span"),c(1),a()),o&2){let i=d();P(G("badge rounded-pill ",(i.share?i.share.link.nbAccess:i.link.nbAccess)>=i.linkForm.value.limitAccess?"bg-danger":"bg-success")),l(),Ke(" ",i.share?i.share.link.nbAccess:i.link.nbAccess,"/",i.linkForm.value.limitAccess," ")}}function gi(o,r){if(o&1&&(s(0,"span",20),c(1),a()),o&2){let i=d();l(),q(i.share?i.share.link.nbAccess:i.link.nbAccess)}}function _i(o,r){if(o&1&&(s(0,"div",27)(1,"label",56),c(2,"Share name"),a(),g(3,"input",57),b(4,"translate"),a(),s(5,"div",27)(6,"label",58),c(7,"Share description"),a(),g(8,"input",59),b(9,"translate"),a()),o&2){let i=d();l(3),J("is-invalid",i.linkForm.controls.shareName.invalid),m("placeholder",y(4,4,"Share name",i.locale.language)),l(5),m("placeholder",y(9,7,"Share description",i.locale.language))}}function ki(o,r){if(o&1&&(s(0,"option",30),c(1),a()),o&2){let i=r.$implicit,e=d();m("ngValue",i),l(),q(e.i18nLanguageText[i])}}function Ci(o,r){if(o&1&&(s(0,"div",37),g(1,"app-password-strength-bar",60),a()),o&2){let i=d();l(),m("passwordToCheck",i.password)}}function Ai(o,r){if(o&1){let i=oe();s(0,"button",61),D("click",function(){K(i);let t=d();return V(t.confirmDeletion=!0)}),c(1," Remove "),a()}if(o&2){let i=d();m("disabled",i.confirmDeletion)}}var ge=(()=>{let r=class r{constructor(){this.layout=S(Z),this.parentSpaceId=null,this.isSharesRepo=!1,this.inSharesList=!1,this.submitEvent=new ke,this.shareChange=new ke,this.locale=S(le),this.confirmDeletion=!1,this.submitted=!1,this.SPACES_PERMISSIONS_TEXT=Dt,this.originalOrderKeyValue=yt,this.icons={faEye:ut,faEyeSlash:kt,links:B.LINKS,faClipboard:St,faClipboardCheck:ft,faLock:_t,faLockOpen:gt},this.languages=this.layout.getLanguages(),this.minDate=Ie(),this.defaultPassword=this.layout.translateString(Ct),this.passwordMinLength=8,this.password="",this.linkIsExpired=!1,this.linkIsHovered=!1,this.linkWasCopied=!1,this.i18nLanguageText=At,this.userService=S(Mt),this.sharesService=S(Jt),this.linksService=S(ei),this.spacesService=S(Qt),this.minDate.setDate(this.minDate.getDate()+1)}ngOnInit(){this.link?this.initLink():this.file?this.initFile():this.initShareLink(),this.linkForm.value.requireAuth&&(this.password=this.defaultPassword),this.linkForm.value.expiresAt&&this.isLinkIsExpired(this.share?this.share.link.expiresAt:this.link.expiresAt),this.linkForm.controls.expiresAt.valueChanges.subscribe(e=>this.isLinkIsExpired(e))}onPermissionChange(){let e=Ot(this.permissions);this.linkForm.controls.permissions.setValue(e),e!==this.share.link.permissions?this.linkForm.controls.permissions.markAsDirty():this.linkForm.controls.permissions.markAsPristine()}toggleRequireAuth(){this.linkForm.controls.requireAuth.setValue(!this.linkForm.value.requireAuth),this.linkForm.controls.requireAuth.markAsDirty()}copyToClipboard(){this.linksService.copyLinkToClipboard(this.share?this.share.link.uuid:this.link.uuid),this.linkWasCopied=!0,this.layout.sendNotification("info","Link copied",this.linkForm.value.name||this.linkForm.value.shareName),setTimeout(()=>this.linkWasCopied=!1,3e3)}onCancel(){this.confirmDeletion?this.confirmDeletion=!1:this.layout.closeDialog()}onSubmit(){if(this.submitted=!0,this.confirmDeletion){(this.parentSpaceId?this.spacesService.deleteSpaceShare(this.parentSpaceId,this.share.id):this.sharesService.deleteShare(this.share.id)).subscribe({next:()=>{this.layout.sendNotification("success","Link deleted",this.share.link.name||this.share.name),this.shareChange.emit(["delete",this.share]),this.layout.closeDialog()},error:p=>{this.layout.sendNotification("error","Delete share",this.share.name,p),this.layout.closeDialog()}});return}if(this.file?.id){let t=this.share,{link:n}=t,p=Re(t,["link"]),C=L(v(v({},n),this.linkForm.value),{password:this.mustIncludePassword()?this.password:void 0});p.name=N("shareName",C),p.description=N("shareDescription",C);let x=this.linksService.shareLinkGuestToMember(-1,-1,C);this.sharesService.createShare(L(v({},p),{type:De.LINK,links:[x]})).subscribe({next:T=>{this.shareChange.emit(["add",T]),this.layout.sendNotification("success","Link created",n.name||T.name),this.layout.closeDialog()},error:T=>{this.layout.sendNotification("error","Link error",this.share.name,T),this.layout.closeDialog()}});return}let e={};for(let n in this.linkForm.controls)this.linkForm.controls[n].dirty&&(e[n]=this.linkForm.controls[n].value);if(this.mustIncludePassword()&&(e.password=this.password),this.share?.id){Object.keys(e).length&&this.linksService.updateLinkFromSpaceOrShare(this.share.link.id,this.share.id,Lt.SHARE,e).subscribe({next:n=>{this.share.name=this.linkForm.value.shareName,this.share.description=this.linkForm.value.shareDescription,this.share.link=Object.assign(this.share.link,n),this.share.updateTimes(),this.share.updatePermission(),this.shareChange.emit(["update",this.share]),this.layout.closeDialog()},error:n=>{this.layout.sendNotification("error","Link error",this.share.link.name||this.share.name,n),this.layout.closeDialog()}}),this.layout.closeDialog();return}this.submitEvent.emit(e)}initFile(){let e=this.sharesService.initShareFromFile(this.userService.user,this.file,this.isSharesRepo,this.inSharesList)[0];this.share=L(v({},e),{link:{id:-1,userId:-1,uuid:"",isActive:!0,requireAuth:!1,permissions:"",nbAccess:0,limitAccess:0}}),this.linksService.genUUID().subscribe(t=>this.share.link.uuid=t),this.initShareLink(),this.onPermissionChange()}initShareLink(){this.linkForm=new ve({shareName:new _(this.share.name,ae.required),shareDescription:new _(this.share.description||""),name:new _(this.share.link?.name||""),email:new _(this.share.link?.email||"",ae.email),language:new _(this.share.link.language||null),limitAccess:new _(this.share.link.limitAccess||null),expiresAt:new _(this.share.link.expiresAt||null),requireAuth:new _(this.share.link.requireAuth||!1),permissions:new _(this.share.link.permissions),isActive:new _(this.share.link.isActive)}),this.permissions=$t(this.share.file.permissions,this.share.link.permissions,[k.SHARE_INSIDE,k.SHARE_OUTSIDE,...this.share.file.isDir?[]:[k.DELETE,k.ADD]])}initLink(){this.linkForm=new ve({shareName:new _(""),shareDescription:new _(""),name:new _(this.link.name||""),email:new _(this.link.email||"",ae.email),language:new _(this.link.language||null),limitAccess:new _(this.link.limitAccess||null),expiresAt:new _(this.link.expiresAt||null),requireAuth:new _(this.link.requireAuth||!1),permissions:new _(this.link.permissions),isActive:new _(this.link.isActive)}),this.link.id||(this.linkForm.controls.name.markAsDirty(),this.linkForm.controls.isActive.markAsDirty())}isLinkIsExpired(e){if(e==null){if(this.linkIsExpired=!1,e===null)return;this.linkForm.controls.expiresAt.setValue(null)}this.linkIsExpired=Ie()>=e}mustIncludePassword(){return!!this.password.length&&this.password!==this.defaultPassword}};r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=re({type:r,selectors:[["app-link-dialog"]],inputs:{share:"share",parentSpaceId:"parentSpaceId",link:"link",file:"file",isSharesRepo:"isSharesRepo",inSharesList:"inSharesList"},outputs:{submitEvent:"submitEvent",shareChange:"shareChange"},decls:73,vars:52,consts:[[1,"modal-header","align-items-center"],[1,"modal-title"],[1,"me-2",3,"icon"],[1,"modal-title","ms-auto"],["l10nTranslate",""],["aria-label","Close","type","button",1,"btn-close","btn-close-white","ms-2",3,"click"],[1,"modal-body"],["autocomplete","off",3,"formGroup"],[1,"d-flex"],[1,"d-flex","flex-column","flex-grow-1"],[1,"d-flex","align-items-center","cursor-pointer","py-2",3,"mouseover","mouseleave","focus","click"],["for","link","l10nTranslate",""],["id","link",1,"ms-auto"],[1,"d-flex","align-items-center","py-2"],["for","state","l10nTranslate","",1,"cursor-pointer","me-auto"],[1,"d-flex","align-items-center","form-check","form-switch","cursor-pointer"],["id","state","formControlName","isActive","type","checkbox","role","button",1,"form-check-input"],["for","access","l10nTranslate",""],["id","access",1,"ms-auto"],[3,"class"],[1,"badge","rounded-pill","bg-success"],[1,"d-flex","align-items-center"],["for","guestName","l10nTranslate",""],["id","guestName","formControlName","name","type","text",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder"],[1,"d-flex","align-items-center","justify-content-between","px-0"],["for","guestEmail","l10nTranslate",""],["id","guestEmail","autocomplete","off","formControlName","email","type","email",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder"],[1,"d-flex","align-items-center","justify-content-between"],["for","guestLanguage","l10nTranslate",""],["id","guestLanguage","formControlName","language",1,"form-control","form-select","form-select-sm","ms-auto","w-50"],[3,"ngValue"],["for","limitAccess","l10nTranslate",""],["id","limitAccess","formControlName","limitAccess","min","1","type","number",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder"],["for","expiration","l10nTranslate",""],["bsDatepicker","","id","expiration","formControlName","expiresAt","placement","left","type","text",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder","bsConfig"],[1,"d-flex","align-items-center","px-0"],["for","requireAuth","translate","",1,"cursor-pointer","me-auto"],[1,"d-flex","align-items-center","d-none","d-sm-flex","mx-auto"],["id","requireAuth","formControlName","requireAuth","type","checkbox","role","button",1,"form-check-input"],["placeholder","Set a password",2,"width","45%",3,"passwordChange","isRequired","disabled","passwordMinLength","password","showGenerator"],[1,"modal-footer"],["type","button","l10nTranslate","",1,"btn","btn-sm","btn-danger",3,"disabled"],["data-dismiss","modal","type","button","l10nTranslate","",1,"btn","btn-sm","btn-secondary","ms-auto",3,"click"],["type","button","l10nTranslate","",3,"click","disabled"],[1,"d-flex","flex-fill","align-items-center"],[1,"circle-primary-icon","me-2",3,"icon"],[1,"d-flex","flex-column","overflow-wrap-and-whitespace","me-2"],[1,"fs-xxxs"],[1,"d-flex","ms-auto"],["container","body","type","button",3,"click","tooltip"],["size","lg",3,"icon"],[1,"d-flex","align-items-center","d-none","d-sm-flex","py-2"],[1,"my-2"],["btnCheckbox","","type","button",1,"btn","btn-sm","btn-custom","me-0","ms-2",3,"ngModelChange","ngModel","tooltip"],[1,"vr","mx-2"],["id","file",3,"share","showIcon","showFullPath"],["for","shareName","l10nTranslate",""],["id","shareName","formControlName","shareName","type","email",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder"],["for","shareDescription","l10nTranslate",""],["id","shareDescription","formControlName","shareDescription","type","email",1,"form-control","form-control-sm","ms-auto","w-50",3,"placeholder"],[3,"passwordToCheck"],["type","button","l10nTranslate","",1,"btn","btn-sm","btn-danger",3,"click","disabled"]],template:function(t,n){t&1&&(s(0,"div",0)(1,"h4",1),g(2,"fa-icon",2),s(3,"span"),c(4),a()(),s(5,"h4",3),A(6,pi,2,0,"span",4)(7,ci,2,0,"span",4),a(),s(8,"button",5),D("click",function(){return n.layout.closeDialog()}),a()(),s(9,"div",6),A(10,fi,17,21),s(11,"form",7)(12,"div",8)(13,"div",9)(14,"div",10),D("mouseover",function(){return n.linkIsHovered=!0})("mouseleave",function(){return n.linkIsHovered=!1})("focus",function(){return n.linkIsHovered=!0})("click",function(){return n.copyToClipboard()}),s(15,"label",11),c(16,"Link"),a(),s(17,"span",12),c(18),a()(),s(19,"div",13)(20,"label",14),c(21,"Active"),a(),s(22,"div",15),g(23,"input",16),s(24,"span"),c(25),b(26,"translate"),a()()(),s(27,"div",13)(28,"label",17),c(29,"Current access count"),a(),s(30,"span",18),A(31,Si,2,5,"span",19)(32,gi,2,1,"span",20),a()(),A(33,_i,10,10),s(34,"div",21)(35,"label",22),c(36,"Guest name"),a(),g(37,"input",23),b(38,"translate"),a(),s(39,"div",24)(40,"label",25),c(41,"Guest email"),a(),g(42,"input",26),b(43,"translate"),a(),s(44,"div",27)(45,"label",28),c(46,"Guest language"),a(),s(47,"select",29),Ce(48,ki,2,2,"option",30,He),a()(),s(50,"div",27)(51,"label",31),c(52,"Limit access"),a(),g(53,"input",32),b(54,"translate"),a(),s(55,"div",27)(56,"label",33),c(57,"Expiration"),a(),g(58,"input",34),b(59,"translate"),a(),s(60,"div",35)(61,"label",36),c(62,"Password"),a(),A(63,Ci,2,1,"div",37),s(64,"div",15),g(65,"input",38),a(),s(66,"app-input-password",39),ye("passwordChange",function(C){return be(n.password,C)||(n.password=C),C}),a()()()()()(),s(67,"div",40),A(68,Ai,2,1,"button",41),s(69,"button",42),D("click",function(){return n.onCancel()}),c(70,"Cancel"),a(),s(71,"button",43),D("click",function(){return n.onSubmit()}),c(72),a()()),t&2&&(l(2),m("icon",n.icons.links),l(2),q(n.linkForm.value.name||n.linkForm.value.shareName),l(2),E(n.share!=null&&n.share.id||n.link!=null&&n.link.id?6:7),l(4),E(n.share||n.link?10:-1),l(),m("formGroup",n.linkForm),l(6),J("text-primary",n.linkIsHovered),l(),O(" ",n.share?n.share.link.uuid:n.link.uuid," "),l(6),P(G("badge rounded-pill ms-3 ",n.linkForm.value.isActive?"bg-primary":"bg-danger")),l(),O(" ",y(26,35,n.linkForm.value.isActive?"yes":"no",n.locale.language)," "),l(6),E(n.linkForm.value.limitAccess?31:32),l(2),E(n.share?33:-1),l(4),m("placeholder",y(38,38,"Guest name",n.locale.language)),l(5),J("is-invalid",n.linkForm.controls.email.invalid),m("placeholder",y(43,41,"Guest email",n.locale.language)),l(6),Ae(n.languages),l(5),m("placeholder",y(54,44,"Unlimited",n.locale.language)),l(5),J("text-danger",n.linkIsExpired),m("placeholder",y(59,47,"Never expires",n.locale.language))("bsConfig",Ve(50,ai,n.minDate)),l(5),E(n.linkForm.value.requireAuth&&n.password!==n.defaultPassword?63:-1),l(3),m("isRequired",n.linkForm.value.requireAuth)("disabled",!n.linkForm.value.requireAuth)("passwordMinLength",n.passwordMinLength),Ee("password",n.password),m("showGenerator",!0),l(2),E(n.share!=null&&n.share.id?68:-1),l(3),P(G("btn btn-sm ",n.confirmDeletion?"btn-danger":"btn-primary")),m("disabled",n.linkForm.invalid||n.linkForm.controls.requireAuth.value&&n.password.length<n.passwordMinLength||n.submitted),l(),O(" ",n.confirmDeletion?"Confirm deletion":"Confirm"," "))},dependencies:[me,at,ht,ct,mt,Bt,Ft,ot,ze,it,nt,We,Je,Ge,tt,Ze,Ye,rt,Xe,Pt,pt,lt,st,Qe,et,Xt,Ht,qe,pe],encapsulation:2});let o=r;return o})();var ei=(()=>{let r=class r{constructor(){this.router=S(se),this.http=S(W),this.layout=S(Z),this.authService=S(Ut),this.clipboard=S(Zt)}shareLinksList(){return this.http.get(qt).pipe(f(e=>e.map(t=>new $(t))))}shareLink(e){return this.http.get(`${te}/${e}`).pipe(f(t=>new $(t)))}shareLinkChild(e,t){return this.http.get(`${te}/${e}/${h.CHILDREN}/${t}`).pipe(f(n=>new $(n)))}linkFromSpaceOrShare(e,t,n){return this.http.get(`${te}/${e}/${n}/${t}`)}linkValidation(e){return this.http.get(`${jt}/${e}`).pipe(f(t=>t.ok?t.link:(t.error&&(t.error===we.UNAUTHORIZED?this.router.navigate([`${F.LINK}/${e}/${F.AUTH}`]).catch(console.error):this.router.navigate([`${F.LINK}/${e}/${t.error}`]).catch(console.error)),!1)),_e(()=>(this.authService.logout(),z(!1))))}linkAccess(e,t){t.share?.isDir||t.space?.alias?this.http.get(`${Le}/${e}`).subscribe(n=>{this.authService.initUserFromResponse(n),t.space?this.router.navigate([I.SPACES,t.space.alias]).catch(console.error):this.router.navigate([I.SPACES_SHARES,t.share.alias]).catch(console.error)}):vt(`${Le}/${e}`)}linkAuthentication(e,t){return this.http.post(`${Kt}/${e}`,{password:t}).pipe(f(n=>(this.authService.initUserFromResponse(n),this.router.navigate([`${F.LINK}/${e}`]).catch(console.error),!0)),_e(n=>(n.error.message===we.UNAUTHORIZED?this.layout.sendNotification("warning","Link","Bad password"):this.router.navigate([`${F.LINK}/${e}/${n.error.message}`]).catch(console.error),z(!1))))}copyLinkToClipboard(e){this.clipboard.copyFromContent(this.genLink(e))}genUUID(){return this.http.get(Gt).pipe(f(e=>e.uuid))}createLinkDialog(e){this.genUUID().subscribe(t=>{let n=this.layout.openDialog(ge,"md",{initialState:{link:{name:e.name,uuid:t,isActive:!0,nbAccess:0}}});this.subscribeToSubmitLinkModal(n,e)})}updateLinkFromSpaceOrShare(e,t,n,p){return this.http.put(`${te}/${e}/${n}/${t}`,p)}editLinkDialog(e,t,n){if(t.id===0||e?.linkSettings?.uuid){let p=this.layout.openDialog(ge,"md",{initialState:{link:e.linkSettings}});this.subscribeToSubmitLinkModal(p,t,e)}else this.linkFromSpaceOrShare(e.linkId,t.id,n).subscribe({next:p=>{let C=this.layout.openDialog(ge,"md",{initialState:{link:L(v({},p),{permissions:e.permissions})}});this.subscribeToSubmitLinkModal(C,t,e)},error:p=>this.layout.sendNotification("error","Link error",e.name||t.name,p)})}shareLinkGuestToMember(e,t,n){return new H({id:e,linkId:t,name:n.name,description:n.email,createdAt:n.createdAt,permissions:n.permissions,type:Rt.LINK,spaceRole:he.IS_MEMBER,linkSettings:n},[k.SHARE_INSIDE,k.SHARE_OUTSIDE])}subscribeToSubmitLinkModal(e,t,n){e.content.submitEvent.pipe(Oe(1)).subscribe(p=>{if(Object.keys(p).length){let C=Object.assign(e.content.link,p),x=this.shareLinkGuestToMember(C.userId||-(t.links.length+1),n?.linkId||-(t.links.length+1),C);x.linkId?t.links=[x,...t.links.filter(T=>T.linkId!==x.linkId)]:t.links=[x,...t.links]}e.content.layout.closeDialog()})}genLink(e){return`${document.location.origin}/#/${F.LINK}/${e}`}};r.\u0275fac=function(t){return new(t||r)},r.\u0275prov=R({token:r,factory:r.\u0275fac,providedIn:"root"});let o=r;return o})();export{Zt as a,De as b,Xt as c,Se as d,w as e,Jt as f,j as g,Qt as h,ge as i,ei as j};
@@ -1,2 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var o="Autenticaci\xF3n",i="Usuario",r="Contrase\xF1a",n="Confirmar",s="Cancelar",t="Cerrar",c="Filtrar",d="Filtros",l="buscar",u="Buscar",p="Ver",m="Ninguna tarea",h="{{ nb }} tarea completada",b="{{ nb }} tareas completadas",v="{{ nba }} tarea en curso de {{ nb }}",g="{{ nba }} tareas en curso de {{ nb }}",f="{{nb}} elemento(s)",y="{{nb}} acci\xF3n(es)",E="{{ nb }} mensaje nuevo",w="{{ nb }} mensajes nuevos",S="{{ nb }} notificaci\xF3n no le\xEDda",C="{{ nb }} notificaciones no le\xEDdas",A="Aplicaci\xF3n",N="aplicaci\xF3n",x="Notificaci\xF3n",z="Notificaciones",T="Evento",D="Archivo",k="Archivos",P="Personales",L="Externo",U="Grupos",_="Grupo",G="grupo",q="grupos",M="Visible",R="Privado",F="Aislado",I="A\xF1adir",Y="Administrador",V="Administraci\xF3n",O="Usuario",W="usuario",j="Usuarios",B="usuarios",H="cuenta",Q="Cuenta",K="Correo electr\xF3nico",J="Estado",X="Rol",Z="IP",$="Visto",ee="Conexi\xF3n",ae="Conexiones",oe="Espacio disponible bajo ( {{ nb }}% )",ie="en l\xEDnea",re="Ilimitado",ne="miembro",se="miembros",te="Miembro",ce="Miembros",de="Gestor",le="gestor",ue="Gestores",pe="Generar",me="Importar",he="Configuraci\xF3n",be="Aplicaciones",ve="aplicaciones",ge="Avatar",fe="Actualizar",ye="Idioma",Ee="Inicio",we="Recientes",Se="recientes",Ce="Papelera",Ae="Compartidos",Ne="Compartir",xe="compartidos",ze="compartido",Te="Acceso al espacio personal",De="Acceso a los espacios",ke="Administraci\xF3n de espacios",Pe="Acceso a los compartidos",Le="Administraci\xF3n de compartidos",Ue="Administraci\xF3n de invitados",_e="Administraci\xF3n de grupos personales",Ge="Acceso desde la aplicaci\xF3n de escritorio",qe="Sincronizaci\xF3n desde la aplicaci\xF3n de escritorio",Me="Acceso WebDAV",Re="WebDAV",Fe="Espacio",Ie="Espacios",Ye="espacios",Ve="ancl\xF3",Oe="desancl\xF3",We="Ubicaci\xF3n",je="Anclado",Be="Ajustes",He="Opciones",Qe="Nombre",Ke="Descargar",Je="Mover",Xe="Copiar",Ze="Renombrar",$e="Editar",ea="Eliminar",aa="Portapapeles",oa="Actualizar",ia="Vaciar",ra="Lista",na="Visualizaci\xF3n",sa="\xBFDesea mover <b>{{arg}}</b> a la papelera?",ta="\xBFDesea eliminar <b>{{arg}}</b> definitivamente?",ca="\xBFDesea mover estos <b>{{arg}} archivos</b> a la papelera?",da="\xBFDesea eliminar estos <b>{{arg}} archivos</b> definitivamente?",la="sincronizaci\xF3n",ua="Sincronizaci\xF3n",pa="Sincronizaciones",ma="Sincronizar",ha="Sync",ba="Sincronizado",va="Comprimir",ga="Descomprimir",fa="Info",ya="Tama\xF1o",Ea="Modificado",wa="modificado",Sa="Tareas",Ca="Texto",Aa="Elementos",Na="Nuevo",xa="Carpeta",za="carpeta",Ta="archivo",Da="archivos",ka="directorio",Pa="directorios",La="Total",Ua="ning\xFAn elemento seleccionado",_a="{{ nb }} elemento seleccionado",Ga="{{ nb }} elementos seleccionados",qa="elemento",Ma="elementos",Ra="crear",Fa="escribir",Ia="mover",Ya="eliminar",Va="modificar",Oa="compartir",Wa="Enlace",ja="enlace",Ba="Enlaces",Ha="enlaces",Qa="Invitado",Ka="Invitados",Ja="invitado",Xa="invitados",Za="Expirado",$a="expirado",eo="ninguno",ao="Permisos",oo="Propietario",io="Yo",ro="Compartido",no="Creado",so="Fecha",to="Ruta",co="activo",lo="Activo",uo="suspendido",po="Tipo",mo="Descripci\xF3n",ho="Visibilidad",bo="Desconocido",vo="Expiraci\xF3n",go="Acceso",fo="Accedido",yo="Comentar",Eo="Comentarios",wo="comentarios",So="coment\xF3",Co="s\xED",Ao="no",No="Cliente",xo="Clientes",zo="disponible",To="ocupado",Do="ausente",ko="desconectado",Po="Ver",Lo="cerrar sesi\xF3n",Uo="d\xEDas",_o="d\xEDa",Go="Eliminar",qo="Planificador",Mo="paralelo",Ro="secuencial",Fo="Transferencias",Io="Simular",Yo="Restablecer",Vo="Examinar",Oo="Acci\xF3n",Wo="A\xF1adido",jo="Eliminado",Bo="Copiado",Ho="Movido",Qo="Filtrado",Ko="Error",Jo="Servidor",Xo="Direcci\xF3n",Zo="Conflicto",$o="reciente",ei="Origen",ai="Destino",oi="Modo",ii="Secuencialmente",ri="Paralelamente",ni="r\xE1pido",si="seguro",ti="activado",ci="Activar",di="desactivado",li="Desactivar",ui="horas",pi="minutos",mi="d\xEDas",hi="ambos",bi="nunca",vi="Asistente",gi="Siguiente",fi="Anterior",yi="Terminado",Ei="hacia",wi="Repositorio",Si="p\xFAblico",Ci="local",Ai="remoto",Ni="Sitio web",xi="Documentaci\xF3n",zi="Versiones",Ti="Seguridad",Di="Gestionar",ki="\xBFDesea renombrar <b>{{ old }}</b> a <b>{{ new }}</b>?",Pi="Guardar",Li="Deshacer",Ui="Rehacer",_i="yo",Gi="Desbloquear",qi="Bloqueo",Mi="Exclusivo",Ri="Pantalla completa",Fi="Dimensiones",Ii={"Sign-in to your account":"Inicie sesi\xF3n en su cuenta","Wrong login or password":"Usuario o contrase\xF1a incorrectos","Authentication service error":"Error del servicio de autenticaci\xF3n","Account locked":"Cuenta bloqueada","Account is not allowed":"Cuenta no autorizada","Account matching error":"Error de correspondencia de cuenta",Authentication:o,"Sign in":"Iniciar sesi\xF3n",Login:i,Password:r,"Login or Email":"Usuario o correo electr\xF3nico","Login already used":"Usuario ya utilizado","You are already logged in":"Ya ha iniciado sesi\xF3n","Name already used":"Nombre ya utilizado","Token has expired":"El token ha expirado",Confirm:n,Cancel:s,Close:t,"Server connection error":"Error de conexi\xF3n con el servidor",Filter:c,Filters:d,search:l,Search:u,"Search for content":"Buscar contenido","Search for files":"Buscar archivos","Full-text search":"B\xFAsqueda de texto completo","Full-text search is disabled":"La b\xFAsqueda de texto completo est\xE1 desactivada","Type to search for users or groups to add":"Escriba para buscar usuarios o grupos para a\xF1adir","Type to search for groups to add":"Escriba para buscar grupos para a\xF1adir","Type to search for users to add":"Escriba para buscar usuarios para a\xF1adir","Type to search for managers to add":"Escriba para buscar gestores para a\xF1adir","Member since":"Miembro desde","Windows Manager":"Administrador de ventanas","Mark as read":"Marcar como le\xEDdo",See:p,no_task:m,one_task:h,nb_tasks:b,one_active_task:v,nb_active_tasks:g,nb_elements:f,nb_actions:y,one_message:E,nb_messages:w,one_notification:S,nb_notifications:C,Application:A,application:N,"application and email":"aplicaci\xF3n y correo electr\xF3nico",Notification:x,Notifications:z,Event:T,File:D,Files:k,"Personal files":"Archivos personales","for personal files":"para los archivos personales",Personal:P,External:L,"Share status":"Estado del recurso compartido","Share description":"Descripci\xF3n del recurso compartido","No recent files":"No hay archivos recientes",Groups:U,Group:_,group:G,"New personal group":"Nuevo grupo personal","Edit personal group":"Editar grupo personal","personal group":"grupo personal","Personal group":"Grupo personal","Personal groups":"Grupos personales",groups:q,"Parent group":"Grupo padre","Group updated":"Grupo actualizado","Group created":"Grupo creado","Group not found":"Grupo no encontrado","Group error":"Error del grupo","Set as group manager":"Definir como gestor del grupo","As a manager, the user will be able to manage the group and its members.":"Como gestor, el usuario podr\xE1 gestionar el grupo y sus miembros.","As a manager, the user will be able to manage group members but not group properties.":`Como gestor, el usuario podr\xE1 gestionar los miembros del grupo pero no las propiedades del grupo.
2
- `,Visible:M,Private:R,Isolated:F,"Select the parent group":"Seleccione el grupo padre","from the group":"del grupo","New group":"Nuevo grupo","Edit group":"Editar grupo","Leave group":"Salir del grupo","Delete group":"Eliminar grupo","Remove from group":"Eliminar del grupo","Group must have at least one manager":"El grupo debe tener al menos un gestor","The group was left":"Se ha abandonado el grupo","The group was not left":"No se ha abandonado el grupo","will be left, you will no longer be a member of this group":"se abandonar\xE1, ya no ser\xE1 miembro de este grupo","All users can see this group.":"Todos los usuarios pueden ver este grupo.","Users who are not members of this group cannot see it.":"Los usuarios que no son miembros de este grupo no pueden verlo.","The group is not visible, its members cannot see it and cannot see each other.":"El grupo no es visible, sus miembros no pueden verlo ni verse entre ellos.",Add:I,"Add members":"A\xF1adir miembros","See members":"Ver miembros",Administrator:Y,Administration:V,User:O,user:W,Users:j,users:B,"New user":"Nuevo usuario",account:H,Account:Q,"Account status":"Estado de la cuenta",Email:K,"Email already used":"Correo electr\xF3nico ya utilizado","First name":"Nombre","Last name":"Apellido","Full name":"Nombre y Apellido",Status:J,Role:X,IP:Z,"IP Addresses":"Direcciones IP",Seen:$,Connection:ee,Connections:ae,"Confirm deletion":"Confirmar eliminaci\xF3n","Confirm permanent deletion of data":"Confirmar eliminaci\xF3n permanente de los datos","Space and data will be deleted in":"El espacio y los datos se eliminar\xE1n en","Space is disabled":"El espacio est\xE1 desactivado","Storage Space":"Espacio de almacenamiento","Storage Quota":"Cuota de almacenamiento","Storage Usage":"Uso de almacenamiento","Space status":"Estado del espacio","Storage quota exceeded":"Se ha superado la cuota de almacenamiento","Storage quota will be exceeded":"Se superar\xE1 la cuota de almacenamiento","No more space available":"No hay m\xE1s espacio disponible",available_space_is_low:oe,online:ie,"Online users":"Usuarios en l\xEDnea",Unlimited:re,member:ne,members:se,Member:te,Members:ce,Manager:de,manager:le,Managers:ue,"At least one manager is required":"Se requiere al menos un gestor",Generate:pe,Import:me,Configuration:he,Applications:be,applications:ve,"Permissions inherited from groups":"Permisos heredados de los grupos","Only the group will be deleted, the members will no longer be part of it.":"Solo se eliminar\xE1 el grupo, los miembros ya no formar\xE1n parte de \xE9l.",Avatar:ge,Update:fe,"current password":"contrase\xF1a actual","new password":"nueva contrase\xF1a","Change me !":"\xA1C\xE1mbiame!","Current password missing !":"\xA1Falta la contrase\xF1a actual!","New password missing !":"\xA1Falta la nueva contrase\xF1a!","New password must have 8 characters minimum":"La nueva contrase\xF1a debe tener como m\xEDnimo 8 caracteres","Current password does not match":"La contrase\xF1a actual no coincide","Password has been updated":"La contrase\xF1a ha sido actualizada","Unable to update password":"No se puede actualizar la contrase\xF1a","Bad password":"Contrase\xF1a incorrecta","too many login attempts":"demasiados intentos de inicio de sesi\xF3n",Language:ye,"Language updated":"Idioma actualizado","Unable to update language":"No se puede actualizar el idioma","Notification preference updated":"Preferencia de notificaciones actualizada","Full-text search preference updated":"Preferencia de b\xFAsqueda de texto completo actualizada","Unable to update notification preference":"No se puede actualizar la preferencia de notificaciones","Unable to update full-text search preference":"No se puede actualizar la preferencia de b\xFAsqueda de texto completo","Unable to open document":"No se puede abrir el documento","Unable to save document":"No se puede guardar el documento",Home:Ee,Recents:we,recents:Se,Trash:Ce,"trash bins":"papeleras",Shares:Ae,Share:Ne,shares:xe,shared:ze,personal_space:Te,spaces_access:De,spaces_admin:ke,shares_access:Pe,shares_admin:Le,guests_admin:Ue,personal_groups_admin:_e,desktop_app_access:Ge,desktop_app_sync:qe,webdav_access:Me,"Create share":"Crear compartido","Edit share":"Editar compartido","Delete share":"Eliminar compartido","Child shares":"Compartidos hijos",webdav:Re,"Share is disabled":"El compartido est\xE1 desactivado",Space:Fe,Spaces:Ie,spaces:Ye,"Space name":"Nombre del espacio","New space":"Nuevo espacio","Create a new space":"Crear un nuevo espacio","Create space":"Crear espacio","Edit space":"Editar espacio","Delete space":"Eliminar espacio","Create a new share":"Crear un nuevo compartido","Type to search for space to select":"Escriba para buscar el espacio a seleccionar","Anchor to a space":"Anclar a un espacio","Anchor files to a space":"Anclar archivos a un espacio","You have been invited to join this space":"Ha sido invitado a unirse a este espacio","You have been invited to join this share":"Ha sido invitado a unirse a este compartido","Shared with others":"Compartido con otros","With others":"Con otros","Shared with me":"Compartido conmigo","With me":"Conmigo","Shared via links":"Compartido por enlaces","Via links":"Por enlaces","Shared from":"Compartido desde","share with you this":"comparte con usted este","shared with you":"ha compartido con usted","no longer share with you":"ya no comparte con usted","You now have access to the space":"Ahora tiene acceso al espacio","You no longer have access to the space":"Ya no tiene acceso al espacio","This space has been permanently deleted":"Este espacio ha sido eliminado definitivamente","You now have access to the share":"Ahora tiene acceso al compartido","You no longer have access to the share":"Ya no tiene acceso al compartido","You are no longer a member of the parent share, your child share has been deleted":"Ya no es miembro del compartido padre, su compartido hijo ha sido eliminado",anchored:Ve,unanchored:Oe,"Share not found":"Compartido no encontrado","Go to":"Ir a",Location:We,"Name and location are required":"Se requieren nombre y ubicaci\xF3n","Parent location already exists in files":"La ubicaci\xF3n padre ya existe en los archivos","Check the location":"Verificar la ubicaci\xF3n","Location not found":"Ubicaci\xF3n no encontrada","Forbidden resource":"Ubicaci\xF3n no autorizada","Resource already exists":"El elemento ya existe","The location does not exist":"La ubicaci\xF3n no existe","The location is not readable":"La ubicaci\xF3n no es legible","The location is not writeable":"La ubicaci\xF3n no es escribible","The location is a directory":"La ubicaci\xF3n es un directorio","The file is locked":"El archivo est\xE1 bloqueado","This share is protected by a password":"Este compartido est\xE1 protegido por una contrase\xF1a","You do not have share permission":"No tiene permiso para compartir","You can not share a space":"No puede compartir un espacio","You can not remove an anchored file":"No puede eliminar un archivo anclado","You are not allowed to write here":"No est\xE1 autorizado a escribir aqu\xED","You are not allowed to do this action":"No est\xE1 autorizado a realizar esta acci\xF3n","You can not move an anchored file":"No puede mover un archivo anclado","You can not move a locked file":"No puede mover un archivo bloqueado",Anchored:je,"Anchored by":"Anclado por","Manage my anchored files":"Gestionar mis archivos anclados","You have no files anchored on this space":"No tiene archivos anclados en este espacio","An anchored file already has this name":"Un archivo anclado ya tiene este nombre",Settings:Be,Options:He,Name:Qe,Download:Ke,"Download done":"Descarga realizada","Download failed":"Descarga fallida","Upload done":"Env\xEDo completado","Upload failed":"Env\xEDo fallido","Copy/Move":"Copiar/Mover",Move:Je,"Move done":"Movimiento realizado","Move failed":"Movimiento fallido","Deletion done":"Eliminaci\xF3n realizada","Deletion failed":"Eliminaci\xF3n fallida","Creation failed":"Creaci\xF3n fallida",Copy:Xe,"Copy done":"Copia realizada","Copy failed":"Copia fallida","Copy-Paste":"Copiar-Pegar","Cut-Paste":"Cortar-Pegar",Rename:Ze,Edit:$e,"Share inside":"Compartir internamente","Share outside":"Compartir externamente",Remove:ea,Clipboard:aa,"Send to Clipboard":"Enviar al portapapeles","will be removed":"ser\xE1 eliminado",Refresh:oa,Empty:ia,List:ra,Display:na,"Sort by":"Ordenar por",trash_one_file:sa,delete_one_file:ta,trash_multiple_files:ca,delete_multiple_files:da,"Moving to trash":"Moviendo a la papelera","Permanent deletion":"Eliminaci\xF3n definitiva","Would you like to empty the trash ?":"\xBFDesea vaciar la papelera?","All items will be permanently deleted":"Todos los elementos se eliminar\xE1n definitivamente","Actions will be performed in the current folder":"Las acciones se realizar\xE1n en la carpeta actual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"El cliente ya no tendr\xE1 permiso para acceder a su cuenta y no podr\xE1 sincronizar.","The access expires":"El acceso expira","The access has expired":"El acceso ha expirado","Never expires":"Nunca expira",synchronization:la,Synchronization:ua,Synchronizations:pa,Synchronize:ma,Sync:ha,"Stop synchronization":"Detener la sincronizaci\xF3n","Synchronize all":"Sincronizar todo","Stop synchronizations":"Detener las sincronizaciones",Synced:ba,"Sync already exists":"La sincronizaci\xF3n ya existe","Sync was reset":"Sincronizaci\xF3n restablecida","Sync deleted":"Sincronizaci\xF3n eliminada","This client":"Este cliente","You are no longer synchronizing":"Ya no est\xE1 sincronizando",Compress:va,Decompress:ga,"Compress and Download":"Comprimir y descargar","Compress and Save":"Comprimir y guardar","Enable compression":"Activar compresi\xF3n","Compression done":"Compresi\xF3n realizada","Compression failed":"Compresi\xF3n fallida","Decompression done":"Descompresi\xF3n realizada","Decompression failed":"Descompresi\xF3n fallida","(this may take longer)":"(esto puede tardar m\xE1s)","Save in the current directory":"Guardar en el directorio actual","This name is already used":"Este nombre ya est\xE1 utilizado",Info:fa,Size:ya,Modified:Ea,modified:wa,Tasks:Sa,"Download from URL":"Descargar desde una URL","Upload files":"Enviar archivos","Upload folders":"Enviar carpetas","Folder name":"Nombre de la carpeta","New folder":"Nueva carpeta","Document name":"Nombre del documento","New document":"Nuevo documento","File name":"Nombre del archivo","File permissions":"Permisos del archivo",Text:Ca,"Rich Text Format":"Texto enriquecido","Forbidden characters":"Caracteres prohibidos",Elements:Aa,"Malformed URL":"URL mal formada",New:Na,Folder:xa,folder:za,file:Ta,files:Da,directory:ka,directories:Pa,Total:La,no_selection:Ua,one_selection:_a,nb_selections:Ga,"Archive name":"Nombre del archivo comprimido","Drag and drop your files here":"Arrastre y suelte sus archivos aqu\xED","The destination already exists":"El destino ya existe","This item is already selected":"Este elemento ya est\xE1 seleccionado","Parent item is already selected":"El elemento padre ya est\xE1 seleccionado","This file contains binary data that can not be read":"Este archivo contiene datos binarios que no se pueden leer","Navigation Tree":"\xC1rbol de navegaci\xF3n",item:qa,items:Ma,create:Ra,write:Fa,move:Ia,delete:Ya,modify:Va,"Delete user":"Eliminar usuario","Delete all user files":"Eliminar todos los archivos del usuario",share:Oa,"Share name":"Nombre del compartido","New share":"Nuevo compartido","New share link":"Nuevo enlace de compartido","New link":"Nuevo enlace","Edit children shares":"Editar compartidos hijos",Link:Wa,link:ja,Links:Ba,links:Ha,"Link copied":"Enlace copiado","Link created":"Enlace creado","Link deleted":"Enlace eliminado","Link error":"Error de enlace","Copy link":"Copiar enlace","Edit link":"Editar enlace","Guest Link":"Enlace de invitado","Guest name":"Nombre del invitado","Guest email":"Correo electr\xF3nico del invitado","Guest language":"Idioma del invitado",Guest:Qa,Guests:Ka,guest:Ja,guests:Xa,"New guest":"Nuevo invitado","Edit guest":"Editar invitado","Guest created":"Invitado creado","Guest deleted":"Invitado eliminado","Guest updated":"Invitado actualizado","Guest error":"Error de invitado","Add an external location":"A\xF1adir una ubicaci\xF3n externa","External location":"Ubicaci\xF3n externa","Select a file":"Seleccionar un archivo","The link is expired":"El enlace ha expirado","The link is disabled":"El enlace est\xE1 desactivado","The link was not found":"No se encontr\xF3 el enlace",Expired:Za,expired:$a,none:eo,"The maximum number of access allowed to the link is exceeded":"Se ha superado el n\xFAmero m\xE1ximo de accesos permitidos al enlace","Set a password":"Definir una contrase\xF1a","Enter your password":"Introduzca su contrase\xF1a",Permissions:ao,"No permissions":"Sin permisos",Owner:oo,Me:io,Shared:ro,Created:no,"Created & Modified":"Creado y modificado","Creation date":"Fecha de creaci\xF3n","Modification date":"Fecha de modificaci\xF3n","Deactivation date":"Fecha de desactivaci\xF3n",Date:so,Path:to,active:co,Active:lo,suspended:uo,"Unable to rename user space":"No se puede renombrar el espacio del usuario","Unable to delete user space":"No se puede eliminar el espacio del usuario","Unable to update user":"No se puede actualizar el usuario","Unable to update user groups":"No se pueden actualizar los grupos del usuario","User created":"Usuario creado","User updated":"Usuario actualizado","User not found":"Usuario no encontrado","Edit user":"Editar usuario","Impersonate identity":"Suplantar identidad",Type:po,Description:mo,Visibility:ho,"Unknown error !":"\xA1Error desconocido!",Unknown:bo,Expiration:vo,"Limit access":"Limitar los accesos","Current access count":"N\xFAmero de accesos actual",Access:go,Accessed:fo,"Last access":"\xDAltimo acceso","Last accesses":"\xDAltimos accesos",Comment:yo,Comments:Eo,comments:wo,commented:So,"No recent comments":"No hay comentarios recientes","Write a comment ...":"Escriba un comentario ...",yes:Co,no:Ao,Client:No,Clients:xo,available:zo,busy:To,absent:Do,offline:ko,View:Po,"Session has expired":"La sesi\xF3n ha expirado","Please sign in":"Por favor, inicie sesi\xF3n",logout:Lo,days:Uo,day:_o,Delete:Go,Scheduler:qo,async:Mo,seq:Ro,Transfers:Fo,Simulate:Io,Reset:Yo,Browse:Vo,Action:Oo,Added:Wo,Removed:jo,Copied:Bo,Moved:Ho,Filtered:Qo,Error:Ko,Server:Jo,Direction:Xo,Conflict:Zo,"Show filtered files":"Mostrar archivos filtrados",recent:$o,Source:ei,Destination:ai,Mode:oi,Sequentially:ii,Asynchronously:ri,fast:ni,secure:si,enabled:ti,Enable:ci,disabled:di,Disable:li,scheduler_unit_hour:ui,scheduler_unit_minute:pi,scheduler_unit_day:mi,"You must have permission to modify the server folder to choose a different sync mode":"Debe tener permiso para modificar la carpeta del servidor para elegir un modo de sincronizaci\xF3n diferente","upload only":"solo enviar","download only":"solo descargar",both:hi,never:bi,"Clear events":"Borrar eventos","Events from":"Eventos de","All syncs":"Todas las sincronizaciones","All events":"Todos los eventos","will be cleared":"se borrar\xE1n","No differences":"Sin diferencias","Select a folder":"Seleccionar una carpeta","The files containing":"Los archivos que contienen","The files starting":"Los archivos que comienzan","The files ending":"Los archivos que terminan","Expert (Regexp)":"Experto (Regexp)","click on the browse button":"haga clic en el bot\xF3n examinar","with a name or pattern":"por un nombre o un patr\xF3n","with the extension ('.mp3', '.avi', '.mov' ...)":"por la extensi\xF3n ('.mp3', '.avi', '.mov' ...)",Wizard:vi,Next:gi,Previous:fi,Done:yi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este asistente le ayudar\xE1 a sincronizar un directorio de su ordenador con un directorio de Sync-in.","To begin, select a folder on your computer.":"Para empezar, seleccione una carpeta en su ordenador.",'You can drag the folder into the area below or click on the "Select" button.':'Puede arrastrar la carpeta al \xE1rea de abajo o hacer clic en el bot\xF3n "Seleccionar".',"Drop folder here":"Suelte la carpeta aqu\xED","This directory is already synced":"Este directorio ya est\xE1 sincronizado","The parent directory is already synced":"El directorio padre ya est\xE1 sincronizado","This directory is not accessible":"Este directorio no es accesible","This directory is read-only, you will not be able to modify it":"Este directorio es de solo lectura, no podr\xE1 modificarlo","Please select the server directory to sync, if it doesn't exist you can create it.":"Seleccione el directorio del servidor a sincronizar; si no existe, puede crearlo.","Double click to browse directories":"Haga doble clic para navegar por los directorios","The data will be synchronized from":"Los datos se sincronizar\xE1n desde","the client folder":"la carpeta del cliente","the server folder":"la carpeta del servidor","(One-Way)":"(unidireccional)","(Two-Way)":"(bidireccional)",to:Ei,"and from":"y desde","All files created or modified in":"Todos los archivos creados o modificados en","will be ignored and deleted":"ser\xE1n ignorados y eliminados","In case of conflict,":"En caso de conflicto,","the most recent files will be kept":"se mantendr\xE1n los archivos m\xE1s recientes","the client\u2019s files take precedence":"los archivos del cliente tienen prioridad","the server\u2019s files take precedence":"los archivos del servidor tienen prioridad","the files in":"los archivos de","will be preferred":"ser\xE1n preferidos","Loading...":"Cargando...","No results":"Sin resultados","Download ARM64 version":"Descargar la versi\xF3n ARM64","Download Apple Silicon ARM64 version":"Descargar la versi\xF3n Apple Silicon ARM64","Download tar.gz version":"Descargar la versi\xF3n tar.gz",Repository:wi,public:Si,local:Ci,remote:Ai,"System requirements":"Requisitos del sistema","Feature not enabled":"Funcionalidad no habilitada","Check the settings":"Verifique la configuraci\xF3n",Website:Ni,Documentation:xi,Versions:zi,Security:Ti,"Recovery code":"C\xF3digo de recuperaci\xF3n","Use a recovery code":"Usar un c\xF3digo de recuperaci\xF3n","Authentication code":"C\xF3digo de autenticaci\xF3n","Secret copied":"Secreto copiado","Recovery codes copied":"C\xF3digos de recuperaci\xF3n copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo o contrase\xF1a incorrectos","Application Passwords":"Contrase\xF1as de aplicaci\xF3n","Generate a new app password":"Generar una nueva contrase\xF1a de aplicaci\xF3n","Generated password":"Contrase\xF1a generada","This password will only be shown once after it is generated":"Esta contrase\xF1a solo se mostrar\xE1 una vez despu\xE9s de generarse","Password name":"Nombre de la contrase\xF1a",Manage:Di,"Manage app passwords":"Gestionar contrase\xF1as de aplicaci\xF3n","Password Authentication":"Autenticaci\xF3n por contrase\xF1a","Two-Factor Authentication":"Autenticaci\xF3n de dos factores","Two-Factor Authentication is enabled":"La autenticaci\xF3n de dos factores est\xE1 activada","Two-Factor Authentication is disabled":"La autenticaci\xF3n de dos factores est\xE1 desactivada","Scan this QR code using your authenticator app.":"Escanee este c\xF3digo QR con su aplicaci\xF3n de autenticaci\xF3n.","(Such as FreeOTP, Proton Authenticator etc.)":"(Por ejemplo, FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"O introduzca este secreto manualmente","Valid with your TOTP code":"Valide con su c\xF3digo TOTP","The secret has expired":"El secreto ha expirado","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estos c\xF3digos en un lugar seguro. Le permitir\xE1n acceder a su cuenta si pierde el acceso a su autenticaci\xF3n de dos factores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estos c\xF3digos de recuperaci\xF3n son de un solo uso y solo se mostrar\xE1n aqu\xED una vez.","Overwrite Existing File(s)":"Sobrescribir archivo(s) existente(s)","Replace Existing File":"Reemplazar archivo existente","Do you want to replace the existing file(s)?":"\xBFDesea reemplazar el/los archivo(s) existente(s)?",RenameFileToExisting:ki,Save:Pi,"Line Wrap":"Ajuste de l\xEDnea","Read-only":"Solo lectura","Read-write":"Lectura y escritura","Save And Exit":"Guardar y salir","Close Without Saving":"Cerrar sin guardar",Undo:Li,Redo:Ui,me:_i,"The file is locked by":"El archivo est\xE1 bloqueado por",Unlock:Gi,Lock:qi,Exclusive:Mi,"Send an unlock request":"Enviar una solicitud de desbloqueo","sends you a request to unlock the file":"le env\xEDa una solicitud para desbloquear el archivo","As the file owner, you can unlock the file or request the current lock owner to release it.":"Como propietario del archivo, puede desbloquear el archivo o solicitar al propietario actual del bloqueo que lo libere.","The file is edited by":"El archivo est\xE1 siendo editado por","A new update is available":"Hay una nueva actualizaci\xF3n disponible",Fullscreen:Ri,Dimensions:Fi,"Start Slideshow":"Iniciar presentaci\xF3n"};export{go as Access,fo as Accessed,Q as Account,Oo as Action,lo as Active,I as Add,Wo as Added,V as Administration,Y as Administrator,je as Anchored,A as Application,be as Applications,ri as Asynchronously,o as Authentication,ge as Avatar,Vo as Browse,s as Cancel,No as Client,xo as Clients,aa as Clipboard,t as Close,yo as Comment,Eo as Comments,va as Compress,he as Configuration,n as Confirm,Zo as Conflict,ee as Connection,ae as Connections,Bo as Copied,Xe as Copy,no as Created,so as Date,ga as Decompress,Go as Delete,mo as Description,ai as Destination,Fi as Dimensions,Xo as Direction,li as Disable,na as Display,xi as Documentation,yi as Done,Ke as Download,$e as Edit,Aa as Elements,K as Email,ia as Empty,ci as Enable,Ko as Error,T as Event,Mi as Exclusive,vo as Expiration,Za as Expired,L as External,D as File,k as Files,c as Filter,Qo as Filtered,d as Filters,xa as Folder,Ri as Fullscreen,pe as Generate,_ as Group,U as Groups,Qa as Guest,Ka as Guests,Ee as Home,Z as IP,me as Import,fa as Info,F as Isolated,ye as Language,Wa as Link,Ba as Links,ra as List,We as Location,qi as Lock,i as Login,Di as Manage,de as Manager,ue as Managers,io as Me,te as Member,ce as Members,oi as Mode,Ea as Modified,Je as Move,Ho as Moved,Qe as Name,Na as New,gi as Next,x as Notification,z as Notifications,He as Options,oo as Owner,r as Password,to as Path,ao as Permissions,P as Personal,fi as Previous,R as Private,we as Recents,Ui as Redo,oa as Refresh,ea as Remove,jo as Removed,Ze as Rename,ki as RenameFileToExisting,wi as Repository,Yo as Reset,X as Role,Pi as Save,qo as Scheduler,u as Search,Ti as Security,p as See,$ as Seen,ii as Sequentially,Jo as Server,Be as Settings,Ne as Share,ro as Shared,Ae as Shares,Io as Simulate,ya as Size,ei as Source,Fe as Space,Ie as Spaces,J as Status,ha as Sync,ba as Synced,ua as Synchronization,pa as Synchronizations,ma as Synchronize,Sa as Tasks,Ca as Text,La as Total,Fo as Transfers,Ce as Trash,po as Type,Li as Undo,bo as Unknown,re as Unlimited,Gi as Unlock,fe as Update,O as User,j as Users,zi as Versions,Po as View,ho as Visibility,M as Visible,Ni as Website,vi as Wizard,Do as absent,H as account,co as active,Ve as anchored,N as application,ve as applications,Mo as async,zo as available,oe as available_space_is_low,hi as both,To as busy,So as commented,wo as comments,Ra as create,_o as day,Uo as days,Ii as default,Ya as delete,da as delete_multiple_files,ta as delete_one_file,Ge as desktop_app_access,qe as desktop_app_sync,Pa as directories,ka as directory,di as disabled,ti as enabled,$a as expired,ni as fast,Ta as file,Da as files,za as folder,G as group,q as groups,Ja as guest,Xa as guests,Ue as guests_admin,qa as item,Ma as items,ja as link,Ha as links,Ci as local,Lo as logout,le as manager,_i as me,ne as member,se as members,wa as modified,Va as modify,Ia as move,y as nb_actions,g as nb_active_tasks,f as nb_elements,w as nb_messages,C as nb_notifications,Ga as nb_selections,b as nb_tasks,bi as never,Ao as no,Ua as no_selection,m as no_task,eo as none,ko as offline,v as one_active_task,E as one_message,S as one_notification,_a as one_selection,h as one_task,ie as online,_e as personal_groups_admin,Te as personal_space,Si as public,$o as recent,Se as recents,Ai as remote,mi as scheduler_unit_day,ui as scheduler_unit_hour,pi as scheduler_unit_minute,l as search,si as secure,Ro as seq,Oa as share,ze as shared,xe as shares,Pe as shares_access,Le as shares_admin,Ye as spaces,De as spaces_access,ke as spaces_admin,uo as suspended,la as synchronization,Ei as to,ca as trash_multiple_files,sa as trash_one_file,Oe as unanchored,W as user,B as users,Re as webdav,Me as webdav_access,Fa as write,Co as yes};
@@ -1 +0,0 @@
1
- import{$a as at,B as Kt,Ba as di,Cb as z,I as ni,Ma as mi,Mb as wi,Na as _i,Nb as ct,Pb as bi,Qb as Ai,Ua as gi,W as ai,X as Qt,_ as ot,aa as ci,ab as yi,ba as hi,ca as xt,da as ui,ea as li,fa as jt,ga as q,ha as pi,ia as fi,ja as X,qb as Ei,tb as M,ub as Si,vb as Pt}from"./chunk-L3PDWJZ3.js";import{Aa as Ce,Bb as st,Bd as je,Cd as Je,Dd as Rt,Eb as B,Ed as Ot,Ef as ii,G as we,Gb as D,Jd as Xe,Kb as Ne,Kd as kt,L as be,Lb as Pe,Mb as Fe,Oa as m,Pb as Yt,Qa as Re,Qb as Le,Rb as At,Tb as A,Vb as Ie,Vc as We,W as Ae,Wf as ri,Xb as Ue,Yb as Be,Yc as Tt,Zb as De,ab as bt,bb as Oe,c as Se,cb as ke,ea as wt,fa as Te,fd as vt,ha as ve,hd as nt,he as ze,ie as Ze,ja as p,jb as xe,jd as Ct,kc as Me,kd as $e,lb as k,mb as x,mc as Ve,mg as si,oa as W,od as qe,og as Nt,pa as $,pd as Ge,rb as C,sb as f,sd as He,tb as _,td as Ye,ub as J,v as S,wf as ti,yd as Ke,yf as ei,zd as Qe}from"./chunk-BJARRIS6.js";import{n as oi}from"./chunk-DM4NXKEP.js";import{a as O,b as _e,d as ge,e as ye,i as Ee}from"./chunk-KAVP6UXH.js";var V=(function(r){return r.USER="user",r.GUEST="guest",r.LINK="link",r.GROUP="group",r.PGROUP="personal group",r})(V||{});function Ti(r,t=[]){let e=O({},Object.fromEntries(Object.entries(Ai).filter(([i,s])=>t.indexOf(i)===-1)));if(!r)return e;for(let i of r.split(":"))i in e&&(e[i]=!0);return e}function jr(r,t,e=[]){let i={};if(!r)return i;for(let s of r.split(":"))e.indexOf(s)===-1&&(i[s]=t.indexOf(s)>-1);return i}function Jr(r,t=[]){let e={};if(!r)return e;for(let i of r.split(":"))t.indexOf(i)===-1&&(e[i]=bi[i]);return e}function Xr(r){return Object.entries(r).filter(([t,e])=>e).map(([t,e])=>t).join(":")}var T=class{constructor(t,e=[]){this.newly=0,this.linkSettings=null,Object.assign(this,t),this.mid=`${t.type[0]}${t.id}`,this.hPerms=Ti(t.permissions,e),t.login&&(this.avatarUrl=M(t.login)),this.isLink=!!this.linkId,this.isGuest=this.type===V.GUEST,this.isUser=this.isGuest||this.type===V.USER&&!this.isLink,this.isGroup=this.type===V.GROUP||this.type===V.PGROUP,this.isPersonalGroup=this.type===V.PGROUP,this.setGroupRole(),this.modifiedAt?this.newly=at(this.modifiedAt):this.createdAt&&(this.newly=at(this.createdAt))}setGroupRole(t){typeof t<"u"&&(this.groupRole=t),this.isGroupManager=this.groupRole===Kt.MANAGER}};function os(r,t,e){return new T({id:r.id,login:r.login,name:r.fullName,description:r.email,type:V.USER,spaceRole:t||di.IS_MEMBER,groupRole:e||Kt.MEMBER,permissions:""})}var vi={NAME_SPACE:"/",EVENTS:{NOTIFICATION:"notification"}};var ht={NAME_SPACE:"/",EVENTS:{ONLINE_STATUS:"onlineStatus",ONLINE_USERS:"onlineUsers",ONLINE_USER:"onlineUser"}};var l=(function(r){return r.BASE="/api/auth",r.LOGIN="login",r.LOGOUT="logout",r.REFRESH="refresh",r.TOKEN="token",r.TOKEN_REFRESH="token/refresh",r.WS="socket.io",r.TWO_FA_BASE="2fa",r.TWO_FA_ENABLE="enable",r.TWO_FA_DISABLE="disable",r.TWO_FA_LOGIN_VERIFY="login/verify",r.TWO_FA_ADMIN_RESET_USER="reset/user",r})(l||{}),us=`${l.BASE}/${l.LOGIN}`,ls=`${l.BASE}/${l.LOGOUT}`,Ci=`${l.BASE}/${l.REFRESH}`,ps=`${l.BASE}/${l.TOKEN}`,fs=`${l.BASE}/${l.TOKEN_REFRESH}`,Ri=`/${l.WS}`,Jt=`${l.BASE}/${l.TWO_FA_BASE}/${l.TWO_FA_ENABLE}`,Oi=`${l.BASE}/${l.TWO_FA_BASE}/${l.TWO_FA_DISABLE}`,ki=`${l.BASE}/${l.TWO_FA_BASE}/${l.TWO_FA_LOGIN_VERIFY}`,xi=`${l.BASE}/${l.TWO_FA_BASE}/${l.TWO_FA_ADMIN_RESET_USER}`;var pe={};ye(pe,{Fetch:()=>mt,Manager:()=>K,NodeWebSocket:()=>I,NodeXHR:()=>L,Socket:()=>H,WebSocket:()=>I,WebTransport:()=>G,XHR:()=>L,connect:()=>Q,default:()=>Q,io:()=>Q,protocol:()=>ue});var v=Object.create(null);v.open="0";v.close="1";v.ping="2";v.pong="3";v.message="4";v.upgrade="5";v.noop="6";var ut=Object.create(null);Object.keys(v).forEach(r=>{ut[v[r]]=r});var lt={type:"error",data:"parser error"};var Fi=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Li=typeof ArrayBuffer=="function",Ii=r=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(r):r&&r.buffer instanceof ArrayBuffer,pt=({type:r,data:t},e,i)=>Fi&&t instanceof Blob?e?i(t):Ni(t,i):Li&&(t instanceof ArrayBuffer||Ii(t))?e?i(t):Ni(new Blob([t]),i):i(v[r]+(t||"")),Ni=(r,t)=>{let e=new FileReader;return e.onload=function(){let i=e.result.split(",")[1];t("b"+(i||""))},e.readAsDataURL(r)};function Pi(r){return r instanceof Uint8Array?r:r instanceof ArrayBuffer?new Uint8Array(r):new Uint8Array(r.buffer,r.byteOffset,r.byteLength)}var Xt;function Ui(r,t){if(Fi&&r.data instanceof Blob)return r.data.arrayBuffer().then(Pi).then(t);if(Li&&(r.data instanceof ArrayBuffer||Ii(r.data)))return t(Pi(r.data));pt(r,!1,e=>{Xt||(Xt=new TextEncoder),t(Xt.encode(e))})}var Bi="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ft=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let r=0;r<Bi.length;r++)ft[Bi.charCodeAt(r)]=r;var Di=r=>{let t=r.length*.75,e=r.length,i,s=0,n,o,a,c;r[r.length-1]==="="&&(t--,r[r.length-2]==="="&&t--);let R=new ArrayBuffer(t),b=new Uint8Array(R);for(i=0;i<e;i+=4)n=ft[r.charCodeAt(i)],o=ft[r.charCodeAt(i+1)],a=ft[r.charCodeAt(i+2)],c=ft[r.charCodeAt(i+3)],b[s++]=n<<2|o>>4,b[s++]=(o&15)<<4|a>>2,b[s++]=(a&3)<<6|c&63;return R};var dr=typeof ArrayBuffer=="function",dt=(r,t)=>{if(typeof r!="string")return{type:"message",data:Mi(r,t)};let e=r.charAt(0);return e==="b"?{type:"message",data:mr(r.substring(1),t)}:ut[e]?r.length>1?{type:ut[e],data:r.substring(1)}:{type:ut[e]}:lt},mr=(r,t)=>{if(dr){let e=Di(r);return Mi(e,t)}else return{base64:!0,data:r}},Mi=(r,t)=>{switch(t){case"blob":return r instanceof Blob?r:new Blob([r]);case"arraybuffer":default:return r instanceof ArrayBuffer?r:r.buffer}};var Vi="",Wi=(r,t)=>{let e=r.length,i=new Array(e),s=0;r.forEach((n,o)=>{pt(n,!1,a=>{i[o]=a,++s===e&&t(i.join(Vi))})})},$i=(r,t)=>{let e=r.split(Vi),i=[];for(let s=0;s<e.length;s++){let n=dt(e[s],t);if(i.push(n),n.type==="error")break}return i};function qi(){return new TransformStream({transform(r,t){Ui(r,e=>{let i=e.length,s;if(i<126)s=new Uint8Array(1),new DataView(s.buffer).setUint8(0,i);else if(i<65536){s=new Uint8Array(3);let n=new DataView(s.buffer);n.setUint8(0,126),n.setUint16(1,i)}else{s=new Uint8Array(9);let n=new DataView(s.buffer);n.setUint8(0,127),n.setBigUint64(1,BigInt(i))}r.data&&typeof r.data!="string"&&(s[0]|=128),t.enqueue(s),t.enqueue(e)})}})}var zt;function Lt(r){return r.reduce((t,e)=>t+e.length,0)}function It(r,t){if(r[0].length===t)return r.shift();let e=new Uint8Array(t),i=0;for(let s=0;s<t;s++)e[s]=r[0][i++],i===r[0].length&&(r.shift(),i=0);return r.length&&i<r[0].length&&(r[0]=r[0].slice(i)),e}function Gi(r,t){zt||(zt=new TextDecoder);let e=[],i=0,s=-1,n=!1;return new TransformStream({transform(o,a){for(e.push(o);;){if(i===0){if(Lt(e)<1)break;let c=It(e,1);n=(c[0]&128)===128,s=c[0]&127,s<126?i=3:s===126?i=1:i=2}else if(i===1){if(Lt(e)<2)break;let c=It(e,2);s=new DataView(c.buffer,c.byteOffset,c.length).getUint16(0),i=3}else if(i===2){if(Lt(e)<8)break;let c=It(e,8),R=new DataView(c.buffer,c.byteOffset,c.length),b=R.getUint32(0);if(b>Math.pow(2,21)-1){a.enqueue(lt);break}s=b*Math.pow(2,32)+R.getUint32(4),i=3}else{if(Lt(e)<s)break;let c=It(e,s);a.enqueue(dt(n?c:zt.decode(c),t)),i=0}if(s===0||s>r){a.enqueue(lt);break}}}})}var Zt=4;function u(r){if(r)return _r(r)}function _r(r){for(var t in u.prototype)r[t]=u.prototype[t];return r}u.prototype.on=u.prototype.addEventListener=function(r,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+r]=this._callbacks["$"+r]||[]).push(t),this};u.prototype.once=function(r,t){function e(){this.off(r,e),t.apply(this,arguments)}return e.fn=t,this.on(r,e),this};u.prototype.off=u.prototype.removeListener=u.prototype.removeAllListeners=u.prototype.removeEventListener=function(r,t){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var e=this._callbacks["$"+r];if(!e)return this;if(arguments.length==1)return delete this._callbacks["$"+r],this;for(var i,s=0;s<e.length;s++)if(i=e[s],i===t||i.fn===t){e.splice(s,1);break}return e.length===0&&delete this._callbacks["$"+r],this};u.prototype.emit=function(r){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),e=this._callbacks["$"+r],i=1;i<arguments.length;i++)t[i-1]=arguments[i];if(e){e=e.slice(0);for(var i=0,s=e.length;i<s;++i)e[i].apply(this,t)}return this};u.prototype.emitReserved=u.prototype.emit;u.prototype.listeners=function(r){return this._callbacks=this._callbacks||{},this._callbacks["$"+r]||[]};u.prototype.hasListeners=function(r){return!!this.listeners(r).length};var N=typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,e)=>e(t,0),g=typeof self<"u"?self:typeof window<"u"?window:Function("return this")(),Hi="arraybuffer";function Ut(r,...t){return t.reduce((e,i)=>(r.hasOwnProperty(i)&&(e[i]=r[i]),e),{})}var gr=g.setTimeout,yr=g.clearTimeout;function P(r,t){t.useNativeTimers?(r.setTimeoutFn=gr.bind(g),r.clearTimeoutFn=yr.bind(g)):(r.setTimeoutFn=g.setTimeout.bind(g),r.clearTimeoutFn=g.clearTimeout.bind(g))}var Er=1.33;function Yi(r){return typeof r=="string"?Sr(r):Math.ceil((r.byteLength||r.size)*Er)}function Sr(r){let t=0,e=0;for(let i=0,s=r.length;i<s;i++)t=r.charCodeAt(i),t<128?e+=1:t<2048?e+=2:t<55296||t>=57344?e+=3:(i++,e+=4);return e}function Bt(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function Ki(r){let t="";for(let e in r)r.hasOwnProperty(e)&&(t.length&&(t+="&"),t+=encodeURIComponent(e)+"="+encodeURIComponent(r[e]));return t}function Qi(r){let t={},e=r.split("&");for(let i=0,s=e.length;i<s;i++){let n=e[i].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return t}var Dt=class extends Error{constructor(t,e,i){super(t),this.description=e,this.context=i,this.type="TransportError"}},F=class extends u{constructor(t){super(),this.writable=!1,P(this,t),this.opts=t,this.query=t.query,this.socket=t.socket,this.supportsBinary=!t.forceBase64}onError(t,e,i){return super.emitReserved("error",new Dt(t,e,i)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){let e=dt(t,this.socket.binaryType);this.onPacket(e)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}pause(t){}createUri(t,e={}){return t+"://"+this._hostname()+this._port()+this.opts.path+this._query(e)}_hostname(){let t=this.opts.hostname;return t.indexOf(":")===-1?t:"["+t+"]"}_port(){return this.opts.port&&(this.opts.secure&&+(this.opts.port!==443)||!this.opts.secure&&Number(this.opts.port)!==80)?":"+this.opts.port:""}_query(t){let e=Ki(t);return e.length?"?"+e:""}};var Z=class extends F{constructor(){super(...arguments),this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause(t){this.readyState="pausing";let e=()=>{this.readyState="paused",t()};if(this._polling||!this.writable){let i=0;this._polling&&(i++,this.once("pollComplete",function(){--i||e()})),this.writable||(i++,this.once("drain",function(){--i||e()}))}else e()}_poll(){this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){let e=i=>{if(this.readyState==="opening"&&i.type==="open"&&this.onOpen(),i.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(i)};$i(t,this.socket.binaryType).forEach(e),this.readyState!=="closed"&&(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this._poll())}doClose(){let t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,Wi(t,e=>{this.doWrite(e,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.opts.secure?"https":"http",e=this.query||{};return this.opts.timestampRequests!==!1&&(e[this.opts.timestampParam]=Bt()),!this.supportsBinary&&!e.sid&&(e.b64=1),this.createUri(t,e)}};var ji=!1;try{ji=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch{}var Ji=ji;function wr(){}var te=class extends Z{constructor(t){if(super(t),typeof location<"u"){let e=location.protocol==="https:",i=location.port;i||(i=e?"443":"80"),this.xd=typeof location<"u"&&t.hostname!==location.hostname||i!==t.port}}doWrite(t,e){let i=this.request({method:"POST",data:t});i.on("success",e),i.on("error",(s,n)=>{this.onError("xhr post error",s,n)})}doPoll(){let t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(e,i)=>{this.onError("xhr poll error",e,i)}),this.pollXhr=t}},Mt=(()=>{class r extends u{constructor(e,i,s){super(),this.createRequest=e,P(this,s),this._opts=s,this._method=s.method||"GET",this._uri=i,this._data=s.data!==void 0?s.data:null,this._create()}_create(){var e;let i=Ut(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");i.xdomain=!!this._opts.xd;let s=this._xhr=this.createRequest(i);try{s.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){s.setDisableHeaderCheck&&s.setDisableHeaderCheck(!0);for(let n in this._opts.extraHeaders)this._opts.extraHeaders.hasOwnProperty(n)&&s.setRequestHeader(n,this._opts.extraHeaders[n])}}catch{}if(this._method==="POST")try{s.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{s.setRequestHeader("Accept","*/*")}catch{}(e=this._opts.cookieJar)===null||e===void 0||e.addCookies(s),"withCredentials"in s&&(s.withCredentials=this._opts.withCredentials),this._opts.requestTimeout&&(s.timeout=this._opts.requestTimeout),s.onreadystatechange=()=>{var n;s.readyState===3&&((n=this._opts.cookieJar)===null||n===void 0||n.parseCookies(s.getResponseHeader("set-cookie"))),s.readyState===4&&(s.status===200||s.status===1223?this._onLoad():this.setTimeoutFn(()=>{this._onError(typeof s.status=="number"?s.status:0)},0))},s.send(this._data)}catch(n){this.setTimeoutFn(()=>{this._onError(n)},0);return}typeof document<"u"&&(this._index=r.requestsCount++,r.requests[this._index]=this)}_onError(e){this.emitReserved("error",e,this._xhr),this._cleanup(!0)}_cleanup(e){if(!(typeof this._xhr>"u"||this._xhr===null)){if(this._xhr.onreadystatechange=wr,e)try{this._xhr.abort()}catch{}typeof document<"u"&&delete r.requests[this._index],this._xhr=null}}_onLoad(){let e=this._xhr.responseText;e!==null&&(this.emitReserved("data",e),this.emitReserved("success"),this._cleanup())}abort(){this._cleanup()}}return r.requestsCount=0,r.requests={},r})();if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",Xi);else if(typeof addEventListener=="function"){let r="onpagehide"in g?"pagehide":"unload";addEventListener(r,Xi,!1)}}function Xi(){for(let r in Mt.requests)Mt.requests.hasOwnProperty(r)&&Mt.requests[r].abort()}var br=(function(){let r=zi({xdomain:!1});return r&&r.responseType!==null})(),L=class extends te{constructor(t){super(t);let e=t&&t.forceBase64;this.supportsBinary=br&&!e}request(t={}){return Object.assign(t,{xd:this.xd},this.opts),new Mt(zi,this.uri(),t)}};function zi(r){let t=r.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!t||Ji))return new XMLHttpRequest}catch{}if(!t)try{return new g[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch{}}var Zi=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative",ie=class extends F{get name(){return"websocket"}doOpen(){let t=this.uri(),e=this.opts.protocols,i=Zi?{}:Ut(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(i.headers=this.opts.extraHeaders);try{this.ws=this.createSocket(t,e,i)}catch(s){return this.emitReserved("error",s)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let e=0;e<t.length;e++){let i=t[e],s=e===t.length-1;pt(i,this.supportsBinary,n=>{try{this.doWrite(i,n)}catch{}s&&N(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.onerror=()=>{},this.ws.close(),this.ws=null)}uri(){let t=this.opts.secure?"wss":"ws",e=this.query||{};return this.opts.timestampRequests&&(e[this.opts.timestampParam]=Bt()),this.supportsBinary||(e.b64=1),this.createUri(t,e)}},ee=g.WebSocket||g.MozWebSocket,I=class extends ie{createSocket(t,e,i){return Zi?new ee(t,e,i):e?new ee(t,e):new ee(t)}doWrite(t,e){this.ws.send(e)}};var G=class extends F{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch(t){return this.emitReserved("error",t)}this._transport.closed.then(()=>{this.onClose()}).catch(t=>{this.onError("webtransport error",t)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(t=>{let e=Gi(Number.MAX_SAFE_INTEGER,this.socket.binaryType),i=t.readable.pipeThrough(e).getReader(),s=qi();s.readable.pipeTo(t.writable),this._writer=s.writable.getWriter();let n=()=>{i.read().then(({done:a,value:c})=>{a||(this.onPacket(c),n())}).catch(a=>{})};n();let o={type:"open"};this.query.sid&&(o.data=`{"sid":"${this.query.sid}"}`),this._writer.write(o).then(()=>this.onOpen())})})}write(t){this.writable=!1;for(let e=0;e<t.length;e++){let i=t[e],s=e===t.length-1;this._writer.write(i).then(()=>{s&&N(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var t;(t=this._transport)===null||t===void 0||t.close()}};var re={websocket:I,webtransport:G,polling:L};var Ar=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,Tr=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function tt(r){if(r.length>8e3)throw"URI too long";let t=r,e=r.indexOf("["),i=r.indexOf("]");e!=-1&&i!=-1&&(r=r.substring(0,e)+r.substring(e,i).replace(/:/g,";")+r.substring(i,r.length));let s=Ar.exec(r||""),n={},o=14;for(;o--;)n[Tr[o]]=s[o]||"";return e!=-1&&i!=-1&&(n.source=t,n.host=n.host.substring(1,n.host.length-1).replace(/;/g,":"),n.authority=n.authority.replace("[","").replace("]","").replace(/;/g,":"),n.ipv6uri=!0),n.pathNames=vr(n,n.path),n.queryKey=Cr(n,n.query),n}function vr(r,t){let e=/\/{2,9}/g,i=t.replace(e,"/").split("/");return(t.slice(0,1)=="/"||t.length===0)&&i.splice(0,1),t.slice(-1)=="/"&&i.splice(i.length-1,1),i}function Cr(r,t){let e={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(i,s,n){s&&(e[s]=n)}),e}var se=typeof addEventListener=="function"&&typeof removeEventListener=="function",Vt=[];se&&addEventListener("offline",()=>{Vt.forEach(r=>r())},!1);var Wt=(()=>{class r extends u{constructor(e,i){if(super(),this.binaryType=Hi,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,e&&typeof e=="object"&&(i=e,e=null),e){let s=tt(e);i.hostname=s.host,i.secure=s.protocol==="https"||s.protocol==="wss",i.port=s.port,s.query&&(i.query=s.query)}else i.host&&(i.hostname=tt(i.host).host);P(this,i),this.secure=i.secure!=null?i.secure:typeof location<"u"&&location.protocol==="https:",i.hostname&&!i.port&&(i.port=this.secure?"443":"80"),this.hostname=i.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=i.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},i.transports.forEach(s=>{let n=s.prototype.name;this.transports.push(n),this._transportsByName[n]=s}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},i),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=Qi(this.opts.query)),se&&(this.opts.closeOnBeforeunload&&(this._beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this._beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},Vt.push(this._offlineEventListener))),this.opts.withCredentials&&(this._cookieJar=void 0),this._open()}createTransport(e){let i=Object.assign({},this.opts.query);i.EIO=Zt,i.transport=e,this.id&&(i.sid=this.id);let s=Object.assign({},this.opts,{query:i,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[e]);return new this._transportsByName[e](s)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}let e=this.opts.rememberUpgrade&&r.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";let i=this.createTransport(e);i.open(),this.setTransport(i)}setTransport(e){this.transport&&this.transport.removeAllListeners(),this.transport=e,e.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",i=>this._onClose("transport close",i))}onOpen(){this.readyState="open",r.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket(e){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(this.emitReserved("packet",e),this.emitReserved("heartbeat"),e.type){case"open":this.onHandshake(JSON.parse(e.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":let i=new Error("server error");i.code=e.data,this._onError(i);break;case"message":this.emitReserved("data",e.data),this.emitReserved("message",e.data);break}}onHandshake(e){this.emitReserved("handshake",e),this.id=e.sid,this.transport.query.sid=e.sid,this._pingInterval=e.pingInterval,this._pingTimeout=e.pingTimeout,this._maxPayload=e.maxPayload,this.onOpen(),this.readyState!=="closed"&&this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);let e=this._pingInterval+this._pingTimeout;this._pingTimeoutTime=Date.now()+e,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},e),this.opts.autoUnref&&this._pingTimeoutTimer.unref()}_onDrain(){this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){let e=this._getWritablePackets();this.transport.send(e),this._prevBufferLen=e.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let i=1;for(let s=0;s<this.writeBuffer.length;s++){let n=this.writeBuffer[s].data;if(n&&(i+=Yi(n)),s>0&&i>this._maxPayload)return this.writeBuffer.slice(0,s);i+=2}return this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;let e=Date.now()>this._pingTimeoutTime;return e&&(this._pingTimeoutTime=0,N(()=>{this._onClose("ping timeout")},this.setTimeoutFn)),e}write(e,i,s){return this._sendPacket("message",e,i,s),this}send(e,i,s){return this._sendPacket("message",e,i,s),this}_sendPacket(e,i,s,n){if(typeof i=="function"&&(n=i,i=void 0),typeof s=="function"&&(n=s,s=null),this.readyState==="closing"||this.readyState==="closed")return;s=s||{},s.compress=s.compress!==!1;let o={type:e,data:i,options:s};this.emitReserved("packetCreate",o),this.writeBuffer.push(o),n&&this.once("flush",n),this.flush()}close(){let e=()=>{this._onClose("forced close"),this.transport.close()},i=()=>{this.off("upgrade",i),this.off("upgradeError",i),e()},s=()=>{this.once("upgrade",i),this.once("upgradeError",i)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?s():e()}):this.upgrading?s():e()),this}_onError(e){if(r.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return this.transports.shift(),this._open();this.emitReserved("error",e),this._onClose("transport error",e)}_onClose(e,i){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),se&&(this._beforeunloadEventListener&&removeEventListener("beforeunload",this._beforeunloadEventListener,!1),this._offlineEventListener)){let s=Vt.indexOf(this._offlineEventListener);s!==-1&&Vt.splice(s,1)}this.readyState="closed",this.id=null,this.emitReserved("close",e,i),this.writeBuffer=[],this._prevBufferLen=0}}}return r.protocol=Zt,r})(),$t=class extends Wt{constructor(){super(...arguments),this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade)for(let t=0;t<this._upgrades.length;t++)this._probe(this._upgrades[t])}_probe(t){let e=this.createTransport(t),i=!1;Wt.priorWebsocketSuccess=!1;let s=()=>{i||(e.send([{type:"ping",data:"probe"}]),e.once("packet",U=>{if(!i)if(U.type==="pong"&&U.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",e),!e)return;Wt.priorWebsocketSuccess=e.name==="websocket",this.transport.pause(()=>{i||this.readyState!=="closed"&&(b(),this.setTransport(e),e.send([{type:"upgrade"}]),this.emitReserved("upgrade",e),e=null,this.upgrading=!1,this.flush())})}else{let rt=new Error("probe error");rt.transport=e.name,this.emitReserved("upgradeError",rt)}}))};function n(){i||(i=!0,b(),e.close(),e=null)}let o=U=>{let rt=new Error("probe error: "+U);rt.transport=e.name,n(),this.emitReserved("upgradeError",rt)};function a(){o("transport closed")}function c(){o("socket closed")}function R(U){e&&U.name!==e.name&&n()}let b=()=>{e.removeListener("open",s),e.removeListener("error",o),e.removeListener("close",a),this.off("close",c),this.off("upgrading",R)};e.once("open",s),e.once("error",o),e.once("close",a),this.once("close",c),this.once("upgrading",R),this._upgrades.indexOf("webtransport")!==-1&&t!=="webtransport"?this.setTimeoutFn(()=>{i||e.open()},200):e.open()}onHandshake(t){this._upgrades=this._filterUpgrades(t.upgrades),super.onHandshake(t)}_filterUpgrades(t){let e=[];for(let i=0;i<t.length;i++)~this.transports.indexOf(t[i])&&e.push(t[i]);return e}},et=class extends $t{constructor(t,e={}){let i=typeof t=="object"?t:e;(!i.transports||i.transports&&typeof i.transports[0]=="string")&&(i.transports=(i.transports||["polling","websocket","webtransport"]).map(s=>re[s]).filter(s=>!!s)),super(t,i)}};var mt=class extends Z{doPoll(){this._fetch().then(t=>{if(!t.ok)return this.onError("fetch read error",t.status,t);t.text().then(e=>this.onData(e))}).catch(t=>{this.onError("fetch read error",t)})}doWrite(t,e){this._fetch(t).then(i=>{if(!i.ok)return this.onError("fetch write error",i.status,i);e()}).catch(i=>{this.onError("fetch write error",i)})}_fetch(t){var e;let i=t!==void 0,s=new Headers(this.opts.extraHeaders);return i&&s.set("content-type","text/plain;charset=UTF-8"),(e=this.socket._cookieJar)===null||e===void 0||e.appendCookies(s),fetch(this.uri(),{method:i?"POST":"GET",body:i?t:null,headers:s,credentials:this.opts.withCredentials?"include":"omit"}).then(n=>{var o;return(o=this.socket._cookieJar)===null||o===void 0||o.parseCookies(n.headers.getSetCookie()),n})}};var Sn=et.protocol;function tr(r,t="",e){let i=r;e=e||typeof location<"u"&&location,r==null&&(r=e.protocol+"//"+e.host),typeof r=="string"&&(r.charAt(0)==="/"&&(r.charAt(1)==="/"?r=e.protocol+r:r=e.host+r),/^(https?|wss?):\/\//.test(r)||(typeof e<"u"?r=e.protocol+"//"+r:r="https://"+r),i=tt(r)),i.port||(/^(http|ws)$/.test(i.protocol)?i.port="80":/^(http|ws)s$/.test(i.protocol)&&(i.port="443")),i.path=i.path||"/";let n=i.host.indexOf(":")!==-1?"["+i.host+"]":i.host;return i.id=i.protocol+"://"+n+":"+i.port+t,i.href=i.protocol+"://"+n+(e&&e.port===i.port?"":":"+i.port),i}var le={};ye(le,{Decoder:()=>ce,Encoder:()=>ae,PacketType:()=>h,protocol:()=>ue});var Rr=typeof ArrayBuffer=="function",Or=r=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(r):r.buffer instanceof ArrayBuffer,er=Object.prototype.toString,kr=typeof Blob=="function"||typeof Blob<"u"&&er.call(Blob)==="[object BlobConstructor]",xr=typeof File=="function"||typeof File<"u"&&er.call(File)==="[object FileConstructor]";function gt(r){return Rr&&(r instanceof ArrayBuffer||Or(r))||kr&&r instanceof Blob||xr&&r instanceof File}function _t(r,t){if(!r||typeof r!="object")return!1;if(Array.isArray(r)){for(let e=0,i=r.length;e<i;e++)if(_t(r[e]))return!0;return!1}if(gt(r))return!0;if(r.toJSON&&typeof r.toJSON=="function"&&arguments.length===1)return _t(r.toJSON(),!0);for(let e in r)if(Object.prototype.hasOwnProperty.call(r,e)&&_t(r[e]))return!0;return!1}function ir(r){let t=[],e=r.data,i=r;return i.data=ne(e,t),i.attachments=t.length,{packet:i,buffers:t}}function ne(r,t){if(!r)return r;if(gt(r)){let e={_placeholder:!0,num:t.length};return t.push(r),e}else if(Array.isArray(r)){let e=new Array(r.length);for(let i=0;i<r.length;i++)e[i]=ne(r[i],t);return e}else if(typeof r=="object"&&!(r instanceof Date)){let e={};for(let i in r)Object.prototype.hasOwnProperty.call(r,i)&&(e[i]=ne(r[i],t));return e}return r}function rr(r,t){return r.data=oe(r.data,t),delete r.attachments,r}function oe(r,t){if(!r)return r;if(r&&r._placeholder===!0){if(typeof r.num=="number"&&r.num>=0&&r.num<t.length)return t[r.num];throw new Error("illegal attachments")}else if(Array.isArray(r))for(let e=0;e<r.length;e++)r[e]=oe(r[e],t);else if(typeof r=="object")for(let e in r)Object.prototype.hasOwnProperty.call(r,e)&&(r[e]=oe(r[e],t));return r}var Nr=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],ue=5,h=(function(r){return r[r.CONNECT=0]="CONNECT",r[r.DISCONNECT=1]="DISCONNECT",r[r.EVENT=2]="EVENT",r[r.ACK=3]="ACK",r[r.CONNECT_ERROR=4]="CONNECT_ERROR",r[r.BINARY_EVENT=5]="BINARY_EVENT",r[r.BINARY_ACK=6]="BINARY_ACK",r})(h||{}),ae=class{constructor(t){this.replacer=t}encode(t){return(t.type===h.EVENT||t.type===h.ACK)&&_t(t)?this.encodeAsBinary({type:t.type===h.EVENT?h.BINARY_EVENT:h.BINARY_ACK,nsp:t.nsp,data:t.data,id:t.id}):[this.encodeAsString(t)]}encodeAsString(t){let e=""+t.type;return(t.type===h.BINARY_EVENT||t.type===h.BINARY_ACK)&&(e+=t.attachments+"-"),t.nsp&&t.nsp!=="/"&&(e+=t.nsp+","),t.id!=null&&(e+=t.id),t.data!=null&&(e+=JSON.stringify(t.data,this.replacer)),e}encodeAsBinary(t){let e=ir(t),i=this.encodeAsString(e.packet),s=e.buffers;return s.unshift(i),s}};function sr(r){return Object.prototype.toString.call(r)==="[object Object]"}var ce=class r extends u{constructor(t){super(),this.reviver=t}add(t){let e;if(typeof t=="string"){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");e=this.decodeString(t);let i=e.type===h.BINARY_EVENT;i||e.type===h.BINARY_ACK?(e.type=i?h.EVENT:h.ACK,this.reconstructor=new he(e),e.attachments===0&&super.emitReserved("decoded",e)):super.emitReserved("decoded",e)}else if(gt(t)||t.base64)if(this.reconstructor)e=this.reconstructor.takeBinaryData(t),e&&(this.reconstructor=null,super.emitReserved("decoded",e));else throw new Error("got binary data when not reconstructing a packet");else throw new Error("Unknown type: "+t)}decodeString(t){let e=0,i={type:Number(t.charAt(0))};if(h[i.type]===void 0)throw new Error("unknown packet type "+i.type);if(i.type===h.BINARY_EVENT||i.type===h.BINARY_ACK){let n=e+1;for(;t.charAt(++e)!=="-"&&e!=t.length;);let o=t.substring(n,e);if(o!=Number(o)||t.charAt(e)!=="-")throw new Error("Illegal attachments");i.attachments=Number(o)}if(t.charAt(e+1)==="/"){let n=e+1;for(;++e&&!(t.charAt(e)===","||e===t.length););i.nsp=t.substring(n,e)}else i.nsp="/";let s=t.charAt(e+1);if(s!==""&&Number(s)==s){let n=e+1;for(;++e;){let o=t.charAt(e);if(o==null||Number(o)!=o){--e;break}if(e===t.length)break}i.id=Number(t.substring(n,e+1))}if(t.charAt(++e)){let n=this.tryParse(t.substr(e));if(r.isPayloadValid(i.type,n))i.data=n;else throw new Error("invalid payload")}return i}tryParse(t){try{return JSON.parse(t,this.reviver)}catch{return!1}}static isPayloadValid(t,e){switch(t){case h.CONNECT:return sr(e);case h.DISCONNECT:return e===void 0;case h.CONNECT_ERROR:return typeof e=="string"||sr(e);case h.EVENT:case h.BINARY_EVENT:return Array.isArray(e)&&(typeof e[0]=="number"||typeof e[0]=="string"&&Nr.indexOf(e[0])===-1);case h.ACK:case h.BINARY_ACK:return Array.isArray(e)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}},he=class{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){let e=rr(this.reconPack,this.buffers);return this.finishedReconstruction(),e}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}};function w(r,t,e){return r.on(t,e),function(){r.off(t,e)}}var Pr=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1}),H=class extends u{constructor(t,e,i){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=e,i&&i.auth&&(this.auth=i.auth),this._opts=Object.assign({},i),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;let t=this.io;this.subs=[w(t,"open",this.onopen.bind(this)),w(t,"packet",this.onpacket.bind(this)),w(t,"error",this.onerror.bind(this)),w(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...e){var i,s,n;if(Pr.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');if(e.unshift(t),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(e),this;let o={type:h.EVENT,data:e};if(o.options={},o.options.compress=this.flags.compress!==!1,typeof e[e.length-1]=="function"){let b=this.ids++,U=e.pop();this._registerAckCallback(b,U),o.id=b}let a=(s=(i=this.io.engine)===null||i===void 0?void 0:i.transport)===null||s===void 0?void 0:s.writable,c=this.connected&&!(!((n=this.io.engine)===null||n===void 0)&&n._hasPingExpired());return this.flags.volatile&&!a||(c?(this.notifyOutgoingListeners(o),this.packet(o)):this.sendBuffer.push(o)),this.flags={},this}_registerAckCallback(t,e){var i;let s=(i=this.flags.timeout)!==null&&i!==void 0?i:this._opts.ackTimeout;if(s===void 0){this.acks[t]=e;return}let n=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let a=0;a<this.sendBuffer.length;a++)this.sendBuffer[a].id===t&&this.sendBuffer.splice(a,1);e.call(this,new Error("operation has timed out"))},s),o=(...a)=>{this.io.clearTimeoutFn(n),e.apply(this,a)};o.withError=!0,this.acks[t]=o}emitWithAck(t,...e){return new Promise((i,s)=>{let n=(o,a)=>o?s(o):i(a);n.withError=!0,e.push(n),this.emit(t,...e)})}_addToQueue(t){let e;typeof t[t.length-1]=="function"&&(e=t.pop());let i={id:this._queueSeq++,tryCount:0,pending:!1,args:t,flags:Object.assign({fromQueue:!0},this.flags)};t.push((s,...n)=>i!==this._queue[0]?void 0:(s!==null?i.tryCount>this._opts.retries&&(this._queue.shift(),e&&e(s)):(this._queue.shift(),e&&e(null,...n)),i.pending=!1,this._drainQueue())),this._queue.push(i),this._drainQueue()}_drainQueue(t=!1){if(!this.connected||this._queue.length===0)return;let e=this._queue[0];e.pending&&!t||(e.pending=!0,e.tryCount++,this.flags=e.flags,this.emit.apply(this,e.args))}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this._sendConnectPacket(t)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(t){this.packet({type:h.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},t):t})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,e){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,e),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(t=>{if(!this.sendBuffer.some(i=>String(i.id)===t)){let i=this.acks[t];delete this.acks[t],i.withError&&i.call(this,new Error("socket has been disconnected"))}})}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case h.CONNECT:t.data&&t.data.sid?this.onconnect(t.data.sid,t.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case h.EVENT:case h.BINARY_EVENT:this.onevent(t);break;case h.ACK:case h.BINARY_ACK:this.onack(t);break;case h.DISCONNECT:this.ondisconnect();break;case h.CONNECT_ERROR:this.destroy();let i=new Error(t.data.message);i.data=t.data.data,this.emitReserved("connect_error",i);break}}onevent(t){let e=t.data||[];t.id!=null&&e.push(this.ack(t.id)),this.connected?this.emitEvent(e):this.receiveBuffer.push(Object.freeze(e))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){let e=this._anyListeners.slice();for(let i of e)i.apply(this,t)}super.emit.apply(this,t),this._pid&&t.length&&typeof t[t.length-1]=="string"&&(this._lastOffset=t[t.length-1])}ack(t){let e=this,i=!1;return function(...s){i||(i=!0,e.packet({type:h.ACK,id:t,data:s}))}}onack(t){let e=this.acks[t.id];typeof e=="function"&&(delete this.acks[t.id],e.withError&&t.data.unshift(null),e.apply(this,t.data))}onconnect(t,e){this.id=t,this.recovered=e&&this._pid===e,this._pid=e,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:h.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){let e=this._anyListeners;for(let i=0;i<e.length;i++)if(t===e[i])return e.splice(i,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(t),this}prependAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(t),this}offAnyOutgoing(t){if(!this._anyOutgoingListeners)return this;if(t){let e=this._anyOutgoingListeners;for(let i=0;i<e.length;i++)if(t===e[i])return e.splice(i,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(t){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){let e=this._anyOutgoingListeners.slice();for(let i of e)i.apply(this,t.data)}}};function Y(r){r=r||{},this.ms=r.min||100,this.max=r.max||1e4,this.factor=r.factor||2,this.jitter=r.jitter>0&&r.jitter<=1?r.jitter:0,this.attempts=0}Y.prototype.duration=function(){var r=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),e=Math.floor(t*this.jitter*r);r=(Math.floor(t*10)&1)==0?r-e:r+e}return Math.min(r,this.max)|0};Y.prototype.reset=function(){this.attempts=0};Y.prototype.setMin=function(r){this.ms=r};Y.prototype.setMax=function(r){this.max=r};Y.prototype.setJitter=function(r){this.jitter=r};var K=class extends u{constructor(t,e){var i;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(e=t,t=void 0),e=e||{},e.path=e.path||"/socket.io",this.opts=e,P(this,e),this.reconnection(e.reconnection!==!1),this.reconnectionAttempts(e.reconnectionAttempts||1/0),this.reconnectionDelay(e.reconnectionDelay||1e3),this.reconnectionDelayMax(e.reconnectionDelayMax||5e3),this.randomizationFactor((i=e.randomizationFactor)!==null&&i!==void 0?i:.5),this.backoff=new Y({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(e.timeout==null?2e4:e.timeout),this._readyState="closed",this.uri=t;let s=e.parser||le;this.encoder=new s.Encoder,this.decoder=new s.Decoder,this._autoConnect=e.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,t||(this.skipReconnect=!0),this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var e;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(e=this.backoff)===null||e===void 0||e.setMin(t),this)}randomizationFactor(t){var e;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(e=this.backoff)===null||e===void 0||e.setJitter(t),this)}reconnectionDelayMax(t){var e;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(e=this.backoff)===null||e===void 0||e.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new et(this.uri,this.opts);let e=this.engine,i=this;this._readyState="opening",this.skipReconnect=!1;let s=w(e,"open",function(){i.onopen(),t&&t()}),n=a=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",a),t?t(a):this.maybeReconnectOnOpen()},o=w(e,"error",n);if(this._timeout!==!1){let a=this._timeout,c=this.setTimeoutFn(()=>{s(),n(new Error("timeout")),e.close()},a);this.opts.autoUnref&&c.unref(),this.subs.push(()=>{this.clearTimeoutFn(c)})}return this.subs.push(s),this.subs.push(o),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");let t=this.engine;this.subs.push(w(t,"ping",this.onping.bind(this)),w(t,"data",this.ondata.bind(this)),w(t,"error",this.onerror.bind(this)),w(t,"close",this.onclose.bind(this)),w(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(e){this.onclose("parse error",e)}}ondecoded(t){N(()=>{this.emitReserved("packet",t)},this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,e){let i=this.nsps[t];return i?this._autoConnect&&!i.active&&i.connect():(i=new H(this,t,e),this.nsps[t]=i),i}_destroy(t){let e=Object.keys(this.nsps);for(let i of e)if(this.nsps[i].active)return;this._close()}_packet(t){let e=this.encoder.encode(t);for(let i=0;i<e.length;i++)this.engine.write(e[i],t.options)}cleanup(){this.subs.forEach(t=>t()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose(t,e){var i;this.cleanup(),(i=this.engine)===null||i===void 0||i.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,e),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;let t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{let e=this.backoff.duration();this._reconnecting=!0;let i=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(s=>{s?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",s)):t.onreconnect()}))},e);this.opts.autoUnref&&i.unref(),this.subs.push(()=>{this.clearTimeoutFn(i)})}}onreconnect(){let t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}};var yt={};function Q(r,t){typeof r=="object"&&(t=r,r=void 0),t=t||{};let e=tr(r,t.path||"/socket.io"),i=e.source,s=e.id,n=e.path,o=yt[s]&&n in yt[s].nsps,a=t.forceNew||t["force new connection"]||t.multiplex===!1||o,c;return a?c=new K(i,t):(yt[s]||(yt[s]=new K(i,t)),c=yt[s]),e.query&&!t.query&&(t.query=e.queryKey),c.socket(e.path,t)}Object.assign(Q,{Manager:K,Socket:H,io:Q,connect:Q});var it=class r{config;appRef;subscribersCounter={};eventObservables$={};namespaces={};ioSocket;emptyConfig={url:"",options:{}};constructor(t,e){this.config=t,this.appRef=e,t===void 0&&(t=this.emptyConfig);let i=t.url,s=t.options,n=Q?Q:pe;this.ioSocket=n(i,s)}get auth(){return this.ioSocket.auth}set auth(t){this.ioSocket.auth=t}get io(){return this.ioSocket.io}get open(){return this.connect}get close(){return this.disconnect}of(t){if(!t||t==="/")return this;let e=this.namespaces[t];if(e)return e;let a=this.config,{url:i}=a,s=ge(a,["url"]),n=O({url:!i.endsWith("/")&&!t.startsWith("/")?`${i}/${t}`:`${i}${t}`},s),o=new r(n,this.appRef);return this.namespaces[t]=o,o}on(t,e){return this.ioSocket.on(t,e),this}once(t,e){return this.ioSocket.once(t,e),this}connect(){return this.ioSocket.connect(),this}disconnect(){return this.ioSocket.disconnect(),this}emit(t,...e){return this.ioSocket.emit(t,...e),this}send(...t){return this.ioSocket.send.apply(this.ioSocket,arguments),this}emitWithAck(t,...e){return this.ioSocket.emitWithAck(t,...e)}removeListener(t,e){return this.ioSocket.removeListener(t,e),this}removeAllListeners(t){return this.ioSocket.removeAllListeners(t),this}fromEvent(t){return this.subscribersCounter[t]||(this.subscribersCounter[t]=0),this.subscribersCounter[t]++,this.eventObservables$[t]||(this.eventObservables$[t]=new Se(e=>{let i=s=>{e.next(s),this.appRef.tick()};return this.ioSocket.on(t,i),()=>{this.subscribersCounter[t]--,this.subscribersCounter[t]===0&&(this.ioSocket.removeListener(t,i),delete this.eventObservables$[t])}}).pipe(Ae())),this.eventObservables$[t]}fromOneTimeEvent(t){return new Promise(e=>this.once(t,e))}listeners(t){return this.ioSocket.listeners(t)}hasListeners(t){return this.ioSocket.hasListeners(t)}listenersAny(){return this.ioSocket.listenersAny()}listenersAnyOutgoing(){return this.ioSocket.listenersAnyOutgoing()}off(t,e){return this.ioSocket.off(t,e),this}offAny(t){return this.ioSocket.offAny(t),this}offAnyOutgoing(t){return this.ioSocket.offAnyOutgoing(t),this}onAny(t){return this.ioSocket.onAny(t),this}onAnyOutgoing(t){return this.ioSocket.onAnyOutgoing(t),this}prependAny(t){return this.ioSocket.prependAny(t),this}prependAnyOutgoing(t){return this.ioSocket.prependAnyOutgoing(t),this}timeout(t){return this.ioSocket.timeout(t),this}get volatile(){let t=this.ioSocket.volatile;return this}get active(){return this.ioSocket.active}get connected(){return this.ioSocket.connected}get disconnected(){return this.ioSocket.disconnected}get recovered(){return this.ioSocket.recovered}get id(){return this.ioSocket.id}compress(t){return this.ioSocket.compress(t),this}};function Fr(r,t){return new it(r,t)}var nr=new ve("__SOCKET_IO_CONFIG__"),uo=(()=>{class r{static forRoot(e){return{ngModule:r,providers:[{provide:nr,useValue:e},{provide:it,useFactory:Fr,deps:[nr,xe]}]}}static \u0275fac=function(i){return new(i||r)};static \u0275mod=Oe({type:r});static \u0275inj=Te({})}return r})();var fe={BASE:`${ai}/notifications`,UNREAD:"unread"},qt=fe.BASE;var d=(function(r){return r.ADD="add",r.UPDATE="update",r.DELETE="delete",r.DELETE_PERMANENTLY="deletePermanently",r})(d||{});var y=(function(r){return r.COMMENTS="comments",r.SPACES="spaces",r.SPACE_ROOTS="spaces_roots",r.SHARES="shares",r.LINKS="links",r.SYNC="sync",r.AUTH_LOCKED="auth_locked",r.AUTH_2FA="auth_2fa",r.UNLOCK_REQUEST="unlock_request",r.UPDATE_AVAILABLE="server_update_available",r})(y||{}),yo={COMMENTS:"commented",SPACES:{[d.ADD]:"You now have access to the space",[d.DELETE]:"You no longer have access to the space",[d.DELETE_PERMANENTLY]:"This space has been permanently deleted"},SPACE_ROOTS:{[d.ADD]:"anchored",[d.DELETE]:"unanchored"},SHARES:{[d.ADD]:"shared with you",[d.DELETE]:"no longer share with you"},SHARES_WITHOUT_OWNER:{[d.ADD]:"You now have access to the share",[d.DELETE]:"You no longer have access to the share",[d.DELETE_PERMANENTLY]:"You are no longer a member of the parent share, your child share has been deleted"},LINKS:{[d.ADD]:"shared with you",[d.UPDATE]:"You now have access to the space"},SYNC:{[d.DELETE]:"You are no longer synchronizing"},AUTH_2FA:{[d.ADD]:"Two-factor authentication (2FA) on your account has been enabled",[d.DELETE]:"Two-factor authentication (2FA) on your account has been disabled"},AUTH_LOCKED:{[d.DELETE]:"Your account has been locked after several unsuccessful authentication attempts"},UNLOCK_REQUEST:"sends you a request to unlock the file",UPDATE_AVAILABLE:"A new update is available"};var or=ei;var ar={[y.COMMENTS]:or,[y.SPACES]:ct.SPACES,[y.SPACE_ROOTS]:ct.SPACES,[y.SHARES]:ct.SHARES,[y.LINKS]:ct.LINKS,[y.SYNC]:Ei.SYNC,[y.UNLOCK_REQUEST]:ti};var Gt=class{constructor(t){this.soonRead=!1,Object.assign(this,t),this.fromUser?this.fromUser.avatarUrl=M(this.fromUser.login):this.fromUser={id:-1,login:null,email:null,fullName:"Info",avatarUrl:null},this.appIcon=ar[this.content.app],this.setMainElement()}setMainElement(){if(!(this.content.app===y.COMMENTS||this.content.app===y.SHARES||this.content.app===y.UPDATE_AVAILABLE||this.content.app===y.SYNC)&&this.content?.url){let t=this.content.url.split("/");t.length>1&&(this.mainElement=t[t.length-1])}}};var cr=(()=>{let t=class t{constructor(){this.http=p(Tt),this.store=p(Pt),this.layout=p(z)}getNotifications(i=!1){return this.http.get(`${qt}${i?`/${fe.UNREAD}`:""}`).pipe(S(s=>s.map(n=>new Gt(n))))}wasReadNotification(i){return this.http.patch(`${qt}/${i}`,null)}deleteNotification(i){return this.http.delete(`${qt}${i?`/${i}`:""}`)}checkUnreadNotifications(i=!1){this.getNotifications().subscribe(s=>{let n;if(i&&s.length){let o=s[0];n=this.layout.sendNotification("info",o.fromUser.fullName,this.layout.translateString(`${this.layout.translateString(o.content.event)}: <b>${o.content.element}</b>`),null,{enableHtml:!0})}else{let o=s.filter(a=>!a.wasRead).length;o&&(n=this.layout.sendNotification("info","Notifications",this.layout.translateString(o===1?"one_notification":"nb_notifications",{nb:o})))}n&&n.onTap.pipe(be(1)).subscribe(()=>this.layout.showRSideBarTab(gi.NOTIFICATIONS,!0)),this.store.notifications.set(s)})}};t.\u0275fac=function(s){return new(s||t)},t.\u0275prov=wt({token:t,factory:t.\u0275fac,providedIn:"root"});let r=t;return r})();var E=(function(r){return r.ACCESS="access",r.ACCESS_2FA="access_2fa",r.REFRESH="refresh",r.WS="ws",r.CSRF="csrf",r.CSRF_2FA="csrf_2fa",r})(E||{});var Yo="sync-in-csrf";var de=6;var hr="sync-in-two-fa-code",ur="sync-in-two-fa-password",Ko={[E.ACCESS]:"/",[E.REFRESH]:Ci,[E.WS]:Ri,[E.CSRF]:"/",[E.ACCESS_2FA]:ki,[E.CSRF_2FA]:"/"},Qo=[E.REFRESH,E.ACCESS,E.WS,E.CSRF],jo=[E.ACCESS_2FA,E.CSRF_2FA];var Ir=["Password"];function Ur(r,t){r&1&&(f(0,"label",1),A(1,"Password"),_())}function Br(r,t){if(r&1){let e=st();f(0,"div",5),B("click",function(){W(e);let s=D();return $(s.randomPassword())}),f(1,"span"),J(2,"fa-icon",6),_()()}if(r&2){let e=D();m(2),C("icon",e.icons.faDice)}}var lr=(()=>{let t=class t{constructor(){this.passwordChange=new Re,this.passwordMinLength=8,this.showGenerator=!1,this.showLabel=!1,this.disabled=!1,this.isRequired=!1,this.focus=!1,this.centered=!1,this.locale=p(Ot),this.toggleVisiblePassword=yi,this.icons={faEye:Ze,faEyeSlash:ri,faDice:si}}ngOnInit(){this.focus&&setTimeout(()=>{this.passwordElement.nativeElement.focus(),this.passwordElement.nativeElement.select()},0)}randomPassword(){this.disabled||this.passwordChange.emit(mi(this.passwordMinLength+2))}};t.\u0275fac=function(s){return new(s||t)},t.\u0275cmp=bt({type:t,selectors:[["app-input-password"]],viewQuery:function(s,n){if(s&1&&Ne(Ir,7),s&2){let o;Pe(o=Fe())&&(n.passwordElement=o.first)}},inputs:{password:"password",passwordMinLength:"passwordMinLength",placeholder:"placeholder",showGenerator:"showGenerator",showLabel:"showLabel",disabled:"disabled",isRequired:"isRequired",focus:"focus",centered:"centered"},outputs:{passwordChange:"passwordChange"},decls:9,vars:16,consts:[["Password",""],["for","password","l10nTranslate",""],["id","password",1,"input-group","input-group-sm",2,"min-width","150px"],["autocomplete","off","type","password",1,"form-control","form-control-sm","pe-0",3,"ngModelChange","keyup","ngModel","disabled","placeholder","required"],[1,"input-group-text","cursor-pointer"],[1,"input-group-text","cursor-pointer",3,"click"],[3,"icon"]],template:function(s,n){if(s&1){let o=st();k(0,Ur,2,0,"label",1),f(1,"div",2)(2,"input",3,0),Me(4,"translate"),De("ngModelChange",function(c){return W(o),Be(n.password,c)||(n.password=c),$(c)}),B("keyup",function(){return W(o),$(n.passwordChange.emit(n.password))}),_(),k(5,Br,3,1,"div",4),f(6,"div",5),B("click",function(){W(o);let c=Yt(3);return $(n.toggleVisiblePassword(c))}),f(7,"span"),J(8,"fa-icon",6),_()()()}if(s&2){let o=Yt(3);x(n.showLabel?0:-1),m(2),Le("padding-left",n.centered?"2rem":""),At("is-invalid",n.isRequired&&(n.password==null?null:n.password.length)<n.passwordMinLength)("text-center",n.centered),Ue("ngModel",n.password),C("disabled",n.disabled)("placeholder",Ve(4,13,n.placeholder,n.locale.language))("required",n.isRequired),m(3),x(n.showGenerator?5:-1),m(3),C("icon",o.type==="text"?n.icons.faEye:n.icons.faEyeSlash)}},dependencies:[Je,vt,Ct,Ke,qe,Rt,Nt,kt,Xe],encapsulation:2});let r=t;return r})();var pr=(()=>{let t=class t{constructor(){this.autoFocus=!0,this.autoSelect=!0,this.elementRef=p(Ce)}ngOnInit(){setTimeout(()=>{this.autoFocus&&this.elementRef.nativeElement.focus(),this.autoSelect&&this.elementRef.nativeElement.select()},0)}};t.\u0275fac=function(s){return new(s||t)},t.\u0275dir=ke({type:t,selectors:[["","appAutofocus",""]],inputs:{autoFocus:"autoFocus",autoSelect:"autoSelect"}});let r=t;return r})();function Dr(r,t){r&1&&(f(0,"span",3),A(1,"Two-Factor Authentication"),_())}function Mr(r,t){r&1&&(f(0,"span",3),A(1,"Password Authentication"),_())}function Vr(r,t){if(r&1&&A(0),r&2){let e=D();Ie(" ",e.hasError," ")}}function Wr(r,t){r&1&&A(0," Enter your password ")}function $r(r,t){r&1&&A(0," Valid with your TOTP code ")}function qr(r,t){if(r&1){let e=st();f(0,"div",9)(1,"app-input-password",13),B("passwordChange",function(s){W(e);let n=D();return $(n.updatePassword(s))}),_()()}if(r&2){let e=D();m(),C("password",e.twoFaForm.value.password)("focus",!0)("centered",!0)}}function Gr(r,t){r&1&&(f(0,"div",14),A(1,"Valid with your TOTP code"),_())}function Hr(r,t){if(r&1&&(k(0,Gr,2,0,"div",14),f(1,"div",15),J(2,"input",16),_()),r&2){let e=D();x(e.withPassword?0:-1),m(2),C("autoFocus",!e.withPassword)("autoSelect",!e.withPassword)("maxlength",e.twoFaCodelength)}}var fr=(()=>{let t=class t{constructor(){this.withPassword=!1,this.withTwoFaEnabled=!0,this.submitted=!1,this.hasError=null,this.icons={faKey:ze,faLock:ii},this.twoFaCodelength=de,this.locale=p(Ot),this.fb=p(je),this.layout=p(z)}ngOnInit(){this.twoFaForm=this.fb.group({totpCode:this.fb.control("",this.withTwoFaEnabled?[nt.required,nt.pattern(new RegExp(`^\\d{${de}}$`))]:null),password:this.fb.control("",this.withPassword?[nt.required,nt.minLength(8)]:null)})}onClose(i=!1){this.isValid(i),this.layout.closeDialog()}onSubmit(){this.submitted=!0;let i=new We(O(O({},this.withTwoFaEnabled?{[hr]:this.twoFaForm.value.totpCode}:{}),this.withPassword?{[ur]:this.twoFaForm.value.password}:{}));this.onClose(i)}updatePassword(i){this.twoFaForm.patchValue({password:i})}};t.\u0275fac=function(s){return new(s||t)},t.\u0275cmp=bt({type:t,selectors:[["app-user-auth-2fa-verify-dialog"]],inputs:{withPassword:"withPassword",withTwoFaEnabled:"withTwoFaEnabled"},decls:20,vars:9,consts:[[1,"modal-header","align-items-center","justify-content-center"],[1,"modal-title"],[1,"me-2",3,"icon"],["l10nTranslate",""],[1,"modal-body","modal-auth-verify-2fa"],[1,"card","shadow-sm"],[1,"card-body"],["l10nTranslate","",1,"d-flex","justify-content-center","align-items-center","mb-3"],[3,"ngSubmit","formGroup"],[1,"mb-4"],[1,"d-grid","gap-2"],["type","submit","l10nTranslate","",1,"btn","btn-primary",3,"disabled"],["type","button","l10nTranslate","",1,"btn","btn-secondary",3,"click"],["id","password","placeholder","\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022",3,"passwordChange","password","focus","centered"],["l10nTranslate","",1,"text-align-center","mb-3"],[1,"mb-3"],["appAutofocus","","type","text","formControlName","totpCode","placeholder","\u2022\u2022\u2022\u2022\u2022\u2022","inputmode","numeric","autocomplete","one-time-code","name","totp",1,"form-control","text-center","fs-4",3,"autoFocus","autoSelect","maxlength"]],template:function(s,n){s&1&&(f(0,"div",0)(1,"h4",1),J(2,"fa-icon",2),k(3,Dr,2,0,"span",3)(4,Mr,2,0,"span",3),_()(),f(5,"div",4)(6,"div",5)(7,"div",6)(8,"p",7),k(9,Vr,1,1)(10,Wr,1,0)(11,$r,1,0),_(),f(12,"form",8),B("ngSubmit",function(){return n.onSubmit()}),k(13,qr,2,3,"div",9),k(14,Hr,3,4),f(15,"div",10)(16,"button",11),A(17,"Confirm"),_(),f(18,"button",12),B("click",function(){return n.onClose()}),A(19,"Cancel"),_()()()()()()),s&2&&(m(2),C("icon",n.icons.faLock),m(),x(n.withTwoFaEnabled?3:4),m(5),At("text-danger",n.hasError),m(),x(n.hasError?9:n.withPassword?10:11),m(3),C("formGroup",n.twoFaForm),m(),x(n.withPassword?13:-1),m(),x(n.withTwoFaEnabled?14:-1),m(2),C("disabled",n.twoFaForm.invalid||n.submitted))},dependencies:[Nt,kt,pr,Rt,Ge,vt,Ct,$e,Qe,He,Ye,lr],encapsulation:2});let r=t;return r})();var Ht=class{constructor(t){this.parentGroup=t.parentGroup,this.members=t.members.map(e=>new T(e))}};var j=class{constructor(t){this.newly=0,this.currentAccessHover=!1,this.setManagers(t),Object.assign(this,t),this.avatarUrl=M(t.login),this.userIsActiveText=this.isActive?"active":"suspended",this.hTimeAgo=oi(this.currentAccess).fromNow(!0),this.newly=at(this.currentAccess)}setManagers(t){t?.managers&&(t.managers=t.managers.map(e=>new T(e)))}};var St=class{constructor(t){this.setOnlineStatus(_i("status",t)),this.avatarUrl=M(t.login),Object.assign(this,t)}setOnlineStatus(t){this.onlineStatus=t,this.onlineTextStatus=ni[t]}};var oc=(()=>{let t=class t{constructor(){this.http=p(Tt),this.layout=p(z),this.store=p(Pt),this.webSocket=p(it),this.notifications=p(cr),this.webSocket.fromEvent("connect").subscribe(()=>this.notifications.checkUnreadNotifications()),this.webSocket.fromEvent("disconnect").subscribe(()=>this.store.onlineUsers.set([])),this.webSocket.fromEvent(vi.EVENTS.NOTIFICATION).subscribe(()=>this.notifications.checkUnreadNotifications(!0)),this.webSocket.fromEvent(ht.EVENTS.ONLINE_USER).pipe(S(i=>new St(i))).subscribe(i=>this.newOnlineUser(i)),this.webSocket.fromEvent(ht.EVENTS.ONLINE_USERS).pipe(S(i=>i.map(s=>new St(s)))).subscribe(i=>this.setOnlineUsers(i)),this.webSocket.fromEvent(ht.EVENTS.ONLINE_STATUS).subscribe(i=>this.receiveOnlineStatus(i))}get user(){return this.store.user.getValue()}initUser(i,s=!1){this.refreshAvatar(),this.layout.setLanguage(i.language).catch(console.error),this.store.userImpersonate.set(s||i.impersonated),this.store.user.next(i),this.checkQuota(this.store.user.getValue()),s&&this.disconnectWebSocket(),this.connectWebSocket()}connectWebSocket(){this.webSocket.ioSocket.io.opts.query={onlineStatus:this.user.onlineStatus},this.webSocket.connect()}disconnectWebSocket(){this.webSocket.disconnect()}setOnlineUsers(i){this.store.onlineUsers.set(i)}newOnlineUser(i){this.store.onlineUsers().find(s=>s.id===i.id)?this.receiveOnlineStatus({userId:i.id,status:i.onlineStatus}):this.store.onlineUsers.update(s=>[i,...s])}userHavePermission(i){return this.user.isAdmin?!0:this.user?this.user.applications.indexOf(i)!==-1:!1}browseGroup(i){return this.http.get(`${pi}${i?`/${i}`:""}`).pipe(S(s=>new Ht(s)))}createPersonalGroup(i){return this.http.post(q,i).pipe(S(s=>new T(s)))}updatePersonalGroup(i,s){return this.http.put(`${q}/${i}`,s).pipe(S(n=>new T(n)))}leavePersonalGroup(i){return this.http.delete(`${fi}/${i}`)}addUsersToGroup(i,s){return this.http.patch(`${q}/${i}/${ot.USERS}`,s)}deletePersonalGroup(i){return this.http.delete(`${q}/${i}`)}updateUserFromPersonalGroup(i,s,n){return this.http.patch(`${q}/${i}/${ot.USERS}/${s}`,n)}removeUserFromGroup(i,s){return this.http.delete(`${q}/${i}/${ot.USERS}/${s}`)}listGuests(){return this.http.get(X).pipe(S(i=>i.map(s=>new j(s))))}getGuest(i){return this.http.get(`${X}/${i}`).pipe(S(s=>new j(s)))}createGuest(i){return this.http.post(X,i).pipe(S(s=>new j(s)))}updateGuest(i,s){return this.http.put(`${X}/${i}`,s).pipe(S(n=>n?new j(n):null))}deleteGuest(i){return this.http.delete(`${X}/${i}`)}genAvatar(){this.http.patch(jt,null).subscribe({next:()=>this.refreshAvatar(),error:i=>this.layout.sendNotification("error","Configuration","Avatar",i)})}uploadAvatar(i){let s=new FormData;s.append("file",i),this.http.put(jt,s).subscribe({next:()=>this.refreshAvatar(),error:n=>this.layout.sendNotification("error","Configuration","Avatar",n)})}changePassword(i,s){return this.http.put(hi,i,{headers:s})}changeLanguage(i){return this.http.put(ci,i)}changeNotification(i){return this.http.put(ui,i)}changeStorageIndexing(i){return this.http.put(li,i)}changeOnlineStatus(i,s=!0){this.webSocket.emit(ht.EVENTS.ONLINE_STATUS,{status:i,store:s})}receiveOnlineStatus(i){this.user.id===i.userId?this.user.onlineStatus=i.status:this.store.onlineUsers().length&&this.store.onlineUsers.update(s=>s.map(n=>n.id===i.userId?_e(O({},n),{onlineStatus:i.status}):n))}searchMembers(i,s=[]){return this.http.request("search",ot.BASE,{body:i}).pipe(S(n=>n.map(o=>new T(o,s))),we(()=>[]))}setMenusVisibility(i){for(let s of i)if(!(s.id&&(s.hide=!this.userHavePermission(s.id),s.hide))&&(s.checks?.length&&(s.hide=!s.checks.map(n=>n.negate?!this[n.prop][n.value]:this[n.prop][n.value]).every(n=>!!n)),s.submenus?.length&&this.setMenusVisibility(s.submenus),s.title===wi.FILES)){for(let n of s.submenus)if(!n.hide){s.link=n.link;break}}}refreshAvatar(){this.store.userAvatarUrl.next(Si())}checkAppStoreAvailability(){this.http.get(`${Qt.BASE}/${Qt.APP_STORE}`).subscribe({next:i=>this.store.appStoreManifest.set(i),error:i=>console.error(i)})}listAppPasswords(i){return this.http.get(xt,{headers:i})}generateAppPassword(i,s){return this.http.post(xt,i,{headers:s})}deleteAppPassword(i){return this.http.delete(`${xt}/${i}`)}init2Fa(){return this.http.get(Jt)}enable2Fa(i){return this.http.post(Jt,i)}disable2Fa(i){return this.http.post(Oi,i)}adminResetUser2Fa(i,s){return this.http.post(`${xi}/${i}`,null,{headers:s})}auth2FaVerifyDialog(i=!1){return Ee(this,null,function*(){let s=this.store.server().twoFaEnabled&&this.user.twoFaEnabled;if(i||s)return new Promise(n=>{let o=this.layout.openDialog(fr,"xs",{initialState:{withPassword:i,withTwoFaEnabled:s}},{keyboard:!1});o.content.isValid=a=>{n(a)}})})}checkQuota(i){if(!(i.isGuest||i.isLink)&&i.storageQuota){let s=Math.round(100/i.storageQuota*(i.storageQuota-i.storageUsage));s<=1?this.layout.sendNotification("error","Storage Quota","No more space available",null,{disableTimeOut:!0,closeButton:!0}):s<=5?this.layout.sendNotification("warning","Storage Quota",this.layout.translateString("available_space_is_low",{nb:s}),null,{disableTimeOut:!0,closeButton:!0}):s<=10&&this.layout.sendNotification("info","Storage Quota",this.layout.translateString("available_space_is_low",{nb:s}),null,{disableTimeOut:!0,closeButton:!0})}}};t.\u0275fac=function(s){return new(s||t)},t.\u0275prov=wt({token:t,factory:t.\u0275fac,providedIn:"root"});let r=t;return r})();export{us as a,ls as b,Ci as c,ki as d,Yo as e,de as f,hr as g,ur as h,uo as i,y as j,cr as k,lr as l,pr as m,V as n,Ti as o,jr as p,Jr as q,Xr as r,T as s,os as t,Ht as u,j as v,oc as w};
@@ -1,2 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",r="Usu\xE1rio",i="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Filtrar",c="Filtros",l="pesquisar",u="Pesquisar",p="Ver",m="Nenhuma tarefa",h="{{ nb }} tarefa conclu\xEDda",v="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",f="{{ nba }} tarefas em andamento de {{ nb }}",b="{{nb}} elemento(s)",y="{{nb}} a\xE7\xE3o(\xF5es)",w="{{ nb }} nova mensagem",S="{{ nb }} novas mensagens",x="{{ nb }} notifica\xE7\xE3o n\xE3o lida",A="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",C="Aplicativo",E="aplicativo",q="Notifica\xE7\xE3o",z="Notifica\xE7\xF5es",T="Evento",k="Arquivo",N="Arquivos",D="Pessoais",P="Externo",_="Grupos",U="Grupo",F="grupo",O="grupos",L="Vis\xEDvel",R="Privado",M="Isolado",G="Adicionar",V="Administrador",j="Administra\xE7\xE3o",I="Usu\xE1rio",Y="usu\xE1rio",W="Usu\xE1rios",B="usu\xE1rios",Q="conta",H="Conta",K="E-mail",J="Status",X="Fun\xE7\xE3o",Z="IP",$="Visto",ee="Conex\xE3o",oe="Conex\xF5es",ae="Espa\xE7o dispon\xEDvel baixo ( {{ nb }}% )",re="online",ie="Ilimitado",se="membro",ne="membros",te="Membro",de="Membros",ce="Gerente",le="gerente",ue="Gerentes",pe="Gerar",me="Importar",he="Configura\xE7\xE3o",ve="Aplicativos",ge="aplicativos",fe="Avatar",be="Atualizar",ye="Idioma",we="In\xEDcio",Se="Recentes",xe="recentes",Ae="Lixeira",Ce="Compartilhamentos",Ee="Compartilhar",qe="compartilhamentos",ze="compartilhado",Te="Acesso ao espa\xE7o pessoal",ke="Acesso aos espa\xE7os",Ne="Administra\xE7\xE3o de espa\xE7os",De="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",_e="Administra\xE7\xE3o de convidados",Ue="Administra\xE7\xE3o de grupos pessoais",Fe="Acesso pelo aplicativo de desktop",Oe="Sincroniza\xE7\xE3o pelo aplicativo de desktop",Le="Acesso WebDAV",Re="WebDAV",Me="Espa\xE7o",Ge="Espa\xE7os",Ve="espa\xE7os",je="ancorou",Ie="desancorou",Ye="Localiza\xE7\xE3o",We="Ancorado",Be="Configura\xE7\xF5es",Qe="Op\xE7\xF5es",He="Nome",Ke="Baixar",Je="Mover",Xe="Copiar",Ze="Renomear",$e="Editar",eo="Remover",oo="\xC1rea de transfer\xEAncia",ao="Atualizar",ro="Esvaziar",io="Lista",so="Exibi\xE7\xE3o",no="Deseja mover <b>{{arg}}</b> para a lixeira?",to="Deseja excluir <b>{{arg}}</b> permanentemente?",co="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",lo="Deseja excluir estes <b>{{arg}} arquivos</b> permanentemente?",uo="sincroniza\xE7\xE3o",po="Sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xF5es",ho="Sincronizar",vo="Sync",go="Sincronizado",fo="Comprimir",bo="Descomprimir",yo="Info",wo="Tamanho",So="Modificado",xo="modificado",Ao="Tarefas",Co="Texto",Eo="Elementos",qo="Novo",zo="Pasta",To="pasta",ko="arquivo",No="arquivos",Do="diret\xF3rio",Po="diret\xF3rios",_o="Total",Uo="nenhum item selecionado",Fo="{{ nb }} item selecionado",Oo="{{ nb }} itens selecionados",Lo="item",Ro="itens",Mo="criar",Go="escrever",Vo="mover",jo="excluir",Io="modificar",Yo="compartilhamento",Wo="Link",Bo="link",Qo="Links",Ho="links",Ko="Convidado",Jo="Convidados",Xo="convidado",Zo="convidados",$o="Expirado",ea="expirado",oa="nenhum",aa="Permiss\xF5es",ra="Propriet\xE1rio",ia="Eu",sa="Compartilhado",na="Criado",ta="Data",da="Caminho",ca="ativo",la="Ativo",ua="suspenso",pa="Tipo",ma="Descri\xE7\xE3o",ha="Visibilidade",va="Desconhecido",ga="Expira\xE7\xE3o",fa="Acesso",ba="Acessado",ya="Comentar",wa="Coment\xE1rios",Sa="coment\xE1rios",xa="comentou",Aa="sim",Ca="n\xE3o",Ea="Cliente",qa="Clientes",za="dispon\xEDvel",Ta="ocupado",ka="ausente",Na="desconectado",Da="Ver",Pa="sair",_a="dias",Ua="dia",Fa="Excluir",Oa="Agendador",La="paralelo",Ra="sequencial",Ma="Transfer\xEAncias",Ga="Simular",Va="Redefinir",ja="Navegar",Ia="A\xE7\xE3o",Ya="Adicionado",Wa="Removido",Ba="Copiado",Qa="Movido",Ha="Filtrado",Ka="Erro",Ja="Servidor",Xa="Dire\xE7\xE3o",Za="Conflito",$a="recente",er="Origem",or="Destino",ar="Modo",rr="Sequencialmente",ir="Ass\xEDncronamente",sr="r\xE1pido",nr="seguro",tr="ativado",dr="Ativar",cr="desativado",lr="Desativar",ur="horas",pr="minutos",mr="dias",hr="ambos",vr="nunca",gr="Assistente",fr="Pr\xF3ximo",br="Anterior",yr="Conclu\xEDdo",wr="para",Sr="Reposit\xF3rio",xr="p\xFAblico",Ar="local",Cr="remoto",Er="Site",qr="Documenta\xE7\xE3o",zr="Vers\xF5es",Tr="Seguran\xE7a",kr="Gerenciar",Nr="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",Dr="Salvar",Pr="Desfazer",_r="Refazer",Ur="eu",Fr="Desbloquear",Or="Bloqueio",Lr="Exclusivo",Rr="Tela cheia",Mr="Dimens\xF5es",Gr={"Sign-in to your account":"Fa\xE7a login na sua conta","Wrong login or password":"Usu\xE1rio ou senha incorretos","Authentication service error":"Erro do servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o autorizada","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:r,Password:i,"Login or Email":"Usu\xE1rio ou e-mail","Login already used":"Usu\xE1rio j\xE1 utilizado","You are already logged in":"Voc\xEA j\xE1 est\xE1 conectado","Name already used":"Nome j\xE1 utilizado","Token has expired":"O token expirou",Confirm:s,Cancel:n,Close:t,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:d,Filters:c,search:l,Search:u,"Search for content":"Pesquisar conte\xFAdo","Search for files":"Pesquisar arquivos","Full-text search":"Pesquisa de texto completo","Full-text search is disabled":"A pesquisa de texto completo est\xE1 desativada","Type to search for users or groups to add":"Digite para procurar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para procurar grupos para adicionar","Type to search for users to add":"Digite para procurar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para procurar gerentes para adicionar","Member since":"Membro desde","Windows Manager":"Gerenciador de janelas","Mark as read":"Marcar como lido",See:p,no_task:m,one_task:h,nb_tasks:v,one_active_task:g,nb_active_tasks:f,nb_elements:b,nb_actions:y,one_message:w,nb_messages:S,one_notification:x,nb_notifications:A,Application:C,application:E,"application and email":"aplicativo e e-mail",Notification:q,Notifications:z,Event:T,File:k,Files:N,"Personal files":"Arquivos pessoais","for personal files":"para os arquivos pessoais",Personal:D,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:_,Group:U,group:F,"New personal group":"Novo grupo pessoal","Edit personal group":"Editar grupo pessoal","personal group":"grupo pessoal","Personal group":"Grupo pessoal","Personal groups":"Grupos pessoais",groups:O,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro do grupo","Set as group manager":"Definir como gerente do grupo","As a manager, the user will be able to manage the group and its members.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar o grupo e seus membros.","As a manager, the user will be able to manage group members but not group properties.":`Como gerente, o usu\xE1rio poder\xE1 gerenciar os membros do grupo, mas n\xE3o as propriedades do grupo.
2
- `,Visible:L,Private:R,Isolated:M,"Select the parent group":"Selecionar o grupo pai","from the group":"do grupo","New group":"Novo grupo","Edit group":"Editar grupo","Leave group":"Sair do grupo","Delete group":"Excluir grupo","Remove from group":"Remover do grupo","Group must have at least one manager":"O grupo deve ter pelo menos um gerente","The group was left":"O grupo foi abandonado","The group was not left":"O grupo n\xE3o foi abandonado","will be left, you will no longer be a member of this group":"ser\xE1 abandonado, voc\xEA n\xE3o ser\xE1 mais membro deste grupo","All users can see this group.":"Todos os usu\xE1rios podem ver este grupo.","Users who are not members of this group cannot see it.":"Os usu\xE1rios que n\xE3o s\xE3o membros deste grupo n\xE3o podem v\xEA-lo.","The group is not visible, its members cannot see it and cannot see each other.":"O grupo n\xE3o \xE9 vis\xEDvel, seus membros n\xE3o podem v\xEA-lo nem ver uns aos outros.",Add:G,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:V,Administration:j,User:I,user:Y,Users:W,users:B,"New user":"Novo usu\xE1rio",account:Q,Account:H,"Account status":"Status da conta",Email:K,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:J,Role:X,IP:Z,"IP Addresses":"Endere\xE7os IP",Seen:$,Connection:ee,Connections:oe,"Confirm deletion":"Confirmar exclus\xE3o","Confirm permanent deletion of data":"Confirmar a exclus\xE3o permanente dos dados","Space and data will be deleted in":"O espa\xE7o e os dados ser\xE3o exclu\xEDdos em","Space is disabled":"O espa\xE7o est\xE1 desativado","Storage Space":"Espa\xE7o de armazenamento","Storage Quota":"Cota de armazenamento","Storage Usage":"Uso do armazenamento","Space status":"Estado do espa\xE7o","Storage quota exceeded":"A cota de armazenamento foi excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem mais espa\xE7o dispon\xEDvel",available_space_is_low:ae,online:re,"Online users":"Usu\xE1rios online",Unlimited:ie,member:se,members:ne,Member:te,Members:de,Manager:ce,manager:le,Managers:ue,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:pe,Import:me,Configuration:he,Applications:ve,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Somente o grupo ser\xE1 exclu\xEDdo, os membros n\xE3o far\xE3o mais parte dele.",Avatar:fe,Update:be,"current password":"senha atual","new password":"nova senha","Change me !":"Mude-me!","Current password missing !":"Senha atual ausente!","New password missing !":"Nova senha ausente!","New password must have 8 characters minimum":"A nova senha deve ter no m\xEDnimo 8 caracteres","Current password does not match":"A senha atual n\xE3o confere","Password has been updated":"A senha foi atualizada","Unable to update password":"N\xE3o \xE9 poss\xEDvel atualizar a senha","Bad password":"Senha incorreta","too many login attempts":"muitas tentativas de login",Language:ye,"Language updated":"Idioma atualizado","Unable to update language":"N\xE3o \xE9 poss\xEDvel atualizar o idioma","Notification preference updated":"Prefer\xEAncia de notifica\xE7\xE3o atualizada","Full-text search preference updated":"Prefer\xEAncia de pesquisa de texto completo atualizada","Unable to update notification preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o \xE9 poss\xEDvel abrir o documento","Unable to save document":"N\xE3o \xE9 poss\xEDvel salvar o documento",Home:we,Recents:Se,recents:xe,Trash:Ae,"trash bins":"lixeiras",Shares:Ce,Share:Ee,shares:qe,shared:ze,personal_space:Te,spaces_access:ke,spaces_admin:Ne,shares_access:De,shares_admin:Pe,guests_admin:_e,personal_groups_admin:Ue,desktop_app_access:Fe,desktop_app_sync:Oe,webdav_access:Le,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Re,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Me,Spaces:Ge,spaces:Ve,"Space name":"Nome do espa\xE7o","New space":"Novo espa\xE7o","Create a new space":"Criar um novo espa\xE7o","Create space":"Criar espa\xE7o","Edit space":"Editar espa\xE7o","Delete space":"Excluir espa\xE7o","Create a new share":"Criar um novo compartilhamento","Type to search for space to select":"Digite para procurar o espa\xE7o a selecionar","Anchor to a space":"Ancorar a um espa\xE7o","Anchor files to a space":"Ancorar arquivos a um espa\xE7o","You have been invited to join this space":"Voc\xEA foi convidado a participar deste espa\xE7o","You have been invited to join this share":"Voc\xEA foi convidado a participar deste compartilhamento","Shared with others":"Compartilhado com outros","With others":"Com outros","Shared with me":"Compartilhado comigo","With me":"Comigo","Shared via links":"Compartilhado por links","Via links":"Por links","Shared from":"Compartilhado de","share with you this":"compartilha com voc\xEA este","shared with you":"compartilhou com voc\xEA","no longer share with you":"n\xE3o compartilha mais com voc\xEA","You now have access to the space":"Agora voc\xEA tem acesso ao espa\xE7o","You no longer have access to the space":"Voc\xEA n\xE3o tem mais acesso ao espa\xE7o","This space has been permanently deleted":"Este espa\xE7o foi exclu\xEDdo permanentemente","You now have access to the share":"Agora voc\xEA tem acesso ao compartilhamento","You no longer have access to the share":"Voc\xEA n\xE3o tem mais acesso ao compartilhamento","You are no longer a member of the parent share, your child share has been deleted":"Voc\xEA n\xE3o \xE9 mais membro do compartilhamento pai; seu compartilhamento filho foi exclu\xEDdo",anchored:je,unanchored:Ie,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:Ye,"Name and location are required":"Nome e localiza\xE7\xE3o s\xE3o obrigat\xF3rios","Parent location already exists in files":"A localiza\xE7\xE3o pai j\xE1 existe nos arquivos","Check the location":"Verificar a localiza\xE7\xE3o","Location not found":"Localiza\xE7\xE3o n\xE3o encontrada","Forbidden resource":"Localiza\xE7\xE3o n\xE3o autorizada","Resource already exists":"O item j\xE1 existe","The location does not exist":"A localiza\xE7\xE3o n\xE3o existe","The location is not readable":"A localiza\xE7\xE3o n\xE3o \xE9 leg\xEDvel","The location is not writeable":"A localiza\xE7\xE3o n\xE3o \xE9 grav\xE1vel","The location is a directory":"A localiza\xE7\xE3o \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This share is protected by a password":"Este compartilhamento est\xE1 protegido por senha","You do not have share permission":"Voc\xEA n\xE3o tem permiss\xE3o para compartilhar","You can not share a space":"Voc\xEA n\xE3o pode compartilhar um espa\xE7o","You can not remove an anchored file":"Voc\xEA n\xE3o pode remover um arquivo ancorado","You are not allowed to write here":"Voc\xEA n\xE3o est\xE1 autorizado a escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o est\xE1 autorizado a realizar esta a\xE7\xE3o","You can not move an anchored file":"Voc\xEA n\xE3o pode mover um arquivo ancorado","You can not move a locked file":"Voc\xEA n\xE3o pode mover um arquivo bloqueado",Anchored:We,"Anchored by":"Ancorado por","Manage my anchored files":"Gerenciar meus arquivos ancorados","You have no files anchored on this space":"Voc\xEA n\xE3o tem arquivos ancorados neste espa\xE7o","An anchored file already has this name":"Um arquivo ancorado j\xE1 tem este nome",Settings:Be,Options:Qe,Name:He,Download:Ke,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy/Move":"Copiar/Mover",Move:Je,"Move done":"Movimenta\xE7\xE3o conclu\xEDda","Move failed":"Falha na movimenta\xE7\xE3o","Deletion done":"Exclus\xE3o conclu\xEDda","Deletion failed":"Falha na exclus\xE3o","Creation failed":"Falha na cria\xE7\xE3o",Copy:Xe,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:Ze,Edit:$e,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:eo,Clipboard:oo,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:ao,Empty:ro,List:io,Display:so,"Sort by":"Ordenar por",trash_one_file:no,delete_one_file:to,trash_multiple_files:co,delete_multiple_files:lo,"Moving to trash":"Movendo para a lixeira","Permanent deletion":"Exclus\xE3o permanente","Would you like to empty the trash ?":"Deseja esvaziar a lixeira?","All items will be permanently deleted":"Todos os itens ser\xE3o exclu\xEDdos permanentemente","Actions will be performed in the current folder":"As a\xE7\xF5es ser\xE3o realizadas na pasta atual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"O cliente n\xE3o ter\xE1 mais permiss\xE3o para acessar sua conta e n\xE3o poder\xE1 mais sincronizar.","The access expires":"O acesso expira","The access has expired":"O acesso expirou","Never expires":"Nunca expira",synchronization:uo,Synchronization:po,Synchronizations:mo,Synchronize:ho,Sync:vo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"Sincroniza\xE7\xE3o redefinida","Sync deleted":"Sincroniza\xE7\xE3o exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:fo,Decompress:bo,"Compress and Download":"Comprimir e baixar","Compress and Save":"Comprimir e salvar","Enable compression":"Ativar compress\xE3o","Compression done":"Compress\xE3o conclu\xEDda","Compression failed":"Falha na compress\xE3o","Decompression done":"Descompress\xE3o conclu\xEDda","Decompression failed":"Falha na descompress\xE3o","(this may take longer)":"(isso pode demorar mais)","Save in the current directory":"Salvar no diret\xF3rio atual","This name is already used":"Este nome j\xE1 est\xE1 em uso",Info:yo,Size:wo,Modified:So,modified:xo,Tasks:Ao,"Download from URL":"Baixar de uma URL","Upload files":"Enviar arquivos","Upload folders":"Enviar pastas","Folder name":"Nome da pasta","New folder":"Nova pasta","Document name":"Nome do documento","New document":"Novo documento","File name":"Nome do arquivo","File permissions":"Permiss\xF5es do arquivo",Text:Co,"Rich Text Format":"Texto enriquecido","Forbidden characters":"Caracteres proibidos",Elements:Eo,"Malformed URL":"URL malformada",New:qo,Folder:zo,folder:To,file:ko,files:No,directory:Do,directories:Po,Total:_o,no_selection:Uo,one_selection:Fo,nb_selections:Oo,"Archive name":"Nome do arquivo compactado","Drag and drop your files here":"Arraste e solte seus arquivos aqui","The destination already exists":"O destino j\xE1 existe","This item is already selected":"Este item j\xE1 est\xE1 selecionado","Parent item is already selected":"O item pai j\xE1 est\xE1 selecionado","This file contains binary data that can not be read":"Este arquivo cont\xE9m dados bin\xE1rios que n\xE3o podem ser lidos","Navigation Tree":"\xC1rvore de navega\xE7\xE3o",item:Lo,items:Ro,create:Mo,write:Go,move:Vo,delete:jo,modify:Io,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Yo,"Share name":"Nome do compartilhamento","New share":"Novo compartilhamento","New share link":"Novo link de compartilhamento","New link":"Novo link","Edit children shares":"Editar compartilhamentos filhos",Link:Wo,link:Bo,Links:Qo,links:Ho,"Link copied":"Link copiado","Link created":"Link criado","Link deleted":"Link exclu\xEDdo","Link error":"Erro de link","Copy link":"Copiar link","Edit link":"Editar link","Guest Link":"Link de convidado","Guest name":"Nome do convidado","Guest email":"E-mail do convidado","Guest language":"Idioma do convidado",Guest:Ko,Guests:Jo,guest:Xo,guests:Zo,"New guest":"Novo convidado","Edit guest":"Editar convidado","Guest created":"Convidado criado","Guest deleted":"Convidado exclu\xEDdo","Guest updated":"Convidado atualizado","Guest error":"Erro do convidado","Add an external location":"Adicionar uma localiza\xE7\xE3o externa","External location":"Localiza\xE7\xE3o externa","Select a file":"Selecionar um arquivo","The link is expired":"O link expirou","The link is disabled":"O link est\xE1 desativado","The link was not found":"O link n\xE3o foi encontrado",Expired:$o,expired:ea,none:oa,"The maximum number of access allowed to the link is exceeded":"O n\xFAmero m\xE1ximo de acessos permitidos ao link foi excedido","Set a password":"Definir uma senha","Enter your password":"Digite sua senha",Permissions:aa,"No permissions":"Sem permiss\xF5es",Owner:ra,Me:ia,Shared:sa,Created:na,"Created & Modified":"Criado e modificado","Creation date":"Data de cria\xE7\xE3o","Modification date":"Data de modifica\xE7\xE3o","Deactivation date":"Data de desativa\xE7\xE3o",Date:ta,Path:da,active:ca,Active:la,suspended:ua,"Unable to rename user space":"N\xE3o \xE9 poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o \xE9 poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o \xE9 poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o \xE9 poss\xEDvel atualizar os grupos do usu\xE1rio","User created":"Usu\xE1rio criado","User updated":"Usu\xE1rio atualizado","User not found":"Usu\xE1rio n\xE3o encontrado","Edit user":"Editar usu\xE1rio","Impersonate identity":"Assumir identidade",Type:pa,Description:ma,Visibility:ha,"Unknown error !":"Erro desconhecido!",Unknown:va,Expiration:ga,"Limit access":"Limitar acessos","Current access count":"N\xFAmero atual de acessos",Access:fa,Accessed:ba,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:ya,Comments:wa,comments:Sa,commented:xa,"No recent comments":"Nenhum coment\xE1rio recente","Write a comment ...":"Escreva um coment\xE1rio ...",yes:Aa,no:Ca,Client:Ea,Clients:qa,available:za,busy:Ta,absent:ka,offline:Na,View:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Por favor, fa\xE7a login",logout:Pa,days:_a,day:Ua,Delete:Fa,Scheduler:Oa,async:La,seq:Ra,Transfers:Ma,Simulate:Ga,Reset:Va,Browse:ja,Action:Ia,Added:Ya,Removed:Wa,Copied:Ba,Moved:Qa,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"Mostrar arquivos filtrados",recent:$a,Source:er,Destination:or,Mode:ar,Sequentially:rr,Asynchronously:ir,fast:sr,secure:nr,enabled:tr,Enable:dr,disabled:cr,Disable:lr,scheduler_unit_hour:ur,scheduler_unit_minute:pr,scheduler_unit_day:mr,"You must have permission to modify the server folder to choose a different sync mode":"Voc\xEA deve ter permiss\xE3o para modificar a pasta do servidor para escolher um modo de sincroniza\xE7\xE3o diferente","upload only":"enviar apenas","download only":"baixar apenas",both:hr,never:vr,"Clear events":"Limpar eventos","Events from":"Eventos de","All syncs":"Todas as sincroniza\xE7\xF5es","All events":"Todos os eventos","will be cleared":"ser\xE3o limpos","No differences":"Sem diferen\xE7as","Select a folder":"Selecionar uma pasta","The files containing":"Os arquivos contendo","The files starting":"Os arquivos come\xE7ando","The files ending":"Os arquivos terminando","Expert (Regexp)":"Especialista (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por um nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:gr,Next:fr,Previous:br,Done:yr,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente vai ajud\xE1-lo a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio do Sync-in.","To begin, select a folder on your computer.":"Para come\xE7ar, selecione uma pasta no seu computador.",'You can drag the folder into the area below or click on the "Select" button.':'Voc\xEA pode arrastar a pasta para a \xE1rea abaixo ou clicar no bot\xE3o "Selecionar".',"Drop folder here":"Solte a pasta aqui","This directory is already synced":"Este diret\xF3rio j\xE1 est\xE1 sincronizado","The parent directory is already synced":"O diret\xF3rio pai j\xE1 est\xE1 sincronizado","This directory is not accessible":"Este diret\xF3rio n\xE3o \xE9 acess\xEDvel","This directory is read-only, you will not be able to modify it":"Este diret\xF3rio \xE9 somente leitura; voc\xEA n\xE3o poder\xE1 modific\xE1-lo","Please select the server directory to sync, if it doesn't exist you can create it.":"Selecione o diret\xF3rio do servidor para sincronizar; se n\xE3o existir, voc\xEA poder\xE1 cri\xE1-lo.","Double click to browse directories":"Clique duas vezes para navegar pelos diret\xF3rios","The data will be synchronized from":"Os dados ser\xE3o sincronizados de","the client folder":"a pasta do cliente","the server folder":"a pasta do servidor","(One-Way)":"(unidirecional)","(Two-Way)":"(bidirecional)",to:wr,"and from":"e de","All files created or modified in":"Todos os arquivos criados ou modificados em","will be ignored and deleted":"ser\xE3o ignorados e exclu\xEDdos","In case of conflict,":"Em caso de conflito,","the most recent files will be kept":"os arquivos mais recentes ser\xE3o mantidos","the client\u2019s files take precedence":"os arquivos do cliente t\xEAm preced\xEAncia","the server\u2019s files take precedence":"os arquivos do servidor t\xEAm preced\xEAncia","the files in":"os arquivos em","will be preferred":"ser\xE3o preferidos","Loading...":"Carregando...","No results":"Sem resultados","Download ARM64 version":"Baixar a vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar a vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar a vers\xE3o tar.gz",Repository:Sr,public:xr,local:Ar,remote:Cr,"System requirements":"Requisitos do sistema","Feature not enabled":"Funcionalidade n\xE3o habilitada","Check the settings":"Verifique as configura\xE7\xF5es",Website:Er,Documentation:qr,Versions:zr,Security:Tr,"Recovery code":"C\xF3digo de recupera\xE7\xE3o","Use a recovery code":"Usar um c\xF3digo de recupera\xE7\xE3o","Authentication code":"C\xF3digo de autentica\xE7\xE3o","Secret copied":"Segredo copiado","Recovery codes copied":"C\xF3digos de recupera\xE7\xE3o copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo ou senha incorretos","Application Passwords":"Senhas de aplicativo","Generate a new app password":"Gerar uma nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 mostrada apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:kr,"Manage app passwords":"Gerenciar senhas de aplicativo","Password Authentication":"Autentica\xE7\xE3o por senha","Two-Factor Authentication":"Autentica\xE7\xE3o de dois fatores","Two-Factor Authentication is enabled":"A autentica\xE7\xE3o de dois fatores est\xE1 ativada","Two-Factor Authentication is disabled":"A autentica\xE7\xE3o de dois fatores est\xE1 desativada","Scan this QR code using your authenticator app.":"Escaneie este c\xF3digo QR com seu aplicativo de autentica\xE7\xE3o.","(Such as FreeOTP, Proton Authenticator etc.)":"(Como FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Valide com seu c\xF3digo TOTP","The secret has expired":"O segredo expirou","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estes c\xF3digos em um local seguro. Eles permitir\xE3o que voc\xEA acesse sua conta se perder o acesso \xE0 sua autentica\xE7\xE3o de dois fatores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estes c\xF3digos de recupera\xE7\xE3o s\xE3o de uso \xFAnico e ser\xE3o exibidos aqui apenas uma vez.","Overwrite Existing File(s)":"Sobrescrever arquivo(s) existente(s)","Replace Existing File":"Substituir arquivo existente","Do you want to replace the existing file(s)?":"Deseja substituir o(s) arquivo(s) existente(s)?",RenameFileToExisting:Nr,Save:Dr,"Line Wrap":"Quebra de linha autom\xE1tica","Read-only":"Somente leitura","Read-write":"Leitura e escrita","Save And Exit":"Salvar e sair","Close Without Saving":"Fechar sem salvar",Undo:Pr,Redo:_r,me:Ur,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:Fr,Lock:Or,Exclusive:Lr,"Send an unlock request":"Enviar um pedido de desbloqueio","sends you a request to unlock the file":"lhe envia um pedido para desbloquear o arquivo","As the file owner, you can unlock the file or request the current lock owner to release it.":"Como propriet\xE1rio do arquivo, voc\xEA pode desbloquear o arquivo ou solicitar ao atual propriet\xE1rio do bloqueio que o libere.","The file is edited by":"O arquivo est\xE1 sendo editado por","A new update is available":"Est\xE1 dispon\xEDvel uma nova atualiza\xE7\xE3o",Fullscreen:Rr,Dimensions:Mr,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides"};export{fa as Access,ba as Accessed,H as Account,Ia as Action,la as Active,G as Add,Ya as Added,j as Administration,V as Administrator,We as Anchored,C as Application,ve as Applications,ir as Asynchronously,a as Authentication,fe as Avatar,ja as Browse,n as Cancel,Ea as Client,qa as Clients,oo as Clipboard,t as Close,ya as Comment,wa as Comments,fo as Compress,he as Configuration,s as Confirm,Za as Conflict,ee as Connection,oe as Connections,Ba as Copied,Xe as Copy,na as Created,ta as Date,bo as Decompress,Fa as Delete,ma as Description,or as Destination,Mr as Dimensions,Xa as Direction,lr as Disable,so as Display,qr as Documentation,yr as Done,Ke as Download,$e as Edit,Eo as Elements,K as Email,ro as Empty,dr as Enable,Ka as Error,T as Event,Lr as Exclusive,ga as Expiration,$o as Expired,P as External,k as File,N as Files,d as Filter,Ha as Filtered,c as Filters,zo as Folder,Rr as Fullscreen,pe as Generate,U as Group,_ as Groups,Ko as Guest,Jo as Guests,we as Home,Z as IP,me as Import,yo as Info,M as Isolated,ye as Language,Wo as Link,Qo as Links,io as List,Ye as Location,Or as Lock,r as Login,kr as Manage,ce as Manager,ue as Managers,ia as Me,te as Member,de as Members,ar as Mode,So as Modified,Je as Move,Qa as Moved,He as Name,qo as New,fr as Next,q as Notification,z as Notifications,Qe as Options,ra as Owner,i as Password,da as Path,aa as Permissions,D as Personal,br as Previous,R as Private,Se as Recents,_r as Redo,ao as Refresh,eo as Remove,Wa as Removed,Ze as Rename,Nr as RenameFileToExisting,Sr as Repository,Va as Reset,X as Role,Dr as Save,Oa as Scheduler,u as Search,Tr as Security,p as See,$ as Seen,rr as Sequentially,Ja as Server,Be as Settings,Ee as Share,sa as Shared,Ce as Shares,Ga as Simulate,wo as Size,er as Source,Me as Space,Ge as Spaces,J as Status,vo as Sync,go as Synced,po as Synchronization,mo as Synchronizations,ho as Synchronize,Ao as Tasks,Co as Text,_o as Total,Ma as Transfers,Ae as Trash,pa as Type,Pr as Undo,va as Unknown,ie as Unlimited,Fr as Unlock,be as Update,I as User,W as Users,zr as Versions,Da as View,ha as Visibility,L as Visible,Er as Website,gr as Wizard,ka as absent,Q as account,ca as active,je as anchored,E as application,ge as applications,La as async,za as available,ae as available_space_is_low,hr as both,Ta as busy,xa as commented,Sa as comments,Mo as create,Ua as day,_a as days,Gr as default,jo as delete,lo as delete_multiple_files,to as delete_one_file,Fe as desktop_app_access,Oe as desktop_app_sync,Po as directories,Do as directory,cr as disabled,tr as enabled,ea as expired,sr as fast,ko as file,No as files,To as folder,F as group,O as groups,Xo as guest,Zo as guests,_e as guests_admin,Lo as item,Ro as items,Bo as link,Ho as links,Ar as local,Pa as logout,le as manager,Ur as me,se as member,ne as members,xo as modified,Io as modify,Vo as move,y as nb_actions,f as nb_active_tasks,b as nb_elements,S as nb_messages,A as nb_notifications,Oo as nb_selections,v as nb_tasks,vr as never,Ca as no,Uo as no_selection,m as no_task,oa as none,Na as offline,g as one_active_task,w as one_message,x as one_notification,Fo as one_selection,h as one_task,re as online,Ue as personal_groups_admin,Te as personal_space,xr as public,$a as recent,xe as recents,Cr as remote,mr as scheduler_unit_day,ur as scheduler_unit_hour,pr as scheduler_unit_minute,l as search,nr as secure,Ra as seq,Yo as share,ze as shared,qe as shares,De as shares_access,Pe as shares_admin,Ve as spaces,ke as spaces_access,Ne as spaces_admin,ua as suspended,uo as synchronization,wr as to,co as trash_multiple_files,no as trash_one_file,Ie as unanchored,Y as user,B as users,Re as webdav,Le as webdav_access,Go as write,Aa as yes};