@nocobase/plugin-file-manager 2.0.0-alpha.9 → 2.0.0-beta.2
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/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/models/DisplayPreviewFieldModel.d.ts +1 -0
- package/dist/client/models/UploadActionModel.d.ts +3 -1
- package/dist/client/schemas/storageTypes/ali-oss.d.ts +12 -0
- package/dist/client/schemas/storageTypes/common.d.ts +12 -0
- package/dist/client/schemas/storageTypes/index.d.ts +48 -0
- package/dist/client/schemas/storageTypes/local.d.ts +12 -0
- package/dist/client/schemas/storageTypes/s3.d.ts +12 -0
- package/dist/client/schemas/storageTypes/tx-cos.d.ts +12 -0
- package/dist/client/templates/file.d.ts +4 -0
- package/dist/common/collections/storages.d.ts +11 -0
- package/dist/common/collections/storages.js +6 -0
- package/dist/externalVersion.js +8 -8
- package/dist/locale/de-DE.json +42 -29
- package/dist/locale/en-US.json +43 -30
- package/dist/locale/es-ES.json +54 -0
- package/dist/locale/fr-FR.json +45 -12
- package/dist/locale/hu-HU.json +48 -0
- package/dist/locale/id-ID.json +48 -0
- package/dist/locale/it-IT.json +43 -28
- package/dist/locale/ja-JP.json +43 -30
- package/dist/locale/ko-KR.json +46 -24
- package/dist/locale/nl-NL.json +53 -39
- package/dist/locale/pt-BR.json +54 -0
- package/dist/locale/ru-RU.json +47 -11
- package/dist/locale/tr-TR.json +47 -10
- package/dist/locale/uk-UA.json +54 -0
- package/dist/locale/vi-VN.json +48 -0
- package/dist/locale/zh-CN.json +41 -31
- package/dist/locale/zh-TW.json +54 -0
- package/dist/node_modules/@aws-sdk/client-s3/package.json +1 -1
- package/dist/node_modules/@aws-sdk/lib-storage/LICENSE +201 -0
- package/dist/node_modules/{multer-s3 → @aws-sdk/lib-storage/dist-cjs}/index.js +574 -6229
- package/dist/node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.browser.js +8 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.js +10 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.native.js +8 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.shared.js +6 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/Upload.js +304 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/bytelength.js +27 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/chunker.js +24 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/chunks/getChunkStream.js +24 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/chunks/getChunkUint8Array.js +19 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/chunks/getDataReadable.js +11 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/chunks/getDataReadableStream.js +24 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/index.js +2 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/runtimeConfig.browser.js +5 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/runtimeConfig.js +7 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/runtimeConfig.native.js +5 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/runtimeConfig.shared.js +3 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-es/types.js +1 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/Upload.d.ts +59 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/bytelength.d.ts +1 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/chunker.d.ts +3 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/chunks/getChunkStream.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/chunks/getChunkUint8Array.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/chunks/getDataReadable.d.ts +3 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/chunks/getDataReadableStream.d.ts +1 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/index.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/runtimeConfig.browser.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/runtimeConfig.d.ts +8 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/runtimeConfig.native.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/runtimeConfig.shared.d.ts +6 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/Upload.d.ts +43 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/bytelength.d.ts +1 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/chunker.d.ts +6 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/chunks/getChunkStream.d.ts +6 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/chunks/getChunkUint8Array.d.ts +5 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/chunks/getDataReadable.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/chunks/getDataReadableStream.d.ts +3 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/ts3.4/types.d.ts +22 -0
- package/dist/node_modules/@aws-sdk/lib-storage/dist-types/types.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/lib-storage/package.json +1 -0
- package/dist/node_modules/{multer-s3 → ali-oss}/LICENSE +1 -2
- package/dist/node_modules/ali-oss/dist/aliyun-oss-sdk.js +44018 -0
- package/dist/node_modules/ali-oss/dist/aliyun-oss-sdk.min.js +4 -0
- package/dist/node_modules/ali-oss/lib/browser/bucket.js +296 -0
- package/dist/node_modules/ali-oss/lib/browser/client.js +452 -0
- package/dist/node_modules/ali-oss/lib/browser/managed-upload.js +360 -0
- package/dist/node_modules/ali-oss/lib/browser/object.js +385 -0
- package/dist/node_modules/ali-oss/lib/browser/version.js +1 -0
- package/dist/node_modules/ali-oss/lib/browser.js +6 -0
- package/dist/node_modules/ali-oss/lib/bucket.js +337 -0
- package/dist/node_modules/{multer-aliyun-oss/index.js → ali-oss/lib/client.js} +2 -2
- package/dist/node_modules/ali-oss/lib/cluster.js +228 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/abortBucketWorm.d.ts +4 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/abortBucketWorm.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/abortBucketWorm.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/completeBucketWorm.d.ts +4 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/completeBucketWorm.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/completeBucketWorm.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketEncryption.js +20 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketInventory.d.ts +10 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketInventory.js +22 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketInventory.ts +21 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketLifecycle.js +13 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketPolicy.js +21 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketTags.js +21 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/deleteBucketWebsite.js +13 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/extendBucketWorm.d.ts +4 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/extendBucketWorm.js +23 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/extendBucketWorm.ts +21 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketEncryption.js +21 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketInventory.d.ts +11 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketInventory.js +25 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketInventory.ts +24 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketLifecycle.js +33 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketPolicy.js +28 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketRequestPayment.js +25 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketStat.d.ts +23 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketStat.js +17 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketStat.ts +34 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketTags.js +23 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketVersioning.js +22 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketWebsite.js +28 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketWorm.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketWorm.js +20 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/getBucketWorm.ts +22 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/index.js +34 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/initiateBucketWorm.d.ts +5 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/initiateBucketWorm.js +24 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/initiateBucketWorm.ts +23 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/listBucketInventory.d.ts +13 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/listBucketInventory.js +29 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/listBucketInventory.ts +32 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucket.js +31 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketEncryption.js +36 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketInventory.d.ts +36 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketInventory.js +58 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketInventory.ts +84 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketLifecycle.js +127 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketPolicy.js +27 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketRequestPayment.js +40 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketTags.js +39 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketVersioning.js +35 -0
- package/dist/node_modules/ali-oss/lib/common/bucket/putBucketWebsite.js +50 -0
- package/dist/node_modules/ali-oss/lib/common/callback.js +27 -0
- package/dist/node_modules/ali-oss/lib/common/client/getReqUrl.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/client/getReqUrl.js +52 -0
- package/dist/node_modules/ali-oss/lib/common/client/getReqUrl.ts +51 -0
- package/dist/node_modules/ali-oss/lib/common/client/initOptions.js +72 -0
- package/dist/node_modules/ali-oss/lib/common/image/index.js +5 -0
- package/dist/node_modules/ali-oss/lib/common/image/processObjectSave.js +45 -0
- package/dist/node_modules/ali-oss/lib/common/multipart-copy.js +240 -0
- package/dist/node_modules/ali-oss/lib/common/multipart.js +271 -0
- package/dist/node_modules/ali-oss/lib/common/object/asyncSignatureUrl.js +57 -0
- package/dist/node_modules/ali-oss/lib/common/object/calculatePostSignature.js +35 -0
- package/dist/node_modules/ali-oss/lib/common/object/copyObject.js +74 -0
- package/dist/node_modules/ali-oss/lib/common/object/delete.js +22 -0
- package/dist/node_modules/ali-oss/lib/common/object/deleteMulti.js +57 -0
- package/dist/node_modules/ali-oss/lib/common/object/deleteObjectTagging.js +22 -0
- package/dist/node_modules/ali-oss/lib/common/object/generateObjectUrl.js +28 -0
- package/dist/node_modules/ali-oss/lib/common/object/get.js +64 -0
- package/dist/node_modules/ali-oss/lib/common/object/getACL.js +30 -0
- package/dist/node_modules/ali-oss/lib/common/object/getAsyncFetch.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/object/getAsyncFetch.js +26 -0
- package/dist/node_modules/ali-oss/lib/common/object/getAsyncFetch.ts +25 -0
- package/dist/node_modules/ali-oss/lib/common/object/getBucketVersions.js +98 -0
- package/dist/node_modules/ali-oss/lib/common/object/getObjectMeta.js +23 -0
- package/dist/node_modules/ali-oss/lib/common/object/getObjectTagging.js +34 -0
- package/dist/node_modules/ali-oss/lib/common/object/getObjectUrl.js +21 -0
- package/dist/node_modules/ali-oss/lib/common/object/getSymlink.js +23 -0
- package/dist/node_modules/ali-oss/lib/common/object/head.js +40 -0
- package/dist/node_modules/ali-oss/lib/common/object/index.js +26 -0
- package/dist/node_modules/ali-oss/lib/common/object/postAsyncFetch.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/object/postAsyncFetch.js +44 -0
- package/dist/node_modules/ali-oss/lib/common/object/postAsyncFetch.ts +46 -0
- package/dist/node_modules/ali-oss/lib/common/object/putACL.js +27 -0
- package/dist/node_modules/ali-oss/lib/common/object/putObjectTagging.js +43 -0
- package/dist/node_modules/ali-oss/lib/common/object/putSymlink.js +33 -0
- package/dist/node_modules/ali-oss/lib/common/object/signatureUrl.js +52 -0
- package/dist/node_modules/ali-oss/lib/common/object/signatureUrlV4.js +70 -0
- package/dist/node_modules/ali-oss/lib/common/parallel.js +177 -0
- package/dist/node_modules/ali-oss/lib/common/signUtils.js +355 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketName.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketName.js +9 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketName.ts +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketNameTest.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketNameTest.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketNameTest.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketTag.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketTag.js +49 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkBucketTag.ts +52 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkConfigValid.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkConfigValid.js +30 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkConfigValid.ts +27 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkEnv.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkEnv.js +9 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkEnv.ts +5 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkObjectTag.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkObjectTag.js +50 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkObjectTag.ts +53 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkUserAgent.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkUserAgent.js +7 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkUserAgent.ts +4 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkValid.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkValid.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/utils/checkValid.ts +9 -0
- package/dist/node_modules/ali-oss/lib/common/utils/createRequest.d.ts +8 -0
- package/dist/node_modules/ali-oss/lib/common/utils/createRequest.js +139 -0
- package/dist/node_modules/ali-oss/lib/common/utils/createRequest.ts +169 -0
- package/dist/node_modules/ali-oss/lib/common/utils/dataFix.d.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/utils/dataFix.js +63 -0
- package/dist/node_modules/ali-oss/lib/common/utils/dataFix.ts +78 -0
- package/dist/node_modules/ali-oss/lib/common/utils/deepCopy.d.ts +2 -0
- package/dist/node_modules/ali-oss/lib/common/utils/deepCopy.js +41 -0
- package/dist/node_modules/ali-oss/lib/common/utils/deepCopy.ts +47 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encodeString.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encodeString.js +12 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encodeString.ts +7 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encoder.d.ts +2 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encoder.js +9 -0
- package/dist/node_modules/ali-oss/lib/common/utils/encoder.ts +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatInventoryConfig.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatInventoryConfig.js +45 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatInventoryConfig.ts +41 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatObjKey.d.ts +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatObjKey.js +34 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatObjKey.ts +35 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatTag.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatTag.js +22 -0
- package/dist/node_modules/ali-oss/lib/common/utils/formatTag.ts +20 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStandardRegion.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStandardRegion.js +7 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStandardRegion.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStrBytesCount.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStrBytesCount.js +17 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getStrBytesCount.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getUserAgent.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getUserAgent.js +18 -0
- package/dist/node_modules/ali-oss/lib/common/utils/getUserAgent.ts +14 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isArray.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isArray.js +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isArray.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBlob.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBlob.js +7 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBlob.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBuffer.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBuffer.js +7 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isBuffer.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isDingTalk.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isDingTalk.js +10 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isDingTalk.ts +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFile.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFile.js +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFile.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFunction.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFunction.js +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isFunction.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isIP.d.ts +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isIP.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isIP.ts +12 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isObject.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isObject.js +6 -0
- package/dist/node_modules/ali-oss/lib/common/utils/isObject.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/lowercaseKeyHeader.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/lowercaseKeyHeader.js +14 -0
- package/dist/node_modules/ali-oss/lib/common/utils/lowercaseKeyHeader.ts +11 -0
- package/dist/node_modules/ali-oss/lib/common/utils/obj2xml.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/obj2xml.js +43 -0
- package/dist/node_modules/ali-oss/lib/common/utils/obj2xml.ts +37 -0
- package/dist/node_modules/ali-oss/lib/common/utils/omit.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/omit.js +11 -0
- package/dist/node_modules/ali-oss/lib/common/utils/omit.ts +9 -0
- package/dist/node_modules/ali-oss/lib/common/utils/policy2Str.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/policy2Str.js +21 -0
- package/dist/node_modules/ali-oss/lib/common/utils/policy2Str.ts +15 -0
- package/dist/node_modules/ali-oss/lib/common/utils/retry.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/common/utils/retry.js +30 -0
- package/dist/node_modules/ali-oss/lib/common/utils/retry.ts +26 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setRegion.d.ts +3 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setRegion.js +20 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setRegion.ts +15 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setSTSToken.d.ts +2 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setSTSToken.js +36 -0
- package/dist/node_modules/ali-oss/lib/common/utils/setSTSToken.ts +32 -0
- package/dist/node_modules/ali-oss/lib/global.d.ts +6 -0
- package/dist/node_modules/ali-oss/lib/image.js +146 -0
- package/dist/node_modules/ali-oss/lib/managed-upload.js +380 -0
- package/dist/node_modules/ali-oss/lib/object.js +420 -0
- package/dist/node_modules/ali-oss/lib/rtmp.js +295 -0
- package/dist/node_modules/ali-oss/lib/setConfig.d.ts +3 -0
- package/dist/node_modules/ali-oss/lib/setConfig.js +42 -0
- package/dist/node_modules/ali-oss/lib/setConfig.ts +52 -0
- package/dist/node_modules/ali-oss/lib/sts.js +156 -0
- package/dist/node_modules/ali-oss/lib/types/experimental.d.ts +1 -0
- package/dist/node_modules/ali-oss/lib/types/experimental.js +2 -0
- package/dist/node_modules/ali-oss/lib/types/experimental.ts +1 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.editorconfig +17 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/.name +1 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/bowser.iml +8 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/encodings.xml +6 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/jsLibraryMappings.xml +8 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/markdown-exported-files.xml +8 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/markdown-navigator/profiles_settings.xml +3 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/markdown-navigator.xml +67 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/misc.xml +6 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/modules.xml +8 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/vcs.xml +6 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/watcherTasks.xml +4 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.idea/workspace.xml +696 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/.travis.yml +8 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/bower.json +33 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/bowser.js +644 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/bowser.min.js +6 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/package.json +38 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/src/bowser.js +644 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/test/test.js +151 -0
- package/dist/node_modules/ali-oss/node_modules/bowser/typings.d.ts +115 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/.vs/ProjectSettings.json +3 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/.vs/config/applicationhost.config +1031 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/.vs/node-dateformat/v15/.suo +0 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/.vs/slnx.sqlite +0 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/lib/dateformat.js +226 -0
- package/dist/node_modules/ali-oss/node_modules/dateformat/package.json +30 -0
- package/dist/node_modules/ali-oss/node_modules/mime/Mime.js +97 -0
- package/dist/node_modules/ali-oss/node_modules/mime/cli.js +46 -0
- package/dist/node_modules/ali-oss/node_modules/mime/index.js +4 -0
- package/dist/node_modules/ali-oss/node_modules/mime/lite.js +4 -0
- package/dist/node_modules/ali-oss/node_modules/mime/package.json +52 -0
- package/dist/node_modules/ali-oss/node_modules/mime/types/other.js +1 -0
- package/dist/node_modules/ali-oss/node_modules/mime/types/standard.js +1 -0
- package/dist/node_modules/ali-oss/package.json +1 -0
- package/dist/node_modules/ali-oss/shims/crypto/crypto.js +98 -0
- package/dist/node_modules/ali-oss/shims/crypto/helpers.js +36 -0
- package/dist/node_modules/ali-oss/shims/crypto/md5.js +152 -0
- package/dist/node_modules/ali-oss/shims/crypto/sha.js +91 -0
- package/dist/node_modules/ali-oss/shims/crypto/sha256.js +163 -0
- package/dist/node_modules/ali-oss/shims/debug.js +3 -0
- package/dist/node_modules/ali-oss/shims/is-type-of.js +18 -0
- package/dist/node_modules/ali-oss/shims/process.js +35 -0
- package/dist/node_modules/ali-oss/shims/stream-http/index.js +82 -0
- package/dist/node_modules/ali-oss/shims/stream-http/lib/capability.js +72 -0
- package/dist/node_modules/ali-oss/shims/stream-http/lib/request.js +320 -0
- package/dist/node_modules/ali-oss/shims/stream-http/lib/response.js +217 -0
- package/dist/node_modules/ali-oss/shims/url/index.js +696 -0
- package/dist/node_modules/ali-oss/shims/url/util.js +16 -0
- package/dist/node_modules/ali-oss/shims/utility.js +25 -0
- package/dist/node_modules/ali-oss/shims/xhr.js +798 -0
- package/dist/node_modules/mime-match/package.json +1 -1
- package/dist/node_modules/mime-types/package.json +1 -1
- package/dist/node_modules/mkdirp/package.json +1 -1
- package/dist/node_modules/multer-cos/package.json +1 -1
- package/dist/node_modules/url-join/package.json +1 -1
- package/dist/server/actions/storages.js +4 -6
- package/dist/server/server.js +1 -0
- package/dist/server/storages/ali-oss.d.ts +15 -1
- package/dist/server/storages/ali-oss.js +66 -2
- package/dist/server/storages/index.d.ts +1 -0
- package/dist/server/storages/local.js +1 -1
- package/dist/server/storages/s3.d.ts +10 -3
- package/dist/server/storages/s3.js +121 -29
- package/dist/server/storages/tx-cos.js +1 -1
- package/dist/server/utils.d.ts +1 -0
- package/dist/server/utils.js +43 -0
- package/package.json +7 -3
- package/dist/node_modules/multer-aliyun-oss/package.json +0 -1
- package/dist/node_modules/multer-s3/.gitattributes +0 -1
- package/dist/node_modules/multer-s3/.travis.yml +0 -6
- package/dist/node_modules/multer-s3/package.json +0 -1
- package/dist/node_modules/multer-s3/test/basic.js +0 -293
- package/dist/node_modules/multer-s3/test/files/a.txt +0 -1
- package/dist/node_modules/multer-s3/test/files/test.svg +0 -3
- package/dist/node_modules/multer-s3/test/files/test2.svg +0 -9
- package/dist/node_modules/multer-s3/test/util/mock-s3.js +0 -17
|
@@ -88,6 +88,12 @@ var storages_default = {
|
|
|
88
88
|
defaultValue: "",
|
|
89
89
|
trim: true
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
comment: "\u91CD\u547D\u540D\u6A21\u5F0F",
|
|
93
|
+
type: "string",
|
|
94
|
+
name: "renameMode",
|
|
95
|
+
defaultValue: "appendRandomID"
|
|
96
|
+
},
|
|
91
97
|
// TODO(feature): 需要使用一个实现了可设置默认值的字段
|
|
92
98
|
{
|
|
93
99
|
comment: "\u9ED8\u8BA4\u5F15\u64CE",
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "2.0.0-
|
|
11
|
+
"@nocobase/client": "2.0.0-beta.2",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"antd": "5.24.2",
|
|
14
14
|
"@ant-design/icons": "5.6.1",
|
|
@@ -19,13 +19,13 @@ module.exports = {
|
|
|
19
19
|
"@formily/core": "2.3.7",
|
|
20
20
|
"@formily/react": "2.3.7",
|
|
21
21
|
"multer": "1.4.5-lts.2",
|
|
22
|
-
"@nocobase/database": "2.0.0-
|
|
23
|
-
"@nocobase/server": "2.0.0-
|
|
24
|
-
"@nocobase/utils": "2.0.0-
|
|
25
|
-
"@nocobase/test": "2.0.0-
|
|
26
|
-
"@nocobase/flow-engine": "2.0.0-
|
|
27
|
-
"@nocobase/actions": "2.0.0-
|
|
22
|
+
"@nocobase/database": "2.0.0-beta.2",
|
|
23
|
+
"@nocobase/server": "2.0.0-beta.2",
|
|
24
|
+
"@nocobase/utils": "2.0.0-beta.2",
|
|
25
|
+
"@nocobase/test": "2.0.0-beta.2",
|
|
26
|
+
"@nocobase/flow-engine": "2.0.0-beta.2",
|
|
27
|
+
"@nocobase/actions": "2.0.0-beta.2",
|
|
28
28
|
"sequelize": "6.35.2",
|
|
29
|
-
"@nocobase/plugin-data-source-main": "2.0.0-
|
|
29
|
+
"@nocobase/plugin-data-source-main": "2.0.0-beta.2",
|
|
30
30
|
"axios": "1.7.7"
|
|
31
31
|
};
|
package/dist/locale/de-DE.json
CHANGED
|
@@ -1,41 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Access base URL": "Basis-URL für den Zugriff",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS-Regionsteil des Buckets. Zum Beispiel: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Hochladen mehrerer Dateien erlauben",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
7
|
+
"Attachment": "Anhang",
|
|
8
|
+
"Base URL": "Basis-URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Basis-URL für den Dateizugriff, könnte Ihre CDN-Basis-URL sein. Zum Beispiel: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Bucket",
|
|
11
|
+
"Default storage": "Standardspeicher",
|
|
12
|
+
"Default storage will be used when not selected": "Wenn nicht ausgewählt, wird der Standardspeicher verwendet",
|
|
13
|
+
"Destination": "Ziel",
|
|
14
|
+
"Endpoint": "Endpunkt",
|
|
15
|
+
"Extension name": "Erweiterungsname",
|
|
2
16
|
"File collection": "Dateisammlung",
|
|
17
|
+
"File manager": "Dateimanager",
|
|
18
|
+
"Renaming": "Umbenennung",
|
|
19
|
+
"Keep original filename (will be overwrite if filename is existed)": "Originaldateinamen beibehalten (wird überschrieben, wenn Dateiname existiert)",
|
|
20
|
+
"Random string": "Zufällige Zeichenfolge",
|
|
21
|
+
"Append random ID": "Zufälliges ID anhängen",
|
|
3
22
|
"File name": "Dateiname",
|
|
4
|
-
"
|
|
5
|
-
"Size": "Größe",
|
|
23
|
+
"File pre-process parameters": "Datei-Vorverarbeitungsparameter",
|
|
6
24
|
"File size limit": "Dateigrößenbegrenzung",
|
|
7
|
-
"
|
|
8
|
-
"File
|
|
9
|
-
"
|
|
25
|
+
"File storage": "Dateispeicher",
|
|
26
|
+
"File type allowed (in MIME type format)": "Erlaubter Dateityp (im MIME-Typ-Format)",
|
|
27
|
+
"Filename": "Dateiname",
|
|
28
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
29
|
+
"Keep file in storage when destroy record": "Datei im Speicher behalten, wenn Datensatz gelöscht wird",
|
|
30
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
31
|
+
"Local storage": "Lokaler Speicher",
|
|
10
32
|
"MIME type": "MIME-Typ",
|
|
11
|
-
"
|
|
33
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
12
34
|
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Mehrere Typen durch Kommas getrennt, zum Beispiel: \"image/*\", \"image/png\", \"image/*, application/pdf\" usw.",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
35
|
+
"Path": "Pfad",
|
|
36
|
+
"Region": "Region",
|
|
37
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relativer Pfad, in dem die Datei gespeichert wird. Leer lassen als Stammpfad. Die führenden und abschließenden Schrägstriche \"/\" werden ignoriert. Zum Beispiel: \"user/avatar\".",
|
|
38
|
+
"Renaming strategy to avoid filename conflicts when uploading files.": "Umbenennungsstrategie, um Dateikonflikte beim Hochladen zu vermeiden.",
|
|
39
|
+
"See more": "Mehr anzeigen",
|
|
40
|
+
"Size": "Größe",
|
|
16
41
|
"Storage": "Speicher",
|
|
17
|
-
"
|
|
42
|
+
"Storage base URL": "Basis-URL des Speichers",
|
|
18
43
|
"Storage display name": "Anzeigename des Speichers",
|
|
19
44
|
"Storage name": "Speichername",
|
|
20
45
|
"Storage type": "Speichertyp",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"Base URL": "Basis-URL",
|
|
24
|
-
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Basis-URL für den Dateizugriff, könnte Ihre CDN-Basis-URL sein. Zum Beispiel: \"https://cdn.nocobase.com\".",
|
|
25
|
-
"Destination": "Ziel",
|
|
26
|
-
"Use the built-in static file server": "Den integrierten statischen Dateiserver verwenden",
|
|
27
|
-
"Local storage": "Lokaler Speicher",
|
|
28
|
-
"Aliyun OSS": "Aliyun OSS",
|
|
29
|
-
"Amazon S3": "Amazon S3",
|
|
46
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
47
|
+
"Storages": "Speicher",
|
|
30
48
|
"Tencent COS": "Tencent COS",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"Will be used for API": "Wird für API verwendet",
|
|
37
|
-
"Default storage will be used when not selected": "Wenn nicht ausgewählt, wird der Standardspeicher verwendet",
|
|
38
|
-
"Keep file in storage when destroy record": "Datei im Speicher behalten, wenn Datensatz gelöscht wird",
|
|
39
|
-
"See more": "Mehr anzeigen",
|
|
40
|
-
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS-Regionsteil des Buckets. Zum Beispiel: \"oss-cn-beijing\"."
|
|
49
|
+
"Timeout": "Timeout",
|
|
50
|
+
"URL": "URL",
|
|
51
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
52
|
+
"Use the built-in static file server": "Den integrierten statischen Dateiserver verwenden",
|
|
53
|
+
"Will be used for API": "Wird für API verwendet"
|
|
41
54
|
}
|
package/dist/locale/en-US.json
CHANGED
|
@@ -1,41 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Access base URL": "Access base URL",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Allow uploading multiple files",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
7
|
+
"Attachment": "Attachment",
|
|
8
|
+
"Base URL": "Base URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Bucket",
|
|
11
|
+
"Default storage": "Default storage",
|
|
12
|
+
"Default storage will be used when not selected": "Default storage will be used when not selected",
|
|
13
|
+
"Destination": "Destination",
|
|
14
|
+
"Endpoint": "Endpoint",
|
|
15
|
+
"Extension name": "Extension name",
|
|
2
16
|
"File collection": "File collection",
|
|
17
|
+
"File manager": "File manager",
|
|
18
|
+
"Renaming": "Renaming",
|
|
19
|
+
"Keep original filename (will be overwrite if filename is existed)": "Keep original filename (will be overwrite if filename is existed)",
|
|
20
|
+
"Random string": "Random string",
|
|
21
|
+
"Append random ID": "Append random ID",
|
|
3
22
|
"File name": "File name",
|
|
4
|
-
"
|
|
5
|
-
"Size": "Size",
|
|
23
|
+
"File pre-process parameters": "File pre-process parameters",
|
|
6
24
|
"File size limit": "File size limit",
|
|
7
|
-
"
|
|
25
|
+
"File storage": "File storage",
|
|
26
|
+
"File type allowed (in MIME type format)": "File type allowed (in MIME type format)",
|
|
27
|
+
"Filename": "Filename",
|
|
28
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
29
|
+
"Keep file in storage when destroy record": "Keep file in storage when destroy record",
|
|
30
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
31
|
+
"Local storage": "Local storage",
|
|
8
32
|
"MIME type": "MIME type",
|
|
9
|
-
"
|
|
33
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
10
34
|
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
35
|
+
"Path": "Path",
|
|
36
|
+
"Region": "Region",
|
|
37
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".",
|
|
38
|
+
"Renaming strategy to avoid filename conflicts when uploading files.": "Renaming strategy to avoid filename conflicts when uploading files.",
|
|
39
|
+
"See more": "See more",
|
|
40
|
+
"Size": "Size",
|
|
16
41
|
"Storage": "Storage",
|
|
17
|
-
"
|
|
42
|
+
"Storage base URL": "Storage base URL",
|
|
43
|
+
"Storage display name": "Storage display name",
|
|
18
44
|
"Storage name": "Storage name",
|
|
19
45
|
"Storage type": "Storage type",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".",
|
|
23
|
-
"Destination": "Destination",
|
|
24
|
-
"Use the built-in static file server": "Use the built-in static file server",
|
|
25
|
-
"Local storage": "Local storage",
|
|
26
|
-
"Aliyun OSS": "Aliyun OSS",
|
|
27
|
-
"Amazon S3": "Amazon S3",
|
|
46
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
47
|
+
"Storages": "Storages",
|
|
28
48
|
"Tencent COS": "Tencent COS",
|
|
29
|
-
"Region": "Region",
|
|
30
|
-
"Bucket": "Bucket",
|
|
31
|
-
"Path": "Path",
|
|
32
|
-
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".",
|
|
33
|
-
"Filename": "Filename",
|
|
34
|
-
"Will be used for API": "Will be used for API",
|
|
35
|
-
"Default storage will be used when not selected": "Default storage will be used when not selected",
|
|
36
|
-
"Keep file in storage when destroy record": "Keep file in storage when destroy record",
|
|
37
|
-
"See more": "See more",
|
|
38
|
-
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".",
|
|
39
49
|
"Timeout": "Timeout",
|
|
40
|
-
"
|
|
41
|
-
|
|
50
|
+
"URL": "URL",
|
|
51
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
52
|
+
"Use the built-in static file server": "Use the built-in static file server",
|
|
53
|
+
"Will be used for API": "Will be used for API"
|
|
54
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Access base URL": "Access base URL",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Allow uploading multiple files",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
7
|
+
"Attachment": "Attachment",
|
|
8
|
+
"Base URL": "Base URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Bucket",
|
|
11
|
+
"Default storage": "Default storage",
|
|
12
|
+
"Default storage will be used when not selected": "Default storage will be used when not selected",
|
|
13
|
+
"Destination": "Destination",
|
|
14
|
+
"Endpoint": "Punto final",
|
|
15
|
+
"Extension name": "Extension name",
|
|
16
|
+
"File collection": "File collection",
|
|
17
|
+
"File manager": "File manager",
|
|
18
|
+
"Renaming": "Renombrar",
|
|
19
|
+
"Keep original filename (will be overwrite if filename is existed)": "Mantener nombre original (se sobrescribirá si existe)",
|
|
20
|
+
"Random string": "Cadena aleatoria",
|
|
21
|
+
"Append random ID": "Añadir ID aleatorio",
|
|
22
|
+
"File name": "File name",
|
|
23
|
+
"File pre-process parameters": "Parámetros de preprocesamiento de archivos",
|
|
24
|
+
"File size limit": "File size limit",
|
|
25
|
+
"File storage": "File storage",
|
|
26
|
+
"File type allowed (in MIME type format)": "Tipo de archivo permitido (en formato MIME)",
|
|
27
|
+
"Filename": "Filename",
|
|
28
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
29
|
+
"Keep file in storage when destroy record": "Keep file in storage when destroy record",
|
|
30
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
31
|
+
"Local storage": "Local storage",
|
|
32
|
+
"MIME type": "MIME type",
|
|
33
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
34
|
+
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.",
|
|
35
|
+
"Path": "Path",
|
|
36
|
+
"Region": "Region",
|
|
37
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".",
|
|
38
|
+
"Renaming strategy to avoid filename conflicts when uploading files.": "Estrategia de renombrado para evitar conflictos de nombres de archivo al subir archivos.",
|
|
39
|
+
"See more": "See more",
|
|
40
|
+
"Size": "Size",
|
|
41
|
+
"Storage": "Storage",
|
|
42
|
+
"Storage base URL": "Storage base URL",
|
|
43
|
+
"Storage display name": "Storage display name",
|
|
44
|
+
"Storage name": "Storage name",
|
|
45
|
+
"Storage type": "Storage type",
|
|
46
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
47
|
+
"Storages": "Storages",
|
|
48
|
+
"Tencent COS": "Tencent COS",
|
|
49
|
+
"Timeout": "Timeout",
|
|
50
|
+
"URL": "URL",
|
|
51
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
52
|
+
"Use the built-in static file server": "Use the built-in static file server",
|
|
53
|
+
"Will be used for API": "Will be used for API"
|
|
54
|
+
}
|
package/dist/locale/fr-FR.json
CHANGED
|
@@ -1,21 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"Access base URL": "Access base URL",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Allow uploading multiple files",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
3
7
|
"Attachment": "Pièce jointe",
|
|
8
|
+
"Base URL": "Base URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Bucket",
|
|
11
|
+
"Default storage": "Stockage par défaut",
|
|
12
|
+
"Default storage will be used when not selected": "Default storage will be used when not selected",
|
|
13
|
+
"Destination": "Destination",
|
|
14
|
+
"Endpoint": "Point de terminaison",
|
|
15
|
+
"Extension name": "Extension name",
|
|
16
|
+
"File collection": "File collection",
|
|
17
|
+
"File manager": "Gestionnaire de fichiers",
|
|
18
|
+
"Renaming": "Renommage",
|
|
19
|
+
"Keep original filename (will be overwrite if filename is existed)": "Conserver le nom d'origine (sera écrasé si le fichier existe)",
|
|
20
|
+
"Random string": "Chaîne aléatoire",
|
|
21
|
+
"Append random ID": "Ajouter un ID aléatoire",
|
|
22
|
+
"File name": "File name",
|
|
23
|
+
"File pre-process parameters": "File pre-process parameters",
|
|
24
|
+
"File size limit": "File size limit",
|
|
25
|
+
"File storage": "File storage",
|
|
26
|
+
"File type allowed (in MIME type format)": "Type de fichier autorisé (au format MIME)",
|
|
27
|
+
"Filename": "Nom de fichier",
|
|
28
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
29
|
+
"Keep file in storage when destroy record": "Keep file in storage when destroy record",
|
|
30
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
31
|
+
"Local storage": "Stockage local",
|
|
4
32
|
"MIME type": "Type MIME",
|
|
33
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
34
|
+
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.",
|
|
35
|
+
"Path": "Chemin",
|
|
36
|
+
"Region": "Region",
|
|
37
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".",
|
|
38
|
+
"Renaming strategy to avoid filename conflicts when uploading files.": "Stratégie de renommage pour éviter les conflits de noms de fichiers lors du téléchargement.",
|
|
39
|
+
"See more": "See more",
|
|
40
|
+
"Size": "Size",
|
|
41
|
+
"Storage": "Storage",
|
|
42
|
+
"Storage base URL": "URL de base du stockage",
|
|
5
43
|
"Storage display name": "Nom d'affichage du stockage",
|
|
6
44
|
"Storage name": "Nom du stockage",
|
|
7
45
|
"Storage type": "Type de stockage",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"Destination": "Destination",
|
|
11
|
-
"Use the built-in static file server": "Utiliser le serveur de fichiers statique intégré",
|
|
12
|
-
"Local storage": "Stockage local",
|
|
13
|
-
"Aliyun OSS": "Aliyun OSS",
|
|
46
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
47
|
+
"Storages": "Storages",
|
|
14
48
|
"Tencent COS": "Tencent COS",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"Filename": "Nom de fichier",
|
|
49
|
+
"Timeout": "Timeout",
|
|
50
|
+
"URL": "URL",
|
|
51
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
52
|
+
"Use the built-in static file server": "Utiliser le serveur de fichiers statique intégré",
|
|
20
53
|
"Will be used for API": "Sera utilisé pour l'API"
|
|
21
54
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Access base URL": "Hozzáférési alap URL",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Az Aliyun OSS tároló régió része. Például: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Több fájl feltöltésének engedélyezése",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
7
|
+
"Attachment": "Csatolmány",
|
|
8
|
+
"Base URL": "Base URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "Alap URL a fájl hozzáféréshez, lehet a CDN alap URL-je. Például: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Tároló",
|
|
11
|
+
"Default storage": "Alapértelmezett tárhely",
|
|
12
|
+
"Default storage will be used when not selected": "Alapértelmezett tárhely lesz használva, ha nincs kiválasztva",
|
|
13
|
+
"Destination": "Célhely",
|
|
14
|
+
"Extension name": "Kiterjesztés neve",
|
|
15
|
+
"File collection": "Fájlgyűjtemény",
|
|
16
|
+
"File manager": "Fájlkezelő",
|
|
17
|
+
"File name": "Fájl név",
|
|
18
|
+
"File size limit": "Fájlméret korlát",
|
|
19
|
+
"File storage": "Fájltárolás",
|
|
20
|
+
"File type (in MIME type format)": "Fájltípus (MIME típus formátumban)",
|
|
21
|
+
"Filename": "Fájlnév",
|
|
22
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
23
|
+
"Keep file in storage when destroy record": "Fájl megtartása a tárhelyen a rekord törlésekor",
|
|
24
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
25
|
+
"Local storage": "Helyi tárhely",
|
|
26
|
+
"MIME type": "MIME típus",
|
|
27
|
+
"Minimum from 1 byte, maximum up to 1GB.": "Minimum 1 byte, maximum 1GB-ig.",
|
|
28
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
29
|
+
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Több típus vesszővel elválasztva, például: \"image/*\", \"image/png\", \"image/*, application/pdf\" stb.",
|
|
30
|
+
"Path": "Útvonal",
|
|
31
|
+
"Region": "Régió",
|
|
32
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Relatív útvonal, ahová a fájl mentésre kerül. Üresen hagyva gyökér útvonal. A kezdő és záró \"/\" karaktereket figyelmen kívül hagyjuk. Például: \"user/avatar\".",
|
|
33
|
+
"See more": "Továbbiak",
|
|
34
|
+
"Size": "Méret",
|
|
35
|
+
"Storage": "Tárhely",
|
|
36
|
+
"Storage base URL": "Tárhely alap URL",
|
|
37
|
+
"Storage display name": "Tárhely megjelenített neve",
|
|
38
|
+
"Storage name": "Tárhely neve",
|
|
39
|
+
"Storage type": "Tárhely típus",
|
|
40
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
41
|
+
"Storages": "Tárhelyek",
|
|
42
|
+
"Tencent COS": "Tencent COS",
|
|
43
|
+
"Timeout": "Timeout",
|
|
44
|
+
"URL": "URL",
|
|
45
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
46
|
+
"Use the built-in static file server": "A beépített statikus fájlkiszolgáló használata",
|
|
47
|
+
"Will be used for API": "Az API-hoz lesz használva"
|
|
48
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Access base URL": "URL dasar akses",
|
|
3
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Bagian wilayah Aliyun OSS dari bucket. Contoh: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Izinkan mengunggah beberapa file",
|
|
6
|
+
"Amazon S3": "Amazon S3",
|
|
7
|
+
"Attachment": "Lampiran",
|
|
8
|
+
"Base URL": "Base URL",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "URL dasar untuk akses file, bisa jadi URL dasar CDN Anda. Contoh: \"https://cdn.nocobase.com\".",
|
|
10
|
+
"Bucket": "Bucket",
|
|
11
|
+
"Default storage": "Penyimpanan default",
|
|
12
|
+
"Default storage will be used when not selected": "Penyimpanan default akan digunakan jika tidak dipilih",
|
|
13
|
+
"Destination": "Tujuan",
|
|
14
|
+
"Extension name": "Nama ekstensi",
|
|
15
|
+
"File collection": "Koleksi file",
|
|
16
|
+
"File manager": "Manajer file",
|
|
17
|
+
"File name": "Nama file",
|
|
18
|
+
"File size limit": "Batas ukuran file",
|
|
19
|
+
"File storage": "Penyimpanan file",
|
|
20
|
+
"File type (in MIME type format)": "Tipe file (dalam format tipe MIME)",
|
|
21
|
+
"Filename": "Nama file",
|
|
22
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
23
|
+
"Keep file in storage when destroy record": "Simpan file di penyimpanan saat menghapus catatan",
|
|
24
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
25
|
+
"Local storage": "Penyimpanan lokal",
|
|
26
|
+
"MIME type": "Tipe MIME",
|
|
27
|
+
"Minimum from 1 byte, maximum up to 1GB.": "Minimum 1 byte, maksimum hingga 1GB.",
|
|
28
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
29
|
+
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Beberapa tipe dipisahkan dengan koma, contoh: \"image/*\", \"image/png\", \"image/*, application/pdf\" dll.",
|
|
30
|
+
"Path": "Jalur",
|
|
31
|
+
"Region": "Wilayah",
|
|
32
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Jalur relatif tempat file akan disimpan. Biarkan kosong sebagai jalur root. Garis miring di awal dan akhir \"/\" akan diabaikan. Contoh: \"user/avatar\".",
|
|
33
|
+
"See more": "Lihat selengkapnya",
|
|
34
|
+
"Size": "Ukuran",
|
|
35
|
+
"Storage": "Penyimpanan",
|
|
36
|
+
"Storage base URL": "URL dasar penyimpanan",
|
|
37
|
+
"Storage display name": "Nama tampilan penyimpanan",
|
|
38
|
+
"Storage name": "Nama penyimpanan",
|
|
39
|
+
"Storage type": "Tipe penyimpanan",
|
|
40
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
41
|
+
"Storages": "Penyimpanan",
|
|
42
|
+
"Tencent COS": "Tencent COS",
|
|
43
|
+
"Timeout": "Timeout",
|
|
44
|
+
"URL": "URL",
|
|
45
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
46
|
+
"Use the built-in static file server": "Gunakan server file statis bawaan",
|
|
47
|
+
"Will be used for API": "Akan digunakan untuk API"
|
|
48
|
+
}
|
package/dist/locale/it-IT.json
CHANGED
|
@@ -1,39 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"Attachment": "Allegato",
|
|
4
|
-
"MIME type": "Tipo MIME",
|
|
5
|
-
"Storage name": "Nome archivio",
|
|
6
|
-
"Storage type": "Tipo archivio",
|
|
7
|
-
"Default storage": "Archivio predefinito",
|
|
8
|
-
"Destination": "Destinazione",
|
|
9
|
-
"Use the built-in static file server": "Usa il server di file statici integrato",
|
|
10
|
-
"Local storage": "Archivio locale",
|
|
2
|
+
"Access base URL": "URL base accesso",
|
|
11
3
|
"Aliyun OSS": "Aliyun OSS",
|
|
12
|
-
"
|
|
4
|
+
"Aliyun OSS region part of the bucket. For example: \"oss-cn-beijing\".": "Parte della regione Aliyun OSS del bucket. Ad esempio: \"oss-cn-beijing\".",
|
|
5
|
+
"Allow uploading multiple files": "Consenti caricamento di più file",
|
|
13
6
|
"Amazon S3": "Amazon S3",
|
|
14
|
-
"
|
|
7
|
+
"Attachment": "Allegato",
|
|
8
|
+
"Base URL": "URL base",
|
|
9
|
+
"Base URL for file access, could be your CDN base URL. For example: \"https://cdn.nocobase.com\".": "URL base per l'accesso ai file, potrebbe essere l'URL base del tuo CDN. Ad esempio: \"https://cdn.nocobase.com\".",
|
|
15
10
|
"Bucket": "Bucket",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
11
|
+
"Default storage": "Archivio predefinito",
|
|
12
|
+
"Default storage will be used when not selected": "Se non selezionato verrà utilizzato lo spazio di archiviazione predefinito",
|
|
13
|
+
"Destination": "Destinazione",
|
|
14
|
+
"Endpoint": "Endpoint",
|
|
15
|
+
"Extension name": "Nome estensione",
|
|
20
16
|
"File collection": "Raccolta file",
|
|
17
|
+
"File manager": "Gestore file",
|
|
18
|
+
"Renaming": "Rinomina",
|
|
19
|
+
"Keep original filename (will be overwrite if filename is existed)": "Mantieni nome originale (verrà sovrascritto se esiste)",
|
|
20
|
+
"Random string": "Stringa casuale",
|
|
21
|
+
"Append random ID": "Aggiungi ID casuale",
|
|
21
22
|
"File name": "Nome file",
|
|
22
|
-
"
|
|
23
|
-
"Size": "Dimensione file",
|
|
23
|
+
"File pre-process parameters": "Parametri di pre-elaborazione file",
|
|
24
24
|
"File size limit": "Limite dimensione file",
|
|
25
|
-
"Minimum from 1 byte, maximum up to 1GB.": "Minimo da 1 byte, massimo fino a 1GB.",
|
|
26
|
-
"File type (in MIME type format)": "Tipo di file (in formato MIME)",
|
|
27
|
-
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Più tipi separati da virgola, ad esempio: \"image/*\", \"image/png\", \"image/*, application/pdf\" ecc.",
|
|
28
|
-
"URL": "URL",
|
|
29
25
|
"File storage": "Archiviazione file",
|
|
30
|
-
"
|
|
26
|
+
"File type allowed (in MIME type format)": "Tipo di file consentito (in formato MIME)",
|
|
27
|
+
"Filename": "Nome file",
|
|
28
|
+
"Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.": "Files are only removed when their corresponding records in the file collection are deleted. If a record from another collection includes an associating field referencing the file collection, the file will not be deleted unless cascade deletion is enabled for that association.",
|
|
29
|
+
"Keep file in storage when destroy record": "Quando elimini il record mantieni il file nello spazio di archiviazione",
|
|
30
|
+
"Keep file in storage when destroy the file record": "Keep file in storage when destroy the file record",
|
|
31
|
+
"Local storage": "Archivio locale",
|
|
32
|
+
"MIME type": "Tipo MIME",
|
|
33
|
+
"Minimum from 1 byte.": "Minimum from 1 byte.",
|
|
34
|
+
"Multi-types seperated with comma, for example: \"image/*\", \"image/png\", \"image/*, application/pdf\" etc.": "Più tipi separati da virgola, ad esempio: \"image/*\", \"image/png\", \"image/*, application/pdf\" ecc.",
|
|
35
|
+
"Path": "Percorso",
|
|
36
|
+
"Region": "Regione",
|
|
37
|
+
"Relative path the file will be saved to. Left blank as root path. The leading and trailing slashes \"/\" will be ignored. For example: \"user/avatar\".": "Percorso relativo in cui verrà salvato il file. Lasciare vuoto per il percorso radice. Le barre iniziali e finali \"/\" verranno ignorate. Ad esempio: \"user/avatar\".",
|
|
38
|
+
"Renaming strategy to avoid filename conflicts when uploading files.": "Strategia di rinominazione per evitare conflitti di nomi di file durante il caricamento dei file.",
|
|
39
|
+
"See more": "Vedi altro",
|
|
40
|
+
"Size": "Dimensione file",
|
|
31
41
|
"Storage": "Spazio di archiviazione",
|
|
42
|
+
"Storage base URL": "Storage base URL",
|
|
43
|
+
"Storage display name": "Storage display name",
|
|
44
|
+
"Storage name": "Nome archivio",
|
|
45
|
+
"Storage type": "Tipo archivio",
|
|
46
|
+
"Storage type {{type}} is not registered, please check if related plugin is enabled.": "Storage type {{type}} is not registered, please check if related plugin is enabled.",
|
|
32
47
|
"Storages": "Spazi di archiviazione",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
48
|
+
"Tencent COS": "Tencent COS",
|
|
49
|
+
"Timeout": "Timeout",
|
|
50
|
+
"URL": "URL",
|
|
51
|
+
"Upload timeout for a single file in milliseconds. Default is 600000.": "Upload timeout for a single file in milliseconds. Default is 600000.",
|
|
52
|
+
"Use the built-in static file server": "Usa il server di file statici integrato",
|
|
53
|
+
"Will be used for API": "Sarà utilizzato per l'API"
|
|
39
54
|
}
|