@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.
- package/CHANGELOG.md +41 -4
- package/environment/environment.dist.yaml +15 -5
- package/package.json +18 -19
- package/server/app.bootstrap.js +1 -1
- package/server/app.bootstrap.js.map +1 -1
- package/server/app.constants.js +3 -2
- package/server/app.constants.js.map +1 -1
- package/server/applications/files/constants/cache.js +2 -5
- package/server/applications/files/constants/cache.js.map +1 -1
- package/server/applications/files/constants/files.js +4 -0
- package/server/applications/files/constants/files.js.map +1 -1
- package/server/applications/files/constants/operations.js +4 -0
- package/server/applications/files/constants/operations.js.map +1 -1
- package/server/applications/files/constants/routes.js +1 -26
- package/server/applications/files/constants/routes.js.map +1 -1
- package/server/applications/files/files.config.js +15 -39
- package/server/applications/files/files.config.js.map +1 -1
- package/server/applications/files/files.controller.js +4 -4
- package/server/applications/files/files.controller.js.map +1 -1
- package/server/applications/files/files.module.js +12 -9
- package/server/applications/files/files.module.js.map +1 -1
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +32 -0
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +280 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +552 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js +40 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js +110 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js +128 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +47 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -0
- package/server/applications/files/{interfaces/only-office-config.interface.js → modules/collabora-online/collabora-online.dtos.js} +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.js → modules/collabora-online/collabora-online.guard.js} +7 -21
- package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +86 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js +10 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js +41 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js +35 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +59 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js +28 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -0
- package/server/applications/files/{decorators → modules/only-office}/only-office-environment.decorator.js +5 -5
- package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/{services/files-only-office-manager.service.js → modules/only-office/only-office-manager.service.js} +101 -97
- package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +477 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.config.js +51 -0
- package/server/applications/files/modules/only-office/only-office.config.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.constants.js +417 -0
- package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.js → modules/only-office/only-office.controller.js} +35 -52
- package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.spec.js → modules/only-office/only-office.controller.spec.js} +24 -21
- package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js +10 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.guard.js +40 -0
- package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.spec.js → modules/only-office/only-office.guard.spec.js} +15 -21
- package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.interface.js +10 -0
- package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.module.js +41 -0
- package/server/applications/files/modules/only-office/only-office.module.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.routes.js +45 -0
- package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.strategy.js → modules/only-office/only-office.strategy.js} +11 -11
- package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +25 -33
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
- package/server/applications/files/services/files-manager.service.js +17 -16
- package/server/applications/files/services/files-manager.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.js +2 -2
- package/server/applications/files/services/files-methods.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.spec.js +5 -5
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
- package/server/applications/files/services/files-recents.service.js +4 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -1
- package/server/applications/files/services/files-scheduler.service.js +24 -5
- package/server/applications/files/services/files-scheduler.service.js.map +1 -1
- package/server/applications/files/utils/files.js +10 -2
- package/server/applications/files/utils/files.js.map +1 -1
- package/server/applications/links/constants/routes.js +5 -0
- package/server/applications/links/constants/routes.js.map +1 -1
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
- package/server/applications/links/links.controller.js +25 -5
- package/server/applications/links/links.controller.js.map +1 -1
- package/server/applications/links/services/links-manager.service.js +43 -21
- package/server/applications/links/services/links-manager.service.js.map +1 -1
- package/server/applications/links/services/links-manager.service.spec.js +4 -3
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
- package/server/applications/links/services/links-queries.service.js +9 -2
- package/server/applications/links/services/links-queries.service.js.map +1 -1
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.js +3 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
- package/server/applications/shares/services/shares-queries.service.js +1 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -1
- package/server/applications/spaces/constants/spaces.js +2 -2
- package/server/applications/spaces/constants/spaces.js.map +1 -1
- package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
- package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +40 -33
- package/server/applications/spaces/guards/space.guard.js.map +1 -1
- package/server/applications/spaces/guards/space.guard.spec.js +10 -15
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js +9 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
- package/server/applications/webdav/constants/webdav.js +4 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.js +40 -17
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
- package/server/applications/webdav/utils/webdav.js +8 -4
- package/server/applications/webdav/utils/webdav.js.map +1 -1
- package/server/applications/webdav/webdav.controller.js +4 -4
- package/server/applications/webdav/webdav.controller.js.map +1 -1
- package/server/authentication/guards/auth-token-access.guard.js +8 -3
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
- package/server/configuration/config.environment.js +5 -1
- package/server/configuration/config.environment.js.map +1 -1
- package/server/configuration/config.interfaces.js.map +1 -1
- package/static/3rdpartylicenses.txt +507 -507
- package/static/assets/pdfjs/build/pdf.mjs +93 -33
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
- package/static/assets/pdfjs/version +1 -1
- package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
- package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
- package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/viewer.css +1778 -835
- package/static/assets/pdfjs/web/viewer.html +167 -86
- package/static/assets/pdfjs/web/viewer.mjs +1106 -801
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
- package/static/chunk-27V66YJV.js +2 -0
- package/static/{chunk-WJYVS27M.js → chunk-27Z3SYRL.js} +1 -1
- package/static/{chunk-NFIES7BC.js → chunk-2RWLNKZH.js} +1 -1
- package/static/chunk-2YQ4SX3A.js +13 -0
- package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
- package/static/chunk-3QTROEHV.js +1 -0
- package/static/{chunk-ZPI7RQ2S.js → chunk-3RPUQ22U.js} +1 -1
- package/static/{chunk-R6VB3INJ.js → chunk-3WZ6F3LC.js} +1 -1
- package/static/chunk-3ZLBVUCX.js +2 -0
- package/static/{chunk-5HCVWZMA.js → chunk-45AZ6ZML.js} +1 -1
- package/static/chunk-46TJLPJY.js +1 -0
- package/static/chunk-4NIYCYRS.js +2 -0
- package/static/{chunk-XXYMVRSH.js → chunk-4TPFERL6.js} +1 -1
- package/static/{chunk-CAZSNVMS.js → chunk-5O66CLTD.js} +1 -1
- package/static/chunk-6OEOADR6.js +1 -0
- package/static/chunk-6WMXMIE4.js +1 -0
- package/static/{chunk-NK2NMAJI.js → chunk-7VRYTDX4.js} +1 -1
- package/static/{chunk-ASBPYTLT.js → chunk-ARS47O5X.js} +1 -1
- package/static/chunk-B6HQYQYG.js +1 -0
- package/static/chunk-BCN4T5DO.js +2 -0
- package/static/{chunk-PKU4IIIR.js → chunk-CCZWPM7Q.js} +1 -1
- package/static/{chunk-QUSS6SUC.js → chunk-CMNMPG6Z.js} +1 -1
- package/static/{chunk-GDPJRUVU.js → chunk-CSVPAZHK.js} +1 -1
- package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
- package/static/{chunk-Z6RJZIDG.js → chunk-D5FQ72R4.js} +1 -1
- package/static/{chunk-4DF2SQD4.js → chunk-DGCVA6BM.js} +1 -1
- package/static/{chunk-TVJQXN73.js → chunk-DVCN3P7Q.js} +1 -1
- package/static/chunk-E32J777S.js +5 -0
- package/static/{chunk-5NHB7SV3.js → chunk-FIUF2JM4.js} +1 -1
- package/static/{chunk-RJOHDAPM.js → chunk-G3PL6YX3.js} +1 -1
- package/static/chunk-G7RZN7HN.js +1 -0
- package/static/{chunk-DDRGLHOP.js → chunk-GQHXYX6Z.js} +1 -1
- package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
- package/static/{chunk-ZC5ZDCDC.js → chunk-GXWGB7WO.js} +1 -1
- package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
- package/static/{chunk-4KXJ6C4N.js → chunk-HZAB6F4Q.js} +1 -1
- package/static/chunk-I3FR3A45.js +1 -0
- package/static/{chunk-A6J6SOM6.js → chunk-I5SPA4G2.js} +1 -1
- package/static/{chunk-TGHBDJZA.js → chunk-IMFO2MI7.js} +1 -1
- package/static/{chunk-CURVLK7L.js → chunk-JNTNMIUH.js} +1 -1
- package/static/chunk-JRXG43AA.js +2 -0
- package/static/{chunk-XAIOGRBO.js → chunk-KAUCN24H.js} +1 -1
- package/static/chunk-KDUAB76O.js +1 -0
- package/static/chunk-KPOQLDWF.js +1 -0
- package/static/{chunk-HE6EDXWI.js → chunk-KWFELZTM.js} +1 -1
- package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
- package/static/{chunk-U75PLYIJ.js → chunk-LGIVVJDD.js} +1 -1
- package/static/{chunk-JEVBUJQ4.js → chunk-LNLBIJZD.js} +1 -1
- package/static/chunk-LTJNLOX2.js +1 -0
- package/static/{chunk-SDR3UG2F.js → chunk-LZUHREOF.js} +1 -1
- package/static/{chunk-VO4WVT6K.js → chunk-NIR4YE2E.js} +1 -1
- package/static/{chunk-S6YKBWJE.js → chunk-NJJURHX4.js} +1 -1
- package/static/chunk-NNZWSNAW.js +1 -0
- package/static/chunk-NWKBB7J4.js +1 -0
- package/static/chunk-O3YLAEVE.js +3 -0
- package/static/chunk-OUHCDDT6.js +1 -0
- package/static/{chunk-ZRBLCAOK.js → chunk-PDG7DOEF.js} +1 -1
- package/static/chunk-POUWUMC4.js +1 -0
- package/static/{chunk-YTBSB2GE.js → chunk-PPJCVBJH.js} +1 -1
- package/static/{chunk-K3MOXDU5.js → chunk-PQZLR4P3.js} +1 -1
- package/static/chunk-PVYVY3GD.js +1 -0
- package/static/chunk-Q5X5TPAG.js +1 -0
- package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
- package/static/{chunk-A7DSX7VP.js → chunk-R4VMWCM5.js} +1 -1
- package/static/{chunk-27XEAHMV.js → chunk-R7PLNX75.js} +1 -1
- package/static/chunk-RJULB733.js +1 -0
- package/static/{chunk-MBFMTBVJ.js → chunk-RNVPQQKT.js} +5 -5
- package/static/chunk-RTNEBRKJ.js +1 -0
- package/static/{chunk-FXM7XXWA.js → chunk-S3TTWPQA.js} +1 -1
- package/static/{chunk-6VJI4X2A.js → chunk-SDJNZULP.js} +1 -1
- package/static/chunk-SNOOCDJD.js +1 -0
- package/static/chunk-T42BV6TR.js +1 -0
- package/static/{chunk-4OV3SAUS.js → chunk-TNCKNU6I.js} +1 -1
- package/static/{chunk-2LHHXDD5.js → chunk-ULSPQ3HP.js} +1 -1
- package/static/{chunk-4EUHBTWV.js → chunk-UOK3LKSX.js} +1 -1
- package/static/{chunk-7NI353LS.js → chunk-VD5JHSDS.js} +1 -1
- package/static/{chunk-YXWF2DGF.js → chunk-XBKCQCBI.js} +1 -1
- package/static/{chunk-KBWK65KM.js → chunk-XEWLBWFF.js} +1 -1
- package/static/{chunk-FLPZB3OX.js → chunk-XTVNHFKX.js} +1 -1
- package/static/chunk-ZCSHU3D7.js +1 -0
- package/static/{chunk-FRBTL2ER.js → chunk-ZEJLIGAY.js} +1 -1
- package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
- package/static/chunk-ZOMRIN3G.js +2 -0
- package/static/index.html +2 -2
- package/static/main-YKDNJ7LK.js +11 -0
- package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
- package/server/applications/files/constants/only-office.js +0 -531
- package/server/applications/files/constants/only-office.js.map +0 -1
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
- package/server/applications/files/files-only-office.controller.js.map +0 -1
- package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
- package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
- package/static/chunk-2XY4PMI5.js +0 -1
- package/static/chunk-33WFRCUP.js +0 -1
- package/static/chunk-3LVFDMTN.js +0 -1
- package/static/chunk-42L6C5MT.js +0 -1
- package/static/chunk-5WCQBTXW.js +0 -1
- package/static/chunk-A7R246NW.js +0 -1
- package/static/chunk-BSB4VROD.js +0 -2
- package/static/chunk-DHFQIFOF.js +0 -1
- package/static/chunk-DRHPEERW.js +0 -2
- package/static/chunk-FCGTI42I.js +0 -1
- package/static/chunk-H4RLHI3Y.js +0 -1
- package/static/chunk-ITVA26X2.js +0 -2
- package/static/chunk-IUJ4IK26.js +0 -1
- package/static/chunk-L3PDWJZ3.js +0 -3
- package/static/chunk-LBXOAKBD.js +0 -1
- package/static/chunk-LZKI5P5T.js +0 -1
- package/static/chunk-MYM43ENO.js +0 -1
- package/static/chunk-MZBO5PAR.js +0 -1
- package/static/chunk-NAH4V2R6.js +0 -2
- package/static/chunk-O7UXVNR2.js +0 -1
- package/static/chunk-PCFH5HCI.js +0 -2
- package/static/chunk-SRBOO7AO.js +0 -1
- package/static/chunk-UUX3M6DC.js +0 -1
- package/static/chunk-VJ2HWQRJ.js +0 -5
- package/static/chunk-VZPCXSRG.js +0 -2
- package/static/chunk-W72JYHOH.js +0 -1
- package/static/chunk-XHQEF2IX.js +0 -1
- package/static/chunk-XKEBQNQJ.js +0 -1
- package/static/chunk-ZERBTNFW.js +0 -13
- package/static/main-FE6GWZXU.js +0 -11
- /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",i="Login",r="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Abrir",c="Filtrar",l="Filtros",u="pesquisar",p="Pesquisar",m="Ver",h="Nenhuma tarefa",v="{{ nb }} tarefa conclu\xEDda",f="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",b="{{ nba }} tarefas em andamento de {{ nb }}",y="{{nb}} item(ns)",w="{{nb}} a\xE7\xE3o(\xF5es)",x="{{ nb }} nova mensagem",S="{{ nb }} novas mensagens",A="{{ nb }} notifica\xE7\xE3o n\xE3o lida",C="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",E="Aplicativo",q="aplicativo",T="Notifica\xE7\xE3o",N="Notifica\xE7\xF5es",k="Evento",z="Arquivo",D="Arquivos",O="Pessoal",P="Externo",L="Grupos",U="Grupo",_="grupo",F="grupos",R="Vis\xEDvel",M="Privado",G="Isolado",V="Adicionar",j="Administrador",I="Administra\xE7\xE3o",Y="Usu\xE1rio",W="usu\xE1rio",B="Usu\xE1rios",Q="usu\xE1rios",H="conta",K="Conta",J="E-mail",X="Status",Z="Fun\xE7\xE3o",$="IP",ee="Visto",oe="Conex\xE3o",ae="Conex\xF5es",ie="Pouco espa\xE7o dispon\xEDvel ({{ nb }}%)",re="online",se="Ilimitado",ne="membro",te="membros",de="Membro",ce="Membros",le="Gerente",ue="gerente",pe="Gerentes",me="Gerar",he="Importar",ve="Configura\xE7\xE3o",fe="Aplicativos",ge="aplicativos",be="Avatar",ye="Atualizar",we="Idioma",xe="In\xEDcio",Se="Recentes",Ae="recentes",Ce="Lixeira",Ee="Compartilhamentos",qe="Compartilhar",Te="compartilhamentos",Ne="compartilhado",ke="Acesso ao espa\xE7o pessoal",ze="Acesso aos espa\xE7os",De="Administra\xE7\xE3o de espa\xE7os",Oe="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",Le="Administra\xE7\xE3o de convidados",Ue="Administra\xE7\xE3o de grupos pessoais",_e="Acesso pelo aplicativo desktop",Fe="Sincroniza\xE7\xE3o pelo aplicativo desktop",Re="Acesso WebDAV",Me="WebDAV",Ge="Espa\xE7o",Ve="Espa\xE7os",je="espa\xE7os",Ie="ancorou",Ye="desancorou",We="Local",Be="Ancorado",Qe="Configura\xE7\xF5es",He="Op\xE7\xF5es",Ke="Nome",Je="Baixar",Xe="Mover",Ze="Copiar",$e="Renomear",eo="Editar",oo="Remover",ao="\xC1rea de transfer\xEAncia",io="Atualizar",ro="Esvaziar",so="Lista",no="Exibi\xE7\xE3o",to="Deseja mover <b>{{arg}}</b> para a lixeira?",co="Deseja excluir permanentemente <b>{{arg}}</b>?",lo="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",uo="Deseja excluir permanentemente estes <b>{{arg}} arquivos</b>?",po="sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xE3o",ho="Sincroniza\xE7\xF5es",vo="Sincronizar",fo="Sync",go="Sincronizado",bo="Comprimir",yo="Descomprimir",wo="Info",xo="Tamanho",So="Modificado",Ao="modificado",Co="Tarefas",Eo="Texto",qo="Elementos",To="Novo",No="Pasta",ko="pasta",zo="arquivo",Do="arquivos",Oo="diret\xF3rio",Po="diret\xF3rios",Lo="Total",Uo="nenhum item selecionado",_o="{{ nb }} item selecionado",Fo="{{ nb }} itens selecionados",Ro="item",Mo="itens",Go="criar",Vo="escrever",jo="mover",Io="excluir",Yo="modificar",Wo="compartilhamento",Bo="Link",Qo="link",Ho="Links",Ko="links",Jo="Convidado",Xo="Convidados",Zo="convidado",$o="convidados",ea="Expirado",oa="expirado",aa="nenhum",ia="Permiss\xF5es",ra="Propriet\xE1rio",sa="Eu",na="Compartilhado",ta="Criado",da="Data",ca="Caminho",la="ativo",ua="Ativo",pa="suspenso",ma="Tipo",ha="Descri\xE7\xE3o",va="Visibilidade",fa="Desconhecido",ga="Expira\xE7\xE3o",ba="Acesso",ya="Acessado",wa="Comentar",xa="Coment\xE1rios",Sa="coment\xE1rios",Aa="comentou",Ca="sim",Ea="n\xE3o",qa="Cliente",Ta="Clientes",Na="dispon\xEDvel",ka="ocupado",za="ausente",Da="offline",Oa="sair",Pa="dias",La="dia",Ua="Excluir",_a="Agendador",Fa="paralelo",Ra="sequencial",Ma="Transfer\xEAncias",Ga="Simular",Va="Redefinir",ja="Navegar",Ia="A\xE7\xE3o",Ya="Adicionado",Wa="Removido",Ba="Copiado",Qa="Movido",Ha="Filtrado",Ka="Erro",Ja="Servidor",Xa="Dire\xE7\xE3o",Za="Conflito",$a="recentes",ei="Origem",oi="Destino",ai="Modo",ii="Sequencialmente",ri="Paralelamente",si="r\xE1pido",ni="seguro",ti="ativado",di="Ativar",ci="desativado",li="Desativar",ui="horas",pi="minutos",mi="dias",hi="ambos",vi="nunca",fi="Assistente",gi="Pr\xF3ximo",bi="Anterior",yi="Concluir",wi="para",xi="Reposit\xF3rio",Si="p\xFAblico",Ai="local",Ci="remoto",Ei="Site",qi="Documenta\xE7\xE3o",Ti="Vers\xF5es",Ni="Seguran\xE7a",ki="Gerenciar",zi="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",Di="Salvar",Oi="Desfazer",Pi="Refazer",Li="eu",Ui="Desbloquear",_i="Bloqueio",Fi="Exclusivo",Ri="Tela cheia",Mi="Dimens\xF5es",Gi="Prefer\xEAncias",Vi={"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:i,Password:r,"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,Open:d,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:c,Filters:l,search:u,Search:p,"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:m,no_task:h,one_task:v,nb_tasks:f,one_active_task:g,nb_active_tasks:b,nb_elements:y,nb_actions:w,one_message:x,nb_messages:S,one_notification:A,nb_notifications:C,Application:E,application:q,"application and email":"aplicativo e e-mail",Notification:T,Notifications:N,Event:k,File:z,Files:D,"Personal files":"Arquivos pessoais",Personal:O,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:L,Group:U,group:_,"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:F,"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:M,Isolated:G,"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:j,Administration:I,User:Y,user:W,Users:B,users:Q,"New user":"Novo usu\xE1rio",account:H,Account:K,"Account status":"Status da conta",Email:J,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:X,Role:Z,IP:$,"IP Addresses":"Endere\xE7os IP",Seen:ee,Connection:oe,Connections:ae,"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:ie,online:re,"Online users":"Usu\xE1rios online",Unlimited:se,member:ne,members:te,Member:de,Members:ce,Manager:le,manager:ue,Managers:pe,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:me,Import:he,Configuration:ve,Applications:fe,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Apenas o grupo ser\xE1 exclu\xEDdo; os membros n\xE3o far\xE3o mais parte dele.",Avatar:be,Update:ye,"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:we,"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:xe,Recents:Se,recents:Ae,Trash:Ce,"trash bins":"lixeiras",Shares:Ee,Share:qe,shares:Te,shared:Ne,personal_space:ke,spaces_access:ze,spaces_admin:De,shares_access:Oe,shares_admin:Pe,guests_admin:Le,personal_groups_admin:Ue,desktop_app_access:_e,desktop_app_sync:Fe,webdav_access:Re,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Me,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Ge,Spaces:Ve,spaces:je,"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:Ie,unanchored:Ye,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:We,"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 access is protected by a password":"Este acesso \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:Be,"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:Qe,Options:He,Name:Ke,Download:Je,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy \xB7 Move":"Copiar \xB7 Mover",Move:Xe,"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:Ze,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:$e,Edit:eo,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:oo,Clipboard:ao,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:io,Empty:ro,List:so,Display:no,"Sort by":"Ordenar por",trash_one_file:to,delete_one_file:co,trash_multiple_files:lo,delete_multiple_files:uo,"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:po,Synchronization:mo,Synchronizations:ho,Synchronize:vo,Sync:fo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"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:bo,Decompress:yo,"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:wo,Size:xo,Modified:So,modified:Ao,Tasks:Co,"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:Eo,"Rich Text Format":"Rich Text Format","Forbidden characters":"Caracteres proibidos",Elements:qo,"Malformed URL":"URL malformada",New:To,Folder:No,folder:ko,file:zo,files:Do,directory:Oo,directories:Po,Total:Lo,no_selection:Uo,one_selection:_o,nb_selections:Fo,"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:Mo,create:Go,write:Vo,move:jo,delete:Io,modify:Yo,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Wo,"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:Bo,link:Qo,Links:Ho,links:Ko,"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:Jo,Guests:Xo,guest:Zo,guests:$o,"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:ea,expired:oa,none:aa,"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:ia,"No permissions":"Sem permiss\xF5es",Owner:ra,Me:sa,Shared:na,Created:ta,"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:da,Path:ca,active:la,Active:ua,suspended:pa,"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:ma,Description:ha,Visibility:va,"Unknown error !":"Erro desconhecido!",Unknown:fa,Expiration:ga,"Limit access":"Limitar acesso","Current access count":"Contagem atual de acessos",Access:ba,Accessed:ya,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:wa,Comments:xa,comments:Sa,commented:Aa,"No recent comments":"Sem coment\xE1rios recentes","Write a comment ...":"Escreva um coment\xE1rio...",yes:Ca,no:Ea,Client:qa,Clients:Ta,available:Na,busy:ka,absent:za,offline:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Fa\xE7a login novamente",logout:Oa,days:Pa,day:La,Delete:Ua,Scheduler:_a,async:Fa,seq:Ra,Transfers:Ma,Simulate:Ga,Reset:Va,Browse:ja,Action:Ia,Added:Ya,Removed:Wa,Copied:Ba,Moved:Qa,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"Mostrar arquivos filtrados",recent:$a,Source:ei,Destination:oi,Mode:ai,Sequentially:ii,Asynchronously:ri,fast:si,secure:ni,enabled:ti,Enable:di,disabled:ci,Disable:li,scheduler_unit_hour:ui,scheduler_unit_minute:pi,scheduler_unit_day:mi,"You must have permission to modify the server folder to choose a different sync mode":"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:hi,never:vi,"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:fi,Next:gi,Previous:bi,Done:yi,"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:wi,"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:xi,public:Si,local:Ai,remote:Ci,"System requirements":"Requisitos do sistema","Feature not enabled":"Recurso n\xE3o habilitado",Website:Ei,Documentation:qi,Versions:Ti,Security:Ni,"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:ki,"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:zi,Save:Di,"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:Oi,Redo:Pi,me:Li,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:Ui,Lock:_i,Exclusive:Fi,"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:Ri,Dimensions:Mi,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides","Unable to load OnlyOffice editor":"N\xE3o foi poss\xEDvel carregar o editor OnlyOffice","The document server may be unreachable or the configuration is invalid":"O servidor de documentos pode estar inacess\xEDvel ou a configura\xE7\xE3o \xE9 inv\xE1lida","OnlyOffice editor failed to initialize":"Falha ao inicializar o editor OnlyOffice","DocsAPI not available":"DocsAPI n\xE3o est\xE1 dispon\xEDvel","Unknown OnlyOffice error":"Erro desconhecido do OnlyOffice","No editor found":"Nenhum editor encontrado","Choose which editor you want to use to open this document.":"Escolha qual editor voc\xEA deseja usar para abrir este documento.","Open-source office suite built on LibreOffice.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto baseada no LibreOffice.","Open-source office suite for Microsoft Office.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto para Microsoft Office.","Remember my choice for next time":"Lembrar minha escolha para a pr\xF3xima vez","Document editor":"Editor de documentos","Ask Me":"Perguntar sempre","Used when both editors support the file type.":"Usado quando ambos os editores suportam o tipo de arquivo.","Enable content indexation for personal files.":"Ativar indexa\xE7\xE3o de conte\xFAdo para arquivos pessoais.",Preferences:Gi};export{ba as Access,ya as Accessed,K as Account,Ia as Action,ua as Active,V as Add,Ya as Added,I as Administration,j as Administrator,Be as Anchored,E as Application,fe as Applications,ri as Asynchronously,a as Authentication,be as Avatar,ja as Browse,n as Cancel,qa as Client,Ta as Clients,ao as Clipboard,t as Close,wa as Comment,xa as Comments,bo as Compress,ve as Configuration,s as Confirm,Za as Conflict,oe as Connection,ae as Connections,Ba as Copied,Ze as Copy,ta as Created,da as Date,yo as Decompress,Ua as Delete,ha as Description,oi as Destination,Mi as Dimensions,Xa as Direction,li as Disable,no as Display,qi as Documentation,yi as Done,Je as Download,eo as Edit,qo as Elements,J as Email,ro as Empty,di as Enable,Ka as Error,k as Event,Fi as Exclusive,ga as Expiration,ea as Expired,P as External,z as File,D as Files,c as Filter,Ha as Filtered,l as Filters,No as Folder,Ri as Fullscreen,me as Generate,U as Group,L as Groups,Jo as Guest,Xo as Guests,xe as Home,$ as IP,he as Import,wo as Info,G as Isolated,we as Language,Bo as Link,Ho as Links,so as List,We as Location,_i as Lock,i as Login,ki as Manage,le as Manager,pe as Managers,sa as Me,de as Member,ce as Members,ai as Mode,So as Modified,Xe as Move,Qa as Moved,Ke as Name,To as New,gi as Next,T as Notification,N as Notifications,d as Open,He as Options,ra as Owner,r as Password,ca as Path,ia as Permissions,O as Personal,Gi as Preferences,bi as Previous,M as Private,Se as Recents,Pi as Redo,io as Refresh,oo as Remove,Wa as Removed,$e as Rename,zi as RenameFileToExisting,xi as Repository,Va as Reset,Z as Role,Di as Save,_a as Scheduler,p as Search,Ni as Security,m as See,ee as Seen,ii as Sequentially,Ja as Server,Qe as Settings,qe as Share,na as Shared,Ee as Shares,Ga as Simulate,xo as Size,ei as Source,Ge as Space,Ve as Spaces,X as Status,fo as Sync,go as Synced,mo as Synchronization,ho as Synchronizations,vo as Synchronize,Co as Tasks,Eo as Text,Lo as Total,Ma as Transfers,Ce as Trash,ma as Type,Oi as Undo,fa as Unknown,se as Unlimited,Ui as Unlock,ye as Update,Y as User,B as Users,Ti as Versions,va as Visibility,R as Visible,Ei as Website,fi as Wizard,za as absent,H as account,la as active,Ie as anchored,q as application,ge as applications,Fa as async,Na as available,ie as available_space_is_low,hi as both,ka as busy,Aa as commented,Sa as comments,Go as create,La as day,Pa as days,Vi as default,Io as delete,uo as delete_multiple_files,co as delete_one_file,_e as desktop_app_access,Fe as desktop_app_sync,Po as directories,Oo as directory,ci as disabled,ti as enabled,oa as expired,si as fast,zo as file,Do as files,ko as folder,_ as group,F as groups,Zo as guest,$o as guests,Le as guests_admin,Ro as item,Mo as items,Qo as link,Ko as links,Ai as local,Oa as logout,ue as manager,Li as me,ne as member,te as members,Ao as modified,Yo as modify,jo as move,w as nb_actions,b as nb_active_tasks,y as nb_elements,S as nb_messages,C as nb_notifications,Fo as nb_selections,f as nb_tasks,vi as never,Ea as no,Uo as no_selection,h as no_task,aa as none,Da as offline,g as one_active_task,x as one_message,A as one_notification,_o as one_selection,v as one_task,re as online,Ue as personal_groups_admin,ke as personal_space,Si as public,$a as recent,Ae as recents,Ci as remote,mi as scheduler_unit_day,ui as scheduler_unit_hour,pi as scheduler_unit_minute,u as search,ni as secure,Ra as seq,Wo as share,Ne as shared,Te as shares,Oe as shares_access,Pe as shares_admin,je as spaces,ze as spaces_access,De as spaces_admin,pa as suspended,po as synchronization,wi as to,lo as trash_multiple_files,to as trash_one_file,Ye as unanchored,W as user,Q as users,Me as webdav,Re as webdav_access,Vo as write,Ca as yes};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{d as c}from"./chunk-
|
|
1
|
+
import{d as c}from"./chunk-G7RZN7HN.js";import{ca as a,da as O,ia as n,la as s,sa as P,va as o,ya as Q,za as i}from"./chunk-2YQ4SX3A.js";import"./chunk-KAVP6UXH.js";var p=a({String:O.string,Number:O.number,"True False":O.bool,PropertyName:O.propertyName,Null:O.null,", :":O.separator,"[ ]":O.squareBracket,"{ }":O.brace}),g=c.deserialize({version:14,states:"$bOVQPOOOOQO'#Cb'#CbOnQPO'#CeOvQPO'#ClOOQO'#Cr'#CrQOQPOOOOQO'#Cg'#CgO}QPO'#CfO!SQPO'#CtOOQO,59P,59PO![QPO,59PO!aQPO'#CuOOQO,59W,59WO!iQPO,59WOVQPO,59QOqQPO'#CmO!nQPO,59`OOQO1G.k1G.kOVQPO'#CnO!vQPO,59aOOQO1G.r1G.rOOQO1G.l1G.lOOQO,59X,59XOOQO-E6k-E6kOOQO,59Y,59YOOQO-E6l-E6l",stateData:"#O~OeOS~OQSORSOSSOTSOWQO_ROgPO~OVXOgUO~O^[O~PVO[^O~O]_OVhX~OVaO~O]bO^iX~O^dO~O]_OVha~O]bO^ia~O",goto:"!kjPPPPPPkPPkqwPPPPk{!RPPP!XP!e!hXSOR^bQWQRf_TVQ_Q`WRg`QcZRicQTOQZRQe^RhbRYQR]R",nodeNames:"\u26A0 JsonText True False Null Number String } { Object Property PropertyName : , ] [ Array",maxTerm:25,nodeProps:[["isolate",-2,6,11,""],["openedBy",7,"{",14,"["],["closedBy",8,"}",15,"]"]],propSources:[p],skippedNodes:[0],repeatNodeCount:2,tokenData:"(|~RaXY!WYZ!W]^!Wpq!Wrs!]|}$u}!O$z!Q!R%T!R![&c![!]&t!}#O&y#P#Q'O#Y#Z'T#b#c'r#h#i(Z#o#p(r#q#r(w~!]Oe~~!`Wpq!]qr!]rs!xs#O!]#O#P!}#P;'S!];'S;=`$o<%lO!]~!}Og~~#QXrs!]!P!Q!]#O#P!]#U#V!]#Y#Z!]#b#c!]#f#g!]#h#i!]#i#j#m~#pR!Q![#y!c!i#y#T#Z#y~#|R!Q![$V!c!i$V#T#Z$V~$YR!Q![$c!c!i$c#T#Z$c~$fR!Q![!]!c!i!]#T#Z!]~$rP;=`<%l!]~$zO]~~$}Q!Q!R%T!R![&c~%YRT~!O!P%c!g!h%w#X#Y%w~%fP!Q![%i~%nRT~!Q![%i!g!h%w#X#Y%w~%zR{|&T}!O&T!Q![&Z~&WP!Q![&Z~&`PT~!Q![&Z~&hST~!O!P%c!Q![&c!g!h%w#X#Y%w~&yO[~~'OO_~~'TO^~~'WP#T#U'Z~'^P#`#a'a~'dP#g#h'g~'jP#X#Y'm~'rOR~~'uP#i#j'x~'{P#`#a(O~(RP#`#a(U~(ZOS~~(^P#f#g(a~(dP#i#j(g~(jP#X#Y(m~(rOQ~~(wOW~~(|OV~",tokenizers:[0],topRules:{JsonText:[0,1]},tokenPrec:0});var h=()=>t=>{try{JSON.parse(t.state.doc.toString())}catch(e){if(!(e instanceof SyntaxError))throw e;let r=m(e,t.state.doc);return[{from:r,message:e.message,severity:"error",to:r}]}return[]};function m(t,e){let r;return(r=t.message.match(/at position (\d+)/))?Math.min(+r[1],e.length):(r=t.message.match(/at line (\d+) column (\d+)/))?Math.min(e.line(+r[1]).from+ +r[2]-1,e.length):0}var l=n.define({name:"json",parser:g.configure({props:[P.add({Object:o({except:/^\s*\}/}),Array:o({except:/^\s*\]/})}),Q.add({"Object Array":i})]}),languageData:{closeBrackets:{brackets:["[","{",'"']},indentOnInput:/^\s*[\}\]]$/}});function S(){return new s(l)}export{S as json,l as jsonLanguage,h as jsonParseLinter};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Aa as k,Ac as B,Bb as O,Eb as b,Gb as _,Gc as K,Hb as V,Ib as P,Ic as U,Jc as $,Oa as f,Qa as y,Qc as H,Ra as E,Rb as p,Ta as R,Tb as I,Ub as N,Wa as D,Xa as o,Ya as x,ab as L,bb as S,cb as T,db as F,ea as M,fa as A,fb as j,gc as z,ja as w,kb as C,oa as v,pa as g,rb as u,sb as h,tb as m}from"./chunk-
|
|
1
|
+
import{Aa as k,Ac as B,Bb as O,Eb as b,Gb as _,Gc as K,Hb as V,Ib as P,Ic as U,Jc as $,Oa as f,Qa as y,Qc as H,Ra as E,Rb as p,Ta as R,Tb as I,Ub as N,Wa as D,Xa as o,Ya as x,ab as L,bb as S,cb as T,db as F,ea as M,fa as A,fb as j,gc as z,ja as w,kb as C,oa as v,pa as g,rb as u,sb as h,tb as m}from"./chunk-D55YR5X7.js";import{n as c}from"./chunk-DM4NXKEP.js";var ne=(()=>{let s=class s{constructor(){this.cdRef=w(B),this.ngZone=w(E)}format(e){return e.from(c(),this.lastOmitSuffix)}transform(e,t,i){return this.hasChanged(e,t)?(this.lastTime=this.getTime(e),this.lastValue=e,this.lastOmitSuffix=t,this.lastLocale=this.getLocale(e),this.formatFn=i||this.format.bind(this),this.removeTimer(),this.createTimer(),this.lastText=this.formatFn(c(e))):this.createTimer(),this.lastText}ngOnDestroy(){this.removeTimer()}createTimer(){if(this.currentTimer)return;let e=c(this.lastValue),t=this.getSecondsUntilUpdate(e)*1e3;this.currentTimer=this.ngZone.runOutsideAngular(()=>typeof window<"u"?window.setTimeout(()=>{this.lastText=this.formatFn(c(this.lastValue)),this.currentTimer=null,this.ngZone.run(()=>this.cdRef.markForCheck())},t):null)}removeTimer(){this.currentTimer&&(window.clearTimeout(this.currentTimer),this.currentTimer=null)}getSecondsUntilUpdate(e){let t=Math.abs(c().diff(e,"minute"));return t<1?1:t<60?30:t<180?300:3600}hasChanged(e,t){return this.getTime(e)!==this.lastTime||this.getLocale(e)!==this.lastLocale||t!==this.lastOmitSuffix}getTime(e){return e instanceof Date?e.getTime():c.isDayjs(e)?e.valueOf():c(e).valueOf()}getLocale(e){return c.isDayjs(e)?e.locale():c.locale()}};s.\u0275fac=function(t){return new(t||s)},s.\u0275pipe=F({name:"amTimeAgo",type:s,pure:!1});let n=s;return n})();var q=["*"],J=n=>["nav-item",n];function G(n,s){if(n&1){let l=O();h(0,"span",7),b("click",function(t){v(l);let i=_().$implicit,r=_();return t.preventDefault(),g(r.removeTab(i))}),I(1," \u274C"),m()}}function Q(n,s){if(n&1){let l=O();h(0,"li",3),b("keydown",function(t){let i=v(l).index,r=_();return g(r.keyNavActions(t,i))}),h(1,"a",4),b("click",function(){let t=v(l).$implicit;return g(t.active=!0)}),h(2,"span",5),I(3),m(),j(4,G,2,0,"span",6),m()()}if(n&2){let l=s.$implicit;p("active",l.active)("disabled",l.disabled),u("ngClass",z(15,J,l.customClass||"")),f(),p("active",l.active)("disabled",l.disabled),C("aria-controls",l.id?l.id:"")("aria-selected",!!l.active)("id",l.id?l.id+"-link":""),f(),u("ngTransclude",l.headingRef),f(),N(l.heading),f(),u("ngIf",l.removable)}}var W=(()=>{let s=class s{set ngTransclude(e){this._ngTransclude=e,e&&this.viewRef.createEmbeddedView(e)}get ngTransclude(){return this._ngTransclude}constructor(e){this.viewRef=e}};s.\u0275fac=function(t){return new(t||s)(o(x))},s.\u0275dir=T({type:s,selectors:[["","ngTransclude",""]],inputs:{ngTransclude:"ngTransclude"}});let n=s;return n})(),X=(()=>{let s=class s{constructor(){this.type="tabs",this.isKeysAllowed=!0,this.ariaLabel="Tabs"}};s.\u0275fac=function(t){return new(t||s)},s.\u0275prov=M({token:s,factory:s.\u0275fac,providedIn:"root"});let n=s;return n})(),Y=(()=>{let s=class s{get vertical(){return this._vertical}set vertical(e){this._vertical=e,this.setClassMap()}get justified(){return this._justified}set justified(e){this._justified=e,this.setClassMap()}get type(){return this._type}set type(e){this._type=e,this.setClassMap()}get isKeysAllowed(){return this._isKeysAllowed}set isKeysAllowed(e){this._isKeysAllowed=e}constructor(e,t,i){this.renderer=t,this.elementRef=i,this.clazz=!0,this.tabs=[],this.classMap={},this.ariaLabel="Tabs",this.isDestroyed=!1,this._vertical=!1,this._justified=!1,this._type="tabs",this._isKeysAllowed=!0,this.defaultActivationScheduled=!1,Object.assign(this,e)}ngOnDestroy(){this.isDestroyed=!0}addTab(e){if(e.tabOrder!==void 0?this.insertTabByOrder(e):this.tabs.push(e),e.active){e.active=!0;return}this.defaultActivationScheduled||(this.defaultActivationScheduled=!0,Promise.resolve().then(()=>{if(this.defaultActivationScheduled=!1,!this.tabs.length||this.tabs.some(i=>!!i.active))return;let t=this.tabs.find(i=>!i.disabled);t&&(t.active=!0)}))}insertTabByOrder(e){let t=this.tabs.length;for(let i=0;i<this.tabs.length;i++){let r=this.tabs[i];if(r.tabOrder!==void 0&&e.tabOrder!==void 0&&e.tabOrder<r.tabOrder){t=i;break}if(r.tabOrder===void 0){t=i;break}}this.tabs.splice(t,0,e)}removeTab(e,t={reselect:!0,emit:!0}){let i=this.tabs.indexOf(e);if(!(i===-1||this.isDestroyed)){if(t.reselect&&e.active&&this.hasAvailableTabs(i)){let r=this.getClosestTabIndex(i);this.tabs[r].active=!0}t.emit&&e.removed.emit(e),this.tabs.splice(i,1),e.elementRef.nativeElement.parentNode&&this.renderer.removeChild(e.elementRef.nativeElement.parentNode,e.elementRef.nativeElement)}}keyNavActions(e,t){if(!this.isKeysAllowed)return;let i=Array.from(this.elementRef.nativeElement.querySelectorAll(".nav-link"));if(e.keyCode===13||e.key==="Enter"||e.keyCode===32||e.key==="Space"){e.preventDefault(),i[t%i.length].click();return}if(e.keyCode===39||e.key==="RightArrow"){let r,a=1;do r=i[(t+a)%i.length],a++;while(r.classList.contains("disabled"));r.focus();return}if(e.keyCode===37||e.key==="LeftArrow"){let r,a=1,d=t;do d-a<0?(d=i.length-1,r=i[d],a=0):r=i[d-a],a++;while(r.classList.contains("disabled"));r.focus();return}if(e.keyCode===36||e.key==="Home"){e.preventDefault();let r,a=0;do r=i[a%i.length],a++;while(r.classList.contains("disabled"));r.focus();return}if(e.keyCode===35||e.key==="End"){e.preventDefault();let r,a=1,d=t;do d-a<0?(d=i.length-1,r=i[d],a=0):r=i[d-a],a++;while(r.classList.contains("disabled"));r.focus();return}if((e.keyCode===46||e.key==="Delete")&&this.tabs[t].removable){if(this.removeTab(this.tabs[t]),i[t+1]){i[(t+1)%i.length].focus();return}i[i.length-1]&&i[0].focus()}}getClosestTabIndex(e){let t=this.tabs.length;if(!t)return-1;for(let i=1;i<=t;i+=1){let r=e-i,a=e+i;if(this.tabs[r]&&!this.tabs[r].disabled)return r;if(this.tabs[a]&&!this.tabs[a].disabled)return a}return-1}hasAvailableTabs(e){let t=this.tabs.length;if(!t)return!1;for(let i=0;i<t;i+=1)if(!this.tabs[i].disabled&&i!==e)return!0;return!1}setClassMap(){this.classMap={"nav-stacked":this.vertical,"flex-column":this.vertical,"nav-justified":this.justified,[`nav-${this.type}`]:!0}}};s.\u0275fac=function(t){return new(t||s)(o(X),o(D),o(k))},s.\u0275cmp=L({type:s,selectors:[["tabset"]],hostVars:2,hostBindings:function(t,i){t&2&&p("tab-container",i.clazz)},inputs:{vertical:"vertical",justified:"justified",type:"type"},ngContentSelectors:q,decls:4,vars:3,consts:[["role","tablist",1,"nav",3,"click","ngClass"],[3,"ngClass","active","disabled","keydown",4,"ngFor","ngForOf"],[1,"tab-content"],[3,"keydown","ngClass"],["href","javascript:void(0);","role","tab",1,"nav-link",3,"click"],[3,"ngTransclude"],["class","bs-remove-tab",3,"click",4,"ngIf"],[1,"bs-remove-tab",3,"click"]],template:function(t,i){t&1&&(V(),h(0,"ul",0),b("click",function(a){return a.preventDefault()}),j(1,Q,5,17,"li",1),m(),h(2,"div",2),P(3),m()),t&2&&(u("ngClass",i.classMap),C("aria-label",i.ariaLabel),f(),u("ngForOf",i.tabs))},dependencies:[K,U,W,$],styles:["[_nghost-%COMP%] .nav-tabs[_ngcontent-%COMP%] .nav-item.disabled[_ngcontent-%COMP%] a.disabled[_ngcontent-%COMP%]{cursor:default}"]});let n=s;return n})(),ee=(()=>{let s=class s{get customClass(){return this._customClass}set customClass(e){this.customClass&&this.customClass.split(" ").forEach(t=>{this.renderer.removeClass(this.elementRef.nativeElement,t)}),this._customClass=e?e.trim():"",this.customClass&&this.customClass.split(" ").forEach(t=>{this.renderer.addClass(this.elementRef.nativeElement,t)})}get active(){return this._active}set active(e){if(this._active!==e){if(this.disabled&&e||!e){this._active&&!e&&(this.deselect.emit(this),this._active=e);return}this._active=e,this.selectTab.emit(this),this.tabset.tabs.forEach(t=>{t!==this&&(t.active=!1)})}}get ariaLabelledby(){return this.id?`${this.id}-link`:""}constructor(e,t,i){this.elementRef=t,this.renderer=i,this.disabled=!1,this.removable=!1,this.selectTab=new y,this.deselect=new y,this.removed=new y,this.addClass=!0,this.role="tabpanel",this._active=!1,this._customClass="",this.tabset=e}ngOnInit(){this.removable=!!this.removable,this.tabset.addTab(this)}ngOnDestroy(){this.tabset.removeTab(this,{reselect:!1,emit:!1})}};s.\u0275fac=function(t){return new(t||s)(o(Y),o(k),o(D))},s.\u0275dir=T({type:s,selectors:[["tab"],["","tab",""]],hostVars:7,hostBindings:function(t,i){t&2&&(C("id",i.id)("role",i.role)("aria-labelledby",i.ariaLabelledby),p("active",i.active)("tab-pane",i.addClass))},inputs:{heading:"heading",id:"id",disabled:"disabled",removable:"removable",tabOrder:"tabOrder",customClass:"customClass",active:"active"},outputs:{selectTab:"selectTab",deselect:"deselect",removed:"removed"},exportAs:["tab"]});let n=s;return n})(),be=(()=>{let s=class s{constructor(e,t){t.headingRef=e}};s.\u0275fac=function(t){return new(t||s)(o(R),o(ee))},s.\u0275dir=T({type:s,selectors:[["","tabHeading",""]]});let n=s;return n})(),pe=(()=>{let s=class s{static forRoot(){return{ngModule:s,providers:[]}}};s.\u0275fac=function(t){return new(t||s)},s.\u0275mod=S({type:s}),s.\u0275inj=A({imports:[H]});let n=s;return n})();export{Y as a,ee as b,be as c,pe as d,ne as e};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import"./chunk-KAVP6UXH.js";var s="Authentification",i="Identifiant",o="Mot de passe",t="Confirmer",n="Annuler",a="Fermer",c="Ouvrir",u="Filtrer",l="Filtres",d="rechercher",p="Rechercher",m="Voir",h="Aucune t\xE2che",f="{{ nb }} t\xE2che termin\xE9e",v="{{ nb }} t\xE2ches termin\xE9es",g="{{ nba }} t\xE2che en cours sur {{ nb }}",b="{{ nba }} t\xE2ches en cours sur {{ nb }}",y="{{nb}} \xE9l\xE9ment(s)",S="{{nb}} action(s)",w="{{ nb }} nouveau message",A="{{ nb }} nouveaux messages",C="{{ nb }} notification non lue",x="{{ nb }} notifications non lues",T="Application",L="application",E="Notification",P="Notifications",D="\xC9v\xE8nement",z="Fichier",N="Fichiers",k="Personnels",M="Externe",j="Groupes",U="Groupe",_="groupe",R="groupes",I="Visible",q="Priv\xE9",V="Isol\xE9",G="Ajouter",F="Administrateur",O="Administration",Y="Utilisateur",W="utilisateur",Q="Utilisateurs",B="utilisateurs",H="compte",K="Compte",J="Email",X="Status",Z="R\xF4le",$="IP",ee="Vu",re="Connexion",se="Connexions",ie="Espace disponible faible ( {{ nb }}% )",oe="en ligne",te="Illimit\xE9",ne="membre",ae="membres",ce="Membre",ue="Membres",le="Manageur",de="manageur",pe="Manageurs",me="G\xE9n\xE9rer",he="Importer",fe="Configuration",ve="Applications",ge="applications",be="Avatar",ye="Mettre \xE0 jour",Se="Langue",we="Accueil",Ae="R\xE9cents",Ce="recents",xe="Corbeille",Te="Partages",Le="Partager",Ee="partages",Pe="partag\xE9",De="Acc\xE8s \xE0 l'espace personnel",ze="Acc\xE8s aux espaces",Ne="Administration des espaces",ke="Acc\xE8s aux partages",Me="Administration des partages",je="Administration des invit\xE9s",Ue="Administration des groupes personnels",_e="Acc\xE8s depuis l'application de bureau",Re="Synchronisation depuis l'application de bureau",Ie="Acc\xE8s WebDAV",qe="WebDAV",Ve="Espace",Ge="Espaces",Fe="espaces",Oe="a ancr\xE9",Ye="a d\xE9sancr\xE9",We="Emplacement",Qe="Ancr\xE9",Be="Param\xE8tres",He="Options",Ke="Nom",Je="T\xE9l\xE9charger",Xe="D\xE9placer",Ze="Copier",$e="Renommer",er="Modifier",rr="Supprimer",sr="Presse-papiers",ir="Rafra\xEEchir",or="Vider",tr="Liste",nr="Affichage",ar="Souhaitez-vous d\xE9placer <b>{{arg}}</b> dans la corbeille ?",cr="Souhaitez-vous supprimer <b>{{arg}}</b> d\xE9finitivement ?",ur="Souhaitez-vous d\xE9placer ces <b>{{arg}} fichiers</b> dans la corbeille ?",lr="Souhaitez-vous supprimer ces <b>{{arg}} fichiers</b> d\xE9finitivement ?",dr="synchronisation",pr="Synchronisation",mr="Synchronisations",hr="Synchroniser",fr="Sync",vr="Synchronis\xE9",gr="Compresser",br="D\xE9compresser",yr="Info",Sr="Taille",wr="Modifi\xE9",Ar="modifi\xE9",Cr="T\xE2ches",xr="Texte",Tr="\xC9l\xE9ments",Lr="Nouveau",Er="Dossier",Pr="dossier",Dr="fichier",zr="fichiers",Nr="r\xE9pertoire",kr="r\xE9pertoires",Mr="Total",jr="aucun \xE9l\xE9ment s\xE9lectionn\xE9",Ur="{{ nb }} \xE9l\xE9ment s\xE9lectionn\xE9",_r="{{ nb }} \xE9l\xE9ments s\xE9lectionn\xE9s",Rr="\xE9l\xE9ment",Ir="\xE9l\xE9ments",qr="cr\xE9er",Vr="\xE9crire",Gr="d\xE9placer",Fr="supprimer",Or="modifier",Yr="partage",Wr="Lien",Qr="lien",Br="Liens",Hr="liens",Kr="Invit\xE9",Jr="Invit\xE9s",Xr="invit\xE9",Zr="invit\xE9s",$r="Expir\xE9",es="expir\xE9",rs="aucun",ss="Permissions",is="Propri\xE9taire",os="Moi",ts="Partag\xE9",ns="Cr\xE9\xE9",as="Date",cs="Chemin",us="actif",ls="Actif",ds="suspendu",ps="Type",ms="Description",hs="Visibilit\xE9",fs="Inconnu",vs="Expiration",gs="Acc\xE8s",bs="Acc\xE9d\xE9",ys="Commenter",Ss="Commentaires",ws="commentaires",As="a comment\xE9",Cs="oui",xs="non",Ts="Client",Ls="Clients",Es="disponible",Ps="occup\xE9",Ds="absent",zs="hors ligne",Ns="d\xE9connexion",ks="jours",Ms="jour",js="Supprimer",Us="Planificateur",_s="parall\xE8le",Rs="s\xE9quentiel",Is="Transferts",qs="Simuler",Vs="R\xE9initialiser",Gs="Parcourir",Fs="Action",Os="Ajout\xE9",Ys="Supprim\xE9",Ws="Copi\xE9",Qs="D\xE9plac\xE9",Bs="Filtr\xE9",Hs="Erreur",Ks="Serveur",Js="Direction",Xs="Conflit",Zs="r\xE9cent",$s="Source",ei="Destination",ri="Mode",si="S\xE9quentiellement",ii="Parall\xE8lement",oi="rapide",ti="s\xE9curis\xE9",ni="activ\xE9",ai="Activer",ci="d\xE9sactiv\xE9",ui="D\xE9sactiver",li="heures",di="minutes",pi="jours",mi="les deux",hi="jamais",fi="Assistant",vi="Suivant",gi="Pr\xE9c\xE9dent",bi="Termin\xE9",yi="vers",Si="D\xE9p\xF4t",wi="public",Ai="local",Ci="distant",xi="Site Web",Ti="Documentation",Li="Versions",Ei="S\xE9curit\xE9",Pi="G\xE9rer",Di="Souhaitez-vous renommer <b>{{ old }}</b> en <b>{{ new }}</b> ?",zi="Enregistrer",Ni="Annuler",ki="R\xE9tablir",Mi="moi",ji="D\xE9verrouiller",Ui="Verrou",_i="Exclusif",Ri="Plein \xE9cran",Ii="Dimensions",qi="Pr\xE9f\xE9rences",Vi={"Sign-in to your account":"Connectez-vous \xE0 votre compte","Wrong login or password":"Identifiant ou mot de passe incorrect","Authentication service error":"Erreur du service d\u2019authentification","Account locked":"Compte verrouill\xE9","Account is not allowed":"Compte non autoris\xE9","Account matching error":"Erreur de correspondance de compte",Authentication:s,"Sign in":"Se connecter",Login:i,Password:o,"Login or Email":"Identifiant ou Email","Login already used":"Identifiant d\xE9j\xE0 utilis\xE9","You are already logged in":"Vous \xEAtes d\xE9j\xE0 connect\xE9","Name already used":"Nom d\xE9j\xE0 utilis\xE9","Token has expired":"Le token a expir\xE9",Confirm:t,Cancel:n,Close:a,Open:c,"Server connection error":"Erreur de connexion au serveur",Filter:u,Filters:l,search:d,Search:p,"Search for content":"Rechercher du contenu","Search for files":"Rechercher des fichiers","Full-text search":"Recherche full-text","Full-text search is disabled":"La recherche full-text est d\xE9sactiv\xE9e","Type to search for users or groups to add":"Tapez pour rechercher des utilisateurs ou des groupes \xE0 ajouter","Type to search for groups to add":"Tapez pour rechercher des groupes \xE0 ajouter","Type to search for users to add":"Tapez pour rechercher des utilisateurs \xE0 ajouter","Type to search for managers to add":"Tapez pour rechercher des manageurs \xE0 ajouter","Member since":"Membre depuis","Windows Manager":"Gestionnaire de fen\xEAtres","Mark as read":"Marquer comme lu",See:m,no_task:h,one_task:f,nb_tasks:v,one_active_task:g,nb_active_tasks:b,nb_elements:y,nb_actions:S,one_message:w,nb_messages:A,one_notification:C,nb_notifications:x,Application:T,application:L,"application and email":"application et email",Notification:E,Notifications:P,Event:D,File:z,Files:N,"Personal files":"Fichiers personnels",Personal:k,External:M,"Share status":"\xC9tat du partage","Share description":"Description du partage","No recent files":"Aucun fichier r\xE9cent",Groups:j,Group:U,group:_,"New personal group":"Nouveau groupe personnel","Edit personal group":"Modifier le groupe personnel","personal group":"groupe personnel","Personal group":"Groupe personnel","Personal groups":"Groupes personnels",groups:R,"Parent group":"Groupe parent","Group updated":"Groupe mis \xE0 jour","Group created":"Groupe cr\xE9\xE9","Group not found":"Groupe non trouv\xE9","Group error":"Groupe erreur","Set as group manager":"D\xE9finir comme manageur de groupe","As a manager, the user will be able to manage the group and its members.":"En tant que manageur, l'utilisateur pourra g\xE9rer le groupe et ses membres.","As a manager, the user will be able to manage group members but not group properties.":`En tant que manageur, l'utilisateur pourra g\xE9rer les membres du groupe mais pas les propri\xE9t\xE9s du groupe.
|
|
2
|
+
`,Visible:I,Private:q,Isolated:V,"Select the parent group":"S\xE9lectionner le groupe parent","from the group":"du groupe","New group":"Nouveau groupe","Edit group":"Modifier le groupe","Leave group":"Quitter le groupe","Delete group":"Supprimer le groupe","Remove from group":"Supprimer du groupe","Group must have at least one manager":"Le groupe doit avoir au moins un manager","The group was left":"Le groupe a \xE9t\xE9 quitt\xE9","The group was not left":"Le groupe n'a pas \xE9t\xE9 quitt\xE9","will be left, you will no longer be a member of this group":"sera quitt\xE9, vous ne serez plus membre de ce groupe","All users can see this group.":"Tous les utilisateurs peuvent voir ce groupe.","Users who are not members of this group cannot see it.":"Les utilisateurs qui ne sont pas membres de ce groupe ne peuvent pas le voir.","The group is not visible, its members cannot see it and cannot see each other.":"Le groupe n'est pas visible, ses membres ne peuvent pas le voir et ne peuvent pas se voir entre eux.",Add:G,"Add members":"Ajouter des membres","See members":"Voir les membres",Administrator:F,Administration:O,User:Y,user:W,Users:Q,users:B,"New user":"Nouvel utilisateur",account:H,Account:K,"Account status":"Status du compte",Email:J,"Email already used":"Email d\xE9j\xE0 utilis\xE9","First name":"Pr\xE9nom","Last name":"Nom","Full name":"Pr\xE9nom & Nom",Status:X,Role:Z,IP:$,"IP Addresses":"Adresses IP",Seen:ee,Connection:re,Connections:se,"Confirm deletion":"Confirmer la suppression","Confirm permanent deletion of data":"Confirmer la suppression d\xE9finitive des donn\xE9es","Space and data will be deleted in":"L'espace et les donn\xE9es seront supprim\xE9s dans","Space is disabled":"L'espace est d\xE9sactiv\xE9","Storage Space":"Espace de stockage","Storage Quota":"Quota de stockage","Storage Usage":"Utilisation du stockage","Space status":"\xC9tat de l'espace","Storage quota exceeded":"Le quota de stockage est d\xE9pass\xE9","Storage quota will be exceeded":"Le quota de stockage sera d\xE9pass\xE9","No more space available":"Plus d'espace disponible",available_space_is_low:ie,online:oe,"Online users":"Utilisateurs en ligne",Unlimited:te,member:ne,members:ae,Member:ce,Members:ue,Manager:le,manager:de,Managers:pe,"At least one manager is required":"Au moins un manager est requis",Generate:me,Import:he,Configuration:fe,Applications:ve,applications:ge,"Permissions inherited from groups":"Permissions h\xE9rit\xE9es des groupes","Only the group will be deleted, the members will no longer be part of it.":"Seul le groupe sera supprim\xE9, les membres n'en feront plus partie.",Avatar:be,Update:ye,"current password":"mot de passe actuel","new password":"nouveau mot de passe","Change me !":"Changez moi !","Current password missing !":"Mot de passe actuel manquant !","New password missing !":"Nouveau mot de passe manquant !","New password must have 8 characters minimum":"Nouveau mot de passe doit contenir 8 caract\xE8res","Current password does not match":"Mot de passe actuel ne correspond pas","Password has been updated":"Mot de passe mis \xE0 jour","Unable to update password":"Impossible de mettre \xE0 jour le mot de passe","Bad password":"Mauvais mot de passe","too many login attempts":"trop de tentatives de connexion",Language:Se,"Language updated":"Langue mise \xE0 jour","Unable to update language":"Impossible de mettre \xE0 jour la langue","Notification preference updated":"Pr\xE9f\xE9rence de notification mise \xE0 jour","Full-text search preference updated":"Pr\xE9f\xE9rence de recherche full-text mise \xE0 jour","Unable to update notification preference":"Impossible de mettre \xE0 jour la pr\xE9f\xE9rence de notification","Unable to update full-text search preference":"Impossible de mettre \xE0 jour la pr\xE9f\xE9rence de recherche full-text","Unable to open document":"Impossible d'ouvrir le document","Unable to save document":"Impossible d\u2019enregistrer le document",Home:we,Recents:Ae,recents:Ce,Trash:xe,"trash bins":"corbeilles",Shares:Te,Share:Le,shares:Ee,shared:Pe,personal_space:De,spaces_access:ze,spaces_admin:Ne,shares_access:ke,shares_admin:Me,guests_admin:je,personal_groups_admin:Ue,desktop_app_access:_e,desktop_app_sync:Re,webdav_access:Ie,"Create share":"Cr\xE9er le partage","Edit share":"Modifier le partage","Delete share":"Supprimer le partage","Child shares":"Partages enfants",webdav:qe,"Share is disabled":"Le partage est d\xE9sactiv\xE9",Space:Ve,Spaces:Ge,spaces:Fe,"Space name":"Nom de l'espace","New space":"Nouvel espace","Create a new space":"Cr\xE9er un nouvel espace","Create space":"Cr\xE9er l'espace","Edit space":"Modifier l'espace","Delete space":"Supprimer l'espace","Create a new share":"Cr\xE9er un nouveau partage","Type to search for space to select":"Tapez pour rechercher l'espace \xE0 s\xE9lectionner","Anchor to a space":"Ancrer \xE0 un espace","Anchor files to a space":"Ancrer les fichiers dans un espace","You have been invited to join this space":"Vous avez \xE9t\xE9 invit\xE9 \xE0 rejoindre cet espace","You have been invited to join this share":"Vous avez \xE9t\xE9 invit\xE9 \xE0 rejoindre ce partage","Shared with others":"Partag\xE9 avec d'autres","With others":"Avec d'autres","Shared with me":"Partag\xE9 avec moi","With me":"Avec moi","Shared via links":"Partag\xE9 via liens","Via links":"Via liens","Shared from":"Partag\xE9 depuis","share with you this":"partage avec vous ce","shared with you":"a partag\xE9 avec vous","no longer share with you":"ne partage plus avec vous","You now have access to the space":"Vous avez d\xE9sormais acc\xE8s \xE0 l'espace","You no longer have access to the space":"Vous n'avez plus acc\xE8s \xE0 l'espace","This space has been permanently deleted":"Cet espace a \xE9t\xE9 d\xE9finitivement supprim\xE9","You now have access to the share":"Vous avez d\xE9sormais acc\xE8s au partage","You no longer have access to the share":"Vous n'avez plus acc\xE8s au partage","You are no longer a member of the parent share, your child share has been deleted":"Vous n'\xEAtes plus membre du partage parent, votre partage enfant a \xE9t\xE9 supprim\xE9",anchored:Oe,unanchored:Ye,"Share not found":"Partage non trouv\xE9","Go to":"Aller",Location:We,"Name and location are required":"Nom et emplacement sont requis","Parent location already exists in files":"L'emplacement parent existe d\xE9j\xE0 dans les fichiers","Check the location":"V\xE9rifier l'emplacement","Location not found":"Emplacement non trouv\xE9","Forbidden resource":"Emplacement non autoris\xE9","Resource already exists":"L'\xE9l\xE9ment existe d\xE9j\xE0","The location does not exist":"L'emplacement n'existe pas","The location is not readable":"L'emplacement n'est pas accessible en lecture","The location is not writeable":"L'emplacement n'est pas accessible en \xE9criture","The location is a directory":"L'emplacement est un r\xE9pertoire","The file is locked":"Le fichier est verrouill\xE9","This access is protected by a password":"Cet acc\xE8s est prot\xE9g\xE9 par un mot de passe","You do not have share permission":"Vous n'avez pas la permission de partager","You can not share a space":"Vous ne pouvez pas partager un espace","You can not remove an anchored file":"vous ne pouvez pas supprimer un fichier ancr\xE9","You are not allowed to write here":"Vous n'\xEAtes pas autoris\xE9 \xE0 \xE9crire ici","You are not allowed to do this action":"Vous n'\xEAtes pas autoris\xE9 \xE0 effectuer cette action","You can not move an anchored file":"Vous ne pouvez pas d\xE9placer un fichier ancr\xE9","You can not move a locked file":"Vous ne pouvez pas d\xE9placer un fichier verrouill\xE9",Anchored:Qe,"Anchored by":"Ancr\xE9 par","Manage my anchored files":"G\xE9rer mes fichiers ancr\xE9s","You have no files anchored on this space":"Vous n'avez pas de fichiers ancr\xE9s sur cet espace","An anchored file already has this name":"Un fichier ancr\xE9 porte d\xE9j\xE0 ce nom",Settings:Be,Options:He,Name:Ke,Download:Je,"Download done":"T\xE9l\xE9chargement effectu\xE9","Download failed":"T\xE9l\xE9chargement \xE9chou\xE9","Upload done":"Envoi termin\xE9","Upload failed":"Envoi \xE9chou\xE9","Copy \xB7 Move":"Copier \xB7 D\xE9placer",Move:Xe,"Move done":"D\xE9placement effectu\xE9","Move failed":"D\xE9placement \xE9chou\xE9","Deletion done":"Suppression effectu\xE9e","Deletion failed":"Suppression \xE9chou\xE9e","Creation failed":"Cr\xE9ation \xE9chou\xE9e",Copy:Ze,"Copy done":"Copie effectu\xE9e","Copy failed":"Copie \xE9chou\xE9e","Copy-Paste":"Copier-Coller","Cut-Paste":"Couper-Coller",Rename:$e,Edit:er,"Share inside":"Partager \xE0 l'int\xE9rieur","Share outside":"Partager \xE0 l'ext\xE9rieur",Remove:rr,Clipboard:sr,"Send to Clipboard":"Envoyer au Presse-papiers","will be removed":"sera supprim\xE9",Refresh:ir,Empty:or,List:tr,Display:nr,"Sort by":"Trier par",trash_one_file:ar,delete_one_file:cr,trash_multiple_files:ur,delete_multiple_files:lr,"Moving to trash":"D\xE9placement en cours dans la corbeille","Permanent deletion":"Suppression d\xE9finitive","Would you like to empty the trash ?":"Souhaitez-vous vider la corbeille ?","All items will be permanently deleted":"Tous les \xE9l\xE9ments seront supprim\xE9s d\xE9finitivement","Actions will be performed in the current folder":"Les actions seront r\xE9alis\xE9es dans le dossier actuel","The client will no longer have permission to access your account and will no longer be able to synchronize.":"Le client n'aura plus l'autorisation d'acc\xE9der \xE0 votre compte et ne pourra plus synchroniser.","The access expires":"L'acc\xE8s expire","The access has expired":"L'acc\xE8s a expir\xE9","Never expires":"N\u2019expire jamais",synchronization:dr,Synchronization:pr,Synchronizations:mr,Synchronize:hr,Sync:fr,"Stop synchronization":"Arr\xEAter la synchronisation","Synchronize all":"Synchroniser tout","Stop synchronizations":"Arr\xEAter les synchronisations",Synced:vr,"Sync already exists":"La synchronisation existe d\xE9j\xE0","Sync was reset":"Synchronisation r\xE9initialis\xE9e","Sync deleted":"Synchronisation supprim\xE9e","This client":"Ce client","You are no longer synchronizing":"Vous ne synchronisez plus",Compress:gr,Decompress:br,"Compress and Download":"Compresser et T\xE9l\xE9charger","Compress and Save":"Compresser et Enregistrer","Enable compression":"Activer compression","Compression done":"Compression effectu\xE9e","Compression failed":"Compression \xE9chou\xE9e","Decompression done":"D\xE9compression effectu\xE9e","Decompression failed":"D\xE9compression \xE9chou\xE9e","(this may take longer)":"(cela peut prendre plus de temps)","Save in the current directory":"Enregistrer dans le r\xE9pertoire actuel","This name is already used":"Ce nom est d\xE9j\xE0 utilis\xE9",Info:yr,Size:Sr,Modified:wr,modified:Ar,Tasks:Cr,"Download from URL":"T\xE9l\xE9charger depuis une URL","Upload files":"Envoyer des fichiers","Upload folders":"Envoyer des dossiers","Folder name":"Nom du dossier","New folder":"Nouveau dossier","Document name":"Nom du document","New document":"Nouveau document","File name":"Nom du fichier","File permissions":"Permissions du fichier",Text:xr,"Rich Text Format":"Texte Enrichi","Forbidden characters":"Caract\xE8res interdits",Elements:Tr,"Malformed URL":"URL mal form\xE9e",New:Lr,Folder:Er,folder:Pr,file:Dr,files:zr,directory:Nr,directories:kr,Total:Mr,no_selection:jr,one_selection:Ur,nb_selections:_r,"Archive name":"Nom de l'archive","Drag and drop your files here":"Glisser d\xE9poser vos fichiers ici","The destination already exists":"La destination existe d\xE9j\xE0","This item is already selected":"Ce fichier est d\xE9j\xE0 s\xE9lectionn\xE9","Parent item is already selected":"L'\xE9l\xE9ment parent est d\xE9j\xE0 s\xE9lectionn\xE9","This file contains binary data that can not be read":'Ce fichier contient des donn\xE9es binaires qu"il n"est pas possible de lire',"Navigation Tree":"Arborescence de navigation",item:Rr,items:Ir,create:qr,write:Vr,move:Gr,delete:Fr,modify:Or,"Delete user":"Supprimer l'utilisateur","Delete all user files":"Supprimer tous les fichiers de l'utilisateur",share:Yr,"Share name":"Nom du partage","New share":"Nouveau partage","New share link":"Nouveau lien de partage","New link":"Nouveau lien","Edit children shares":"Modifier les partages enfants",Link:Wr,link:Qr,Links:Br,links:Hr,"Link copied":"Lien copi\xE9","Link created":"Lien cr\xE9\xE9","Link deleted":"Lien supprim\xE9","Link error":"Erreur lien","Copy link":"Copier le lien","Edit link":"Modifier le lien","Guest Link":"Lien Invit\xE9","Guest name":"Nom de l'invit\xE9","Guest email":"Email de l'invit\xE9","Guest language":"Langue de l'invit\xE9",Guest:Kr,Guests:Jr,guest:Xr,guests:Zr,"New guest":"Nouvel invit\xE9","Edit guest":"Modifier l'invit\xE9","Guest created":"Invit\xE9 cr\xE9\xE9","Guest deleted":"Invit\xE9 supprim\xE9","Guest updated":"Invit\xE9 mis \xE0 jour","Guest error":"Invit\xE9 erreur","Add an external location":"Ajouter un emplacement externe","External location":"Emplacement externe","Select a file":"S\xE9lectionner un fichier","The link is expired":"Le lien est expir\xE9","The link is disabled":"Le lien est d\xE9sactiv\xE9","The link was not found":"Le lien n'a pas \xE9t\xE9 trouv\xE9",Expired:$r,expired:es,none:rs,"The maximum number of access allowed to the link is exceeded":"Le nombre maximum d'acc\xE8s autoris\xE9 au lien est d\xE9pass\xE9","Set a password":"D\xE9finir un mot de passe","Enter your password":"Entrez votre mot de passe",Permissions:ss,"No permissions":"Pas de permissions",Owner:is,Me:os,Shared:ts,Created:ns,"Created & Modified":"Cr\xE9\xE9 & Modifi\xE9","Creation date":"Date de cr\xE9ation","Modification date":"Date de modification","Deactivation date":"Date de d\xE9sactivation",Date:as,Path:cs,active:us,Active:ls,suspended:ds,"Unable to rename user space":"Impossible de renommer l'espace utilisateur","Unable to delete user space":"Impossible de supprimer l'espace utilisateur","Unable to update user":"Impossible de mettre \xE0 jour l'utilisateur","Unable to update user groups":"Impossible de mettre \xE0 jour les groupes de l'utilisateur","User created":"Utilisateur cr\xE9\xE9","User updated":"Utilisateur mis \xE0 jour","User not found":"Utilisateur non trouv\xE9","Edit user":"Modifier l'utilisateur","Impersonate identity":"Emprunter l'identiti\xE9",Type:ps,Description:ms,Visibility:hs,"Unknown error !":"Erreur inconnue !",Unknown:fs,Expiration:vs,"Limit access":"Limiter les acc\xE8s","Current access count":"Nombre d'acc\xE8s actuel",Access:gs,Accessed:bs,"Last access":"Dernier acc\xE8s","Last accesses":"Derniers acc\xE8s",Comment:ys,Comments:Ss,comments:ws,commented:As,"No recent comments":"Pas de commentaire r\xE9cent","Write a comment ...":"Ecrire un commentaire ...",yes:Cs,no:xs,Client:Ts,Clients:Ls,available:Es,busy:Ps,absent:Ds,offline:zs,"Session has expired":"La session a expir\xE9","Please sign in":"Veuillez vous reconnecter",logout:Ns,days:ks,day:Ms,Delete:js,Scheduler:Us,async:_s,seq:Rs,Transfers:Is,Simulate:qs,Reset:Vs,Browse:Gs,Action:Fs,Added:Os,Removed:Ys,Copied:Ws,Moved:Qs,Filtered:Bs,Error:Hs,Server:Ks,Direction:Js,Conflict:Xs,"Show filtered files":"Afficher les fichiers filtr\xE9s",recent:Zs,Source:$s,Destination:ei,Mode:ri,Sequentially:si,Asynchronously:ii,fast:oi,secure:ti,enabled:ni,Enable:ai,disabled:ci,Disable:ui,scheduler_unit_hour:li,scheduler_unit_minute:di,scheduler_unit_day:pi,"You must have permission to modify the server folder to choose a different sync mode":"Vous devez avoir la permission de modifier le dossier du serveur pour choisir une autre mode de synchronisation","upload only":"envoyer seulement","download only":"t\xE9l\xE9charger seulement",both:mi,never:hi,"Clear events":"Effacer les \xE9v\xE8nements","Events from":"Les \xE9v\xE8nements de","All syncs":"Toutes les synchronisations","All events":"Tous les \xE9v\xE8nements","will be cleared":"seront effac\xE9s","No differences":"Pas de diff\xE9rences","Select a folder":"S\xE9lectionner un dossier","The files containing":"Les fichiers contenant","The files starting":"Les fichiers commen\xE7ant","The files ending":"Les fichiers terminant","Expert (Regexp)":"Expert (Regexp)","click on the browse button":"cliquez sur le bouton parcourir","with a name or pattern":"par un nom ou un motif","with the extension ('.mp3', '.avi', '.mov' ...)":"par l'extension ('.mp3', '.avi', '.mov' ...)",Wizard:fi,Next:vi,Previous:gi,Done:bi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Cet assistant vous aidera \xE0 synchroniser un r\xE9pertoire de votre ordinateur avec un r\xE9pertoire Sync-in.","To begin, select a folder on your computer.":"Pour commencer, s\xE9lectionnez un dossier sur votre ordinateur.",'You can drag the folder into the area below or click on the "Select" button.':'Vous pouvez faire glisser le dossier dans la zone ci-dessous ou cliquer sur le bouton "S\xE9l\xE9ctionner".',"Drop folder here":"D\xE9poser le dossier ici","This directory is already synced":"Ce r\xE9pertoire est d\xE9j\xE0 synchronis\xE9","The parent directory is already synced":"Le dossier parent est d\xE9j\xE0 synchronis\xE9","This directory is not accessible":"Ce r\xE9pertoire n'est pas accessible","This directory is read-only, you will not be able to modify it":"Ce r\xE9pertoire est en lecture seule, vous ne pourrez pas le modifier","Please select the server directory to sync, if it doesn't exist you can create it.":"Veuillez s\xE9lectionner le r\xE9pertoire du serveur \xE0 synchroniser, s'il n'existe pas, vous pourrez le cr\xE9er.","Double click to browse directories":"Double cliquez pour parcourir les r\xE9pertoires","The data will be synchronized from":"Les donn\xE9es seront synchronis\xE9es depuis","the client folder":"le dossier client","the server folder":"le dossier serveur","(One-Way)":"(unidirectionnel)","(Two-Way)":"(bidirectionnel)",to:yi,"and from":"et depuis","All files created or modified in":"Tous les fichiers cr\xE9\xE9s ou modifi\xE9s dans","will be ignored and deleted":"seront ignor\xE9s et supprim\xE9s","In case of conflict,":"En cas de conflit,","the most recent files will be kept":"les fichiers les plus r\xE9cents seront conserv\xE9s","the client\u2019s files take precedence":"les fichiers du client ont la priorit\xE9","the server\u2019s files take precedence":"les fichiers du serveur ont la priorit\xE9","the files in":"les fichiers de","will be preferred":"seront pr\xE9f\xE9r\xE9s","Loading...":"Chargement...","No results":"Pas de r\xE9sultats","Download ARM64 version":"T\xE9l\xE9charger la version ARM64","Download Apple Silicon ARM64 version":"T\xE9l\xE9charger la version Apple Silicon ARM64","Download tar.gz version":"T\xE9l\xE9charger la version tar.gz",Repository:Si,public:wi,local:Ai,remote:Ci,"System requirements":"Configuration requise","Feature not enabled":"Fonctionnalit\xE9 non activ\xE9e",Website:xi,Documentation:Ti,Versions:Li,Security:Ei,"Recovery code":"Code de r\xE9cup\xE9ration","Use a recovery code":"Utiliser un code de r\xE9cup\xE9ration","Authentication code":"Code d'authentification","Secret copied":"Secret copi\xE9","Recovery codes copied":"Codes de r\xE9cup\xE9ration copi\xE9s","Invalid code":"Code invalide","Incorrect code or password":"Code ou mot de passe incorrect","Application Passwords":"Mots de passe d'application","Generate a new app password":"G\xE9n\xE9rer un nouveau mot de passe d\u2019application","Generated password":"Mot de passe g\xE9n\xE9r\xE9","This password will only be shown once after it is generated":"Ce mot de passe ne sera affich\xE9 qu\u2019une seule fois apr\xE8s sa g\xE9n\xE9ration","Password name":"Nom du mot de passe",Manage:Pi,"Manage app passwords":"G\xE9rer les mots de passe d\u2019application","Password Authentication":"Authentification par mot de passe","Two-Factor Authentication":"Authentification \xE0 deux facteurs","Two-Factor Authentication is enabled":"L\u2019authentification \xE0 deux facteurs est activ\xE9e","Two-Factor Authentication is disabled":"L\u2019authentification \xE0 deux facteurs est d\xE9sactiv\xE9e","Scan this QR code using your authenticator app.":"Scannez ce code QR avec votre application d\u2019authentification.","(Such as FreeOTP, Proton Authenticator etc.)":"(Par ex. FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"Ou entrez ce secret manuellement","Valid with your TOTP code":"Validez avec votre code TOTP","The secret has expired":"Le secret a expir\xE9","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Conservez ces codes en lieu s\xFBr. Ils vous permettront d\u2019acc\xE9der \xE0 votre compte si vous perdez l\u2019acc\xE8s \xE0 votre authentification \xE0 deux facteurs.","These recovery codes are for one-time use only and will only be displayed here once.":"Ces codes de r\xE9cup\xE9ration sont \xE0 usage unique et ne seront affich\xE9s qu\u2019une seule fois ici.","Overwrite Existing File(s)":"\xC9craser le(s) fichier(s) existant(s)","Replace Existing File":"Remplacer le fichier existant","Do you want to replace the existing file(s)?":"Voulez-vous remplacer le(s) fichier(s) existant(s) ?",RenameFileToExisting:Di,Save:zi,"Line Wrap":"Retour \xE0 la ligne automatique","Read-only":"Lecture seule","Read-write":"Lecture-\xE9criture","Save And Exit":"Enregistrer et quitter","Close Without Saving":"Fermer sans enregistrer",Undo:Ni,Redo:ki,me:Mi,"The file is locked by":"Le fichier est verrouill\xE9 par",Unlock:ji,Lock:Ui,Exclusive:_i,"Send an unlock request":"Envoyer une demande de d\xE9verrouillage","sends you a request to unlock the file":"vous envoie une demande de d\xE9verrouillage du fichier","As the file owner, you can unlock the file or request the current lock owner to release it.":"En tant que propri\xE9taire du fichier, vous pouvez d\xE9verrouiller le fichier ou demander au propri\xE9taire actuel du verrou de le lib\xE9rer.","The file is edited by":"Le fichier est en cours d\u2019\xE9dition par","A new update is available":"Une nouvelle mise \xE0 jour est disponible",Fullscreen:Ri,Dimensions:Ii,"Start Slideshow":"D\xE9marrer le diaporama","Unable to load OnlyOffice editor":"Impossible de charger l\u2019\xE9diteur OnlyOffice","The document server may be unreachable or the configuration is invalid":"Le serveur de documents est peut-\xEAtre injoignable ou la configuration est invalide","OnlyOffice editor failed to initialize":"\xC9chec de l\u2019initialisation de l\u2019\xE9diteur OnlyOffice","DocsAPI not available":"DocsAPI n\u2019est pas disponible","Unknown OnlyOffice error":"Erreur OnlyOffice inconnue","No editor found":"Aucun \xE9diteur trouv\xE9","Choose which editor you want to use to open this document.":"Choisissez l'\xE9diteur que vous souhaitez utiliser pour ouvrir ce document.","Open-source office suite built on LibreOffice.":"Suite bureautique open-source bas\xE9e sur LibreOffice.","Open-source office suite for Microsoft Office.":"Suite bureautique open-source pour Microsoft Office.","Remember my choice for next time":"Se souvenir de mon choix pour la prochaine fois","Document editor":"\xC9diteur de documents","Ask Me":"Me demander","Used when both editors support the file type.":"Utilis\xE9 lorsque les deux \xE9diteurs prennent en charge le type de fichier.","Enable content indexation for personal files.":"Activer l'indexation du contenu pour les fichiers personnels.",Preferences:qi};export{gs as Access,bs as Accessed,K as Account,Fs as Action,ls as Active,G as Add,Os as Added,O as Administration,F as Administrator,Qe as Anchored,T as Application,ve as Applications,ii as Asynchronously,s as Authentication,be as Avatar,Gs as Browse,n as Cancel,Ts as Client,Ls as Clients,sr as Clipboard,a as Close,ys as Comment,Ss as Comments,gr as Compress,fe as Configuration,t as Confirm,Xs as Conflict,re as Connection,se as Connections,Ws as Copied,Ze as Copy,ns as Created,as as Date,br as Decompress,js as Delete,ms as Description,ei as Destination,Ii as Dimensions,Js as Direction,ui as Disable,nr as Display,Ti as Documentation,bi as Done,Je as Download,er as Edit,Tr as Elements,J as Email,or as Empty,ai as Enable,Hs as Error,D as Event,_i as Exclusive,vs as Expiration,$r as Expired,M as External,z as File,N as Files,u as Filter,Bs as Filtered,l as Filters,Er as Folder,Ri as Fullscreen,me as Generate,U as Group,j as Groups,Kr as Guest,Jr as Guests,we as Home,$ as IP,he as Import,yr as Info,V as Isolated,Se as Language,Wr as Link,Br as Links,tr as List,We as Location,Ui as Lock,i as Login,Pi as Manage,le as Manager,pe as Managers,os as Me,ce as Member,ue as Members,ri as Mode,wr as Modified,Xe as Move,Qs as Moved,Ke as Name,Lr as New,vi as Next,E as Notification,P as Notifications,c as Open,He as Options,is as Owner,o as Password,cs as Path,ss as Permissions,k as Personal,qi as Preferences,gi as Previous,q as Private,Ae as Recents,ki as Redo,ir as Refresh,rr as Remove,Ys as Removed,$e as Rename,Di as RenameFileToExisting,Si as Repository,Vs as Reset,Z as Role,zi as Save,Us as Scheduler,p as Search,Ei as Security,m as See,ee as Seen,si as Sequentially,Ks as Server,Be as Settings,Le as Share,ts as Shared,Te as Shares,qs as Simulate,Sr as Size,$s as Source,Ve as Space,Ge as Spaces,X as Status,fr as Sync,vr as Synced,pr as Synchronization,mr as Synchronizations,hr as Synchronize,Cr as Tasks,xr as Text,Mr as Total,Is as Transfers,xe as Trash,ps as Type,Ni as Undo,fs as Unknown,te as Unlimited,ji as Unlock,ye as Update,Y as User,Q as Users,Li as Versions,hs as Visibility,I as Visible,xi as Website,fi as Wizard,Ds as absent,H as account,us as active,Oe as anchored,L as application,ge as applications,_s as async,Es as available,ie as available_space_is_low,mi as both,Ps as busy,As as commented,ws as comments,qr as create,Ms as day,ks as days,Vi as default,Fr as delete,lr as delete_multiple_files,cr as delete_one_file,_e as desktop_app_access,Re as desktop_app_sync,kr as directories,Nr as directory,ci as disabled,ni as enabled,es as expired,oi as fast,Dr as file,zr as files,Pr as folder,_ as group,R as groups,Xr as guest,Zr as guests,je as guests_admin,Rr as item,Ir as items,Qr as link,Hr as links,Ai as local,Ns as logout,de as manager,Mi as me,ne as member,ae as members,Ar as modified,Or as modify,Gr as move,S as nb_actions,b as nb_active_tasks,y as nb_elements,A as nb_messages,x as nb_notifications,_r as nb_selections,v as nb_tasks,hi as never,xs as no,jr as no_selection,h as no_task,rs as none,zs as offline,g as one_active_task,w as one_message,C as one_notification,Ur as one_selection,f as one_task,oe as online,Ue as personal_groups_admin,De as personal_space,wi as public,Zs as recent,Ce as recents,Ci as remote,pi as scheduler_unit_day,li as scheduler_unit_hour,di as scheduler_unit_minute,d as search,ti as secure,Rs as seq,Yr as share,Pe as shared,Ee as shares,ke as shares_access,Me as shares_admin,Fe as spaces,ze as spaces_access,Ne as spaces_admin,ds as suspended,dr as synchronization,yi as to,ur as trash_multiple_files,ar as trash_one_file,Ye as unanchored,W as user,B as users,qe as webdav,Ie as webdav_access,Vr as write,Cs as yes};
|
package/static/index.html
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
<base href="/">
|
|
13
13
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
|
|
14
14
|
<link href="/assets/favicon.svg" rel="icon" type="image/svg+xml" sizes="any">
|
|
15
|
-
<style>:root{--bs-blue:#0576b9;--bs-indigo:#6610f2;--bs-purple:#9b59b6;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#ff6f00;--bs-yellow:#ffc107;--bs-green:#06854b;--bs-teal:#39CCCC;--bs-cyan:#17a2b8;--bs-black:#111;--bs-white:#ffffff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#1c68b0;--bs-secondary:#c3cee0;--bs-success:#06854b;--bs-info:#0dcaf0;--bs-warning:#ff6f00;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:28, 104, 176;--bs-secondary-rgb:195, 206, 224;--bs-success-rgb:6, 133, 75;--bs-info-rgb:13, 202, 240;--bs-warning-rgb:255, 111, 0;--bs-danger-rgb:220, 53, 69;--bs-light-rgb:248, 249, 250;--bs-dark-rgb:33, 37, 41;--bs-primary-text-emphasis:rgb(11.2, 41.6, 70.4);--bs-secondary-text-emphasis:rgb(78, 82.4, 89.6);--bs-success-text-emphasis:rgb(2.4, 53.2, 30);--bs-info-text-emphasis:rgb(5.2, 80.8, 96);--bs-warning-text-emphasis:rgb(102, 44.4, 0);--bs-danger-text-emphasis:rgb(88, 21.2, 27.6);--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:rgb(209.6, 224.8, 239.2);--bs-secondary-bg-subtle:rgb(243, 245.2, 248.8);--bs-success-bg-subtle:rgb(205.2, 230.6, 219);--bs-info-bg-subtle:rgb(206.6, 244.4, 252);--bs-warning-bg-subtle:rgb(255, 226.2, 204);--bs-danger-bg-subtle:rgb(248, 214.6, 217.8);--bs-light-bg-subtle:rgb(251.5, 252, 252.5);--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:rgb(164.2, 194.6, 223.4);--bs-secondary-border-subtle:rgb(231, 235.4, 242.6);--bs-success-border-subtle:rgb(155.4, 206.2, 183);--bs-info-border-subtle:rgb(158.2, 233.8, 249);--bs-warning-border-subtle:rgb(255, 197.4, 153);--bs-danger-border-subtle:rgb(241, 174.2, 180.6);--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255, 255, 255;--bs-black-rgb:17, 17, 17;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:.9rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#333;--bs-body-color-rgb:51, 51, 51;--bs-body-bg:#e1e6ef;--bs-body-bg-rgb:225, 230, 239;--bs-emphasis-color:#111;--bs-emphasis-color-rgb:17, 17, 17;--bs-secondary-color:rgba(51, 51, 51, .75);--bs-secondary-color-rgb:51, 51, 51;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233, 236, 239;--bs-tertiary-color:rgba(51, 51, 51, .5);--bs-tertiary-color-rgb:51, 51, 51;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248, 249, 250;--bs-heading-color:inherit;--bs-link-color:#0576b9;--bs-link-color-rgb:5, 118, 185;--bs-link-decoration:none;--bs-link-hover-color:rgb(4.3289473684, 102.1631578947, 160.1710526316);--bs-link-hover-color-rgb:4, 102, 160;--bs-link-hover-decoration:none;--bs-code-color:#d63384;--bs-highlight-color:#333;--bs-highlight-bg:#37cb46;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#e1e6ef;--bs-border-color-translucent:rgba(17, 17, 17, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 .5rem 1rem rgba(17, 17, 17, .15);--bs-box-shadow-sm:0 .125rem .25rem rgba(17, 17, 17, .075);--bs-box-shadow-lg:0 1rem 3rem rgba(17, 17, 17, .175);--bs-box-shadow-inset:inset 0 1px 2px rgba(17, 17, 17, .075);--bs-focus-ring-width:.25rem;--bs-focus-ring-opacity:.25;--bs-focus-ring-color:rgba(28, 104, 176, .25);--bs-form-valid-color:#06854b;--bs-form-valid-border-color:#06854b;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(17,17,17,0)}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}:root{--bs-btn-close-filter: }:root{--bs-carousel-indicator-active-bg:#ffffff;--bs-carousel-caption-color:#ffffff;--bs-carousel-control-icon-filter: }html,body{background-color:#28353b;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;scrollbar-width:thin;scrollbar-color:rgba(155,155,155,.5) transparent;font-size:1rem;height:100%}body ::-webkit-scrollbar{width:8px}body ::-webkit-scrollbar-track{background:transparent}body ::-webkit-scrollbar-thumb{background-color:#9b9b9b80;border-radius:20px;border:transparent}.app-title{content:"Sync-in"}.app-title:before{content:"Sync-in"}.app-loading{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;background:linear-gradient(to bottom right,#020024,#1c68b0 35%,#985ca0);color:#fff}.app-loading:after{content:"Sync-in"}:root{--ngx-contextmenu-font-family:var(--bs-body-font-family) !important;--ngx-contextmenu-border:.5px solid rgba(0, 0, 0, .18) !important;--ngx-contextmenu-item-separator-width:100% !important;--ngx-contextmenu-outline:none !important}:root{--ngx-contextmenu-focusable-border-bottom:1px dotted #70757e;--ngx-contextmenu-font-family:sans-serif;--ngx-contextmenu-background-color:white;--ngx-contextmenu-border-radius:4px;--ngx-contextmenu-border:1px solid rgba(0, 0, 0, .18);--ngx-contextmenu-box-shadow:0 6px 12px rgba(0, 0, 0, .18);--ngx-contextmenu-font-size:14px;--ngx-contextmenu-margin:2px 0 0;--ngx-contextmenu-min-width:160px;--ngx-contextmenu-outline:1px solid #70757e;--ngx-contextmenu-padding:5px 0;--ngx-contextmenu-text-color:#70757e;--ngx-contextmenu-text-disabled-color:#b5bec8;--ngx-contextmenu-max-height:100vh;--ngx-contextmenu-item-arrow-left:"\25c0";--ngx-contextmenu-item-arrow-right:"\25b6";--ngx-contextmenu-item-background-hover-color:#f8f8f8;--ngx-contextmenu-item-separator-color:#b5bec8;--ngx-contextmenu-item-separator-padding:10px;--ngx-contextmenu-item-separator-width:96%;--ngx-contextmenu-item-padding:6px 20px;--ngx-contextmenu-item-text-hover-color:#5a6473}</style><link rel="stylesheet" href="styles-
|
|
15
|
+
<style>:root{--bs-blue:#0576b9;--bs-indigo:#6610f2;--bs-purple:#9b59b6;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#ff6f00;--bs-yellow:#ffc107;--bs-green:#06854b;--bs-teal:#39CCCC;--bs-cyan:#17a2b8;--bs-black:#111;--bs-white:#ffffff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#1c68b0;--bs-secondary:#c3cee0;--bs-success:#06854b;--bs-info:#0dcaf0;--bs-warning:#ff6f00;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:28, 104, 176;--bs-secondary-rgb:195, 206, 224;--bs-success-rgb:6, 133, 75;--bs-info-rgb:13, 202, 240;--bs-warning-rgb:255, 111, 0;--bs-danger-rgb:220, 53, 69;--bs-light-rgb:248, 249, 250;--bs-dark-rgb:33, 37, 41;--bs-primary-text-emphasis:rgb(11.2, 41.6, 70.4);--bs-secondary-text-emphasis:rgb(78, 82.4, 89.6);--bs-success-text-emphasis:rgb(2.4, 53.2, 30);--bs-info-text-emphasis:rgb(5.2, 80.8, 96);--bs-warning-text-emphasis:rgb(102, 44.4, 0);--bs-danger-text-emphasis:rgb(88, 21.2, 27.6);--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:rgb(209.6, 224.8, 239.2);--bs-secondary-bg-subtle:rgb(243, 245.2, 248.8);--bs-success-bg-subtle:rgb(205.2, 230.6, 219);--bs-info-bg-subtle:rgb(206.6, 244.4, 252);--bs-warning-bg-subtle:rgb(255, 226.2, 204);--bs-danger-bg-subtle:rgb(248, 214.6, 217.8);--bs-light-bg-subtle:rgb(251.5, 252, 252.5);--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:rgb(164.2, 194.6, 223.4);--bs-secondary-border-subtle:rgb(231, 235.4, 242.6);--bs-success-border-subtle:rgb(155.4, 206.2, 183);--bs-info-border-subtle:rgb(158.2, 233.8, 249);--bs-warning-border-subtle:rgb(255, 197.4, 153);--bs-danger-border-subtle:rgb(241, 174.2, 180.6);--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255, 255, 255;--bs-black-rgb:17, 17, 17;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:.9rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#333;--bs-body-color-rgb:51, 51, 51;--bs-body-bg:#e1e6ef;--bs-body-bg-rgb:225, 230, 239;--bs-emphasis-color:#111;--bs-emphasis-color-rgb:17, 17, 17;--bs-secondary-color:rgba(51, 51, 51, .75);--bs-secondary-color-rgb:51, 51, 51;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233, 236, 239;--bs-tertiary-color:rgba(51, 51, 51, .5);--bs-tertiary-color-rgb:51, 51, 51;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248, 249, 250;--bs-heading-color:inherit;--bs-link-color:#0576b9;--bs-link-color-rgb:5, 118, 185;--bs-link-decoration:none;--bs-link-hover-color:rgb(4.3289473684, 102.1631578947, 160.1710526316);--bs-link-hover-color-rgb:4, 102, 160;--bs-link-hover-decoration:none;--bs-code-color:#d63384;--bs-highlight-color:#333;--bs-highlight-bg:#37cb46;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#e1e6ef;--bs-border-color-translucent:rgba(17, 17, 17, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 .5rem 1rem rgba(17, 17, 17, .15);--bs-box-shadow-sm:0 .125rem .25rem rgba(17, 17, 17, .075);--bs-box-shadow-lg:0 1rem 3rem rgba(17, 17, 17, .175);--bs-box-shadow-inset:inset 0 1px 2px rgba(17, 17, 17, .075);--bs-focus-ring-width:.25rem;--bs-focus-ring-opacity:.25;--bs-focus-ring-color:rgba(28, 104, 176, .25);--bs-form-valid-color:#06854b;--bs-form-valid-border-color:#06854b;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(17,17,17,0)}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}:root{--bs-btn-close-filter: }:root{--bs-carousel-indicator-active-bg:#ffffff;--bs-carousel-caption-color:#ffffff;--bs-carousel-control-icon-filter: }html,body{background-color:#28353b;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;scrollbar-width:thin;scrollbar-color:rgba(155,155,155,.5) transparent;font-size:1rem;height:100%}body ::-webkit-scrollbar{width:8px}body ::-webkit-scrollbar-track{background:transparent}body ::-webkit-scrollbar-thumb{background-color:#9b9b9b80;border-radius:20px;border:transparent}.app-title{content:"Sync-in"}.app-title:before{content:"Sync-in"}.app-loading{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;background:linear-gradient(to bottom right,#020024,#1c68b0 35%,#985ca0);color:#fff}.app-loading:after{content:"Sync-in"}:root{--ngx-contextmenu-font-family:var(--bs-body-font-family) !important;--ngx-contextmenu-border:.5px solid rgba(0, 0, 0, .18) !important;--ngx-contextmenu-item-separator-width:100% !important;--ngx-contextmenu-outline:none !important}:root{--ngx-contextmenu-focusable-border-bottom:1px dotted #70757e;--ngx-contextmenu-font-family:sans-serif;--ngx-contextmenu-background-color:white;--ngx-contextmenu-border-radius:4px;--ngx-contextmenu-border:1px solid rgba(0, 0, 0, .18);--ngx-contextmenu-box-shadow:0 6px 12px rgba(0, 0, 0, .18);--ngx-contextmenu-font-size:14px;--ngx-contextmenu-margin:2px 0 0;--ngx-contextmenu-min-width:160px;--ngx-contextmenu-outline:1px solid #70757e;--ngx-contextmenu-padding:5px 0;--ngx-contextmenu-text-color:#70757e;--ngx-contextmenu-text-disabled-color:#b5bec8;--ngx-contextmenu-max-height:100vh;--ngx-contextmenu-item-arrow-left:"\25c0";--ngx-contextmenu-item-arrow-right:"\25b6";--ngx-contextmenu-item-background-hover-color:#f8f8f8;--ngx-contextmenu-item-separator-color:#b5bec8;--ngx-contextmenu-item-separator-padding:10px;--ngx-contextmenu-item-separator-width:96%;--ngx-contextmenu-item-padding:6px 20px;--ngx-contextmenu-item-text-hover-color:#5a6473}</style><link rel="stylesheet" href="styles-XLLEY5Y3.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles-XLLEY5Y3.css"></noscript></head>
|
|
16
16
|
<body class="theme-light">
|
|
17
17
|
<app-root><span class="app-loading"></span></app-root>
|
|
18
|
-
<link rel="modulepreload" href="chunk-
|
|
18
|
+
<link rel="modulepreload" href="chunk-KPOQLDWF.js"><link rel="modulepreload" href="chunk-T42BV6TR.js"><link rel="modulepreload" href="chunk-E32J777S.js"><link rel="modulepreload" href="chunk-3WZ6F3LC.js"><link rel="modulepreload" href="chunk-XTVNHFKX.js"><link rel="modulepreload" href="chunk-RTNEBRKJ.js"><link rel="modulepreload" href="chunk-NIR4YE2E.js"><link rel="modulepreload" href="chunk-S3TTWPQA.js"><link rel="modulepreload" href="chunk-JXZCNFW7.js"><link rel="modulepreload" href="chunk-HGODIZTV.js"><script src="polyfills-IA5XWQYN.js" type="module"></script><script src="main-YKDNJ7LK.js" type="module"></script></body>
|
|
19
19
|
</html>
|