@sync-in/server 1.9.6 → 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 (344) hide show
  1. package/CHANGELOG.md +29 -4
  2. package/environment/environment.dist.yaml +15 -5
  3. package/package.json +13 -14
  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 +3 -1
  89. package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
  90. package/server/applications/files/services/files-scheduler.service.js +2 -2
  91. package/server/applications/files/services/files-scheduler.service.js.map +1 -1
  92. package/server/applications/files/utils/files.js +10 -2
  93. package/server/applications/files/utils/files.js.map +1 -1
  94. package/server/applications/links/constants/routes.js +5 -0
  95. package/server/applications/links/constants/routes.js.map +1 -1
  96. package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
  97. package/server/applications/links/links.controller.js +25 -5
  98. package/server/applications/links/links.controller.js.map +1 -1
  99. package/server/applications/links/services/links-manager.service.js +43 -21
  100. package/server/applications/links/services/links-manager.service.js.map +1 -1
  101. package/server/applications/links/services/links-manager.service.spec.js +4 -3
  102. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  103. package/server/applications/links/services/links-queries.service.js +9 -2
  104. package/server/applications/links/services/links-queries.service.js.map +1 -1
  105. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
  106. package/server/applications/shares/services/shares-manager.service.js +3 -0
  107. package/server/applications/shares/services/shares-manager.service.js.map +1 -1
  108. package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
  109. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  110. package/server/applications/shares/services/shares-queries.service.js +1 -0
  111. package/server/applications/shares/services/shares-queries.service.js.map +1 -1
  112. package/server/applications/spaces/constants/spaces.js +2 -2
  113. package/server/applications/spaces/constants/spaces.js.map +1 -1
  114. package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
  115. package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
  116. package/server/applications/spaces/guards/space.guard.js +40 -33
  117. package/server/applications/spaces/guards/space.guard.js.map +1 -1
  118. package/server/applications/spaces/guards/space.guard.spec.js +10 -15
  119. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
  120. package/server/applications/webdav/constants/webdav.js +4 -0
  121. package/server/applications/webdav/constants/webdav.js.map +1 -1
  122. package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
  123. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  124. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
  125. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
  126. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
  127. package/server/applications/webdav/services/webdav-methods.service.js +40 -17
  128. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
  129. package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
  130. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  131. package/server/applications/webdav/utils/webdav.js +8 -4
  132. package/server/applications/webdav/utils/webdav.js.map +1 -1
  133. package/server/applications/webdav/webdav.controller.js +4 -4
  134. package/server/applications/webdav/webdav.controller.js.map +1 -1
  135. package/server/authentication/guards/auth-token-access.guard.js +8 -3
  136. package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
  137. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
  138. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
  139. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
  140. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
  141. package/server/configuration/config.environment.js +5 -1
  142. package/server/configuration/config.environment.js.map +1 -1
  143. package/server/configuration/config.interfaces.js.map +1 -1
  144. package/static/3rdpartylicenses.txt +507 -507
  145. package/static/assets/pdfjs/build/pdf.mjs +93 -33
  146. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  147. package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
  148. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  149. package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
  150. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  151. package/static/assets/pdfjs/version +1 -1
  152. package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
  153. package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
  154. package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
  155. package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
  156. package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
  157. package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
  158. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
  159. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
  160. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
  161. package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
  162. package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
  163. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
  164. package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
  165. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
  166. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
  167. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
  168. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
  169. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
  170. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
  171. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
  172. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
  173. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
  174. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
  175. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
  176. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
  177. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
  178. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
  179. package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
  180. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
  181. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
  182. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
  183. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
  184. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
  185. package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
  186. package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
  187. package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
  188. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
  189. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
  190. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
  191. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
  192. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
  193. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
  194. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
  195. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
  196. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
  197. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
  198. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
  199. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
  200. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
  201. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
  202. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
  203. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
  204. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
  205. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
  206. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
  207. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
  208. package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
  209. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
  210. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
  211. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
  212. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
  213. package/static/assets/pdfjs/web/viewer.css +1778 -835
  214. package/static/assets/pdfjs/web/viewer.html +167 -86
  215. package/static/assets/pdfjs/web/viewer.mjs +1106 -801
  216. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  217. package/static/chunk-27V66YJV.js +2 -0
  218. package/static/{chunk-BVKDW5XO.js → chunk-27Z3SYRL.js} +1 -1
  219. package/static/{chunk-HLKZCMKV.js → chunk-2RWLNKZH.js} +1 -1
  220. package/static/chunk-2YQ4SX3A.js +13 -0
  221. package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
  222. package/static/chunk-3QTROEHV.js +1 -0
  223. package/static/{chunk-C5T7RZSD.js → chunk-3RPUQ22U.js} +1 -1
  224. package/static/{chunk-EPDWJEPD.js → chunk-3WZ6F3LC.js} +1 -1
  225. package/static/chunk-3ZLBVUCX.js +2 -0
  226. package/static/{chunk-SF6Q6VRC.js → chunk-45AZ6ZML.js} +1 -1
  227. package/static/chunk-46TJLPJY.js +1 -0
  228. package/static/chunk-4NIYCYRS.js +2 -0
  229. package/static/{chunk-GLPKRULI.js → chunk-4TPFERL6.js} +1 -1
  230. package/static/{chunk-KAAFVHYE.js → chunk-5O66CLTD.js} +1 -1
  231. package/static/chunk-6OEOADR6.js +1 -0
  232. package/static/chunk-6WMXMIE4.js +1 -0
  233. package/static/{chunk-QKMN3S4M.js → chunk-7VRYTDX4.js} +1 -1
  234. package/static/{chunk-Z2KBIZ5D.js → chunk-ARS47O5X.js} +1 -1
  235. package/static/chunk-B6HQYQYG.js +1 -0
  236. package/static/chunk-BCN4T5DO.js +2 -0
  237. package/static/{chunk-7HL5Z6PF.js → chunk-CCZWPM7Q.js} +1 -1
  238. package/static/{chunk-DU4Q4RWJ.js → chunk-CMNMPG6Z.js} +1 -1
  239. package/static/{chunk-BX3QZ7IL.js → chunk-CSVPAZHK.js} +1 -1
  240. package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
  241. package/static/{chunk-NHMYAVJK.js → chunk-D5FQ72R4.js} +1 -1
  242. package/static/{chunk-7QYALK5T.js → chunk-DGCVA6BM.js} +1 -1
  243. package/static/{chunk-IBC7CFBQ.js → chunk-DVCN3P7Q.js} +1 -1
  244. package/static/chunk-E32J777S.js +5 -0
  245. package/static/{chunk-FEQUP26G.js → chunk-FIUF2JM4.js} +1 -1
  246. package/static/{chunk-ODAQRAPO.js → chunk-G3PL6YX3.js} +1 -1
  247. package/static/chunk-G7RZN7HN.js +1 -0
  248. package/static/{chunk-IIKL33TV.js → chunk-GQHXYX6Z.js} +1 -1
  249. package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
  250. package/static/{chunk-ANH4VNOS.js → chunk-GXWGB7WO.js} +1 -1
  251. package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
  252. package/static/{chunk-X5UDV4ZB.js → chunk-HZAB6F4Q.js} +1 -1
  253. package/static/chunk-I3FR3A45.js +1 -0
  254. package/static/{chunk-JYHTSSKW.js → chunk-I5SPA4G2.js} +1 -1
  255. package/static/{chunk-DQAQUSVW.js → chunk-IMFO2MI7.js} +1 -1
  256. package/static/{chunk-AYYJZMBE.js → chunk-JNTNMIUH.js} +1 -1
  257. package/static/chunk-JRXG43AA.js +2 -0
  258. package/static/{chunk-3AR5VNJE.js → chunk-KAUCN24H.js} +1 -1
  259. package/static/{chunk-3WS72A6C.js → chunk-KDUAB76O.js} +1 -1
  260. package/static/chunk-KPOQLDWF.js +1 -0
  261. package/static/{chunk-UO7ATVQG.js → chunk-KWFELZTM.js} +1 -1
  262. package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
  263. package/static/{chunk-DK2LAJEL.js → chunk-LGIVVJDD.js} +1 -1
  264. package/static/{chunk-5ATJIR5S.js → chunk-LNLBIJZD.js} +1 -1
  265. package/static/chunk-LTJNLOX2.js +1 -0
  266. package/static/{chunk-GRV44RYI.js → chunk-LZUHREOF.js} +1 -1
  267. package/static/{chunk-XIQXRSZ2.js → chunk-NIR4YE2E.js} +1 -1
  268. package/static/{chunk-TOCCCZP2.js → chunk-NJJURHX4.js} +1 -1
  269. package/static/chunk-NNZWSNAW.js +1 -0
  270. package/static/chunk-NWKBB7J4.js +1 -0
  271. package/static/chunk-O3YLAEVE.js +3 -0
  272. package/static/chunk-OUHCDDT6.js +1 -0
  273. package/static/{chunk-B4TDS6AQ.js → chunk-PDG7DOEF.js} +1 -1
  274. package/static/chunk-POUWUMC4.js +1 -0
  275. package/static/{chunk-NQCKX2AD.js → chunk-PPJCVBJH.js} +1 -1
  276. package/static/{chunk-ZCOEP4O2.js → chunk-PQZLR4P3.js} +1 -1
  277. package/static/chunk-PVYVY3GD.js +1 -0
  278. package/static/chunk-Q5X5TPAG.js +1 -0
  279. package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
  280. package/static/{chunk-D6QWQHWE.js → chunk-R4VMWCM5.js} +1 -1
  281. package/static/{chunk-O233BXWK.js → chunk-R7PLNX75.js} +1 -1
  282. package/static/chunk-RJULB733.js +1 -0
  283. package/static/{chunk-E5C4QRNQ.js → chunk-RNVPQQKT.js} +5 -5
  284. package/static/chunk-RTNEBRKJ.js +1 -0
  285. package/static/{chunk-GYYJ4FWN.js → chunk-S3TTWPQA.js} +1 -1
  286. package/static/{chunk-4GBA6EJ4.js → chunk-SDJNZULP.js} +1 -1
  287. package/static/chunk-SNOOCDJD.js +1 -0
  288. package/static/chunk-T42BV6TR.js +1 -0
  289. package/static/{chunk-5KVI243T.js → chunk-TNCKNU6I.js} +1 -1
  290. package/static/{chunk-OVUMPMVM.js → chunk-ULSPQ3HP.js} +1 -1
  291. package/static/{chunk-5NFH4E2B.js → chunk-UOK3LKSX.js} +1 -1
  292. package/static/{chunk-CHMDM2ZW.js → chunk-VD5JHSDS.js} +1 -1
  293. package/static/{chunk-2F42MZQ5.js → chunk-XBKCQCBI.js} +1 -1
  294. package/static/{chunk-2U5VKTML.js → chunk-XEWLBWFF.js} +1 -1
  295. package/static/{chunk-FSGT46LM.js → chunk-XTVNHFKX.js} +1 -1
  296. package/static/chunk-ZCSHU3D7.js +1 -0
  297. package/static/{chunk-QUUQOBTF.js → chunk-ZEJLIGAY.js} +1 -1
  298. package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
  299. package/static/chunk-ZOMRIN3G.js +2 -0
  300. package/static/index.html +2 -2
  301. package/static/main-YKDNJ7LK.js +11 -0
  302. package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
  303. package/server/applications/files/constants/only-office.js +0 -531
  304. package/server/applications/files/constants/only-office.js.map +0 -1
  305. package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
  306. package/server/applications/files/files-only-office.controller.js.map +0 -1
  307. package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
  308. package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
  309. package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
  310. package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
  311. package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
  312. package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
  313. package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
  314. package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
  315. package/static/chunk-42L6C5MT.js +0 -1
  316. package/static/chunk-4ZKAVMB4.js +0 -1
  317. package/static/chunk-5GIWZKNS.js +0 -1
  318. package/static/chunk-5WCQBTXW.js +0 -1
  319. package/static/chunk-B2A4HNDC.js +0 -1
  320. package/static/chunk-BSB4VROD.js +0 -2
  321. package/static/chunk-CUC7R6C2.js +0 -1
  322. package/static/chunk-DHFQIFOF.js +0 -1
  323. package/static/chunk-DRHPEERW.js +0 -2
  324. package/static/chunk-FCGTI42I.js +0 -1
  325. package/static/chunk-FCR5AEHR.js +0 -3
  326. package/static/chunk-HB5DC7RJ.js +0 -1
  327. package/static/chunk-ITVA26X2.js +0 -2
  328. package/static/chunk-KWKZN53T.js +0 -1
  329. package/static/chunk-LBXOAKBD.js +0 -1
  330. package/static/chunk-LZKI5P5T.js +0 -1
  331. package/static/chunk-MGMDT4VN.js +0 -1
  332. package/static/chunk-MWUUM2NK.js +0 -13
  333. package/static/chunk-MYM43ENO.js +0 -1
  334. package/static/chunk-NAH4V2R6.js +0 -2
  335. package/static/chunk-PCFH5HCI.js +0 -2
  336. package/static/chunk-Q6B4OVER.js +0 -5
  337. package/static/chunk-QV5LQKTS.js +0 -1
  338. package/static/chunk-S4UTSOPV.js +0 -1
  339. package/static/chunk-SRBOO7AO.js +0 -1
  340. package/static/chunk-VZPCXSRG.js +0 -2
  341. package/static/chunk-XKEBQNQJ.js +0 -1
  342. package/static/chunk-YYTDPI5S.js +0 -1
  343. package/static/main-ODUA232E.js +0 -11
  344. /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
