@sync-in/server 1.7.0 → 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 +164 -58
- package/environment/environment.dist.yaml +6 -3
- 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 +2 -2
- package/server/authentication/auth.config.js.map +1 -1
- package/server/authentication/guards/auth-basic.strategy.js +2 -2
- package/server/authentication/guards/auth-basic.strategy.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-PTGDOWV3.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-DJYJ66UF.js → chunk-HAS5ZOTR.js} +1 -1
- package/static/chunk-HNQRZALS.js +1 -0
- package/static/chunk-JPT5WEAT.js +1 -0
- package/static/{chunk-QNJFQVYI.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-EVIE5F2U.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-SIPE37PA.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-3GFGJYMK.js +0 -1
- package/static/chunk-4YGJGZZZ.js +0 -1
- package/static/chunk-5K7HEX3C.js +0 -27
- package/static/chunk-5KLMS6A4.js +0 -1
- package/static/chunk-ATP3BFHV.js +0 -562
- package/static/chunk-BB4G55KE.js +0 -1
- package/static/chunk-EWKSX76T.js +0 -1
- package/static/chunk-FHLACA7V.js +0 -1
- package/static/chunk-GCATNU55.js +0 -1
- package/static/chunk-GYODPCIE.js +0 -1
- package/static/chunk-HZTFYLM5.js +0 -1
- package/static/chunk-JSUKJT6Z.js +0 -1
- package/static/chunk-JXZCNFW7.js +0 -1
- package/static/chunk-LTGFCQR7.js +0 -1
- package/static/chunk-LV3PYKWO.js +0 -1
- package/static/chunk-N2WFNW6M.js +0 -7
- package/static/chunk-ORMRCEGT.js +0 -1
- package/static/chunk-OUTBJSMW.js +0 -1
- package/static/chunk-RS2PX32L.js +0 -1
- package/static/chunk-RSSWH3S2.js +0 -1
- package/static/chunk-RTRJ3KFH.js +0 -1
- package/static/chunk-TKTCBDOG.js +0 -1
- package/static/chunk-V6K2N46L.js +0 -1
- package/static/chunk-XLCCZSQL.js +0 -4
- package/static/chunk-YPEH66GG.js +0 -1
- package/static/chunk-YPOIUQ57.js +0 -1
- package/static/chunk-ZKCFO2OA.js +0 -4
- package/static/main-MZ7HWZXO.js +0 -9
- package/static/scripts-VZVAP2P4.js +0 -30
|
@@ -36,10 +36,55 @@ _export(exports, {
|
|
|
36
36
|
},
|
|
37
37
|
get dbGetInsertedId () {
|
|
38
38
|
return dbGetInsertedId;
|
|
39
|
+
},
|
|
40
|
+
get getTablesWithFileIdColumn () {
|
|
41
|
+
return getTablesWithFileIdColumn;
|
|
39
42
|
}
|
|
40
43
|
});
|
|
41
44
|
const _drizzleorm = require("drizzle-orm");
|
|
42
45
|
const _constants = require("./constants");
|
|
46
|
+
const _schema = /*#__PURE__*/ _interop_require_wildcard(require("./schema"));
|
|
47
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
48
|
+
if (typeof WeakMap !== "function") return null;
|
|
49
|
+
var cacheBabelInterop = new WeakMap();
|
|
50
|
+
var cacheNodeInterop = new WeakMap();
|
|
51
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
52
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
53
|
+
})(nodeInterop);
|
|
54
|
+
}
|
|
55
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
56
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
57
|
+
return obj;
|
|
58
|
+
}
|
|
59
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
60
|
+
return {
|
|
61
|
+
default: obj
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
65
|
+
if (cache && cache.has(obj)) {
|
|
66
|
+
return cache.get(obj);
|
|
67
|
+
}
|
|
68
|
+
var newObj = {
|
|
69
|
+
__proto__: null
|
|
70
|
+
};
|
|
71
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
72
|
+
for(var key in obj){
|
|
73
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
74
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
75
|
+
if (desc && (desc.get || desc.set)) {
|
|
76
|
+
Object.defineProperty(newObj, key, desc);
|
|
77
|
+
} else {
|
|
78
|
+
newObj[key] = obj[key];
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
newObj.default = obj;
|
|
83
|
+
if (cache) {
|
|
84
|
+
cache.set(obj, newObj);
|
|
85
|
+
}
|
|
86
|
+
return newObj;
|
|
87
|
+
}
|
|
43
88
|
async function dbGetConnection(app, mode = 'pool') {
|
|
44
89
|
const db = await app.resolve(_constants.DB_TOKEN_PROVIDER);
|
|
45
90
|
let connection = db['session'].client;
|
|
@@ -113,5 +158,8 @@ function concatDistinctObjectsInArray(mustBeNotNull, object) {
|
|
|
113
158
|
expr.mapWith(JSON.parse);
|
|
114
159
|
return expr;
|
|
115
160
|
}
|
|
161
|
+
function getTablesWithFileIdColumn() {
|
|
162
|
+
return Object.entries(_schema).filter(([_table, columns])=>'fileId' in columns).map(([_table, columns])=>columns);
|
|
163
|
+
}
|
|
116
164
|
|
|
117
165
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../backend/src/infrastructure/database/utils.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { NestFastifyApplication } from '@nestjs/platform-fastify'\nimport { TestingModule } from '@nestjs/testing'\nimport { Column, eq, inArray, isNull, SQL, sql } from 'drizzle-orm'\nimport { MySqlDatabase } from 'drizzle-orm/mysql-core'\nimport { MySqlQueryResult } from 'drizzle-orm/mysql2'\nimport { DB_TOKEN_PROVIDER } from './constants'\n\nasync function dbGetConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const db: MySqlDatabase<any, any> = await app.resolve(DB_TOKEN_PROVIDER)\n let connection: any = db['session'].client\n if (mode === 'pool') {\n connection = connection.pool\n }\n return { db, connection }\n}\n\nexport async function dbCloseConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const connection = (await dbGetConnection(app, mode)).connection\n await connection.end()\n}\n\nexport async function dbCheckConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const db = (await dbGetConnection(app, mode)).db\n return Array.isArray(await db.execute(sql`select 1`))\n}\n\nexport function dbCheckAffectedRows(queryResult: MySqlQueryResult, expected: number, throwError = true): boolean {\n const affectedRows = queryResult.at(0).affectedRows\n if (affectedRows !== expected) {\n if (throwError) {\n throw new Error(`The number of rows affected does not match : ${affectedRows}`)\n }\n return false\n }\n return true\n}\n\nexport function dbGetInsertedId(queryResult: MySqlQueryResult): number {\n const insertedId = queryResult.at(0).insertId\n if (!insertedId) {\n throw new Error(`Record was not inserted : ${insertedId}`)\n }\n return insertedId\n}\n\nexport function convertToSelect<T>(table: T, fields: Partial<keyof T>[]) {\n const select = {} as Record<keyof T, any>\n for (const f of fields) {\n select[f] = table[f]\n }\n return select\n}\n\nexport function convertToWhere<T>(table: T, filters: Partial<Record<keyof T, any>>): SQL[] {\n // only handles AND operator\n return Object.entries(filters).map(([k, v]) => {\n if (v === null) return isNull(table[k])\n if (Array.isArray(v)) return inArray(table[k], v)\n return eq(table[k], v)\n })\n}\n\nexport const dateTimeUTC = (dateField: Column): SQL<string> => sql`CONCAT(${sql`${dateField}`}, 'Z')`\n\nexport function concatDistinctObjectsInArray(mustBeNotNull: Column, object: Record<string, Column | object>): SQL<any> {\n /* Concat json objects in array (only one nesting level is supported) */\n const expr: SQL<any> = sql`IFNULL(CONCAT('[', GROUP_CONCAT(DISTINCT IF(${mustBeNotNull} IS NULL, NULL, JSON_OBJECT(`\n const keys = Object.keys(object)\n keys.forEach((k, index) => {\n if (object[k].constructor.name === 'Object') {\n expr.append(sql`${sql.raw(`'${k}'`)},JSON_OBJECT(`)\n const subKeys = Object.keys(object[k])\n subKeys.forEach((subK, subIndex) => {\n expr.append(sql`${sql.raw(`'${subK}'`)},${sql`${object[k][subK]}`}${subIndex === subKeys.length - 1 ? sql`)` : sql`,`}`)\n })\n } else {\n expr.append(sql`${sql.raw(`'${k}'`)},${sql`${object[k]}`}`)\n }\n if (index !== keys.length - 1) {\n expr.append(sql`,`)\n }\n })\n expr.append(sql`))), ']'), JSON_ARRAY())`)\n expr.mapWith(JSON.parse)\n return expr\n}\n"],"names":["concatDistinctObjectsInArray","convertToSelect","convertToWhere","dateTimeUTC","dbCheckAffectedRows","dbCheckConnection","dbCloseConnection","dbGetInsertedId","dbGetConnection","app","mode","db","resolve","DB_TOKEN_PROVIDER","connection","client","pool","end","Array","isArray","execute","sql","queryResult","expected","throwError","affectedRows","at","Error","insertedId","insertId","table","fields","select","f","filters","Object","entries","map","k","v","isNull","inArray","eq","dateField","mustBeNotNull","object","expr","keys","forEach","index","name","append","raw","subKeys","subK","subIndex","length","mapWith","JSON","parse"],"mappings":"AAAA;;;;CAIC;;;;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["../../../../backend/src/infrastructure/database/utils.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { NestFastifyApplication } from '@nestjs/platform-fastify'\nimport { TestingModule } from '@nestjs/testing'\nimport { Column, eq, inArray, isNull, SQL, sql } from 'drizzle-orm'\nimport { MySqlDatabase, MySqlTableWithColumns } from 'drizzle-orm/mysql-core'\nimport { MySqlQueryResult } from 'drizzle-orm/mysql2'\nimport { DB_TOKEN_PROVIDER } from './constants'\nimport * as schema from './schema'\n\nasync function dbGetConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const db: MySqlDatabase<any, any> = await app.resolve(DB_TOKEN_PROVIDER)\n let connection: any = db['session'].client\n if (mode === 'pool') {\n connection = connection.pool\n }\n return { db, connection }\n}\n\nexport async function dbCloseConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const connection = (await dbGetConnection(app, mode)).connection\n await connection.end()\n}\n\nexport async function dbCheckConnection(app: NestFastifyApplication | TestingModule, mode: 'pool' | 'client' = 'pool') {\n const db = (await dbGetConnection(app, mode)).db\n return Array.isArray(await db.execute(sql`select 1`))\n}\n\nexport function dbCheckAffectedRows(queryResult: MySqlQueryResult, expected: number, throwError = true): boolean {\n const affectedRows = queryResult.at(0).affectedRows\n if (affectedRows !== expected) {\n if (throwError) {\n throw new Error(`The number of rows affected does not match : ${affectedRows}`)\n }\n return false\n }\n return true\n}\n\nexport function dbGetInsertedId(queryResult: MySqlQueryResult): number {\n const insertedId = queryResult.at(0).insertId\n if (!insertedId) {\n throw new Error(`Record was not inserted : ${insertedId}`)\n }\n return insertedId\n}\n\nexport function convertToSelect<T>(table: T, fields: Partial<keyof T>[]) {\n const select = {} as Record<keyof T, any>\n for (const f of fields) {\n select[f] = table[f]\n }\n return select\n}\n\nexport function convertToWhere<T>(table: T, filters: Partial<Record<keyof T, any>>): SQL[] {\n // only handles AND operator\n return Object.entries(filters).map(([k, v]) => {\n if (v === null) return isNull(table[k])\n if (Array.isArray(v)) return inArray(table[k], v)\n return eq(table[k], v)\n })\n}\n\nexport const dateTimeUTC = (dateField: Column): SQL<string> => sql`CONCAT(${sql`${dateField}`}, 'Z')`\n\nexport function concatDistinctObjectsInArray(mustBeNotNull: Column, object: Record<string, Column | object>): SQL<any> {\n /* Concat json objects in array (only one nesting level is supported) */\n const expr: SQL<any> = sql`IFNULL(CONCAT('[', GROUP_CONCAT(DISTINCT IF(${mustBeNotNull} IS NULL, NULL, JSON_OBJECT(`\n const keys = Object.keys(object)\n keys.forEach((k, index) => {\n if (object[k].constructor.name === 'Object') {\n expr.append(sql`${sql.raw(`'${k}'`)},JSON_OBJECT(`)\n const subKeys = Object.keys(object[k])\n subKeys.forEach((subK, subIndex) => {\n expr.append(sql`${sql.raw(`'${subK}'`)},${sql`${object[k][subK]}`}${subIndex === subKeys.length - 1 ? sql`)` : sql`,`}`)\n })\n } else {\n expr.append(sql`${sql.raw(`'${k}'`)},${sql`${object[k]}`}`)\n }\n if (index !== keys.length - 1) {\n expr.append(sql`,`)\n }\n })\n expr.append(sql`))), ']'), JSON_ARRAY())`)\n expr.mapWith(JSON.parse)\n return expr\n}\n\nexport function getTablesWithFileIdColumn(): MySqlTableWithColumns<any>[] {\n return Object.entries(schema)\n .filter(([_table, columns]) => 'fileId' in columns)\n .map(([_table, columns]) => columns as MySqlTableWithColumns<any>)\n}\n"],"names":["concatDistinctObjectsInArray","convertToSelect","convertToWhere","dateTimeUTC","dbCheckAffectedRows","dbCheckConnection","dbCloseConnection","dbGetInsertedId","getTablesWithFileIdColumn","dbGetConnection","app","mode","db","resolve","DB_TOKEN_PROVIDER","connection","client","pool","end","Array","isArray","execute","sql","queryResult","expected","throwError","affectedRows","at","Error","insertedId","insertId","table","fields","select","f","filters","Object","entries","map","k","v","isNull","inArray","eq","dateField","mustBeNotNull","object","expr","keys","forEach","index","name","append","raw","subKeys","subK","subIndex","length","mapWith","JSON","parse","schema","filter","_table","columns"],"mappings":"AAAA;;;;CAIC;;;;;;;;;;;QAmEeA;eAAAA;;QAnBAC;eAAAA;;QAQAC;eAAAA;;QASHC;eAAAA;;QApCGC;eAAAA;;QALMC;eAAAA;;QALAC;eAAAA;;QAqBNC;eAAAA;;QAkDAC;eAAAA;;;4BAtFsC;2BAGpB;gEACV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAExB,eAAeC,gBAAgBC,GAA2C,EAAEC,OAA0B,MAAM;IAC1G,MAAMC,KAA8B,MAAMF,IAAIG,OAAO,CAACC,4BAAiB;IACvE,IAAIC,aAAkBH,EAAE,CAAC,UAAU,CAACI,MAAM;IAC1C,IAAIL,SAAS,QAAQ;QACnBI,aAAaA,WAAWE,IAAI;IAC9B;IACA,OAAO;QAAEL;QAAIG;IAAW;AAC1B;AAEO,eAAeT,kBAAkBI,GAA2C,EAAEC,OAA0B,MAAM;IACnH,MAAMI,aAAa,AAAC,CAAA,MAAMN,gBAAgBC,KAAKC,KAAI,EAAGI,UAAU;IAChE,MAAMA,WAAWG,GAAG;AACtB;AAEO,eAAeb,kBAAkBK,GAA2C,EAAEC,OAA0B,MAAM;IACnH,MAAMC,KAAK,AAAC,CAAA,MAAMH,gBAAgBC,KAAKC,KAAI,EAAGC,EAAE;IAChD,OAAOO,MAAMC,OAAO,CAAC,MAAMR,GAAGS,OAAO,CAACC,IAAAA,eAAG,CAAA,CAAC,QAAQ,CAAC;AACrD;AAEO,SAASlB,oBAAoBmB,WAA6B,EAAEC,QAAgB,EAAEC,aAAa,IAAI;IACpG,MAAMC,eAAeH,YAAYI,EAAE,CAAC,GAAGD,YAAY;IACnD,IAAIA,iBAAiBF,UAAU;QAC7B,IAAIC,YAAY;YACd,MAAM,IAAIG,MAAM,CAAC,6CAA6C,EAAEF,cAAc;QAChF;QACA,OAAO;IACT;IACA,OAAO;AACT;AAEO,SAASnB,gBAAgBgB,WAA6B;IAC3D,MAAMM,aAAaN,YAAYI,EAAE,CAAC,GAAGG,QAAQ;IAC7C,IAAI,CAACD,YAAY;QACf,MAAM,IAAID,MAAM,CAAC,0BAA0B,EAAEC,YAAY;IAC3D;IACA,OAAOA;AACT;AAEO,SAAS5B,gBAAmB8B,KAAQ,EAAEC,MAA0B;IACrE,MAAMC,SAAS,CAAC;IAChB,KAAK,MAAMC,KAAKF,OAAQ;QACtBC,MAAM,CAACC,EAAE,GAAGH,KAAK,CAACG,EAAE;IACtB;IACA,OAAOD;AACT;AAEO,SAAS/B,eAAkB6B,KAAQ,EAAEI,OAAsC;IAChF,4BAA4B;IAC5B,OAAOC,OAAOC,OAAO,CAACF,SAASG,GAAG,CAAC,CAAC,CAACC,GAAGC,EAAE;QACxC,IAAIA,MAAM,MAAM,OAAOC,IAAAA,kBAAM,EAACV,KAAK,CAACQ,EAAE;QACtC,IAAIpB,MAAMC,OAAO,CAACoB,IAAI,OAAOE,IAAAA,mBAAO,EAACX,KAAK,CAACQ,EAAE,EAAEC;QAC/C,OAAOG,IAAAA,cAAE,EAACZ,KAAK,CAACQ,EAAE,EAAEC;IACtB;AACF;AAEO,MAAMrC,cAAc,CAACyC,YAAmCtB,IAAAA,eAAG,CAAA,CAAC,OAAO,EAAEA,IAAAA,eAAG,CAAA,CAAC,EAAEsB,UAAU,CAAC,CAAC,MAAM,CAAC;AAE9F,SAAS5C,6BAA6B6C,aAAqB,EAAEC,MAAuC;IACzG,sEAAsE,GACtE,MAAMC,OAAiBzB,IAAAA,eAAG,CAAA,CAAC,4CAA4C,EAAEuB,cAAc,4BAA4B,CAAC;IACpH,MAAMG,OAAOZ,OAAOY,IAAI,CAACF;IACzBE,KAAKC,OAAO,CAAC,CAACV,GAAGW;QACf,IAAIJ,MAAM,CAACP,EAAE,CAAC,WAAW,CAACY,IAAI,KAAK,UAAU;YAC3CJ,KAAKK,MAAM,CAAC9B,IAAAA,eAAG,CAAA,CAAC,EAAEA,eAAG,CAAC+B,GAAG,CAAC,CAAC,CAAC,EAAEd,EAAE,CAAC,CAAC,EAAE,aAAa,CAAC;YAClD,MAAMe,UAAUlB,OAAOY,IAAI,CAACF,MAAM,CAACP,EAAE;YACrCe,QAAQL,OAAO,CAAC,CAACM,MAAMC;gBACrBT,KAAKK,MAAM,CAAC9B,IAAAA,eAAG,CAAA,CAAC,EAAEA,eAAG,CAAC+B,GAAG,CAAC,CAAC,CAAC,EAAEE,KAAK,CAAC,CAAC,EAAE,CAAC,EAAEjC,IAAAA,eAAG,CAAA,CAAC,EAAEwB,MAAM,CAACP,EAAE,CAACgB,KAAK,CAAC,CAAC,CAAC,EAAEC,aAAaF,QAAQG,MAAM,GAAG,IAAInC,IAAAA,eAAG,CAAA,CAAC,CAAC,CAAC,GAAGA,IAAAA,eAAG,CAAA,CAAC,CAAC,CAAC,CAAC,CAAC;YACzH;QACF,OAAO;YACLyB,KAAKK,MAAM,CAAC9B,IAAAA,eAAG,CAAA,CAAC,EAAEA,eAAG,CAAC+B,GAAG,CAAC,CAAC,CAAC,EAAEd,EAAE,CAAC,CAAC,EAAE,CAAC,EAAEjB,IAAAA,eAAG,CAAA,CAAC,EAAEwB,MAAM,CAACP,EAAE,CAAC,CAAC,CAAC,CAAC;QAC5D;QACA,IAAIW,UAAUF,KAAKS,MAAM,GAAG,GAAG;YAC7BV,KAAKK,MAAM,CAAC9B,IAAAA,eAAG,CAAA,CAAC,CAAC,CAAC;QACpB;IACF;IACAyB,KAAKK,MAAM,CAAC9B,IAAAA,eAAG,CAAA,CAAC,wBAAwB,CAAC;IACzCyB,KAAKW,OAAO,CAACC,KAAKC,KAAK;IACvB,OAAOb;AACT;AAEO,SAASvC;IACd,OAAO4B,OAAOC,OAAO,CAACwB,SACnBC,MAAM,CAAC,CAAC,CAACC,QAAQC,QAAQ,GAAK,YAAYA,SAC1C1B,GAAG,CAAC,CAAC,CAACyB,QAAQC,QAAQ,GAAKA;AAChC"}
|
|
@@ -38,7 +38,7 @@ let SchedulerModule = class SchedulerModule {
|
|
|
38
38
|
]
|
|
39
39
|
};
|
|
40
40
|
} else {
|
|
41
|
-
// do not initialize the ScheduleModule dependency
|
|
41
|
+
// do not initialize the ScheduleModule dependency; all calls to Interval, Cron ... will be ignored
|
|
42
42
|
return {
|
|
43
43
|
module: SchedulerModule
|
|
44
44
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../backend/src/infrastructure/scheduler/scheduler.module.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { DynamicModule, Module } from '@nestjs/common'\nimport { ScheduleModule as NestScheduleModule } from '@nestjs/schedule'\nimport cluster from 'node:cluster'\nimport { SCHEDULER_ENV, SCHEDULER_STATE } from './scheduler.constants'\n\n@Module({})\nexport class SchedulerModule {\n static register(): DynamicModule {\n if (cluster.isWorker && process.env[SCHEDULER_ENV] === SCHEDULER_STATE.ENABLED) {\n return {\n global: true,\n module: SchedulerModule,\n imports: [NestScheduleModule.forRoot()]\n }\n } else {\n // do not initialize the ScheduleModule dependency
|
|
1
|
+
{"version":3,"sources":["../../../../backend/src/infrastructure/scheduler/scheduler.module.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { DynamicModule, Module } from '@nestjs/common'\nimport { ScheduleModule as NestScheduleModule } from '@nestjs/schedule'\nimport cluster from 'node:cluster'\nimport { SCHEDULER_ENV, SCHEDULER_STATE } from './scheduler.constants'\n\n@Module({})\nexport class SchedulerModule {\n static register(): DynamicModule {\n if (cluster.isWorker && process.env[SCHEDULER_ENV] === SCHEDULER_STATE.ENABLED) {\n return {\n global: true,\n module: SchedulerModule,\n imports: [NestScheduleModule.forRoot()]\n }\n } else {\n // do not initialize the ScheduleModule dependency; all calls to Interval, Cron ... will be ignored\n return { module: SchedulerModule }\n }\n }\n}\n"],"names":["SchedulerModule","register","cluster","isWorker","process","env","SCHEDULER_ENV","SCHEDULER_STATE","ENABLED","global","module","imports","NestScheduleModule","forRoot"],"mappings":"AAAA;;;;CAIC;;;;+BAQYA;;;eAAAA;;;wBANyB;0BACe;oEACjC;oCAC2B;;;;;;;;;;;;AAGxC,IAAA,AAAMA,kBAAN,MAAMA;IACX,OAAOC,WAA0B;QAC/B,IAAIC,oBAAO,CAACC,QAAQ,IAAIC,QAAQC,GAAG,CAACC,iCAAa,CAAC,KAAKC,mCAAe,CAACC,OAAO,EAAE;YAC9E,OAAO;gBACLC,QAAQ;gBACRC,QAAQV;gBACRW,SAAS;oBAACC,wBAAkB,CAACC,OAAO;iBAAG;YACzC;QACF,OAAO;YACL,mGAAmG;YACnG,OAAO;gBAAEH,QAAQV;YAAgB;QACnC;IACF;AACF"}
|
|
@@ -28,9 +28,7 @@ let ClusterAdapter = class ClusterAdapter extends _platformsocketio.IoAdapter {
|
|
|
28
28
|
return server;
|
|
29
29
|
}
|
|
30
30
|
constructor(...args){
|
|
31
|
-
super(...args), this.clusterAdapter = (0, _clusteradapter.createAdapter)(
|
|
32
|
-
requestsTimeout: 60000
|
|
33
|
-
});
|
|
31
|
+
super(...args), this.clusterAdapter = (0, _clusteradapter.createAdapter)();
|
|
34
32
|
}
|
|
35
33
|
};
|
|
36
34
|
ClusterAdapter = _ts_decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../backend/src/infrastructure/websocket/adapters/cluster.adapter.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { Injectable } from '@nestjs/common'\nimport { IoAdapter } from '@nestjs/platform-socket.io'\nimport { createAdapter } from '@socket.io/cluster-adapter'\nimport { ServerOptions } from 'socket.io'\n\n@Injectable()\nexport class ClusterAdapter extends IoAdapter {\n private readonly clusterAdapter = createAdapter(
|
|
1
|
+
{"version":3,"sources":["../../../../../backend/src/infrastructure/websocket/adapters/cluster.adapter.ts"],"sourcesContent":["/*\n * Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>\n * This file is part of Sync-in | The open source file sync and share solution\n * See the LICENSE file for licensing details\n */\n\nimport { Injectable } from '@nestjs/common'\nimport { IoAdapter } from '@nestjs/platform-socket.io'\nimport { createAdapter } from '@socket.io/cluster-adapter'\nimport { ServerOptions } from 'socket.io'\n\n@Injectable()\nexport class ClusterAdapter extends IoAdapter {\n private readonly clusterAdapter = createAdapter()\n\n createIOServer(port: number, options?: ServerOptions): any {\n const server = super.createIOServer(port, options)\n server.adapter(this.clusterAdapter)\n return server\n }\n}\n"],"names":["ClusterAdapter","IoAdapter","createIOServer","port","options","server","adapter","clusterAdapter","createAdapter"],"mappings":"AAAA;;;;CAIC;;;;+BAQYA;;;eAAAA;;;wBANc;kCACD;gCACI;;;;;;;AAIvB,IAAA,AAAMA,iBAAN,MAAMA,uBAAuBC,2BAAS;IAG3CC,eAAeC,IAAY,EAAEC,OAAuB,EAAO;QACzD,MAAMC,SAAS,KAAK,CAACH,eAAeC,MAAMC;QAC1CC,OAAOC,OAAO,CAAC,IAAI,CAACC,cAAc;QAClC,OAAOF;IACT;;QAPK,qBACYE,iBAAiBC,IAAAA,6BAAa;;AAOjD"}
|
|
@@ -1,4 +1,56 @@
|
|
|
1
1
|
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
Package: codemirror
|
|
4
|
+
License: "MIT"
|
|
5
|
+
|
|
6
|
+
MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in
|
|
18
|
+
all copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
26
|
+
THE SOFTWARE.
|
|
27
|
+
|
|
28
|
+
--------------------------------------------------------------------------------
|
|
29
|
+
Package: dayjs
|
|
30
|
+
License: "MIT"
|
|
31
|
+
|
|
32
|
+
MIT License
|
|
33
|
+
|
|
34
|
+
Copyright (c) 2018-present, iamkun
|
|
35
|
+
|
|
36
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
37
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
38
|
+
in the Software without restriction, including without limitation the rights
|
|
39
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
40
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
41
|
+
furnished to do so, subject to the following conditions:
|
|
42
|
+
|
|
43
|
+
The above copyright notice and this permission notice shall be included in all
|
|
44
|
+
copies or substantial portions of the Software.
|
|
45
|
+
|
|
46
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
47
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
48
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
49
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
50
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
51
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
52
|
+
SOFTWARE.
|
|
53
|
+
|
|
2
54
|
--------------------------------------------------------------------------------
|
|
3
55
|
Package: @angular/animations
|
|
4
56
|
License: "MIT"
|
|
@@ -249,32 +301,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
249
301
|
SOFTWARE.
|
|
250
302
|
|
|
251
303
|
|
|
252
|
-
--------------------------------------------------------------------------------
|
|
253
|
-
Package: codemirror
|
|
254
|
-
License: "MIT"
|
|
255
|
-
|
|
256
|
-
MIT License
|
|
257
|
-
|
|
258
|
-
Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
259
|
-
|
|
260
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
261
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
262
|
-
in the Software without restriction, including without limitation the rights
|
|
263
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
264
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
265
|
-
furnished to do so, subject to the following conditions:
|
|
266
|
-
|
|
267
|
-
The above copyright notice and this permission notice shall be included in
|
|
268
|
-
all copies or substantial portions of the Software.
|
|
269
|
-
|
|
270
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
271
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
272
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
273
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
274
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
275
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
276
|
-
THE SOFTWARE.
|
|
277
|
-
|
|
278
304
|
--------------------------------------------------------------------------------
|
|
279
305
|
Package: @fortawesome/free-regular-svg-icons
|
|
280
306
|
License: "(CC-BY-4.0 AND MIT)"
|
|
@@ -533,6 +559,32 @@ Package: ngx-clipboard
|
|
|
533
559
|
License: "MIT"
|
|
534
560
|
|
|
535
561
|
|
|
562
|
+
--------------------------------------------------------------------------------
|
|
563
|
+
Package: @angular/router
|
|
564
|
+
License: "MIT"
|
|
565
|
+
|
|
566
|
+
The MIT License
|
|
567
|
+
|
|
568
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
569
|
+
|
|
570
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
571
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
572
|
+
in the Software without restriction, including without limitation the rights
|
|
573
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
574
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
575
|
+
furnished to do so, subject to the following conditions:
|
|
576
|
+
|
|
577
|
+
The above copyright notice and this permission notice shall be included in
|
|
578
|
+
all copies or substantial portions of the Software.
|
|
579
|
+
|
|
580
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
581
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
582
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
583
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
584
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
585
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
586
|
+
THE SOFTWARE.
|
|
587
|
+
|
|
536
588
|
--------------------------------------------------------------------------------
|
|
537
589
|
Package: socket.io-client
|
|
538
590
|
License: "MIT"
|
|
@@ -691,32 +743,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
691
743
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
692
744
|
SOFTWARE.
|
|
693
745
|
|
|
694
|
-
--------------------------------------------------------------------------------
|
|
695
|
-
Package: dayjs
|
|
696
|
-
License: "MIT"
|
|
697
|
-
|
|
698
|
-
MIT License
|
|
699
|
-
|
|
700
|
-
Copyright (c) 2018-present, iamkun
|
|
701
|
-
|
|
702
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
703
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
704
|
-
in the Software without restriction, including without limitation the rights
|
|
705
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
706
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
707
|
-
furnished to do so, subject to the following conditions:
|
|
708
|
-
|
|
709
|
-
The above copyright notice and this permission notice shall be included in all
|
|
710
|
-
copies or substantial portions of the Software.
|
|
711
|
-
|
|
712
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
713
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
714
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
715
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
716
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
717
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
718
|
-
SOFTWARE.
|
|
719
|
-
|
|
720
746
|
--------------------------------------------------------------------------------
|
|
721
747
|
Package: @angular/core
|
|
722
748
|
License: "MIT"
|
|
@@ -821,32 +847,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
821
847
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
822
848
|
SOFTWARE.
|
|
823
849
|
|
|
824
|
-
--------------------------------------------------------------------------------
|
|
825
|
-
Package: @angular/router
|
|
826
|
-
License: "MIT"
|
|
827
|
-
|
|
828
|
-
The MIT License
|
|
829
|
-
|
|
830
|
-
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
831
|
-
|
|
832
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
833
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
834
|
-
in the Software without restriction, including without limitation the rights
|
|
835
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
836
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
837
|
-
furnished to do so, subject to the following conditions:
|
|
838
|
-
|
|
839
|
-
The above copyright notice and this permission notice shall be included in
|
|
840
|
-
all copies or substantial portions of the Software.
|
|
841
|
-
|
|
842
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
843
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
844
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
845
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
846
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
847
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
848
|
-
THE SOFTWARE.
|
|
849
|
-
|
|
850
850
|
--------------------------------------------------------------------------------
|
|
851
851
|
Package: rxjs
|
|
852
852
|
License: "Apache-2.0"
|
|
@@ -1097,9 +1097,40 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1097
1097
|
THE SOFTWARE.
|
|
1098
1098
|
|
|
1099
1099
|
--------------------------------------------------------------------------------
|
|
1100
|
-
Package: @
|
|
1100
|
+
Package: @angular/forms
|
|
1101
1101
|
License: "MIT"
|
|
1102
1102
|
|
|
1103
|
+
The MIT License
|
|
1104
|
+
|
|
1105
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1106
|
+
|
|
1107
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1108
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1109
|
+
in the Software without restriction, including without limitation the rights
|
|
1110
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1111
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1112
|
+
furnished to do so, subject to the following conditions:
|
|
1113
|
+
|
|
1114
|
+
The above copyright notice and this permission notice shall be included in
|
|
1115
|
+
all copies or substantial portions of the Software.
|
|
1116
|
+
|
|
1117
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1118
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1119
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1120
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1121
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1122
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1123
|
+
THE SOFTWARE.
|
|
1124
|
+
|
|
1125
|
+
--------------------------------------------------------------------------------
|
|
1126
|
+
Package: angular-l10n
|
|
1127
|
+
License: "MIT"
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
--------------------------------------------------------------------------------
|
|
1131
|
+
Package: @fortawesome/free-solid-svg-icons
|
|
1132
|
+
License: "(CC-BY-4.0 AND MIT)"
|
|
1133
|
+
|
|
1103
1134
|
Fonticons, Inc. (https://fontawesome.com)
|
|
1104
1135
|
|
|
1105
1136
|
--------------------------------------------------------------------------------
|
|
@@ -1267,66 +1298,9 @@ Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
|
1267
1298
|
to represent the company, product, or service to which they refer.**
|
|
1268
1299
|
|
|
1269
1300
|
--------------------------------------------------------------------------------
|
|
1270
|
-
Package: @fortawesome/
|
|
1271
|
-
License: "MIT"
|
|
1272
|
-
|
|
1273
|
-
MIT License
|
|
1274
|
-
|
|
1275
|
-
Copyright (c) 2018 Fonticons, Inc. and contributors
|
|
1276
|
-
|
|
1277
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1278
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1279
|
-
in the Software without restriction, including without limitation the rights
|
|
1280
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1281
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1282
|
-
furnished to do so, subject to the following conditions:
|
|
1283
|
-
|
|
1284
|
-
The above copyright notice and this permission notice shall be included in
|
|
1285
|
-
all copies or substantial portions of the Software.
|
|
1286
|
-
|
|
1287
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1288
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1289
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1290
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1291
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1292
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1293
|
-
THE SOFTWARE.
|
|
1294
|
-
|
|
1295
|
-
--------------------------------------------------------------------------------
|
|
1296
|
-
Package: @angular/forms
|
|
1297
|
-
License: "MIT"
|
|
1298
|
-
|
|
1299
|
-
The MIT License
|
|
1300
|
-
|
|
1301
|
-
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1302
|
-
|
|
1303
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1304
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1305
|
-
in the Software without restriction, including without limitation the rights
|
|
1306
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1307
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1308
|
-
furnished to do so, subject to the following conditions:
|
|
1309
|
-
|
|
1310
|
-
The above copyright notice and this permission notice shall be included in
|
|
1311
|
-
all copies or substantial portions of the Software.
|
|
1312
|
-
|
|
1313
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1314
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1315
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1316
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1317
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1318
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1319
|
-
THE SOFTWARE.
|
|
1320
|
-
|
|
1321
|
-
--------------------------------------------------------------------------------
|
|
1322
|
-
Package: angular-l10n
|
|
1301
|
+
Package: @fortawesome/fontawesome-svg-core
|
|
1323
1302
|
License: "MIT"
|
|
1324
1303
|
|
|
1325
|
-
|
|
1326
|
-
--------------------------------------------------------------------------------
|
|
1327
|
-
Package: @fortawesome/free-solid-svg-icons
|
|
1328
|
-
License: "(CC-BY-4.0 AND MIT)"
|
|
1329
|
-
|
|
1330
1304
|
Fonticons, Inc. (https://fontawesome.com)
|
|
1331
1305
|
|
|
1332
1306
|
--------------------------------------------------------------------------------
|
|
@@ -1493,6 +1467,32 @@ trademarks does not indicate endorsement of the trademark holder by Font
|
|
|
1493
1467
|
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
1494
1468
|
to represent the company, product, or service to which they refer.**
|
|
1495
1469
|
|
|
1470
|
+
--------------------------------------------------------------------------------
|
|
1471
|
+
Package: @fortawesome/angular-fontawesome
|
|
1472
|
+
License: "MIT"
|
|
1473
|
+
|
|
1474
|
+
MIT License
|
|
1475
|
+
|
|
1476
|
+
Copyright (c) 2018 Fonticons, Inc. and contributors
|
|
1477
|
+
|
|
1478
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1479
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1480
|
+
in the Software without restriction, including without limitation the rights
|
|
1481
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1482
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1483
|
+
furnished to do so, subject to the following conditions:
|
|
1484
|
+
|
|
1485
|
+
The above copyright notice and this permission notice shall be included in
|
|
1486
|
+
all copies or substantial portions of the Software.
|
|
1487
|
+
|
|
1488
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1489
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1490
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1491
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1492
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1493
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1494
|
+
THE SOFTWARE.
|
|
1495
|
+
|
|
1496
1496
|
--------------------------------------------------------------------------------
|
|
1497
1497
|
Package: zone.js
|
|
1498
1498
|
License: "MIT"
|
|
@@ -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};
|