@sync-in/server 1.9.3 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (349) hide show
  1. package/CHANGELOG.md +41 -4
  2. package/environment/environment.dist.yaml +15 -5
  3. package/package.json +18 -19
  4. package/server/app.bootstrap.js +1 -1
  5. package/server/app.bootstrap.js.map +1 -1
  6. package/server/app.constants.js +3 -2
  7. package/server/app.constants.js.map +1 -1
  8. package/server/applications/files/constants/cache.js +2 -5
  9. package/server/applications/files/constants/cache.js.map +1 -1
  10. package/server/applications/files/constants/files.js +4 -0
  11. package/server/applications/files/constants/files.js.map +1 -1
  12. package/server/applications/files/constants/operations.js +4 -0
  13. package/server/applications/files/constants/operations.js.map +1 -1
  14. package/server/applications/files/constants/routes.js +1 -26
  15. package/server/applications/files/constants/routes.js.map +1 -1
  16. package/server/applications/files/files.config.js +15 -39
  17. package/server/applications/files/files.config.js.map +1 -1
  18. package/server/applications/files/files.controller.js +4 -4
  19. package/server/applications/files/files.controller.js.map +1 -1
  20. package/server/applications/files/files.module.js +12 -9
  21. package/server/applications/files/files.module.js.map +1 -1
  22. package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
  23. package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
  24. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +32 -0
  25. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -0
  26. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +280 -0
  27. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -0
  28. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +552 -0
  29. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -0
  30. package/server/applications/files/modules/collabora-online/collabora-online.config.js +40 -0
  31. package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -0
  32. package/server/applications/files/modules/collabora-online/collabora-online.constants.js +110 -0
  33. package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -0
  34. package/server/applications/files/modules/collabora-online/collabora-online.controller.js +128 -0
  35. package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -0
  36. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +47 -0
  37. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -0
  38. package/server/applications/files/{interfaces/only-office-config.interface.js → modules/collabora-online/collabora-online.dtos.js} +1 -1
  39. package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -0
  40. package/server/applications/files/{guards/files-only-office.guard.js → modules/collabora-online/collabora-online.guard.js} +7 -21
  41. package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -0
  42. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +86 -0
  43. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -0
  44. package/server/applications/files/modules/collabora-online/collabora-online.interface.js +10 -0
  45. package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -0
  46. package/server/applications/files/modules/collabora-online/collabora-online.module.js +41 -0
  47. package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -0
  48. package/server/applications/files/modules/collabora-online/collabora-online.routes.js +35 -0
  49. package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -0
  50. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +59 -0
  51. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -0
  52. package/server/applications/files/modules/collabora-online/collabora-online.utils.js +28 -0
  53. package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -0
  54. package/server/applications/files/{decorators → modules/only-office}/only-office-environment.decorator.js +5 -5
  55. package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -0
  56. package/server/applications/files/{services/files-only-office-manager.service.js → modules/only-office/only-office-manager.service.js} +101 -97
  57. package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -0
  58. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +477 -0
  59. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -0
  60. package/server/applications/files/modules/only-office/only-office.config.js +51 -0
  61. package/server/applications/files/modules/only-office/only-office.config.js.map +1 -0
  62. package/server/applications/files/modules/only-office/only-office.constants.js +417 -0
  63. package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -0
  64. package/server/applications/files/{files-only-office.controller.js → modules/only-office/only-office.controller.js} +35 -52
  65. package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -0
  66. package/server/applications/files/{files-only-office.controller.spec.js → modules/only-office/only-office.controller.spec.js} +24 -21
  67. package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -0
  68. package/server/applications/files/modules/only-office/only-office.dtos.js +10 -0
  69. package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -0
  70. package/server/applications/files/modules/only-office/only-office.guard.js +40 -0
  71. package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -0
  72. package/server/applications/files/{guards/files-only-office.guard.spec.js → modules/only-office/only-office.guard.spec.js} +15 -21
  73. package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -0
  74. package/server/applications/files/modules/only-office/only-office.interface.js +10 -0
  75. package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -0
  76. package/server/applications/files/modules/only-office/only-office.module.js +41 -0
  77. package/server/applications/files/modules/only-office/only-office.module.js.map +1 -0
  78. package/server/applications/files/modules/only-office/only-office.routes.js +45 -0
  79. package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -0
  80. package/server/applications/files/{guards/files-only-office.strategy.js → modules/only-office/only-office.strategy.js} +11 -11
  81. package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -0
  82. package/server/applications/files/services/files-lock-manager.service.js +25 -33
  83. package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
  84. package/server/applications/files/services/files-manager.service.js +17 -16
  85. package/server/applications/files/services/files-manager.service.js.map +1 -1
  86. package/server/applications/files/services/files-methods.service.js +2 -2
  87. package/server/applications/files/services/files-methods.service.js.map +1 -1
  88. package/server/applications/files/services/files-methods.service.spec.js +5 -5
  89. package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
  90. package/server/applications/files/services/files-recents.service.js +4 -0
  91. package/server/applications/files/services/files-recents.service.js.map +1 -1
  92. package/server/applications/files/services/files-scheduler.service.js +24 -5
  93. package/server/applications/files/services/files-scheduler.service.js.map +1 -1
  94. package/server/applications/files/utils/files.js +10 -2
  95. package/server/applications/files/utils/files.js.map +1 -1
  96. package/server/applications/links/constants/routes.js +5 -0
  97. package/server/applications/links/constants/routes.js.map +1 -1
  98. package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
  99. package/server/applications/links/links.controller.js +25 -5
  100. package/server/applications/links/links.controller.js.map +1 -1
  101. package/server/applications/links/services/links-manager.service.js +43 -21
  102. package/server/applications/links/services/links-manager.service.js.map +1 -1
  103. package/server/applications/links/services/links-manager.service.spec.js +4 -3
  104. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  105. package/server/applications/links/services/links-queries.service.js +9 -2
  106. package/server/applications/links/services/links-queries.service.js.map +1 -1
  107. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
  108. package/server/applications/shares/services/shares-manager.service.js +3 -0
  109. package/server/applications/shares/services/shares-manager.service.js.map +1 -1
  110. package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
  111. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  112. package/server/applications/shares/services/shares-queries.service.js +1 -0
  113. package/server/applications/shares/services/shares-queries.service.js.map +1 -1
  114. package/server/applications/spaces/constants/spaces.js +2 -2
  115. package/server/applications/spaces/constants/spaces.js.map +1 -1
  116. package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
  117. package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
  118. package/server/applications/spaces/guards/space.guard.js +40 -33
  119. package/server/applications/spaces/guards/space.guard.js.map +1 -1
  120. package/server/applications/spaces/guards/space.guard.spec.js +10 -15
  121. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
  122. package/server/applications/spaces/services/spaces-scheduler.service.js +9 -1
  123. package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
  124. package/server/applications/webdav/constants/webdav.js +4 -0
  125. package/server/applications/webdav/constants/webdav.js.map +1 -1
  126. package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
  127. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  128. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
  129. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
  130. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
  131. package/server/applications/webdav/services/webdav-methods.service.js +40 -17
  132. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
  133. package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
  134. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  135. package/server/applications/webdav/utils/webdav.js +8 -4
  136. package/server/applications/webdav/utils/webdav.js.map +1 -1
  137. package/server/applications/webdav/webdav.controller.js +4 -4
  138. package/server/applications/webdav/webdav.controller.js.map +1 -1
  139. package/server/authentication/guards/auth-token-access.guard.js +8 -3
  140. package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
  141. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
  142. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
  143. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
  144. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
  145. package/server/configuration/config.environment.js +5 -1
  146. package/server/configuration/config.environment.js.map +1 -1
  147. package/server/configuration/config.interfaces.js.map +1 -1
  148. package/static/3rdpartylicenses.txt +507 -507
  149. package/static/assets/pdfjs/build/pdf.mjs +93 -33
  150. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  151. package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
  152. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  153. package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
  154. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  155. package/static/assets/pdfjs/version +1 -1
  156. package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
  157. package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
  158. package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
  159. package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
  160. package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
  161. package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
  162. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
  163. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
  164. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
  165. package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
  166. package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
  167. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
  168. package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
  169. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
  170. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
  171. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
  172. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
  173. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
  174. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
  175. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
  176. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
  177. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
  178. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
  179. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
  180. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
  181. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
  182. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
  183. package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
  184. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
  185. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
  186. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
  187. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
  188. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
  189. package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
  190. package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
  191. package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
  192. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
  193. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
  194. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
  195. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
  196. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
  197. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
  198. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
  199. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
  200. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
  201. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
  202. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
  203. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
  204. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
  205. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
  206. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
  207. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
  208. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
  209. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
  210. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
  211. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
  212. package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
  213. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
  214. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
  215. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
  216. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
  217. package/static/assets/pdfjs/web/viewer.css +1778 -835
  218. package/static/assets/pdfjs/web/viewer.html +167 -86
  219. package/static/assets/pdfjs/web/viewer.mjs +1106 -801
  220. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  221. package/static/chunk-27V66YJV.js +2 -0
  222. package/static/{chunk-WJYVS27M.js → chunk-27Z3SYRL.js} +1 -1
  223. package/static/{chunk-NFIES7BC.js → chunk-2RWLNKZH.js} +1 -1
  224. package/static/chunk-2YQ4SX3A.js +13 -0
  225. package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
  226. package/static/chunk-3QTROEHV.js +1 -0
  227. package/static/{chunk-ZPI7RQ2S.js → chunk-3RPUQ22U.js} +1 -1
  228. package/static/{chunk-R6VB3INJ.js → chunk-3WZ6F3LC.js} +1 -1
  229. package/static/chunk-3ZLBVUCX.js +2 -0
  230. package/static/{chunk-5HCVWZMA.js → chunk-45AZ6ZML.js} +1 -1
  231. package/static/chunk-46TJLPJY.js +1 -0
  232. package/static/chunk-4NIYCYRS.js +2 -0
  233. package/static/{chunk-XXYMVRSH.js → chunk-4TPFERL6.js} +1 -1
  234. package/static/{chunk-CAZSNVMS.js → chunk-5O66CLTD.js} +1 -1
  235. package/static/chunk-6OEOADR6.js +1 -0
  236. package/static/chunk-6WMXMIE4.js +1 -0
  237. package/static/{chunk-NK2NMAJI.js → chunk-7VRYTDX4.js} +1 -1
  238. package/static/{chunk-ASBPYTLT.js → chunk-ARS47O5X.js} +1 -1
  239. package/static/chunk-B6HQYQYG.js +1 -0
  240. package/static/chunk-BCN4T5DO.js +2 -0
  241. package/static/{chunk-PKU4IIIR.js → chunk-CCZWPM7Q.js} +1 -1
  242. package/static/{chunk-QUSS6SUC.js → chunk-CMNMPG6Z.js} +1 -1
  243. package/static/{chunk-GDPJRUVU.js → chunk-CSVPAZHK.js} +1 -1
  244. package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
  245. package/static/{chunk-Z6RJZIDG.js → chunk-D5FQ72R4.js} +1 -1
  246. package/static/{chunk-4DF2SQD4.js → chunk-DGCVA6BM.js} +1 -1
  247. package/static/{chunk-TVJQXN73.js → chunk-DVCN3P7Q.js} +1 -1
  248. package/static/chunk-E32J777S.js +5 -0
  249. package/static/{chunk-5NHB7SV3.js → chunk-FIUF2JM4.js} +1 -1
  250. package/static/{chunk-RJOHDAPM.js → chunk-G3PL6YX3.js} +1 -1
  251. package/static/chunk-G7RZN7HN.js +1 -0
  252. package/static/{chunk-DDRGLHOP.js → chunk-GQHXYX6Z.js} +1 -1
  253. package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
  254. package/static/{chunk-ZC5ZDCDC.js → chunk-GXWGB7WO.js} +1 -1
  255. package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
  256. package/static/{chunk-4KXJ6C4N.js → chunk-HZAB6F4Q.js} +1 -1
  257. package/static/chunk-I3FR3A45.js +1 -0
  258. package/static/{chunk-A6J6SOM6.js → chunk-I5SPA4G2.js} +1 -1
  259. package/static/{chunk-TGHBDJZA.js → chunk-IMFO2MI7.js} +1 -1
  260. package/static/{chunk-CURVLK7L.js → chunk-JNTNMIUH.js} +1 -1
  261. package/static/chunk-JRXG43AA.js +2 -0
  262. package/static/{chunk-XAIOGRBO.js → chunk-KAUCN24H.js} +1 -1
  263. package/static/chunk-KDUAB76O.js +1 -0
  264. package/static/chunk-KPOQLDWF.js +1 -0
  265. package/static/{chunk-HE6EDXWI.js → chunk-KWFELZTM.js} +1 -1
  266. package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
  267. package/static/{chunk-U75PLYIJ.js → chunk-LGIVVJDD.js} +1 -1
  268. package/static/{chunk-JEVBUJQ4.js → chunk-LNLBIJZD.js} +1 -1
  269. package/static/chunk-LTJNLOX2.js +1 -0
  270. package/static/{chunk-SDR3UG2F.js → chunk-LZUHREOF.js} +1 -1
  271. package/static/{chunk-VO4WVT6K.js → chunk-NIR4YE2E.js} +1 -1
  272. package/static/{chunk-S6YKBWJE.js → chunk-NJJURHX4.js} +1 -1
  273. package/static/chunk-NNZWSNAW.js +1 -0
  274. package/static/chunk-NWKBB7J4.js +1 -0
  275. package/static/chunk-O3YLAEVE.js +3 -0
  276. package/static/chunk-OUHCDDT6.js +1 -0
  277. package/static/{chunk-ZRBLCAOK.js → chunk-PDG7DOEF.js} +1 -1
  278. package/static/chunk-POUWUMC4.js +1 -0
  279. package/static/{chunk-YTBSB2GE.js → chunk-PPJCVBJH.js} +1 -1
  280. package/static/{chunk-K3MOXDU5.js → chunk-PQZLR4P3.js} +1 -1
  281. package/static/chunk-PVYVY3GD.js +1 -0
  282. package/static/chunk-Q5X5TPAG.js +1 -0
  283. package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
  284. package/static/{chunk-A7DSX7VP.js → chunk-R4VMWCM5.js} +1 -1
  285. package/static/{chunk-27XEAHMV.js → chunk-R7PLNX75.js} +1 -1
  286. package/static/chunk-RJULB733.js +1 -0
  287. package/static/{chunk-MBFMTBVJ.js → chunk-RNVPQQKT.js} +5 -5
  288. package/static/chunk-RTNEBRKJ.js +1 -0
  289. package/static/{chunk-FXM7XXWA.js → chunk-S3TTWPQA.js} +1 -1
  290. package/static/{chunk-6VJI4X2A.js → chunk-SDJNZULP.js} +1 -1
  291. package/static/chunk-SNOOCDJD.js +1 -0
  292. package/static/chunk-T42BV6TR.js +1 -0
  293. package/static/{chunk-4OV3SAUS.js → chunk-TNCKNU6I.js} +1 -1
  294. package/static/{chunk-2LHHXDD5.js → chunk-ULSPQ3HP.js} +1 -1
  295. package/static/{chunk-4EUHBTWV.js → chunk-UOK3LKSX.js} +1 -1
  296. package/static/{chunk-7NI353LS.js → chunk-VD5JHSDS.js} +1 -1
  297. package/static/{chunk-YXWF2DGF.js → chunk-XBKCQCBI.js} +1 -1
  298. package/static/{chunk-KBWK65KM.js → chunk-XEWLBWFF.js} +1 -1
  299. package/static/{chunk-FLPZB3OX.js → chunk-XTVNHFKX.js} +1 -1
  300. package/static/chunk-ZCSHU3D7.js +1 -0
  301. package/static/{chunk-FRBTL2ER.js → chunk-ZEJLIGAY.js} +1 -1
  302. package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
  303. package/static/chunk-ZOMRIN3G.js +2 -0
  304. package/static/index.html +2 -2
  305. package/static/main-YKDNJ7LK.js +11 -0
  306. package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
  307. package/server/applications/files/constants/only-office.js +0 -531
  308. package/server/applications/files/constants/only-office.js.map +0 -1
  309. package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
  310. package/server/applications/files/files-only-office.controller.js.map +0 -1
  311. package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
  312. package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
  313. package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
  314. package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
  315. package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
  316. package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
  317. package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
  318. package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
  319. package/static/chunk-2XY4PMI5.js +0 -1
  320. package/static/chunk-33WFRCUP.js +0 -1
  321. package/static/chunk-3LVFDMTN.js +0 -1
  322. package/static/chunk-42L6C5MT.js +0 -1
  323. package/static/chunk-5WCQBTXW.js +0 -1
  324. package/static/chunk-A7R246NW.js +0 -1
  325. package/static/chunk-BSB4VROD.js +0 -2
  326. package/static/chunk-DHFQIFOF.js +0 -1
  327. package/static/chunk-DRHPEERW.js +0 -2
  328. package/static/chunk-FCGTI42I.js +0 -1
  329. package/static/chunk-H4RLHI3Y.js +0 -1
  330. package/static/chunk-ITVA26X2.js +0 -2
  331. package/static/chunk-IUJ4IK26.js +0 -1
  332. package/static/chunk-L3PDWJZ3.js +0 -3
  333. package/static/chunk-LBXOAKBD.js +0 -1
  334. package/static/chunk-LZKI5P5T.js +0 -1
  335. package/static/chunk-MYM43ENO.js +0 -1
  336. package/static/chunk-MZBO5PAR.js +0 -1
  337. package/static/chunk-NAH4V2R6.js +0 -2
  338. package/static/chunk-O7UXVNR2.js +0 -1
  339. package/static/chunk-PCFH5HCI.js +0 -2
  340. package/static/chunk-SRBOO7AO.js +0 -1
  341. package/static/chunk-UUX3M6DC.js +0 -1
  342. package/static/chunk-VJ2HWQRJ.js +0 -5
  343. package/static/chunk-VZPCXSRG.js +0 -2
  344. package/static/chunk-W72JYHOH.js +0 -1
  345. package/static/chunk-XHQEF2IX.js +0 -1
  346. package/static/chunk-XKEBQNQJ.js +0 -1
  347. package/static/chunk-ZERBTNFW.js +0 -13
  348. package/static/main-FE6GWZXU.js +0 -11
  349. /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