@@ -1 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var a="\uC778\uC99D",t="\uB85C\uADF8\uC778",n="\uBE44\uBC00\uBC88\uD638",s="\uD655\uC778",r="\uCDE8\uC18C",i="\uB2EB\uAE30",l="\uD544\uD130",d="\uD544\uD130",c="\uAC80\uC0C9",h="\uAC80\uC0C9",u="\uBCF4\uAE30",p="\uC791\uC5C5\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",m="{{ nb }}\uAC1C\uC758 \uC791\uC5C5 \uC644\uB8CC",b="{{ nb }}\uAC1C\uC758 \uC791\uC5C5 \uC644\uB8CC",f="\uC9C4\uD589 \uC911 {{ nba }}\uAC1C / \uC804\uCCB4 {{ nb }}\uAC1C",y="\uC9C4\uD589 \uC911 {{ nba }}\uAC1C / \uC804\uCCB4 {{ nb }}\uAC1C",w="{{nb}}\uAC1C \uC694\uC18C",g="{{nb}}\uAC1C \uC791\uC5C5",S="\uC0C8 \uBA54\uC2DC\uC9C0 {{ nb }}\uAC1C",v="\uC0C8 \uBA54\uC2DC\uC9C0 {{ nb }}\uAC1C",T="\uC77D\uC9C0 \uC54A\uC740 \uC54C\uB9BC {{ nb }}\uAC1C",A="\uC77D\uC9C0 \uC54A\uC740 \uC54C\uB9BC {{ nb }}\uAC1C",k="\uC560\uD50C\uB9AC\uCF00\uC774\uC158",_="\uC560\uD50C\uB9AC\uCF00\uC774\uC158",C="\uC54C\uB9BC",x="\uC54C\uB9BC",D="\uC774\uBCA4\uD2B8",P="\uD30C\uC77C",U="\uD30C\uC77C",E="\uAC1C\uC778",R="\uC678\uBD80",N="\uADF8\uB8F9",F="\uADF8\uB8F9",L="\uADF8\uB8F9",M="\uADF8\uB8F9",G="\uD45C\uC2DC",Y="\uBE44\uACF5\uAC1C",z="\uBD84\uB9AC\uB428",W="\uCD94\uAC00",I="\uAD00\uB9AC\uC790",O="\uAD00\uB9AC",q="\uC0AC\uC6A9\uC790",V="\uC0AC\uC6A9\uC790",Q="\uC0AC\uC6A9\uC790",j="\uC0AC\uC6A9\uC790",B="\uACC4\uC815",H="\uACC4\uC815",K="\uC774\uBA54\uC77C",J="\uC0C1\uD0DC",X="\uC5ED\uD560",Z="IP",$="\uD655\uC778\uB428",ee="\uC5F0\uACB0",oe="\uC5F0\uACB0",ae="\uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uACF5\uAC04\uC774 \uBD80\uC871\uD569\uB2C8\uB2E4 ({{ nb }}%)",te="\uC628\uB77C\uC778",ne="\uBB34\uC81C\uD55C",se="\uBA64\uBC84",re="\uBA64\uBC84",ie="\uBA64\uBC84",le="\uBA64\uBC84",de="\uAD00\uB9AC\uC790",ce="\uAD00\uB9AC\uC790",he="\uAD00\uB9AC\uC790",ue="\uC0DD\uC131",pe="\uAC00\uC838\uC624\uAE30",me="\uAD6C\uC131",be="\uC560\uD50C\uB9AC\uCF00\uC774\uC158",fe="\uC560\uD50C\uB9AC\uCF00\uC774\uC158",ye="\uC544\uBC14\uD0C0",we="\uC5C5\uB370\uC774\uD2B8",ge="\uC5B8\uC5B4",Se="\uD648",ve="\uCD5C\uADFC \uD56D\uBAA9",Te="\uCD5C\uADFC",Ae="\uD734\uC9C0\uD1B5",ke="\uACF5\uC720",_e="\uACF5\uC720",Ce="\uACF5\uC720",xe="\uACF5\uC720\uB428",De="\uAC1C\uC778 \uC2A4\uD398\uC774\uC2A4 \uC811\uADFC",Pe="\uC2A4\uD398\uC774\uC2A4 \uC811\uADFC",Ue="\uC2A4\uD398\uC774\uC2A4 \uAD00\uB9AC",Ee="\uACF5\uC720 \uC811\uADFC",Re="\uACF5\uC720 \uAD00\uB9AC",Ne="\uAC8C\uC2A4\uD2B8 \uAD00\uB9AC",Fe="\uAC1C\uC778 \uADF8\uB8F9 \uAD00\uB9AC",Le="\uB370\uC2A4\uD06C\uD1B1 \uC571 \uC811\uADFC",Me="\uB370\uC2A4\uD06C\uD1B1 \uC571 \uB3D9\uAE30\uD654",Ge="WebDAV \uC811\uADFC",Ye="WebDAV",ze="\uC2A4\uD398\uC774\uC2A4",We="\uC2A4\uD398\uC774\uC2A4",Ie="\uC2A4\uD398\uC774\uC2A4",Oe="\uACE0\uC815\uD588\uC2B5\uB2C8\uB2E4",qe="\uACE0\uC815\uC744 \uD574\uC81C\uD588\uC2B5\uB2C8\uB2E4",Ve="\uC704\uCE58",Qe="\uACE0\uC815\uB428",je="\uC124\uC815",Be="\uC635\uC158",He="\uC774\uB984",Ke="\uB2E4\uC6B4\uB85C\uB4DC",Je="\uC774\uB3D9",Xe="\uBCF5\uC0AC",Ze="\uC774\uB984 \uBCC0\uACBD",$e="\uD3B8\uC9D1",eo="\uC81C\uAC70",oo="\uD074\uB9BD\uBCF4\uB4DC",ao="\uC0C8\uB85C \uACE0\uCE68",to="\uBE44\uC6B0\uAE30",no="\uBAA9\uB85D",so="\uD45C\uC2DC",ro="<b>{{arg}}</b>\uC744(\uB97C) \uD734\uC9C0\uD1B5\uC73C\uB85C \uC774\uB3D9\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",io="<b>{{arg}}</b>\uC744(\uB97C) \uC644\uC804\uD788 \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",lo="\uC774 <b>{{arg}}\uAC1C \uD30C\uC77C</b>\uC744 \uD734\uC9C0\uD1B5\uC73C\uB85C \uC774\uB3D9\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",co="\uC774 <b>{{arg}}\uAC1C \uD30C\uC77C</b>\uC744 \uC644\uC804\uD788 \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",ho="\uB3D9\uAE30\uD654",uo="\uB3D9\uAE30\uD654",po="\uB3D9\uAE30\uD654",mo="\uB3D9\uAE30\uD654",bo="\uB3D9\uAE30\uD654",fo="\uB3D9\uAE30\uD654\uB428",yo="\uC555\uCD95",wo="\uC555\uCD95 \uD574\uC81C",go="\uC815\uBCF4",So="\uD06C\uAE30",vo="\uC218\uC815\uB428",To="\uC218\uC815\uB428",Ao="\uC791\uC5C5",ko="\uD14D\uC2A4\uD2B8",_o="\uC694\uC18C",Co="\uC0C8\uB85C \uB9CC\uB4E4\uAE30",xo="\uD3F4\uB354",Do="\uD3F4\uB354",Po="\uD30C\uC77C",Uo="\uD30C\uC77C",Eo="\uB514\uB809\uD130\uB9AC",Ro="\uB514\uB809\uD130\uB9AC",No="\uCD1D\uACC4",Fo="\uC120\uD0DD \uC5C6\uC74C",Lo="{{ nb }}\uAC1C \uC120\uD0DD\uB428",Mo="{{ nb }}\uAC1C \uC120\uD0DD\uB428",Go="\uD56D\uBAA9",Yo="\uD56D\uBAA9",zo="\uC0DD\uC131",Wo="\uC4F0\uAE30",Io="\uC774\uB3D9",Oo="\uC0AD\uC81C",qo="\uC218\uC815",Vo="\uACF5\uC720",Qo="\uB9C1\uD06C",jo="\uB9C1\uD06C",Bo="\uB9C1\uD06C",Ho="\uB9C1\uD06C",Ko="\uAC8C\uC2A4\uD2B8",Jo="\uAC8C\uC2A4\uD2B8",Xo="\uAC8C\uC2A4\uD2B8",Zo="\uAC8C\uC2A4\uD2B8",$o="\uB9CC\uB8CC\uB428",ea="\uB9CC\uB8CC\uB428",oa="\uC5C6\uC74C",aa="\uAD8C\uD55C",ta="\uC18C\uC720\uC790",na="\uB098",sa="\uACF5\uC720",ra="\uC0DD\uC131\uC77C",ia="\uB0A0\uC9DC",la="\uACBD\uB85C",da="\uD65C\uC131",ca="\uD65C\uC131",ha="\uC77C\uC2DC \uC911\uC9C0\uB428",ua="\uC720\uD615",pa="\uC124\uBA85",ma="\uAC00\uC2DC\uC131",ba="\uC54C \uC218 \uC5C6\uC74C",fa="\uB9CC\uB8CC",ya="\uC811\uADFC",wa="\uC811\uADFC\uD568",ga="\uB313\uAE00",Sa="\uB313\uAE00",va="\uB313\uAE00",Ta="\uB313\uAE00\uC744 \uB0A8\uACBC\uC2B5\uB2C8\uB2E4",Aa="\uC608",ka="\uC544\uB2C8\uC624",_a="\uD074\uB77C\uC774\uC5B8\uD2B8",Ca="\uD074\uB77C\uC774\uC5B8\uD2B8",xa="\uC0AC\uC6A9 \uAC00\uB2A5",Da="\uBC14\uC068",Pa="\uBD80\uC7AC",Ua="\uC624\uD504\uB77C\uC778",Ea="\uBCF4\uAE30",Ra="\uB85C\uADF8\uC544\uC6C3",Na="\uC77C",Fa="\uC77C",La="\uC0AD\uC81C",Ma="\uC2A4\uCF00\uC904\uB7EC",Ga="\uBCD1\uB82C",Ya="\uC21C\uCC28",za="\uC804\uC1A1",Wa="\uC2DC\uBBAC\uB808\uC774\uC158",Ia="\uC7AC\uC124\uC815",Oa="\uD0D0\uC0C9",qa="\uB3D9\uC791",Va="\uCD94\uAC00\uB428",Qa="\uC0AD\uC81C\uB428",ja="\uBCF5\uC0AC\uB428",Ba="\uC774\uB3D9\uB428",Ha="\uD544\uD130\uB428",Ka="\uC624\uB958",Ja="\uC11C\uBC84",Xa="\uBC29\uD5A5",Za="\uCDA9\uB3CC",$a="\uCD5C\uADFC",et="\uC6D0\uBCF8",ot="\uB300\uC0C1",at="\uBAA8\uB4DC",tt="\uC21C\uCC28\uC801\uC73C\uB85C",nt="\uBCD1\uB82C\uB85C",st="\uBE60\uB984",rt="\uBCF4\uC548",it="\uD65C\uC131\uD654\uB428",lt="\uD65C\uC131\uD654",dt="\uBE44\uD65C\uC131\uD654\uB428",ct="\uBE44\uD65C\uC131\uD654",ht="\uC2DC\uAC04",ut="\uBD84",pt="\uC77C",mt="\uC591\uBC29\uD5A5",bt="\uD558\uC9C0 \uC54A\uC74C",ft="\uB9C8\uBC95\uC0AC",yt="\uB2E4\uC74C",wt="\uC774\uC804",gt="\uC644\uB8CC",St="\uB85C",vt="\uC800\uC7A5\uC18C",Tt="\uACF5\uAC1C",At="\uB85C\uCEEC",kt="\uC6D0\uACA9",_t="\uC6F9\uC0AC\uC774\uD2B8",Ct="\uBB38\uC11C",xt="\uBC84\uC804",Dt="\uBCF4\uC548",Pt="\uAD00\uB9AC",Ut="<b>{{ old }}</b>\uC758 \uC774\uB984\uC744 <b>{{ new }}</b>(\uC73C)\uB85C \uBCC0\uACBD\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",Et="\uC800\uC7A5",Rt="\uC2E4\uD589 \uCDE8\uC18C",Nt="\uB2E4\uC2DC \uC2E4\uD589",Ft="\uB098",Lt="\uC7A0\uAE08 \uD574\uC81C",Mt="\uC7A0\uAE08",Gt="\uBC30\uD0C0\uC801",Yt="\uC804\uCCB4 \uD654\uBA74",zt="\uD06C\uAE30",Wt={"Sign-in to your account":"\uACC4\uC815\uC5D0 \uB85C\uADF8\uC778","Wrong login or password":"\uB85C\uADF8\uC778 \uC774\uB984 \uB610\uB294 \uBE44\uBC00\uBC88\uD638\uAC00 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","Authentication service error":"\uC778\uC99D \uC11C\uBE44\uC2A4 \uC624\uB958","Account locked":"\uACC4\uC815\uC774 \uC7A0\uACBC\uC2B5\uB2C8\uB2E4","Account is not allowed":"\uACC4\uC815\uC774 \uD5C8\uC6A9\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","Account matching error":"\uACC4\uC815 \uB9E4\uCE6D \uC624\uB958",Authentication:a,"Sign in":"\uB85C\uADF8\uC778",Login:t,Password:n,"Login or Email":"\uB85C\uADF8\uC778 \uC774\uB984 \uB610\uB294 \uC774\uBA54\uC77C","Login already used":"\uD574\uB2F9 \uB85C\uADF8\uC778 \uC774\uB984\uC740 \uC774\uBBF8 \uC0AC\uC6A9 \uC911\uC785\uB2C8\uB2E4","You are already logged in":"\uC774\uBBF8 \uB85C\uADF8\uC778\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4","Name already used":"\uD574\uB2F9 \uC774\uB984\uC740 \uC774\uBBF8 \uC0AC\uC6A9 \uC911\uC785\uB2C8\uB2E4","Token has expired":"\uD1A0\uD070\uC774 \uB9CC\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4",Confirm:s,Cancel:r,Close:i,"Server connection error":"\uC11C\uBC84 \uC5F0\uACB0 \uC624\uB958",Filter:l,Filters:d,search:c,Search:h,"Search for content":"\uCF58\uD150\uCE20 \uAC80\uC0C9","Search for files":"\uD30C\uC77C \uAC80\uC0C9","Full-text search":"\uC804\uBB38 \uAC80\uC0C9","Full-text search is disabled":"\uC804\uBB38 \uAC80\uC0C9\uC774 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Type to search for users or groups to add":"\uCD94\uAC00\uD560 \uC0AC\uC6A9\uC790 \uB610\uB294 \uADF8\uB8F9 \uAC80\uC0C9","Type to search for groups to add":"\uCD94\uAC00\uD560 \uADF8\uB8F9 \uAC80\uC0C9","Type to search for users to add":"\uCD94\uAC00\uD560 \uC0AC\uC6A9\uC790 \uAC80\uC0C9","Type to search for managers to add":"\uCD94\uAC00\uD560 \uAD00\uB9AC\uC790 \uAC80\uC0C9","Member since":"\uBA64\uBC84 \uB4F1\uB85D\uC77C","Windows Manager":"\uC708\uB3C4\uC6B0 \uAD00\uB9AC\uC790","Mark as read":"\uC77D\uC74C\uC73C\uB85C \uD45C\uC2DC",See:u,no_task:p,one_task:m,nb_tasks:b,one_active_task:f,nb_active_tasks:y,nb_elements:w,nb_actions:g,one_message:S,nb_messages:v,one_notification:T,nb_notifications:A,Application:k,application:_,"application and email":"\uC560\uD50C\uB9AC\uCF00\uC774\uC158 \uBC0F \uC774\uBA54\uC77C",Notification:C,Notifications:x,Event:D,File:P,Files:U,"Personal files":"\uAC1C\uC778 \uD30C\uC77C","for personal files":"\uAC1C\uC778 \uD30C\uC77C\uC6A9",Personal:E,External:R,"Share status":"\uACF5\uC720 \uC0C1\uD0DC","Share description":"\uACF5\uC720 \uC124\uBA85","No recent files":"\uCD5C\uADFC \uD30C\uC77C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",Groups:N,Group:F,group:L,"New personal group":"\uC0C8 \uAC1C\uC778 \uADF8\uB8F9","Edit personal group":"\uAC1C\uC778 \uADF8\uB8F9 \uD3B8\uC9D1","personal group":"\uAC1C\uC778 \uADF8\uB8F9","Personal group":"\uAC1C\uC778 \uADF8\uB8F9","Personal groups":"\uAC1C\uC778 \uADF8\uB8F9",groups:M,"Parent group":"\uC0C1\uC704 \uADF8\uB8F9","Group updated":"\uADF8\uB8F9\uC774 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Group created":"\uADF8\uB8F9\uC774 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Group not found":"\uADF8\uB8F9\uC744 \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Group error":"\uADF8\uB8F9 \uC624\uB958","Set as group manager":"\uADF8\uB8F9 \uAD00\uB9AC\uC790 \uC9C0\uC815","As a manager, the user will be able to manage the group and its members.":"\uAD00\uB9AC\uC790\uB294 \uADF8\uB8F9\uACFC \uAD6C\uC131\uC6D0\uC744 \uAD00\uB9AC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","As a manager, the user will be able to manage group members but not group properties.":"\uAD00\uB9AC\uC790\uB294 \uAD6C\uC131\uC6D0\uC740 \uAD00\uB9AC\uD560 \uC218 \uC788\uC73C\uB098 \uADF8\uB8F9 \uC18D\uC131\uC740 \uAD00\uB9AC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.",Visible:G,Private:Y,Isolated:z,"Select the parent group":"\uC0C1\uC704 \uADF8\uB8F9 \uC120\uD0DD","from the group":"\uADF8\uB8F9\uC5D0\uC11C","New group":"\uC0C8 \uADF8\uB8F9","Edit group":"\uADF8\uB8F9 \uD3B8\uC9D1","Leave group":"\uADF8\uB8F9 \uB098\uAC00\uAE30","Delete group":"\uADF8\uB8F9 \uC0AD\uC81C","Remove from group":"\uADF8\uB8F9\uC5D0\uC11C \uC81C\uAC70","Group must have at least one manager":"\uADF8\uB8F9\uC5D0\uB294 \uCD5C\uC18C 1\uBA85\uC758 \uAD00\uB9AC\uC790\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4","The group was left":"\uADF8\uB8F9\uC5D0\uC11C \uB098\uAC14\uC2B5\uB2C8\uB2E4","The group was not left":"\uADF8\uB8F9\uC5D0\uC11C \uB098\uAC08 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","will be left, you will no longer be a member of this group":"\uB97C \uB098\uAC00\uBA70, \uB354 \uC774\uC0C1 \uC774 \uADF8\uB8F9\uC758 \uBA64\uBC84\uAC00 \uC544\uB2D9\uB2C8\uB2E4","All users can see this group.":"\uBAA8\uB4E0 \uC0AC\uC6A9\uC790\uAC00 \uC774 \uADF8\uB8F9\uC744 \uBCFC \uC218 \uC788\uC2B5\uB2C8\uB2E4.","Users who are not members of this group cannot see it.":"\uC774 \uADF8\uB8F9\uC758 \uBA64\uBC84\uAC00 \uC544\uB2CC \uC0AC\uC6A9\uC790\uB294 \uBCFC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","The group is not visible, its members cannot see it and cannot see each other.":"\uADF8\uB8F9\uC774 \uBE44\uAC00\uC2DC\uC131\uC774\uBA70, \uAD6C\uC131\uC6D0\uC740 \uADF8\uB8F9\uACFC \uC11C\uB85C\uB97C \uBCFC \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.",Add:W,"Add members":"\uBA64\uBC84 \uCD94\uAC00","See members":"\uBA64\uBC84 \uBCF4\uAE30",Administrator:I,Administration:O,User:q,user:V,Users:Q,users:j,"New user":"\uC0C8 \uC0AC\uC6A9\uC790",account:B,Account:H,"Account status":"\uACC4\uC815 \uC0C1\uD0DC",Email:K,"Email already used":"\uD574\uB2F9 \uC774\uBA54\uC77C\uC740 \uC774\uBBF8 \uC0AC\uC6A9 \uC911\uC785\uB2C8\uB2E4","First name":"\uC774\uB984","Last name":"\uC131","Full name":"\uC131\uBA85",Status:J,Role:X,IP:Z,"IP Addresses":"IP \uC8FC\uC18C",Seen:$,Connection:ee,Connections:oe,"Confirm deletion":"\uC0AD\uC81C \uD655\uC778","Confirm permanent deletion of data":"\uB370\uC774\uD130 \uC601\uAD6C \uC0AD\uC81C \uD655\uC778","Space and data will be deleted in":"\uACF5\uAC04\uACFC \uB370\uC774\uD130\uAC00 \uC0AD\uC81C\uB429\uB2C8\uB2E4","Space is disabled":"\uC2A4\uD398\uC774\uC2A4\uAC00 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Storage Space":"\uC800\uC7A5 \uACF5\uAC04","Storage Quota":"\uC800\uC7A5 \uD560\uB2F9\uB7C9","Storage Usage":"\uC800\uC7A5 \uC0AC\uC6A9\uB7C9","Space status":"\uC2A4\uD398\uC774\uC2A4 \uC0C1\uD0DC","Storage quota exceeded":"\uC800\uC7A5 \uD560\uB2F9\uB7C9\uC744 \uCD08\uACFC\uD588\uC2B5\uB2C8\uB2E4","Storage quota will be exceeded":"\uC800\uC7A5 \uD560\uB2F9\uB7C9\uC744 \uCD08\uACFC\uD560 \uC608\uC815\uC785\uB2C8\uB2E4","No more space available":"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uACF5\uAC04\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",available_space_is_low:ae,online:te,"Online users":"\uC628\uB77C\uC778 \uC0AC\uC6A9\uC790",Unlimited:ne,member:se,members:re,Member:ie,Members:le,Manager:de,manager:ce,Managers:he,"At least one manager is required":"\uCD5C\uC18C \uD55C \uBA85\uC758 \uAD00\uB9AC\uC790\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4",Generate:ue,Import:pe,Configuration:me,Applications:be,applications:fe,"Permissions inherited from groups":"\uADF8\uB8F9\uC5D0\uC11C \uC0C1\uC18D\uB41C \uAD8C\uD55C","Only the group will be deleted, the members will no longer be part of it.":"\uADF8\uB8F9\uB9CC \uC0AD\uC81C\uB418\uBA70 \uAD6C\uC131\uC6D0\uC740 \uB354 \uC774\uC0C1 \uC18C\uC18D\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",Avatar:ye,Update:we,"current password":"\uD604\uC7AC \uBE44\uBC00\uBC88\uD638","new password":"\uC0C8 \uBE44\uBC00\uBC88\uD638","Change me !":"\uBCC0\uACBD\uD574 \uC8FC\uC138\uC694!","Current password missing !":"\uD604\uC7AC \uBE44\uBC00\uBC88\uD638\uAC00 \uC785\uB825\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4!","New password missing !":"\uC0C8 \uBE44\uBC00\uBC88\uD638\uAC00 \uC785\uB825\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4!","New password must have 8 characters minimum":"\uC0C8 \uBE44\uBC00\uBC88\uD638\uB294 \uCD5C\uC18C 8\uC790\uC5EC\uC57C \uD569\uB2C8\uB2E4","Current password does not match":"\uD604\uC7AC \uBE44\uBC00\uBC88\uD638\uAC00 \uC77C\uCE58\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","Password has been updated":"\uBE44\uBC00\uBC88\uD638\uAC00 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Unable to update password":"\uBE44\uBC00\uBC88\uD638\uB97C \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Bad password":"\uC798\uBABB\uB41C \uBE44\uBC00\uBC88\uD638","too many login attempts":"\uB85C\uADF8\uC778 \uC2DC\uB3C4\uAC00 \uB108\uBB34 \uB9CE\uC2B5\uB2C8\uB2E4",Language:ge,"Language updated":"\uC5B8\uC5B4\uAC00 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Unable to update language":"\uC5B8\uC5B4\uB97C \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Notification preference updated":"\uC54C\uB9BC \uC124\uC815\uC774 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Full-text search preference updated":"\uC804\uBB38 \uAC80\uC0C9 \uC124\uC815\uC774 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Unable to update notification preference":"\uC54C\uB9BC \uC124\uC815\uC744 \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to update full-text search preference":"\uC804\uBB38 \uAC80\uC0C9 \uC124\uC815\uC744 \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to open document":"\uBB38\uC11C\uB97C \uC5F4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to save document":"\uBB38\uC11C\uB97C \uC800\uC7A5\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4",Home:Se,Recents:ve,recents:Te,Trash:Ae,"trash bins":"\uD734\uC9C0\uD1B5",Shares:ke,Share:_e,shares:Ce,shared:xe,personal_space:De,spaces_access:Pe,spaces_admin:Ue,shares_access:Ee,shares_admin:Re,guests_admin:Ne,personal_groups_admin:Fe,desktop_app_access:Le,desktop_app_sync:Me,webdav_access:Ge,"Create share":"\uACF5\uC720 \uB9CC\uB4E4\uAE30","Edit share":"\uACF5\uC720 \uD3B8\uC9D1","Delete share":"\uACF5\uC720 \uC0AD\uC81C","Child shares":"\uD558\uC704 \uACF5\uC720",webdav:Ye,"Share is disabled":"\uACF5\uC720\uAC00 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4",Space:ze,Spaces:We,spaces:Ie,"Space name":"\uC2A4\uD398\uC774\uC2A4 \uC774\uB984","New space":"\uC0C8 \uC2A4\uD398\uC774\uC2A4","Create a new space":"\uC0C8 \uC2A4\uD398\uC774\uC2A4 \uB9CC\uB4E4\uAE30","Create space":"\uC2A4\uD398\uC774\uC2A4 \uB9CC\uB4E4\uAE30","Edit space":"\uC2A4\uD398\uC774\uC2A4 \uD3B8\uC9D1","Delete space":"\uC2A4\uD398\uC774\uC2A4 \uC0AD\uC81C","Create a new share":"\uC0C8 \uACF5\uC720 \uB9CC\uB4E4\uAE30","Type to search for space to select":"\uC120\uD0DD\uD560 \uC2A4\uD398\uC774\uC2A4 \uAC80\uC0C9","Anchor to a space":"\uC2A4\uD398\uC774\uC2A4\uC5D0 \uACE0\uC815","Anchor files to a space":"\uD30C\uC77C\uC744 \uC2A4\uD398\uC774\uC2A4\uC5D0 \uACE0\uC815","You have been invited to join this space":"\uC774 \uC2A4\uD398\uC774\uC2A4\uC5D0 \uCD08\uB300\uB418\uC5C8\uC2B5\uB2C8\uB2E4","You have been invited to join this share":"\uC774 \uACF5\uC720\uC5D0 \uCD08\uB300\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Shared with others":"\uB2E4\uB978 \uC0AC\uC6A9\uC790\uC640 \uACF5\uC720\uB428","With others":"\uB2E4\uB978 \uC0AC\uC6A9\uC790\uC640","Shared with me":"\uB098\uC640 \uACF5\uC720\uB428","With me":"\uB098\uC640","Shared via links":"\uB9C1\uD06C\uB85C \uACF5\uC720\uB428","Via links":"\uB9C1\uD06C\uB85C","Shared from":"\uACF5\uC720\uD55C \uC0AC\uC6A9\uC790","share with you this":"\uB2E4\uC74C\uC744 \uB2F9\uC2E0\uACFC \uACF5\uC720\uD588\uC2B5\uB2C8\uB2E4","shared with you":"\uB2F9\uC2E0\uACFC \uACF5\uC720\uD588\uC2B5\uB2C8\uB2E4","no longer share with you":"\uB2F9\uC2E0\uACFC\uC758 \uACF5\uC720\uB97C \uC911\uB2E8\uD588\uC2B5\uB2C8\uB2E4","You now have access to the space":"\uC2A4\uD398\uC774\uC2A4\uC5D0 \uC811\uADFC \uAD8C\uD55C\uC774 \uBD80\uC5EC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","You no longer have access to the space":"\uC2A4\uD398\uC774\uC2A4\uC5D0 \uB300\uD55C \uC811\uADFC \uAD8C\uD55C\uC774 \uC81C\uAC70\uB418\uC5C8\uC2B5\uB2C8\uB2E4","This space has been permanently deleted":"\uC774 \uC2A4\uD398\uC774\uC2A4\uB294 \uC601\uAD6C\uC801\uC73C\uB85C \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4","You now have access to the share":"\uACF5\uC720\uC5D0 \uC811\uADFC \uAD8C\uD55C\uC774 \uBD80\uC5EC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","You no longer have access to the share":"\uACF5\uC720\uC5D0 \uB300\uD55C \uC811\uADFC \uAD8C\uD55C\uC774 \uC81C\uAC70\uB418\uC5C8\uC2B5\uB2C8\uB2E4","You are no longer a member of the parent share, your child share has been deleted":"\uC0C1\uC704 \uACF5\uC720\uC758 \uBA64\uBC84\uAC00 \uC544\uB2C8\uBBC0\uB85C \uD558\uC704 \uACF5\uC720\uAC00 \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4",anchored:Oe,unanchored:qe,"Share not found":"\uACF5\uC720\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Go to":"\uC774\uB3D9",Location:Ve,"Name and location are required":"\uC774\uB984\uACFC \uC704\uCE58\uB294 \uD544\uC218\uC785\uB2C8\uB2E4","Parent location already exists in files":"\uC0C1\uC704 \uC704\uCE58\uAC00 \uD30C\uC77C\uC5D0 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4","Check the location":"\uC704\uCE58 \uD655\uC778","Location not found":"\uC704\uCE58\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Forbidden resource":"\uD5C8\uC6A9\uB418\uC9C0 \uC54A\uC740 \uC704\uCE58","Resource already exists":"\uD56D\uBAA9\uC774 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4","The location does not exist":"\uD574\uB2F9 \uC704\uCE58\uAC00 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","The location is not readable":"\uD574\uB2F9 \uC704\uCE58\uB294 \uC77D\uAE30 \uBD88\uAC00\uC785\uB2C8\uB2E4","The location is not writeable":"\uD574\uB2F9 \uC704\uCE58\uB294 \uC4F0\uAE30 \uBD88\uAC00\uC785\uB2C8\uB2E4","The location is a directory":"\uD574\uB2F9 \uC704\uCE58\uB294 \uB514\uB809\uD130\uB9AC\uC785\uB2C8\uB2E4","The file is locked":"\uD30C\uC77C\uC774 \uC7A0\uACA8 \uC788\uC2B5\uB2C8\uB2E4","This share is protected by a password":"\uC774 \uACF5\uC720\uB294 \uBE44\uBC00\uBC88\uD638\uB85C \uBCF4\uD638\uB429\uB2C8\uB2E4","You do not have share permission":"\uACF5\uC720\uD560 \uAD8C\uD55C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4","You can not share a space":"\uC2A4\uD398\uC774\uC2A4\uB294 \uACF5\uC720\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","You can not remove an anchored file":"\uACE0\uC815\uB41C \uD30C\uC77C\uC740 \uC0AD\uC81C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","You are not allowed to write here":"\uC5EC\uAE30\uC5D0 \uC4F8 \uAD8C\uD55C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4","You are not allowed to do this action":"\uC774 \uC791\uC5C5\uC744 \uC218\uD589\uD560 \uAD8C\uD55C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4","You can not move an anchored file":"\uACE0\uC815\uB41C \uD30C\uC77C\uC740 \uC774\uB3D9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","You can not move a locked file":"\uC7A0\uAE34 \uD30C\uC77C\uC740 \uC774\uB3D9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4",Anchored:Qe,"Anchored by":"\uACE0\uC815\uD55C \uC0AC\uC6A9\uC790","Manage my anchored files":"\uB0B4 \uACE0\uC815 \uD30C\uC77C \uAD00\uB9AC","You have no files anchored on this space":"\uC774 \uC2A4\uD398\uC774\uC2A4\uC5D0 \uACE0\uC815\uB41C \uD30C\uC77C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4","An anchored file already has this name":"\uB3D9\uC77C\uD55C \uC774\uB984\uC758 \uACE0\uC815 \uD30C\uC77C\uC774 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4",Settings:je,Options:Be,Name:He,Download:Ke,"Download done":"\uB2E4\uC6B4\uB85C\uB4DC \uC644\uB8CC","Download failed":"\uB2E4\uC6B4\uB85C\uB4DC \uC2E4\uD328","Upload done":"\uC5C5\uB85C\uB4DC \uC644\uB8CC","Upload failed":"\uC5C5\uB85C\uB4DC \uC2E4\uD328","Copy/Move":"\uBCF5\uC0AC/\uC774\uB3D9",Move:Je,"Move done":"\uC774\uB3D9 \uC644\uB8CC","Move failed":"\uC774\uB3D9 \uC2E4\uD328","Deletion done":"\uC0AD\uC81C \uC644\uB8CC","Deletion failed":"\uC0AD\uC81C \uC2E4\uD328","Creation failed":"\uC0DD\uC131 \uC2E4\uD328",Copy:Xe,"Copy done":"\uBCF5\uC0AC \uC644\uB8CC","Copy failed":"\uBCF5\uC0AC \uC2E4\uD328","Copy-Paste":"\uBCF5\uC0AC/\uBD99\uC5EC\uB123\uAE30","Cut-Paste":"\uC798\uB77C\uB0B4\uAE30/\uBD99\uC5EC\uB123\uAE30",Rename:Ze,Edit:$e,"Share inside":"\uB0B4\uBD80 \uACF5\uC720","Share outside":"\uC678\uBD80 \uACF5\uC720",Remove:eo,Clipboard:oo,"Send to Clipboard":"\uD074\uB9BD\uBCF4\uB4DC\uB85C \uBCF4\uB0B4\uAE30","will be removed":"\uC0AD\uC81C\uB429\uB2C8\uB2E4",Refresh:ao,Empty:to,List:no,Display:so,"Sort by":"\uC815\uB82C \uAE30\uC900",trash_one_file:ro,delete_one_file:io,trash_multiple_files:lo,delete_multiple_files:co,"Moving to trash":"\uD734\uC9C0\uD1B5\uC73C\uB85C \uC774\uB3D9 \uC911","Permanent deletion":"\uC601\uAD6C \uC0AD\uC81C","Would you like to empty the trash ?":"\uD734\uC9C0\uD1B5\uC744 \uBE44\uC6B0\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","All items will be permanently deleted":"\uBAA8\uB4E0 \uD56D\uBAA9\uC774 \uC601\uAD6C \uC0AD\uC81C\uB429\uB2C8\uB2E4","Actions will be performed in the current folder":"\uD604\uC7AC \uD3F4\uB354\uC5D0\uC11C \uC791\uC5C5\uC774 \uC218\uD589\uB429\uB2C8\uB2E4","The client will no longer have permission to access your account and will no longer be able to synchronize.":"\uD074\uB77C\uC774\uC5B8\uD2B8\uB294 \uACC4\uC815\uC5D0 \uC811\uADFC \uAD8C\uD55C\uC744 \uC783\uACE0 \uB354 \uC774\uC0C1 \uB3D9\uAE30\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","The access expires":"\uC811\uADFC \uB9CC\uB8CC","The access has expired":"\uC811\uADFC\uC774 \uB9CC\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Never expires":"\uB9CC\uB8CC \uC5C6\uC74C",synchronization:ho,Synchronization:uo,Synchronizations:po,Synchronize:mo,Sync:bo,"Stop synchronization":"\uB3D9\uAE30\uD654 \uC911\uC9C0","Synchronize all":"\uBAA8\uB450 \uB3D9\uAE30\uD654","Stop synchronizations":"\uB3D9\uAE30\uD654 \uC911\uC9C0",Synced:fo,"Sync already exists":"\uB3D9\uAE30\uD654\uAC00 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4","Sync was reset":"\uB3D9\uAE30\uD654\uB97C \uC7AC\uC124\uC815\uD588\uC2B5\uB2C8\uB2E4","Sync deleted":"\uB3D9\uAE30\uD654\uB97C \uC0AD\uC81C\uD588\uC2B5\uB2C8\uB2E4","This client":"\uC774 \uD074\uB77C\uC774\uC5B8\uD2B8","You are no longer synchronizing":"\uB354 \uC774\uC0C1 \uB3D9\uAE30\uD654\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4",Compress:yo,Decompress:wo,"Compress and Download":"\uC555\uCD95 \uD6C4 \uB2E4\uC6B4\uB85C\uB4DC","Compress and Save":"\uC555\uCD95 \uD6C4 \uC800\uC7A5","Enable compression":"\uC555\uCD95 \uC0AC\uC6A9","Compression done":"\uC555\uCD95 \uC644\uB8CC","Compression failed":"\uC555\uCD95 \uC2E4\uD328","Decompression done":"\uC555\uCD95 \uD574\uC81C \uC644\uB8CC","Decompression failed":"\uC555\uCD95 \uD574\uC81C \uC2E4\uD328","(this may take longer)":"(\uC2DC\uAC04\uC774 \uB354 \uAC78\uB9B4 \uC218 \uC788\uC2B5\uB2C8\uB2E4)","Save in the current directory":"\uD604\uC7AC \uB514\uB809\uD130\uB9AC\uC5D0 \uC800\uC7A5","This name is already used":"\uC774 \uC774\uB984\uC740 \uC774\uBBF8 \uC0AC\uC6A9 \uC911\uC785\uB2C8\uB2E4",Info:go,Size:So,Modified:vo,modified:To,Tasks:Ao,"Download from URL":"URL\uC5D0\uC11C \uB2E4\uC6B4\uB85C\uB4DC","Upload files":"\uD30C\uC77C \uC5C5\uB85C\uB4DC","Upload folders":"\uD3F4\uB354 \uC5C5\uB85C\uB4DC","Folder name":"\uD3F4\uB354 \uC774\uB984","New folder":"\uC0C8 \uD3F4\uB354","Document name":"\uBB38\uC11C \uC774\uB984","New document":"\uC0C8 \uBB38\uC11C","File name":"\uD30C\uC77C \uC774\uB984","File permissions":"\uD30C\uC77C \uAD8C\uD55C",Text:ko,"Rich Text Format":"\uB9AC\uCE58 \uD14D\uC2A4\uD2B8 \uD615\uC2DD","Forbidden characters":"\uD5C8\uC6A9\uB418\uC9C0 \uC54A\uB294 \uBB38\uC790",Elements:_o,"Malformed URL":"\uC798\uBABB\uB41C URL",New:Co,Folder:xo,folder:Do,file:Po,files:Uo,directory:Eo,directories:Ro,Total:No,no_selection:Fo,one_selection:Lo,nb_selections:Mo,"Archive name":"\uC555\uCD95 \uD30C\uC77C \uC774\uB984","Drag and drop your files here":"\uC5EC\uAE30\uC5D0 \uD30C\uC77C\uC744 \uB4DC\uB798\uADF8 \uC564 \uB4DC\uB86D\uD558\uC138\uC694","The destination already exists":"\uB300\uC0C1\uC774 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4","This item is already selected":"\uC774 \uD56D\uBAA9\uC740 \uC774\uBBF8 \uC120\uD0DD\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Parent item is already selected":"\uC0C1\uC704 \uD56D\uBAA9\uC774 \uC774\uBBF8 \uC120\uD0DD\uB418\uC5C8\uC2B5\uB2C8\uB2E4","This file contains binary data that can not be read":"\uC774 \uD30C\uC77C\uC5D0\uB294 \uC77D\uC744 \uC218 \uC5C6\uB294 \uBC14\uC774\uB108\uB9AC \uB370\uC774\uD130\uAC00 \uD3EC\uD568\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4","Navigation Tree":"\uD0D0\uC0C9 \uD2B8\uB9AC",item:Go,items:Yo,create:zo,write:Wo,move:Io,delete:Oo,modify:qo,"Delete user":"\uC0AC\uC6A9\uC790 \uC0AD\uC81C","Delete all user files":"\uC0AC\uC6A9\uC790\uC758 \uBAA8\uB4E0 \uD30C\uC77C \uC0AD\uC81C",share:Vo,"Share name":"\uACF5\uC720 \uC774\uB984","New share":"\uC0C8 \uACF5\uC720","New share link":"\uC0C8 \uACF5\uC720 \uB9C1\uD06C","New link":"\uC0C8 \uB9C1\uD06C","Edit children shares":"\uD558\uC704 \uACF5\uC720 \uD3B8\uC9D1",Link:Qo,link:jo,Links:Bo,links:Ho,"Link copied":"\uB9C1\uD06C\uAC00 \uBCF5\uC0AC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Link created":"\uB9C1\uD06C\uAC00 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Link deleted":"\uB9C1\uD06C\uAC00 \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Link error":"\uB9C1\uD06C \uC624\uB958","Copy link":"\uB9C1\uD06C \uBCF5\uC0AC","Edit link":"\uB9C1\uD06C \uD3B8\uC9D1","Guest Link":"\uAC8C\uC2A4\uD2B8 \uB9C1\uD06C","Guest name":"\uAC8C\uC2A4\uD2B8 \uC774\uB984","Guest email":"\uAC8C\uC2A4\uD2B8 \uC774\uBA54\uC77C","Guest language":"\uAC8C\uC2A4\uD2B8 \uC5B8\uC5B4",Guest:Ko,Guests:Jo,guest:Xo,guests:Zo,"New guest":"\uC0C8 \uAC8C\uC2A4\uD2B8","Edit guest":"\uAC8C\uC2A4\uD2B8 \uD3B8\uC9D1","Guest created":"\uAC8C\uC2A4\uD2B8\uAC00 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Guest deleted":"\uAC8C\uC2A4\uD2B8\uAC00 \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Guest updated":"\uAC8C\uC2A4\uD2B8\uAC00 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Guest error":"\uAC8C\uC2A4\uD2B8 \uC624\uB958","Add an external location":"\uC678\uBD80 \uC704\uCE58 \uCD94\uAC00","External location":"\uC678\uBD80 \uC704\uCE58","Select a file":"\uD30C\uC77C \uC120\uD0DD","The link is expired":"\uB9C1\uD06C\uAC00 \uB9CC\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","The link is disabled":"\uB9C1\uD06C\uAC00 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","The link was not found":"\uB9C1\uD06C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4",Expired:$o,expired:ea,none:oa,"The maximum number of access allowed to the link is exceeded":"\uB9C1\uD06C\uC5D0 \uD5C8\uC6A9\uB41C \uCD5C\uB300 \uC811\uADFC \uD69F\uC218\uB97C \uCD08\uACFC\uD588\uC2B5\uB2C8\uB2E4","Set a password":"\uBE44\uBC00\uBC88\uD638 \uC124\uC815","Enter your password":"\uBE44\uBC00\uBC88\uD638 \uC785\uB825",Permissions:aa,"No permissions":"\uAD8C\uD55C \uC5C6\uC74C",Owner:ta,Me:na,Shared:sa,Created:ra,"Created & Modified":"\uC0DD\uC131 \uBC0F \uC218\uC815","Creation date":"\uC0DD\uC131\uC77C","Modification date":"\uC218\uC815\uC77C","Deactivation date":"\uBE44\uD65C\uC131\uD654 \uB0A0\uC9DC",Date:ia,Path:la,active:da,Active:ca,suspended:ha,"Unable to rename user space":"\uC0AC\uC6A9\uC790 \uC2A4\uD398\uC774\uC2A4\uC758 \uC774\uB984\uC744 \uBCC0\uACBD\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to delete user space":"\uC0AC\uC6A9\uC790 \uC2A4\uD398\uC774\uC2A4\uB97C \uC0AD\uC81C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to update user":"\uC0AC\uC6A9\uC790\uB97C \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Unable to update user groups":"\uC0AC\uC6A9\uC790 \uADF8\uB8F9\uC744 \uC5C5\uB370\uC774\uD2B8\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","User created":"\uC0AC\uC6A9\uC790\uAC00 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4","User updated":"\uC0AC\uC6A9\uC790\uAC00 \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4","User not found":"\uC0AC\uC6A9\uC790\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Edit user":"\uC0AC\uC6A9\uC790 \uD3B8\uC9D1","Impersonate identity":"\uC0AC\uC6A9\uC790\uB85C \uAC00\uC7A5\uD558\uAE30",Type:ua,Description:pa,Visibility:ma,"Unknown error !":"\uC54C \uC218 \uC5C6\uB294 \uC624\uB958!",Unknown:ba,Expiration:fa,"Limit access":"\uC811\uADFC \uC81C\uD55C","Current access count":"\uD604\uC7AC \uC811\uADFC \uD69F\uC218",Access:ya,Accessed:wa,"Last access":"\uB9C8\uC9C0\uB9C9 \uC811\uADFC","Last accesses":"\uCD5C\uADFC \uC811\uADFC",Comment:ga,Comments:Sa,comments:va,commented:Ta,"No recent comments":"\uCD5C\uADFC \uB313\uAE00\uC774 \uC5C6\uC2B5\uB2C8\uB2E4","Write a comment ...":"\uB313\uAE00\uC744 \uC791\uC131\uD558\uC138\uC694 ...",yes:Aa,no:ka,Client:_a,Clients:Ca,available:xa,busy:Da,absent:Pa,offline:Ua,View:Ea,"Session has expired":"\uC138\uC158\uC774 \uB9CC\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Please sign in":"\uB2E4\uC2DC \uB85C\uADF8\uC778\uD574 \uC8FC\uC138\uC694",logout:Ra,days:Na,day:Fa,Delete:La,Scheduler:Ma,async:Ga,seq:Ya,Transfers:za,Simulate:Wa,Reset:Ia,Browse:Oa,Action:qa,Added:Va,Removed:Qa,Copied:ja,Moved:Ba,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"\uD544\uD130\uB41C \uD30C\uC77C \uD45C\uC2DC",recent:$a,Source:et,Destination:ot,Mode:at,Sequentially:tt,Asynchronously:nt,fast:st,secure:rt,enabled:it,Enable:lt,disabled:dt,Disable:ct,scheduler_unit_hour:ht,scheduler_unit_minute:ut,scheduler_unit_day:pt,"You must have permission to modify the server folder to choose a different sync mode":"\uB2E4\uB978 \uB3D9\uAE30\uD654 \uBAA8\uB4DC\uB97C \uC120\uD0DD\uD558\uB824\uBA74 \uC11C\uBC84 \uD3F4\uB354\uB97C \uC218\uC815\uD560 \uAD8C\uD55C\uC774 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4","upload only":"\uC5C5\uB85C\uB4DC\uB9CC","download only":"\uB2E4\uC6B4\uB85C\uB4DC\uB9CC",both:mt,never:bt,"Clear events":"\uC774\uBCA4\uD2B8 \uC9C0\uC6B0\uAE30","Events from":"\uB2E4\uC74C\uC758 \uC774\uBCA4\uD2B8","All syncs":"\uBAA8\uB4E0 \uB3D9\uAE30\uD654","All events":"\uBAA8\uB4E0 \uC774\uBCA4\uD2B8","will be cleared":"\uC9C0\uC6CC\uC9D1\uB2C8\uB2E4","No differences":"\uCC28\uC774\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4","Select a folder":"\uD3F4\uB354 \uC120\uD0DD","The files containing":"\uB2E4\uC74C\uC744 \uD3EC\uD568\uD558\uB294 \uD30C\uC77C","The files starting":"\uB2E4\uC74C\uC73C\uB85C \uC2DC\uC791\uD558\uB294 \uD30C\uC77C","The files ending":"\uB2E4\uC74C\uC73C\uB85C \uB05D\uB098\uB294 \uD30C\uC77C","Expert (Regexp)":"\uACE0\uAE09(\uC815\uADDC\uC2DD)","click on the browse button":"\uD0D0\uC0C9 \uBC84\uD2BC\uC744 \uD074\uB9AD","with a name or pattern":"\uC774\uB984 \uB610\uB294 \uD328\uD134\uC73C\uB85C","with the extension ('.mp3', '.avi', '.mov' ...)":"\uD655\uC7A5\uC790('.mp3', '.avi', '.mov' \uB4F1)\uB85C",Wizard:ft,Next:yt,Previous:wt,Done:gt,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"\uC774 \uB9C8\uBC95\uC0AC\uB294 \uCEF4\uD4E8\uD130\uC758 \uB514\uB809\uD130\uB9AC\uC640 Sync-in \uB514\uB809\uD130\uB9AC \uB3D9\uAE30\uD654\uB97C \uB3C4\uC640\uC90D\uB2C8\uB2E4.","To begin, select a folder on your computer.":"\uBA3C\uC800 \uCEF4\uD4E8\uD130\uC5D0\uC11C \uD3F4\uB354\uB97C \uC120\uD0DD\uD558\uC138\uC694.",'You can drag the folder into the area below or click on the "Select" button.':'\uC544\uB798 \uC601\uC5ED\uC73C\uB85C \uD3F4\uB354\uB97C \uB04C\uC5B4\uB2E4 \uB193\uAC70\uB098 "\uC120\uD0DD" \uBC84\uD2BC\uC744 \uD074\uB9AD\uD558\uC138\uC694.',"Drop folder here":"\uC5EC\uAE30\uC5D0 \uD3F4\uB354\uB97C \uB193\uC73C\uC138\uC694","This directory is already synced":"\uC774 \uB514\uB809\uD130\uB9AC\uB294 \uC774\uBBF8 \uB3D9\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","The parent directory is already synced":"\uC0C1\uC704 \uB514\uB809\uD130\uB9AC\uB294 \uC774\uBBF8 \uB3D9\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","This directory is not accessible":"\uC774 \uB514\uB809\uD130\uB9AC\uC5D0 \uC811\uADFC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","This directory is read-only, you will not be able to modify it":"\uC774 \uB514\uB809\uD130\uB9AC\uB294 \uC77D\uAE30 \uC804\uC6A9\uC774\uBA70 \uC218\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4","Please select the server directory to sync, if it doesn't exist you can create it.":"\uB3D9\uAE30\uD654\uD560 \uC11C\uBC84 \uB514\uB809\uD130\uB9AC\uB97C \uC120\uD0DD\uD558\uC138\uC694. \uC874\uC7AC\uD558\uC9C0 \uC54A\uC73C\uBA74 \uC0DD\uC131\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","Double click to browse directories":"\uB514\uB809\uD130\uB9AC\uB97C \uB458\uB7EC\uBCF4\uB824\uBA74 \uB354\uBE14 \uD074\uB9AD\uD558\uC138\uC694","The data will be synchronized from":"\uB370\uC774\uD130\uB294 \uB2E4\uC74C\uC5D0\uC11C \uB3D9\uAE30\uD654\uB429\uB2C8\uB2E4","the client folder":"\uD074\uB77C\uC774\uC5B8\uD2B8 \uD3F4\uB354","the server folder":"\uC11C\uBC84 \uD3F4\uB354","(One-Way)":"(\uB2E8\uBC29\uD5A5)","(Two-Way)":"(\uC591\uBC29\uD5A5)",to:St,"and from":"\uADF8\uB9AC\uACE0","All files created or modified in":"\uB2E4\uC74C\uC5D0\uC11C \uC0DD\uC131 \uB610\uB294 \uC218\uC815\uB41C \uBAA8\uB4E0 \uD30C\uC77C\uC740","will be ignored and deleted":"\uBB34\uC2DC\uB418\uACE0 \uC0AD\uC81C\uB429\uB2C8\uB2E4","In case of conflict,":"\uCDA9\uB3CC\uC774 \uBC1C\uC0DD\uD55C \uACBD\uC6B0,","the most recent files will be kept":"\uAC00\uC7A5 \uCD5C\uADFC \uD30C\uC77C\uC774 \uC720\uC9C0\uB429\uB2C8\uB2E4","the client\u2019s files take precedence":"\uD074\uB77C\uC774\uC5B8\uD2B8 \uD30C\uC77C\uC774 \uC6B0\uC120\uD569\uB2C8\uB2E4","the server\u2019s files take precedence":"\uC11C\uBC84 \uD30C\uC77C\uC774 \uC6B0\uC120\uD569\uB2C8\uB2E4","the files in":"\uB2E4\uC74C\uC758 \uD30C\uC77C\uC774","will be preferred":"\uC6B0\uC120\uB429\uB2C8\uB2E4","Loading...":"\uB85C\uB529 \uC911...","No results":"\uACB0\uACFC \uC5C6\uC74C","Download ARM64 version":"ARM64 \uBC84\uC804 \uB2E4\uC6B4\uB85C\uB4DC","Download Apple Silicon ARM64 version":"Apple Silicon ARM64 \uBC84\uC804 \uB2E4\uC6B4\uB85C\uB4DC","Download tar.gz version":"tar.gz \uBC84\uC804 \uB2E4\uC6B4\uB85C\uB4DC",Repository:vt,public:Tt,local:At,remote:kt,"System requirements":"\uC2DC\uC2A4\uD15C \uC694\uAD6C \uC0AC\uD56D","Feature not enabled":"\uAE30\uB2A5\uC774 \uD65C\uC131\uD654\uB418\uC5B4 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","Check the settings":"\uC124\uC815\uC744 \uD655\uC778\uD558\uC138\uC694",Website:_t,Documentation:Ct,Versions:xt,Security:Dt,"Recovery code":"\uBCF5\uAD6C \uCF54\uB4DC","Use a recovery code":"\uBCF5\uAD6C \uCF54\uB4DC \uC0AC\uC6A9","Authentication code":"\uC778\uC99D \uCF54\uB4DC","Secret copied":"\uC2DC\uD06C\uB9BF\uC774 \uBCF5\uC0AC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Recovery codes copied":"\uBCF5\uAD6C \uCF54\uB4DC\uAC00 \uBCF5\uC0AC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Invalid code":"\uC798\uBABB\uB41C \uCF54\uB4DC","Incorrect code or password":"\uCF54\uB4DC \uB610\uB294 \uBE44\uBC00\uBC88\uD638\uAC00 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4","Application Passwords":"\uC560\uD50C\uB9AC\uCF00\uC774\uC158 \uBE44\uBC00\uBC88\uD638","Generate a new app password":"\uC0C8 \uC571 \uBE44\uBC00\uBC88\uD638 \uC0DD\uC131","Generated password":"\uC0DD\uC131\uB41C \uBE44\uBC00\uBC88\uD638","This password will only be shown once after it is generated":"\uC774 \uBE44\uBC00\uBC88\uD638\uB294 \uC0DD\uC131 \uD6C4 \uD55C \uBC88\uB9CC \uD45C\uC2DC\uB429\uB2C8\uB2E4","Password name":"\uBE44\uBC00\uBC88\uD638 \uC774\uB984",Manage:Pt,"Manage app passwords":"\uC571 \uBE44\uBC00\uBC88\uD638 \uAD00\uB9AC","Password Authentication":"\uBE44\uBC00\uBC88\uD638 \uC778\uC99D","Two-Factor Authentication":"2\uB2E8\uACC4 \uC778\uC99D","Two-Factor Authentication is enabled":"2\uB2E8\uACC4 \uC778\uC99D\uC774 \uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Two-Factor Authentication is disabled":"2\uB2E8\uACC4 \uC778\uC99D\uC774 \uBE44\uD65C\uC131\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Scan this QR code using your authenticator app.":"\uC778\uC99D \uC571\uC73C\uB85C \uC774 QR \uCF54\uB4DC\uB97C \uC2A4\uCE94\uD558\uC138\uC694.","(Such as FreeOTP, Proton Authenticator etc.)":"(FreeOTP, Proton Authenticator \uB4F1)","Or enter this secret manually":"\uC774 \uC2DC\uD06C\uB9BF\uC744 \uC218\uB3D9\uC73C\uB85C \uC785\uB825","Valid with your TOTP code":"TOTP \uCF54\uB4DC\uB85C \uD655\uC778","The secret has expired":"\uC2DC\uD06C\uB9BF\uC774 \uB9CC\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"\uC774 \uCF54\uB4DC\uB294 \uC548\uC804\uD55C \uACF3\uC5D0 \uBCF4\uAD00\uD558\uC138\uC694. 2\uB2E8\uACC4 \uC778\uC99D\uC5D0 \uC811\uADFC\uD560 \uC218 \uC5C6\uAC8C \uB418\uC5B4\uB3C4 \uACC4\uC815\uC5D0 \uC811\uADFC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","These recovery codes are for one-time use only and will only be displayed here once.":"\uC774 \uBCF5\uAD6C \uCF54\uB4DC\uB294 1\uD68C\uC6A9\uC774\uBA70 \uC5EC\uAE30\uC5D0\uC11C \uD55C \uBC88\uB9CC \uD45C\uC2DC\uB429\uB2C8\uB2E4.","Overwrite Existing File(s)":"\uAE30\uC874 \uD30C\uC77C \uB36E\uC5B4\uC4F0\uAE30","Replace Existing File":"\uAE30\uC874 \uD30C\uC77C \uAD50\uCCB4","Do you want to replace the existing file(s)?":"\uAE30\uC874 \uD30C\uC77C\uC744 \uAD50\uCCB4\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",RenameFileToExisting:Ut,Save:Et,"Line Wrap":"\uC790\uB3D9 \uC904 \uBC14\uAFC8","Read-only":"\uC77D\uAE30 \uC804\uC6A9","Read-write":"\uC77D\uAE30/\uC4F0\uAE30","Save And Exit":"\uC800\uC7A5\uD558\uACE0 \uC885\uB8CC","Close Without Saving":"\uC800\uC7A5\uD558\uC9C0 \uC54A\uACE0 \uB2EB\uAE30",Undo:Rt,Redo:Nt,me:Ft,"The file is locked by":"\uD30C\uC77C\uC774 \uB2E4\uC74C \uC0AC\uC6A9\uC790\uC5D0 \uC758\uD574 \uC7A0\uACA8 \uC788\uC2B5\uB2C8\uB2E4",Unlock:Lt,Lock:Mt,Exclusive:Gt,"Send an unlock request":"\uC7A0\uAE08 \uD574\uC81C \uC694\uCCAD \uBCF4\uB0B4\uAE30","sends you a request to unlock the file":"\uD30C\uC77C \uC7A0\uAE08 \uD574\uC81C \uC694\uCCAD\uC744 \uBCF4\uB0C8\uC2B5\uB2C8\uB2E4","As the file owner, you can unlock the file or request the current lock owner to release it.":"\uD30C\uC77C \uC18C\uC720\uC790\uC778 \uACBD\uC6B0 \uD30C\uC77C\uC758 \uC7A0\uAE08\uC744 \uC9C1\uC811 \uD574\uC81C\uD558\uAC70\uB098 \uD604\uC7AC \uC7A0\uAE08 \uC18C\uC720\uC790\uC5D0\uAC8C \uD574\uC81C\uB97C \uC694\uCCAD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","The file is edited by":"\uD30C\uC77C\uC774 \uB2E4\uC74C \uC0AC\uC6A9\uC790\uC5D0 \uC758\uD574 \uD3B8\uC9D1 \uC911\uC785\uB2C8\uB2E4","A new update is available":"\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC774\uC6A9 \uAC00\uB2A5\uD569\uB2C8\uB2E4",Fullscreen:Yt,Dimensions:zt,"Start Slideshow":"\uC2AC\uB77C\uC774\uB4DC \uC1FC \uC2DC\uC791"};export{ya as Access,wa as Accessed,H as Account,qa as Action,ca as Active,W as Add,Va as Added,O as Administration,I as Administrator,Qe as Anchored,k as Application,be as Applications,nt as Asynchronously,a as Authentication,ye as Avatar,Oa as Browse,r as Cancel,_a as Client,Ca as Clients,oo as Clipboard,i as Close,ga as Comment,Sa as Comments,yo as Compress,me as Configuration,s as Confirm,Za as Conflict,ee as Connection,oe as Connections,ja as Copied,Xe as Copy,ra as Created,ia as Date,wo as Decompress,La as Delete,pa as Description,ot as Destination,zt as Dimensions,Xa as Direction,ct as Disable,so as Display,Ct as Documentation,gt as Done,Ke as Download,$e as Edit,_o as Elements,K as Email,to as Empty,lt as Enable,Ka as Error,D as Event,Gt as Exclusive,fa as Expiration,$o as Expired,R as External,P as File,U as Files,l as Filter,Ha as Filtered,d as Filters,xo as Folder,Yt as Fullscreen,ue as Generate,F as Group,N as Groups,Ko as Guest,Jo as Guests,Se as Home,Z as IP,pe as Import,go as Info,z as Isolated,ge as Language,Qo as Link,Bo as Links,no as List,Ve as Location,Mt as Lock,t as Login,Pt as Manage,de as Manager,he as Managers,na as Me,ie as Member,le as Members,at as Mode,vo as Modified,Je as Move,Ba as Moved,He as Name,Co as New,yt as Next,C as Notification,x as Notifications,Be as Options,ta as Owner,n as Password,la as Path,aa as Permissions,E as Personal,wt as Previous,Y as Private,ve as Recents,Nt as Redo,ao as Refresh,eo as Remove,Qa as Removed,Ze as Rename,Ut as RenameFileToExisting,vt as Repository,Ia as Reset,X as Role,Et as Save,Ma as Scheduler,h as Search,Dt as Security,u as See,$ as Seen,tt as Sequentially,Ja as Server,je as Settings,_e as Share,sa as Shared,ke as Shares,Wa as Simulate,So as Size,et as Source,ze as Space,We as Spaces,J as Status,bo as Sync,fo as Synced,uo as Synchronization,po as Synchronizations,mo as Synchronize,Ao as Tasks,ko as Text,No as Total,za as Transfers,Ae as Trash,ua as Type,Rt as Undo,ba as Unknown,ne as Unlimited,Lt as Unlock,we as Update,q as User,Q as Users,xt as Versions,Ea as View,ma as Visibility,G as Visible,_t as Website,ft as Wizard,Pa as absent,B as account,da as active,Oe as anchored,_ as application,fe as applications,Ga as async,xa as available,ae as available_space_is_low,mt as both,Da as busy,Ta as commented,va as comments,zo as create,Fa as day,Na as days,Wt as default,Oo as delete,co as delete_multiple_files,io as delete_one_file,Le as desktop_app_access,Me as desktop_app_sync,Ro as directories,Eo as directory,dt as disabled,it as enabled,ea as expired,st as fast,Po as file,Uo as files,Do as folder,L as group,M as groups,Xo as guest,Zo as guests,Ne as guests_admin,Go as item,Yo as items,jo as link,Ho as links,At as local,Ra as logout,ce as manager,Ft as me,se as member,re as members,To as modified,qo as modify,Io as move,g as nb_actions,y as nb_active_tasks,w as nb_elements,v as nb_messages,A as nb_notifications,Mo as nb_selections,b as nb_tasks,bt as never,ka as no,Fo as no_selection,p as no_task,oa as none,Ua as offline,f as one_active_task,S as one_message,T as one_notification,Lo as one_selection,m as one_task,te as online,Fe as personal_groups_admin,De as personal_space,Tt as public,$a as recent,Te as recents,kt as remote,pt as scheduler_unit_day,ht as scheduler_unit_hour,ut as scheduler_unit_minute,c as search,rt as secure,Ya as seq,Vo as share,xe as shared,Ce as shares,Ee as shares_access,Re as shares_admin,Ie as spaces,Pe as spaces_access,Ue as spaces_admin,ha as suspended,ho as synchronization,St as to,lo as trash_multiple_files,ro as trash_one_file,qe as unanchored,V as user,j as users,Ye as webdav,Ge as webdav_access,Wo as write,Aa as yes};
@@ -1 +0,0 @@
1
- import{$ as L,V as P,W as F,X as M,Y as $,Z as b}from"./chunk-MWUUM2NK.js";var C=class l{constructor(t,e,s,i,h,r,n,o,a,u=0,f){this.p=t,this.stack=e,this.state=s,this.reducePos=i,this.pos=h,this.score=r,this.buffer=n,this.bufferBase=o,this.curContext=a,this.lookAhead=u,this.parent=f}toString(){return`[${this.stack.filter((t,e)=>e%3==0).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(t,e,s=0){let i=t.parser.context;return new l(t,[],e,s,s,0,[],0,i?new A(i,i.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(t,e){this.stack.push(this.state,e,this.bufferBase+this.buffer.length),this.state=t}reduce(t){var e;let s=t>>19,i=t&65535,{parser:h}=this.p,r=this.reducePos<this.pos-25&&this.setLookAhead(this.pos),n=h.dynamicPrecedence(i);if(n&&(this.score+=n),s==0){this.pushState(h.getGoto(this.state,i,!0),this.reducePos),i<h.minRepeatTerm&&this.storeNode(i,this.reducePos,this.reducePos,r?8:4,!0),this.reduceContext(i,this.reducePos);return}let o=this.stack.length-(s-1)*3-(t&262144?6:0),a=o?this.stack[o-2]:this.p.ranges[0].from,u=this.reducePos-a;u>=2e3&&!(!((e=this.p.parser.nodeSet.types[i])===null||e===void 0)&&e.isAnonymous)&&(a==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=u):this.p.lastBigReductionSize<u&&(this.p.bigReductionCount=1,this.p.lastBigReductionStart=a,this.p.lastBigReductionSize=u));let f=o?this.stack[o-1]:0,p=this.bufferBase+this.buffer.length-f;if(i<h.minRepeatTerm||t&131072){let c=h.stateFlag(this.state,1)?this.pos:this.reducePos;this.storeNode(i,a,c,p+4,!0)}if(t&262144)this.state=this.stack[o];else{let c=this.stack[o-3];this.state=h.getGoto(c,i,!0)}for(;this.stack.length>o;)this.stack.pop();this.reduceContext(i,a)}storeNode(t,e,s,i=4,h=!1){if(t==0&&(!this.stack.length||this.stack[this.stack.length-1]<this.buffer.length+this.bufferBase)){let r=this,n=this.buffer.length;if(n==0&&r.parent&&(n=r.bufferBase-r.parent.bufferBase,r=r.parent),n>0&&r.buffer[n-4]==0&&r.buffer[n-1]>-1){if(e==s)return;if(r.buffer[n-2]>=e){r.buffer[n-2]=s;return}}}if(!h||this.pos==s)this.buffer.push(t,e,s,i);else{let r=this.buffer.length;if(r>0&&(this.buffer[r-4]!=0||this.buffer[r-1]<0)){let n=!1;for(let o=r;o>0&&this.buffer[o-2]>s;o-=4)if(this.buffer[o-1]>=0){n=!0;break}if(n)for(;r>0&&this.buffer[r-2]>s;)this.buffer[r]=this.buffer[r-4],this.buffer[r+1]=this.buffer[r-3],this.buffer[r+2]=this.buffer[r-2],this.buffer[r+3]=this.buffer[r-1],r-=4,i>4&&(i-=4)}this.buffer[r]=t,this.buffer[r+1]=e,this.buffer[r+2]=s,this.buffer[r+3]=i}}shift(t,e,s,i){if(t&131072)this.pushState(t&65535,this.pos);else if((t&262144)==0){let h=t,{parser:r}=this.p;(i>this.pos||e<=r.maxNode)&&(this.pos=i,r.stateFlag(h,1)||(this.reducePos=i)),this.pushState(h,s),this.shiftContext(e,s),e<=r.maxNode&&this.buffer.push(e,s,i,4)}else this.pos=i,this.shiftContext(e,s),e<=this.p.parser.maxNode&&this.buffer.push(e,s,i,4)}apply(t,e,s,i){t&65536?this.reduce(t):this.shift(t,e,s,i)}useNode(t,e){let s=this.p.reused.length-1;(s<0||this.p.reused[s]!=t)&&(this.p.reused.push(t),s++);let i=this.pos;this.reducePos=this.pos=i+t.length,this.pushState(e,i),this.buffer.push(s,i,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,t,this,this.p.stream.reset(this.pos-t.length)))}split(){let t=this,e=t.buffer.length;for(;e>0&&t.buffer[e-2]>t.reducePos;)e-=4;let s=t.buffer.slice(e),i=t.bufferBase+e;for(;t&&i==t.bufferBase;)t=t.parent;return new l(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,s,i,this.curContext,this.lookAhead,t)}recoverByDelete(t,e){let s=t<=this.p.parser.maxNode;s&&this.storeNode(t,this.pos,e,4),this.storeNode(0,this.pos,e,s?8:4),this.pos=this.reducePos=e,this.score-=190}canShift(t){for(let e=new T(this);;){let s=this.p.parser.stateSlot(e.state,4)||this.p.parser.hasAction(e.state,t);if(s==0)return!1;if((s&65536)==0)return!0;e.reduce(s)}}recoverByInsert(t){if(this.stack.length>=300)return[];let e=this.p.parser.nextStates(this.state);if(e.length>8||this.stack.length>=120){let i=[];for(let h=0,r;h<e.length;h+=2)(r=e[h+1])!=this.state&&this.p.parser.hasAction(r,t)&&i.push(e[h],r);if(this.stack.length<120)for(let h=0;i.length<8&&h<e.length;h+=2){let r=e[h+1];i.some((n,o)=>o&1&&n==r)||i.push(e[h],r)}e=i}let s=[];for(let i=0;i<e.length&&s.length<4;i+=2){let h=e[i+1];if(h==this.state)continue;let r=this.split();r.pushState(h,this.pos),r.storeNode(0,r.pos,r.pos,4,!0),r.shiftContext(e[i],this.pos),r.reducePos=this.pos,r.score-=200,s.push(r)}return s}forceReduce(){let{parser:t}=this.p,e=t.stateSlot(this.state,5);if((e&65536)==0)return!1;if(!t.validAction(this.state,e)){let s=e>>19,i=e&65535,h=this.stack.length-s*3;if(h<0||t.getGoto(this.stack[h],i,!1)<0){let r=this.findForcedReduction();if(r==null)return!1;e=r}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(e),!0}findForcedReduction(){let{parser:t}=this.p,e=[],s=(i,h)=>{if(!e.includes(i))return e.push(i),t.allActions(i,r=>{if(!(r&393216))if(r&65536){let n=(r>>19)-h;if(n>1){let o=r&65535,a=this.stack.length-n*3;if(a>=0&&t.getGoto(this.stack[a],o,!1)>=0)return n<<19|65536|o}}else{let n=s(r,h+1);if(n!=null)return n}})};return s(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(this.stack.length!=3)return!1;let{parser:t}=this.p;return t.data[t.stateSlot(this.state,1)]==65535&&!t.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(t){if(this.state!=t.state||this.stack.length!=t.stack.length)return!1;for(let e=0;e<this.stack.length;e+=3)if(this.stack[e]!=t.stack[e])return!1;return!0}get parser(){return this.p.parser}dialectEnabled(t){return this.p.parser.dialect.flags[t]}shiftContext(t,e){this.curContext&&this.updateContext(this.curContext.tracker.shift(this.curContext.context,t,this,this.p.stream.reset(e)))}reduceContext(t,e){this.curContext&&this.updateContext(this.curContext.tracker.reduce(this.curContext.context,t,this,this.p.stream.reset(e)))}emitContext(){let t=this.buffer.length-1;(t<0||this.buffer[t]!=-3)&&this.buffer.push(this.curContext.hash,this.pos,this.pos,-3)}emitLookAhead(){let t=this.buffer.length-1;(t<0||this.buffer[t]!=-4)&&this.buffer.push(this.lookAhead,this.pos,this.pos,-4)}updateContext(t){if(t!=this.curContext.context){let e=new A(this.curContext.tracker,t);e.hash!=this.curContext.hash&&this.emitContext(),this.curContext=e}}setLookAhead(t){return t<=this.lookAhead?!1:(this.emitLookAhead(),this.lookAhead=t,!0)}close(){this.curContext&&this.curContext.tracker.strict&&this.emitContext(),this.lookAhead>0&&this.emitLookAhead()}},A=class{constructor(t,e){this.tracker=t,this.context=e,this.hash=t.strict?t.hash(e):0}},T=class{constructor(t){this.start=t,this.state=t.state,this.stack=t.stack,this.base=this.stack.length}reduce(t){let e=t&65535,s=t>>19;s==0?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=(s-1)*3;let i=this.start.p.parser.getGoto(this.stack[this.base-3],e,!0);this.state=i}},N=class l{constructor(t,e,s){this.stack=t,this.pos=e,this.index=s,this.buffer=t.buffer,this.index==0&&this.maybeNext()}static create(t,e=t.bufferBase+t.buffer.length){return new l(t,e,e-t.bufferBase)}maybeNext(){let t=this.stack.parent;t!=null&&(this.index=this.stack.bufferBase-t.bufferBase,this.stack=t,this.buffer=t.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,this.index==0&&this.maybeNext()}fork(){return new l(this.stack,this.pos,this.index)}};function S(l,t=Uint16Array){if(typeof l!="string")return l;let e=null;for(let s=0,i=0;s<l.length;){let h=0;for(;;){let r=l.charCodeAt(s++),n=!1;if(r==126){h=65535;break}r>=92&&r--,r>=34&&r--;let o=r-32;if(o>=46&&(o-=46,n=!0),h+=o,n)break;h*=46}e?e[i++]=h:e=new t(h)}return e}var x=class{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}},j=new x,R=class{constructor(t,e){this.input=t,this.ranges=e,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=j,this.rangeIndex=0,this.pos=this.chunkPos=e[0].from,this.range=e[0],this.end=e[e.length-1].to,this.readNext()}resolveOffset(t,e){let s=this.range,i=this.rangeIndex,h=this.pos+t;for(;h<s.from;){if(!i)return null;let r=this.ranges[--i];h-=s.from-r.to,s=r}for(;e<0?h>s.to:h>=s.to;){if(i==this.ranges.length-1)return null;let r=this.ranges[++i];h+=r.from-s.to,s=r}return h}clipPos(t){if(t>=this.range.from&&t<this.range.to)return t;for(let e of this.ranges)if(e.to>t)return Math.max(t,e.from);return this.end}peek(t){let e=this.chunkOff+t,s,i;if(e>=0&&e<this.chunk.length)s=this.pos+t,i=this.chunk.charCodeAt(e);else{let h=this.resolveOffset(t,1);if(h==null)return-1;if(s=h,s>=this.chunk2Pos&&s<this.chunk2Pos+this.chunk2.length)i=this.chunk2.charCodeAt(s-this.chunk2Pos);else{let r=this.rangeIndex,n=this.range;for(;n.to<=s;)n=this.ranges[++r];this.chunk2=this.input.chunk(this.chunk2Pos=s),s+this.chunk2.length>n.to&&(this.chunk2=this.chunk2.slice(0,n.to-s)),i=this.chunk2.charCodeAt(0)}}return s>=this.token.lookAhead&&(this.token.lookAhead=s+1),i}acceptToken(t,e=0){let s=e?this.resolveOffset(e,-1):this.pos;if(s==null||s<this.token.start)throw new RangeError("Token end out of bounds");this.token.value=t,this.token.end=s}acceptTokenTo(t,e){this.token.value=t,this.token.end=e}getChunk(){if(this.pos>=this.chunk2Pos&&this.pos<this.chunk2Pos+this.chunk2.length){let{chunk:t,chunkPos:e}=this;this.chunk=this.chunk2,this.chunkPos=this.chunk2Pos,this.chunk2=t,this.chunk2Pos=e,this.chunkOff=this.pos-this.chunkPos}else{this.chunk2=this.chunk,this.chunk2Pos=this.chunkPos;let t=this.input.chunk(this.pos),e=this.pos+t.length;this.chunk=e>this.range.to?t.slice(0,this.range.to-this.pos):t,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(t=1){for(this.chunkOff+=t;this.pos+t>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();t-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=t,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(t,e){if(e?(this.token=e,e.start=t,e.lookAhead=t+1,e.value=e.extended=-1):this.token=j,this.pos!=t){if(this.pos=t,t==this.end)return this.setDone(),this;for(;t<this.range.from;)this.range=this.ranges[--this.rangeIndex];for(;t>=this.range.to;)this.range=this.ranges[++this.rangeIndex];t>=this.chunkPos&&t<this.chunkPos+this.chunk.length?this.chunkOff=t-this.chunkPos:(this.chunk="",this.chunkOff=0),this.readNext()}return this}read(t,e){if(t>=this.chunkPos&&e<=this.chunkPos+this.chunk.length)return this.chunk.slice(t-this.chunkPos,e-this.chunkPos);if(t>=this.chunk2Pos&&e<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(t-this.chunk2Pos,e-this.chunk2Pos);if(t>=this.range.from&&e<=this.range.to)return this.input.read(t,e);let s="";for(let i of this.ranges){if(i.from>=e)break;i.to>t&&(s+=this.input.read(Math.max(i.from,t),Math.min(i.to,e)))}return s}},m=class{constructor(t,e){this.data=t,this.id=e}token(t,e){let{parser:s}=e.p;K(this.data,t,e,this.id,s.data,s.tokenPrecTable)}};m.prototype.contextual=m.prototype.fallback=m.prototype.extend=!1;var z=class{constructor(t,e,s){this.precTable=e,this.elseToken=s,this.data=typeof t=="string"?S(t):t}token(t,e){let s=t.pos,i=0;for(;;){let h=t.next<0,r=t.resolveOffset(1,1);if(K(this.data,t,e,0,this.data,this.precTable),t.token.value>-1)break;if(this.elseToken==null)return;if(h||i++,r==null)break;t.reset(r,t.token)}i&&(t.reset(s,t.token),t.acceptToken(this.elseToken,i))}};z.prototype.contextual=m.prototype.fallback=m.prototype.extend=!1;var E=class{constructor(t,e={}){this.token=t,this.contextual=!!e.contextual,this.fallback=!!e.fallback,this.extend=!!e.extend}};function K(l,t,e,s,i,h){let r=0,n=1<<s,{dialect:o}=e.p.parser;t:for(;(n&l[r])!=0;){let a=l[r+1];for(let c=r+3;c<a;c+=2)if((l[c+1]&n)>0){let d=l[c];if(o.allows(d)&&(t.token.value==-1||t.token.value==d||X(d,t.token.value,i,h))){t.acceptToken(d);break}}let u=t.next,f=0,p=l[r+2];if(t.next<0&&p>f&&l[a+p*3-3]==65535){r=l[a+p*3-1];continue t}for(;f<p;){let c=f+p>>1,d=a+c+(c<<1),v=l[d],Q=l[d+1]||65536;if(u<v)p=c;else if(u>=Q)f=c+1;else{r=l[d+2],t.advance();continue t}}break}}function G(l,t,e){for(let s=t,i;(i=l[s])!=65535;s++)if(i==e)return s-t;return-1}function X(l,t,e,s){let i=G(e,s,t);return i<0||G(e,s,l)<i}var g=typeof process<"u"&&process.env&&/\bparse\b/.test(process.env.LOG),w=null;function U(l,t,e){let s=l.cursor($.IncludeAnonymous);for(s.moveTo(t);;)if(!(e<0?s.childBefore(t):s.childAfter(t)))for(;;){if((e<0?s.to<t:s.from>t)&&!s.type.isError)return e<0?Math.max(0,Math.min(s.to-1,t-25)):Math.min(l.length,Math.max(s.from+1,t+25));if(e<0?s.prevSibling():s.nextSibling())break;if(!s.parent())return e<0?0:l.length}}var I=class{constructor(t,e){this.fragments=t,this.nodeSet=e,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let t=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(t){for(this.safeFrom=t.openStart?U(t.tree,t.from+t.offset,1)-t.offset:t.from,this.safeTo=t.openEnd?U(t.tree,t.to+t.offset,-1)-t.offset:t.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(t.tree),this.start.push(-t.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(t){if(t<this.nextStart)return null;for(;this.fragment&&this.safeTo<=t;)this.nextFragment();if(!this.fragment)return null;for(;;){let e=this.trees.length-1;if(e<0)return this.nextFragment(),null;let s=this.trees[e],i=this.index[e];if(i==s.children.length){this.trees.pop(),this.start.pop(),this.index.pop();continue}let h=s.children[i],r=this.start[e]+s.positions[i];if(r>t)return this.nextStart=r,null;if(h instanceof b){if(r==t){if(r<this.safeFrom)return null;let n=r+h.length;if(n<=this.safeTo){let o=h.prop(P.lookAhead);if(!o||n+o<this.fragment.to)return h}}this.index[e]++,r+h.length>=Math.max(this.safeFrom,t)&&(this.trees.push(h),this.start.push(r),this.index.push(0))}else this.index[e]++,this.nextStart=r+h.length}}},B=class{constructor(t,e){this.stream=e,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=t.tokenizers.map(s=>new x)}getActions(t){let e=0,s=null,{parser:i}=t.p,{tokenizers:h}=i,r=i.stateSlot(t.state,3),n=t.curContext?t.curContext.hash:0,o=0;for(let a=0;a<h.length;a++){if((1<<a&r)==0)continue;let u=h[a],f=this.tokens[a];if(!(s&&!u.fallback)&&((u.contextual||f.start!=t.pos||f.mask!=r||f.context!=n)&&(this.updateCachedToken(f,u,t),f.mask=r,f.context=n),f.lookAhead>f.end+25&&(o=Math.max(f.lookAhead,o)),f.value!=0)){let p=e;if(f.extended>-1&&(e=this.addActions(t,f.extended,f.end,e)),e=this.addActions(t,f.value,f.end,e),!u.extend&&(s=f,e>p))break}}for(;this.actions.length>e;)this.actions.pop();return o&&t.setLookAhead(o),!s&&t.pos==this.stream.end&&(s=new x,s.value=t.p.parser.eofTerm,s.start=s.end=t.pos,e=this.addActions(t,s.value,s.end,e)),this.mainToken=s,this.actions}getMainToken(t){if(this.mainToken)return this.mainToken;let e=new x,{pos:s,p:i}=t;return e.start=s,e.end=Math.min(s+1,i.stream.end),e.value=s==i.stream.end?i.parser.eofTerm:0,e}updateCachedToken(t,e,s){let i=this.stream.clipPos(s.pos);if(e.token(this.stream.reset(i,t),s),t.value>-1){let{parser:h}=s.p;for(let r=0;r<h.specialized.length;r++)if(h.specialized[r]==t.value){let n=h.specializers[r](this.stream.read(t.start,t.end),s);if(n>=0&&s.p.parser.dialect.allows(n>>1)){(n&1)==0?t.value=n>>1:t.extended=n>>1;break}}}else t.value=0,t.end=this.stream.clipPos(i+1)}putAction(t,e,s,i){for(let h=0;h<i;h+=3)if(this.actions[h]==t)return i;return this.actions[i++]=t,this.actions[i++]=e,this.actions[i++]=s,i}addActions(t,e,s,i){let{state:h}=t,{parser:r}=t.p,{data:n}=r;for(let o=0;o<2;o++)for(let a=r.stateSlot(h,o?2:1);;a+=3){if(n[a]==65535)if(n[a+1]==1)a=k(n,a+2);else{i==0&&n[a+1]==2&&(i=this.putAction(k(n,a+2),e,s,i));break}n[a]==e&&(i=this.putAction(k(n,a+1),e,s,i))}return i}},D=class{constructor(t,e,s,i){this.parser=t,this.input=e,this.ranges=i,this.recovering=0,this.nextStackID=9812,this.minStackPos=0,this.reused=[],this.stoppedAt=null,this.lastBigReductionStart=-1,this.lastBigReductionSize=0,this.bigReductionCount=0,this.stream=new R(e,i),this.tokens=new B(t,this.stream),this.topTerm=t.top[1];let{from:h}=i[0];this.stacks=[C.start(this,t.top[0],h)],this.fragments=s.length&&this.stream.end-h>t.bufferLength*4?new I(s,t.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let t=this.stacks,e=this.minStackPos,s=this.stacks=[],i,h;if(this.bigReductionCount>300&&t.length==1){let[r]=t;for(;r.forceReduce()&&r.stack.length&&r.stack[r.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let r=0;r<t.length;r++){let n=t[r];for(;;){if(this.tokens.mainToken=null,n.pos>e)s.push(n);else{if(this.advanceStack(n,s,t))continue;{i||(i=[],h=[]),i.push(n);let o=this.tokens.getMainToken(n);h.push(o.value,o.end)}}break}}if(!s.length){let r=i&&Y(i);if(r)return g&&console.log("Finish with "+this.stackID(r)),this.stackToTree(r);if(this.parser.strict)throw g&&i&&console.log("Stuck with token "+(this.tokens.mainToken?this.parser.getName(this.tokens.mainToken.value):"none")),new SyntaxError("No parse at "+e);this.recovering||(this.recovering=5)}if(this.recovering&&i){let r=this.stoppedAt!=null&&i[0].pos>this.stoppedAt?i[0]:this.runRecovery(i,h,s);if(r)return g&&console.log("Force-finish "+this.stackID(r)),this.stackToTree(r.forceAll())}if(this.recovering){let r=this.recovering==1?1:this.recovering*3;if(s.length>r)for(s.sort((n,o)=>o.score-n.score);s.length>r;)s.pop();s.some(n=>n.reducePos>e)&&this.recovering--}else if(s.length>1){t:for(let r=0;r<s.length-1;r++){let n=s[r];for(let o=r+1;o<s.length;o++){let a=s[o];if(n.sameState(a)||n.buffer.length>500&&a.buffer.length>500)if((n.score-a.score||n.buffer.length-a.buffer.length)>0)s.splice(o--,1);else{s.splice(r--,1);continue t}}}s.length>12&&(s.sort((r,n)=>n.score-r.score),s.splice(12,s.length-12))}this.minStackPos=s[0].pos;for(let r=1;r<s.length;r++)s[r].pos<this.minStackPos&&(this.minStackPos=s[r].pos);return null}stopAt(t){if(this.stoppedAt!=null&&this.stoppedAt<t)throw new RangeError("Can't move stoppedAt forward");this.stoppedAt=t}advanceStack(t,e,s){let i=t.pos,{parser:h}=this,r=g?this.stackID(t)+" -> ":"";if(this.stoppedAt!=null&&i>this.stoppedAt)return t.forceReduce()?t:null;if(this.fragments){let a=t.curContext&&t.curContext.tracker.strict,u=a?t.curContext.hash:0;for(let f=this.fragments.nodeAt(i);f;){let p=this.parser.nodeSet.types[f.type.id]==f.type?h.getGoto(t.state,f.type.id):-1;if(p>-1&&f.length&&(!a||(f.prop(P.contextHash)||0)==u))return t.useNode(f,p),g&&console.log(r+this.stackID(t)+` (via reuse of ${h.getName(f.type.id)})`),!0;if(!(f instanceof b)||f.children.length==0||f.positions[0]>0)break;let c=f.children[0];if(c instanceof b&&f.positions[0]==0)f=c;else break}}let n=h.stateSlot(t.state,4);if(n>0)return t.reduce(n),g&&console.log(r+this.stackID(t)+` (via always-reduce ${h.getName(n&65535)})`),!0;if(t.stack.length>=8400)for(;t.stack.length>6e3&&t.forceReduce(););let o=this.tokens.getActions(t);for(let a=0;a<o.length;){let u=o[a++],f=o[a++],p=o[a++],c=a==o.length||!s,d=c?t:t.split(),v=this.tokens.mainToken;if(d.apply(u,f,v?v.start:d.pos,p),g&&console.log(r+this.stackID(d)+` (via ${(u&65536)==0?"shift":`reduce of ${h.getName(u&65535)}`} for ${h.getName(f)} @ ${i}${d==t?"":", split"})`),c)return!0;d.pos>i?e.push(d):s.push(d)}return!1}advanceFully(t,e){let s=t.pos;for(;;){if(!this.advanceStack(t,null,null))return!1;if(t.pos>s)return H(t,e),!0}}runRecovery(t,e,s){let i=null,h=!1;for(let r=0;r<t.length;r++){let n=t[r],o=e[r<<1],a=e[(r<<1)+1],u=g?this.stackID(n)+" -> ":"";if(n.deadEnd&&(h||(h=!0,n.restart(),g&&console.log(u+this.stackID(n)+" (restarted)"),this.advanceFully(n,s))))continue;let f=n.split(),p=u;for(let c=0;c<10&&f.forceReduce()&&(g&&console.log(p+this.stackID(f)+" (via force-reduce)"),!this.advanceFully(f,s));c++)g&&(p=this.stackID(f)+" -> ");for(let c of n.recoverByInsert(o))g&&console.log(u+this.stackID(c)+" (via recover-insert)"),this.advanceFully(c,s);this.stream.end>n.pos?(a==n.pos&&(a++,o=0),n.recoverByDelete(o,a),g&&console.log(u+this.stackID(n)+` (via recover-delete ${this.parser.getName(o)})`),H(n,s)):(!i||i.score<n.score)&&(i=n)}return i}stackToTree(t){return t.close(),b.build({buffer:N.create(t),nodeSet:this.parser.nodeSet,topID:this.topTerm,maxBufferLength:this.parser.bufferLength,reused:this.reused,start:this.ranges[0].from,length:t.pos-this.ranges[0].from,minRepeatType:this.parser.minRepeatTerm})}stackID(t){let e=(w||(w=new WeakMap)).get(t);return e||w.set(t,e=String.fromCodePoint(this.nextStackID++)),e+t}};function H(l,t){for(let e=0;e<t.length;e++){let s=t[e];if(s.pos==l.pos&&s.sameState(l)){t[e].score<l.score&&(t[e]=l);return}}t.push(l)}var O=class{constructor(t,e,s){this.source=t,this.flags=e,this.disabled=s}allows(t){return!this.disabled||this.disabled[t]==0}},y=l=>l,W=class{constructor(t){this.start=t.start,this.shift=t.shift||y,this.reduce=t.reduce||y,this.reuse=t.reuse||y,this.hash=t.hash||(()=>0),this.strict=t.strict!==!1}},q=class l extends L{constructor(t){if(super(),this.wrappers=[],t.version!=14)throw new RangeError(`Parser version (${t.version}) doesn't match runtime version (14)`);let e=t.nodeNames.split(" ");this.minRepeatTerm=e.length;for(let n=0;n<t.repeatNodeCount;n++)e.push("");let s=Object.keys(t.topRules).map(n=>t.topRules[n][1]),i=[];for(let n=0;n<e.length;n++)i.push([]);function h(n,o,a){i[n].push([o,o.deserialize(String(a))])}if(t.nodeProps)for(let n of t.nodeProps){let o=n[0];typeof o=="string"&&(o=P[o]);for(let a=1;a<n.length;){let u=n[a++];if(u>=0)h(u,o,n[a++]);else{let f=n[a+-u];for(let p=-u;p>0;p--)h(n[a++],o,f);a++}}}this.nodeSet=new M(e.map((n,o)=>F.define({name:o>=this.minRepeatTerm?void 0:n,id:o,props:i[o],top:s.indexOf(o)>-1,error:o==0,skipped:t.skippedNodes&&t.skippedNodes.indexOf(o)>-1}))),t.propSources&&(this.nodeSet=this.nodeSet.extend(...t.propSources)),this.strict=!1,this.bufferLength=1024;let r=S(t.tokenData);this.context=t.context,this.specializerSpecs=t.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let n=0;n<this.specializerSpecs.length;n++)this.specialized[n]=this.specializerSpecs[n].term;this.specializers=this.specializerSpecs.map(J),this.states=S(t.states,Uint32Array),this.data=S(t.stateData),this.goto=S(t.goto),this.maxTerm=t.maxTerm,this.tokenizers=t.tokenizers.map(n=>typeof n=="number"?new m(r,n):n),this.topRules=t.topRules,this.dialects=t.dialects||{},this.dynamicPrecedences=t.dynamicPrecedences||null,this.tokenPrecTable=t.tokenPrec,this.termNames=t.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(t,e,s){let i=new D(this,t,e,s);for(let h of this.wrappers)i=h(i,t,e,s);return i}getGoto(t,e,s=!1){let i=this.goto;if(e>=i[0])return-1;for(let h=i[e+1];;){let r=i[h++],n=r&1,o=i[h++];if(n&&s)return o;for(let a=h+(r>>1);h<a;h++)if(i[h]==t)return o;if(n)return-1}}hasAction(t,e){let s=this.data;for(let i=0;i<2;i++)for(let h=this.stateSlot(t,i?2:1),r;;h+=3){if((r=s[h])==65535)if(s[h+1]==1)r=s[h=k(s,h+2)];else{if(s[h+1]==2)return k(s,h+2);break}if(r==e||r==0)return k(s,h+1)}return 0}stateSlot(t,e){return this.states[t*6+e]}stateFlag(t,e){return(this.stateSlot(t,0)&e)>0}validAction(t,e){return!!this.allActions(t,s=>s==e?!0:null)}allActions(t,e){let s=this.stateSlot(t,4),i=s?e(s):void 0;for(let h=this.stateSlot(t,1);i==null;h+=3){if(this.data[h]==65535)if(this.data[h+1]==1)h=k(this.data,h+2);else break;i=e(k(this.data,h+1))}return i}nextStates(t){let e=[];for(let s=this.stateSlot(t,1);;s+=3){if(this.data[s]==65535)if(this.data[s+1]==1)s=k(this.data,s+2);else break;if((this.data[s+2]&1)==0){let i=this.data[s+1];e.some((h,r)=>r&1&&h==i)||e.push(this.data[s],i)}}return e}configure(t){let e=Object.assign(Object.create(l.prototype),this);if(t.props&&(e.nodeSet=this.nodeSet.extend(...t.props)),t.top){let s=this.topRules[t.top];if(!s)throw new RangeError(`Invalid top rule name ${t.top}`);e.top=s}return t.tokenizers&&(e.tokenizers=this.tokenizers.map(s=>{let i=t.tokenizers.find(h=>h.from==s);return i?i.to:s})),t.specializers&&(e.specializers=this.specializers.slice(),e.specializerSpecs=this.specializerSpecs.map((s,i)=>{let h=t.specializers.find(n=>n.from==s.external);if(!h)return s;let r=Object.assign(Object.assign({},s),{external:h.to});return e.specializers[i]=J(r),r})),t.contextTracker&&(e.context=t.contextTracker),t.dialect&&(e.dialect=this.parseDialect(t.dialect)),t.strict!=null&&(e.strict=t.strict),t.wrap&&(e.wrappers=e.wrappers.concat(t.wrap)),t.bufferLength!=null&&(e.bufferLength=t.bufferLength),e}hasWrappers(){return this.wrappers.length>0}getName(t){return this.termNames?this.termNames[t]:String(t<=this.maxNode&&this.nodeSet.types[t].name||t)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(t){let e=this.dynamicPrecedences;return e==null?0:e[t]||0}parseDialect(t){let e=Object.keys(this.dialects),s=e.map(()=>!1);if(t)for(let h of t.split(" ")){let r=e.indexOf(h);r>=0&&(s[r]=!0)}let i=null;for(let h=0;h<e.length;h++)if(!s[h])for(let r=this.dialects[e[h]],n;(n=this.data[r++])!=65535;)(i||(i=new Uint8Array(this.maxTerm+1)))[n]=1;return new O(t,s,i)}static deserialize(t){return new l(t)}};function k(l,t){return l[t]|l[t+1]<<16}function Y(l){let t=null;for(let e of l){let s=e.p.stoppedAt;(e.pos==e.p.stream.end||s!=null&&e.pos>s)&&e.p.parser.stateFlag(e.state,2)&&(!t||t.score<e.score)&&(t=e)}return t}function J(l){if(l.external){let t=l.extend?1:0;return(e,s)=>l.external(e,s)<<1|t}return l.get}export{z as a,E as b,W as c,q as d};
@@ -1,2 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var o="Autenticazione",a="Nome utente",n="Password",t="Conferma",r="Annulla",s="Chiudi",l="Filtra",c="Filtri",d="cerca",p="Cerca",u="Vedi",m="Nessuna attivit\xE0",g="{{ nb }} attivit\xE0 completata",h="{{ nb }} attivit\xE0 completate",f="{{ nba }} attivit\xE0 in corso su {{ nb }}",v="{{ nba }} attivit\xE0 in corso su {{ nb }}",z="{{nb}} elemento/i",b="{{nb}} azione/i",w="{{ nb }} nuovo messaggio",y="{{ nb }} nuovi messaggi",S="{{ nb }} notifica non letta",C="{{ nb }} notifiche non lette",A="Applicazione",N="applicazione",T="Notifica",k="Notifiche",L="Evento",D="File",I="File",E="Personali",P="Esterno",_="Gruppi",x="Gruppo",R="gruppo",U="gruppi",M="Visibile",F="Privato",G="Isolato",q="Aggiungi",V="Amministratore",O="Amministrazione",Y="Utente",Q="utente",W="Utenti",B="utenti",H="account",j="Account",K="Email",J="Stato",X="Ruolo",Z="IP",$="Visto",ee="Connessione",ie="Connessioni",oe="Spazio disponibile basso ( {{ nb }}% )",ae="online",ne="Illimitato",te="membro",re="membri",se="Membro",le="Membri",ce="Gestore",de="gestore",pe="Gestori",ue="Genera",me="Importa",ge="Configurazione",he="Applicazioni",fe="applicazioni",ve="Avatar",ze="Aggiorna",be="Lingua",we="Home",ye="Recenti",Se="recenti",Ce="Cestino",Ae="Condivisioni",Ne="Condividi",Te="condivisioni",ke="condiviso",Le="Accesso allo spazio personale",De="Accesso agli spazi",Ie="Amministrazione degli spazi",Ee="Accesso alle condivisioni",Pe="Amministrazione delle condivisioni",_e="Amministrazione degli ospiti",xe="Amministrazione dei gruppi personali",Re="Accesso dall\u2019app desktop",Ue="Sincronizzazione dall\u2019app desktop",Me="Accesso WebDAV",Fe="WebDAV",Ge="Spazio",qe="Spazi",Ve="spazi",Oe="ha ancorato",Ye="ha disancorato",Qe="Posizione",We="Ancorato",Be="Impostazioni",He="Opzioni",je="Nome",Ke="Scarica",Je="Sposta",Xe="Copia",Ze="Rinomina",$e="Modifica",ei="Rimuovi",ii="Appunti",oi="Aggiorna",ai="Svuota",ni="Elenco",ti="Visualizzazione",ri="Vuoi spostare <b>{{arg}}</b> nel cestino?",si="Vuoi eliminare definitivamente <b>{{arg}}</b>?",li="Vuoi spostare questi <b>{{arg}} file</b> nel cestino?",ci="Vuoi eliminare definitivamente questi <b>{{arg}} file</b>?",di="sincronizzazione",pi="Sincronizzazione",ui="Sincronizzazioni",mi="Sincronizza",gi="Sync",hi="Sincronizzato",fi="Comprimi",vi="Decomprimi",zi="Info",bi="Dimensione",wi="Modificato",yi="modificato",Si="Attivit\xE0",Ci="Testo",Ai="Elementi",Ni="Nuovo",Ti="Cartella",ki="cartella",Li="file",Di="file",Ii="directory",Ei="directory",Pi="Totale",_i="nessun elemento selezionato",xi="{{ nb }} elemento selezionato",Ri="{{ nb }} elementi selezionati",Ui="elemento",Mi="elementi",Fi="creare",Gi="scrivere",qi="spostare",Vi="eliminare",Oi="modificare",Yi="condivisione",Qi="Link",Wi="link",Bi="Link",Hi="link",ji="Ospite",Ki="Ospiti",Ji="ospite",Xi="ospiti",Zi="Scaduto",$i="scaduto",eo="nessuno",io="Permessi",oo="Proprietario",ao="Io",no="Condiviso",to="Creato",ro="Data",so="Percorso",lo="attivo",co="Attivo",po="sospeso",uo="Tipo",mo="Descrizione",go="Visibilit\xE0",ho="Sconosciuto",fo="Scadenza",vo="Accesso",zo="Acceduto",bo="Commenta",wo="Commenti",yo="commenti",So="ha commentato",Co="s\xEC",Ao="no",No="Cliente",To="Clienti",ko="disponibile",Lo="occupato",Do="assente",Io="offline",Eo="Vedi",Po="esci",_o="giorni",xo="giorno",Ro="Elimina",Uo="Pianificatore",Mo="parallelo",Fo="sequenziale",Go="Trasferimenti",qo="Simula",Vo="Reimposta",Oo="Sfoglia",Yo="Azione",Qo="Aggiunto",Wo="Rimosso",Bo="Copiato",Ho="Spostato",jo="Filtrato",Ko="Errore",Jo="Server",Xo="Direzione",Zo="Conflitto",$o="recente",ea="Origine",ia="Destinazione",oa="Modalit\xE0",aa="Sequenzialmente",na="In parallelo",ta="veloce",ra="sicuro",sa="abilitato",la="Abilita",ca="disabilitato",da="Disabilita",pa="ore",ua="minuti",ma="giorni",ga="entrambi",ha="mai",fa="Procedura guidata",va="Avanti",za="Indietro",ba="Fatto",wa="verso",ya="Repository",Sa="pubblico",Ca="locale",Aa="remoto",Na="Sito web",Ta="Documentazione",ka="Versioni",La="Sicurezza",Da="Gestisci",Ia="Vuoi rinominare <b>{{ old }}</b> in <b>{{ new }}</b>?",Ea="Salva",Pa="Annulla",_a="Ripristina",xa="io",Ra="Sblocca",Ua="Blocco",Ma="Esclusivo",Fa="Schermo intero",Ga="Dimensioni",qa={"Sign-in to your account":"Accedi al tuo account","Wrong login or password":"Nome utente o password errati","Authentication service error":"Errore del servizio di autenticazione","Account locked":"Account bloccato","Account is not allowed":"Account non autorizzato","Account matching error":"Errore di corrispondenza dell\u2019account",Authentication:o,"Sign in":"Accedi",Login:a,Password:n,"Login or Email":"Nome utente o email","Login already used":"Nome utente gi\xE0 utilizzato","You are already logged in":"Hai gi\xE0 effettuato l\u2019accesso","Name already used":"Nome gi\xE0 utilizzato","Token has expired":"Il token \xE8 scaduto",Confirm:t,Cancel:r,Close:s,"Server connection error":"Errore di connessione al server",Filter:l,Filters:c,search:d,Search:p,"Search for content":"Cerca contenuti","Search for files":"Cerca file","Full-text search":"Ricerca full-text","Full-text search is disabled":"La ricerca full-text \xE8 disabilitata","Type to search for users or groups to add":"Digita per cercare utenti o gruppi da aggiungere","Type to search for groups to add":"Digita per cercare gruppi da aggiungere","Type to search for users to add":"Digita per cercare utenti da aggiungere","Type to search for managers to add":"Digita per cercare gestori da aggiungere","Member since":"Membro dal","Windows Manager":"Gestore di finestre","Mark as read":"Segna come letto",See:u,no_task:m,one_task:g,nb_tasks:h,one_active_task:f,nb_active_tasks:v,nb_elements:z,nb_actions:b,one_message:w,nb_messages:y,one_notification:S,nb_notifications:C,Application:A,application:N,"application and email":"applicazione ed email",Notification:T,Notifications:k,Event:L,File:D,Files:I,"Personal files":"File personali","for personal files":"per i file personali",Personal:E,External:P,"Share status":"Stato della condivisione","Share description":"Descrizione della condivisione","No recent files":"Nessun file recente",Groups:_,Group:x,group:R,"New personal group":"Nuovo gruppo personale","Edit personal group":"Modifica gruppo personale","personal group":"gruppo personale","Personal group":"Gruppo personale","Personal groups":"Gruppi personali",groups:U,"Parent group":"Gruppo padre","Group updated":"Gruppo aggiornato","Group created":"Gruppo creato","Group not found":"Gruppo non trovato","Group error":"Errore del gruppo","Set as group manager":"Imposta come gestore del gruppo","As a manager, the user will be able to manage the group and its members.":"Come gestore, l\u2019utente potr\xE0 gestire il gruppo e i suoi membri.","As a manager, the user will be able to manage group members but not group properties.":`Come gestore, l\u2019utente potr\xE0 gestire i membri del gruppo ma non le propriet\xE0 del gruppo.
2
- `,Visible:M,Private:F,Isolated:G,"Select the parent group":"Seleziona il gruppo padre","from the group":"del gruppo","New group":"Nuovo gruppo","Edit group":"Modifica gruppo","Leave group":"Lascia il gruppo","Delete group":"Elimina gruppo","Remove from group":"Rimuovi dal gruppo","Group must have at least one manager":"Il gruppo deve avere almeno un gestore","The group was left":"Il gruppo \xE8 stato abbandonato","The group was not left":"Il gruppo non \xE8 stato abbandonato","will be left, you will no longer be a member of this group":"verr\xE0 abbandonato, non sarai pi\xF9 membro di questo gruppo","All users can see this group.":"Tutti gli utenti possono vedere questo gruppo.","Users who are not members of this group cannot see it.":"Gli utenti che non sono membri di questo gruppo non possono vederlo.","The group is not visible, its members cannot see it and cannot see each other.":"Il gruppo non \xE8 visibile, i suoi membri non possono vederlo n\xE9 vedersi tra loro.",Add:q,"Add members":"Aggiungi membri","See members":"Vedi membri",Administrator:V,Administration:O,User:Y,user:Q,Users:W,users:B,"New user":"Nuovo utente",account:H,Account:j,"Account status":"Stato dell\u2019account",Email:K,"Email already used":"Email gi\xE0 utilizzata","First name":"Nome","Last name":"Cognome","Full name":"Nome e cognome",Status:J,Role:X,IP:Z,"IP Addresses":"Indirizzi IP",Seen:$,Connection:ee,Connections:ie,"Confirm deletion":"Conferma eliminazione","Confirm permanent deletion of data":"Conferma l\u2019eliminazione definitiva dei dati","Space and data will be deleted in":"Lo spazio e i dati verranno eliminati tra","Space is disabled":"Lo spazio \xE8 disabilitato","Storage Space":"Spazio di archiviazione","Storage Quota":"Quota di archiviazione","Storage Usage":"Utilizzo dell\u2019archiviazione","Space status":"Stato dello spazio","Storage quota exceeded":"Quota di archiviazione superata","Storage quota will be exceeded":"La quota di archiviazione verr\xE0 superata","No more space available":"Nessuno spazio disponibile",available_space_is_low:oe,online:ae,"Online users":"Utenti online",Unlimited:ne,member:te,members:re,Member:se,Members:le,Manager:ce,manager:de,Managers:pe,"At least one manager is required":"\xC8 richiesto almeno un gestore",Generate:ue,Import:me,Configuration:ge,Applications:he,applications:fe,"Permissions inherited from groups":"Permessi ereditati dai gruppi","Only the group will be deleted, the members will no longer be part of it.":"Verr\xE0 eliminato solo il gruppo, i membri non ne faranno pi\xF9 parte.",Avatar:ve,Update:ze,"current password":"password attuale","new password":"nuova password","Change me !":"Cambiami!","Current password missing !":"Password attuale mancante!","New password missing !":"Nuova password mancante!","New password must have 8 characters minimum":"La nuova password deve avere almeno 8 caratteri","Current password does not match":"La password attuale non corrisponde","Password has been updated":"La password \xE8 stata aggiornata","Unable to update password":"Impossibile aggiornare la password","Bad password":"Password errata","too many login attempts":"troppi tentativi di accesso",Language:be,"Language updated":"Lingua aggiornata","Unable to update language":"Impossibile aggiornare la lingua","Notification preference updated":"Preferenze di notifica aggiornate","Full-text search preference updated":"Preferenza di ricerca full-text aggiornata","Unable to update notification preference":"Impossibile aggiornare la preferenza di notifica","Unable to update full-text search preference":"Impossibile aggiornare la preferenza di ricerca full-text","Unable to open document":"Impossibile aprire il documento","Unable to save document":"Impossibile salvare il documento",Home:we,Recents:ye,recents:Se,Trash:Ce,"trash bins":"cestini",Shares:Ae,Share:Ne,shares:Te,shared:ke,personal_space:Le,spaces_access:De,spaces_admin:Ie,shares_access:Ee,shares_admin:Pe,guests_admin:_e,personal_groups_admin:xe,desktop_app_access:Re,desktop_app_sync:Ue,webdav_access:Me,"Create share":"Crea condivisione","Edit share":"Modifica condivisione","Delete share":"Elimina condivisione","Child shares":"Condivisioni figlie",webdav:Fe,"Share is disabled":"La condivisione \xE8 disabilitata",Space:Ge,Spaces:qe,spaces:Ve,"Space name":"Nome dello spazio","New space":"Nuovo spazio","Create a new space":"Crea un nuovo spazio","Create space":"Crea spazio","Edit space":"Modifica spazio","Delete space":"Elimina spazio","Create a new share":"Crea una nuova condivisione","Type to search for space to select":"Digita per cercare lo spazio da selezionare","Anchor to a space":"Ancora a uno spazio","Anchor files to a space":"Ancora i file a uno spazio","You have been invited to join this space":"Sei stato invitato a unirti a questo spazio","You have been invited to join this share":"Sei stato invitato a unirti a questa condivisione","Shared with others":"Condiviso con altri","With others":"Con altri","Shared with me":"Condiviso con me","With me":"Con me","Shared via links":"Condiviso tramite link","Via links":"Tramite link","Shared from":"Condiviso da","share with you this":"condivide con te questo","shared with you":"ha condiviso con te","no longer share with you":"non condivide pi\xF9 con te","You now have access to the space":"Ora hai accesso allo spazio","You no longer have access to the space":"Non hai pi\xF9 accesso allo spazio","This space has been permanently deleted":"Questo spazio \xE8 stato eliminato definitivamente","You now have access to the share":"Ora hai accesso alla condivisione","You no longer have access to the share":"Non hai pi\xF9 accesso alla condivisione","You are no longer a member of the parent share, your child share has been deleted":"Non sei pi\xF9 membro della condivisione padre, la tua condivisione figlia \xE8 stata eliminata",anchored:Oe,unanchored:Ye,"Share not found":"Condivisione non trovata","Go to":"Vai a",Location:Qe,"Name and location are required":"Nome e posizione sono obbligatori","Parent location already exists in files":"La posizione padre esiste gi\xE0 nei file","Check the location":"Verifica la posizione","Location not found":"Posizione non trovata","Forbidden resource":"Posizione non autorizzata","Resource already exists":"L\u2019elemento esiste gi\xE0","The location does not exist":"La posizione non esiste","The location is not readable":"La posizione non \xE8 leggibile","The location is not writeable":"La posizione non \xE8 scrivibile","The location is a directory":"La posizione \xE8 una directory","The file is locked":"Il file \xE8 bloccato","This share is protected by a password":"Questa condivisione \xE8 protetta da password","You do not have share permission":"Non hai il permesso di condividere","You can not share a space":"Non puoi condividere uno spazio","You can not remove an anchored file":"Non puoi rimuovere un file ancorato","You are not allowed to write here":"Non sei autorizzato a scrivere qui","You are not allowed to do this action":"Non sei autorizzato a eseguire questa azione","You can not move an anchored file":"Non puoi spostare un file ancorato","You can not move a locked file":"Non puoi spostare un file bloccato",Anchored:We,"Anchored by":"Ancorato da","Manage my anchored files":"Gestisci i miei file ancorati","You have no files anchored on this space":"Non hai file ancorati su questo spazio","An anchored file already has this name":"Un file ancorato ha gi\xE0 questo nome",Settings:Be,Options:He,Name:je,Download:Ke,"Download done":"Download completato","Download failed":"Download non riuscito","Upload done":"Caricamento completato","Upload failed":"Caricamento non riuscito","Copy/Move":"Copia/Sposta",Move:Je,"Move done":"Spostamento completato","Move failed":"Spostamento non riuscito","Deletion done":"Eliminazione completata","Deletion failed":"Eliminazione non riuscita","Creation failed":"Creazione non riuscita",Copy:Xe,"Copy done":"Copia completata","Copy failed":"Copia non riuscita","Copy-Paste":"Copia-Incolla","Cut-Paste":"Taglia-Incolla",Rename:Ze,Edit:$e,"Share inside":"Condividi internamente","Share outside":"Condividi esternamente",Remove:ei,Clipboard:ii,"Send to Clipboard":"Invia agli appunti","will be removed":"verr\xE0 rimosso",Refresh:oi,Empty:ai,List:ni,Display:ti,"Sort by":"Ordina per",trash_one_file:ri,delete_one_file:si,trash_multiple_files:li,delete_multiple_files:ci,"Moving to trash":"Spostamento nel cestino","Permanent deletion":"Eliminazione definitiva","Would you like to empty the trash ?":"Vuoi svuotare il cestino?","All items will be permanently deleted":"Tutti gli elementi saranno eliminati definitivamente","Actions will be performed in the current folder":"Le azioni saranno eseguite nella cartella corrente","The client will no longer have permission to access your account and will no longer be able to synchronize.":"Il client non avr\xE0 pi\xF9 il permesso di accedere al tuo account e non potr\xE0 pi\xF9 sincronizzare.","The access expires":"L\u2019accesso scade","The access has expired":"L\u2019accesso \xE8 scaduto","Never expires":"Non scade mai",synchronization:di,Synchronization:pi,Synchronizations:ui,Synchronize:mi,Sync:gi,"Stop synchronization":"Interrompi sincronizzazione","Synchronize all":"Sincronizza tutto","Stop synchronizations":"Interrompi sincronizzazioni",Synced:hi,"Sync already exists":"La sincronizzazione esiste gi\xE0","Sync was reset":"Sincronizzazione reimpostata","Sync deleted":"Sincronizzazione eliminata","This client":"Questo client","You are no longer synchronizing":"Non stai pi\xF9 sincronizzando",Compress:fi,Decompress:vi,"Compress and Download":"Comprimi e scarica","Compress and Save":"Comprimi e salva","Enable compression":"Abilita compressione","Compression done":"Compressione completata","Compression failed":"Compressione non riuscita","Decompression done":"Decompressione completata","Decompression failed":"Decompressione non riuscita","(this may take longer)":"(potrebbe richiedere pi\xF9 tempo)","Save in the current directory":"Salva nella directory corrente","This name is already used":"Questo nome \xE8 gi\xE0 utilizzato",Info:zi,Size:bi,Modified:wi,modified:yi,Tasks:Si,"Download from URL":"Scarica da URL","Upload files":"Carica file","Upload folders":"Carica cartelle","Folder name":"Nome della cartella","New folder":"Nuova cartella","Document name":"Nome del documento","New document":"Nuovo documento","File name":"Nome del file","File permissions":"Permessi del file",Text:Ci,"Rich Text Format":"Formato di testo RTF","Forbidden characters":"Caratteri non consentiti",Elements:Ai,"Malformed URL":"URL malformato",New:Ni,Folder:Ti,folder:ki,file:Li,files:Di,directory:Ii,directories:Ei,Total:Pi,no_selection:_i,one_selection:xi,nb_selections:Ri,"Archive name":"Nome dell\u2019archivio","Drag and drop your files here":"Trascina e rilascia qui i tuoi file","The destination already exists":"La destinazione esiste gi\xE0","This item is already selected":"Questo elemento \xE8 gi\xE0 selezionato","Parent item is already selected":"L\u2019elemento padre \xE8 gi\xE0 selezionato","This file contains binary data that can not be read":"Questo file contiene dati binari che non possono essere letti","Navigation Tree":"Albero di navigazione",item:Ui,items:Mi,create:Fi,write:Gi,move:qi,delete:Vi,modify:Oi,"Delete user":"Elimina utente","Delete all user files":"Elimina tutti i file dell\u2019utente",share:Yi,"Share name":"Nome della condivisione","New share":"Nuova condivisione","New share link":"Nuovo link di condivisione","New link":"Nuovo link","Edit children shares":"Modifica condivisioni figlie",Link:Qi,link:Wi,Links:Bi,links:Hi,"Link copied":"Link copiato","Link created":"Link creato","Link deleted":"Link eliminato","Link error":"Errore del link","Copy link":"Copia link","Edit link":"Modifica link","Guest Link":"Link ospite","Guest name":"Nome dell\u2019ospite","Guest email":"Email dell\u2019ospite","Guest language":"Lingua dell\u2019ospite",Guest:ji,Guests:Ki,guest:Ji,guests:Xi,"New guest":"Nuovo ospite","Edit guest":"Modifica ospite","Guest created":"Ospite creato","Guest deleted":"Ospite eliminato","Guest updated":"Ospite aggiornato","Guest error":"Errore ospite","Add an external location":"Aggiungi una posizione esterna","External location":"Posizione esterna","Select a file":"Seleziona un file","The link is expired":"Il link \xE8 scaduto","The link is disabled":"Il link \xE8 disabilitato","The link was not found":"Il link non \xE8 stato trovato",Expired:Zi,expired:$i,none:eo,"The maximum number of access allowed to the link is exceeded":"\xC8 stato superato il numero massimo di accessi consentiti al link","Set a password":"Imposta una password","Enter your password":"Inserisci la tua password",Permissions:io,"No permissions":"Nessun permesso",Owner:oo,Me:ao,Shared:no,Created:to,"Created & Modified":"Creato e modificato","Creation date":"Data di creazione","Modification date":"Data di modifica","Deactivation date":"Data di disattivazione",Date:ro,Path:so,active:lo,Active:co,suspended:po,"Unable to rename user space":"Impossibile rinominare lo spazio utente","Unable to delete user space":"Impossibile eliminare lo spazio utente","Unable to update user":"Impossibile aggiornare l\u2019utente","Unable to update user groups":"Impossibile aggiornare i gruppi dell\u2019utente","User created":"Utente creato","User updated":"Utente aggiornato","User not found":"Utente non trovato","Edit user":"Modifica utente","Impersonate identity":"Impersona identit\xE0",Type:uo,Description:mo,Visibility:go,"Unknown error !":"Errore sconosciuto!",Unknown:ho,Expiration:fo,"Limit access":"Limita accessi","Current access count":"Numero di accessi attuale",Access:vo,Accessed:zo,"Last access":"Ultimo accesso","Last accesses":"Ultimi accessi",Comment:bo,Comments:wo,comments:yo,commented:So,"No recent comments":"Nessun commento recente","Write a comment ...":"Scrivi un commento ...",yes:Co,no:Ao,Client:No,Clients:To,available:ko,busy:Lo,absent:Do,offline:Io,View:Eo,"Session has expired":"La sessione \xE8 scaduta","Please sign in":"Per favore, accedi",logout:Po,days:_o,day:xo,Delete:Ro,Scheduler:Uo,async:Mo,seq:Fo,Transfers:Go,Simulate:qo,Reset:Vo,Browse:Oo,Action:Yo,Added:Qo,Removed:Wo,Copied:Bo,Moved:Ho,Filtered:jo,Error:Ko,Server:Jo,Direction:Xo,Conflict:Zo,"Show filtered files":"Mostra i file filtrati",recent:$o,Source:ea,Destination:ia,Mode:oa,Sequentially:aa,Asynchronously:na,fast:ta,secure:ra,enabled:sa,Enable:la,disabled:ca,Disable:da,scheduler_unit_hour:pa,scheduler_unit_minute:ua,scheduler_unit_day:ma,"You must have permission to modify the server folder to choose a different sync mode":"Devi avere il permesso di modificare la cartella del server per scegliere una modalit\xE0 di sincronizzazione diversa","upload only":"solo caricamento","download only":"solo download",both:ga,never:ha,"Clear events":"Cancella eventi","Events from":"Eventi da","All syncs":"Tutte le sincronizzazioni","All events":"Tutti gli eventi","will be cleared":"verranno cancellati","No differences":"Nessuna differenza","Select a folder":"Seleziona una cartella","The files containing":"I file contenenti","The files starting":"I file che iniziano","The files ending":"I file che finiscono","Expert (Regexp)":"Esperto (Regexp)","click on the browse button":"fai clic sul pulsante sfoglia","with a name or pattern":"per nome o modello","with the extension ('.mp3', '.avi', '.mov' ...)":"con l\u2019estensione ('.mp3', '.avi', '.mov' ...)",Wizard:fa,Next:va,Previous:za,Done:ba,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Questa procedura guidata ti aiuter\xE0 a sincronizzare una directory del tuo computer con una directory di Sync-in.","To begin, select a folder on your computer.":"Per iniziare, seleziona una cartella sul tuo computer.",'You can drag the folder into the area below or click on the "Select" button.':'Puoi trascinare la cartella nell\u2019area sottostante o fare clic sul pulsante "Seleziona".',"Drop folder here":"Rilascia qui la cartella","This directory is already synced":"Questa directory \xE8 gi\xE0 sincronizzata","The parent directory is already synced":"La directory padre \xE8 gi\xE0 sincronizzata","This directory is not accessible":"Questa directory non \xE8 accessibile","This directory is read-only, you will not be able to modify it":"Questa directory \xE8 di sola lettura, non potrai modificarla","Please select the server directory to sync, if it doesn't exist you can create it.":"Seleziona la directory del server da sincronizzare; se non esiste, puoi crearla.","Double click to browse directories":"Fai doppio clic per sfogliare le directory","The data will be synchronized from":"I dati saranno sincronizzati da","the client folder":"la cartella client","the server folder":"la cartella server","(One-Way)":"(unidirezionale)","(Two-Way)":"(bidirezionale)",to:wa,"and from":"e da","All files created or modified in":"Tutti i file creati o modificati in","will be ignored and deleted":"saranno ignorati ed eliminati","In case of conflict,":"In caso di conflitto,","the most recent files will be kept":"verranno mantenuti i file pi\xF9 recenti","the client\u2019s files take precedence":"i file del client hanno la precedenza","the server\u2019s files take precedence":"i file del server hanno la precedenza","the files in":"i file in","will be preferred":"saranno preferiti","Loading...":"Caricamento...","No results":"Nessun risultato","Download ARM64 version":"Scarica la versione ARM64","Download Apple Silicon ARM64 version":"Scarica la versione Apple Silicon ARM64","Download tar.gz version":"Scarica la versione tar.gz",Repository:ya,public:Sa,local:Ca,remote:Aa,"System requirements":"Requisiti di sistema","Feature not enabled":"Funzionalit\xE0 non abilitata","Check the settings":"Controlla le impostazioni",Website:Na,Documentation:Ta,Versions:ka,Security:La,"Recovery code":"Codice di recupero","Use a recovery code":"Usa un codice di recupero","Authentication code":"Codice di autenticazione","Secret copied":"Segreto copiato","Recovery codes copied":"Codici di recupero copiati","Invalid code":"Codice non valido","Incorrect code or password":"Codice o password errati","Application Passwords":"Password delle applicazioni","Generate a new app password":"Genera una nuova password per l\u2019applicazione","Generated password":"Password generata","This password will only be shown once after it is generated":"Questa password verr\xE0 mostrata solo una volta dopo la generazione","Password name":"Nome della password",Manage:Da,"Manage app passwords":"Gestisci le password delle applicazioni","Password Authentication":"Autenticazione tramite password","Two-Factor Authentication":"Autenticazione a due fattori","Two-Factor Authentication is enabled":"L\u2019autenticazione a due fattori \xE8 abilitata","Two-Factor Authentication is disabled":"L\u2019autenticazione a due fattori \xE8 disabilitata","Scan this QR code using your authenticator app.":"Scansiona questo codice QR con la tua app di autenticazione.","(Such as FreeOTP, Proton Authenticator etc.)":"(Come FreeOTP, Proton Authenticator, ecc.)","Or enter this secret manually":"Oppure inserisci questo segreto manualmente","Valid with your TOTP code":"Conferma con il tuo codice TOTP","The secret has expired":"Il segreto \xE8 scaduto","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Conserva questi codici in un luogo sicuro. Ti permetteranno di accedere al tuo account se perdi l\u2019accesso alla tua autenticazione a due fattori.","These recovery codes are for one-time use only and will only be displayed here once.":"Questi codici di recupero sono monouso e verranno mostrati qui una sola volta.","Overwrite Existing File(s)":"Sovrascrivere il/i file esistente/i","Replace Existing File":"Sostituire il file esistente","Do you want to replace the existing file(s)?":"Vuoi sostituire il/i file esistente/i?",RenameFileToExisting:Ia,Save:Ea,"Line Wrap":"A capo automatico","Read-only":"Sola lettura","Read-write":"Lettura e scrittura","Save And Exit":"Salva e esci","Close Without Saving":"Chiudi senza salvare",Undo:Pa,Redo:_a,me:xa,"The file is locked by":"Il file \xE8 bloccato da",Unlock:Ra,Lock:Ua,Exclusive:Ma,"Send an unlock request":"Invia una richiesta di sblocco","sends you a request to unlock the file":"ti invia una richiesta per sbloccare il file","As the file owner, you can unlock the file or request the current lock owner to release it.":"In quanto proprietario del file, puoi sbloccare il file o chiedere all\u2019attuale proprietario del blocco di rilasciarlo.","The file is edited by":"Il file \xE8 in modifica da","A new update is available":"\xC8 disponibile un nuovo aggiornamento",Fullscreen:Fa,Dimensions:Ga,"Start Slideshow":"Avvia presentazione"};export{vo as Access,zo as Accessed,j as Account,Yo as Action,co as Active,q as Add,Qo as Added,O as Administration,V as Administrator,We as Anchored,A as Application,he as Applications,na as Asynchronously,o as Authentication,ve as Avatar,Oo as Browse,r as Cancel,No as Client,To as Clients,ii as Clipboard,s as Close,bo as Comment,wo as Comments,fi as Compress,ge as Configuration,t as Confirm,Zo as Conflict,ee as Connection,ie as Connections,Bo as Copied,Xe as Copy,to as Created,ro as Date,vi as Decompress,Ro as Delete,mo as Description,ia as Destination,Ga as Dimensions,Xo as Direction,da as Disable,ti as Display,Ta as Documentation,ba as Done,Ke as Download,$e as Edit,Ai as Elements,K as Email,ai as Empty,la as Enable,Ko as Error,L as Event,Ma as Exclusive,fo as Expiration,Zi as Expired,P as External,D as File,I as Files,l as Filter,jo as Filtered,c as Filters,Ti as Folder,Fa as Fullscreen,ue as Generate,x as Group,_ as Groups,ji as Guest,Ki as Guests,we as Home,Z as IP,me as Import,zi as Info,G as Isolated,be as Language,Qi as Link,Bi as Links,ni as List,Qe as Location,Ua as Lock,a as Login,Da as Manage,ce as Manager,pe as Managers,ao as Me,se as Member,le as Members,oa as Mode,wi as Modified,Je as Move,Ho as Moved,je as Name,Ni as New,va as Next,T as Notification,k as Notifications,He as Options,oo as Owner,n as Password,so as Path,io as Permissions,E as Personal,za as Previous,F as Private,ye as Recents,_a as Redo,oi as Refresh,ei as Remove,Wo as Removed,Ze as Rename,Ia as RenameFileToExisting,ya as Repository,Vo as Reset,X as Role,Ea as Save,Uo as Scheduler,p as Search,La as Security,u as See,$ as Seen,aa as Sequentially,Jo as Server,Be as Settings,Ne as Share,no as Shared,Ae as Shares,qo as Simulate,bi as Size,ea as Source,Ge as Space,qe as Spaces,J as Status,gi as Sync,hi as Synced,pi as Synchronization,ui as Synchronizations,mi as Synchronize,Si as Tasks,Ci as Text,Pi as Total,Go as Transfers,Ce as Trash,uo as Type,Pa as Undo,ho as Unknown,ne as Unlimited,Ra as Unlock,ze as Update,Y as User,W as Users,ka as Versions,Eo as View,go as Visibility,M as Visible,Na as Website,fa as Wizard,Do as absent,H as account,lo as active,Oe as anchored,N as application,fe as applications,Mo as async,ko as available,oe as available_space_is_low,ga as both,Lo as busy,So as commented,yo as comments,Fi as create,xo as day,_o as days,qa as default,Vi as delete,ci as delete_multiple_files,si as delete_one_file,Re as desktop_app_access,Ue as desktop_app_sync,Ei as directories,Ii as directory,ca as disabled,sa as enabled,$i as expired,ta as fast,Li as file,Di as files,ki as folder,R as group,U as groups,Ji as guest,Xi as guests,_e as guests_admin,Ui as item,Mi as items,Wi as link,Hi as links,Ca as local,Po as logout,de as manager,xa as me,te as member,re as members,yi as modified,Oi as modify,qi as move,b as nb_actions,v as nb_active_tasks,z as nb_elements,y as nb_messages,C as nb_notifications,Ri as nb_selections,h as nb_tasks,ha as never,Ao as no,_i as no_selection,m as no_task,eo as none,Io as offline,f as one_active_task,w as one_message,S as one_notification,xi as one_selection,g as one_task,ae as online,xe as personal_groups_admin,Le as personal_space,Sa as public,$o as recent,Se as recents,Aa as remote,ma as scheduler_unit_day,pa as scheduler_unit_hour,ua as scheduler_unit_minute,d as search,ra as secure,Fo as seq,Yi as share,ke as shared,Te as shares,Ee as shares_access,Pe as shares_admin,Ve as spaces,De as spaces_access,Ie as spaces_admin,po as suspended,di as synchronization,wa as to,li as trash_multiple_files,ri as trash_one_file,Ye as unanchored,Q as user,B as users,Fe as webdav,Me as webdav_access,Gi as write,Co as yes};
@@ -1 +0,0 @@
1
- import{j as N}from"./chunk-5GIWZKNS.js";import{k as F,l as I}from"./chunk-MYM43ENO.js";import"./chunk-25PWAXTJ.js";import"./chunk-S4UTSOPV.js";import"./chunk-4ZKAVMB4.js";import"./chunk-5HYSNQR4.js";import"./chunk-BVKDW5XO.js";import"./chunk-FCR5AEHR.js";import{b as _,e as P}from"./chunk-LFAQLJZK.js";import{Cd as A,Eb as p,Ed as M,Ia as h,Jd as T,Kd as E,Oa as i,Tb as g,Xb as v,Yb as k,Zb as y,ab as f,fd as S,he as U,ja as l,jd as L,kc as b,mc as w,od as C,og as R,pe as D,rb as n,sb as t,tb as o,ub as a}from"./chunk-BJARRIS6.js";import"./chunk-DM4NXKEP.js";import"./chunk-ZIJQRARU.js";import"./chunk-KAVP6UXH.js";var Q=(()=>{let r=class r{constructor(){this.locale=l(M),this.logoUrl=F,this.linkProtected=I,this.icons={faKey:U,faSignInAlt:D},this.password="",this.activatedRoute=l(_),this.linksService=l(N),this.activatedRoute.params.subscribe(c=>this.uuid=c.uuid)}validPassword(){this.password&&this.linksService.linkAuthentication(this.uuid,this.password).subscribe(()=>this.password="")}};r.\u0275fac=function(s){return new(s||r)},r.\u0275cmp=f({type:r,selectors:[["app-public-link-auth"]],decls:18,vars:10,consts:[[1,"link-page"],[1,"header"],["routerLink",""],["alt","","height","40",3,"src"],["alt","","height","96",1,"cursor-pointer",3,"click","src"],[1,"d-flex","mt-2","ms-auto","me-auto",2,"width","250px"],[1,"input-group"],[1,"input-group-text","bg-gray-light"],[3,"icon"],["autocomplete","off","type","password",1,"form-control","border-0",3,"ngModelChange","keyup.enter","ngModel","placeholder"],["type","button",1,"btn","btn-default","btn-custom","border-0",3,"click","disabled"],[1,"error-text","no-select"],[1,"hr"],["l10nTranslate","",1,"solve"]],template:function(s,e){s&1&&(t(0,"div",0)(1,"div",1)(2,"a",2),a(3,"img",3),o()(),t(4,"img",4),p("click",function(){return e.validPassword()}),o(),t(5,"div",5)(6,"div",6)(7,"span",7),a(8,"fa-icon",8),o(),t(9,"input",9),b(10,"translate"),y("ngModelChange",function(m){return k(e.password,m)||(e.password=m),m}),p("keyup.enter",function(){return e.validPassword()}),o(),t(11,"button",10),p("click",function(){return e.validPassword()}),a(12,"fa-icon",8),o()()(),t(13,"div",11),a(14,"span",12),t(15,"div")(16,"span",13),g(17,"This share is protected by a password"),o()()()()),s&2&&(i(3),n("src",e.logoUrl,h),i(),n("src",e.linkProtected,h),i(4),n("icon",e.icons.faKey),i(),v("ngModel",e.password),n("placeholder",w(10,7,"Password",e.locale.language)),i(2),n("disabled",!(e.password!=null&&e.password.length)),i(),n("icon",e.icons.faSignInAlt))},dependencies:[P,A,S,L,C,R,E,T],encapsulation:2});let d=r;return d})();export{Q as PublicLinkAuthComponent};
@@ -1 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",r="Login",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",f="{{ nba }} tarefa em andamento de {{ nb }}",g="{{ nba }} tarefas em andamento de {{ nb }}",b="{{nb}} item(ns)",y="{{nb}} a\xE7\xE3o(\xF5es)",w="{{ nb }} nova mensagem",x="{{ nb }} novas mensagens",S="{{ nb }} notifica\xE7\xE3o n\xE3o lida",A="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",C="Aplicativo",E="aplicativo",q="Notifica\xE7\xE3o",T="Notifica\xE7\xF5es",k="Evento",N="Arquivo",z="Arquivos",D="Pessoal",P="Externo",_="Grupos",L="Grupo",F="grupo",U="grupos",R="Vis\xEDvel",O="Privado",M="Isolado",V="Adicionar",G="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="Pouco espa\xE7o dispon\xEDvel ({{ 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",fe="aplicativos",ge="Avatar",be="Atualizar",ye="Idioma",we="In\xEDcio",xe="Recentes",Se="recentes",Ae="Lixeira",Ce="Compartilhamentos",Ee="Compartilhar",qe="compartilhamentos",Te="compartilhado",ke="Acesso ao espa\xE7o pessoal",Ne="Acesso aos espa\xE7os",ze="Administra\xE7\xE3o de espa\xE7os",De="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",_e="Administra\xE7\xE3o de convidados",Le="Administra\xE7\xE3o de grupos pessoais",Fe="Acesso pelo aplicativo desktop",Ue="Sincroniza\xE7\xE3o pelo aplicativo desktop",Re="Acesso WebDAV",Oe="WebDAV",Me="Espa\xE7o",Ve="Espa\xE7os",Ge="espa\xE7os",je="ancorou",Ie="desancorou",Ye="Local",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 permanentemente <b>{{arg}}</b>?",co="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",lo="Deseja excluir permanentemente estes <b>{{arg}} arquivos</b>?",uo="sincroniza\xE7\xE3o",po="Sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xF5es",ho="Sincronizar",vo="Sync",fo="Sincronizado",go="Comprimir",bo="Descomprimir",yo="Info",wo="Tamanho",xo="Modificado",So="modificado",Ao="Tarefas",Co="Texto",Eo="Elementos",qo="Novo",To="Pasta",ko="pasta",No="arquivo",zo="arquivos",Do="diret\xF3rio",Po="diret\xF3rios",_o="Total",Lo="nenhum item selecionado",Fo="{{ nb }} item selecionado",Uo="{{ nb }} itens selecionados",Ro="item",Oo="itens",Mo="criar",Vo="escrever",Go="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",fa="Expira\xE7\xE3o",ga="Acesso",ba="Acessado",ya="Comentar",wa="Coment\xE1rios",xa="coment\xE1rios",Sa="comentou",Aa="sim",Ca="n\xE3o",Ea="Cliente",qa="Clientes",Ta="dispon\xEDvel",ka="ocupado",Na="ausente",za="offline",Da="Ver",Pa="sair",_a="dias",La="dia",Fa="Excluir",Ua="Agendador",Ra="paralelo",Oa="sequencial",Ma="Transfer\xEAncias",Va="Simular",Ga="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="recentes",er="Origem",or="Destino",ar="Modo",rr="Sequencialmente",ir="Paralelamente",sr="r\xE1pido",nr="seguro",tr="ativado",dr="Ativar",cr="desativado",lr="Desativar",ur="horas",pr="minutos",mr="dias",hr="ambos",vr="nunca",fr="Assistente",gr="Pr\xF3ximo",br="Anterior",yr="Concluir",wr="para",xr="Reposit\xF3rio",Sr="p\xFAblico",Ar="local",Cr="remoto",Er="Site",qr="Documenta\xE7\xE3o",Tr="Vers\xF5es",kr="Seguran\xE7a",Nr="Gerenciar",zr="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",Dr="Salvar",Pr="Desfazer",_r="Refazer",Lr="eu",Fr="Desbloquear",Ur="Bloqueio",Rr="Exclusivo",Or="Tela cheia",Mr="Dimens\xF5es",Vr={"Sign-in to your account":"Entre na sua conta","Wrong login or password":"Nome de usu\xE1rio ou senha incorretos","Authentication service error":"Erro no servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o permitida","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:r,Password:i,"Login or Email":"Login ou e-mail","Login already used":"Login 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 pesquisar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para pesquisar grupos para adicionar","Type to search for users to add":"Digite para pesquisar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para pesquisar 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:f,nb_active_tasks:g,nb_elements:b,nb_actions:y,one_message:w,nb_messages:x,one_notification:S,nb_notifications:A,Application:C,application:E,"application and email":"aplicativo e e-mail",Notification:q,Notifications:T,Event:k,File:N,Files:z,"Personal files":"Arquivos pessoais","for personal files":"para 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:L,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:U,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro no 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, mas n\xE3o as propriedades do grupo.",Visible:R,Private:O,Isolated:M,"Select the parent group":"Selecione 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":"Voc\xEA saiu do grupo","The group was not left":"N\xE3o foi poss\xEDvel sair do grupo","will be left, you will no longer be a member of this group":"ser\xE1 deixado, 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.":"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 o veem e n\xE3o se veem entre si.",Add:V,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:G,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 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":"Status do espa\xE7o","Storage quota exceeded":"Cota de armazenamento excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem 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:fe,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Apenas o grupo ser\xE1 exclu\xEDdo; os membros n\xE3o far\xE3o mais parte dele.",Avatar:ge,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 foi 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 foi 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 foi poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o foi poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o foi poss\xEDvel abrir o documento","Unable to save document":"N\xE3o \xE9 poss\xEDvel salvar o documento",Home:we,Recents:xe,recents:Se,Trash:Ae,"trash bins":"lixeiras",Shares:Ce,Share:Ee,shares:qe,shared:Te,personal_space:ke,spaces_access:Ne,spaces_admin:ze,shares_access:De,shares_admin:Pe,guests_admin:_e,personal_groups_admin:Le,desktop_app_access:Fe,desktop_app_sync:Ue,webdav_access:Re,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Oe,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Me,Spaces:Ve,spaces:Ge,"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 pesquisar 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 via links","Via links":"Via links","Shared from":"Compartilhado por","share with you this":"compartilha com voc\xEA isto","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":"Voc\xEA agora 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":"Voc\xEA agora 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 local s\xE3o obrigat\xF3rios","Parent location already exists in files":"O local pai j\xE1 existe nos arquivos","Check the location":"Verifique o local","Location not found":"Local n\xE3o encontrado","Forbidden resource":"Local n\xE3o autorizado","Resource already exists":"O item j\xE1 existe","The location does not exist":"O local n\xE3o existe","The location is not readable":"O local n\xE3o \xE9 leg\xEDvel","The location is not writeable":"O local n\xE3o \xE9 grav\xE1vel","The location is a directory":"O local \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This share is protected by a password":"Este compartilhamento \xE9 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 tem permiss\xE3o para escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o tem permiss\xE3o para 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 possui esse 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:fo,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"A sincroniza\xE7\xE3o foi redefinida","Sync deleted":"A sincroniza\xE7\xE3o foi exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:go,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 levar mais tempo)","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:xo,modified:So,Tasks:Ao,"Download from URL":"Baixar de 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":"Rich Text Format","Forbidden characters":"Caracteres proibidos",Elements:Eo,"Malformed URL":"URL malformada",New:qo,Folder:To,folder:ko,file:No,files:zo,directory:Do,directories:Po,Total:_o,no_selection:Lo,one_selection:Fo,nb_selections:Uo,"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:Ro,items:Oo,create:Mo,write:Vo,move:Go,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 no 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 local externo","External location":"Local externo","Select a file":"Selecione 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":"Excedido o n\xFAmero m\xE1ximo de acessos permitidos ao link","Set a password":"Definir 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 foi poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o foi poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o foi poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o foi 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:fa,"Limit access":"Limitar acesso","Current access count":"Contagem atual de acessos",Access:ga,Accessed:ba,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:ya,Comments:wa,comments:xa,commented:Sa,"No recent comments":"Sem coment\xE1rios recentes","Write a comment ...":"Escreva um coment\xE1rio...",yes:Aa,no:Ca,Client:Ea,Clients:qa,available:Ta,busy:ka,absent:Na,offline:za,View:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Fa\xE7a login novamente",logout:Pa,days:_a,day:La,Delete:Fa,Scheduler:Ua,async:Ra,seq:Oa,Transfers:Ma,Simulate:Va,Reset:Ga,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":"apenas envio","download only":"apenas download",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":"Selecione uma pasta","The files containing":"Arquivos contendo","The files starting":"Arquivos que come\xE7am com","The files ending":"Arquivos que terminam com","Expert (Regexp)":"Avan\xE7ado (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:fr,Next:gr,Previous:br,Done:yr,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente ajudar\xE1 voc\xEA a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio 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 pode 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":"Nenhum resultado","Download ARM64 version":"Baixar vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar vers\xE3o tar.gz",Repository:xr,public:Sr,local:Ar,remote:Cr,"System requirements":"Requisitos do sistema","Feature not enabled":"Recurso n\xE3o habilitado","Check the settings":"Verifique as configura\xE7\xF5es",Website:Er,Documentation:qr,Versions:Tr,Security:kr,"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 nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 exibida apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:Nr,"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 QR code com seu app autenticador.","(Such as FreeOTP, Proton Authenticator etc.)":"(Por exemplo, FreeOTP, Proton Authenticator etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Validar 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 acessar sua conta caso voc\xEA perca o acesso \xE0 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 o arquivo existente","Do you want to replace the existing file(s)?":"Deseja substituir o(s) arquivo(s) existente(s)?",RenameFileToExisting:zr,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:Lr,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:Fr,Lock:Ur,Exclusive:Rr,"Send an unlock request":"Enviar uma solicita\xE7\xE3o de desbloqueio","sends you a request to unlock the file":"envia para voc\xEA uma solicita\xE7\xE3o 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 propriet\xE1rio atual do bloqueio que o libere.","The file is edited by":"O arquivo est\xE1 sendo editado por","A new update is available":"Uma nova atualiza\xE7\xE3o est\xE1 dispon\xEDvel",Fullscreen:Or,Dimensions:Mr,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides"};export{ga as Access,ba as Accessed,H as Account,Ia as Action,la as Active,V as Add,Ya as Added,j as Administration,G as Administrator,We as Anchored,C as Application,ve as Applications,ir as Asynchronously,a as Authentication,ge 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,go 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,k as Event,Rr as Exclusive,fa as Expiration,$o as Expired,P as External,N as File,z as Files,d as Filter,Ha as Filtered,c as Filters,To as Folder,Or as Fullscreen,pe as Generate,L 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,Ur as Lock,r as Login,Nr as Manage,ce as Manager,ue as Managers,ia as Me,te as Member,de as Members,ar as Mode,xo as Modified,Je as Move,Qa as Moved,He as Name,qo as New,gr as Next,q as Notification,T as Notifications,Qe as Options,ra as Owner,i as Password,da as Path,aa as Permissions,D as Personal,br as Previous,O as Private,xe as Recents,_r as Redo,ao as Refresh,eo as Remove,Wa as Removed,Ze as Rename,zr as RenameFileToExisting,xr as Repository,Ga as Reset,X as Role,Dr as Save,Ua as Scheduler,u as Search,kr 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,Va as Simulate,wo as Size,er as Source,Me as Space,Ve as Spaces,J as Status,vo as Sync,fo 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,Tr as Versions,Da as View,ha as Visibility,R as Visible,Er as Website,fr as Wizard,Na as absent,Q as account,ca as active,je as anchored,E as application,fe as applications,Ra as async,Ta as available,ae as available_space_is_low,hr as both,ka as busy,Sa as commented,xa as comments,Mo as create,La as day,_a as days,Vr as default,jo as delete,lo as delete_multiple_files,to as delete_one_file,Fe as desktop_app_access,Ue as desktop_app_sync,Po as directories,Do as directory,cr as disabled,tr as enabled,ea as expired,sr as fast,No as file,zo as files,ko as folder,F as group,U as groups,Xo as guest,Zo as guests,_e as guests_admin,Ro as item,Oo as items,Bo as link,Ho as links,Ar as local,Pa as logout,le as manager,Lr as me,se as member,ne as members,So as modified,Io as modify,Go as move,y as nb_actions,g as nb_active_tasks,b as nb_elements,x as nb_messages,A as nb_notifications,Uo as nb_selections,v as nb_tasks,vr as never,Ca as no,Lo as no_selection,m as no_task,oa as none,za as offline,f as one_active_task,w as one_message,S as one_notification,Fo as one_selection,h as one_task,re as online,Le as personal_groups_admin,ke as personal_space,Sr as public,$a as recent,Se 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,Oa as seq,Yo as share,Te as shared,qe as shares,De as shares_access,Pe as shares_admin,Ge as spaces,Ne as spaces_access,ze 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,Oe as webdav,Re as webdav_access,Vo as write,Aa as yes};
@@ -1,2 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var s="Authentification",i="Identifiant",o="Mot de passe",t="Confirmer",a="Annuler",n="Fermer",c="Filtrer",l="Filtres",u="rechercher",d="Rechercher",p="Voir",m="Aucune t\xE2che",h="{{ nb }} t\xE2che termin\xE9e",f="{{ nb }} t\xE2ches termin\xE9es",v="{{ nba }} t\xE2che en cours sur {{ nb }}",g="{{ nba }} t\xE2ches en cours sur {{ nb }}",b="{{nb}} \xE9l\xE9ment(s)",y="{{nb}} action(s)",S="{{ nb }} nouveau message",w="{{ nb }} nouveaux messages",C="{{ nb }} notification non lue",A="{{ nb }} notifications non lues",T="Application",x="application",L="Notification",E="Notifications",P="\xC9v\xE8nement",D="Fichier",z="Fichiers",N="Personnels",k="Externe",M="Groupes",j="Groupe",_="groupe",R="groupes",U="Visible",V="Priv\xE9",I="Isol\xE9",G="Ajouter",q="Administrateur",F="Administration",Y="Utilisateur",W="utilisateur",O="Utilisateurs",Q="utilisateurs",B="compte",H="Compte",K="Email",J="Status",X="R\xF4le",Z="IP",$="Vu",ee="Connexion",re="Connexions",se="Espace disponible faible ( {{ nb }}% )",ie="en ligne",oe="Illimit\xE9",te="membre",ae="membres",ne="Membre",ce="Membres",le="Manageur",ue="manageur",de="Manageurs",pe="G\xE9n\xE9rer",me="Importer",he="Configuration",fe="Applications",ve="applications",ge="Avatar",be="Mettre \xE0 jour",ye="Langue",Se="Accueil",we="R\xE9cents",Ce="recents",Ae="Corbeille",Te="Partages",xe="Partager",Le="partages",Ee="partag\xE9",Pe="Acc\xE8s \xE0 l'espace personnel",De="Acc\xE8s aux espaces",ze="Administration des espaces",Ne="Acc\xE8s aux partages",ke="Administration des partages",Me="Administration des invit\xE9s",je="Administration des groupes personnels",_e="Acc\xE8s depuis l'application de bureau",Re="Synchronisation depuis l'application de bureau",Ue="Acc\xE8s WebDAV",Ve="WebDAV",Ie="Espace",Ge="Espaces",qe="espaces",Fe="a ancr\xE9",Ye="a d\xE9sancr\xE9",We="Emplacement",Oe="Ancr\xE9",Qe="Param\xE8tres",Be="Options",He="Nom",Ke="T\xE9l\xE9charger",Je="D\xE9placer",Xe="Copier",Ze="Renommer",$e="Modifier",er="Supprimer",rr="Presse-papiers",sr="Rafra\xEEchir",ir="Vider",or="Liste",tr="Affichage",ar="Souhaitez-vous d\xE9placer <b>{{arg}}</b> dans la corbeille ?",nr="Souhaitez-vous supprimer <b>{{arg}}</b> d\xE9finitivement ?",cr="Souhaitez-vous d\xE9placer ces <b>{{arg}} fichiers</b> dans la corbeille ?",lr="Souhaitez-vous supprimer ces <b>{{arg}} fichiers</b> d\xE9finitivement ?",ur="synchronisation",dr="Synchronisation",pr="Synchronisations",mr="Synchroniser",hr="Sync",fr="Synchronis\xE9",vr="Compresser",gr="D\xE9compresser",br="Info",yr="Taille",Sr="Modifi\xE9",wr="modifi\xE9",Cr="T\xE2ches",Ar="Texte",Tr="\xC9l\xE9ments",xr="Nouveau",Lr="Dossier",Er="dossier",Pr="fichier",Dr="fichiers",zr="r\xE9pertoire",Nr="r\xE9pertoires",kr="Total",Mr="aucun \xE9l\xE9ment s\xE9lectionn\xE9",jr="{{ nb }} \xE9l\xE9ment s\xE9lectionn\xE9",_r="{{ nb }} \xE9l\xE9ments s\xE9lectionn\xE9s",Rr="\xE9l\xE9ment",Ur="\xE9l\xE9ments",Vr="cr\xE9er",Ir="\xE9crire",Gr="d\xE9placer",qr="supprimer",Fr="modifier",Yr="partage",Wr="Lien",Or="lien",Qr="Liens",Br="liens",Hr="Invit\xE9",Kr="Invit\xE9s",Jr="invit\xE9",Xr="invit\xE9s",Zr="Expir\xE9",$r="expir\xE9",es="aucun",rs="Permissions",ss="Propri\xE9taire",is="Moi",os="Partag\xE9",ts="Cr\xE9\xE9",as="Date",ns="Chemin",cs="actif",ls="Actif",us="suspendu",ds="Type",ps="Description",ms="Visibilit\xE9",hs="Inconnu",fs="Expiration",vs="Acc\xE8s",gs="Acc\xE9d\xE9",bs="Commenter",ys="Commentaires",Ss="commentaires",ws="a comment\xE9",Cs="oui",As="non",Ts="Client",xs="Clients",Ls="disponible",Es="occup\xE9",Ps="absent",Ds="hors ligne",zs="Voir",Ns="d\xE9connexion",ks="jours",Ms="jour",js="Supprimer",_s="Planificateur",Rs="parall\xE8le",Us="s\xE9quentiel",Vs="Transferts",Is="Simuler",Gs="R\xE9initialiser",qs="Parcourir",Fs="Action",Ys="Ajout\xE9",Ws="Supprim\xE9",Os="Copi\xE9",Qs="D\xE9plac\xE9",Bs="Filtr\xE9",Hs="Erreur",Ks="Serveur",Js="Direction",Xs="Conflit",Zs="r\xE9cent",$s="Source",ei="Destination",ri="Mode",si="S\xE9quentiellement",ii="Parall\xE8lement",oi="rapide",ti="s\xE9curis\xE9",ai="activ\xE9",ni="Activer",ci="d\xE9sactiv\xE9",li="D\xE9sactiver",ui="heures",di="minutes",pi="jours",mi="les deux",hi="jamais",fi="Assistant",vi="Suivant",gi="Pr\xE9c\xE9dent",bi="Termin\xE9",yi="vers",Si="D\xE9p\xF4t",wi="public",Ci="local",Ai="distant",Ti="Site Web",xi="Documentation",Li="Versions",Ei="S\xE9curit\xE9",Pi="G\xE9rer",Di="Souhaitez-vous renommer <b>{{ old }}</b> en <b>{{ new }}</b> ?",zi="Enregistrer",Ni="Annuler",ki="R\xE9tablir",Mi="moi",ji="D\xE9verrouiller",_i="Verrou",Ri="Exclusif",Ui="Plein \xE9cran",Vi="Dimensions",Ii={"Sign-in to your account":"Connectez-vous \xE0 votre compte","Wrong login or password":"Identifiant ou mot de passe incorrect","Authentication service error":"Erreur du service d\u2019authentification","Account locked":"Compte verrouill\xE9","Account is not allowed":"Compte non autoris\xE9","Account matching error":"Erreur de correspondance de compte",Authentication:s,"Sign in":"Se connecter",Login:i,Password:o,"Login or Email":"Identifiant ou Email","Login already used":"Identifiant d\xE9j\xE0 utilis\xE9","You are already logged in":"Vous \xEAtes d\xE9j\xE0 connect\xE9","Name already used":"Nom d\xE9j\xE0 utilis\xE9","Token has expired":"Le token a expir\xE9",Confirm:t,Cancel:a,Close:n,"Server connection error":"Erreur de connexion au serveur",Filter:c,Filters:l,search:u,Search:d,"Search for content":"Rechercher du contenu","Search for files":"Rechercher des fichiers","Full-text search":"Recherche full-text","Full-text search is disabled":"La recherche full-text est d\xE9sactiv\xE9e","Type to search for users or groups to add":"Tapez pour rechercher des utilisateurs ou des groupes \xE0 ajouter","Type to search for groups to add":"Tapez pour rechercher des groupes \xE0 ajouter","Type to search for users to add":"Tapez pour rechercher des utilisateurs \xE0 ajouter","Type to search for managers to add":"Tapez pour rechercher des manageurs \xE0 ajouter","Member since":"Membre depuis","Windows Manager":"Gestionnaire de fen\xEAtres","Mark as read":"Marquer comme lu",See:p,no_task:m,one_task:h,nb_tasks:f,one_active_task:v,nb_active_tasks:g,nb_elements:b,nb_actions:y,one_message:S,nb_messages:w,one_notification:C,nb_notifications:A,Application:T,application:x,"application and email":"application et email",Notification:L,Notifications:E,Event:P,File:D,Files:z,"Personal files":"Fichiers personnels","for personal files":"pour les fichiers personnels",Personal:N,External:k,"Share status":"\xC9tat du partage","Share description":"Description du partage","No recent files":"Aucun fichier r\xE9cent",Groups:M,Group:j,group:_,"New personal group":"Nouveau groupe personnel","Edit personal group":"Modifier le groupe personnel","personal group":"groupe personnel","Personal group":"Groupe personnel","Personal groups":"Groupes personnels",groups:R,"Parent group":"Groupe parent","Group updated":"Groupe mis \xE0 jour","Group created":"Groupe cr\xE9\xE9","Group not found":"Groupe non trouv\xE9","Group error":"Groupe erreur","Set as group manager":"D\xE9finir comme manageur de groupe","As a manager, the user will be able to manage the group and its members.":"En tant que manageur, l'utilisateur pourra g\xE9rer le groupe et ses membres.","As a manager, the user will be able to manage group members but not group properties.":`En tant que manageur, l'utilisateur pourra g\xE9rer les membres du groupe mais pas les propri\xE9t\xE9s du groupe.
2
- `,Visible:U,Private:V,Isolated:I,"Select the parent group":"S\xE9lectionner le groupe parent","from the group":"du groupe","New group":"Nouveau groupe","Edit group":"Modifier le groupe","Leave group":"Quitter le groupe","Delete group":"Supprimer le groupe","Remove from group":"Supprimer du groupe","Group must have at least one manager":"Le groupe doit avoir au moins un manager","The group was left":"Le groupe a \xE9t\xE9 quitt\xE9","The group was not left":"Le groupe n'a pas \xE9t\xE9 quitt\xE9","will be left, you will no longer be a member of this group":"sera quitt\xE9, vous ne serez plus membre de ce groupe","All users can see this group.":"Tous les utilisateurs peuvent voir ce groupe.","Users who are not members of this group cannot see it.":"Les utilisateurs qui ne sont pas membres de ce groupe ne peuvent pas le voir.","The group is not visible, its members cannot see it and cannot see each other.":"Le groupe n'est pas visible, ses membres ne peuvent pas le voir et ne peuvent pas se voir entre eux.",Add:G,"Add members":"Ajouter des membres","See members":"Voir les membres",Administrator:q,Administration:F,User:Y,user:W,Users:O,users:Q,"New user":"Nouvel utilisateur",account:B,Account:H,"Account status":"Status du compte",Email:K,"Email already used":"Email d\xE9j\xE0 utilis\xE9","First name":"Pr\xE9nom","Last name":"Nom","Full name":"Pr\xE9nom & Nom",Status:J,Role:X,IP:Z,"IP Addresses":"Adresses IP",Seen:$,Connection:ee,Connections:re,"Confirm deletion":"Confirmer la suppression","Confirm permanent deletion of data":"Confirmer la suppression d\xE9finitive des donn\xE9es","Space and data will be deleted in":"L'espace et les donn\xE9es seront supprim\xE9s dans","Space is disabled":"L'espace est d\xE9sactiv\xE9","Storage Space":"Espace de stockage","Storage Quota":"Quota de stockage","Storage Usage":"Utilisation du stockage","Space status":"\xC9tat de l'espace","Storage quota exceeded":"Le quota de stockage est d\xE9pass\xE9","Storage quota will be exceeded":"Le quota de stockage sera d\xE9pass\xE9","No more space available":"Plus d'espace disponible",available_space_is_low:se,online:ie,"Online users":"Utilisateurs en ligne",Unlimited:oe,member:te,members:ae,Member:ne,Members:ce,Manager:le,manager:ue,Managers:de,"At least one manager is required":"Au moins un manager est requis",Generate:pe,Import:me,Configuration:he,Applications:fe,applications:ve,"Permissions inherited from groups":"Permissions h\xE9rit\xE9es des groupes","Only the group will be deleted, the members will no longer be part of it.":"Seul le groupe sera supprim\xE9, les membres n'en feront plus partie.",Avatar:ge,Update:be,"current password":"mot de passe actuel","new password":"nouveau mot de passe","Change me !":"Changez moi !","Current password missing !":"Mot de passe actuel manquant !","New password missing !":"Nouveau mot de passe manquant !","New password must have 8 characters minimum":"Nouveau mot de passe doit contenir 8 caract\xE8res","Current password does not match":"Mot de passe actuel ne correspond pas","Password has been updated":"Mot de passe mis \xE0 jour","Unable to update password":"Impossible de mettre \xE0 jour le mot de passe","Bad password":"Mauvais mot de passe","too many login attempts":"trop de tentatives de connexion",Language:ye,"Language updated":"Langue mise \xE0 jour","Unable to update language":"Impossible de mettre \xE0 jour la langue","Notification preference updated":"Pr\xE9f\xE9rence de notification mise \xE0 jour","Full-text search preference updated":"Pr\xE9f\xE9rence de recherche full-text mise \xE0 jour","Unable to update notification preference":"Impossible de mettre \xE0 jour la pr\xE9f\xE9rence de notification","Unable to update full-text search preference":"Impossible de mettre \xE0 jour la pr\xE9f\xE9rence de recherche full-text","Unable to open document":"Impossible d'ouvrir le document","Unable to save document":"Impossible d\u2019enregistrer le document",Home:Se,Recents:we,recents:Ce,Trash:Ae,"trash bins":"corbeilles",Shares:Te,Share:xe,shares:Le,shared:Ee,personal_space:Pe,spaces_access:De,spaces_admin:ze,shares_access:Ne,shares_admin:ke,guests_admin:Me,personal_groups_admin:je,desktop_app_access:_e,desktop_app_sync:Re,webdav_access:Ue,"Create share":"Cr\xE9er le partage","Edit share":"Modifier le partage","Delete share":"Supprimer le partage","Child shares":"Partages enfants",webdav:Ve,"Share is disabled":"Le partage est d\xE9sactiv\xE9",Space:Ie,Spaces:Ge,spaces:qe,"Space name":"Nom de l'espace","New space":"Nouvel espace","Create a new space":"Cr\xE9er un nouvel espace","Create space":"Cr\xE9er l'espace","Edit space":"Modifier l'espace","Delete space":"Supprimer l'espace","Create a new share":"Cr\xE9er un nouveau partage","Type to search for space to select":"Tapez pour rechercher l'espace \xE0 s\xE9lectionner","Anchor to a space":"Ancrer \xE0 un espace","Anchor files to a space":"Ancrer les fichiers dans un espace","You have been invited to join this space":"Vous avez \xE9t\xE9 invit\xE9 \xE0 rejoindre cet espace","You have been invited to join this share":"Vous avez \xE9t\xE9 invit\xE9 \xE0 rejoindre ce partage","Shared with others":"Partag\xE9 avec d'autres","With others":"Avec d'autres","Shared with me":"Partag\xE9 avec moi","With me":"Avec moi","Shared via links":"Partag\xE9 via liens","Via links":"Via liens","Shared from":"Partag\xE9 depuis","share with you this":"partage avec vous ce","shared with you":"a partag\xE9 avec vous","no longer share with you":"ne partage plus avec vous","You now have access to the space":"Vous avez d\xE9sormais acc\xE8s \xE0 l'espace","You no longer have access to the space":"Vous n'avez plus acc\xE8s \xE0 l'espace","This space has been permanently deleted":"Cet espace a \xE9t\xE9 d\xE9finitivement supprim\xE9","You now have access to the share":"Vous avez d\xE9sormais acc\xE8s au partage","You no longer have access to the share":"Vous n'avez plus acc\xE8s au partage","You are no longer a member of the parent share, your child share has been deleted":"Vous n'\xEAtes plus membre du partage parent, votre partage enfant a \xE9t\xE9 supprim\xE9",anchored:Fe,unanchored:Ye,"Share not found":"Partage non trouv\xE9","Go to":"Aller",Location:We,"Name and location are required":"Nom et emplacement sont requis","Parent location already exists in files":"L'emplacement parent existe d\xE9j\xE0 dans les fichiers","Check the location":"V\xE9rifier l'emplacement","Location not found":"Emplacement non trouv\xE9","Forbidden resource":"Emplacement non autoris\xE9","Resource already exists":"L'\xE9l\xE9ment existe d\xE9j\xE0","The location does not exist":"L'emplacement n'existe pas","The location is not readable":"L'emplacement n'est pas accessible en lecture","The location is not writeable":"L'emplacement n'est pas accessible en \xE9criture","The location is a directory":"L'emplacement est un r\xE9pertoire","The file is locked":"Le fichier est verrouill\xE9","This share is protected by a password":"Ce partage est prot\xE9g\xE9 par un mot de passe","You do not have share permission":"Vous n'avez pas la permission de partager","You can not share a space":"Vous ne pouvez pas partager un espace","You can not remove an anchored file":"vous ne pouvez pas supprimer un fichier ancr\xE9","You are not allowed to write here":"Vous n'\xEAtes pas autoris\xE9 \xE0 \xE9crire ici","You are not allowed to do this action":"Vous n'\xEAtes pas autoris\xE9 \xE0 effectuer cette action","You can not move an anchored file":"Vous ne pouvez pas d\xE9placer un fichier ancr\xE9","You can not move a locked file":"Vous ne pouvez pas d\xE9placer un fichier verrouill\xE9",Anchored:Oe,"Anchored by":"Ancr\xE9 par","Manage my anchored files":"G\xE9rer mes fichiers ancr\xE9s","You have no files anchored on this space":"Vous n'avez pas de fichiers ancr\xE9s sur cet espace","An anchored file already has this name":"Un fichier ancr\xE9 porte d\xE9j\xE0 ce nom",Settings:Qe,Options:Be,Name:He,Download:Ke,"Download done":"T\xE9l\xE9chargement effectu\xE9","Download failed":"T\xE9l\xE9chargement \xE9chou\xE9","Upload done":"Envoi termin\xE9","Upload failed":"Envoi \xE9chou\xE9","Copy/Move":"Copier/D\xE9placer",Move:Je,"Move done":"D\xE9placement effectu\xE9","Move failed":"D\xE9placement \xE9chou\xE9","Deletion done":"Suppression effectu\xE9e","Deletion failed":"Suppression \xE9chou\xE9e","Creation failed":"Cr\xE9ation \xE9chou\xE9e",Copy:Xe,"Copy done":"Copie effectu\xE9e","Copy failed":"Copie \xE9chou\xE9e","Copy-Paste":"Copier-Coller","Cut-Paste":"Couper-Coller",Rename:Ze,Edit:$e,"Share inside":"Partager \xE0 l'int\xE9rieur","Share outside":"Partager \xE0 l'ext\xE9rieur",Remove:er,Clipboard:rr,"Send to Clipboard":"Envoyer au Presse-papiers","will be removed":"sera supprim\xE9",Refresh:sr,Empty:ir,List:or,Display:tr,"Sort by":"Trier par",trash_one_file:ar,delete_one_file:nr,trash_multiple_files:cr,delete_multiple_files:lr,"Moving to trash":"D\xE9placement en cours dans la corbeille","Permanent deletion":"Suppression d\xE9finitive","Would you like to empty the trash ?":"Souhaitez-vous vider la corbeille ?","All items will be permanently deleted":"Tous les \xE9l\xE9ments seront supprim\xE9s d\xE9finitivement","Actions will be performed in the current folder":"Les actions seront r\xE9alis\xE9es dans le dossier actuel","The client will no longer have permission to access your account and will no longer be able to synchronize.":"Le client n'aura plus l'autorisation d'acc\xE9der \xE0 votre compte et ne pourra plus synchroniser.","The access expires":"L'acc\xE8s expire","The access has expired":"L'acc\xE8s a expir\xE9","Never expires":"N\u2019expire jamais",synchronization:ur,Synchronization:dr,Synchronizations:pr,Synchronize:mr,Sync:hr,"Stop synchronization":"Arr\xEAter la synchronisation","Synchronize all":"Synchroniser tout","Stop synchronizations":"Arr\xEAter les synchronisations",Synced:fr,"Sync already exists":"La synchronisation existe d\xE9j\xE0","Sync was reset":"Synchronisation r\xE9initialis\xE9e","Sync deleted":"Synchronisation supprim\xE9e","This client":"Ce client","You are no longer synchronizing":"Vous ne synchronisez plus",Compress:vr,Decompress:gr,"Compress and Download":"Compresser et T\xE9l\xE9charger","Compress and Save":"Compresser et Enregistrer","Enable compression":"Activer compression","Compression done":"Compression effectu\xE9e","Compression failed":"Compression \xE9chou\xE9e","Decompression done":"D\xE9compression effectu\xE9e","Decompression failed":"D\xE9compression \xE9chou\xE9e","(this may take longer)":"(cela peut prendre plus de temps)","Save in the current directory":"Enregistrer dans le r\xE9pertoire actuel","This name is already used":"Ce nom est d\xE9j\xE0 utilis\xE9",Info:br,Size:yr,Modified:Sr,modified:wr,Tasks:Cr,"Download from URL":"T\xE9l\xE9charger depuis une URL","Upload files":"Envoyer des fichiers","Upload folders":"Envoyer des dossiers","Folder name":"Nom du dossier","New folder":"Nouveau dossier","Document name":"Nom du document","New document":"Nouveau document","File name":"Nom du fichier","File permissions":"Permissions du fichier",Text:Ar,"Rich Text Format":"Texte Enrichi","Forbidden characters":"Caract\xE8res interdits",Elements:Tr,"Malformed URL":"URL mal form\xE9e",New:xr,Folder:Lr,folder:Er,file:Pr,files:Dr,directory:zr,directories:Nr,Total:kr,no_selection:Mr,one_selection:jr,nb_selections:_r,"Archive name":"Nom de l'archive","Drag and drop your files here":"Glisser d\xE9poser vos fichiers ici","The destination already exists":"La destination existe d\xE9j\xE0","This item is already selected":"Ce fichier est d\xE9j\xE0 s\xE9lectionn\xE9","Parent item is already selected":"L'\xE9l\xE9ment parent est d\xE9j\xE0 s\xE9lectionn\xE9","This file contains binary data that can not be read":'Ce fichier contient des donn\xE9es binaires qu"il n"est pas possible de lire',"Navigation Tree":"Arborescence de navigation",item:Rr,items:Ur,create:Vr,write:Ir,move:Gr,delete:qr,modify:Fr,"Delete user":"Supprimer l'utilisateur","Delete all user files":"Supprimer tous les fichiers de l'utilisateur",share:Yr,"Share name":"Nom du partage","New share":"Nouveau partage","New share link":"Nouveau lien de partage","New link":"Nouveau lien","Edit children shares":"Modifier les partages enfants",Link:Wr,link:Or,Links:Qr,links:Br,"Link copied":"Lien copi\xE9","Link created":"Lien cr\xE9\xE9","Link deleted":"Lien supprim\xE9","Link error":"Erreur lien","Copy link":"Copier le lien","Edit link":"Modifier le lien","Guest Link":"Lien Invit\xE9","Guest name":"Nom de l'invit\xE9","Guest email":"Email de l'invit\xE9","Guest language":"Langue de l'invit\xE9",Guest:Hr,Guests:Kr,guest:Jr,guests:Xr,"New guest":"Nouvel invit\xE9","Edit guest":"Modifier l'invit\xE9","Guest created":"Invit\xE9 cr\xE9\xE9","Guest deleted":"Invit\xE9 supprim\xE9","Guest updated":"Invit\xE9 mis \xE0 jour","Guest error":"Invit\xE9 erreur","Add an external location":"Ajouter un emplacement externe","External location":"Emplacement externe","Select a file":"S\xE9lectionner un fichier","The link is expired":"Le lien est expir\xE9","The link is disabled":"Le lien est d\xE9sactiv\xE9","The link was not found":"Le lien n'a pas \xE9t\xE9 trouv\xE9",Expired:Zr,expired:$r,none:es,"The maximum number of access allowed to the link is exceeded":"Le nombre maximum d'acc\xE8s autoris\xE9 au lien est d\xE9pass\xE9","Set a password":"D\xE9finir un mot de passe","Enter your password":"Entrez votre mot de passe",Permissions:rs,"No permissions":"Pas de permissions",Owner:ss,Me:is,Shared:os,Created:ts,"Created & Modified":"Cr\xE9\xE9 & Modifi\xE9","Creation date":"Date de cr\xE9ation","Modification date":"Date de modification","Deactivation date":"Date de d\xE9sactivation",Date:as,Path:ns,active:cs,Active:ls,suspended:us,"Unable to rename user space":"Impossible de renommer l'espace utilisateur","Unable to delete user space":"Impossible de supprimer l'espace utilisateur","Unable to update user":"Impossible de mettre \xE0 jour l'utilisateur","Unable to update user groups":"Impossible de mettre \xE0 jour les groupes de l'utilisateur","User created":"Utilisateur cr\xE9\xE9","User updated":"Utilisateur mis \xE0 jour","User not found":"Utilisateur non trouv\xE9","Edit user":"Modifier l'utilisateur","Impersonate identity":"Emprunter l'identiti\xE9",Type:ds,Description:ps,Visibility:ms,"Unknown error !":"Erreur inconnue !",Unknown:hs,Expiration:fs,"Limit access":"Limiter les acc\xE8s","Current access count":"Nombre d'acc\xE8s actuel",Access:vs,Accessed:gs,"Last access":"Dernier acc\xE8s","Last accesses":"Derniers acc\xE8s",Comment:bs,Comments:ys,comments:Ss,commented:ws,"No recent comments":"Pas de commentaire r\xE9cent","Write a comment ...":"Ecrire un commentaire ...",yes:Cs,no:As,Client:Ts,Clients:xs,available:Ls,busy:Es,absent:Ps,offline:Ds,View:zs,"Session has expired":"La session a expir\xE9","Please sign in":"Veuillez vous reconnecter",logout:Ns,days:ks,day:Ms,Delete:js,Scheduler:_s,async:Rs,seq:Us,Transfers:Vs,Simulate:Is,Reset:Gs,Browse:qs,Action:Fs,Added:Ys,Removed:Ws,Copied:Os,Moved:Qs,Filtered:Bs,Error:Hs,Server:Ks,Direction:Js,Conflict:Xs,"Show filtered files":"Afficher les fichiers filtr\xE9s",recent:Zs,Source:$s,Destination:ei,Mode:ri,Sequentially:si,Asynchronously:ii,fast:oi,secure:ti,enabled:ai,Enable:ni,disabled:ci,Disable:li,scheduler_unit_hour:ui,scheduler_unit_minute:di,scheduler_unit_day:pi,"You must have permission to modify the server folder to choose a different sync mode":"Vous devez avoir la permission de modifier le dossier du serveur pour choisir une autre mode de synchronisation","upload only":"envoyer seulement","download only":"t\xE9l\xE9charger seulement",both:mi,never:hi,"Clear events":"Effacer les \xE9v\xE8nements","Events from":"Les \xE9v\xE8nements de","All syncs":"Toutes les synchronisations","All events":"Tous les \xE9v\xE8nements","will be cleared":"seront effac\xE9s","No differences":"Pas de diff\xE9rences","Select a folder":"S\xE9lectionner un dossier","The files containing":"Les fichiers contenant","The files starting":"Les fichiers commen\xE7ant","The files ending":"Les fichiers terminant","Expert (Regexp)":"Expert (Regexp)","click on the browse button":"cliquez sur le bouton parcourir","with a name or pattern":"par un nom ou un motif","with the extension ('.mp3', '.avi', '.mov' ...)":"par l'extension ('.mp3', '.avi', '.mov' ...)",Wizard:fi,Next:vi,Previous:gi,Done:bi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Cet assistant vous aidera \xE0 synchroniser un r\xE9pertoire de votre ordinateur avec un r\xE9pertoire Sync-in.","To begin, select a folder on your computer.":"Pour commencer, s\xE9lectionnez un dossier sur votre ordinateur.",'You can drag the folder into the area below or click on the "Select" button.':'Vous pouvez faire glisser le dossier dans la zone ci-dessous ou cliquer sur le bouton "S\xE9l\xE9ctionner".',"Drop folder here":"D\xE9poser le dossier ici","This directory is already synced":"Ce r\xE9pertoire est d\xE9j\xE0 synchronis\xE9","The parent directory is already synced":"Le dossier parent est d\xE9j\xE0 synchronis\xE9","This directory is not accessible":"Ce r\xE9pertoire n'est pas accessible","This directory is read-only, you will not be able to modify it":"Ce r\xE9pertoire est en lecture seule, vous ne pourrez pas le modifier","Please select the server directory to sync, if it doesn't exist you can create it.":"Veuillez s\xE9lectionner le r\xE9pertoire du serveur \xE0 synchroniser, s'il n'existe pas, vous pourrez le cr\xE9er.","Double click to browse directories":"Double cliquez pour parcourir les r\xE9pertoires","The data will be synchronized from":"Les donn\xE9es seront synchronis\xE9es depuis","the client folder":"le dossier client","the server folder":"le dossier serveur","(One-Way)":"(unidirectionnel)","(Two-Way)":"(bidirectionnel)",to:yi,"and from":"et depuis","All files created or modified in":"Tous les fichiers cr\xE9\xE9s ou modifi\xE9s dans","will be ignored and deleted":"seront ignor\xE9s et supprim\xE9s","In case of conflict,":"En cas de conflit,","the most recent files will be kept":"les fichiers les plus r\xE9cents seront conserv\xE9s","the client\u2019s files take precedence":"les fichiers du client ont la priorit\xE9","the server\u2019s files take precedence":"les fichiers du serveur ont la priorit\xE9","the files in":"les fichiers de","will be preferred":"seront pr\xE9f\xE9r\xE9s","Loading...":"Chargement...","No results":"Pas de r\xE9sultats","Download ARM64 version":"T\xE9l\xE9charger la version ARM64","Download Apple Silicon ARM64 version":"T\xE9l\xE9charger la version Apple Silicon ARM64","Download tar.gz version":"T\xE9l\xE9charger la version tar.gz",Repository:Si,public:wi,local:Ci,remote:Ai,"System requirements":"Configuration requise","Feature not enabled":"Fonctionnalit\xE9 non activ\xE9e","Check the settings":"V\xE9rifiez les param\xE8tres",Website:Ti,Documentation:xi,Versions:Li,Security:Ei,"Recovery code":"Code de r\xE9cup\xE9ration","Use a recovery code":"Utiliser un code de r\xE9cup\xE9ration","Authentication code":"Code d'authentification","Secret copied":"Secret copi\xE9","Recovery codes copied":"Codes de r\xE9cup\xE9ration copi\xE9s","Invalid code":"Code invalide","Incorrect code or password":"Code ou mot de passe incorrect","Application Passwords":"Mots de passe d'application","Generate a new app password":"G\xE9n\xE9rer un nouveau mot de passe d\u2019application","Generated password":"Mot de passe g\xE9n\xE9r\xE9","This password will only be shown once after it is generated":"Ce mot de passe ne sera affich\xE9 qu\u2019une seule fois apr\xE8s sa g\xE9n\xE9ration","Password name":"Nom du mot de passe",Manage:Pi,"Manage app passwords":"G\xE9rer les mots de passe d\u2019application","Password Authentication":"Authentification par mot de passe","Two-Factor Authentication":"Authentification \xE0 deux facteurs","Two-Factor Authentication is enabled":"L\u2019authentification \xE0 deux facteurs est activ\xE9e","Two-Factor Authentication is disabled":"L\u2019authentification \xE0 deux facteurs est d\xE9sactiv\xE9e","Scan this QR code using your authenticator app.":"Scannez ce code QR avec votre application d\u2019authentification.","(Such as FreeOTP, Proton Authenticator etc.)":"(Par ex. FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"Ou entrez ce secret manuellement","Valid with your TOTP code":"Validez avec votre code TOTP","The secret has expired":"Le secret a expir\xE9","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Conservez ces codes en lieu s\xFBr. Ils vous permettront d\u2019acc\xE9der \xE0 votre compte si vous perdez l\u2019acc\xE8s \xE0 votre authentification \xE0 deux facteurs.","These recovery codes are for one-time use only and will only be displayed here once.":"Ces codes de r\xE9cup\xE9ration sont \xE0 usage unique et ne seront affich\xE9s qu\u2019une seule fois ici.","Overwrite Existing File(s)":"\xC9craser le(s) fichier(s) existant(s)","Replace Existing File":"Remplacer le fichier existant","Do you want to replace the existing file(s)?":"Voulez-vous remplacer le(s) fichier(s) existant(s) ?",RenameFileToExisting:Di,Save:zi,"Line Wrap":"Retour \xE0 la ligne automatique","Read-only":"Lecture seule","Read-write":"Lecture-\xE9criture","Save And Exit":"Enregistrer et quitter","Close Without Saving":"Fermer sans enregistrer",Undo:Ni,Redo:ki,me:Mi,"The file is locked by":"Le fichier est verrouill\xE9 par",Unlock:ji,Lock:_i,Exclusive:Ri,"Send an unlock request":"Envoyer une demande de d\xE9verrouillage","sends you a request to unlock the file":"vous envoie une demande de d\xE9verrouillage du fichier","As the file owner, you can unlock the file or request the current lock owner to release it.":"En tant que propri\xE9taire du fichier, vous pouvez d\xE9verrouiller le fichier ou demander au propri\xE9taire actuel du verrou de le lib\xE9rer.","The file is edited by":"Le fichier est en cours d\u2019\xE9dition par","A new update is available":"Une nouvelle mise \xE0 jour est disponible",Fullscreen:Ui,Dimensions:Vi,"Start Slideshow":"D\xE9marrer le diaporama"};export{vs as Access,gs as Accessed,H as Account,Fs as Action,ls as Active,G as Add,Ys as Added,F as Administration,q as Administrator,Oe as Anchored,T as Application,fe as Applications,ii as Asynchronously,s as Authentication,ge as Avatar,qs as Browse,a as Cancel,Ts as Client,xs as Clients,rr as Clipboard,n as Close,bs as Comment,ys as Comments,vr as Compress,he as Configuration,t as Confirm,Xs as Conflict,ee as Connection,re as Connections,Os as Copied,Xe as Copy,ts as Created,as as Date,gr as Decompress,js as Delete,ps as Description,ei as Destination,Vi as Dimensions,Js as Direction,li as Disable,tr as Display,xi as Documentation,bi as Done,Ke as Download,$e as Edit,Tr as Elements,K as Email,ir as Empty,ni as Enable,Hs as Error,P as Event,Ri as Exclusive,fs as Expiration,Zr as Expired,k as External,D as File,z as Files,c as Filter,Bs as Filtered,l as Filters,Lr as Folder,Ui as Fullscreen,pe as Generate,j as Group,M as Groups,Hr as Guest,Kr as Guests,Se as Home,Z as IP,me as Import,br as Info,I as Isolated,ye as Language,Wr as Link,Qr as Links,or as List,We as Location,_i as Lock,i as Login,Pi as Manage,le as Manager,de as Managers,is as Me,ne as Member,ce as Members,ri as Mode,Sr as Modified,Je as Move,Qs as Moved,He as Name,xr as New,vi as Next,L as Notification,E as Notifications,Be as Options,ss as Owner,o as Password,ns as Path,rs as Permissions,N as Personal,gi as Previous,V as Private,we as Recents,ki as Redo,sr as Refresh,er as Remove,Ws as Removed,Ze as Rename,Di as RenameFileToExisting,Si as Repository,Gs as Reset,X as Role,zi as Save,_s as Scheduler,d as Search,Ei as Security,p as See,$ as Seen,si as Sequentially,Ks as Server,Qe as Settings,xe as Share,os as Shared,Te as Shares,Is as Simulate,yr as Size,$s as Source,Ie as Space,Ge as Spaces,J as Status,hr as Sync,fr as Synced,dr as Synchronization,pr as Synchronizations,mr as Synchronize,Cr as Tasks,Ar as Text,kr as Total,Vs as Transfers,Ae as Trash,ds as Type,Ni as Undo,hs as Unknown,oe as Unlimited,ji as Unlock,be as Update,Y as User,O as Users,Li as Versions,zs as View,ms as Visibility,U as Visible,Ti as Website,fi as Wizard,Ps as absent,B as account,cs as active,Fe as anchored,x as application,ve as applications,Rs as async,Ls as available,se as available_space_is_low,mi as both,Es as busy,ws as commented,Ss as comments,Vr as create,Ms as day,ks as days,Ii as default,qr as delete,lr as delete_multiple_files,nr as delete_one_file,_e as desktop_app_access,Re as desktop_app_sync,Nr as directories,zr as directory,ci as disabled,ai as enabled,$r as expired,oi as fast,Pr as file,Dr as files,Er as folder,_ as group,R as groups,Jr as guest,Xr as guests,Me as guests_admin,Rr as item,Ur as items,Or as link,Br as links,Ci as local,Ns as logout,ue as manager,Mi as me,te as member,ae as members,wr as modified,Fr as modify,Gr as move,y as nb_actions,g as nb_active_tasks,b as nb_elements,w as nb_messages,A as nb_notifications,_r as nb_selections,f as nb_tasks,hi as never,As as no,Mr as no_selection,m as no_task,es as none,Ds as offline,v as one_active_task,S as one_message,C as one_notification,jr as one_selection,h as one_task,ie as online,je as personal_groups_admin,Pe as personal_space,wi as public,Zs as recent,Ce as recents,Ai as remote,pi as scheduler_unit_day,ui as scheduler_unit_hour,di as scheduler_unit_minute,u as search,ti as secure,Us as seq,Yr as share,Ee as shared,Le as shares,Ne as shares_access,ke as shares_admin,qe as spaces,De as spaces_access,ze as spaces_admin,us as suspended,ur as synchronization,yi as to,cr as trash_multiple_files,ar as trash_one_file,Ye as unanchored,W as user,Q as users,Ve as webdav,Ue as webdav_access,Ir as write,Cs as yes};