@sync-in/server 1.6.1 → 1.8.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 +169 -55
- package/environment/environment.dist.yaml +14 -5
- package/migrations/0003_giant_luckman.sql +6 -0
- package/migrations/meta/0003_snapshot.json +2463 -0
- package/migrations/meta/_journal.json +7 -0
- package/package.json +16 -15
- package/server/app.bootstrap.js +1 -0
- package/server/app.bootstrap.js.map +1 -1
- package/server/app.constants.js +0 -4
- package/server/app.constants.js.map +1 -1
- package/server/app.service.js +7 -6
- package/server/app.service.js.map +1 -1
- package/server/applications/files/constants/only-office.js +12 -0
- package/server/applications/files/constants/only-office.js.map +1 -1
- package/server/applications/files/files.config.js +5 -0
- package/server/applications/files/files.config.js.map +1 -1
- package/server/applications/files/services/files-content-manager.service.js +6 -6
- package/server/applications/files/services/files-content-manager.service.js.map +1 -1
- package/server/applications/files/services/files-manager.service.js +4 -4
- package/server/applications/files/services/files-manager.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.js +5 -3
- package/server/applications/files/services/files-methods.service.js.map +1 -1
- package/server/applications/files/services/files-only-office-manager.service.js +2 -2
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
- package/server/applications/files/services/files-parser.service.js +6 -3
- package/server/applications/files/services/files-parser.service.js.map +1 -1
- package/server/applications/files/services/files-scheduler.service.js +51 -3
- package/server/applications/files/services/files-scheduler.service.js.map +1 -1
- package/server/applications/files/services/files-search-manager.service.js +4 -0
- package/server/applications/files/services/files-search-manager.service.js.map +1 -1
- package/server/applications/files/utils/doc-textify/adapters/pdf.js +10 -1
- package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -1
- package/server/applications/notifications/i18n/de.js +56 -0
- package/server/applications/notifications/i18n/de.js.map +1 -0
- package/server/applications/notifications/i18n/es.js +52 -0
- package/server/applications/notifications/i18n/es.js.map +1 -0
- package/server/applications/notifications/i18n/hi.js +52 -0
- package/server/applications/notifications/i18n/hi.js.map +1 -0
- package/server/applications/notifications/i18n/index.js +73 -8
- package/server/applications/notifications/i18n/index.js.map +1 -1
- package/server/applications/notifications/i18n/it.js +52 -0
- package/server/applications/notifications/i18n/it.js.map +1 -0
- package/server/applications/notifications/i18n/ja.js +52 -0
- package/server/applications/notifications/i18n/ja.js.map +1 -0
- package/server/applications/notifications/i18n/ko.js +52 -0
- package/server/applications/notifications/i18n/ko.js.map +1 -0
- package/server/applications/notifications/i18n/pl.js +52 -0
- package/server/applications/notifications/i18n/pl.js.map +1 -0
- package/server/applications/notifications/i18n/pt.js +52 -0
- package/server/applications/notifications/i18n/pt.js.map +1 -0
- package/server/applications/notifications/i18n/pt_br.js +52 -0
- package/server/applications/notifications/i18n/pt_br.js.map +1 -0
- package/server/applications/notifications/i18n/ru.js +52 -0
- package/server/applications/notifications/i18n/ru.js.map +1 -0
- package/server/applications/notifications/i18n/tr.js +52 -0
- package/server/applications/notifications/i18n/tr.js.map +1 -0
- package/server/applications/notifications/i18n/zh.js +52 -0
- package/server/applications/notifications/i18n/zh.js.map +1 -0
- package/server/applications/notifications/mails/models.js +6 -7
- package/server/applications/notifications/mails/models.js.map +1 -1
- package/server/applications/notifications/services/notifications-manager.service.js.map +1 -1
- package/server/applications/shares/dto/create-or-update-share.dto.js +11 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -1
- package/server/applications/shares/interfaces/share-props.interface.js.map +1 -1
- package/server/applications/shares/schemas/share.interface.js.map +1 -1
- package/server/applications/shares/schemas/shares.schema.js +9 -0
- package/server/applications/shares/schemas/shares.schema.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.js +46 -17
- package/server/applications/shares/services/shares-manager.service.js.map +1 -1
- package/server/applications/shares/services/shares-queries.service.js +24 -5
- package/server/applications/shares/services/shares-queries.service.js.map +1 -1
- package/server/applications/spaces/constants/cache.js +4 -0
- package/server/applications/spaces/constants/cache.js.map +1 -1
- package/server/applications/spaces/dto/create-or-update-space.dto.js +5 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -1
- package/server/applications/spaces/guards/space.guard.js +3 -3
- package/server/applications/spaces/guards/space.guard.js.map +1 -1
- package/server/applications/spaces/models/space-props.model.js.map +1 -1
- package/server/applications/spaces/models/space.model.js.map +1 -1
- package/server/applications/spaces/schemas/space.interface.js.map +1 -1
- package/server/applications/spaces/schemas/spaces.schema.js +1 -0
- package/server/applications/spaces/schemas/spaces.schema.js.map +1 -1
- package/server/applications/spaces/services/spaces-browser.service.js.map +1 -1
- package/server/applications/spaces/services/spaces-manager.service.js +34 -31
- package/server/applications/spaces/services/spaces-manager.service.js.map +1 -1
- package/server/applications/spaces/services/spaces-queries.service.js +23 -7
- package/server/applications/spaces/services/spaces-queries.service.js.map +1 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js +21 -20
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
- package/server/applications/spaces/spaces.controller.js +4 -2
- package/server/applications/spaces/spaces.controller.js.map +1 -1
- package/server/applications/spaces/utils/paths.js +14 -16
- package/server/applications/spaces/utils/paths.js.map +1 -1
- package/server/applications/sync/services/sync-manager.service.js +4 -3
- package/server/applications/sync/services/sync-manager.service.js.map +1 -1
- package/server/applications/sync/services/sync-paths-manager.service.js +1 -1
- package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -1
- package/server/applications/sync/services/sync-paths-manager.service.spec.js +1 -1
- package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -1
- package/server/applications/sync/sync.controller.js +2 -1
- package/server/applications/sync/sync.controller.js.map +1 -1
- package/server/applications/users/constants/routes.js +5 -0
- package/server/applications/users/constants/routes.js.map +1 -1
- package/server/applications/users/constants/user.js +0 -16
- package/server/applications/users/constants/user.js.map +1 -1
- package/server/applications/users/dto/user-properties.dto.js +10 -0
- package/server/applications/users/dto/user-properties.dto.js.map +1 -1
- package/server/applications/users/models/user.model.js.map +1 -1
- package/server/applications/users/schemas/user.interface.js.map +1 -1
- package/server/applications/users/schemas/users.schema.js +3 -2
- package/server/applications/users/schemas/users.schema.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.js +1 -0
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.spec.js +2 -1
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
- package/server/applications/users/services/users-manager.service.js +8 -2
- package/server/applications/users/services/users-manager.service.js.map +1 -1
- package/server/applications/users/services/users-manager.service.spec.js +1 -0
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
- package/server/applications/users/services/users-queries.service.js +18 -4
- package/server/applications/users/services/users-queries.service.js.map +1 -1
- package/server/applications/users/users.controller.js +15 -0
- package/server/applications/users/users.controller.js.map +1 -1
- package/server/applications/users/utils/test.js +2 -2
- package/server/applications/users/utils/test.js.map +1 -1
- package/server/applications/webdav/constants/routes.js +2 -2
- package/server/applications/webdav/constants/routes.js.map +1 -1
- package/server/applications/webdav/constants/webdav.js +2 -2
- package/server/applications/webdav/constants/webdav.js.map +1 -1
- package/server/applications/webdav/filters/webdav.filter.js +2 -2
- package/server/applications/webdav/filters/webdav.filter.js.map +1 -1
- package/server/applications/webdav/filters/webdav.filter.spec.js +2 -2
- package/server/applications/webdav/filters/webdav.filter.spec.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.js +3 -2
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
- package/server/applications/webdav/utils/webdav.js +1 -2
- package/server/applications/webdav/utils/webdav.js.map +1 -1
- package/server/authentication/auth.config.js +17 -2
- package/server/authentication/auth.config.js.map +1 -1
- package/server/authentication/constants/auth-ldap.js +2 -1
- package/server/authentication/constants/auth-ldap.js.map +1 -1
- package/server/authentication/guards/auth-basic.strategy.js +4 -2
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -1
- package/server/authentication/guards/auth-local.strategy.js +2 -0
- package/server/authentication/guards/auth-local.strategy.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js +75 -32
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +2 -1
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -1
- package/server/common/i18n.js +52 -0
- package/server/common/i18n.js.map +1 -0
- package/server/common/image.js +49 -33
- package/server/common/image.js.map +1 -1
- package/server/common/interfaces.js.map +1 -1
- package/server/common/shared.js +5 -2
- package/server/common/shared.js.map +1 -1
- package/server/configuration/config.validation.js +3 -3
- package/server/configuration/config.validation.js.map +1 -1
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +8 -6
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -1
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js +22 -17
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -1
- package/server/infrastructure/cache/cache.e2e-spec.js +1 -0
- package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -1
- package/server/infrastructure/cache/cache.module.js +1 -14
- package/server/infrastructure/cache/cache.module.js.map +1 -1
- package/server/infrastructure/cache/services/cache.service.js.map +1 -1
- package/server/infrastructure/database/database.module.js +20 -1
- package/server/infrastructure/database/database.module.js.map +1 -1
- package/server/infrastructure/database/utils.js +48 -0
- package/server/infrastructure/database/utils.js.map +1 -1
- package/server/infrastructure/scheduler/scheduler.module.js +1 -1
- package/server/infrastructure/scheduler/scheduler.module.js.map +1 -1
- package/server/infrastructure/websocket/adapters/cluster.adapter.js +1 -3
- package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -1
- package/static/3rdpartylicenses.txt +137 -137
- package/static/chunk-2KLC4T2Z.js +1 -0
- package/static/chunk-373XVRXW.js +1 -0
- package/static/chunk-3GMLWAFZ.js +1 -0
- package/static/chunk-3XVM35O2.js +1 -0
- package/static/chunk-3YVRP3VM.js +2 -0
- package/static/chunk-5NMSIIQB.js +1 -0
- package/static/chunk-AF24EYXU.js +1 -0
- package/static/chunk-AKQVEHO6.js +2 -0
- package/static/{chunk-LUWQFIWR.js → chunk-AY2SZ3G6.js} +1 -1
- package/static/chunk-BCVX464U.js +2 -0
- package/static/{chunk-IPAC4VAF.js → chunk-BIKLW4YS.js} +1 -1
- package/static/chunk-C36MW4ME.js +562 -0
- package/static/chunk-CHJ64RJM.js +1 -0
- package/static/chunk-DKSEQTMX.js +1 -0
- package/static/chunk-DM4NXKEP.js +1 -0
- package/static/chunk-DPUVSXRB.js +1 -0
- package/static/chunk-DSWEWLXJ.js +1 -0
- package/static/chunk-FJE6BOFL.js +1 -0
- package/static/chunk-FZ3JPGYZ.js +1 -0
- package/static/chunk-GUGNR5TF.js +3 -0
- package/static/chunk-H6NE33VX.js +1 -0
- package/static/{chunk-S75P2FFI.js → chunk-HAS5ZOTR.js} +1 -1
- package/static/chunk-HNQRZALS.js +1 -0
- package/static/chunk-JPT5WEAT.js +1 -0
- package/static/{chunk-ZQQPUYLU.js → chunk-JSWCNGXJ.js} +1 -1
- package/static/chunk-KFJIQIGR.js +1 -0
- package/static/chunk-LNTUR3GU.js +1 -0
- package/static/chunk-LVM4QB22.js +1 -0
- package/static/chunk-M3XVNQZQ.js +1 -0
- package/static/{chunk-AWQ2YTVC.js → chunk-MFLIJH6T.js} +1 -1
- package/static/{chunk-IQOALFYU.js → chunk-MSUHTBB2.js} +1 -1
- package/static/chunk-N3U6637P.js +1 -0
- package/static/chunk-NNV4OXSB.js +1 -0
- package/static/chunk-NO2LTNW3.js +1 -0
- package/static/chunk-OOGP4WSH.js +2 -0
- package/static/chunk-PB4AIT7O.js +1 -0
- package/static/chunk-PCWDQPOM.js +2 -0
- package/static/chunk-PGZZP5W3.js +1 -0
- package/static/chunk-PVDHBQRM.js +1 -0
- package/static/chunk-Q5KM7LTX.js +1 -0
- package/static/chunk-QHC6ZPQ4.js +1 -0
- package/static/chunk-QO6BTONN.js +1 -0
- package/static/chunk-QZU2S5CV.js +1 -0
- package/static/chunk-SBZ572Q4.js +2 -0
- package/static/chunk-SHIVUDP3.js +1 -0
- package/static/chunk-SLHTEGRU.js +1 -0
- package/static/{chunk-SH5EVL4E.js → chunk-SSFF27P2.js} +1 -1
- package/static/chunk-TPYBFZS5.js +1 -0
- package/static/chunk-UEQCWMXD.js +1 -0
- package/static/chunk-UG5DMXYO.js +1 -0
- package/static/chunk-UJPPR4MX.js +1 -0
- package/static/chunk-UNCPXHHT.js +1 -0
- package/static/chunk-URHTCJ7G.js +1 -0
- package/static/chunk-V3AT2BKP.js +1 -0
- package/static/chunk-VKK5BSLX.js +1 -0
- package/static/{chunk-7DN7ZAPU.js → chunk-VM4YX6Q7.js} +1 -1
- package/static/chunk-WJW7CT6G.js +27 -0
- package/static/{chunk-7ITZXYYJ.js → chunk-WLMNXRBS.js} +1 -1
- package/static/chunk-X5XGK6T7.js +4 -0
- package/static/chunk-YEKR5OPO.js +1 -0
- package/static/chunk-YW57T2PF.js +1 -0
- package/static/chunk-Z5J5F5SX.js +1 -0
- package/static/chunk-ZIJQRARU.js +1 -0
- package/static/chunk-ZPF2DSQV.js +1 -0
- package/static/chunk-ZTCRGJ6Y.js +7 -0
- package/static/index.html +2 -2
- package/static/main-VOL6OMJ5.js +9 -0
- package/static/scripts-WRDOQIU5.js +24 -0
- package/static/{styles-A5VYX3CE.css → styles-2C2UNCNB.css} +1 -1
- package/server/applications/spaces/interfaces/space-quota.interface.js +0 -10
- package/server/applications/spaces/interfaces/space-quota.interface.js.map +0 -1
- package/static/chunk-22EANI6R.js +0 -1
- package/static/chunk-27YQB3TE.js +0 -1
- package/static/chunk-2I4CUFUA.js +0 -1
- package/static/chunk-2MTM6SWN.js +0 -4
- package/static/chunk-34MKICK5.js +0 -27
- package/static/chunk-5O3DIUU3.js +0 -1
- package/static/chunk-6NMVZIIT.js +0 -1
- package/static/chunk-7FUM3JGM.js +0 -1
- package/static/chunk-7P27WBGC.js +0 -4
- package/static/chunk-ATP3BFHV.js +0 -562
- package/static/chunk-DSOE3FEP.js +0 -1
- package/static/chunk-EFKMBLRE.js +0 -1
- package/static/chunk-FUFKVHPU.js +0 -1
- package/static/chunk-HCDLWTMW.js +0 -7
- package/static/chunk-JASU3CIH.js +0 -1
- package/static/chunk-JQ5FTO2M.js +0 -1
- package/static/chunk-JUNZFADM.js +0 -1
- package/static/chunk-JXZCNFW7.js +0 -1
- package/static/chunk-LJUKI4SQ.js +0 -1
- package/static/chunk-ORMRCEGT.js +0 -1
- package/static/chunk-Q7D6RN4N.js +0 -1
- package/static/chunk-QJX6ITLW.js +0 -1
- package/static/chunk-QQ6UQQBR.js +0 -1
- package/static/chunk-RTRJ3KFH.js +0 -1
- package/static/chunk-S2HDY3OL.js +0 -1
- package/static/chunk-T3EYFSVZ.js +0 -1
- package/static/chunk-U34OZUZ7.js +0 -1
- package/static/chunk-Y7EH7G5K.js +0 -1
- package/static/main-7SQDDVMD.js +0 -9
- package/static/scripts-VZVAP2P4.js +0 -30
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./chunk-N3U6637P.js";var a="\u8A8D\u8A3C",t="\u30ED\u30B0\u30A4\u30F3",s="\u30D1\u30B9\u30EF\u30FC\u30C9",n="\u78BA\u8A8D",r="\u30AD\u30E3\u30F3\u30BB\u30EB",i="\u9589\u3058\u308B",l="\u30D5\u30A3\u30EB\u30BF\u30FC",d="\u30D5\u30A3\u30EB\u30BF\u30FC",c="\u691C\u7D22",h="\u691C\u7D22",u="\u8868\u793A",p="\u30BF\u30B9\u30AF\u306F\u3042\u308A\u307E\u305B\u3093",m="{{ nb }} \u4EF6\u306E\u30BF\u30B9\u30AF\u304C\u5B8C\u4E86",f="{{ nb }} \u4EF6\u306E\u30BF\u30B9\u30AF\u304C\u5B8C\u4E86",b="{{ nba }} \u4EF6\u306E\u30BF\u30B9\u30AF\u304C\u9032\u884C\u4E2D\uFF08\u5168 {{ nb }} \u4EF6\uFF09",y="{{ nba }} \u4EF6\u306E\u30BF\u30B9\u30AF\u304C\u9032\u884C\u4E2D\uFF08\u5168 {{ nb }} \u4EF6\uFF09",g="{{nb}} \u500B\u306E\u8981\u7D20",w="{{nb}} \u500B\u306E\u30A2\u30AF\u30B7\u30E7\u30F3",S="{{ nb }} \u4EF6\u306E\u65B0\u3057\u3044\u30E1\u30C3\u30BB\u30FC\u30B8",v="{{ nb }} \u4EF6\u306E\u65B0\u3057\u3044\u30E1\u30C3\u30BB\u30FC\u30B8",T="{{ nb }} \u4EF6\u306E\u672A\u8AAD\u901A\u77E5",A="{{ nb }} \u4EF6\u306E\u672A\u8AAD\u901A\u77E5",_="\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",k="\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",C="\u901A\u77E5",x="\u901A\u77E5",D="\u30A4\u30D9\u30F3\u30C8",P="\u30D5\u30A1\u30A4\u30EB",U="\u30D5\u30A1\u30A4\u30EB",N="\u500B\u4EBA",M="\u5916\u90E8",E="\u30B0\u30EB\u30FC\u30D7",L="\u30B0\u30EB\u30FC\u30D7",R="\u30B0\u30EB\u30FC\u30D7",F="\u30B0\u30EB\u30FC\u30D7",G="\u53EF\u8996",Y="\u30D7\u30E9\u30A4\u30D9\u30FC\u30C8",z="\u5206\u96E2",I="\u8FFD\u52A0",W="\u7BA1\u7406\u8005",O="\u7BA1\u7406",V="\u30E6\u30FC\u30B6\u30FC",q="\u30E6\u30FC\u30B6\u30FC",Q="\u30E6\u30FC\u30B6\u30FC",j="\u30E6\u30FC\u30B6\u30FC",B="\u30A2\u30AB\u30A6\u30F3\u30C8",H="\u30A2\u30AB\u30A6\u30F3\u30C8",K="\u30E1\u30FC\u30EB",J="\u30B9\u30C6\u30FC\u30BF\u30B9",X="\u5F79\u5272",Z="IP",$="\u8868\u793A",ee="\u63A5\u7D9A",oe="\u63A5\u7D9A",ae="\u7A7A\u304D\u5BB9\u91CF\u304C\u5C11\u306A\u3044\uFF08{{ nb }}%\uFF09",te="\u30AA\u30F3\u30E9\u30A4\u30F3",se="\u7121\u5236\u9650",ne="\u30E1\u30F3\u30D0\u30FC",re="\u30E1\u30F3\u30D0\u30FC",ie="\u30E1\u30F3\u30D0\u30FC",le="\u30E1\u30F3\u30D0\u30FC",de="\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC",ce="\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC",he="\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC",ue="\u751F\u6210",pe="\u30A4\u30F3\u30DD\u30FC\u30C8",me="\u8A2D\u5B9A",fe="\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",be="\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",ye="\u30A2\u30D0\u30BF\u30FC",ge="\u66F4\u65B0",we="\u8A00\u8A9E",Se="\u30DB\u30FC\u30E0",ve="\u6700\u8FD1",Te="\u6700\u8FD1",Ae="\u30B4\u30DF\u7BB1",_e="\u5171\u6709",ke="\u5171\u6709",Ce="\u5171\u6709",xe="\u5171\u6709\u6E08\u307F",De="\u500B\u4EBA\u30B9\u30DA\u30FC\u30B9\u3078\u306E\u30A2\u30AF\u30BB\u30B9",Pe="\u30B9\u30DA\u30FC\u30B9\u3078\u306E\u30A2\u30AF\u30BB\u30B9",Ue="\u30B9\u30DA\u30FC\u30B9\u306E\u7BA1\u7406",Ne="\u5171\u6709\u3078\u306E\u30A2\u30AF\u30BB\u30B9",Me="\u5171\u6709\u306E\u7BA1\u7406",Ee="\u30B2\u30B9\u30C8\u306E\u7BA1\u7406",Le="\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7\u306E\u7BA1\u7406",Re="\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u30A2\u30D7\u30EA\u304B\u3089\u306E\u30A2\u30AF\u30BB\u30B9",Fe="\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u30A2\u30D7\u30EA\u3067\u306E\u540C\u671F",Ge="WebDAV \u30A2\u30AF\u30BB\u30B9",Ye="WebDAV",ze="\u30B9\u30DA\u30FC\u30B9",Ie="\u30B9\u30DA\u30FC\u30B9",We="\u30B9\u30DA\u30FC\u30B9",Oe="\u30A2\u30F3\u30AB\u30FC\u3057\u307E\u3057\u305F",Ve="\u30A2\u30F3\u30AB\u30FC\u3092\u89E3\u9664\u3057\u307E\u3057\u305F",qe="\u5834\u6240",Qe="\u30A2\u30F3\u30AB\u30FC\u6E08\u307F",je="\u8A2D\u5B9A",Be="\u30AA\u30D7\u30B7\u30E7\u30F3",He="\u540D\u524D",Ke="\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",Je="\u79FB\u52D5",Xe="\u30B3\u30D4\u30FC",Ze="\u540D\u524D\u3092\u5909\u66F4",$e="\u7DE8\u96C6",eo="\u524A\u9664",oo="\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9",ao="\u66F4\u65B0",to="\u7A7A\u306B\u3059\u308B",so="\u4E00\u89A7",no="\u8868\u793A",ro="<b>{{arg}}</b> \u3092\u30B4\u30DF\u7BB1\u306B\u79FB\u52D5\u3057\u307E\u3059\u304B\uFF1F",io="<b>{{arg}}</b> \u3092\u5B8C\u5168\u306B\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F",lo="\u3053\u308C\u3089<b>{{arg}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB</b>\u3092\u30B4\u30DF\u7BB1\u306B\u79FB\u52D5\u3057\u307E\u3059\u304B\uFF1F",co="\u3053\u308C\u3089<b>{{arg}} \u500B\u306E\u30D5\u30A1\u30A4\u30EB</b>\u3092\u5B8C\u5168\u306B\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F",ho="\u540C\u671F",uo="\u540C\u671F",po="\u540C\u671F",mo="\u540C\u671F",fo="\u540C\u671F",bo="\u540C\u671F\u6E08\u307F",yo="\u5727\u7E2E",go="\u89E3\u51CD",wo="\u60C5\u5831",So="\u60C5\u5831",vo="\u60C5\u5831",To="\u30B5\u30A4\u30BA",Ao="\u5909\u66F4\u65E5\u6642",_o="\u5909\u66F4\u6E08\u307F",ko="\u30BF\u30B9\u30AF",Co="\u30C6\u30AD\u30B9\u30C8",xo="\u8981\u7D20",Do="\u65B0\u898F",Po="\u30D5\u30A9\u30EB\u30C0\u30FC",Uo="\u30D5\u30A9\u30EB\u30C0\u30FC",No="\u30D5\u30A1\u30A4\u30EB",Mo="\u30D5\u30A1\u30A4\u30EB",Eo="\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA",Lo="\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA",Ro="\u5408\u8A08",Fo="\u9078\u629E\u306A\u3057",Go="{{ nb }} \u500B\u9078\u629E",Yo="{{ nb }} \u500B\u9078\u629E",zo="\u9805\u76EE",Io="\u9805\u76EE",Wo="\u4F5C\u6210",Oo="\u66F8\u304D\u8FBC\u307F",Vo="\u79FB\u52D5",qo="\u524A\u9664",Qo="\u5909\u66F4",jo="\u5171\u6709",Bo="\u30EA\u30F3\u30AF",Ho="\u30EA\u30F3\u30AF",Ko="\u30EA\u30F3\u30AF",Jo="\u30EA\u30F3\u30AF",Xo="\u30B2\u30B9\u30C8",Zo="\u30B2\u30B9\u30C8",$o="\u30B2\u30B9\u30C8",ea="\u30B2\u30B9\u30C8",oa="\u671F\u9650\u5207\u308C",aa="\u671F\u9650\u5207\u308C",ta="\u306A\u3057",sa="\u6A29\u9650",na="\u6240\u6709\u8005",ra="\u81EA\u5206",ia="\u5171\u6709",la="\u4F5C\u6210\u65E5",da="\u65E5\u4ED8",ca="\u30D1\u30B9",ha="\u6709\u52B9",ua="\u6709\u52B9",pa="\u4E00\u6642\u505C\u6B62",ma="\u7A2E\u985E",fa="\u8AAC\u660E",ba="\u8868\u793A\u7BC4\u56F2",ya="\u4E0D\u660E",ga="\u6709\u52B9\u671F\u9650",wa="\u30A2\u30AF\u30BB\u30B9",Sa="\u30A2\u30AF\u30BB\u30B9\u6E08\u307F",va="\u30B3\u30E1\u30F3\u30C8",Ta="\u30B3\u30E1\u30F3\u30C8",Aa="\u30B3\u30E1\u30F3\u30C8",_a="\u30B3\u30E1\u30F3\u30C8\u3057\u307E\u3057\u305F",ka="\u306F\u3044",Ca="\u3044\u3044\u3048",xa="\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8",Da="\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8",Pa="\u5229\u7528\u53EF\u80FD",Ua="\u4F7F\u7528\u4E2D",Na="\u4E0D\u5728",Ma="\u30AA\u30D5\u30E9\u30A4\u30F3",Ea="\u8868\u793A",La="\u30ED\u30B0\u30A2\u30A6\u30C8",Ra="\u65E5",Fa="\u65E5",Ga="\u524A\u9664",Ya="\u30B9\u30B1\u30B8\u30E5\u30FC\u30E9",za="\u4E26\u5217",Ia="\u9010\u6B21",Wa="\u8EE2\u9001",Oa="\u30B7\u30DF\u30E5\u30EC\u30FC\u30C8",Va="\u30EA\u30BB\u30C3\u30C8",qa="\u53C2\u7167",Qa="\u30A2\u30AF\u30B7\u30E7\u30F3",ja="\u8FFD\u52A0",Ba="\u524A\u9664",Ha="\u30B3\u30D4\u30FC",Ka="\u79FB\u52D5",Ja="\u30D5\u30A3\u30EB\u30BF\u30FC\u6E08\u307F",Xa="\u30A8\u30E9\u30FC",Za="\u30B5\u30FC\u30D0\u30FC",$a="\u65B9\u5411",et="\u7AF6\u5408",ot="\u6700\u8FD1",at="\u30BD\u30FC\u30B9",tt="\u5B9B\u5148",st="\u30E2\u30FC\u30C9",nt="\u9010\u6B21\u7684\u306B",rt="\u4E26\u5217\u3067",it="\u9AD8\u901F",lt="\u5B89\u5168",dt="\u6709\u52B9",ct="\u6709\u52B9\u5316",ht="\u7121\u52B9",ut="\u7121\u52B9\u5316",pt="\u6642\u9593",mt="\u5206",ft="\u65E5",bt="\u53CC\u65B9\u5411",yt="\u3057\u306A\u3044",gt="\u30A6\u30A3\u30B6\u30FC\u30C9",wt="\u6B21\u3078",St="\u524D\u3078",vt="\u5B8C\u4E86",Tt="\u3078",At="\u30EA\u30DD\u30B8\u30C8\u30EA",_t="\u516C\u958B",kt="\u30ED\u30FC\u30AB\u30EB",Ct="\u30EA\u30E2\u30FC\u30C8",xt="\u30A6\u30A7\u30D6\u30B5\u30A4\u30C8",Dt="\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",Pt="\u30D0\u30FC\u30B8\u30E7\u30F3",Ut="\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3",Nt="\u7BA1\u7406",Mt={"Sign-in to your account":"\u30A2\u30AB\u30A6\u30F3\u30C8\u306B\u30B5\u30A4\u30F3\u30A4\u30F3","Wrong login or password":"\u30ED\u30B0\u30A4\u30F3\u540D\u307E\u305F\u306F\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u6B63\u3057\u304F\u3042\u308A\u307E\u305B\u3093","Authentication service error":"\u8A8D\u8A3C\u30B5\u30FC\u30D3\u30B9\u30A8\u30E9\u30FC","Account locked":"\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u30ED\u30C3\u30AF\u3055\u308C\u3066\u3044\u307E\u3059","Account is not allowed":"\u30A2\u30AB\u30A6\u30F3\u30C8\u306F\u8A31\u53EF\u3055\u308C\u3066\u3044\u307E\u305B\u3093","Account matching error":"\u30A2\u30AB\u30A6\u30F3\u30C8\u7167\u5408\u30A8\u30E9\u30FC",Authentication:a,"Sign in":"\u30B5\u30A4\u30F3\u30A4\u30F3",Login:t,Password:s,"Login or Email":"\u30ED\u30B0\u30A4\u30F3\u540D\u307E\u305F\u306F\u30E1\u30FC\u30EB","Login already used":"\u305D\u306E\u30ED\u30B0\u30A4\u30F3\u540D\u306F\u65E2\u306B\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059","You are already logged in":"\u65E2\u306B\u30ED\u30B0\u30A4\u30F3\u3057\u3066\u3044\u307E\u3059","Name already used":"\u305D\u306E\u540D\u524D\u306F\u65E2\u306B\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059","Token has expired":"\u30C8\u30FC\u30AF\u30F3\u306E\u6709\u52B9\u671F\u9650\u304C\u5207\u308C\u3066\u3044\u307E\u3059",Confirm:n,Cancel:r,Close:i,"Server connection error":"\u30B5\u30FC\u30D0\u30FC\u63A5\u7D9A\u30A8\u30E9\u30FC",Filter:l,Filters:d,search:c,Search:h,"Search for content":"\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u691C\u7D22","Search for files":"\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u7D22","Full-text search":"\u30D5\u30EB\u30C6\u30AD\u30B9\u30C8\u691C\u7D22","Full-text search is disabled":"\u30D5\u30EB\u30C6\u30AD\u30B9\u30C8\u691C\u7D22\u306F\u7121\u52B9\u3067\u3059","Type to search for users or groups to add":"\u8FFD\u52A0\u3059\u308B\u30E6\u30FC\u30B6\u30FC\u307E\u305F\u306F\u30B0\u30EB\u30FC\u30D7\u3092\u691C\u7D22","Type to search for groups to add":"\u8FFD\u52A0\u3059\u308B\u30B0\u30EB\u30FC\u30D7\u3092\u691C\u7D22","Type to search for users to add":"\u8FFD\u52A0\u3059\u308B\u30E6\u30FC\u30B6\u30FC\u3092\u691C\u7D22","Type to search for managers to add":"\u8FFD\u52A0\u3059\u308B\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u3092\u691C\u7D22","Member since":"\u30E1\u30F3\u30D0\u30FC\u767B\u9332\u65E5","Windows Manager":"\u30A6\u30A3\u30F3\u30C9\u30A6\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC","Mark as read":"\u65E2\u8AAD\u306B\u3059\u308B",See:u,no_task:p,one_task:m,nb_tasks:f,one_active_task:b,nb_active_tasks:y,nb_elements:g,nb_actions:w,one_message:S,nb_messages:v,one_notification:T,nb_notifications:A,Application:_,application:k,"application and email":"\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3068\u30E1\u30FC\u30EB",Notification:C,Notifications:x,Event:D,File:P,Files:U,"Personal files":"\u500B\u4EBA\u30D5\u30A1\u30A4\u30EB","for personal files":"\u500B\u4EBA\u30D5\u30A1\u30A4\u30EB\u7528",Personal:N,External:M,"Share status":"\u5171\u6709\u72B6\u6CC1","Share description":"\u5171\u6709\u306E\u8AAC\u660E","No recent files":"\u6700\u8FD1\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3042\u308A\u307E\u305B\u3093",Groups:E,Group:L,group:R,"New personal group":"\u65B0\u3057\u3044\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7","Edit personal group":"\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7\u3092\u7DE8\u96C6","personal group":"\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7","Personal group":"\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7","Personal groups":"\u500B\u4EBA\u30B0\u30EB\u30FC\u30D7",groups:F,"Parent group":"\u89AA\u30B0\u30EB\u30FC\u30D7","Group updated":"\u30B0\u30EB\u30FC\u30D7\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Group created":"\u30B0\u30EB\u30FC\u30D7\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F","Group not found":"\u30B0\u30EB\u30FC\u30D7\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093","Group error":"\u30B0\u30EB\u30FC\u30D7\u30A8\u30E9\u30FC","Set as group manager":"\u30B0\u30EB\u30FC\u30D7\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u306B\u8A2D\u5B9A","As a manager, the user will be able to manage the group and its members.":"\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u306F\u30B0\u30EB\u30FC\u30D7\u3068\u305D\u306E\u30E1\u30F3\u30D0\u30FC\u3092\u7BA1\u7406\u3067\u304D\u307E\u3059\u3002","As a manager, the user will be able to manage group members but not group properties.":"\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u306F\u30B0\u30EB\u30FC\u30D7\u306E\u30E1\u30F3\u30D0\u30FC\u3092\u7BA1\u7406\u3067\u304D\u307E\u3059\u304C\u3001\u30B0\u30EB\u30FC\u30D7\u306E\u30D7\u30ED\u30D1\u30C6\u30A3\u306F\u7BA1\u7406\u3067\u304D\u307E\u305B\u3093\u3002",Visible:G,Private:Y,Isolated:z,"Select the parent group":"\u89AA\u30B0\u30EB\u30FC\u30D7\u3092\u9078\u629E","from the group":"\u30B0\u30EB\u30FC\u30D7\u304B\u3089","New group":"\u65B0\u3057\u3044\u30B0\u30EB\u30FC\u30D7","Edit group":"\u30B0\u30EB\u30FC\u30D7\u3092\u7DE8\u96C6","Leave group":"\u30B0\u30EB\u30FC\u30D7\u3092\u9000\u51FA","Delete group":"\u30B0\u30EB\u30FC\u30D7\u3092\u524A\u9664","Remove from group":"\u30B0\u30EB\u30FC\u30D7\u304B\u3089\u524A\u9664","Group must have at least one manager":"\u30B0\u30EB\u30FC\u30D7\u306B\u306F\u5C11\u306A\u304F\u3068\u30821\u4EBA\u306E\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u304C\u5FC5\u8981\u3067\u3059","The group was left":"\u30B0\u30EB\u30FC\u30D7\u3092\u9000\u51FA\u3057\u307E\u3057\u305F","The group was not left":"\u30B0\u30EB\u30FC\u30D7\u3092\u9000\u51FA\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F","will be left, you will no longer be a member of this group":"\u304B\u3089\u9000\u51FA\u3057\u307E\u3059\u3002\u3053\u306E\u30B0\u30EB\u30FC\u30D7\u306E\u30E1\u30F3\u30D0\u30FC\u3067\u306F\u306A\u304F\u306A\u308A\u307E\u3059","All users can see this group.":"\u3059\u3079\u3066\u306E\u30E6\u30FC\u30B6\u30FC\u304C\u3053\u306E\u30B0\u30EB\u30FC\u30D7\u3092\u8868\u793A\u3067\u304D\u307E\u3059\u3002","Users who are not members of this group cannot see it.":"\u3053\u306E\u30B0\u30EB\u30FC\u30D7\u306E\u30E1\u30F3\u30D0\u30FC\u3067\u306A\u3044\u30E6\u30FC\u30B6\u30FC\u306B\u306F\u8868\u793A\u3055\u308C\u307E\u305B\u3093\u3002","The group is not visible, its members cannot see it and cannot see each other.":"\u30B0\u30EB\u30FC\u30D7\u306F\u4E0D\u53EF\u8996\u3067\u3001\u30E1\u30F3\u30D0\u30FC\u306F\u30B0\u30EB\u30FC\u30D7\u3082\u4E92\u3044\u306E\u5B58\u5728\u3082\u898B\u3048\u307E\u305B\u3093\u3002",Add:I,"Add members":"\u30E1\u30F3\u30D0\u30FC\u3092\u8FFD\u52A0","See members":"\u30E1\u30F3\u30D0\u30FC\u3092\u8868\u793A",Administrator:W,Administration:O,User:V,user:q,Users:Q,users:j,"New user":"\u65B0\u3057\u3044\u30E6\u30FC\u30B6\u30FC",account:B,Account:H,"Account status":"\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u72B6\u614B",Email:K,"Email already used":"\u305D\u306E\u30E1\u30FC\u30EB\u306F\u65E2\u306B\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059","First name":"\u540D","Last name":"\u59D3","Full name":"\u6C0F\u540D",Status:J,Role:X,IP:Z,"IP Addresses":"IP\u30A2\u30C9\u30EC\u30B9",Seen:$,Connection:ee,Connections:oe,"Confirm deletion":"\u524A\u9664\u306E\u78BA\u8A8D","Confirm permanent deletion of data":"\u30C7\u30FC\u30BF\u306E\u5B8C\u5168\u524A\u9664\u3092\u78BA\u8A8D","Space and data will be deleted in":"\u30B9\u30DA\u30FC\u30B9\u3068\u30C7\u30FC\u30BF\u306F\u524A\u9664\u3055\u308C\u307E\u3059","Space is disabled":"\u30B9\u30DA\u30FC\u30B9\u306F\u7121\u52B9\u3067\u3059","Storage Space":"\u30B9\u30C8\u30EC\u30FC\u30B8\u9818\u57DF","Storage Quota":"\u30B9\u30C8\u30EC\u30FC\u30B8\u5BB9\u91CF","Storage Usage":"\u30B9\u30C8\u30EC\u30FC\u30B8\u4F7F\u7528\u91CF","Space status":"\u30B9\u30DA\u30FC\u30B9\u306E\u72B6\u614B","Storage quota exceeded":"\u30B9\u30C8\u30EC\u30FC\u30B8\u306E\u5272\u308A\u5F53\u3066\u3092\u8D85\u3048\u3066\u3044\u307E\u3059","Storage quota will be exceeded":"\u30B9\u30C8\u30EC\u30FC\u30B8\u306E\u5272\u308A\u5F53\u3066\u3092\u8D85\u904E\u3059\u308B\u898B\u8FBC\u307F\u3067\u3059","No more space available":"\u7A7A\u304D\u5BB9\u91CF\u304C\u3042\u308A\u307E\u305B\u3093",available_space_is_low:ae,online:te,"Online users":"\u30AA\u30F3\u30E9\u30A4\u30F3\u30E6\u30FC\u30B6\u30FC",Unlimited:se,member:ne,members:re,Member:ie,Members:le,Manager:de,manager:ce,Managers:he,"At least one manager is required":"\u5C11\u306A\u304F\u3068\u30821\u4EBA\u306E\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u304C\u5FC5\u8981\u3067\u3059",Generate:ue,Import:pe,Configuration:me,Applications:fe,applications:be,"Permissions inherited from groups":"\u30B0\u30EB\u30FC\u30D7\u304B\u3089\u7D99\u627F\u3055\u308C\u305F\u6A29\u9650","Only the group will be deleted, the members will no longer be part of it.":"\u30B0\u30EB\u30FC\u30D7\u306E\u307F\u304C\u524A\u9664\u3055\u308C\u3001\u30E1\u30F3\u30D0\u30FC\u306F\u305D\u306E\u4E00\u54E1\u3067\u306F\u306A\u304F\u306A\u308A\u307E\u3059\u3002",Avatar:ye,Update:ge,"current password":"\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9","new password":"\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9","Change me !":"\u5909\u66F4\u3057\u3066\u304F\u3060\u3055\u3044\uFF01","Current password missing !":"\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u672A\u5165\u529B\u3067\u3059\uFF01","New password missing !":"\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u672A\u5165\u529B\u3067\u3059\uFF01","New password must have 8 characters minimum":"\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9\u306F8\u6587\u5B57\u4EE5\u4E0A\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059","Current password does not match":"\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u4E00\u81F4\u3057\u307E\u305B\u3093","Password has been updated":"\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Unable to update password":"\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","Bad password":"\u4E0D\u6B63\u306A\u30D1\u30B9\u30EF\u30FC\u30C9","too many login attempts":"\u30ED\u30B0\u30A4\u30F3\u8A66\u884C\u304C\u591A\u3059\u304E\u307E\u3059",Language:we,"Language updated":"\u8A00\u8A9E\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Unable to update language":"\u8A00\u8A9E\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","Notification preference updated":"\u901A\u77E5\u8A2D\u5B9A\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Full-text search preference updated":"\u30D5\u30EB\u30C6\u30AD\u30B9\u30C8\u691C\u7D22\u8A2D\u5B9A\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Unable to update notification preference":"\u901A\u77E5\u8A2D\u5B9A\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","Unable to update full-text search preference":"\u30D5\u30EB\u30C6\u30AD\u30B9\u30C8\u691C\u7D22\u8A2D\u5B9A\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","Unable to open document":"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u958B\u3051\u307E\u305B\u3093",Home:Se,Recents:ve,recents:Te,Trash:Ae,"trash bins":"\u30B4\u30DF\u7BB1",Shares:_e,Share:ke,shares:Ce,shared:xe,personal_space:De,spaces_access:Pe,spaces_admin:Ue,shares_access:Ne,shares_admin:Me,guests_admin:Ee,personal_groups_admin:Le,desktop_app_access:Re,desktop_app_sync:Fe,webdav_access:Ge,"Create share":"\u5171\u6709\u3092\u4F5C\u6210","Edit share":"\u5171\u6709\u3092\u7DE8\u96C6","Delete share":"\u5171\u6709\u3092\u524A\u9664","Child shares":"\u5B50\u5171\u6709",webdav:Ye,"Share is disabled":"\u5171\u6709\u306F\u7121\u52B9\u3067\u3059",Space:ze,Spaces:Ie,spaces:We,"Space name":"\u30B9\u30DA\u30FC\u30B9\u540D","New space":"\u65B0\u3057\u3044\u30B9\u30DA\u30FC\u30B9","Create a new space":"\u65B0\u3057\u3044\u30B9\u30DA\u30FC\u30B9\u3092\u4F5C\u6210","Create space":"\u30B9\u30DA\u30FC\u30B9\u3092\u4F5C\u6210","Edit space":"\u30B9\u30DA\u30FC\u30B9\u3092\u7DE8\u96C6","Delete space":"\u30B9\u30DA\u30FC\u30B9\u3092\u524A\u9664","Create a new share":"\u65B0\u3057\u3044\u5171\u6709\u3092\u4F5C\u6210","Type to search for space to select":"\u9078\u629E\u3059\u308B\u30B9\u30DA\u30FC\u30B9\u3092\u691C\u7D22","Anchor to a space":"\u30B9\u30DA\u30FC\u30B9\u306B\u30A2\u30F3\u30AB\u30FC","Anchor files to a space":"\u30D5\u30A1\u30A4\u30EB\u3092\u30B9\u30DA\u30FC\u30B9\u306B\u30A2\u30F3\u30AB\u30FC\u3059\u308B","You have been invited to join this space":"\u3053\u306E\u30B9\u30DA\u30FC\u30B9\u3078\u306E\u62DB\u5F85\u3092\u53D7\u3051\u307E\u3057\u305F","You have been invited to join this share":"\u3053\u306E\u5171\u6709\u3078\u306E\u62DB\u5F85\u3092\u53D7\u3051\u307E\u3057\u305F","Shared with others":"\u4ED6\u306E\u30E6\u30FC\u30B6\u30FC\u3068\u5171\u6709","With others":"\u4ED6\u306E\u30E6\u30FC\u30B6\u30FC\u3068","Shared with me":"\u81EA\u5206\u3068\u5171\u6709","With me":"\u81EA\u5206\u3068","Shared via links":"\u30EA\u30F3\u30AF\u7D4C\u7531\u3067\u5171\u6709","Via links":"\u30EA\u30F3\u30AF\u7D4C\u7531","Shared from":"\u5171\u6709\u5143","share with you this":"\u6B21\u3092\u3042\u306A\u305F\u3068\u5171\u6709\u3057\u307E\u3057\u305F","shared with you":"\u3042\u306A\u305F\u3068\u5171\u6709\u3057\u307E\u3057\u305F","no longer share with you":"\u3042\u306A\u305F\u3068\u306E\u5171\u6709\u3092\u505C\u6B62\u3057\u307E\u3057\u305F","You now have access to the space":"\u30B9\u30DA\u30FC\u30B9\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u6A29\u304C\u4ED8\u4E0E\u3055\u308C\u307E\u3057\u305F","You no longer have access to the space":"\u30B9\u30DA\u30FC\u30B9\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u6A29\u304C\u306A\u304F\u306A\u308A\u307E\u3057\u305F","This space has been permanently deleted":"\u3053\u306E\u30B9\u30DA\u30FC\u30B9\u306F\u5B8C\u5168\u306B\u524A\u9664\u3055\u308C\u307E\u3057\u305F","You now have access to the share":"\u5171\u6709\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u6A29\u304C\u4ED8\u4E0E\u3055\u308C\u307E\u3057\u305F","You no longer have access to the share":"\u5171\u6709\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u6A29\u304C\u306A\u304F\u306A\u308A\u307E\u3057\u305F","You are no longer a member of the parent share, your child share has been deleted":"\u89AA\u5171\u6709\u306E\u30E1\u30F3\u30D0\u30FC\u3067\u306F\u306A\u304F\u306A\u3063\u305F\u305F\u3081\u3001\u3042\u306A\u305F\u306E\u5B50\u5171\u6709\u306F\u524A\u9664\u3055\u308C\u307E\u3057\u305F",anchored:Oe,unanchored:Ve,"Share not found":"\u5171\u6709\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093","Go to":"\u79FB\u52D5",Location:qe,"Name and location are required":"\u540D\u524D\u3068\u5834\u6240\u306F\u5FC5\u9808\u3067\u3059","Parent location already exists in files":"\u89AA\u306E\u5834\u6240\u306F\u30D5\u30A1\u30A4\u30EB\u306B\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","Check the location":"\u5834\u6240\u3092\u78BA\u8A8D","Location not found":"\u5834\u6240\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093","Forbidden resource":"\u8A31\u53EF\u3055\u308C\u3066\u3044\u306A\u3044\u5834\u6240","Resource already exists":"\u9805\u76EE\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","The location does not exist":"\u305D\u306E\u5834\u6240\u306F\u5B58\u5728\u3057\u307E\u305B\u3093","The location is not readable":"\u305D\u306E\u5834\u6240\u306F\u8AAD\u307F\u53D6\u308A\u4E0D\u53EF\u3067\u3059","The location is not writeable":"\u305D\u306E\u5834\u6240\u306F\u66F8\u304D\u8FBC\u307F\u4E0D\u53EF\u3067\u3059","The location is a directory":"\u305D\u306E\u5834\u6240\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u3059","The file is locked":"\u30D5\u30A1\u30A4\u30EB\u306F\u30ED\u30C3\u30AF\u3055\u308C\u3066\u3044\u307E\u3059","This share is protected by a password":"\u3053\u306E\u5171\u6709\u306F\u30D1\u30B9\u30EF\u30FC\u30C9\u3067\u4FDD\u8B77\u3055\u308C\u3066\u3044\u307E\u3059","You do not have share permission":"\u5171\u6709\u3059\u308B\u6A29\u9650\u304C\u3042\u308A\u307E\u305B\u3093","You can not share a space":"\u30B9\u30DA\u30FC\u30B9\u306F\u5171\u6709\u3067\u304D\u307E\u305B\u3093","You can not remove an anchored file":"\u30A2\u30F3\u30AB\u30FC\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u524A\u9664\u3067\u304D\u307E\u305B\u3093","You are not allowed to write here":"\u3053\u3053\u306B\u66F8\u304D\u8FBC\u3080\u6A29\u9650\u304C\u3042\u308A\u307E\u305B\u3093","You are not allowed to do this action":"\u3053\u306E\u64CD\u4F5C\u3092\u884C\u3046\u6A29\u9650\u304C\u3042\u308A\u307E\u305B\u3093","You can not move an anchored file":"\u30A2\u30F3\u30AB\u30FC\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u79FB\u52D5\u3067\u304D\u307E\u305B\u3093","You can not move a locked file":"\u30ED\u30C3\u30AF\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u79FB\u52D5\u3067\u304D\u307E\u305B\u3093",Anchored:Qe,"Anchored by":"\u30A2\u30F3\u30AB\u30FC\u3057\u305F\u30E6\u30FC\u30B6\u30FC","Manage my anchored files":"\u81EA\u5206\u306E\u30A2\u30F3\u30AB\u30FC\u30D5\u30A1\u30A4\u30EB\u3092\u7BA1\u7406","You have no files anchored on this space":"\u3053\u306E\u30B9\u30DA\u30FC\u30B9\u306B\u30A2\u30F3\u30AB\u30FC\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u3042\u308A\u307E\u305B\u3093","An anchored file already has this name":"\u540C\u540D\u306E\u30A2\u30F3\u30AB\u30FC\u30D5\u30A1\u30A4\u30EB\u304C\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059",Settings:je,Options:Be,Name:He,Download:Ke,"Download done":"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u5B8C\u4E86","Download failed":"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u5931\u6557","Upload done":"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u5B8C\u4E86","Upload failed":"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u5931\u6557","Copy/Move":"\u30B3\u30D4\u30FC/\u79FB\u52D5",Move:Je,"Move done":"\u79FB\u52D5\u5B8C\u4E86","Move failed":"\u79FB\u52D5\u5931\u6557","Deletion done":"\u524A\u9664\u5B8C\u4E86","Deletion failed":"\u524A\u9664\u5931\u6557","Creation failed":"\u4F5C\u6210\u5931\u6557",Copy:Xe,"Copy done":"\u30B3\u30D4\u30FC\u5B8C\u4E86","Copy failed":"\u30B3\u30D4\u30FC\u5931\u6557","Copy-Paste":"\u30B3\u30D4\u30FC\uFF06\u30DA\u30FC\u30B9\u30C8","Cut-Paste":"\u30AB\u30C3\u30C8\uFF06\u30DA\u30FC\u30B9\u30C8",Rename:Ze,Edit:$e,"Share inside":"\u5185\u90E8\u3067\u5171\u6709","Share outside":"\u5916\u90E8\u3067\u5171\u6709",Remove:eo,Clipboard:oo,"Send to Clipboard":"\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u3078\u9001\u308B","will be removed":"\u524A\u9664\u3055\u308C\u307E\u3059",Refresh:ao,Empty:to,List:so,Display:no,"Sort by":"\u4E26\u3073\u66FF\u3048",trash_one_file:ro,delete_one_file:io,trash_multiple_files:lo,delete_multiple_files:co,"Moving to trash":"\u30B4\u30DF\u7BB1\u306B\u79FB\u52D5\u4E2D","Permanent deletion":"\u5B8C\u5168\u524A\u9664","Would you like to empty the trash ?":"\u30B4\u30DF\u7BB1\u3092\u7A7A\u306B\u3057\u307E\u3059\u304B\uFF1F","All items will be permanently deleted":"\u3059\u3079\u3066\u306E\u9805\u76EE\u304C\u5B8C\u5168\u306B\u524A\u9664\u3055\u308C\u307E\u3059","Actions will be performed in the current folder":"\u64CD\u4F5C\u306F\u73FE\u5728\u306E\u30D5\u30A9\u30EB\u30C0\u30FC\u3067\u5B9F\u884C\u3055\u308C\u307E\u3059","The client will no longer have permission to access your account and will no longer be able to synchronize.":"\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u306F\u3042\u306A\u305F\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u306B\u30A2\u30AF\u30BB\u30B9\u3059\u308B\u6A29\u9650\u3092\u5931\u3044\u3001\u540C\u671F\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002","The access expires":"\u30A2\u30AF\u30BB\u30B9\u306E\u6709\u52B9\u671F\u9650","The access has expired":"\u30A2\u30AF\u30BB\u30B9\u306E\u6709\u52B9\u671F\u9650\u304C\u5207\u308C\u3066\u3044\u307E\u3059","Never expires":"\u6709\u52B9\u671F\u9650\u306A\u3057",synchronization:ho,Synchronization:uo,Synchronizations:po,Synchronize:mo,Sync:fo,"Stop synchronization":"\u540C\u671F\u3092\u505C\u6B62","Synchronize all":"\u3059\u3079\u3066\u540C\u671F","Stop synchronizations":"\u540C\u671F\u3092\u505C\u6B62",Synced:bo,"Sync already exists":"\u540C\u671F\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","Sync was reset":"\u540C\u671F\u3092\u30EA\u30BB\u30C3\u30C8\u3057\u307E\u3057\u305F","Sync deleted":"\u540C\u671F\u3092\u524A\u9664\u3057\u307E\u3057\u305F","This client":"\u3053\u306E\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8","You are no longer synchronizing":"\u540C\u671F\u3057\u3066\u3044\u307E\u305B\u3093",Compress:yo,Decompress:go,"Compress and Download":"\u5727\u7E2E\u3057\u3066\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","Compress and Save":"\u5727\u7E2E\u3057\u3066\u4FDD\u5B58","Enable compression":"\u5727\u7E2E\u3092\u6709\u52B9\u5316","Compression done":"\u5727\u7E2E\u5B8C\u4E86","Compression failed":"\u5727\u7E2E\u5931\u6557","Decompression done":"\u89E3\u51CD\u5B8C\u4E86","Decompression failed":"\u89E3\u51CD\u5931\u6557","(this may take longer)":"\uFF08\u6642\u9593\u304C\u304B\u304B\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\uFF09","Save in the current directory":"\u73FE\u5728\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306B\u4FDD\u5B58","This name is already used":"\u3053\u306E\u540D\u524D\u306F\u65E2\u306B\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059",Information:wo,Informations:So,Infos:vo,Size:To,Modified:Ao,modified:_o,Tasks:ko,"Download from URL":"URL \u304B\u3089\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","Upload files":"\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9","Upload folders":"\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9","Folder name":"\u30D5\u30A9\u30EB\u30C0\u30FC\u540D","New folder":"\u65B0\u3057\u3044\u30D5\u30A9\u30EB\u30C0\u30FC","Document name":"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u540D","New document":"\u65B0\u3057\u3044\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8","File name":"\u30D5\u30A1\u30A4\u30EB\u540D","File permissions":"\u30D5\u30A1\u30A4\u30EB\u306E\u6A29\u9650",Text:Co,"Rich Text Format":"\u30EA\u30C3\u30C1\u30C6\u30AD\u30B9\u30C8\u5F62\u5F0F","Forbidden characters":"\u4F7F\u7528\u3067\u304D\u306A\u3044\u6587\u5B57",Elements:xo,"Malformed URL":"\u4E0D\u6B63\u306AURL",New:Do,Folder:Po,folder:Uo,file:No,files:Mo,directory:Eo,directories:Lo,Total:Ro,no_selection:Fo,one_selection:Go,nb_selections:Yo,"Archive name":"\u30A2\u30FC\u30AB\u30A4\u30D6\u540D","Drag and drop your files here":"\u3053\u3053\u306B\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0\uFF06\u30C9\u30ED\u30C3\u30D7","The destination already exists":"\u5B9B\u5148\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","This item is already selected":"\u3053\u306E\u9805\u76EE\u306F\u65E2\u306B\u9078\u629E\u3055\u308C\u3066\u3044\u307E\u3059","Parent item is already selected":"\u89AA\u9805\u76EE\u306F\u65E2\u306B\u9078\u629E\u3055\u308C\u3066\u3044\u307E\u3059","This file contains binary data that can not be read":"\u3053\u306E\u30D5\u30A1\u30A4\u30EB\u306B\u306F\u8AAD\u307F\u53D6\u308C\u306A\u3044\u30D0\u30A4\u30CA\u30EA\u30C7\u30FC\u30BF\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059","Navigation Tree":"\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3\u30C4\u30EA\u30FC",item:zo,items:Io,create:Wo,write:Oo,move:Vo,delete:qo,modify:Qo,"Delete user":"\u30E6\u30FC\u30B6\u30FC\u3092\u524A\u9664","Delete all user files":"\u30E6\u30FC\u30B6\u30FC\u306E\u5168\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664",share:jo,"Share name":"\u5171\u6709\u540D","New share":"\u65B0\u3057\u3044\u5171\u6709","New share link":"\u65B0\u3057\u3044\u5171\u6709\u30EA\u30F3\u30AF","New link":"\u65B0\u3057\u3044\u30EA\u30F3\u30AF","Edit children shares":"\u5B50\u5171\u6709\u3092\u7DE8\u96C6",Link:Bo,link:Ho,Links:Ko,links:Jo,"Link copied":"\u30EA\u30F3\u30AF\u3092\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F","Link created":"\u30EA\u30F3\u30AF\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F","Link deleted":"\u30EA\u30F3\u30AF\u3092\u524A\u9664\u3057\u307E\u3057\u305F","Link error":"\u30EA\u30F3\u30AF\u30A8\u30E9\u30FC","Copy link":"\u30EA\u30F3\u30AF\u3092\u30B3\u30D4\u30FC","Edit link":"\u30EA\u30F3\u30AF\u3092\u7DE8\u96C6","Guest Link":"\u30B2\u30B9\u30C8\u30EA\u30F3\u30AF","Guest name":"\u30B2\u30B9\u30C8\u540D","Guest email":"\u30B2\u30B9\u30C8\u306E\u30E1\u30FC\u30EB","Guest language":"\u30B2\u30B9\u30C8\u306E\u8A00\u8A9E",Guest:Xo,Guests:Zo,guest:$o,guests:ea,"New guest":"\u65B0\u3057\u3044\u30B2\u30B9\u30C8","Edit guest":"\u30B2\u30B9\u30C8\u3092\u7DE8\u96C6","Guest created":"\u30B2\u30B9\u30C8\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F","Guest deleted":"\u30B2\u30B9\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F","Guest updated":"\u30B2\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","Guest error":"\u30B2\u30B9\u30C8\u30A8\u30E9\u30FC","Add an external location":"\u5916\u90E8\u306E\u5834\u6240\u3092\u8FFD\u52A0","External location":"\u5916\u90E8\u306E\u5834\u6240","Select a file":"\u30D5\u30A1\u30A4\u30EB\u3092\u9078\u629E","The link is expired":"\u30EA\u30F3\u30AF\u306E\u6709\u52B9\u671F\u9650\u304C\u5207\u308C\u3066\u3044\u307E\u3059","The link is disabled":"\u30EA\u30F3\u30AF\u306F\u7121\u52B9\u3067\u3059","The link was not found":"\u30EA\u30F3\u30AF\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",Expired:oa,expired:aa,none:ta,"The maximum number of access allowed to the link is exceeded":"\u30EA\u30F3\u30AF\u3067\u8A31\u53EF\u3055\u308C\u305F\u6700\u5927\u30A2\u30AF\u30BB\u30B9\u6570\u3092\u8D85\u3048\u3066\u3044\u307E\u3059","Set a password":"\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u8A2D\u5B9A","Enter your password":"\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5165\u529B",Permissions:sa,"No permissions":"\u6A29\u9650\u306A\u3057",Owner:na,Me:ra,Shared:ia,Created:la,"Created & Modified":"\u4F5C\u6210\u65E5\u3068\u66F4\u65B0\u65E5","Creation date":"\u4F5C\u6210\u65E5","Modification date":"\u66F4\u65B0\u65E5","Deactivation date":"\u7121\u52B9\u5316\u65E5",Date:da,Path:ca,active:ha,Active:ua,suspended:pa,"Unable to rename user space":"\u30E6\u30FC\u30B6\u30FC\u30B9\u30DA\u30FC\u30B9\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093","Unable to delete user space":"\u30E6\u30FC\u30B6\u30FC\u30B9\u30DA\u30FC\u30B9\u3092\u524A\u9664\u3067\u304D\u307E\u305B\u3093","Unable to update user":"\u30E6\u30FC\u30B6\u30FC\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","Unable to update user groups":"\u30E6\u30FC\u30B6\u30FC\u306E\u30B0\u30EB\u30FC\u30D7\u3092\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093","User created":"\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F","User updated":"\u30E6\u30FC\u30B6\u30FC\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F","User not found":"\u30E6\u30FC\u30B6\u30FC\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093","Edit user":"\u30E6\u30FC\u30B6\u30FC\u3092\u7DE8\u96C6","Impersonate identity":"\u30E6\u30FC\u30B6\u30FC\u3068\u3057\u3066\u30ED\u30B0\u30A4\u30F3",Type:ma,Description:fa,Visibility:ba,"Unknown error !":"\u4E0D\u660E\u306A\u30A8\u30E9\u30FC\uFF01",Unknown:ya,Expiration:ga,"Limit access":"\u30A2\u30AF\u30BB\u30B9\u3092\u5236\u9650","Current access count":"\u73FE\u5728\u306E\u30A2\u30AF\u30BB\u30B9\u6570",Access:wa,Accessed:Sa,"Last access":"\u6700\u7D42\u30A2\u30AF\u30BB\u30B9","Last accesses":"\u76F4\u8FD1\u306E\u30A2\u30AF\u30BB\u30B9",Comment:va,Comments:Ta,comments:Aa,commented:_a,"No recent comments":"\u6700\u8FD1\u306E\u30B3\u30E1\u30F3\u30C8\u306F\u3042\u308A\u307E\u305B\u3093","Write a comment ...":"\u30B3\u30E1\u30F3\u30C8\u3092\u66F8\u304F\u2026",yes:ka,no:Ca,Client:xa,Clients:Da,available:Pa,busy:Ua,absent:Na,offline:Ma,View:Ea,"Session has expired":"\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u6709\u52B9\u671F\u9650\u304C\u5207\u308C\u307E\u3057\u305F","Please sign in":"\u518D\u5EA6\u30B5\u30A4\u30F3\u30A4\u30F3\u3057\u3066\u304F\u3060\u3055\u3044",logout:La,days:Ra,day:Fa,Delete:Ga,Scheduler:Ya,async:za,seq:Ia,Transfers:Wa,Simulate:Oa,Reset:Va,Browse:qa,Action:Qa,Added:ja,Removed:Ba,Copied:Ha,Moved:Ka,Filtered:Ja,Error:Xa,Server:Za,Direction:$a,Conflict:et,"Show filtered files":"\u30D5\u30A3\u30EB\u30BF\u30FC\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u8868\u793A",recent:ot,Source:at,Destination:tt,Mode:st,Sequentially:nt,Asynchronously:rt,fast:it,secure:lt,enabled:dt,Enable:ct,disabled:ht,Disable:ut,scheduler_unit_hour:pt,scheduler_unit_minute:mt,scheduler_unit_day:ft,"You must have permission to modify the server folder to choose a different sync mode":"\u7570\u306A\u308B\u540C\u671F\u30E2\u30FC\u30C9\u3092\u9078\u629E\u3059\u308B\u306B\u306F\u3001\u30B5\u30FC\u30D0\u30FC\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u5909\u66F4\u3059\u308B\u6A29\u9650\u304C\u5FC5\u8981\u3067\u3059","upload only":"\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u306E\u307F","download only":"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u306E\u307F",both:bt,never:yt,"Clear events":"\u30A4\u30D9\u30F3\u30C8\u3092\u30AF\u30EA\u30A2","Events from":"\u6B21\u306E\u30A4\u30D9\u30F3\u30C8","All syncs":"\u3059\u3079\u3066\u306E\u540C\u671F","All events":"\u3059\u3079\u3066\u306E\u30A4\u30D9\u30F3\u30C8","will be cleared":"\u30AF\u30EA\u30A2\u3055\u308C\u307E\u3059","No differences":"\u5DEE\u5206\u306F\u3042\u308A\u307E\u305B\u3093","Select a folder":"\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u9078\u629E","The files containing":"\u6B21\u3092\u542B\u3080\u30D5\u30A1\u30A4\u30EB","The files starting":"\u6B21\u3067\u59CB\u307E\u308B\u30D5\u30A1\u30A4\u30EB","The files ending":"\u6B21\u3067\u7D42\u308F\u308B\u30D5\u30A1\u30A4\u30EB","Expert (Regexp)":"\u30A8\u30AD\u30B9\u30D1\u30FC\u30C8\uFF08\u6B63\u898F\u8868\u73FE\uFF09","click on the browse button":"\u53C2\u7167\u30DC\u30BF\u30F3\u3092\u30AF\u30EA\u30C3\u30AF","with a name or pattern":"\u540D\u524D\u307E\u305F\u306F\u30D1\u30BF\u30FC\u30F3\u3067","with the extension ('.mp3', '.avi', '.mov' ...)":"\u62E1\u5F35\u5B50\uFF08'.mp3', '.avi', '.mov' \u306A\u3069\uFF09\u3067",Wizard:gt,Next:wt,Previous:St,Done:vt,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"\u3053\u306E\u30A6\u30A3\u30B6\u30FC\u30C9\u306F\u3001\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u4E0A\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3068 Sync-in \u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u540C\u671F\u3092\u652F\u63F4\u3057\u307E\u3059\u3002","To begin, select a folder on your computer.":"\u307E\u305A\u3001\u30B3\u30F3\u30D4\u30E5\u30FC\u30BF\u30FC\u4E0A\u306E\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002",'You can drag the folder into the area below or click on the "Select" button.':"\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u4E0B\u306E\u9818\u57DF\u306B\u30C9\u30E9\u30C3\u30B0\u3059\u308B\u304B\u300C\u9078\u629E\u300D\u30DC\u30BF\u30F3\u3092\u30AF\u30EA\u30C3\u30AF\u3067\u304D\u307E\u3059\u3002","Drop folder here":"\u3053\u3053\u306B\u30D5\u30A9\u30EB\u30C0\u30FC\u3092\u30C9\u30ED\u30C3\u30D7","This directory is already synced":"\u3053\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u3059\u3067\u306B\u540C\u671F\u3055\u308C\u3066\u3044\u307E\u3059","The parent directory is already synced":"\u89AA\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u3059\u3067\u306B\u540C\u671F\u3055\u308C\u3066\u3044\u307E\u3059","This folder already exists":"\u3053\u306E\u30D5\u30A9\u30EB\u30C0\u30FC\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","This file already exists":"\u3053\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u65E2\u306B\u5B58\u5728\u3057\u307E\u3059","This directory is not accessible":"\u3053\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306B\u306F\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u305B\u3093","This directory is read-only, you will not be able to modify it":"\u3053\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u306E\u305F\u3081\u3001\u5909\u66F4\u3067\u304D\u307E\u305B\u3093","Please select the server directory to sync, if it doesn't exist you can create it.":"\u540C\u671F\u3059\u308B\u30B5\u30FC\u30D0\u30FC\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u5B58\u5728\u3057\u306A\u3044\u5834\u5408\u306F\u4F5C\u6210\u3067\u304D\u307E\u3059\u3002","Double click to browse directories":"\u30C0\u30D6\u30EB\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u53C2\u7167","The data will be synchronized from":"\u30C7\u30FC\u30BF\u306F\u6B21\u304B\u3089\u540C\u671F\u3055\u308C\u307E\u3059","the client folder":"\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u5074\u30D5\u30A9\u30EB\u30C0\u30FC","the server folder":"\u30B5\u30FC\u30D0\u30FC\u5074\u30D5\u30A9\u30EB\u30C0\u30FC","(One-Way)":"\uFF08\u4E00\u65B9\u5411\uFF09","(Two-Way)":"\uFF08\u53CC\u65B9\u5411\uFF09",to:Tt,"and from":"\u304B\u3089","All files created or modified in":"\u3067\u4F5C\u6210\u30FB\u5909\u66F4\u3055\u308C\u305F\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB\u306F","will be ignored and deleted":"\u7121\u8996\u3055\u308C\u524A\u9664\u3055\u308C\u307E\u3059","In case of conflict,":"\u7AF6\u5408\u304C\u767A\u751F\u3057\u305F\u5834\u5408\u3001","the most recent files will be kept":"\u3088\u308A\u65B0\u3057\u3044\u30D5\u30A1\u30A4\u30EB\u304C\u4FDD\u6301\u3055\u308C\u307E\u3059","the client\u2019s files take precedence":"\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u5074\u306E\u30D5\u30A1\u30A4\u30EB\u304C\u512A\u5148\u3055\u308C\u307E\u3059","the server\u2019s files take precedence":"\u30B5\u30FC\u30D0\u30FC\u5074\u306E\u30D5\u30A1\u30A4\u30EB\u304C\u512A\u5148\u3055\u308C\u307E\u3059","the files in":"\u6B21\u306E\u30D5\u30A1\u30A4\u30EB\u304C","will be preferred":"\u512A\u5148\u3055\u308C\u307E\u3059","Loading...":"\u8AAD\u307F\u8FBC\u307F\u4E2D...","No results":"\u7D50\u679C\u306F\u3042\u308A\u307E\u305B\u3093","Download ARM64 version":"ARM64 \u7248\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","Download Apple Silicon ARM64 version":"Apple Silicon ARM64 \u7248\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9","Download tar.gz version":"tar.gz \u7248\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",Repository:At,public:_t,local:kt,remote:Ct,"System requirements":"\u30B7\u30B9\u30C6\u30E0\u8981\u4EF6","Feature not enabled":"\u6A5F\u80FD\u304C\u6709\u52B9\u3067\u306F\u3042\u308A\u307E\u305B\u3093","Check the settings":"\u8A2D\u5B9A\u3092\u78BA\u8A8D",Website:xt,Documentation:Dt,Versions:Pt,Security:Ut,"Recovery code":"\u5FA9\u65E7\u30B3\u30FC\u30C9","Use a recovery code":"\u5FA9\u65E7\u30B3\u30FC\u30C9\u3092\u4F7F\u7528","Authentication code":"\u8A8D\u8A3C\u30B3\u30FC\u30C9","Secret copied":"\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u3092\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F","Recovery codes copied":"\u5FA9\u65E7\u30B3\u30FC\u30C9\u3092\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F","Invalid code":"\u7121\u52B9\u306A\u30B3\u30FC\u30C9","Incorrect code or password":"\u30B3\u30FC\u30C9\u307E\u305F\u306F\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u6B63\u3057\u304F\u3042\u308A\u307E\u305B\u3093","Application Passwords":"\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30D1\u30B9\u30EF\u30FC\u30C9","Generate a new app password":"\u65B0\u3057\u3044\u30A2\u30D7\u30EA\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u751F\u6210","Generated password":"\u751F\u6210\u3055\u308C\u305F\u30D1\u30B9\u30EF\u30FC\u30C9","This password will only be shown once after it is generated":"\u3053\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u306F\u751F\u6210\u5F8C\u4E00\u5EA6\u3060\u3051\u8868\u793A\u3055\u308C\u307E\u3059","Password name":"\u30D1\u30B9\u30EF\u30FC\u30C9\u540D",Manage:Nt,"Manage app passwords":"\u30A2\u30D7\u30EA\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u7BA1\u7406","Password Authentication":"\u30D1\u30B9\u30EF\u30FC\u30C9\u8A8D\u8A3C","Two-Factor Authentication":"\u4E8C\u8981\u7D20\u8A8D\u8A3C","Two-Factor Authentication is enabled":"\u4E8C\u8981\u7D20\u8A8D\u8A3C\u306F\u6709\u52B9\u3067\u3059","Two-Factor Authentication is disabled":"\u4E8C\u8981\u7D20\u8A8D\u8A3C\u306F\u7121\u52B9\u3067\u3059","Scan this QR code using your authenticator app.":"\u8A8D\u8A3C\u30A2\u30D7\u30EA\u3067\u3053\u306EQR\u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3\u3057\u3066\u304F\u3060\u3055\u3044\u3002","(Such as FreeOTP, Proton Authenticator etc.)":"\uFF08FreeOTP\u3001Proton Authenticator \u306A\u3069\uFF09","Or enter this secret manually":"\u3053\u306E\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u3092\u624B\u52D5\u3067\u5165\u529B","Valid with your TOTP code":"TOTP \u30B3\u30FC\u30C9\u3067\u78BA\u8A8D","The secret has expired":"\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u306E\u6709\u52B9\u671F\u9650\u304C\u5207\u308C\u307E\u3057\u305F","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"\u3053\u308C\u3089\u306E\u30B3\u30FC\u30C9\u306F\u5B89\u5168\u306A\u5834\u6240\u306B\u4FDD\u7BA1\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u5229\u7528\u3067\u304D\u306A\u304F\u306A\u3063\u305F\u5834\u5408\u3067\u3082\u3001\u30A2\u30AB\u30A6\u30F3\u30C8\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u3059\u3002","These recovery codes are for one-time use only and will only be displayed here once.":"\u3053\u308C\u3089\u306E\u5FA9\u65E7\u30B3\u30FC\u30C9\u306F\u4E00\u5EA6\u3057\u304B\u4F7F\u7528\u3067\u304D\u305A\u3001\u3053\u3053\u306B\u4E00\u5EA6\u3060\u3051\u8868\u793A\u3055\u308C\u307E\u3059\u3002"};export{wa as Access,Sa as Accessed,H as Account,Qa as Action,ua as Active,I as Add,ja as Added,O as Administration,W as Administrator,Qe as Anchored,_ as Application,fe as Applications,rt as Asynchronously,a as Authentication,ye as Avatar,qa as Browse,r as Cancel,xa as Client,Da as Clients,oo as Clipboard,i as Close,va as Comment,Ta as Comments,yo as Compress,me as Configuration,n as Confirm,et as Conflict,ee as Connection,oe as Connections,Ha as Copied,Xe as Copy,la as Created,da as Date,go as Decompress,Ga as Delete,fa as Description,tt as Destination,$a as Direction,ut as Disable,no as Display,Dt as Documentation,vt as Done,Ke as Download,$e as Edit,xo as Elements,K as Email,to as Empty,ct as Enable,Xa as Error,D as Event,ga as Expiration,oa as Expired,M as External,P as File,U as Files,l as Filter,Ja as Filtered,d as Filters,Po as Folder,ue as Generate,L as Group,E as Groups,Xo as Guest,Zo as Guests,Se as Home,Z as IP,pe as Import,wo as Information,So as Informations,vo as Infos,z as Isolated,we as Language,Bo as Link,Ko as Links,so as List,qe as Location,t as Login,Nt as Manage,de as Manager,he as Managers,ra as Me,ie as Member,le as Members,st as Mode,Ao as Modified,Je as Move,Ka as Moved,He as Name,Do as New,wt as Next,C as Notification,x as Notifications,Be as Options,na as Owner,s as Password,ca as Path,sa as Permissions,N as Personal,St as Previous,Y as Private,ve as Recents,ao as Refresh,eo as Remove,Ba as Removed,Ze as Rename,At as Repository,Va as Reset,X as Role,Ya as Scheduler,h as Search,Ut as Security,u as See,$ as Seen,nt as Sequentially,Za as Server,je as Settings,ke as Share,ia as Shared,_e as Shares,Oa as Simulate,To as Size,at as Source,ze as Space,Ie as Spaces,J as Status,fo as Sync,bo as Synced,uo as Synchronization,po as Synchronizations,mo as Synchronize,ko as Tasks,Co as Text,Ro as Total,Wa as Transfers,Ae as Trash,ma as Type,ya as Unknown,se as Unlimited,ge as Update,V as User,Q as Users,Pt as Versions,Ea as View,ba as Visibility,G as Visible,xt as Website,gt as Wizard,Na as absent,B as account,ha as active,Oe as anchored,k as application,be as applications,za as async,Pa as available,ae as available_space_is_low,bt as both,Ua as busy,_a as commented,Aa as comments,Wo as create,Fa as day,Ra as days,Mt as default,qo as delete,co as delete_multiple_files,io as delete_one_file,Re as desktop_app_access,Fe as desktop_app_sync,Lo as directories,Eo as directory,ht as disabled,dt as enabled,aa as expired,it as fast,No as file,Mo as files,Uo as folder,R as group,F as groups,$o as guest,ea as guests,Ee as guests_admin,zo as item,Io as items,Ho as link,Jo as links,kt as local,La as logout,ce as manager,ne as member,re as members,_o as modified,Qo as modify,Vo as move,w as nb_actions,y as nb_active_tasks,g as nb_elements,v as nb_messages,A as nb_notifications,Yo as nb_selections,f as nb_tasks,yt as never,Ca as no,Fo as no_selection,p as no_task,ta as none,Ma as offline,b as one_active_task,S as one_message,T as one_notification,Go as one_selection,m as one_task,te as online,Le as personal_groups_admin,De as personal_space,_t as public,ot as recent,Te as recents,Ct as remote,ft as scheduler_unit_day,pt as scheduler_unit_hour,mt as scheduler_unit_minute,c as search,lt as secure,Ia as seq,jo as share,xe as shared,Ce as shares,Ne as shares_access,Me as shares_admin,We as spaces,Pe as spaces_access,Ue as spaces_admin,pa as suspended,ho as synchronization,Tt as to,lo as trash_multiple_files,ro as trash_one_file,Ve as unanchored,q as user,j as users,Ye as webdav,Ge as webdav_access,Oo as write,ka as yes};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as Q}from"./chunk-QZU2S5CV.js";import{a as ge}from"./chunk-TPYBFZS5.js";import{a as Ce}from"./chunk-X5XGK6T7.js";import{a as B,b as N,c as de,d as fe,e as xe}from"./chunk-H6NE33VX.js";import"./chunk-BIKLW4YS.js";import{p as me}from"./chunk-HNQRZALS.js";import{C as oe,E as R,F as re,I as se,Za as pe,r as J,va as le,wa as ce,xa as ue,yb as _e}from"./chunk-GUGNR5TF.js";import{$a as L,$d as Y,Ab as G,Cd as W,Db as x,Dd as z,Ed as X,Fb as s,Gf as te,Ha as H,Ic as j,If as ie,Jb as S,Kb as F,L as D,Lb as U,Na as a,Nb as I,Ob as $,Pb as k,Qb as p,Rb as V,Sb as w,Tb as O,Ue as Z,Uf as ne,Zb as K,dg as ae,eb as M,ec as g,fc as P,gc as y,ia as E,kb as v,lb as h,na as _,oa as m,ob as b,of as ee,pb as T,qb as d,rb as l,sb as c,tb as C,xd as q}from"./chunk-C36MW4ME.js";import"./chunk-DM4NXKEP.js";import"./chunk-ZIJQRARU.js";import"./chunk-N3U6637P.js";var ye=["MainContextMenu"],we=["TargetContextMenu"],ve=(e,o)=>o.key,be=(e,o)=>o.id,Te=(e,o)=>o.mid;function Ge(e,o){if(e&1&&C(0,"fa-icon",18),e&2){let t=s(3);d("icon",t.sortTable.sortParam.asc?t.icons.faArrowDown:t.icons.faArrowUp)("fixedWidth",!1)}}function Se(e,o){if(e&1){let t=G();l(0,"th",17),x("click",function(){_(t);let r=s().$implicit,n=s();return m(n.sortBy(r.key))}),p(1),v(2,Ge,1,2,"fa-icon",18),c()}if(e&2){let t=s().$implicit,i=s();k(t.value.class),I("width",t.value.width,"%"),$("text-align-center",t.value.textCenter)("cursor-pointer",t.value.sortable),a(),w(" ",t.value.label," "),a(),h(i.sortTable.sortParam.column===t.key?2:-1)}}function Fe(e,o){if(e&1&&v(0,Se,3,10,"th",16),e&2){let t=o.$implicit;h(t.value.show?0:-1)}}function Ue(e,o){if(e&1&&(l(0,"div",21),C(1,"img",24),l(2,"div",22)(3,"span",25),p(4),c(),l(5,"span",26),p(6),c()()()),e&2){let t=s(3).$implicit;a(),d("src",t.avatarUrl,H),a(3),w(" ",t.login," "),a(2),V(t.email)}}function Ve(e,o){if(e&1&&(l(0,"div",22)(1,"span",25),p(2),c()()),e&2){let t=s(3).$implicit;a(2),V(t.fullName)}}function Ae(e,o){if(e&1&&C(0,"app-user-avatar",27),e&2){let t=o.$implicit;d("user",t)("isMember",!0)}}function Ee(e,o){if(e&1&&b(0,Ae,1,2,"app-user-avatar",27,Te),e&2){let t=s(3).$implicit;T(t.managers)}}function Me(e,o){e&1&&p(0," too many login attempts ")}function $e(e,o){if(e&1&&p(0),e&2){let t=s(4).$implicit;w(" ",t.userIsActiveText," ")}}function ke(e,o){if(e&1&&(l(0,"span",28),v(1,Me,1,0)(2,$e,1,1),c()),e&2){let t=s(3).$implicit;k(t.isActive?"text-success":"text-danger"),a(),h(!t.isActive&&t.passwordAttempts?1:2)}}function Pe(e,o){if(e&1&&(p(0),g(1,"amDateFormat")),e&2){let t=s(3).$implicit;w(" ",P(1,1,t.createdAt)," ")}}function De(e,o){if(e&1&&(l(0,"div",22)(1,"div"),p(2),g(3,"amDateFormat"),c(),l(4,"div"),p(5),g(6,"amDateFormat"),c()()),e&2){let t=s(5).$implicit;a(2),V(P(3,2,t.currentAccess)),a(3),V(P(6,4,t.lastAccess))}}function Ie(e,o){if(e&1&&p(0),e&2){let t=s(5).$implicit;w(" ",t.hTimeAgo," ")}}function Re(e,o){if(e&1){let t=G();l(0,"div",30),x("mouseover",function(){_(t);let r=s(4).$implicit;return m(r.currentAccessHover=!0)})("focus",function(){_(t);let r=s(4).$implicit;return m(r.currentAccessHover=!0)})("mouseleave",function(){_(t);let r=s(4).$implicit;return m(r.currentAccessHover=!1)}),v(1,De,7,6,"div",22)(2,Ie,1,1),c()}if(e&2){let t=s(4).$implicit;a(),h(t.currentAccessHover?1:2)}}function Be(e,o){e&1&&(l(0,"span",28),p(1,"never"),c())}function Ne(e,o){if(e&1&&v(0,Re,3,1,"div",29)(1,Be,2,0,"span",28),e&2){let t=s(3).$implicit;h(t.currentAccess?0:1)}}function Qe(e,o){if(e&1&&(l(0,"td"),v(1,Ue,7,3,"div",21)(2,Ve,3,1,"div",22)(3,Ee,2,0)(4,ke,3,3,"span",23)(5,Pe,2,3)(6,Ne,2,1),c()),e&2){let t,i=s().$implicit,r=s().$implicit;k(K("",i.value.class," ",i.value.newly?"prop-newly-"+r[i.value.newly]:"")),I("width",i.value.width,"%"),$("text-align-center",i.value.textCenter),a(),h((t=i.key)==="login"?1:t==="fullName"?2:t==="managers"?3:t==="isActive"?4:t==="createdAt"?5:t==="currentAccess"?6:-1)}}function He(e,o){if(e&1&&v(0,Qe,7,9,"td",20),e&2){let t=o.$implicit;h(t.value.show?0:-1)}}function Le(e,o){if(e&1){let t=G();l(0,"tr",19),x("click",function(){let r=_(t).$implicit,n=s();return m(n.onSelect(r))})("contextmenu",function(r){let n=_(t).$implicit,u=s();return m(u.onTargetContextMenu(r,n))})("appTap",function(){_(t);let r=s();return m(r.openGuestDialog())}),b(1,He,1,1,null,null,ve),g(3,"keyvalue"),c()}if(e&2){let t=o.$implicit,i=s();$("disabled",!t.isActive)("selected",t.id===(i.selected==null?null:i.selected.id)),a(),T(y(3,4,i.tableHeaders,i.originalOrderKeyValue))}}function Oe(e,o){if(e&1&&(l(0,"span",28),C(1,"fa-icon",6),p(2,"New guest"),c()),e&2){let t=s();a(),d("icon",t.icons.faPlus)}}function Ke(e,o){}function je(e,o){if(e&1&&(l(0,"span",28),C(1,"fa-icon",6),p(2,"Refresh"),c()),e&2){let t=s();a(),d("icon",t.icons.faArrowRotateRight)}}function qe(e,o){if(e&1&&(l(0,"span",28),C(1,"fa-icon",6),p(2,"Edit guest"),c()),e&2){let t=s();a(),d("icon",t.icons.faPen)}}var vt=(()=>{let o=class o{constructor(){this.locale=E(q),this.originalOrderKeyValue=pe,this.icons={faRotate:X,faPlus:te,faPen:ee,faArrowDown:ne,faArrowUp:Z,faKey:Y,faArrowRotateRight:ie},this.tableHeaders={login:{label:"Login",width:30,textCenter:!1,class:"",show:!0,sortable:!0},fullName:{label:"Full name",width:15,class:"",textCenter:!1,show:!0,sortable:!0},managers:{label:"Managers",width:15,class:"d-none d-md-table-cell",textCenter:!0,show:!0,sortable:!0},isActive:{label:"Status",width:10,textCenter:!0,class:"d-none d-lg-table-cell",show:!0,sortable:!0},createdAt:{label:"Created",width:12,textCenter:!0,class:"d-none d-lg-table-cell",show:!0,sortable:!0},currentAccess:{label:"Seen",width:12,textCenter:!0,class:"d-none d-lg-table-cell",newly:"newly",show:!0,sortable:!0}},this.loading=!1,this.selected=null,this.guests=[],this.layout=E(_e),this.userService=E(me),this.canCreateGuest=this.userService.userHavePermission(oe.GUESTS_ADMIN),this.sortSettings={default:[{prop:"login",type:"string"}],login:[{prop:"login",type:"string"}],fullName:[{prop:"fullName",type:"string"}],managers:[{prop:"managers",type:"length"}],storage:[{prop:"storageUsage",type:"number"}],currentAccess:[{prop:"currentAccess",type:"date"}],createdAt:[{prop:"createdAt",type:"date"}],isActive:[{prop:"isActive",type:"number"}]},this.sortTable=new xe(this.constructor.name,this.sortSettings),this.loadGuests(),this.layout.setBreadcrumbIcon(se.GUESTS),this.layout.setBreadcrumbNav({url:`/${R.BASE}/${R.GUESTS}/${re.GUESTS}`,splicing:2,translating:!0,sameLink:!0})}loadGuests(){this.loading=!0,this.onSelect(),this.userService.listGuests().subscribe({next:i=>{this.sortBy(this.sortTable.sortParam.column,!1,i),this.scrollView.scrollInto(-1),this.loading=!1},error:i=>{this.guests=[],this.layout.sendNotification("error","Guests",i.error.message),this.loading=!1}})}onSelect(i=null){this.selected=i}onContextMenu(i){i.preventDefault(),i.stopPropagation(),this.layout.openContextMenu(i,this.mainContextMenu)}onTargetContextMenu(i,r){i.preventDefault(),i.type==="contextmenu"&&i.stopPropagation(),this.onSelect(r),this.layout.openContextMenu(i,this.targetContextMenu)}sortBy(i,r=!0,n){this.guests=this.sortTable.sortBy(i,r,n||this.guests)}openGuestDialog(i=!1){i?this.layout.openDialog(Q,"md").content.guestChange.pipe(D(1)).subscribe(n=>{let[u,f]=n;u==="add"&&(this.sortBy(this.sortTable.sortParam.column,!1,[...this.guests,f]),this.onSelect(f))}):this.userService.getGuest(this.selected.id).subscribe({next:r=>{this.layout.openDialog(Q,"md",{initialState:{guest:r}}).content.guestChange.pipe(D(1)).subscribe(u=>{let[f,A]=u;f==="update"?this.selected=Object.assign(this.selected,A):f==="delete"&&(this.onSelect(),this.sortBy(this.sortTable.sortParam.column,!1,this.guests.filter(he=>he.id!==A.id)))})},error:r=>this.layout.sendNotification("error","Guest error",this.selected.fullName,r)})}};o.\u0275fac=function(r){return new(r||o)},o.\u0275cmp=L({type:o,selectors:[["app-user-guests"]],viewQuery:function(r,n){if(r&1&&(S(N,5),S(B,7),S(ye,7),S(we,7)),r&2){let u;F(u=U())&&(n.scrollView=u.first),F(u=U())&&(n.inputFilter=u.first),F(u=U())&&(n.mainContextMenu=u.first),F(u=U())&&(n.targetContextMenu=u.first)}},decls:35,vars:32,consts:[["MainContextMenu",""],["TargetContextMenu",""],[1,"app-top-menu"],["container","body","type","button",1,"btn","btn-sm","btn-secondary","me-1",3,"click","tooltip"],[3,"icon","animation"],["container","body","type","button",1,"btn","btn-sm","btn-secondary","me-1",3,"click","disabled","tooltip"],[3,"icon"],[1,"d-none","d-sm-block","ms-auto"],[1,"app-table"],[3,"contextmenu","bufferAmount","items"],["tabindex","-1"],[3,"disabled","selected"],[1,"app-foot-menu"],[1,"mx-auto"],["contextMenuItem","",3,"execute"],["contextMenuItem","",3,"divider"],["l10nTranslate","",3,"width","text-align-center","cursor-pointer","class"],["l10nTranslate","",3,"click"],[3,"icon","fixedWidth"],[3,"click","contextmenu","appTap"],[3,"width","text-align-center","class"],[1,"d-flex","align-items-center","avatar"],[1,"d-flex","flex-column"],["l10nTranslate","",3,"class"],["alt","",1,"avatar-img",3,"src"],["draggable","false",1,"no-pointer-events"],["draggable","false",1,"no-pointer-events","text-muted","fs-xxxs"],[3,"user","isMember"],["l10nTranslate",""],[1,"d-flex","justify-content-center"],[1,"d-flex","justify-content-center",3,"mouseover","focus","mouseleave"]],template:function(r,n){if(r&1){let u=G();l(0,"div",2)(1,"button",3),g(2,"translate"),x("click",function(){return _(u),m(n.loadGuests())}),C(3,"fa-icon",4),c(),l(4,"button",5),g(5,"translate"),x("click",function(){return _(u),m(n.openGuestDialog(!0))}),C(6,"fa-icon",6),c(),l(7,"button",5),g(8,"translate"),x("click",function(){return _(u),m(n.openGuestDialog())}),C(9,"fa-icon",6),c(),C(10,"app-input-filter",7),c(),l(11,"table",8)(12,"thead")(13,"tr"),b(14,Fe,1,1,null,null,ve),g(16,"keyvalue"),c()()(),l(17,"app-virtual-scroll",9),g(18,"searchFilter"),x("contextmenu",function(A){return _(u),m(n.onContextMenu(A))}),l(19,"table",8)(20,"tbody",10),b(21,Le,4,7,"tr",11,be),c()()(),l(23,"div",12)(24,"span",13),p(25),g(26,"translate"),c()(),l(27,"context-menu",null,0),M(29,Oe,3,1,"ng-template",14),x("execute",function(){return _(u),m(n.openGuestDialog(!0))}),M(30,Ke,0,0,"ng-template",15)(31,je,3,1,"ng-template",14),x("execute",function(){return _(u),m(n.loadGuests())}),c(),l(32,"context-menu",null,1),M(34,qe,3,1,"ng-template",14),x("execute",function(){return _(u),m(n.openGuestDialog())}),c()}r&2&&(a(),d("tooltip",y(2,14,"Refresh",n.locale.language)),a(2),d("icon",n.icons.faRotate)("animation",n.loading?"spin":null),a(),d("disabled",!n.canCreateGuest)("tooltip",y(5,17,"New guest",n.locale.language)),a(2),d("icon",n.icons.faPlus),a(),d("disabled",!n.selected)("tooltip",y(8,20,"Edit guest",n.locale.language)),a(2),d("icon",n.icons.faPen),a(5),T(y(16,23,n.tableHeaders,n.originalOrderKeyValue)),a(3),d("bufferAmount",5)("items",y(18,26,n.guests,n.inputFilter.search())),a(4),T(n.scrollView==null?null:n.scrollView.viewPortItems),a(4),O("",n.guests.length," ",y(26,29,"guests",n.locale.language)),a(5),d("divider",!0))},dependencies:[ae,B,J,z,N,ue,ce,le,ge,de,W,j,fe,Ce],encapsulation:2});let e=o;return e})();export{vt as UserGuestsComponent};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{n as a}from"./chunk-DM4NXKEP.js";import"./chunk-ZIJQRARU.js";import"./chunk-N3U6637P.js";var _={name:"tr",weekdays:"Pazar_Pazartesi_Sal\u0131_\xC7ar\u015Famba_Per\u015Fembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_\xC7ar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_\xC7a_Pe_Cu_Ct".split("_"),months:"Ocak_\u015Eubat_Mart_Nisan_May\u0131s_Haziran_Temmuz_A\u011Fustos_Eyl\xFCl_Ekim_Kas\u0131m_Aral\u0131k".split("_"),monthsShort:"Oca_\u015Eub_Mar_Nis_May_Haz_Tem_A\u011Fu_Eyl_Eki_Kas_Ara".split("_"),weekStart:1,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},relativeTime:{future:"%s sonra",past:"%s \xF6nce",s:"birka\xE7 saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir g\xFCn",dd:"%d g\xFCn",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinal:function(r){return r+"."}};a.locale(_,null,!0);var e=_;export{e as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e="assets",o=".svg",r=`${e}/mimes`,i="file",c="directory",n="directory_share",p="directory_sync",m="directory_disabled",a="directory_error";function s(t){return`${r}/${t}${o}`}var l=`${e}/favicon${o}`,x=`${e}/logo-dark${o}`,d=`${e}/logo${o}`,g=`${e}/protected.png`,y=s(i),$=new Set(["application-gzip","application-zip","application-x-tar"]),b=new Set(["rar","7z","iso","zip","tar","gz","bz2","xz","exe","dll","msi","cmd","apk","appimage","dmg","img","bin","vhd","vmdk","so","o","a","lib","sys","drv","cab"]);export{e as a,i as b,c,n as d,p as e,m as f,a as g,s as h,l as i,x as j,d as k,g as l,y as m,$ as n,b as o};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import"./chunk-N3U6637P.js";var o="Autenticaci\xF3n",i="Usuario",r="Contrase\xF1a",n="Confirmar",s="Cancelar",t="Cerrar",c="Filtrar",d="Filtros",l="buscar",u="Buscar",p="Ver",m="Ninguna tarea",h="{{ nb }} tarea completada",b="{{ nb }} tareas completadas",v="{{ nba }} tarea en curso de {{ nb }}",g="{{ nba }} tareas en curso de {{ nb }}",f="{{nb}} elemento(s)",y="{{nb}} acci\xF3n(es)",E="{{ nb }} mensaje nuevo",w="{{ nb }} mensajes nuevos",C="{{ nb }} notificaci\xF3n no le\xEDda",S="{{ nb }} notificaciones no le\xEDdas",A="Aplicaci\xF3n",N="aplicaci\xF3n",z="Notificaci\xF3n",T="Notificaciones",x="Evento",D="Archivo",P="Archivos",L="Personales",U="Externo",_="Grupos",k="Grupo",M="grupo",G="grupos",F="Visible",R="Privado",I="Aislado",q="A\xF1adir",Y="Administrador",V="Administraci\xF3n",O="Usuario",W="usuario",j="Usuarios",B="usuarios",H="cuenta",Q="Cuenta",K="Correo electr\xF3nico",J="Estado",X="Rol",Z="IP",$="Visto",ee="Conexi\xF3n",ae="Conexiones",oe="Espacio disponible bajo ( {{ nb }}% )",ie="en l\xEDnea",re="Ilimitado",ne="miembro",se="miembros",te="Miembro",ce="Miembros",de="Gestor",le="gestor",ue="Gestores",pe="Generar",me="Importar",he="Configuraci\xF3n",be="Aplicaciones",ve="aplicaciones",ge="Avatar",fe="Actualizar",ye="Idioma",Ee="Inicio",we="Recientes",Ce="recientes",Se="Papelera",Ae="Compartidos",Ne="Compartir",ze="compartidos",Te="compartido",xe="Acceso al espacio personal",De="Acceso a los espacios",Pe="Administraci\xF3n de espacios",Le="Acceso a los compartidos",Ue="Administraci\xF3n de compartidos",_e="Administraci\xF3n de invitados",ke="Administraci\xF3n de grupos personales",Me="Acceso desde la aplicaci\xF3n de escritorio",Ge="Sincronizaci\xF3n desde la aplicaci\xF3n de escritorio",Fe="Acceso WebDAV",Re="WebDAV",Ie="Espacio",qe="Espacios",Ye="espacios",Ve="ancl\xF3",Oe="desancl\xF3",We="Ubicaci\xF3n",je="Anclado",Be="Ajustes",He="Opciones",Qe="Nombre",Ke="Descargar",Je="Mover",Xe="Copiar",Ze="Renombrar",$e="Editar",ea="Eliminar",aa="Portapapeles",oa="Actualizar",ia="Vaciar",ra="Lista",na="Visualizaci\xF3n",sa="\xBFDesea mover <b>{{arg}}</b> a la papelera?",ta="\xBFDesea eliminar <b>{{arg}}</b> definitivamente?",ca="\xBFDesea mover estos <b>{{arg}} archivos</b> a la papelera?",da="\xBFDesea eliminar estos <b>{{arg}} archivos</b> definitivamente?",la="sincronizaci\xF3n",ua="Sincronizaci\xF3n",pa="Sincronizaciones",ma="Sincronizar",ha="Sync",ba="Sincronizado",va="Comprimir",ga="Descomprimir",fa="Informaci\xF3n",ya="Informaci\xF3n",Ea="Informaci\xF3n",wa="Tama\xF1o",Ca="Modificado",Sa="modificado",Aa="Tareas",Na="Texto",za="Elementos",Ta="Nuevo",xa="Carpeta",Da="carpeta",Pa="archivo",La="archivos",Ua="directorio",_a="directorios",ka="Total",Ma="ning\xFAn elemento seleccionado",Ga="{{ nb }} elemento seleccionado",Fa="{{ nb }} elementos seleccionados",Ra="elemento",Ia="elementos",qa="crear",Ya="escribir",Va="mover",Oa="eliminar",Wa="modificar",ja="compartir",Ba="Enlace",Ha="enlace",Qa="Enlaces",Ka="enlaces",Ja="Invitado",Xa="Invitados",Za="invitado",$a="invitados",eo="Expirado",ao="expirado",oo="ninguno",io="Permisos",ro="Propietario",no="Yo",so="Compartido",to="Creado",co="Fecha",lo="Ruta",uo="activo",po="Activo",mo="suspendido",ho="Tipo",bo="Descripci\xF3n",vo="Visibilidad",go="Desconocido",fo="Expiraci\xF3n",yo="Acceso",Eo="Accedido",wo="Comentar",Co="Comentarios",So="comentarios",Ao="coment\xF3",No="s\xED",zo="no",To="Cliente",xo="Clientes",Do="disponible",Po="ocupado",Lo="ausente",Uo="desconectado",_o="Ver",ko="cerrar sesi\xF3n",Mo="d\xEDas",Go="d\xEDa",Fo="Eliminar",Ro="Planificador",Io="paralelo",qo="secuencial",Yo="Transferencias",Vo="Simular",Oo="Restablecer",Wo="Examinar",jo="Acci\xF3n",Bo="A\xF1adido",Ho="Eliminado",Qo="Copiado",Ko="Movido",Jo="Filtrado",Xo="Error",Zo="Servidor",$o="Direcci\xF3n",ei="Conflicto",ai="reciente",oi="Origen",ii="Destino",ri="Modo",ni="Secuencialmente",si="Paralelamente",ti="r\xE1pido",ci="seguro",di="activado",li="Activar",ui="desactivado",pi="Desactivar",mi="horas",hi="minutos",bi="d\xEDas",vi="ambos",gi="nunca",fi="Asistente",yi="Siguiente",Ei="Anterior",wi="Terminado",Ci="hacia",Si="Repositorio",Ai="p\xFAblico",Ni="local",zi="remoto",Ti="Sitio web",xi="Documentaci\xF3n",Di="Versiones",Pi="Seguridad",Li="Gestionar",Ui={"Sign-in to your account":"Inicie sesi\xF3n en su cuenta","Wrong login or password":"Usuario o contrase\xF1a incorrectos","Authentication service error":"Error del servicio de autenticaci\xF3n","Account locked":"Cuenta bloqueada","Account is not allowed":"Cuenta no autorizada","Account matching error":"Error de correspondencia de cuenta",Authentication:o,"Sign in":"Iniciar sesi\xF3n",Login:i,Password:r,"Login or Email":"Usuario o correo electr\xF3nico","Login already used":"Usuario ya utilizado","You are already logged in":"Ya ha iniciado sesi\xF3n","Name already used":"Nombre ya utilizado","Token has expired":"El token ha expirado",Confirm:n,Cancel:s,Close:t,"Server connection error":"Error de conexi\xF3n con el servidor",Filter:c,Filters:d,search:l,Search:u,"Search for content":"Buscar contenido","Search for files":"Buscar archivos","Full-text search":"B\xFAsqueda de texto completo","Full-text search is disabled":"La b\xFAsqueda de texto completo est\xE1 desactivada","Type to search for users or groups to add":"Escriba para buscar usuarios o grupos para a\xF1adir","Type to search for groups to add":"Escriba para buscar grupos para a\xF1adir","Type to search for users to add":"Escriba para buscar usuarios para a\xF1adir","Type to search for managers to add":"Escriba para buscar gestores para a\xF1adir","Member since":"Miembro desde","Windows Manager":"Administrador de ventanas","Mark as read":"Marcar como le\xEDdo",See:p,no_task:m,one_task:h,nb_tasks:b,one_active_task:v,nb_active_tasks:g,nb_elements:f,nb_actions:y,one_message:E,nb_messages:w,one_notification:C,nb_notifications:S,Application:A,application:N,"application and email":"aplicaci\xF3n y correo electr\xF3nico",Notification:z,Notifications:T,Event:x,File:D,Files:P,"Personal files":"Archivos personales","for personal files":"para los archivos personales",Personal:L,External:U,"Share status":"Estado del recurso compartido","Share description":"Descripci\xF3n del recurso compartido","No recent files":"No hay archivos recientes",Groups:_,Group:k,group:M,"New personal group":"Nuevo grupo personal","Edit personal group":"Editar grupo personal","personal group":"grupo personal","Personal group":"Grupo personal","Personal groups":"Grupos personales",groups:G,"Parent group":"Grupo padre","Group updated":"Grupo actualizado","Group created":"Grupo creado","Group not found":"Grupo no encontrado","Group error":"Error del grupo","Set as group manager":"Definir como gestor del grupo","As a manager, the user will be able to manage the group and its members.":"Como gestor, el usuario podr\xE1 gestionar el grupo y sus miembros.","As a manager, the user will be able to manage group members but not group properties.":`Como gestor, el usuario podr\xE1 gestionar los miembros del grupo pero no las propiedades del grupo.
|
|
2
|
+
`,Visible:F,Private:R,Isolated:I,"Select the parent group":"Seleccione el grupo padre","from the group":"del grupo","New group":"Nuevo grupo","Edit group":"Editar grupo","Leave group":"Salir del grupo","Delete group":"Eliminar grupo","Remove from group":"Eliminar del grupo","Group must have at least one manager":"El grupo debe tener al menos un gestor","The group was left":"Se ha abandonado el grupo","The group was not left":"No se ha abandonado el grupo","will be left, you will no longer be a member of this group":"se abandonar\xE1, ya no ser\xE1 miembro de este grupo","All users can see this group.":"Todos los usuarios pueden ver este grupo.","Users who are not members of this group cannot see it.":"Los usuarios que no son miembros de este grupo no pueden verlo.","The group is not visible, its members cannot see it and cannot see each other.":"El grupo no es visible, sus miembros no pueden verlo ni verse entre ellos.",Add:q,"Add members":"A\xF1adir miembros","See members":"Ver miembros",Administrator:Y,Administration:V,User:O,user:W,Users:j,users:B,"New user":"Nuevo usuario",account:H,Account:Q,"Account status":"Estado de la cuenta",Email:K,"Email already used":"Correo electr\xF3nico ya utilizado","First name":"Nombre","Last name":"Apellido","Full name":"Nombre y Apellido",Status:J,Role:X,IP:Z,"IP Addresses":"Direcciones IP",Seen:$,Connection:ee,Connections:ae,"Confirm deletion":"Confirmar eliminaci\xF3n","Confirm permanent deletion of data":"Confirmar eliminaci\xF3n permanente de los datos","Space and data will be deleted in":"El espacio y los datos se eliminar\xE1n en","Space is disabled":"El espacio est\xE1 desactivado","Storage Space":"Espacio de almacenamiento","Storage Quota":"Cuota de almacenamiento","Storage Usage":"Uso de almacenamiento","Space status":"Estado del espacio","Storage quota exceeded":"Se ha superado la cuota de almacenamiento","Storage quota will be exceeded":"Se superar\xE1 la cuota de almacenamiento","No more space available":"No hay m\xE1s espacio disponible",available_space_is_low:oe,online:ie,"Online users":"Usuarios en l\xEDnea",Unlimited:re,member:ne,members:se,Member:te,Members:ce,Manager:de,manager:le,Managers:ue,"At least one manager is required":"Se requiere al menos un gestor",Generate:pe,Import:me,Configuration:he,Applications:be,applications:ve,"Permissions inherited from groups":"Permisos heredados de los grupos","Only the group will be deleted, the members will no longer be part of it.":"Solo se eliminar\xE1 el grupo, los miembros ya no formar\xE1n parte de \xE9l.",Avatar:ge,Update:fe,"current password":"contrase\xF1a actual","new password":"nueva contrase\xF1a","Change me !":"\xA1C\xE1mbiame!","Current password missing !":"\xA1Falta la contrase\xF1a actual!","New password missing !":"\xA1Falta la nueva contrase\xF1a!","New password must have 8 characters minimum":"La nueva contrase\xF1a debe tener como m\xEDnimo 8 caracteres","Current password does not match":"La contrase\xF1a actual no coincide","Password has been updated":"La contrase\xF1a ha sido actualizada","Unable to update password":"No se puede actualizar la contrase\xF1a","Bad password":"Contrase\xF1a incorrecta","too many login attempts":"demasiados intentos de inicio de sesi\xF3n",Language:ye,"Language updated":"Idioma actualizado","Unable to update language":"No se puede actualizar el idioma","Notification preference updated":"Preferencia de notificaciones actualizada","Full-text search preference updated":"Preferencia de b\xFAsqueda de texto completo actualizada","Unable to update notification preference":"No se puede actualizar la preferencia de notificaciones","Unable to update full-text search preference":"No se puede actualizar la preferencia de b\xFAsqueda de texto completo","Unable to open document":"No se puede abrir el documento",Home:Ee,Recents:we,recents:Ce,Trash:Se,"trash bins":"papeleras",Shares:Ae,Share:Ne,shares:ze,shared:Te,personal_space:xe,spaces_access:De,spaces_admin:Pe,shares_access:Le,shares_admin:Ue,guests_admin:_e,personal_groups_admin:ke,desktop_app_access:Me,desktop_app_sync:Ge,webdav_access:Fe,"Create share":"Crear compartido","Edit share":"Editar compartido","Delete share":"Eliminar compartido","Child shares":"Compartidos hijos",webdav:Re,"Share is disabled":"El compartido est\xE1 desactivado",Space:Ie,Spaces:qe,spaces:Ye,"Space name":"Nombre del espacio","New space":"Nuevo espacio","Create a new space":"Crear un nuevo espacio","Create space":"Crear espacio","Edit space":"Editar espacio","Delete space":"Eliminar espacio","Create a new share":"Crear un nuevo compartido","Type to search for space to select":"Escriba para buscar el espacio a seleccionar","Anchor to a space":"Anclar a un espacio","Anchor files to a space":"Anclar archivos a un espacio","You have been invited to join this space":"Ha sido invitado a unirse a este espacio","You have been invited to join this share":"Ha sido invitado a unirse a este compartido","Shared with others":"Compartido con otros","With others":"Con otros","Shared with me":"Compartido conmigo","With me":"Conmigo","Shared via links":"Compartido por enlaces","Via links":"Por enlaces","Shared from":"Compartido desde","share with you this":"comparte con usted este","shared with you":"ha compartido con usted","no longer share with you":"ya no comparte con usted","You now have access to the space":"Ahora tiene acceso al espacio","You no longer have access to the space":"Ya no tiene acceso al espacio","This space has been permanently deleted":"Este espacio ha sido eliminado definitivamente","You now have access to the share":"Ahora tiene acceso al compartido","You no longer have access to the share":"Ya no tiene acceso al compartido","You are no longer a member of the parent share, your child share has been deleted":"Ya no es miembro del compartido padre, su compartido hijo ha sido eliminado",anchored:Ve,unanchored:Oe,"Share not found":"Compartido no encontrado","Go to":"Ir a",Location:We,"Name and location are required":"Se requieren nombre y ubicaci\xF3n","Parent location already exists in files":"La ubicaci\xF3n padre ya existe en los archivos","Check the location":"Verificar la ubicaci\xF3n","Location not found":"Ubicaci\xF3n no encontrada","Forbidden resource":"Ubicaci\xF3n no autorizada","Resource already exists":"El elemento ya existe","The location does not exist":"La ubicaci\xF3n no existe","The location is not readable":"La ubicaci\xF3n no es legible","The location is not writeable":"La ubicaci\xF3n no es escribible","The location is a directory":"La ubicaci\xF3n es un directorio","The file is locked":"El archivo est\xE1 bloqueado","This share is protected by a password":"Este compartido est\xE1 protegido por una contrase\xF1a","You do not have share permission":"No tiene permiso para compartir","You can not share a space":"No puede compartir un espacio","You can not remove an anchored file":"No puede eliminar un archivo anclado","You are not allowed to write here":"No est\xE1 autorizado a escribir aqu\xED","You are not allowed to do this action":"No est\xE1 autorizado a realizar esta acci\xF3n","You can not move an anchored file":"No puede mover un archivo anclado","You can not move a locked file":"No puede mover un archivo bloqueado",Anchored:je,"Anchored by":"Anclado por","Manage my anchored files":"Gestionar mis archivos anclados","You have no files anchored on this space":"No tiene archivos anclados en este espacio","An anchored file already has this name":"Un archivo anclado ya tiene este nombre",Settings:Be,Options:He,Name:Qe,Download:Ke,"Download done":"Descarga realizada","Download failed":"Descarga fallida","Upload done":"Env\xEDo completado","Upload failed":"Env\xEDo fallido","Copy/Move":"Copiar/Mover",Move:Je,"Move done":"Movimiento realizado","Move failed":"Movimiento fallido","Deletion done":"Eliminaci\xF3n realizada","Deletion failed":"Eliminaci\xF3n fallida","Creation failed":"Creaci\xF3n fallida",Copy:Xe,"Copy done":"Copia realizada","Copy failed":"Copia fallida","Copy-Paste":"Copiar-Pegar","Cut-Paste":"Cortar-Pegar",Rename:Ze,Edit:$e,"Share inside":"Compartir internamente","Share outside":"Compartir externamente",Remove:ea,Clipboard:aa,"Send to Clipboard":"Enviar al portapapeles","will be removed":"ser\xE1 eliminado",Refresh:oa,Empty:ia,List:ra,Display:na,"Sort by":"Ordenar por",trash_one_file:sa,delete_one_file:ta,trash_multiple_files:ca,delete_multiple_files:da,"Moving to trash":"Moviendo a la papelera","Permanent deletion":"Eliminaci\xF3n definitiva","Would you like to empty the trash ?":"\xBFDesea vaciar la papelera?","All items will be permanently deleted":"Todos los elementos se eliminar\xE1n definitivamente","Actions will be performed in the current folder":"Las acciones se realizar\xE1n en la carpeta actual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"El cliente ya no tendr\xE1 permiso para acceder a su cuenta y no podr\xE1 sincronizar.","The access expires":"El acceso expira","The access has expired":"El acceso ha expirado","Never expires":"Nunca expira",synchronization:la,Synchronization:ua,Synchronizations:pa,Synchronize:ma,Sync:ha,"Stop synchronization":"Detener la sincronizaci\xF3n","Synchronize all":"Sincronizar todo","Stop synchronizations":"Detener las sincronizaciones",Synced:ba,"Sync already exists":"La sincronizaci\xF3n ya existe","Sync was reset":"Sincronizaci\xF3n restablecida","Sync deleted":"Sincronizaci\xF3n eliminada","This client":"Este cliente","You are no longer synchronizing":"Ya no est\xE1 sincronizando",Compress:va,Decompress:ga,"Compress and Download":"Comprimir y descargar","Compress and Save":"Comprimir y guardar","Enable compression":"Activar compresi\xF3n","Compression done":"Compresi\xF3n realizada","Compression failed":"Compresi\xF3n fallida","Decompression done":"Descompresi\xF3n realizada","Decompression failed":"Descompresi\xF3n fallida","(this may take longer)":"(esto puede tardar m\xE1s)","Save in the current directory":"Guardar en el directorio actual","This name is already used":"Este nombre ya est\xE1 utilizado",Information:fa,Informations:ya,Infos:Ea,Size:wa,Modified:Ca,modified:Sa,Tasks:Aa,"Download from URL":"Descargar desde una URL","Upload files":"Enviar archivos","Upload folders":"Enviar carpetas","Folder name":"Nombre de la carpeta","New folder":"Nueva carpeta","Document name":"Nombre del documento","New document":"Nuevo documento","File name":"Nombre del archivo","File permissions":"Permisos del archivo",Text:Na,"Rich Text Format":"Texto enriquecido","Forbidden characters":"Caracteres prohibidos",Elements:za,"Malformed URL":"URL mal formada",New:Ta,Folder:xa,folder:Da,file:Pa,files:La,directory:Ua,directories:_a,Total:ka,no_selection:Ma,one_selection:Ga,nb_selections:Fa,"Archive name":"Nombre del archivo comprimido","Drag and drop your files here":"Arrastre y suelte sus archivos aqu\xED","The destination already exists":"El destino ya existe","This item is already selected":"Este elemento ya est\xE1 seleccionado","Parent item is already selected":"El elemento padre ya est\xE1 seleccionado","This file contains binary data that can not be read":"Este archivo contiene datos binarios que no se pueden leer","Navigation Tree":"\xC1rbol de navegaci\xF3n",item:Ra,items:Ia,create:qa,write:Ya,move:Va,delete:Oa,modify:Wa,"Delete user":"Eliminar usuario","Delete all user files":"Eliminar todos los archivos del usuario",share:ja,"Share name":"Nombre del compartido","New share":"Nuevo compartido","New share link":"Nuevo enlace de compartido","New link":"Nuevo enlace","Edit children shares":"Editar compartidos hijos",Link:Ba,link:Ha,Links:Qa,links:Ka,"Link copied":"Enlace copiado","Link created":"Enlace creado","Link deleted":"Enlace eliminado","Link error":"Error de enlace","Copy link":"Copiar enlace","Edit link":"Editar enlace","Guest Link":"Enlace de invitado","Guest name":"Nombre del invitado","Guest email":"Correo electr\xF3nico del invitado","Guest language":"Idioma del invitado",Guest:Ja,Guests:Xa,guest:Za,guests:$a,"New guest":"Nuevo invitado","Edit guest":"Editar invitado","Guest created":"Invitado creado","Guest deleted":"Invitado eliminado","Guest updated":"Invitado actualizado","Guest error":"Error de invitado","Add an external location":"A\xF1adir una ubicaci\xF3n externa","External location":"Ubicaci\xF3n externa","Select a file":"Seleccionar un archivo","The link is expired":"El enlace ha expirado","The link is disabled":"El enlace est\xE1 desactivado","The link was not found":"No se encontr\xF3 el enlace",Expired:eo,expired:ao,none:oo,"The maximum number of access allowed to the link is exceeded":"Se ha superado el n\xFAmero m\xE1ximo de accesos permitidos al enlace","Set a password":"Definir una contrase\xF1a","Enter your password":"Introduzca su contrase\xF1a",Permissions:io,"No permissions":"Sin permisos",Owner:ro,Me:no,Shared:so,Created:to,"Created & Modified":"Creado y modificado","Creation date":"Fecha de creaci\xF3n","Modification date":"Fecha de modificaci\xF3n","Deactivation date":"Fecha de desactivaci\xF3n",Date:co,Path:lo,active:uo,Active:po,suspended:mo,"Unable to rename user space":"No se puede renombrar el espacio del usuario","Unable to delete user space":"No se puede eliminar el espacio del usuario","Unable to update user":"No se puede actualizar el usuario","Unable to update user groups":"No se pueden actualizar los grupos del usuario","User created":"Usuario creado","User updated":"Usuario actualizado","User not found":"Usuario no encontrado","Edit user":"Editar usuario","Impersonate identity":"Suplantar identidad",Type:ho,Description:bo,Visibility:vo,"Unknown error !":"\xA1Error desconocido!",Unknown:go,Expiration:fo,"Limit access":"Limitar los accesos","Current access count":"N\xFAmero de accesos actual",Access:yo,Accessed:Eo,"Last access":"\xDAltimo acceso","Last accesses":"\xDAltimos accesos",Comment:wo,Comments:Co,comments:So,commented:Ao,"No recent comments":"No hay comentarios recientes","Write a comment ...":"Escriba un comentario ...",yes:No,no:zo,Client:To,Clients:xo,available:Do,busy:Po,absent:Lo,offline:Uo,View:_o,"Session has expired":"La sesi\xF3n ha expirado","Please sign in":"Por favor, inicie sesi\xF3n",logout:ko,days:Mo,day:Go,Delete:Fo,Scheduler:Ro,async:Io,seq:qo,Transfers:Yo,Simulate:Vo,Reset:Oo,Browse:Wo,Action:jo,Added:Bo,Removed:Ho,Copied:Qo,Moved:Ko,Filtered:Jo,Error:Xo,Server:Zo,Direction:$o,Conflict:ei,"Show filtered files":"Mostrar archivos filtrados",recent:ai,Source:oi,Destination:ii,Mode:ri,Sequentially:ni,Asynchronously:si,fast:ti,secure:ci,enabled:di,Enable:li,disabled:ui,Disable:pi,scheduler_unit_hour:mi,scheduler_unit_minute:hi,scheduler_unit_day:bi,"You must have permission to modify the server folder to choose a different sync mode":"Debe tener permiso para modificar la carpeta del servidor para elegir un modo de sincronizaci\xF3n diferente","upload only":"solo enviar","download only":"solo descargar",both:vi,never:gi,"Clear events":"Borrar eventos","Events from":"Eventos de","All syncs":"Todas las sincronizaciones","All events":"Todos los eventos","will be cleared":"se borrar\xE1n","No differences":"Sin diferencias","Select a folder":"Seleccionar una carpeta","The files containing":"Los archivos que contienen","The files starting":"Los archivos que comienzan","The files ending":"Los archivos que terminan","Expert (Regexp)":"Experto (Regexp)","click on the browse button":"haga clic en el bot\xF3n examinar","with a name or pattern":"por un nombre o un patr\xF3n","with the extension ('.mp3', '.avi', '.mov' ...)":"por la extensi\xF3n ('.mp3', '.avi', '.mov' ...)",Wizard:fi,Next:yi,Previous:Ei,Done:wi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este asistente le ayudar\xE1 a sincronizar un directorio de su ordenador con un directorio de Sync-in.","To begin, select a folder on your computer.":"Para empezar, seleccione una carpeta en su ordenador.",'You can drag the folder into the area below or click on the "Select" button.':'Puede arrastrar la carpeta al \xE1rea de abajo o hacer clic en el bot\xF3n "Seleccionar".',"Drop folder here":"Suelte la carpeta aqu\xED","This directory is already synced":"Este directorio ya est\xE1 sincronizado","The parent directory is already synced":"El directorio padre ya est\xE1 sincronizado","This folder already exists":"Esta carpeta ya existe","This file already exists":"Este archivo ya existe","This directory is not accessible":"Este directorio no es accesible","This directory is read-only, you will not be able to modify it":"Este directorio es de solo lectura, no podr\xE1 modificarlo","Please select the server directory to sync, if it doesn't exist you can create it.":"Seleccione el directorio del servidor a sincronizar; si no existe, puede crearlo.","Double click to browse directories":"Haga doble clic para navegar por los directorios","The data will be synchronized from":"Los datos se sincronizar\xE1n desde","the client folder":"la carpeta del cliente","the server folder":"la carpeta del servidor","(One-Way)":"(unidireccional)","(Two-Way)":"(bidireccional)",to:Ci,"and from":"y desde","All files created or modified in":"Todos los archivos creados o modificados en","will be ignored and deleted":"ser\xE1n ignorados y eliminados","In case of conflict,":"En caso de conflicto,","the most recent files will be kept":"se mantendr\xE1n los archivos m\xE1s recientes","the client\u2019s files take precedence":"los archivos del cliente tienen prioridad","the server\u2019s files take precedence":"los archivos del servidor tienen prioridad","the files in":"los archivos de","will be preferred":"ser\xE1n preferidos","Loading...":"Cargando...","No results":"Sin resultados","Download ARM64 version":"Descargar la versi\xF3n ARM64","Download Apple Silicon ARM64 version":"Descargar la versi\xF3n Apple Silicon ARM64","Download tar.gz version":"Descargar la versi\xF3n tar.gz",Repository:Si,public:Ai,local:Ni,remote:zi,"System requirements":"Requisitos del sistema","Feature not enabled":"Funcionalidad no habilitada","Check the settings":"Verifique la configuraci\xF3n",Website:Ti,Documentation:xi,Versions:Di,Security:Pi,"Recovery code":"C\xF3digo de recuperaci\xF3n","Use a recovery code":"Usar un c\xF3digo de recuperaci\xF3n","Authentication code":"C\xF3digo de autenticaci\xF3n","Secret copied":"Secreto copiado","Recovery codes copied":"C\xF3digos de recuperaci\xF3n copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo o contrase\xF1a incorrectos","Application Passwords":"Contrase\xF1as de aplicaci\xF3n","Generate a new app password":"Generar una nueva contrase\xF1a de aplicaci\xF3n","Generated password":"Contrase\xF1a generada","This password will only be shown once after it is generated":"Esta contrase\xF1a solo se mostrar\xE1 una vez despu\xE9s de generarse","Password name":"Nombre de la contrase\xF1a",Manage:Li,"Manage app passwords":"Gestionar contrase\xF1as de aplicaci\xF3n","Password Authentication":"Autenticaci\xF3n por contrase\xF1a","Two-Factor Authentication":"Autenticaci\xF3n de dos factores","Two-Factor Authentication is enabled":"La autenticaci\xF3n de dos factores est\xE1 activada","Two-Factor Authentication is disabled":"La autenticaci\xF3n de dos factores est\xE1 desactivada","Scan this QR code using your authenticator app.":"Escanee este c\xF3digo QR con su aplicaci\xF3n de autenticaci\xF3n.","(Such as FreeOTP, Proton Authenticator etc.)":"(Por ejemplo, FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"O introduzca este secreto manualmente","Valid with your TOTP code":"Valide con su c\xF3digo TOTP","The secret has expired":"El secreto ha expirado","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estos c\xF3digos en un lugar seguro. Le permitir\xE1n acceder a su cuenta si pierde el acceso a su autenticaci\xF3n de dos factores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estos c\xF3digos de recuperaci\xF3n son de un solo uso y solo se mostrar\xE1n aqu\xED una vez."};export{yo as Access,Eo as Accessed,Q as Account,jo as Action,po as Active,q as Add,Bo as Added,V as Administration,Y as Administrator,je as Anchored,A as Application,be as Applications,si as Asynchronously,o as Authentication,ge as Avatar,Wo as Browse,s as Cancel,To as Client,xo as Clients,aa as Clipboard,t as Close,wo as Comment,Co as Comments,va as Compress,he as Configuration,n as Confirm,ei as Conflict,ee as Connection,ae as Connections,Qo as Copied,Xe as Copy,to as Created,co as Date,ga as Decompress,Fo as Delete,bo as Description,ii as Destination,$o as Direction,pi as Disable,na as Display,xi as Documentation,wi as Done,Ke as Download,$e as Edit,za as Elements,K as Email,ia as Empty,li as Enable,Xo as Error,x as Event,fo as Expiration,eo as Expired,U as External,D as File,P as Files,c as Filter,Jo as Filtered,d as Filters,xa as Folder,pe as Generate,k as Group,_ as Groups,Ja as Guest,Xa as Guests,Ee as Home,Z as IP,me as Import,fa as Information,ya as Informations,Ea as Infos,I as Isolated,ye as Language,Ba as Link,Qa as Links,ra as List,We as Location,i as Login,Li as Manage,de as Manager,ue as Managers,no as Me,te as Member,ce as Members,ri as Mode,Ca as Modified,Je as Move,Ko as Moved,Qe as Name,Ta as New,yi as Next,z as Notification,T as Notifications,He as Options,ro as Owner,r as Password,lo as Path,io as Permissions,L as Personal,Ei as Previous,R as Private,we as Recents,oa as Refresh,ea as Remove,Ho as Removed,Ze as Rename,Si as Repository,Oo as Reset,X as Role,Ro as Scheduler,u as Search,Pi as Security,p as See,$ as Seen,ni as Sequentially,Zo as Server,Be as Settings,Ne as Share,so as Shared,Ae as Shares,Vo as Simulate,wa as Size,oi as Source,Ie as Space,qe as Spaces,J as Status,ha as Sync,ba as Synced,ua as Synchronization,pa as Synchronizations,ma as Synchronize,Aa as Tasks,Na as Text,ka as Total,Yo as Transfers,Se as Trash,ho as Type,go as Unknown,re as Unlimited,fe as Update,O as User,j as Users,Di as Versions,_o as View,vo as Visibility,F as Visible,Ti as Website,fi as Wizard,Lo as absent,H as account,uo as active,Ve as anchored,N as application,ve as applications,Io as async,Do as available,oe as available_space_is_low,vi as both,Po as busy,Ao as commented,So as comments,qa as create,Go as day,Mo as days,Ui as default,Oa as delete,da as delete_multiple_files,ta as delete_one_file,Me as desktop_app_access,Ge as desktop_app_sync,_a as directories,Ua as directory,ui as disabled,di as enabled,ao as expired,ti as fast,Pa as file,La as files,Da as folder,M as group,G as groups,Za as guest,$a as guests,_e as guests_admin,Ra as item,Ia as items,Ha as link,Ka as links,Ni as local,ko as logout,le as manager,ne as member,se as members,Sa as modified,Wa as modify,Va as move,y as nb_actions,g as nb_active_tasks,f as nb_elements,w as nb_messages,S as nb_notifications,Fa as nb_selections,b as nb_tasks,gi as never,zo as no,Ma as no_selection,m as no_task,oo as none,Uo as offline,v as one_active_task,E as one_message,C as one_notification,Ga as one_selection,h as one_task,ie as online,ke as personal_groups_admin,xe as personal_space,Ai as public,ai as recent,Ce as recents,zi as remote,bi as scheduler_unit_day,mi as scheduler_unit_hour,hi as scheduler_unit_minute,l as search,ci as secure,qo as seq,ja as share,Te as shared,ze as shares,Le as shares_access,Ue as shares_admin,Ye as spaces,De as spaces_access,Pe as spaces_admin,mo as suspended,la as synchronization,Ci as to,ca as trash_multiple_files,sa as trash_one_file,Oe as unanchored,W as user,B as users,Re as webdav,Fe as webdav_access,Ya as write,No as yes};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{n as e}from"./chunk-DM4NXKEP.js";import"./chunk-ZIJQRARU.js";import"./chunk-N3U6637P.js";var _={name:"pt-br",weekdays:"domingo_segunda-feira_ter\xE7a-feira_quarta-feira_quinta-feira_sexta-feira_s\xE1bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_s\xE1b".split("_"),weekdaysMin:"Do_2\xAA_3\xAA_4\xAA_5\xAA_6\xAA_S\xE1".split("_"),months:"janeiro_fevereiro_mar\xE7o_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(a){return a+"\xBA"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xE0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xE0s] HH:mm"},relativeTime:{future:"em %s",past:"h\xE1 %s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xEAs",MM:"%d meses",y:"um ano",yy:"%d anos"}};e.locale(_,null,!0);var m=_;export{m as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./chunk-N3U6637P.js";var i="Authentifizierung",r="Benutzername",t="Passwort",s="Best\xE4tigen",a="Abbrechen",o="Schlie\xDFen",l="Filtern",h="Filter",d="suchen",c="Suchen",u="Anzeigen",g="Keine Aufgabe",p="{{ nb }} erledigte Aufgabe",m="{{ nb }} erledigte Aufgaben",b="{{ nba }} laufende Aufgabe von {{ nb }}",f="{{ nba }} laufende Aufgaben von {{ nb }}",w="{{nb}} Element(e)",k="{{nb}} Aktion(en)",S="{{ nb }} neue Nachricht",y="{{ nb }} neue Nachrichten",v="{{ nb }} ungelesene Benachrichtigung",z="{{ nb }} ungelesene Benachrichtigungen",A="Anwendung",D="anwendung",G="Benachrichtigung",T="Benachrichtigungen",B="Ereignis",P="Datei",E="Dateien",F="Pers\xF6nlich",M="Extern",N="Gruppen",C="Gruppe",x="gruppe",L="gruppen",_="Sichtbar",I="Privat",U="Isoliert",V="Hinzuf\xFCgen",K="Administrator",Z="Administration",R="Benutzer",O="benutzer",W="Benutzer",Y="benutzer",q="konto",H="Konto",j="E\u2011Mail",Q="Status",J="Rolle",X="IP",$="Gesehen",ee="Verbindung",ne="Verbindungen",ie="Verf\xFCgbarer Speicherplatz niedrig ( {{ nb }}% )",re="online",te="Unbegrenzt",se="mitglied",ae="mitglieder",oe="Mitglied",le="Mitglieder",he="Manager",de="manager",ce="Manager",ue="Generieren",ge="Importieren",pe="Konfiguration",me="Anwendungen",be="anwendungen",fe="Avatar",we="Aktualisieren",ke="Sprache",Se="Startseite",ye="Zuletzt verwendet",ve="zuletzt",ze="Papierkorb",Ae="Freigaben",De="Freigabe",Ge="freigaben",Te="freigegeben",Be="Zugriff auf pers\xF6nlichen Bereich",Pe="Zugriff auf Bereiche",Ee="Administration der Bereiche",Fe="Zugriff auf Freigaben",Me="Administration der Freigaben",Ne="Administration der G\xE4ste",Ce="Administration der pers\xF6nlichen Gruppen",xe="Zugriff von der Desktop-App",Le="Synchronisierung von der Desktop-App",_e="WebDAV-Zugriff",Ie="WebDAV",Ue="Bereich",Ve="Bereiche",Ke="bereiche",Ze="angeheftet",Re="gel\xF6st",Oe="Speicherort",We="Angeheftet",Ye="Einstellungen",qe="Optionen",He="Name",je="Herunterladen",Qe="Verschieben",Je="Kopieren",Xe="Umbenennen",$e="Bearbeiten",en="Entfernen",nn="Zwischenablage",rn="Aktualisieren",tn="Leeren",sn="Liste",an="Anzeige",on="M\xF6chten Sie <b>{{arg}}</b> in den Papierkorb verschieben?",ln="M\xF6chten Sie <b>{{arg}}</b> endg\xFCltig l\xF6schen?",hn="M\xF6chten Sie diese <b>{{arg}} Dateien</b> in den Papierkorb verschieben?",dn="M\xF6chten Sie diese <b>{{arg}} Dateien</b> endg\xFCltig l\xF6schen?",cn="synchronisierung",un="Synchronisierung",gn="Synchronisierungen",pn="Synchronisieren",mn="Sync",bn="Synchronisiert",fn="Komprimieren",wn="Dekomprimieren",kn="Information",Sn="Informationen",yn="Infos",vn="Gr\xF6\xDFe",zn="Ge\xE4ndert",An="ge\xE4ndert",Dn="Aufgaben",Gn="Text",Tn="Elemente",Bn="Neu",Pn="Ordner",En="ordner",Fn="datei",Mn="dateien",Nn="verzeichnis",Cn="verzeichnisse",xn="Gesamt",Ln="kein Element ausgew\xE4hlt",_n="{{ nb }} Element ausgew\xE4hlt",In="{{ nb }} Elemente ausgew\xE4hlt",Un="element",Vn="elemente",Kn="erstellen",Zn="schreiben",Rn="verschieben",On="l\xF6schen",Wn="\xE4ndern",Yn="freigabe",qn="Link",Hn="link",jn="Links",Qn="links",Jn="Gast",Xn="G\xE4ste",$n="gast",ei="g\xE4ste",ni="Abgelaufen",ii="abgelaufen",ri="keine",ti="Berechtigungen",si="Eigent\xFCmer",ai="Ich",oi="Geteilt",li="Erstellt",hi="Datum",di="Pfad",ci="aktiv",ui="Aktiv",gi="ausgesetzt",pi="Typ",mi="Beschreibung",bi="Sichtbarkeit",fi="Unbekannt",wi="Ablauf",ki="Zugriff",Si="Zugegriffen",yi="Kommentieren",vi="Kommentare",zi="kommentare",Ai="hat kommentiert",Di="ja",Gi="nein",Ti="Client",Bi="Clients",Pi="verf\xFCgbar",Ei="besch\xE4ftigt",Fi="abwesend",Mi="offline",Ni="Ansehen",Ci="abmelden",xi="Tage",Li="Tag",_i="L\xF6schen",Ii="Planer",Ui="parallel",Vi="sequenziell",Ki="\xDCbertragungen",Zi="Simulieren",Ri="Zur\xFCcksetzen",Oi="Durchsuchen",Wi="Aktion",Yi="Hinzugef\xFCgt",qi="Entfernt",Hi="Kopiert",ji="Verschoben",Qi="Gefiltert",Ji="Fehler",Xi="Server",$i="Richtung",er="Konflikt",nr="aktuell",ir="Quelle",rr="Ziel",tr="Modus",sr="Sequenziell",ar="Parallel",or="schnell",lr="sicher",hr="aktiviert",dr="Aktivieren",cr="deaktiviert",ur="Deaktivieren",gr="Stunden",pr="Minuten",mr="Tage",br="beides",fr="nie",wr="Assistent",kr="Weiter",Sr="Zur\xFCck",yr="Fertig",vr="zu",zr="Repository",Ar="\xF6ffentlich",Dr="lokal",Gr="entfernt",Tr="Website",Br="Dokumentation",Pr="Versionen",Er="Sicherheit",Fr="Verwalten",Mr={"Sign-in to your account":"Melden Sie sich bei Ihrem Konto an","Wrong login or password":"Falscher Benutzername oder Passwort","Authentication service error":"Fehler des Authentifizierungsdienstes","Account locked":"Konto gesperrt","Account is not allowed":"Konto ist nicht zugelassen","Account matching error":"Fehler bei der Kontozuordnung",Authentication:i,"Sign in":"Anmelden",Login:r,Password:t,"Login or Email":"Benutzername oder E\u2011Mail","Login already used":"Benutzername bereits vergeben","You are already logged in":"Sie sind bereits angemeldet","Name already used":"Name bereits vergeben","Token has expired":"Token ist abgelaufen",Confirm:s,Cancel:a,Close:o,"Server connection error":"Fehler bei der Serververbindung",Filter:l,Filters:h,search:d,Search:c,"Search for content":"Nach Inhalten suchen","Search for files":"Nach Dateien suchen","Full-text search":"Volltextsuche","Full-text search is disabled":"Volltextsuche ist deaktiviert","Type to search for users or groups to add":"Tippen, um Benutzer oder Gruppen zum Hinzuf\xFCgen zu suchen","Type to search for groups to add":"Tippen, um Gruppen zum Hinzuf\xFCgen zu suchen","Type to search for users to add":"Tippen, um Benutzer zum Hinzuf\xFCgen zu suchen","Type to search for managers to add":"Tippen, um Manager zum Hinzuf\xFCgen zu suchen","Member since":"Mitglied seit","Windows Manager":"Fenster-Manager","Mark as read":"Als gelesen markieren",See:u,no_task:g,one_task:p,nb_tasks:m,one_active_task:b,nb_active_tasks:f,nb_elements:w,nb_actions:k,one_message:S,nb_messages:y,one_notification:v,nb_notifications:z,Application:A,application:D,"application and email":"Anwendung und E\u2011Mail",Notification:G,Notifications:T,Event:B,File:P,Files:E,"Personal files":"Pers\xF6nliche Dateien","for personal files":"f\xFCr pers\xF6nliche Dateien",Personal:F,External:M,"Share status":"Freigabestatus","Share description":"Freigabebeschreibung","No recent files":"Keine aktuellen Dateien",Groups:N,Group:C,group:x,"New personal group":"Neue pers\xF6nliche Gruppe","Edit personal group":"Pers\xF6nliche Gruppe bearbeiten","personal group":"pers\xF6nliche Gruppe","Personal group":"Pers\xF6nliche Gruppe","Personal groups":"Pers\xF6nliche Gruppen",groups:L,"Parent group":"\xDCbergeordnete Gruppe","Group updated":"Gruppe aktualisiert","Group created":"Gruppe erstellt","Group not found":"Gruppe nicht gefunden","Group error":"Gruppenfehler","Set as group manager":"Als Gruppenmanager festlegen","As a manager, the user will be able to manage the group and its members.":"Als Manager kann der Benutzer die Gruppe und ihre Mitglieder verwalten.","As a manager, the user will be able to manage group members but not group properties.":"Als Manager kann der Benutzer die Gruppenmitglieder verwalten, jedoch nicht die Gruppeneigenschaften.",Visible:_,Private:I,Isolated:U,"Select the parent group":"\xDCbergeordnete Gruppe ausw\xE4hlen","from the group":"der Gruppe","New group":"Neue Gruppe","Edit group":"Gruppe bearbeiten","Leave group":"Gruppe verlassen","Delete group":"Gruppe l\xF6schen","Remove from group":"Aus Gruppe entfernen","Group must have at least one manager":"Die Gruppe muss mindestens einen Manager haben","The group was left":"Die Gruppe wurde verlassen","The group was not left":"Die Gruppe wurde nicht verlassen","will be left, you will no longer be a member of this group":"wird verlassen, Sie sind nicht mehr Mitglied dieser Gruppe","All users can see this group.":"Alle Benutzer k\xF6nnen diese Gruppe sehen.","Users who are not members of this group cannot see it.":"Benutzer, die nicht Mitglieder dieser Gruppe sind, k\xF6nnen sie nicht sehen.","The group is not visible, its members cannot see it and cannot see each other.":"Die Gruppe ist nicht sichtbar; ihre Mitglieder k\xF6nnen sie nicht sehen und sich gegenseitig nicht sehen.",Add:V,"Add members":"Mitglieder hinzuf\xFCgen","See members":"Mitglieder anzeigen",Administrator:K,Administration:Z,User:R,user:O,Users:W,users:Y,"New user":"Neuer Benutzer",account:q,Account:H,"Account status":"Kontostatus",Email:j,"Email already used":"E\u2011Mail bereits verwendet","First name":"Vorname","Last name":"Nachname","Full name":"Vor- und Nachname",Status:Q,Role:J,IP:X,"IP Addresses":"IP-Adressen",Seen:$,Connection:ee,Connections:ne,"Confirm deletion":"L\xF6schen best\xE4tigen","Confirm permanent deletion of data":"Dauerhafte Datenl\xF6schung best\xE4tigen","Space and data will be deleted in":"Bereich und Daten werden gel\xF6scht in","Space is disabled":"Bereich ist deaktiviert","Storage Space":"Speicherplatz","Storage Quota":"Speicherkontingent","Storage Usage":"Speichernutzung","Space status":"Status des Bereichs","Storage quota exceeded":"Speicherkontingent \xFCberschritten","Storage quota will be exceeded":"Speicherkontingent wird \xFCberschritten","No more space available":"Kein Speicherplatz mehr verf\xFCgbar",available_space_is_low:ie,online:re,"Online users":"Benutzer online",Unlimited:te,member:se,members:ae,Member:oe,Members:le,Manager:he,manager:de,Managers:ce,"At least one manager is required":"Mindestens ein Manager ist erforderlich",Generate:ue,Import:ge,Configuration:pe,Applications:me,applications:be,"Permissions inherited from groups":"Berechtigungen von Gruppen geerbt","Only the group will be deleted, the members will no longer be part of it.":"Nur die Gruppe wird gel\xF6scht, die Mitglieder geh\xF6ren ihr nicht mehr an.",Avatar:fe,Update:we,"current password":"aktuelles Passwort","new password":"neues Passwort","Change me !":"\xC4ndern Sie mich!","Current password missing !":"Aktuelles Passwort fehlt!","New password missing !":"Neues Passwort fehlt!","New password must have 8 characters minimum":"Neues Passwort muss mindestens 8 Zeichen haben","Current password does not match":"Aktuelles Passwort stimmt nicht \xFCberein","Password has been updated":"Passwort wurde aktualisiert","Unable to update password":"Passwort kann nicht aktualisiert werden","Bad password":"Falsches Passwort","too many login attempts":"zu viele Anmeldeversuche",Language:ke,"Language updated":"Sprache aktualisiert","Unable to update language":"Sprache kann nicht aktualisiert werden","Notification preference updated":"Benachrichtigungseinstellung aktualisiert","Full-text search preference updated":"Einstellung der Volltextsuche aktualisiert","Unable to update notification preference":"Benachrichtigungseinstellung kann nicht aktualisiert werden","Unable to update full-text search preference":"Volltextsuche-Einstellung kann nicht aktualisiert werden","Unable to open document":"Dokument kann nicht ge\xF6ffnet werden",Home:Se,Recents:ye,recents:ve,Trash:ze,"trash bins":"Papierk\xF6rbe",Shares:Ae,Share:De,shares:Ge,shared:Te,personal_space:Be,spaces_access:Pe,spaces_admin:Ee,shares_access:Fe,shares_admin:Me,guests_admin:Ne,personal_groups_admin:Ce,desktop_app_access:xe,desktop_app_sync:Le,webdav_access:_e,"Create share":"Freigabe erstellen","Edit share":"Freigabe bearbeiten","Delete share":"Freigabe l\xF6schen","Child shares":"Untergeordnete Freigaben",webdav:Ie,"Share is disabled":"Freigabe ist deaktiviert",Space:Ue,Spaces:Ve,spaces:Ke,"Space name":"Name des Bereichs","New space":"Neuer Bereich","Create a new space":"Neuen Bereich erstellen","Create space":"Bereich erstellen","Edit space":"Bereich bearbeiten","Delete space":"Bereich l\xF6schen","Create a new share":"Neue Freigabe erstellen","Type to search for space to select":"Tippen, um einen Bereich zum Ausw\xE4hlen zu suchen","Anchor to a space":"An einen Bereich anheften","Anchor files to a space":"Dateien an einen Bereich anheften","You have been invited to join this space":"Sie wurden eingeladen, diesem Bereich beizutreten","You have been invited to join this share":"Sie wurden eingeladen, dieser Freigabe beizutreten","Shared with others":"Mit anderen geteilt","With others":"Mit anderen","Shared with me":"Mit mir geteilt","With me":"Mit mir","Shared via links":"\xDCber Links geteilt","Via links":"\xDCber Links","Shared from":"Geteilt von","share with you this":"teilt mit Ihnen dieses","shared with you":"hat mit Ihnen geteilt","no longer share with you":"teilt nicht mehr mit Ihnen","You now have access to the space":"Sie haben jetzt Zugriff auf den Bereich","You no longer have access to the space":"Sie haben keinen Zugriff mehr auf den Bereich","This space has been permanently deleted":"Dieser Bereich wurde dauerhaft gel\xF6scht","You now have access to the share":"Sie haben jetzt Zugriff auf die Freigabe","You no longer have access to the share":"Sie haben keinen Zugriff mehr auf die Freigabe","You are no longer a member of the parent share, your child share has been deleted":"Sie sind kein Mitglied der \xFCbergeordneten Freigabe mehr; Ihre untergeordnete Freigabe wurde gel\xF6scht",anchored:Ze,unanchored:Re,"Share not found":"Freigabe nicht gefunden","Go to":"Gehe zu",Location:Oe,"Name and location are required":"Name und Speicherort sind erforderlich","Parent location already exists in files":"\xDCbergeordneter Speicherort existiert bereits in Dateien","Check the location":"Speicherort pr\xFCfen","Location not found":"Speicherort nicht gefunden","Forbidden resource":"Nicht zul\xE4ssige Ressource","Resource already exists":"Element existiert bereits","The location does not exist":"Der Speicherort existiert nicht","The location is not readable":"Der Speicherort ist nicht lesbar","The location is not writeable":"Der Speicherort ist nicht beschreibbar","The location is a directory":"Der Speicherort ist ein Verzeichnis","The file is locked":"Die Datei ist gesperrt","This share is protected by a password":"Diese Freigabe ist durch ein Passwort gesch\xFCtzt","You do not have share permission":"Sie haben keine Berechtigung zum Freigeben","You can not share a space":"Sie k\xF6nnen keinen Bereich freigeben","You can not remove an anchored file":"Sie k\xF6nnen eine angeheftete Datei nicht entfernen","You are not allowed to write here":"Sie d\xFCrfen hier nicht schreiben","You are not allowed to do this action":"Sie d\xFCrfen diese Aktion nicht ausf\xFChren","You can not move an anchored file":"Sie k\xF6nnen eine angeheftete Datei nicht verschieben","You can not move a locked file":"Sie k\xF6nnen eine gesperrte Datei nicht verschieben",Anchored:We,"Anchored by":"Angeheftet von","Manage my anchored files":"Meine angehefteten Dateien verwalten","You have no files anchored on this space":"Sie haben keine angehefteten Dateien in diesem Bereich","An anchored file already has this name":"Eine angeheftete Datei tr\xE4gt bereits diesen Namen",Settings:Ye,Options:qe,Name:He,Download:je,"Download done":"Download abgeschlossen","Download failed":"Download fehlgeschlagen","Upload done":"Upload abgeschlossen","Upload failed":"Upload fehlgeschlagen","Copy/Move":"Kopieren/Verschieben",Move:Qe,"Move done":"Verschieben abgeschlossen","Move failed":"Verschieben fehlgeschlagen","Deletion done":"L\xF6schen abgeschlossen","Deletion failed":"L\xF6schen fehlgeschlagen","Creation failed":"Erstellung fehlgeschlagen",Copy:Je,"Copy done":"Kopieren abgeschlossen","Copy failed":"Kopieren fehlgeschlagen","Copy-Paste":"Kopieren-Einf\xFCgen","Cut-Paste":"Ausschneiden-Einf\xFCgen",Rename:Xe,Edit:$e,"Share inside":"Intern teilen","Share outside":"Extern teilen",Remove:en,Clipboard:nn,"Send to Clipboard":"In die Zwischenablage senden","will be removed":"wird entfernt",Refresh:rn,Empty:tn,List:sn,Display:an,"Sort by":"Sortieren nach",trash_one_file:on,delete_one_file:ln,trash_multiple_files:hn,delete_multiple_files:dn,"Moving to trash":"Verschieben in den Papierkorb","Permanent deletion":"Endg\xFCltiges L\xF6schen","Would you like to empty the trash ?":"M\xF6chten Sie den Papierkorb leeren?","All items will be permanently deleted":"Alle Elemente werden endg\xFCltig gel\xF6scht","Actions will be performed in the current folder":"Aktionen werden im aktuellen Ordner ausgef\xFChrt","The client will no longer have permission to access your account and will no longer be able to synchronize.":"Der Client hat keine Berechtigung mehr, auf Ihr Konto zuzugreifen, und kann nicht mehr synchronisieren.","The access expires":"Der Zugriff l\xE4uft ab","The access has expired":"Der Zugriff ist abgelaufen","Never expires":"L\xE4uft nie ab",synchronization:cn,Synchronization:un,Synchronizations:gn,Synchronize:pn,Sync:mn,"Stop synchronization":"Synchronisierung beenden","Synchronize all":"Alles synchronisieren","Stop synchronizations":"Synchronisierungen beenden",Synced:bn,"Sync already exists":"Synchronisierung existiert bereits","Sync was reset":"Synchronisierung zur\xFCckgesetzt","Sync deleted":"Synchronisierung gel\xF6scht","This client":"Dieser Client","You are no longer synchronizing":"Sie synchronisieren nicht mehr",Compress:fn,Decompress:wn,"Compress and Download":"Komprimieren und Herunterladen","Compress and Save":"Komprimieren und Speichern","Enable compression":"Komprimierung aktivieren","Compression done":"Komprimierung abgeschlossen","Compression failed":"Komprimierung fehlgeschlagen","Decompression done":"Dekomprimierung abgeschlossen","Decompression failed":"Dekomprimierung fehlgeschlagen","(this may take longer)":"(dies kann l\xE4nger dauern)","Save in the current directory":"Im aktuellen Verzeichnis speichern","This name is already used":"Dieser Name wird bereits verwendet",Information:kn,Informations:Sn,Infos:yn,Size:vn,Modified:zn,modified:An,Tasks:Dn,"Download from URL":"Von URL herunterladen","Upload files":"Dateien hochladen","Upload folders":"Ordner hochladen","Folder name":"Ordnername","New folder":"Neuer Ordner","Document name":"Dokumentname","New document":"Neues Dokument","File name":"Dateiname","File permissions":"Dateiberechtigungen",Text:Gn,"Rich Text Format":"Rich Text Format","Forbidden characters":"Unzul\xE4ssige Zeichen",Elements:Tn,"Malformed URL":"Fehlerhafte URL",New:Bn,Folder:Pn,folder:En,file:Fn,files:Mn,directory:Nn,directories:Cn,Total:xn,no_selection:Ln,one_selection:_n,nb_selections:In,"Archive name":"Archivname","Drag and drop your files here":"Dateien hierher ziehen","The destination already exists":"Das Ziel existiert bereits","This item is already selected":"Dieses Element ist bereits ausgew\xE4hlt","Parent item is already selected":"\xDCbergeordnetes Element ist bereits ausgew\xE4hlt","This file contains binary data that can not be read":"Diese Datei enth\xE4lt Bin\xE4rdaten, die nicht gelesen werden k\xF6nnen","Navigation Tree":"Navigationsstruktur",item:Un,items:Vn,create:Kn,write:Zn,move:Rn,delete:On,modify:Wn,"Delete user":"Benutzer l\xF6schen","Delete all user files":"Alle Dateien des Benutzers l\xF6schen",share:Yn,"Share name":"Name der Freigabe","New share":"Neue Freigabe","New share link":"Neuer Freigabelink","New link":"Neuer Link","Edit children shares":"Untergeordnete Freigaben bearbeiten",Link:qn,link:Hn,Links:jn,links:Qn,"Link copied":"Link kopiert","Link created":"Link erstellt","Link deleted":"Link gel\xF6scht","Link error":"Linkfehler","Copy link":"Link kopieren","Edit link":"Link bearbeiten","Guest Link":"Gast-Link","Guest name":"Name des Gasts","Guest email":"E\u2011Mail des Gasts","Guest language":"Sprache des Gasts",Guest:Jn,Guests:Xn,guest:$n,guests:ei,"New guest":"Neuer Gast","Edit guest":"Gast bearbeiten","Guest created":"Gast erstellt","Guest deleted":"Gast gel\xF6scht","Guest updated":"Gast aktualisiert","Guest error":"Gastfehler","Add an external location":"Externen Speicherort hinzuf\xFCgen","External location":"Externer Speicherort","Select a file":"Datei ausw\xE4hlen","The link is expired":"Der Link ist abgelaufen","The link is disabled":"Der Link ist deaktiviert","The link was not found":"Der Link wurde nicht gefunden",Expired:ni,expired:ii,none:ri,"The maximum number of access allowed to the link is exceeded":"Die maximale Anzahl von Zugriffen auf den Link ist \xFCberschritten","Set a password":"Passwort festlegen","Enter your password":"Geben Sie Ihr Passwort ein",Permissions:ti,"No permissions":"Keine Berechtigungen",Owner:si,Me:ai,Shared:oi,Created:li,"Created & Modified":"Erstellt & Ge\xE4ndert","Creation date":"Erstellungsdatum","Modification date":"\xC4nderungsdatum","Deactivation date":"Deaktivierungsdatum",Date:hi,Path:di,active:ci,Active:ui,suspended:gi,"Unable to rename user space":"Benutzerbereich kann nicht umbenannt werden","Unable to delete user space":"Benutzerbereich kann nicht gel\xF6scht werden","Unable to update user":"Benutzer kann nicht aktualisiert werden","Unable to update user groups":"Benutzergruppen k\xF6nnen nicht aktualisiert werden","User created":"Benutzer erstellt","User updated":"Benutzer aktualisiert","User not found":"Benutzer nicht gefunden","Edit user":"Benutzer bearbeiten","Impersonate identity":"Identit\xE4t \xFCbernehmen",Type:pi,Description:mi,Visibility:bi,"Unknown error !":"Unbekannter Fehler!",Unknown:fi,Expiration:wi,"Limit access":"Zugriff begrenzen","Current access count":"Aktuelle Anzahl der Zugriffe",Access:ki,Accessed:Si,"Last access":"Letzter Zugriff","Last accesses":"Letzte Zugriffe",Comment:yi,Comments:vi,comments:zi,commented:Ai,"No recent comments":"Keine aktuellen Kommentare","Write a comment ...":"Einen Kommentar schreiben ...",yes:Di,no:Gi,Client:Ti,Clients:Bi,available:Pi,busy:Ei,absent:Fi,offline:Mi,View:Ni,"Session has expired":"Sitzung ist abgelaufen","Please sign in":"Bitte melden Sie sich an",logout:Ci,days:xi,day:Li,Delete:_i,Scheduler:Ii,async:Ui,seq:Vi,Transfers:Ki,Simulate:Zi,Reset:Ri,Browse:Oi,Action:Wi,Added:Yi,Removed:qi,Copied:Hi,Moved:ji,Filtered:Qi,Error:Ji,Server:Xi,Direction:$i,Conflict:er,"Show filtered files":"Gefilterte Dateien anzeigen",recent:nr,Source:ir,Destination:rr,Mode:tr,Sequentially:sr,Asynchronously:ar,fast:or,secure:lr,enabled:hr,Enable:dr,disabled:cr,Disable:ur,scheduler_unit_hour:gr,scheduler_unit_minute:pr,scheduler_unit_day:mr,"You must have permission to modify the server folder to choose a different sync mode":"Sie m\xFCssen die Berechtigung haben, den Serverordner zu \xE4ndern, um einen anderen Synchronisierungsmodus zu w\xE4hlen","upload only":"nur hochladen","download only":"nur herunterladen",both:br,never:fr,"Clear events":"Ereignisse l\xF6schen","Events from":"Ereignisse von","All syncs":"Alle Synchronisierungen","All events":"Alle Ereignisse","will be cleared":"werden gel\xF6scht","No differences":"Keine Unterschiede","Select a folder":"Ordner ausw\xE4hlen","The files containing":"Die Dateien, die enthalten","The files starting":"Die Dateien, die beginnen mit","The files ending":"Die Dateien, die enden mit","Expert (Regexp)":"Experte (Regexp)","click on the browse button":"klicken Sie auf die Schaltfl\xE4che Durchsuchen","with a name or pattern":"mit einem Namen oder Muster","with the extension ('.mp3', '.avi', '.mov' ...)":"mit der Erweiterung ('.mp3', '.avi', '.mov' ...)",Wizard:wr,Next:kr,Previous:Sr,Done:yr,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Dieser Assistent hilft Ihnen, ein Verzeichnis auf Ihrem Computer mit einem Sync\u2011in-Verzeichnis zu synchronisieren.","To begin, select a folder on your computer.":"W\xE4hlen Sie zun\xE4chst einen Ordner auf Ihrem Computer aus.",'You can drag the folder into the area below or click on the "Select" button.':'Sie k\xF6nnen den Ordner in den unteren Bereich ziehen oder auf die Schaltfl\xE4che "Ausw\xE4hlen" klicken.',"Drop folder here":"Ordner hier ablegen","This directory is already synced":"Dieses Verzeichnis wird bereits synchronisiert","The parent directory is already synced":"Das \xFCbergeordnete Verzeichnis wird bereits synchronisiert","This folder already exists":"Dieser Ordner existiert bereits","This file already exists":"Diese Datei existiert bereits","This directory is not accessible":"Dieses Verzeichnis ist nicht zug\xE4nglich","This directory is read-only, you will not be able to modify it":"Dieses Verzeichnis ist schreibgesch\xFCtzt; Sie k\xF6nnen es nicht \xE4ndern","Please select the server directory to sync, if it doesn't exist you can create it.":"Bitte w\xE4hlen Sie das Serververzeichnis zur Synchronisierung aus; falls es nicht existiert, k\xF6nnen Sie es erstellen.","Double click to browse directories":"Doppelklicken, um Verzeichnisse zu durchsuchen","The data will be synchronized from":"Die Daten werden synchronisiert von","the client folder":"dem Client-Ordner","the server folder":"dem Server-Ordner","(One-Way)":"(einseitig)","(Two-Way)":"(zweiseitig)",to:vr,"and from":"und von","All files created or modified in":"Alle Dateien, die erstellt oder ge\xE4ndert wurden in","will be ignored and deleted":"werden ignoriert und gel\xF6scht","In case of conflict,":"Im Konfliktfall,","the most recent files will be kept":"werden die neuesten Dateien beibehalten","the client\u2019s files take precedence":"haben die Dateien des Clients Vorrang","the server\u2019s files take precedence":"haben die Dateien des Servers Vorrang","the files in":"die Dateien in","will be preferred":"werden bevorzugt","Loading...":"Laden ...","No results":"Keine Ergebnisse","Download ARM64 version":"ARM64-Version herunterladen","Download Apple Silicon ARM64 version":"Apple\u2011Silicon\u2011ARM64\u2011Version herunterladen","Download tar.gz version":"tar.gz\u2011Version herunterladen",Repository:zr,public:Ar,local:Dr,remote:Gr,"System requirements":"Systemanforderungen","Feature not enabled":"Funktion nicht aktiviert","Check the settings":"\xDCberpr\xFCfen Sie die Einstellungen",Website:Tr,Documentation:Br,Versions:Pr,Security:Er,"Recovery code":"Wiederherstellungscode","Use a recovery code":"Wiederherstellungscode verwenden","Authentication code":"Authentifizierungscode","Secret copied":"Geheimer Schl\xFCssel kopiert","Recovery codes copied":"Wiederherstellungscodes kopiert","Invalid code":"Ung\xFCltiger Code","Incorrect code or password":"Falscher Code oder falsches Passwort","Application Passwords":"Anwendungskennw\xF6rter","Generate a new app password":"Neues App\u2011Passwort generieren","Generated password":"Generiertes Passwort","This password will only be shown once after it is generated":"Dieses Passwort wird nur einmal nach der Generierung angezeigt","Password name":"Passwortname",Manage:Fr,"Manage app passwords":"App\u2011Passw\xF6rter verwalten","Password Authentication":"Passwortauthentifizierung","Two-Factor Authentication":"Zwei-Faktor-Authentifizierung","Two-Factor Authentication is enabled":"Zwei-Faktor-Authentifizierung ist aktiviert","Two-Factor Authentication is disabled":"Zwei-Faktor-Authentifizierung ist deaktiviert","Scan this QR code using your authenticator app.":"Scannen Sie diesen QR\u2011Code mit Ihrer Authentifizierungs-App.","(Such as FreeOTP, Proton Authenticator etc.)":"(z. B. FreeOTP, Proton Authenticator usw.)","Or enter this secret manually":"Oder geben Sie diesen geheimen Schl\xFCssel manuell ein","Valid with your TOTP code":"Mit Ihrem TOTP\u2011Code best\xE4tigen","The secret has expired":"Der geheime Schl\xFCssel ist abgelaufen","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Bewahren Sie diese Codes an einem sicheren Ort auf. Sie erm\xF6glichen Ihnen den Zugriff auf Ihr Konto, falls Sie den Zugriff auf Ihre Zwei\u2011Faktor\u2011Authentifizierung verlieren.","These recovery codes are for one-time use only and will only be displayed here once.":"Diese Wiederherstellungscodes sind nur einmal verwendbar und werden hier nur einmal angezeigt."};export{ki as Access,Si as Accessed,H as Account,Wi as Action,ui as Active,V as Add,Yi as Added,Z as Administration,K as Administrator,We as Anchored,A as Application,me as Applications,ar as Asynchronously,i as Authentication,fe as Avatar,Oi as Browse,a as Cancel,Ti as Client,Bi as Clients,nn as Clipboard,o as Close,yi as Comment,vi as Comments,fn as Compress,pe as Configuration,s as Confirm,er as Conflict,ee as Connection,ne as Connections,Hi as Copied,Je as Copy,li as Created,hi as Date,wn as Decompress,_i as Delete,mi as Description,rr as Destination,$i as Direction,ur as Disable,an as Display,Br as Documentation,yr as Done,je as Download,$e as Edit,Tn as Elements,j as Email,tn as Empty,dr as Enable,Ji as Error,B as Event,wi as Expiration,ni as Expired,M as External,P as File,E as Files,l as Filter,Qi as Filtered,h as Filters,Pn as Folder,ue as Generate,C as Group,N as Groups,Jn as Guest,Xn as Guests,Se as Home,X as IP,ge as Import,kn as Information,Sn as Informations,yn as Infos,U as Isolated,ke as Language,qn as Link,jn as Links,sn as List,Oe as Location,r as Login,Fr as Manage,he as Manager,ce as Managers,ai as Me,oe as Member,le as Members,tr as Mode,zn as Modified,Qe as Move,ji as Moved,He as Name,Bn as New,kr as Next,G as Notification,T as Notifications,qe as Options,si as Owner,t as Password,di as Path,ti as Permissions,F as Personal,Sr as Previous,I as Private,ye as Recents,rn as Refresh,en as Remove,qi as Removed,Xe as Rename,zr as Repository,Ri as Reset,J as Role,Ii as Scheduler,c as Search,Er as Security,u as See,$ as Seen,sr as Sequentially,Xi as Server,Ye as Settings,De as Share,oi as Shared,Ae as Shares,Zi as Simulate,vn as Size,ir as Source,Ue as Space,Ve as Spaces,Q as Status,mn as Sync,bn as Synced,un as Synchronization,gn as Synchronizations,pn as Synchronize,Dn as Tasks,Gn as Text,xn as Total,Ki as Transfers,ze as Trash,pi as Type,fi as Unknown,te as Unlimited,we as Update,R as User,W as Users,Pr as Versions,Ni as View,bi as Visibility,_ as Visible,Tr as Website,wr as Wizard,Fi as absent,q as account,ci as active,Ze as anchored,D as application,be as applications,Ui as async,Pi as available,ie as available_space_is_low,br as both,Ei as busy,Ai as commented,zi as comments,Kn as create,Li as day,xi as days,Mr as default,On as delete,dn as delete_multiple_files,ln as delete_one_file,xe as desktop_app_access,Le as desktop_app_sync,Cn as directories,Nn as directory,cr as disabled,hr as enabled,ii as expired,or as fast,Fn as file,Mn as files,En as folder,x as group,L as groups,$n as guest,ei as guests,Ne as guests_admin,Un as item,Vn as items,Hn as link,Qn as links,Dr as local,Ci as logout,de as manager,se as member,ae as members,An as modified,Wn as modify,Rn as move,k as nb_actions,f as nb_active_tasks,w as nb_elements,y as nb_messages,z as nb_notifications,In as nb_selections,m as nb_tasks,fr as never,Gi as no,Ln as no_selection,g as no_task,ri as none,Mi as offline,b as one_active_task,S as one_message,v as one_notification,_n as one_selection,p as one_task,re as online,Ce as personal_groups_admin,Be as personal_space,Ar as public,nr as recent,ve as recents,Gr as remote,mr as scheduler_unit_day,gr as scheduler_unit_hour,pr as scheduler_unit_minute,d as search,lr as secure,Vi as seq,Yn as share,Te as shared,Ge as shares,Fe as shares_access,Me as shares_admin,Ke as spaces,Pe as spaces_access,Ee as spaces_admin,gi as suspended,cn as synchronization,vr as to,hn as trash_multiple_files,on as trash_one_file,Re as unanchored,O as user,Y as users,Ie as webdav,_e as webdav_access,Zn as write,Di as yes};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import"./chunk-N3U6637P.js";var a="Autentica\xE7\xE3o",r="Usu\xE1rio",i="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Filtrar",c="Filtros",l="pesquisar",u="Pesquisar",m="Ver",p="Nenhuma tarefa",h="{{ nb }} tarefa conclu\xEDda",v="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",f="{{ nba }} tarefas em andamento de {{ nb }}",b="{{nb}} elemento(s)",y="{{nb}} a\xE7\xE3o(\xF5es)",w="{{ nb }} nova mensagem",x="{{ nb }} novas mensagens",A="{{ nb }} notifica\xE7\xE3o n\xE3o lida",S="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",C="Aplicativo",E="aplicativo",z="Notifica\xE7\xE3o",T="Notifica\xE7\xF5es",N="Evento",q="Arquivo",k="Arquivos",D="Pessoais",P="Externo",_="Grupos",U="Grupo",O="grupo",L="grupos",M="Vis\xEDvel",F="Privado",G="Isolado",V="Adicionar",R="Administrador",j="Administra\xE7\xE3o",I="Usu\xE1rio",Y="usu\xE1rio",W="Usu\xE1rios",B="usu\xE1rios",Q="conta",H="Conta",K="E-mail",J="Status",X="Fun\xE7\xE3o",Z="IP",$="Visto",ee="Conex\xE3o",oe="Conex\xF5es",ae="Espa\xE7o dispon\xEDvel baixo ( {{ nb }}% )",re="online",ie="Ilimitado",se="membro",ne="membros",te="Membro",de="Membros",ce="Gerente",le="gerente",ue="Gerentes",me="Gerar",pe="Importar",he="Configura\xE7\xE3o",ve="Aplicativos",ge="aplicativos",fe="Avatar",be="Atualizar",ye="Idioma",we="In\xEDcio",xe="Recentes",Ae="recentes",Se="Lixeira",Ce="Compartilhamentos",Ee="Compartilhar",ze="compartilhamentos",Te="compartilhado",Ne="Acesso ao espa\xE7o pessoal",qe="Acesso aos espa\xE7os",ke="Administra\xE7\xE3o de espa\xE7os",De="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",_e="Administra\xE7\xE3o de convidados",Ue="Administra\xE7\xE3o de grupos pessoais",Oe="Acesso pelo aplicativo de desktop",Le="Sincroniza\xE7\xE3o pelo aplicativo de desktop",Me="Acesso WebDAV",Fe="WebDAV",Ge="Espa\xE7o",Ve="Espa\xE7os",Re="espa\xE7os",je="ancorou",Ie="desancorou",Ye="Localiza\xE7\xE3o",We="Ancorado",Be="Configura\xE7\xF5es",Qe="Op\xE7\xF5es",He="Nome",Ke="Baixar",Je="Mover",Xe="Copiar",Ze="Renomear",$e="Editar",eo="Remover",oo="\xC1rea de transfer\xEAncia",ao="Atualizar",ro="Esvaziar",io="Lista",so="Exibi\xE7\xE3o",no="Deseja mover <b>{{arg}}</b> para a lixeira?",to="Deseja excluir <b>{{arg}}</b> permanentemente?",co="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",lo="Deseja excluir estes <b>{{arg}} arquivos</b> permanentemente?",uo="sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xE3o",po="Sincroniza\xE7\xF5es",ho="Sincronizar",vo="Sync",go="Sincronizado",fo="Comprimir",bo="Descomprimir",yo="Informa\xE7\xE3o",wo="Informa\xE7\xF5es",xo="Informa\xE7\xF5es",Ao="Tamanho",So="Modificado",Co="modificado",Eo="Tarefas",zo="Texto",To="Elementos",No="Novo",qo="Pasta",ko="pasta",Do="arquivo",Po="arquivos",_o="diret\xF3rio",Uo="diret\xF3rios",Oo="Total",Lo="nenhum item selecionado",Mo="{{ nb }} item selecionado",Fo="{{ nb }} itens selecionados",Go="item",Vo="itens",Ro="criar",jo="escrever",Io="mover",Yo="excluir",Wo="modificar",Bo="compartilhamento",Qo="Link",Ho="link",Ko="Links",Jo="links",Xo="Convidado",Zo="Convidados",$o="convidado",ea="convidados",oa="Expirado",aa="expirado",ra="nenhum",ia="Permiss\xF5es",sa="Propriet\xE1rio",na="Eu",ta="Compartilhado",da="Criado",ca="Data",la="Caminho",ua="ativo",ma="Ativo",pa="suspenso",ha="Tipo",va="Descri\xE7\xE3o",ga="Visibilidade",fa="Desconhecido",ba="Expira\xE7\xE3o",ya="Acesso",wa="Acessado",xa="Comentar",Aa="Coment\xE1rios",Sa="coment\xE1rios",Ca="comentou",Ea="sim",za="n\xE3o",Ta="Cliente",Na="Clientes",qa="dispon\xEDvel",ka="ocupado",Da="ausente",Pa="desconectado",_a="Ver",Ua="sair",Oa="dias",La="dia",Ma="Excluir",Fa="Agendador",Ga="paralelo",Va="sequencial",Ra="Transfer\xEAncias",ja="Simular",Ia="Redefinir",Ya="Navegar",Wa="A\xE7\xE3o",Ba="Adicionado",Qa="Removido",Ha="Copiado",Ka="Movido",Ja="Filtrado",Xa="Erro",Za="Servidor",$a="Dire\xE7\xE3o",er="Conflito",or="recente",ar="Origem",rr="Destino",ir="Modo",sr="Sequencialmente",nr="Ass\xEDncronamente",tr="r\xE1pido",dr="seguro",cr="ativado",lr="Ativar",ur="desativado",mr="Desativar",pr="horas",hr="minutos",vr="dias",gr="ambos",fr="nunca",br="Assistente",yr="Pr\xF3ximo",wr="Anterior",xr="Conclu\xEDdo",Ar="para",Sr="Reposit\xF3rio",Cr="p\xFAblico",Er="local",zr="remoto",Tr="Site",Nr="Documenta\xE7\xE3o",qr="Vers\xF5es",kr="Seguran\xE7a",Dr="Gerenciar",Pr={"Sign-in to your account":"Fa\xE7a login na sua conta","Wrong login or password":"Usu\xE1rio ou senha incorretos","Authentication service error":"Erro do servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o autorizada","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:r,Password:i,"Login or Email":"Usu\xE1rio ou e-mail","Login already used":"Usu\xE1rio j\xE1 utilizado","You are already logged in":"Voc\xEA j\xE1 est\xE1 conectado","Name already used":"Nome j\xE1 utilizado","Token has expired":"O token expirou",Confirm:s,Cancel:n,Close:t,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:d,Filters:c,search:l,Search:u,"Search for content":"Pesquisar conte\xFAdo","Search for files":"Pesquisar arquivos","Full-text search":"Pesquisa de texto completo","Full-text search is disabled":"A pesquisa de texto completo est\xE1 desativada","Type to search for users or groups to add":"Digite para procurar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para procurar grupos para adicionar","Type to search for users to add":"Digite para procurar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para procurar gerentes para adicionar","Member since":"Membro desde","Windows Manager":"Gerenciador de janelas","Mark as read":"Marcar como lido",See:m,no_task:p,one_task:h,nb_tasks:v,one_active_task:g,nb_active_tasks:f,nb_elements:b,nb_actions:y,one_message:w,nb_messages:x,one_notification:A,nb_notifications:S,Application:C,application:E,"application and email":"aplicativo e e-mail",Notification:z,Notifications:T,Event:N,File:q,Files:k,"Personal files":"Arquivos pessoais","for personal files":"para os arquivos pessoais",Personal:D,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:_,Group:U,group:O,"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:L,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro do grupo","Set as group manager":"Definir como gerente do grupo","As a manager, the user will be able to manage the group and its members.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar o grupo e seus membros.","As a manager, the user will be able to manage group members but not group properties.":`Como gerente, o usu\xE1rio poder\xE1 gerenciar os membros do grupo, mas n\xE3o as propriedades do grupo.
|
|
2
|
+
`,Visible:M,Private:F,Isolated:G,"Select the parent group":"Selecionar o grupo pai","from the group":"do grupo","New group":"Novo grupo","Edit group":"Editar grupo","Leave group":"Sair do grupo","Delete group":"Excluir grupo","Remove from group":"Remover do grupo","Group must have at least one manager":"O grupo deve ter pelo menos um gerente","The group was left":"O grupo foi abandonado","The group was not left":"O grupo n\xE3o foi abandonado","will be left, you will no longer be a member of this group":"ser\xE1 abandonado, voc\xEA n\xE3o ser\xE1 mais membro deste grupo","All users can see this group.":"Todos os usu\xE1rios podem ver este grupo.","Users who are not members of this group cannot see it.":"Os usu\xE1rios que n\xE3o s\xE3o membros deste grupo n\xE3o podem v\xEA-lo.","The group is not visible, its members cannot see it and cannot see each other.":"O grupo n\xE3o \xE9 vis\xEDvel, seus membros n\xE3o podem v\xEA-lo nem ver uns aos outros.",Add:V,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:R,Administration:j,User:I,user:Y,Users:W,users:B,"New user":"Novo usu\xE1rio",account:Q,Account:H,"Account status":"Status da conta",Email:K,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:J,Role:X,IP:Z,"IP Addresses":"Endere\xE7os IP",Seen:$,Connection:ee,Connections:oe,"Confirm deletion":"Confirmar exclus\xE3o","Confirm permanent deletion of data":"Confirmar a exclus\xE3o permanente dos dados","Space and data will be deleted in":"O espa\xE7o e os dados ser\xE3o exclu\xEDdos em","Space is disabled":"O espa\xE7o est\xE1 desativado","Storage Space":"Espa\xE7o de armazenamento","Storage Quota":"Cota de armazenamento","Storage Usage":"Uso do armazenamento","Space status":"Estado do espa\xE7o","Storage quota exceeded":"A cota de armazenamento foi excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem mais espa\xE7o dispon\xEDvel",available_space_is_low:ae,online:re,"Online users":"Usu\xE1rios online",Unlimited:ie,member:se,members:ne,Member:te,Members:de,Manager:ce,manager:le,Managers:ue,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:me,Import:pe,Configuration:he,Applications:ve,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Somente o grupo ser\xE1 exclu\xEDdo, os membros n\xE3o far\xE3o mais parte dele.",Avatar:fe,Update:be,"current password":"senha atual","new password":"nova senha","Change me !":"Mude-me!","Current password missing !":"Senha atual ausente!","New password missing !":"Nova senha ausente!","New password must have 8 characters minimum":"A nova senha deve ter no m\xEDnimo 8 caracteres","Current password does not match":"A senha atual n\xE3o confere","Password has been updated":"A senha foi atualizada","Unable to update password":"N\xE3o \xE9 poss\xEDvel atualizar a senha","Bad password":"Senha incorreta","too many login attempts":"muitas tentativas de login",Language:ye,"Language updated":"Idioma atualizado","Unable to update language":"N\xE3o \xE9 poss\xEDvel atualizar o idioma","Notification preference updated":"Prefer\xEAncia de notifica\xE7\xE3o atualizada","Full-text search preference updated":"Prefer\xEAncia de pesquisa de texto completo atualizada","Unable to update notification preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o \xE9 poss\xEDvel abrir o documento",Home:we,Recents:xe,recents:Ae,Trash:Se,"trash bins":"lixeiras",Shares:Ce,Share:Ee,shares:ze,shared:Te,personal_space:Ne,spaces_access:qe,spaces_admin:ke,shares_access:De,shares_admin:Pe,guests_admin:_e,personal_groups_admin:Ue,desktop_app_access:Oe,desktop_app_sync:Le,webdav_access:Me,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Fe,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Ge,Spaces:Ve,spaces:Re,"Space name":"Nome do espa\xE7o","New space":"Novo espa\xE7o","Create a new space":"Criar um novo espa\xE7o","Create space":"Criar espa\xE7o","Edit space":"Editar espa\xE7o","Delete space":"Excluir espa\xE7o","Create a new share":"Criar um novo compartilhamento","Type to search for space to select":"Digite para procurar o espa\xE7o a selecionar","Anchor to a space":"Ancorar a um espa\xE7o","Anchor files to a space":"Ancorar arquivos a um espa\xE7o","You have been invited to join this space":"Voc\xEA foi convidado a participar deste espa\xE7o","You have been invited to join this share":"Voc\xEA foi convidado a participar deste compartilhamento","Shared with others":"Compartilhado com outros","With others":"Com outros","Shared with me":"Compartilhado comigo","With me":"Comigo","Shared via links":"Compartilhado por links","Via links":"Por links","Shared from":"Compartilhado de","share with you this":"compartilha com voc\xEA este","shared with you":"compartilhou com voc\xEA","no longer share with you":"n\xE3o compartilha mais com voc\xEA","You now have access to the space":"Agora voc\xEA tem acesso ao espa\xE7o","You no longer have access to the space":"Voc\xEA n\xE3o tem mais acesso ao espa\xE7o","This space has been permanently deleted":"Este espa\xE7o foi exclu\xEDdo permanentemente","You now have access to the share":"Agora voc\xEA tem acesso ao compartilhamento","You no longer have access to the share":"Voc\xEA n\xE3o tem mais acesso ao compartilhamento","You are no longer a member of the parent share, your child share has been deleted":"Voc\xEA n\xE3o \xE9 mais membro do compartilhamento pai; seu compartilhamento filho foi exclu\xEDdo",anchored:je,unanchored:Ie,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:Ye,"Name and location are required":"Nome e localiza\xE7\xE3o s\xE3o obrigat\xF3rios","Parent location already exists in files":"A localiza\xE7\xE3o pai j\xE1 existe nos arquivos","Check the location":"Verificar a localiza\xE7\xE3o","Location not found":"Localiza\xE7\xE3o n\xE3o encontrada","Forbidden resource":"Localiza\xE7\xE3o n\xE3o autorizada","Resource already exists":"O item j\xE1 existe","The location does not exist":"A localiza\xE7\xE3o n\xE3o existe","The location is not readable":"A localiza\xE7\xE3o n\xE3o \xE9 leg\xEDvel","The location is not writeable":"A localiza\xE7\xE3o n\xE3o \xE9 grav\xE1vel","The location is a directory":"A localiza\xE7\xE3o \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This share is protected by a password":"Este compartilhamento est\xE1 protegido por senha","You do not have share permission":"Voc\xEA n\xE3o tem permiss\xE3o para compartilhar","You can not share a space":"Voc\xEA n\xE3o pode compartilhar um espa\xE7o","You can not remove an anchored file":"Voc\xEA n\xE3o pode remover um arquivo ancorado","You are not allowed to write here":"Voc\xEA n\xE3o est\xE1 autorizado a escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o est\xE1 autorizado a realizar esta a\xE7\xE3o","You can not move an anchored file":"Voc\xEA n\xE3o pode mover um arquivo ancorado","You can not move a locked file":"Voc\xEA n\xE3o pode mover um arquivo bloqueado",Anchored:We,"Anchored by":"Ancorado por","Manage my anchored files":"Gerenciar meus arquivos ancorados","You have no files anchored on this space":"Voc\xEA n\xE3o tem arquivos ancorados neste espa\xE7o","An anchored file already has this name":"Um arquivo ancorado j\xE1 tem este nome",Settings:Be,Options:Qe,Name:He,Download:Ke,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy/Move":"Copiar/Mover",Move:Je,"Move done":"Movimenta\xE7\xE3o conclu\xEDda","Move failed":"Falha na movimenta\xE7\xE3o","Deletion done":"Exclus\xE3o conclu\xEDda","Deletion failed":"Falha na exclus\xE3o","Creation failed":"Falha na cria\xE7\xE3o",Copy:Xe,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:Ze,Edit:$e,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:eo,Clipboard:oo,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:ao,Empty:ro,List:io,Display:so,"Sort by":"Ordenar por",trash_one_file:no,delete_one_file:to,trash_multiple_files:co,delete_multiple_files:lo,"Moving to trash":"Movendo para a lixeira","Permanent deletion":"Exclus\xE3o permanente","Would you like to empty the trash ?":"Deseja esvaziar a lixeira?","All items will be permanently deleted":"Todos os itens ser\xE3o exclu\xEDdos permanentemente","Actions will be performed in the current folder":"As a\xE7\xF5es ser\xE3o realizadas na pasta atual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"O cliente n\xE3o ter\xE1 mais permiss\xE3o para acessar sua conta e n\xE3o poder\xE1 mais sincronizar.","The access expires":"O acesso expira","The access has expired":"O acesso expirou","Never expires":"Nunca expira",synchronization:uo,Synchronization:mo,Synchronizations:po,Synchronize:ho,Sync:vo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"Sincroniza\xE7\xE3o redefinida","Sync deleted":"Sincroniza\xE7\xE3o exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:fo,Decompress:bo,"Compress and Download":"Comprimir e baixar","Compress and Save":"Comprimir e salvar","Enable compression":"Ativar compress\xE3o","Compression done":"Compress\xE3o conclu\xEDda","Compression failed":"Falha na compress\xE3o","Decompression done":"Descompress\xE3o conclu\xEDda","Decompression failed":"Falha na descompress\xE3o","(this may take longer)":"(isso pode demorar mais)","Save in the current directory":"Salvar no diret\xF3rio atual","This name is already used":"Este nome j\xE1 est\xE1 em uso",Information:yo,Informations:wo,Infos:xo,Size:Ao,Modified:So,modified:Co,Tasks:Eo,"Download from URL":"Baixar de uma URL","Upload files":"Enviar arquivos","Upload folders":"Enviar pastas","Folder name":"Nome da pasta","New folder":"Nova pasta","Document name":"Nome do documento","New document":"Novo documento","File name":"Nome do arquivo","File permissions":"Permiss\xF5es do arquivo",Text:zo,"Rich Text Format":"Texto enriquecido","Forbidden characters":"Caracteres proibidos",Elements:To,"Malformed URL":"URL malformada",New:No,Folder:qo,folder:ko,file:Do,files:Po,directory:_o,directories:Uo,Total:Oo,no_selection:Lo,one_selection:Mo,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:Go,items:Vo,create:Ro,write:jo,move:Io,delete:Yo,modify:Wo,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Bo,"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:Qo,link:Ho,Links:Ko,links:Jo,"Link copied":"Link copiado","Link created":"Link criado","Link deleted":"Link exclu\xEDdo","Link error":"Erro de link","Copy link":"Copiar link","Edit link":"Editar link","Guest Link":"Link de convidado","Guest name":"Nome do convidado","Guest email":"E-mail do convidado","Guest language":"Idioma do convidado",Guest:Xo,Guests:Zo,guest:$o,guests:ea,"New guest":"Novo convidado","Edit guest":"Editar convidado","Guest created":"Convidado criado","Guest deleted":"Convidado exclu\xEDdo","Guest updated":"Convidado atualizado","Guest error":"Erro do convidado","Add an external location":"Adicionar uma localiza\xE7\xE3o externa","External location":"Localiza\xE7\xE3o externa","Select a file":"Selecionar um arquivo","The link is expired":"O link expirou","The link is disabled":"O link est\xE1 desativado","The link was not found":"O link n\xE3o foi encontrado",Expired:oa,expired:aa,none:ra,"The maximum number of access allowed to the link is exceeded":"O n\xFAmero m\xE1ximo de acessos permitidos ao link foi excedido","Set a password":"Definir uma senha","Enter your password":"Digite sua senha",Permissions:ia,"No permissions":"Sem permiss\xF5es",Owner:sa,Me:na,Shared:ta,Created:da,"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:ca,Path:la,active:ua,Active:ma,suspended:pa,"Unable to rename user space":"N\xE3o \xE9 poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o \xE9 poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o \xE9 poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o \xE9 poss\xEDvel atualizar os grupos do usu\xE1rio","User created":"Usu\xE1rio criado","User updated":"Usu\xE1rio atualizado","User not found":"Usu\xE1rio n\xE3o encontrado","Edit user":"Editar usu\xE1rio","Impersonate identity":"Assumir identidade",Type:ha,Description:va,Visibility:ga,"Unknown error !":"Erro desconhecido!",Unknown:fa,Expiration:ba,"Limit access":"Limitar acessos","Current access count":"N\xFAmero atual de acessos",Access:ya,Accessed:wa,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:xa,Comments:Aa,comments:Sa,commented:Ca,"No recent comments":"Nenhum coment\xE1rio recente","Write a comment ...":"Escreva um coment\xE1rio ...",yes:Ea,no:za,Client:Ta,Clients:Na,available:qa,busy:ka,absent:Da,offline:Pa,View:_a,"Session has expired":"A sess\xE3o expirou","Please sign in":"Por favor, fa\xE7a login",logout:Ua,days:Oa,day:La,Delete:Ma,Scheduler:Fa,async:Ga,seq:Va,Transfers:Ra,Simulate:ja,Reset:Ia,Browse:Ya,Action:Wa,Added:Ba,Removed:Qa,Copied:Ha,Moved:Ka,Filtered:Ja,Error:Xa,Server:Za,Direction:$a,Conflict:er,"Show filtered files":"Mostrar arquivos filtrados",recent:or,Source:ar,Destination:rr,Mode:ir,Sequentially:sr,Asynchronously:nr,fast:tr,secure:dr,enabled:cr,Enable:lr,disabled:ur,Disable:mr,scheduler_unit_hour:pr,scheduler_unit_minute:hr,scheduler_unit_day:vr,"You must have permission to modify the server folder to choose a different sync mode":"Voc\xEA deve ter permiss\xE3o para modificar a pasta do servidor para escolher um modo de sincroniza\xE7\xE3o diferente","upload only":"enviar apenas","download only":"baixar apenas",both:gr,never:fr,"Clear events":"Limpar eventos","Events from":"Eventos de","All syncs":"Todas as sincroniza\xE7\xF5es","All events":"Todos os eventos","will be cleared":"ser\xE3o limpos","No differences":"Sem diferen\xE7as","Select a folder":"Selecionar uma pasta","The files containing":"Os arquivos contendo","The files starting":"Os arquivos come\xE7ando","The files ending":"Os arquivos terminando","Expert (Regexp)":"Especialista (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por um nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:br,Next:yr,Previous:wr,Done:xr,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente vai ajud\xE1-lo a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio do Sync-in.","To begin, select a folder on your computer.":"Para come\xE7ar, selecione uma pasta no seu computador.",'You can drag the folder into the area below or click on the "Select" button.':'Voc\xEA pode arrastar a pasta para a \xE1rea abaixo ou clicar no bot\xE3o "Selecionar".',"Drop folder here":"Solte a pasta aqui","This directory is already synced":"Este diret\xF3rio j\xE1 est\xE1 sincronizado","The parent directory is already synced":"O diret\xF3rio pai j\xE1 est\xE1 sincronizado","This folder already exists":"Esta pasta j\xE1 existe","This file already exists":"Este arquivo j\xE1 existe","This directory is not accessible":"Este diret\xF3rio n\xE3o \xE9 acess\xEDvel","This directory is read-only, you will not be able to modify it":"Este diret\xF3rio \xE9 somente leitura; voc\xEA n\xE3o poder\xE1 modific\xE1-lo","Please select the server directory to sync, if it doesn't exist you can create it.":"Selecione o diret\xF3rio do servidor para sincronizar; se n\xE3o existir, voc\xEA poder\xE1 cri\xE1-lo.","Double click to browse directories":"Clique duas vezes para navegar pelos diret\xF3rios","The data will be synchronized from":"Os dados ser\xE3o sincronizados de","the client folder":"a pasta do cliente","the server folder":"a pasta do servidor","(One-Way)":"(unidirecional)","(Two-Way)":"(bidirecional)",to:Ar,"and from":"e de","All files created or modified in":"Todos os arquivos criados ou modificados em","will be ignored and deleted":"ser\xE3o ignorados e exclu\xEDdos","In case of conflict,":"Em caso de conflito,","the most recent files will be kept":"os arquivos mais recentes ser\xE3o mantidos","the client\u2019s files take precedence":"os arquivos do cliente t\xEAm preced\xEAncia","the server\u2019s files take precedence":"os arquivos do servidor t\xEAm preced\xEAncia","the files in":"os arquivos em","will be preferred":"ser\xE3o preferidos","Loading...":"Carregando...","No results":"Sem resultados","Download ARM64 version":"Baixar a vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar a vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar a vers\xE3o tar.gz",Repository:Sr,public:Cr,local:Er,remote:zr,"System requirements":"Requisitos do sistema","Feature not enabled":"Funcionalidade n\xE3o habilitada","Check the settings":"Verifique as configura\xE7\xF5es",Website:Tr,Documentation:Nr,Versions:qr,Security:kr,"Recovery code":"C\xF3digo de recupera\xE7\xE3o","Use a recovery code":"Usar um c\xF3digo de recupera\xE7\xE3o","Authentication code":"C\xF3digo de autentica\xE7\xE3o","Secret copied":"Segredo copiado","Recovery codes copied":"C\xF3digos de recupera\xE7\xE3o copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo ou senha incorretos","Application Passwords":"Senhas de aplicativo","Generate a new app password":"Gerar uma nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 mostrada apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:Dr,"Manage app passwords":"Gerenciar senhas de aplicativo","Password Authentication":"Autentica\xE7\xE3o por senha","Two-Factor Authentication":"Autentica\xE7\xE3o de dois fatores","Two-Factor Authentication is enabled":"A autentica\xE7\xE3o de dois fatores est\xE1 ativada","Two-Factor Authentication is disabled":"A autentica\xE7\xE3o de dois fatores est\xE1 desativada","Scan this QR code using your authenticator app.":"Escaneie este c\xF3digo QR com seu aplicativo de autentica\xE7\xE3o.","(Such as FreeOTP, Proton Authenticator etc.)":"(Como FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Valide com seu c\xF3digo TOTP","The secret has expired":"O segredo expirou","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estes c\xF3digos em um local seguro. Eles permitir\xE3o que voc\xEA acesse sua conta se perder o acesso \xE0 sua autentica\xE7\xE3o de dois fatores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estes c\xF3digos de recupera\xE7\xE3o s\xE3o de uso \xFAnico e ser\xE3o exibidos aqui apenas uma vez."};export{ya as Access,wa as Accessed,H as Account,Wa as Action,ma as Active,V as Add,Ba as Added,j as Administration,R as Administrator,We as Anchored,C as Application,ve as Applications,nr as Asynchronously,a as Authentication,fe as Avatar,Ya as Browse,n as Cancel,Ta as Client,Na as Clients,oo as Clipboard,t as Close,xa as Comment,Aa as Comments,fo as Compress,he as Configuration,s as Confirm,er as Conflict,ee as Connection,oe as Connections,Ha as Copied,Xe as Copy,da as Created,ca as Date,bo as Decompress,Ma as Delete,va as Description,rr as Destination,$a as Direction,mr as Disable,so as Display,Nr as Documentation,xr as Done,Ke as Download,$e as Edit,To as Elements,K as Email,ro as Empty,lr as Enable,Xa as Error,N as Event,ba as Expiration,oa as Expired,P as External,q as File,k as Files,d as Filter,Ja as Filtered,c as Filters,qo as Folder,me as Generate,U as Group,_ as Groups,Xo as Guest,Zo as Guests,we as Home,Z as IP,pe as Import,yo as Information,wo as Informations,xo as Infos,G as Isolated,ye as Language,Qo as Link,Ko as Links,io as List,Ye as Location,r as Login,Dr as Manage,ce as Manager,ue as Managers,na as Me,te as Member,de as Members,ir as Mode,So as Modified,Je as Move,Ka as Moved,He as Name,No as New,yr as Next,z as Notification,T as Notifications,Qe as Options,sa as Owner,i as Password,la as Path,ia as Permissions,D as Personal,wr as Previous,F as Private,xe as Recents,ao as Refresh,eo as Remove,Qa as Removed,Ze as Rename,Sr as Repository,Ia as Reset,X as Role,Fa as Scheduler,u as Search,kr as Security,m as See,$ as Seen,sr as Sequentially,Za as Server,Be as Settings,Ee as Share,ta as Shared,Ce as Shares,ja as Simulate,Ao as Size,ar as Source,Ge as Space,Ve as Spaces,J as Status,vo as Sync,go as Synced,mo as Synchronization,po as Synchronizations,ho as Synchronize,Eo as Tasks,zo as Text,Oo as Total,Ra as Transfers,Se as Trash,ha as Type,fa as Unknown,ie as Unlimited,be as Update,I as User,W as Users,qr as Versions,_a as View,ga as Visibility,M as Visible,Tr as Website,br as Wizard,Da as absent,Q as account,ua as active,je as anchored,E as application,ge as applications,Ga as async,qa as available,ae as available_space_is_low,gr as both,ka as busy,Ca as commented,Sa as comments,Ro as create,La as day,Oa as days,Pr as default,Yo as delete,lo as delete_multiple_files,to as delete_one_file,Oe as desktop_app_access,Le as desktop_app_sync,Uo as directories,_o as directory,ur as disabled,cr as enabled,aa as expired,tr as fast,Do as file,Po as files,ko as folder,O as group,L as groups,$o as guest,ea as guests,_e as guests_admin,Go as item,Vo as items,Ho as link,Jo as links,Er as local,Ua as logout,le as manager,se as member,ne as members,Co as modified,Wo as modify,Io as move,y as nb_actions,f as nb_active_tasks,b as nb_elements,x as nb_messages,S as nb_notifications,Fo as nb_selections,v as nb_tasks,fr as never,za as no,Lo as no_selection,p as no_task,ra as none,Pa as offline,g as one_active_task,w as one_message,A as one_notification,Mo as one_selection,h as one_task,re as online,Ue as personal_groups_admin,Ne as personal_space,Cr as public,or as recent,Ae as recents,zr as remote,vr as scheduler_unit_day,pr as scheduler_unit_hour,hr as scheduler_unit_minute,l as search,dr as secure,Va as seq,Bo as share,Te as shared,ze as shares,De as shares_access,Pe as shares_admin,Re as spaces,qe as spaces_access,ke as spaces_admin,pa as suspended,uo as synchronization,Ar as to,co as trash_multiple_files,no as trash_one_file,Ie as unanchored,Y as user,B as users,Fe as webdav,Me as webdav_access,jo as write,Ea as yes};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a as P,b as R,c as X,d as $}from"./chunk-
|
|
1
|
+
import{a as P,b as R,c as X,d as $}from"./chunk-HAS5ZOTR.js";import{Za as K,yb as O}from"./chunk-GUGNR5TF.js";import{$a as M,Ab as x,Db as h,Dd as z,Fb as l,Ic as k,Le as B,Na as r,Pa as g,Qb as m,Re as F,Sb as y,Ue as E,Uf as L,Ye as d,Zf as I,dg as N,eb as T,ec as S,gc as V,ia as C,kb as b,lb as D,na as w,oa as f,ob as _,pb as v,qb as p,rb as a,sb as s,tb as u}from"./chunk-C36MW4ME.js";var A=(t,i)=>i.key;function U(t,i){if(t&1){let e=x();a(0,"li",6)(1,"a",8),h("click",function(){let o=w(e).$implicit,c=l(2);return f(c.setView(o.key))}),a(2,"span"),u(3,"fa-icon",2),m(4),s()()()}if(t&2){let e=i.$implicit;r(3),p("icon",e.value.icon),r(),y(" ",e.value.text)}}function j(t,i){if(t&1&&u(0,"fa-icon",10),t&2){let e=l(3);p("icon",e.sortParams.asc?e.icons.faArrowDown:e.icons.faArrowUp)}}function q(t,i){if(t&1){let e=x();a(0,"li",6)(1,"a",8),h("click",function(){let o=w(e).$implicit,c=l(2);return f(c.sortBy.emit(o.key))}),a(2,"span",9),m(3),b(4,j,1,1,"fa-icon",10),s()()()}if(t&2){let e=i.$implicit,n=l(2);r(3),y(" ",e.value," "),r(),D(n.sortParams.column===e.key?4:-1)}}function G(t,i){if(t&1&&(a(0,"ul",4)(1,"li",5),m(2,"Display"),s(),_(3,U,5,2,"li",6,A),S(5,"keyvalue"),a(6,"li",7),m(7,"Sort by"),s(),_(8,q,5,2,"li",6,A),S(10,"keyvalue"),s()),t&2){let e=l();r(3),v(V(5,0,e.viewsMode,e.originalOrderKeyValue)),r(5),v(V(10,3,e.sortFields,e.originalOrderKeyValue))}}var le=(()=>{let i=class i{constructor(){this.switchView=new g,this.sortBy=new g,this.originalOrderKeyValue=K,this.icons={faCog:F,faArrowDown:L,faArrowUp:E},this.viewsMode={tl:{enabled:!1,text:"List",icon:B},th:{enabled:!0,text:"S",icon:d,dimensions:96,image:56,imageRes:128,faSize:30,textSize:10,margins:18},thM:{enabled:!0,text:"M",icon:d,dimensions:112,image:72,imageRes:192,faSize:34,textSize:11,margins:18},thL:{enabled:!0,text:"L",icon:d,dimensions:152,image:112,imageRes:256,faSize:50,textSize:12,margins:18},thXl:{enabled:!0,text:"XL",icon:d,dimensions:192,image:152,imageRes:512,faSize:65,textSize:13,margins:18},thXxl:{enabled:!0,text:"XXL",icon:I,dimensions:232,image:192,imageRes:1024,faSize:80,textSize:13,margins:18}},this.layout=C(O),this.viewsMode.tl.text=this.layout.translateString(this.viewsMode.tl.text)}get viewMode(){return localStorage.getItem("viewMode")||"tl"}set viewMode(n){localStorage.setItem("viewMode",n)}currentView(){return this.viewsMode[this.viewMode]}setView(n){this.viewMode=n,this.switchView.emit(this.viewsMode[n])}};i.\u0275fac=function(o){return new(o||i)},i.\u0275cmp=M({type:i,selectors:[["app-navigation-view"]],inputs:{sortParams:"sortParams",sortFields:"sortFields"},outputs:{switchView:"switchView",sortBy:"sortBy"},decls:4,vars:1,consts:[["dropdown","",1,"btn-group","btn-group-sm"],["dropdownToggle","","type","button",1,"btn","btn-sm","btn-secondary","dropdown-toggle"],[3,"icon"],["class","dropdown-menu dropdown-menu-right","role","menu",4,"dropdownMenu"],["role","menu",1,"dropdown-menu","dropdown-menu-right"],["l10nTranslate","",1,"dropdown-header","fw-bold"],["role","menuitem"],["l10nTranslate","",1,"dropdown-header","fw-bold","mt-1"],[1,"dropdown-item",3,"click"],["l10nTranslate","",1,"me-2"],["size","xs",1,"ms-1",3,"icon"]],template:function(o,c){o&1&&(a(0,"div",0)(1,"button",1),u(2,"fa-icon",2),s(),T(3,G,11,6,"ul",3),s()),o&2&&(r(2),p("icon",c.icons.faCog))},dependencies:[$,R,X,P,N,z,k],encapsulation:2,changeDetection:0});let t=i;return t})();export{le as a};
|