@@ -1 +0,0 @@
1
- import"./chunk-KAVP6UXH.js";var a="Uwierzytelnianie",i="Login",n="Has\u0142o",t="Potwierd\u017A",s="Anuluj",r="Zamknij",d="Filtr",l="Filtry",c="szukaj",z="Szukaj",u="Zobacz",p="Brak zada\u0144",w="Uko\u0144czono {{ nb }} zadanie",y="Uko\u0144czono {{ nb }} zada\u0144",k="{{ nba }} zadanie w toku z {{ nb }}",m="{{ nba }} zada\u0144 w toku z {{ nb }}",h="{{nb}} element\xF3w",j="{{nb}} akcji",g="{{ nb }} nowa wiadomo\u015B\u0107",b="{{ nb }} nowe wiadomo\u015Bci",f="{{ nb }} nieprzeczytane powiadomienie",S="{{ nb }} nieprzeczytane powiadomienia",N="Aplikacja",U="aplikacja",T="Powiadomienie",P="Powiadomienia",v="Zdarzenie",A="Plik",C="Pliki",D="Osobiste",W="Zewn\u0119trzne",Z="Grupy",_="Grupa",E="grupa",L="grupy",x="Widoczna",R="Prywatna",M="Izolowana",F="Dodaj",G="Administrator",B="Administracja",O="U\u017Cytkownik",K="u\u017Cytkownik",Y="U\u017Cytkownicy",I="u\u017Cytkownicy",q="konto",V="Konto",J="E-mail",H="Status",Q="Rola",X="IP",$="Wy\u015Bwietlenia",ee="Po\u0142\u0105czenie",oe="Po\u0142\u0105czenia",ae="Ma\u0142o dost\u0119pnego miejsca ({{ nb }}%)",ie="online",ne="Nieograniczony",te="cz\u0142onek",se="cz\u0142onkowie",re="Cz\u0142onek",de="Cz\u0142onkowie",le="Mened\u017Cer",ce="mened\u017Cer",ze="Mened\u017Cerowie",ue="Generuj",pe="Importuj",we="Konfiguracja",ye="Aplikacje",ke="aplikacje",me="Awatar",he="Zaktualizuj",je="J\u0119zyk",ge="Strona g\u0142\xF3wna",be="Ostatnie",fe="ostatnie",Se="Kosz",Ne="Udost\u0119pnienia",Ue="Udost\u0119pnij",Te="udost\u0119pnienia",Pe="udost\u0119pniono",ve="Dost\u0119p do przestrzeni osobistej",Ae="Dost\u0119p do przestrzeni",Ce="Zarz\u0105dzanie przestrzeniami",De="Dost\u0119p do udost\u0119pnie\u0144",We="Zarz\u0105dzanie udost\u0119pnieniami",Ze="Zarz\u0105dzanie go\u015B\u0107mi",_e="Zarz\u0105dzanie grupami osobistymi",Ee="Dost\u0119p z aplikacji desktopowej",Le="Synchronizacja z aplikacji desktopowej",xe="Dost\u0119p WebDAV",Re="WebDAV",Me="Przestrze\u0144",Fe="Przestrzenie",Ge="przestrzenie",Be="zakotwiczy\u0142",Oe="odkotwiczy\u0142",Ke="Lokalizacja",Ye="Zakotwiczone",Ie="Ustawienia",qe="Opcje",Ve="Nazwa",Je="Pobierz",He="Przenie\u015B",Qe="Kopiuj",Xe="Zmie\u0144 nazw\u0119",$e="Edytuj",eo="Usu\u0144",oo="Schowek",ao="Od\u015Bwie\u017C",io="Opr\xF3\u017Cnij",no="Lista",to="Wy\u015Bwietlanie",so="Czy przenie\u015B\u0107 <b>{{arg}}</b> do kosza?",ro="Czy trwale usun\u0105\u0107 <b>{{arg}}</b>?",lo="Czy przenie\u015B\u0107 te <b>{{arg}} pliki</b> do kosza?",co="Czy trwale usun\u0105\u0107 te <b>{{arg}} pliki</b>?",zo="synchronizacja",uo="Synchronizacja",po="Synchronizacje",wo="Synchronizuj",yo="Sync",ko="Zsynchronizowano",mo="Skompresuj",ho="Dekompresuj",jo="Info",go="Rozmiar",bo="Zmodyfikowano",fo="zmodyfikowano",So="Zadania",No="Tekst",Uo="Elementy",To="Nowy",Po="Folder",vo="folder",Ao="plik",Co="pliki",Do="katalog",Wo="katalogi",Zo="Razem",_o="brak zaznaczenia",Eo="Zaznaczono {{ nb }} element",Lo="Zaznaczono {{ nb }} element\xF3w",xo="element",Ro="elementy",Mo="utw\xF3rz",Fo="zapisz",Go="przenie\u015B",Bo="usu\u0144",Oo="modyfikuj",Ko="udost\u0119pnienie",Yo="Link",Io="link",qo="Linki",Vo="linki",Jo="Go\u015B\u0107",Ho="Go\u015Bcie",Qo="go\u015B\u0107",Xo="go\u015Bcie",$o="Wygas\u0142o",ea="wygas\u0142o",oa="brak",aa="Uprawnienia",ia="W\u0142a\u015Bciciel",na="Ja",ta="Udost\u0119pnione",sa="Utworzono",ra="Data",da="\u015Acie\u017Cka",la="aktywne",ca="Aktywne",za="zawieszone",ua="Typ",pa="Opis",wa="Widoczno\u015B\u0107",ya="Nieznane",ka="Wyga\u015Bni\u0119cie",ma="Dost\u0119p",ha="Uzyskano dost\u0119p",ja="Komentarz",ga="Komentarze",ba="komentarze",fa="skomentowa\u0142",Sa="tak",Na="nie",Ua="Klient",Ta="Klienci",Pa="dost\u0119pny",va="zaj\u0119ty",Aa="nieobecny",Ca="offline",Da="Zobacz",Wa="wyloguj",Za="dni",_a="dzie\u0144",Ea="Usu\u0144",La="Harmonogram",xa="r\xF3wnoleg\u0142y",Ra="sekwencyjny",Ma="Transfery",Fa="Symuluj",Ga="Resetuj",Ba="Przegl\u0105daj",Oa="Akcja",Ka="Dodano",Ya="Usuni\u0119to",Ia="Skopiowano",qa="Przeniesiono",Va="Przefiltrowano",Ja="B\u0142\u0105d",Ha="Serwer",Qa="Kierunek",Xa="Konflikt",$a="ostatnie",ei="\u0179r\xF3d\u0142o",oi="Miejsce docelowe",ai="Tryb",ii="Sekwencyjnie",ni="R\xF3wnolegle",ti="szybki",si="bezpieczny",ri="w\u0142\u0105czony",di="W\u0142\u0105cz",li="wy\u0142\u0105czony",ci="Wy\u0142\u0105cz",zi="godziny",ui="minuty",pi="dni",wi="oba kierunki",yi="nigdy",ki="Kreator",mi="Dalej",hi="Wstecz",ji="Zako\u0144cz",gi="do",bi="Repozytorium",fi="publiczne",Si="lokalne",Ni="zdalne",Ui="Strona internetowa",Ti="Dokumentacja",Pi="Wersje",vi="Bezpiecze\u0144stwo",Ai="Zarz\u0105dzaj",Ci="Czy chcesz zmieni\u0107 nazw\u0119 <b>{{ old }}</b> na <b>{{ new }}</b>?",Di="Zapisz",Wi="Cofnij",Zi="Pon\xF3w",_i="ja",Ei="Odblokuj",Li="Blokada",xi="Wy\u0142\u0105czna",Ri="Pe\u0142ny ekran",Mi="Wymiary",Fi={"Sign-in to your account":"Zaloguj si\u0119 na swoje konto","Wrong login or password":"Nieprawid\u0142owy login lub has\u0142o","Authentication service error":"B\u0142\u0105d us\u0142ugi uwierzytelniania","Account locked":"Konto zablokowane","Account is not allowed":"Konto nie jest uprawnione","Account matching error":"B\u0142\u0105d dopasowania konta",Authentication:a,"Sign in":"Zaloguj si\u0119",Login:i,Password:n,"Login or Email":"Login lub e-mail","Login already used":"Login jest ju\u017C u\u017Cywany","You are already logged in":"Jeste\u015B ju\u017C zalogowany","Name already used":"Nazwa jest ju\u017C u\u017Cywana","Token has expired":"Token wygas\u0142",Confirm:t,Cancel:s,Close:r,"Server connection error":"B\u0142\u0105d po\u0142\u0105czenia z serwerem",Filter:d,Filters:l,search:c,Search:z,"Search for content":"Szukaj tre\u015Bci","Search for files":"Szukaj plik\xF3w","Full-text search":"Wyszukiwanie pe\u0142notekstowe","Full-text search is disabled":"Wyszukiwanie pe\u0142notekstowe jest wy\u0142\u0105czone","Type to search for users or groups to add":"Wpisz, aby wyszuka\u0107 u\u017Cytkownik\xF3w lub grupy do dodania","Type to search for groups to add":"Wpisz, aby wyszuka\u0107 grupy do dodania","Type to search for users to add":"Wpisz, aby wyszuka\u0107 u\u017Cytkownik\xF3w do dodania","Type to search for managers to add":"Wpisz, aby wyszuka\u0107 mened\u017Cer\xF3w do dodania","Member since":"Cz\u0142onek od","Windows Manager":"Mened\u017Cer okien","Mark as read":"Oznacz jako przeczytane",See:u,no_task:p,one_task:w,nb_tasks:y,one_active_task:k,nb_active_tasks:m,nb_elements:h,nb_actions:j,one_message:g,nb_messages:b,one_notification:f,nb_notifications:S,Application:N,application:U,"application and email":"aplikacja i e-mail",Notification:T,Notifications:P,Event:v,File:A,Files:C,"Personal files":"Pliki osobiste","for personal files":"dla plik\xF3w osobistych",Personal:D,External:W,"Share status":"Status udost\u0119pnienia","Share description":"Opis udost\u0119pnienia","No recent files":"Brak ostatnich plik\xF3w",Groups:Z,Group:_,group:E,"New personal group":"Nowa grupa osobista","Edit personal group":"Edytuj grup\u0119 osobist\u0105","personal group":"grupa osobista","Personal group":"Grupa osobista","Personal groups":"Grupy osobiste",groups:L,"Parent group":"Grupa nadrz\u0119dna","Group updated":"Zaktualizowano grup\u0119","Group created":"Utworzono grup\u0119","Group not found":"Nie znaleziono grupy","Group error":"B\u0142\u0105d grupy","Set as group manager":"Ustaw jako mened\u017Cera grupy","As a manager, the user will be able to manage the group and its members.":"Jako mened\u017Cer u\u017Cytkownik b\u0119dzie m\xF3g\u0142 zarz\u0105dza\u0107 grup\u0105 i jej cz\u0142onkami.","As a manager, the user will be able to manage group members but not group properties.":"Jako mened\u017Cer u\u017Cytkownik b\u0119dzie m\xF3g\u0142 zarz\u0105dza\u0107 cz\u0142onkami grupy, ale nie jej w\u0142a\u015Bciwo\u015Bciami.",Visible:x,Private:R,Isolated:M,"Select the parent group":"Wybierz grup\u0119 nadrz\u0119dn\u0105","from the group":"z grupy","New group":"Nowa grupa","Edit group":"Edytuj grup\u0119","Leave group":"Opu\u015B\u0107 grup\u0119","Delete group":"Usu\u0144 grup\u0119","Remove from group":"Usu\u0144 z grupy","Group must have at least one manager":"Grupa musi mie\u0107 co najmniej jednego mened\u017Cera","The group was left":"Grupa zosta\u0142a opuszczona","The group was not left":"Nie uda\u0142o si\u0119 opu\u015Bci\u0107 grupy","will be left, you will no longer be a member of this group":"zostanie opuszczona, nie b\u0119dziesz ju\u017C cz\u0142onkiem tej grupy","All users can see this group.":"Wszyscy u\u017Cytkownicy mog\u0105 zobaczy\u0107 t\u0119 grup\u0119.","Users who are not members of this group cannot see it.":"U\u017Cytkownicy, kt\xF3rzy nie s\u0105 cz\u0142onkami tej grupy, nie widz\u0105 jej.","The group is not visible, its members cannot see it and cannot see each other.":"Grupa nie jest widoczna, jej cz\u0142onkowie nie widz\u0105 jej ani siebie nawzajem.",Add:F,"Add members":"Dodaj cz\u0142onk\xF3w","See members":"Zobacz cz\u0142onk\xF3w",Administrator:G,Administration:B,User:O,user:K,Users:Y,users:I,"New user":"Nowy u\u017Cytkownik",account:q,Account:V,"Account status":"Status konta",Email:J,"Email already used":"E-mail jest ju\u017C u\u017Cywany","First name":"Imi\u0119","Last name":"Nazwisko","Full name":"Imi\u0119 i nazwisko",Status:H,Role:Q,IP:X,"IP Addresses":"Adresy IP",Seen:$,Connection:ee,Connections:oe,"Confirm deletion":"Potwierd\u017A usuni\u0119cie","Confirm permanent deletion of data":"Potwierd\u017A trwa\u0142e usuni\u0119cie danych","Space and data will be deleted in":"Przestrze\u0144 i dane zostan\u0105 usuni\u0119te za","Space is disabled":"Przestrze\u0144 jest wy\u0142\u0105czona","Storage Space":"Przestrze\u0144 dyskowa","Storage Quota":"Limit przestrzeni","Storage Usage":"Wykorzystanie przestrzeni","Space status":"Status przestrzeni","Storage quota exceeded":"Przekroczono limit przestrzeni","Storage quota will be exceeded":"Limit przestrzeni zostanie przekroczony","No more space available":"Brak dost\u0119pnego miejsca",available_space_is_low:ae,online:ie,"Online users":"U\u017Cytkownicy online",Unlimited:ne,member:te,members:se,Member:re,Members:de,Manager:le,manager:ce,Managers:ze,"At least one manager is required":"Wymagany jest co najmniej jeden mened\u017Cer",Generate:ue,Import:pe,Configuration:we,Applications:ye,applications:ke,"Permissions inherited from groups":"Uprawnienia odziedziczone po grupach","Only the group will be deleted, the members will no longer be part of it.":"Usuni\u0119ta zostanie tylko grupa, cz\u0142onkowie nie b\u0119d\u0105 ju\u017C do niej nale\u017Ce\u0107.",Avatar:me,Update:he,"current password":"aktualne has\u0142o","new password":"nowe has\u0142o","Change me !":"Zmie\u0144 mnie!","Current password missing !":"Brak aktualnego has\u0142a!","New password missing !":"Brak nowego has\u0142a!","New password must have 8 characters minimum":"Nowe has\u0142o musi mie\u0107 co najmniej 8 znak\xF3w","Current password does not match":"Aktualne has\u0142o nie jest poprawne","Password has been updated":"Has\u0142o zosta\u0142o zaktualizowane","Unable to update password":"Nie mo\u017Cna zaktualizowa\u0107 has\u0142a","Bad password":"Nieprawid\u0142owe has\u0142o","too many login attempts":"zbyt wiele pr\xF3b logowania",Language:je,"Language updated":"Zaktualizowano j\u0119zyk","Unable to update language":"Nie mo\u017Cna zaktualizowa\u0107 j\u0119zyka","Notification preference updated":"Zaktualizowano preferencje powiadomie\u0144","Full-text search preference updated":"Zaktualizowano preferencje wyszukiwania pe\u0142notekstowego","Unable to update notification preference":"Nie mo\u017Cna zaktualizowa\u0107 preferencji powiadomie\u0144","Unable to update full-text search preference":"Nie mo\u017Cna zaktualizowa\u0107 preferencji wyszukiwania pe\u0142notekstowego","Unable to open document":"Nie mo\u017Cna otworzy\u0107 dokumentu","Unable to save document":"Nie mo\u017Cna zapisa\u0107 dokumentu",Home:ge,Recents:be,recents:fe,Trash:Se,"trash bins":"kosze",Shares:Ne,Share:Ue,shares:Te,shared:Pe,personal_space:ve,spaces_access:Ae,spaces_admin:Ce,shares_access:De,shares_admin:We,guests_admin:Ze,personal_groups_admin:_e,desktop_app_access:Ee,desktop_app_sync:Le,webdav_access:xe,"Create share":"Utw\xF3rz udost\u0119pnienie","Edit share":"Edytuj udost\u0119pnienie","Delete share":"Usu\u0144 udost\u0119pnienie","Child shares":"Udost\u0119pnienia podrz\u0119dne",webdav:Re,"Share is disabled":"Udost\u0119pnienie jest wy\u0142\u0105czone",Space:Me,Spaces:Fe,spaces:Ge,"Space name":"Nazwa przestrzeni","New space":"Nowa przestrze\u0144","Create a new space":"Utw\xF3rz now\u0105 przestrze\u0144","Create space":"Utw\xF3rz przestrze\u0144","Edit space":"Edytuj przestrze\u0144","Delete space":"Usu\u0144 przestrze\u0144","Create a new share":"Utw\xF3rz nowe udost\u0119pnienie","Type to search for space to select":"Wpisz, aby wyszuka\u0107 przestrze\u0144 do wyboru","Anchor to a space":"Zaka\u0144cz do przestrzeni","Anchor files to a space":"Zaka\u0144cz pliki do przestrzeni","You have been invited to join this space":"Otrzyma\u0142e\u015B zaproszenie do do\u0142\u0105czenia do tej przestrzeni","You have been invited to join this share":"Otrzyma\u0142e\u015B zaproszenie do do\u0142\u0105czenia do tego udost\u0119pnienia","Shared with others":"Udost\u0119pnione innym","With others":"Z innymi","Shared with me":"Udost\u0119pnione mnie","With me":"Ze mn\u0105","Shared via links":"Udost\u0119pnione poprzez linki","Via links":"Przez linki","Shared from":"Udost\u0119pnione przez","share with you this":"udost\u0119pnia Ci to","shared with you":"udost\u0119pni\u0142 Ci","no longer share with you":"ju\u017C Ci nie udost\u0119pnia","You now have access to the space":"Masz teraz dost\u0119p do przestrzeni","You no longer have access to the space":"Nie masz ju\u017C dost\u0119pu do przestrzeni","This space has been permanently deleted":"Ta przestrze\u0144 zosta\u0142a trwale usuni\u0119ta","You now have access to the share":"Masz teraz dost\u0119p do udost\u0119pnienia","You no longer have access to the share":"Nie masz ju\u017C dost\u0119pu do udost\u0119pnienia","You are no longer a member of the parent share, your child share has been deleted":"Nie jeste\u015B ju\u017C cz\u0142onkiem udost\u0119pnienia nadrz\u0119dnego, Twoje udost\u0119pnienie podrz\u0119dne zosta\u0142o usuni\u0119te",anchored:Be,unanchored:Oe,"Share not found":"Nie znaleziono udost\u0119pnienia","Go to":"Przejd\u017A",Location:Ke,"Name and location are required":"Nazwa i lokalizacja s\u0105 wymagane","Parent location already exists in files":"Lokalizacja nadrz\u0119dna ju\u017C istnieje w plikach","Check the location":"Sprawd\u017A lokalizacj\u0119","Location not found":"Nie znaleziono lokalizacji","Forbidden resource":"Niedozwolona lokalizacja","Resource already exists":"Element ju\u017C istnieje","The location does not exist":"Lokalizacja nie istnieje","The location is not readable":"Lokalizacja nie jest czytelna","The location is not writeable":"Lokalizacja nie jest zapisywalna","The location is a directory":"Lokalizacja jest katalogiem","The file is locked":"Plik jest zablokowany","This share is protected by a password":"To udost\u0119pnienie jest chronione has\u0142em","You do not have share permission":"Nie masz uprawnie\u0144 do udost\u0119pniania","You can not share a space":"Nie mo\u017Cesz udost\u0119pni\u0107 przestrzeni","You can not remove an anchored file":"Nie mo\u017Cesz usun\u0105\u0107 zakotwiczonego pliku","You are not allowed to write here":"Nie masz uprawnie\u0144 do zapisu tutaj","You are not allowed to do this action":"Nie masz uprawnie\u0144 do wykonania tej akcji","You can not move an anchored file":"Nie mo\u017Cesz przenie\u015B\u0107 zakotwiczonego pliku","You can not move a locked file":"Nie mo\u017Cesz przenie\u015B\u0107 zablokowanego pliku",Anchored:Ye,"Anchored by":"Zakotwiczone przez","Manage my anchored files":"Zarz\u0105dzaj moimi zakotwiczonymi plikami","You have no files anchored on this space":"Nie masz zakotwiczonych plik\xF3w w tej przestrzeni","An anchored file already has this name":"Zakotwiczony plik o tej nazwie ju\u017C istnieje",Settings:Ie,Options:qe,Name:Ve,Download:Je,"Download done":"Pobieranie zako\u0144czone","Download failed":"B\u0142\u0105d pobierania","Upload done":"Przesy\u0142anie zako\u0144czone","Upload failed":"B\u0142\u0105d przesy\u0142ania","Copy/Move":"Kopiuj/Przenie\u015B",Move:He,"Move done":"Przenoszenie zako\u0144czone","Move failed":"B\u0142\u0105d przenoszenia","Deletion done":"Usuwanie zako\u0144czone","Deletion failed":"B\u0142\u0105d usuwania","Creation failed":"B\u0142\u0105d tworzenia",Copy:Qe,"Copy done":"Kopiowanie zako\u0144czone","Copy failed":"B\u0142\u0105d kopiowania","Copy-Paste":"Kopiuj-Wklej","Cut-Paste":"Wytnij-Wklej",Rename:Xe,Edit:$e,"Share inside":"Udost\u0119pnij wewn\u0105trz","Share outside":"Udost\u0119pnij na zewn\u0105trz",Remove:eo,Clipboard:oo,"Send to Clipboard":"Wy\u015Blij do schowka","will be removed":"zostanie usuni\u0119ty",Refresh:ao,Empty:io,List:no,Display:to,"Sort by":"Sortuj wed\u0142ug",trash_one_file:so,delete_one_file:ro,trash_multiple_files:lo,delete_multiple_files:co,"Moving to trash":"Przenoszenie do kosza","Permanent deletion":"Trwa\u0142e usuni\u0119cie","Would you like to empty the trash ?":"Czy chcesz opr\xF3\u017Cni\u0107 kosz?","All items will be permanently deleted":"Wszystkie elementy zostan\u0105 trwale usuni\u0119te","Actions will be performed in the current folder":"Akcje zostan\u0105 wykonane w bie\u017C\u0105cym folderze","The client will no longer have permission to access your account and will no longer be able to synchronize.":"Klient nie b\u0119dzie mia\u0142 uprawnie\u0144 do dost\u0119pu do twojego konta i nie b\u0119dzie m\xF3g\u0142 synchronizowa\u0107.","The access expires":"Dost\u0119p wygasa","The access has expired":"Dost\u0119p wygas\u0142","Never expires":"Nigdy nie wygasa",synchronization:zo,Synchronization:uo,Synchronizations:po,Synchronize:wo,Sync:yo,"Stop synchronization":"Zatrzymaj synchronizacj\u0119","Synchronize all":"Synchronizuj wszystko","Stop synchronizations":"Zatrzymaj synchronizacje",Synced:ko,"Sync already exists":"Synchronizacja ju\u017C istnieje","Sync was reset":"Zresetowano synchronizacj\u0119","Sync deleted":"Usuni\u0119to synchronizacj\u0119","This client":"Ten klient","You are no longer synchronizing":"Nie synchronizujesz ju\u017C",Compress:mo,Decompress:ho,"Compress and Download":"Skompresuj i pobierz","Compress and Save":"Skompresuj i zapisz","Enable compression":"W\u0142\u0105cz kompresj\u0119","Compression done":"Kompresja zako\u0144czona","Compression failed":"B\u0142\u0105d kompresji","Decompression done":"Dekompresja zako\u0144czona","Decompression failed":"B\u0142\u0105d dekompresji","(this may take longer)":"(mo\u017Ce to potrwa\u0107 d\u0142u\u017Cej)","Save in the current directory":"Zapisz w bie\u017C\u0105cym katalogu","This name is already used":"Ta nazwa jest ju\u017C u\u017Cywana",Info:jo,Size:go,Modified:bo,modified:fo,Tasks:So,"Download from URL":"Pobierz z URL","Upload files":"Prze\u015Blij pliki","Upload folders":"Prze\u015Blij foldery","Folder name":"Nazwa folderu","New folder":"Nowy folder","Document name":"Nazwa dokumentu","New document":"Nowy dokument","File name":"Nazwa pliku","File permissions":"Uprawnienia do pliku",Text:No,"Rich Text Format":"Rich Text Format","Forbidden characters":"Niedozwolone znaki",Elements:Uo,"Malformed URL":"Nieprawid\u0142owy URL",New:To,Folder:Po,folder:vo,file:Ao,files:Co,directory:Do,directories:Wo,Total:Zo,no_selection:_o,one_selection:Eo,nb_selections:Lo,"Archive name":"Nazwa archiwum","Drag and drop your files here":"Przeci\u0105gnij i upu\u015B\u0107 pliki tutaj","The destination already exists":"Miejsce docelowe ju\u017C istnieje","This item is already selected":"Ten element jest ju\u017C zaznaczony","Parent item is already selected":"Element nadrz\u0119dny jest ju\u017C zaznaczony","This file contains binary data that can not be read":"Ten plik zawiera dane binarne, kt\xF3rych nie mo\u017Cna odczyta\u0107","Navigation Tree":"Drzewo nawigacji",item:xo,items:Ro,create:Mo,write:Fo,move:Go,delete:Bo,modify:Oo,"Delete user":"Usu\u0144 u\u017Cytkownika","Delete all user files":"Usu\u0144 wszystkie pliki u\u017Cytkownika",share:Ko,"Share name":"Nazwa udost\u0119pnienia","New share":"Nowe udost\u0119pnienie","New share link":"Nowy link udost\u0119pnienia","New link":"Nowy link","Edit children shares":"Edytuj udost\u0119pnienia podrz\u0119dne",Link:Yo,link:Io,Links:qo,links:Vo,"Link copied":"Skopiowano link","Link created":"Utworzono link","Link deleted":"Usuni\u0119to link","Link error":"B\u0142\u0105d linku","Copy link":"Kopiuj link","Edit link":"Edytuj link","Guest Link":"Link go\u015Bcia","Guest name":"Nazwa go\u015Bcia","Guest email":"E-mail go\u015Bcia","Guest language":"J\u0119zyk go\u015Bcia",Guest:Jo,Guests:Ho,guest:Qo,guests:Xo,"New guest":"Nowy go\u015B\u0107","Edit guest":"Edytuj go\u015Bcia","Guest created":"Utworzono go\u015Bcia","Guest deleted":"Usuni\u0119to go\u015Bcia","Guest updated":"Zaktualizowano go\u015Bcia","Guest error":"B\u0142\u0105d go\u015Bcia","Add an external location":"Dodaj zewn\u0119trzn\u0105 lokalizacj\u0119","External location":"Zewn\u0119trzna lokalizacja","Select a file":"Wybierz plik","The link is expired":"Link wygas\u0142","The link is disabled":"Link jest wy\u0142\u0105czony","The link was not found":"Nie znaleziono linku",Expired:$o,expired:ea,none:oa,"The maximum number of access allowed to the link is exceeded":"Przekroczono maksymaln\u0105 liczb\u0119 dost\u0119p\xF3w do linku","Set a password":"Ustaw has\u0142o","Enter your password":"Wpisz has\u0142o",Permissions:aa,"No permissions":"Brak uprawnie\u0144",Owner:ia,Me:na,Shared:ta,Created:sa,"Created & Modified":"Utworzono i zmodyfikowano","Creation date":"Data utworzenia","Modification date":"Data modyfikacji","Deactivation date":"Data dezaktywacji",Date:ra,Path:da,active:la,Active:ca,suspended:za,"Unable to rename user space":"Nie mo\u017Cna zmieni\u0107 nazwy przestrzeni u\u017Cytkownika","Unable to delete user space":"Nie mo\u017Cna usun\u0105\u0107 przestrzeni u\u017Cytkownika","Unable to update user":"Nie mo\u017Cna zaktualizowa\u0107 u\u017Cytkownika","Unable to update user groups":"Nie mo\u017Cna zaktualizowa\u0107 grup u\u017Cytkownika","User created":"Utworzono u\u017Cytkownika","User updated":"Zaktualizowano u\u017Cytkownika","User not found":"Nie znaleziono u\u017Cytkownika","Edit user":"Edytuj u\u017Cytkownika","Impersonate identity":"Przyjmij to\u017Csamo\u015B\u0107 u\u017Cytkownika",Type:ua,Description:pa,Visibility:wa,"Unknown error !":"Nieznany b\u0142\u0105d!",Unknown:ya,Expiration:ka,"Limit access":"Ogranicz dost\u0119p","Current access count":"Bie\u017C\u0105ca liczba dost\u0119p\xF3w",Access:ma,Accessed:ha,"Last access":"Ostatni dost\u0119p","Last accesses":"Ostatnie dost\u0119py",Comment:ja,Comments:ga,comments:ba,commented:fa,"No recent comments":"Brak ostatnich komentarzy","Write a comment ...":"Napisz komentarz...",yes:Sa,no:Na,Client:Ua,Clients:Ta,available:Pa,busy:va,absent:Aa,offline:Ca,View:Da,"Session has expired":"Sesja wygas\u0142a","Please sign in":"Zaloguj si\u0119 ponownie",logout:Wa,days:Za,day:_a,Delete:Ea,Scheduler:La,async:xa,seq:Ra,Transfers:Ma,Simulate:Fa,Reset:Ga,Browse:Ba,Action:Oa,Added:Ka,Removed:Ya,Copied:Ia,Moved:qa,Filtered:Va,Error:Ja,Server:Ha,Direction:Qa,Conflict:Xa,"Show filtered files":"Poka\u017C przefiltrowane pliki",recent:$a,Source:ei,Destination:oi,Mode:ai,Sequentially:ii,Asynchronously:ni,fast:ti,secure:si,enabled:ri,Enable:di,disabled:li,Disable:ci,scheduler_unit_hour:zi,scheduler_unit_minute:ui,scheduler_unit_day:pi,"You must have permission to modify the server folder to choose a different sync mode":"Aby wybra\u0107 inny tryb synchronizacji, musisz mie\u0107 uprawnienia do modyfikacji folderu serwera","upload only":"tylko wysy\u0142anie","download only":"tylko pobieranie",both:wi,never:yi,"Clear events":"Wyczy\u015B\u0107 zdarzenia","Events from":"Zdarzenia z","All syncs":"Wszystkie synchronizacje","All events":"Wszystkie zdarzenia","will be cleared":"zostan\u0105 wyczyszczone","No differences":"Brak r\xF3\u017Cnic","Select a folder":"Wybierz folder","The files containing":"Pliki zawieraj\u0105ce","The files starting":"Pliki zaczynaj\u0105ce si\u0119 na","The files ending":"Pliki ko\u0144cz\u0105ce si\u0119 na","Expert (Regexp)":"Zaawansowane (Regexp)","click on the browse button":"kliknij przycisk przegl\u0105dania","with a name or pattern":"po nazwie lub wzorcu","with the extension ('.mp3', '.avi', '.mov' ...)":"po rozszerzeniu ('.mp3', '.avi', '.mov' ...)",Wizard:ki,Next:mi,Previous:hi,Done:ji,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Ten kreator pomo\u017Ce zsynchronizowa\u0107 katalog na komputerze z katalogiem Sync-in.","To begin, select a folder on your computer.":"Aby rozpocz\u0105\u0107, wybierz folder na swoim komputerze.",'You can drag the folder into the area below or click on the "Select" button.':"Mo\u017Cesz przeci\u0105gn\u0105\u0107 folder w poni\u017Cszy obszar lub klikn\u0105\u0107 przycisk \u201EWybierz\u201D.","Drop folder here":"Upu\u015B\u0107 folder tutaj","This directory is already synced":"Ten katalog jest ju\u017C zsynchronizowany","The parent directory is already synced":"Katalog nadrz\u0119dny jest ju\u017C zsynchronizowany","This directory is not accessible":"Ten katalog jest niedost\u0119pny","This directory is read-only, you will not be able to modify it":"Ten katalog jest tylko do odczytu, nie mo\u017Cesz go modyfikowa\u0107","Please select the server directory to sync, if it doesn't exist you can create it.":"Wybierz katalog na serwerze do synchronizacji, a je\u015Bli nie istnieje, mo\u017Cesz go utworzy\u0107.","Double click to browse directories":"Kliknij dwukrotnie, aby przegl\u0105da\u0107 katalogi","The data will be synchronized from":"Dane b\u0119d\u0105 synchronizowane z","the client folder":"folderu klienta","the server folder":"folderu serwera","(One-Way)":"(jednokierunkowe)","(Two-Way)":"(dwukierunkowe)",to:gi,"and from":"i z","All files created or modified in":"Wszystkie pliki utworzone lub zmodyfikowane w","will be ignored and deleted":"zostan\u0105 zignorowane i usuni\u0119te","In case of conflict,":"W przypadku konfliktu","the most recent files will be kept":"zostan\u0105 zachowane najnowsze pliki","the client\u2019s files take precedence":"pliki klienta maj\u0105 pierwsze\u0144stwo","the server\u2019s files take precedence":"pliki serwera maj\u0105 pierwsze\u0144stwo","the files in":"pliki w","will be preferred":"b\u0119d\u0105 preferowane","Loading...":"\u0141adowanie...","No results":"Brak wynik\xF3w","Download ARM64 version":"Pobierz wersj\u0119 ARM64","Download Apple Silicon ARM64 version":"Pobierz wersj\u0119 Apple Silicon ARM64","Download tar.gz version":"Pobierz wersj\u0119 tar.gz",Repository:bi,public:fi,local:Si,remote:Ni,"System requirements":"Wymagania systemowe","Feature not enabled":"Funkcja nie jest w\u0142\u0105czona","Check the settings":"Sprawd\u017A ustawienia",Website:Ui,Documentation:Ti,Versions:Pi,Security:vi,"Recovery code":"Kod odzyskiwania","Use a recovery code":"U\u017Cyj kodu odzyskiwania","Authentication code":"Kod uwierzytelniaj\u0105cy","Secret copied":"Skopiowano sekret","Recovery codes copied":"Skopiowano kody odzyskiwania","Invalid code":"Nieprawid\u0142owy kod","Incorrect code or password":"Nieprawid\u0142owy kod lub has\u0142o","Application Passwords":"Has\u0142a aplikacji","Generate a new app password":"Wygeneruj nowe has\u0142o aplikacji","Generated password":"Wygenerowane has\u0142o","This password will only be shown once after it is generated":"To has\u0142o zostanie wy\u015Bwietlone tylko raz po wygenerowaniu","Password name":"Nazwa has\u0142a",Manage:Ai,"Manage app passwords":"Zarz\u0105dzaj has\u0142ami aplikacji","Password Authentication":"Uwierzytelnianie has\u0142em","Two-Factor Authentication":"Uwierzytelnianie dwusk\u0142adnikowe","Two-Factor Authentication is enabled":"Uwierzytelnianie dwusk\u0142adnikowe jest w\u0142\u0105czone","Two-Factor Authentication is disabled":"Uwierzytelnianie dwusk\u0142adnikowe jest wy\u0142\u0105czone","Scan this QR code using your authenticator app.":"Zeskanuj ten kod QR za pomoc\u0105 aplikacji uwierzytelniaj\u0105cej.","(Such as FreeOTP, Proton Authenticator etc.)":"(np. FreeOTP, Proton Authenticator itp.)","Or enter this secret manually":"Lub wprowad\u017A ten sekret r\u0119cznie","Valid with your TOTP code":"Potwierd\u017A kodem TOTP","The secret has expired":"Sekret wygas\u0142","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Przechowuj te kody w bezpiecznym miejscu. Umo\u017Cliwi\u0105 dost\u0119p do konta, je\u015Bli utracisz dost\u0119p do uwierzytelniania dwusk\u0142adnikowego.","These recovery codes are for one-time use only and will only be displayed here once.":"Te kody odzyskiwania s\u0105 jednorazowe i zostan\u0105 tu wy\u015Bwietlone tylko raz.","Overwrite Existing File(s)":"Nadpisa\u0107 istniej\u0105cy(e) plik(i)","Replace Existing File":"Zast\u0105pi\u0107 istniej\u0105cy plik","Do you want to replace the existing file(s)?":"Czy chcesz zast\u0105pi\u0107 istniej\u0105cy(e) plik(i)?",RenameFileToExisting:Ci,Save:Di,"Line Wrap":"Zawijanie wierszy","Read-only":"Tylko do odczytu","Read-write":"Odczyt i zapis","Save And Exit":"Zapisz i wyjd\u017A","Close Without Saving":"Zamknij bez zapisywania",Undo:Wi,Redo:Zi,me:_i,"The file is locked by":"Plik jest zablokowany przez",Unlock:Ei,Lock:Li,Exclusive:xi,"Send an unlock request":"Wy\u015Blij pro\u015Bb\u0119 o odblokowanie","sends you a request to unlock the file":"wysy\u0142a do Ciebie pro\u015Bb\u0119 o odblokowanie pliku","As the file owner, you can unlock the file or request the current lock owner to release it.":"Jako w\u0142a\u015Bciciel pliku mo\u017Cesz odblokowa\u0107 plik lub poprosi\u0107 obecnego w\u0142a\u015Bciciela blokady o jej zwolnienie.","The file is edited by":"Plik jest edytowany przez","A new update is available":"Dost\u0119pna jest nowa aktualizacja",Fullscreen:Ri,Dimensions:Mi,"Start Slideshow":"Uruchom pokaz slajd\xF3w"};export{ma as Access,ha as Accessed,V as Account,Oa as Action,ca as Active,F as Add,Ka as Added,B as Administration,G as Administrator,Ye as Anchored,N as Application,ye as Applications,ni as Asynchronously,a as Authentication,me as Avatar,Ba as Browse,s as Cancel,Ua as Client,Ta as Clients,oo as Clipboard,r as Close,ja as Comment,ga as Comments,mo as Compress,we as Configuration,t as Confirm,Xa as Conflict,ee as Connection,oe as Connections,Ia as Copied,Qe as Copy,sa as Created,ra as Date,ho as Decompress,Ea as Delete,pa as Description,oi as Destination,Mi as Dimensions,Qa as Direction,ci as Disable,to as Display,Ti as Documentation,ji as Done,Je as Download,$e as Edit,Uo as Elements,J as Email,io as Empty,di as Enable,Ja as Error,v as Event,xi as Exclusive,ka as Expiration,$o as Expired,W as External,A as File,C as Files,d as Filter,Va as Filtered,l as Filters,Po as Folder,Ri as Fullscreen,ue as Generate,_ as Group,Z as Groups,Jo as Guest,Ho as Guests,ge as Home,X as IP,pe as Import,jo as Info,M as Isolated,je as Language,Yo as Link,qo as Links,no as List,Ke as Location,Li as Lock,i as Login,Ai as Manage,le as Manager,ze as Managers,na as Me,re as Member,de as Members,ai as Mode,bo as Modified,He as Move,qa as Moved,Ve as Name,To as New,mi as Next,T as Notification,P as Notifications,qe as Options,ia as Owner,n as Password,da as Path,aa as Permissions,D as Personal,hi as Previous,R as Private,be as Recents,Zi as Redo,ao as Refresh,eo as Remove,Ya as Removed,Xe as Rename,Ci as RenameFileToExisting,bi as Repository,Ga as Reset,Q as Role,Di as Save,La as Scheduler,z as Search,vi as Security,u as See,$ as Seen,ii as Sequentially,Ha as Server,Ie as Settings,Ue as Share,ta as Shared,Ne as Shares,Fa as Simulate,go as Size,ei as Source,Me as Space,Fe as Spaces,H as Status,yo as Sync,ko as Synced,uo as Synchronization,po as Synchronizations,wo as Synchronize,So as Tasks,No as Text,Zo as Total,Ma as Transfers,Se as Trash,ua as Type,Wi as Undo,ya as Unknown,ne as Unlimited,Ei as Unlock,he as Update,O as User,Y as Users,Pi as Versions,Da as View,wa as Visibility,x as Visible,Ui as Website,ki as Wizard,Aa as absent,q as account,la as active,Be as anchored,U as application,ke as applications,xa as async,Pa as available,ae as available_space_is_low,wi as both,va as busy,fa as commented,ba as comments,Mo as create,_a as day,Za as days,Fi as default,Bo as delete,co as delete_multiple_files,ro as delete_one_file,Ee as desktop_app_access,Le as desktop_app_sync,Wo as directories,Do as directory,li as disabled,ri as enabled,ea as expired,ti as fast,Ao as file,Co as files,vo as folder,E as group,L as groups,Qo as guest,Xo as guests,Ze as guests_admin,xo as item,Ro as items,Io as link,Vo as links,Si as local,Wa as logout,ce as manager,_i as me,te as member,se as members,fo as modified,Oo as modify,Go as move,j as nb_actions,m as nb_active_tasks,h as nb_elements,b as nb_messages,S as nb_notifications,Lo as nb_selections,y as nb_tasks,yi as never,Na as no,_o as no_selection,p as no_task,oa as none,Ca as offline,k as one_active_task,g as one_message,f as one_notification,Eo as one_selection,w as one_task,ie as online,_e as personal_groups_admin,ve as personal_space,fi as public,$a as recent,fe as recents,Ni as remote,pi as scheduler_unit_day,zi as scheduler_unit_hour,ui as scheduler_unit_minute,c as search,si as secure,Ra as seq,Ko as share,Pe as shared,Te as shares,De as shares_access,We as shares_admin,Ge as spaces,Ae as spaces_access,Ce as spaces_admin,za as suspended,zo as synchronization,gi as to,lo as trash_multiple_files,so as trash_one_file,Oe as unanchored,K as user,I as users,Re as webdav,xe as webdav_access,Fo as write,Sa as yes};
@@ -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-ZERBTNFW.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.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"./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};