@uploadcare/file-uploader 1.27.0 → 1.28.0-alpha.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/dist/CameraSource-DbyO6GoK.js +481 -0
- package/dist/CameraSource-px4BzEMI.js +9 -0
- package/dist/CloudImageEditor-BIxf1V4M.js +2162 -0
- package/dist/CloudImageEditorActivity-CJxP5N0S.js +9 -0
- package/dist/CloudImageEditorActivity-d4DpK6fQ.js +87 -0
- package/dist/Config-DuWre5p3.js +433 -0
- package/dist/ExternalSource-BKTFp95O.js +248 -0
- package/dist/ExternalSource-CR5DG0Jv.js +9 -0
- package/dist/Icon-CqTVC82Q.js +1811 -0
- package/dist/LitUploaderBlock-BA34rzeU.js +998 -0
- package/dist/UrlSource-BxVL9Pve.js +9 -0
- package/dist/UrlSource-DZK5EBwT.js +73 -0
- package/dist/abstract/CTX.d.ts +40 -0
- package/dist/abstract/TypedCollection.d.ts +47 -0
- package/dist/abstract/TypedCollection.test.d.ts +1 -0
- package/dist/abstract/TypedData.d.ts +12 -0
- package/dist/abstract/TypedData.test.d.ts +1 -0
- package/dist/abstract/UploaderPublicApi.d.ts +41 -0
- package/dist/abstract/buildOutputCollectionState.d.ts +3 -0
- package/dist/abstract/customConfigOptions.d.ts +65 -0
- package/dist/abstract/defineComponents.d.ts +1 -0
- package/dist/abstract/features/ClipboardLayer.d.ts +12 -0
- package/dist/abstract/loadFileUploaderFrom.d.ts +3 -4
- package/dist/abstract/loadFileUploaderFrom.js +7 -6
- package/dist/abstract/localeRegistry.d.ts +5 -0
- package/dist/abstract/managers/LocaleManager.d.ts +10 -0
- package/dist/abstract/managers/ModalManager.d.ts +53 -0
- package/dist/abstract/managers/SecureUploadsManager.d.ts +7 -0
- package/dist/abstract/managers/TelemetryManager.d.ts +41 -0
- package/dist/abstract/managers/ValidationManager.d.ts +34 -0
- package/dist/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
- package/dist/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
- package/dist/abstract/managers/a11y.d.ts +9 -0
- package/dist/abstract/managers/plugin/PluginManager.d.ts +25 -0
- package/dist/abstract/managers/plugin/PluginTypes.d.ts +146 -0
- package/dist/abstract/managers/plugin/index.d.ts +2 -0
- package/dist/abstract/sharedConfigKey.d.ts +2 -0
- package/dist/abstract/uploadEntrySchema.d.ts +34 -0
- package/dist/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
- package/dist/blocks/CameraSource/CameraSource.d.ts +121 -0
- package/dist/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
- package/dist/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/dist/blocks/CameraSource/constants.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/index.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
- package/dist/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
- package/dist/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
- package/dist/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
- package/dist/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
- package/dist/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
- package/dist/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
- package/dist/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
- package/dist/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
- package/dist/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
- package/dist/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/state.d.ts +20 -0
- package/dist/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
- package/dist/blocks/CloudImageEditor/src/types.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
- package/dist/blocks/Config/Config.d.ts +60 -0
- package/dist/blocks/Config/assertions.d.ts +5 -0
- package/dist/blocks/Config/computed-properties.d.ts +24 -0
- package/dist/blocks/Config/computed-properties.test.d.ts +1 -0
- package/dist/blocks/Config/initialConfig.d.ts +6 -0
- package/dist/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/dist/blocks/Config/validatorsType.d.ts +18 -0
- package/dist/blocks/Copyright/Copyright.d.ts +10 -0
- package/dist/blocks/DropArea/DropArea.d.ts +47 -0
- package/dist/blocks/DropArea/addDropzone.d.ts +17 -0
- package/dist/blocks/DropArea/getDropItems.d.ts +12 -0
- package/dist/blocks/ExternalSource/ExternalSource.d.ts +45 -0
- package/dist/blocks/ExternalSource/MessageBridge.d.ts +11 -0
- package/dist/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
- package/dist/blocks/ExternalSource/query-string.d.ts +1 -0
- package/dist/blocks/ExternalSource/types.d.ts +105 -0
- package/dist/blocks/FileItem/FileItem.d.ts +50 -0
- package/dist/blocks/FileItem/FileItemConfig.d.ts +10 -0
- package/dist/blocks/FormInput/FormInput.d.ts +18 -0
- package/dist/blocks/Icon/Icon.d.ts +19 -0
- package/dist/blocks/Img/Img.d.ts +14 -0
- package/dist/blocks/Img/ImgBase.d.ts +29 -0
- package/dist/blocks/Img/ImgConfig.d.ts +28 -0
- package/dist/blocks/Img/configurations.d.ts +11 -0
- package/dist/blocks/Img/props-map.d.ts +28 -0
- package/dist/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/dist/blocks/Modal/Modal.d.ts +34 -0
- package/dist/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
- package/dist/blocks/PluginActivityRenderer/index.d.ts +1 -0
- package/dist/blocks/ProgressBar/ProgressBar.d.ts +21 -0
- package/dist/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
- package/dist/blocks/Select/Select.d.ts +18 -0
- package/dist/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
- package/dist/blocks/SourceBtn/SourceBtn.d.ts +23 -0
- package/dist/blocks/SourceList/SourceList.d.ts +24 -0
- package/dist/blocks/Spinner/Spinner.d.ts +9 -0
- package/dist/blocks/StartFrom/StartFrom.d.ts +12 -0
- package/dist/blocks/Thumb/Thumb.d.ts +35 -0
- package/dist/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
- package/dist/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
- package/dist/blocks/UploadList/UploadList.d.ts +39 -0
- package/dist/blocks/UrlSource/UrlSource.d.ts +14 -0
- package/dist/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
- package/dist/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
- package/dist/cameraPlugin-dGash48Q.js +8 -0
- package/dist/cloud-image-editor-fNswWrI4.js +11 -0
- package/dist/cloudImageEditorPlugin-2EU0Pm_j.js +8 -0
- package/dist/core.d.ts +42 -0
- package/dist/en-DNCwRJsB.js +135 -0
- package/dist/env-B1nfXy9i.js +8 -0
- package/dist/env.d.ts +2 -4
- package/dist/env.js +7 -6
- package/dist/externalSourcesPlugin-DKQqk3AC.js +8 -0
- package/dist/imageShrinkPlugin-DAx8eRen.js +8 -0
- package/dist/index.css +3964 -6
- package/dist/index.d.ts +29 -2715
- package/dist/index.js +1011 -8
- package/dist/index.layered.css +4478 -7
- package/dist/instagramPlugin-k67tMAo3.js +8 -0
- package/dist/lit/BaseComponent.d.ts +12 -0
- package/dist/lit/Constructor.d.ts +1 -0
- package/dist/lit/CssDataMixin.d.ts +7 -0
- package/dist/lit/LightDomMixin.d.ts +8 -0
- package/dist/lit/LitActivityBlock.d.ts +53 -0
- package/dist/lit/LitBlock.d.ts +83 -0
- package/dist/lit/LitSolutionBlock.d.ts +21 -0
- package/dist/lit/LitUploaderBlock.d.ts +53 -0
- package/dist/lit/PubSubCompat.d.ts +18 -0
- package/dist/lit/RegisterableElementMixin.d.ts +7 -0
- package/dist/lit/SharedState.d.ts +119 -0
- package/dist/lit/SymbioteCompatMixin.d.ts +40 -0
- package/dist/lit/TestModeController.d.ts +16 -0
- package/dist/lit/Uid.d.ts +3 -0
- package/dist/lit/activity-constants.d.ts +11 -0
- package/dist/lit/createDebugPrinter.d.ts +3 -0
- package/dist/lit/findBlockInCtx.d.ts +3 -0
- package/dist/lit/getOutputData.d.ts +2 -0
- package/dist/lit/hasBlockInCtx.d.ts +3 -0
- package/dist/lit/l10n.d.ts +5 -0
- package/dist/lit/parseCssPropertyValue.d.ts +1 -0
- package/dist/lit/shared-instances.d.ts +65 -0
- package/dist/loadFileUploaderFrom-BWJM43Yq.js +28 -0
- package/dist/locales/file-uploader/ar.d.ts +1 -4
- package/dist/locales/file-uploader/ar.js +142 -6
- package/dist/locales/file-uploader/az.d.ts +1 -4
- package/dist/locales/file-uploader/az.js +134 -6
- package/dist/locales/file-uploader/ca.d.ts +1 -4
- package/dist/locales/file-uploader/ca.js +136 -6
- package/dist/locales/file-uploader/cs.d.ts +1 -4
- package/dist/locales/file-uploader/cs.js +138 -6
- package/dist/locales/file-uploader/da.d.ts +1 -4
- package/dist/locales/file-uploader/da.js +134 -6
- package/dist/locales/file-uploader/de.d.ts +1 -4
- package/dist/locales/file-uploader/de.js +134 -6
- package/dist/locales/file-uploader/el.d.ts +1 -4
- package/dist/locales/file-uploader/el.js +134 -6
- package/dist/locales/file-uploader/en.d.ts +1 -4
- package/dist/locales/file-uploader/en.js +7 -6
- package/dist/locales/file-uploader/es.d.ts +1 -4
- package/dist/locales/file-uploader/es.js +136 -6
- package/dist/locales/file-uploader/et.d.ts +1 -4
- package/dist/locales/file-uploader/et.js +134 -6
- package/dist/locales/file-uploader/fi.d.ts +1 -4
- package/dist/locales/file-uploader/fi.js +134 -6
- package/dist/locales/file-uploader/fr.d.ts +1 -4
- package/dist/locales/file-uploader/fr.js +136 -6
- package/dist/locales/file-uploader/he.d.ts +1 -4
- package/dist/locales/file-uploader/he.js +136 -6
- package/dist/locales/file-uploader/hy.d.ts +1 -4
- package/dist/locales/file-uploader/hy.js +134 -6
- package/dist/locales/file-uploader/is.d.ts +1 -4
- package/dist/locales/file-uploader/is.js +134 -6
- package/dist/locales/file-uploader/it.d.ts +1 -4
- package/dist/locales/file-uploader/it.js +136 -6
- package/dist/locales/file-uploader/ja.d.ts +1 -4
- package/dist/locales/file-uploader/ja.js +134 -6
- package/dist/locales/file-uploader/ka.d.ts +1 -4
- package/dist/locales/file-uploader/ka.js +134 -6
- package/dist/locales/file-uploader/kk.d.ts +1 -4
- package/dist/locales/file-uploader/kk.js +134 -6
- package/dist/locales/file-uploader/ko.d.ts +1 -4
- package/dist/locales/file-uploader/ko.js +134 -6
- package/dist/locales/file-uploader/lv.d.ts +1 -4
- package/dist/locales/file-uploader/lv.js +136 -6
- package/dist/locales/file-uploader/nb.d.ts +1 -4
- package/dist/locales/file-uploader/nb.js +134 -6
- package/dist/locales/file-uploader/nl.d.ts +1 -4
- package/dist/locales/file-uploader/nl.js +134 -6
- package/dist/locales/file-uploader/pl.d.ts +1 -4
- package/dist/locales/file-uploader/pl.js +138 -6
- package/dist/locales/file-uploader/pt.d.ts +1 -4
- package/dist/locales/file-uploader/pt.js +136 -6
- package/dist/locales/file-uploader/ro.d.ts +1 -4
- package/dist/locales/file-uploader/ro.js +136 -6
- package/dist/locales/file-uploader/ru.d.ts +1 -4
- package/dist/locales/file-uploader/ru.js +138 -6
- package/dist/locales/file-uploader/sk.d.ts +1 -4
- package/dist/locales/file-uploader/sk.js +138 -6
- package/dist/locales/file-uploader/sr.d.ts +1 -4
- package/dist/locales/file-uploader/sr.js +136 -6
- package/dist/locales/file-uploader/sv.d.ts +1 -4
- package/dist/locales/file-uploader/sv.js +134 -6
- package/dist/locales/file-uploader/tr.d.ts +1 -4
- package/dist/locales/file-uploader/tr.js +134 -6
- package/dist/locales/file-uploader/uk.d.ts +1 -4
- package/dist/locales/file-uploader/uk.js +138 -6
- package/dist/locales/file-uploader/vi.d.ts +1 -4
- package/dist/locales/file-uploader/vi.js +134 -6
- package/dist/locales/file-uploader/zh-TW.d.ts +1 -4
- package/dist/locales/file-uploader/zh-TW.js +134 -6
- package/dist/locales/file-uploader/zh.d.ts +1 -4
- package/dist/locales/file-uploader/zh.js +134 -6
- package/dist/plugins/cameraPlugin.d.ts +2 -0
- package/dist/plugins/cloudImageEditorPlugin.d.ts +2 -0
- package/dist/plugins/externalSourcesPlugin.d.ts +2 -0
- package/dist/plugins/imageShrinkPlugin.d.ts +2 -0
- package/dist/plugins/instagramPlugin.d.ts +2 -0
- package/dist/plugins/unsplashPlugin.d.ts +16 -0
- package/dist/plugins/urlSourcePlugin.d.ts +2 -0
- package/dist/plugins-DxjsQUa8.js +278 -0
- package/dist/solutions/adaptive-image/index.d.ts +2 -0
- package/dist/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
- package/dist/solutions/cloud-image-editor/index.d.ts +5 -0
- package/dist/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
- package/dist/solutions/file-uploader/inline/index.d.ts +1 -0
- package/dist/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
- package/dist/solutions/file-uploader/minimal/index.d.ts +1 -0
- package/dist/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
- package/dist/solutions/file-uploader/regular/index.d.ts +1 -0
- package/dist/types/dom.d.ts +1 -0
- package/dist/types/events.d.ts +4 -0
- package/dist/types/exported.d.ts +492 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/urlSourcePlugin-9xdB7Pvw.js +8 -0
- package/dist/utils/UID.d.ts +5 -0
- package/dist/utils/UID.test.d.ts +1 -0
- package/dist/utils/UploadSource.d.ts +37 -0
- package/dist/utils/WindowHeightTracker.d.ts +9 -0
- package/dist/utils/abilities.d.ts +1 -0
- package/dist/utils/applyStyles.d.ts +1 -0
- package/dist/utils/browser-info.d.ts +12 -0
- package/dist/utils/browser-info.test.d.ts +1 -0
- package/dist/utils/cdn-utils.d.ts +53 -0
- package/dist/utils/cdn-utils.test.d.ts +1 -0
- package/dist/utils/comma-separated.d.ts +2 -0
- package/dist/utils/debounce.d.ts +3 -0
- package/dist/utils/delay.d.ts +1 -0
- package/dist/utils/fileTypes.d.ts +11 -0
- package/dist/utils/fileTypes.test.d.ts +1 -0
- package/dist/utils/get-top-level-origin.d.ts +1 -0
- package/dist/utils/get-top-level-origin.test.d.ts +1 -0
- package/dist/utils/getLocaleDirection.d.ts +1 -0
- package/dist/utils/getPluralForm.d.ts +1 -0
- package/dist/utils/getPluralForm.test.d.ts +1 -0
- package/dist/utils/isPromiseLike.d.ts +1 -0
- package/dist/utils/isPromiseLike.test.d.ts +1 -0
- package/dist/utils/isSecureTokenExpired.d.ts +8 -0
- package/dist/utils/isSecureTokenExpired.test.d.ts +1 -0
- package/dist/utils/memoize.d.ts +1 -0
- package/dist/utils/memoize.test.d.ts +1 -0
- package/dist/utils/mixinClass.d.ts +8 -0
- package/dist/utils/parseCdnUrl.d.ts +11 -0
- package/dist/utils/parseCdnUrl.test.d.ts +1 -0
- package/dist/utils/parseShrink.d.ts +7 -0
- package/dist/utils/parseShrink.test.d.ts +1 -0
- package/dist/utils/preloadImage.d.ts +10 -0
- package/dist/utils/prettyBytes.d.ts +11 -0
- package/dist/utils/prettyBytes.test.d.ts +1 -0
- package/dist/utils/resizeImage.d.ts +1 -0
- package/dist/utils/stringToArray.d.ts +1 -0
- package/dist/utils/stringToArray.test.d.ts +1 -0
- package/dist/utils/template-utils.d.ts +16 -0
- package/dist/utils/template-utils.test.d.ts +1 -0
- package/dist/utils/throttle.d.ts +3 -0
- package/dist/utils/toKebabCase.d.ts +2 -0
- package/dist/utils/toKebabCase.test.d.ts +1 -0
- package/dist/utils/transparentPixelSrc.d.ts +1 -0
- package/dist/utils/uniqueArray.d.ts +1 -0
- package/dist/utils/uniqueArray.test.d.ts +1 -0
- package/dist/utils/userAgent.d.ts +2 -0
- package/dist/utils/validators/collection/index.d.ts +2 -0
- package/dist/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
- package/dist/utils/validators/collection/validateMultiple.d.ts +2 -0
- package/dist/utils/validators/file/index.d.ts +4 -0
- package/dist/utils/validators/file/validateFileType.d.ts +2 -0
- package/dist/utils/validators/file/validateIsImage.d.ts +2 -0
- package/dist/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
- package/dist/utils/validators/file/validateUploadError.d.ts +2 -0
- package/dist/utils/warnOnce.d.ts +1 -0
- package/dist/utils/wildcardRegexp.d.ts +1 -0
- package/dist/utils/wildcardRegexp.test.d.ts +1 -0
- package/dist/utils/withResolvers.d.ts +5 -0
- package/dist/utils/withResolvers.test.d.ts +1 -0
- package/package.json +10 -4
- package/dist/index.ssr.js +0 -1538
- package/web/file-uploader.iife.min.d.ts +0 -2859
- package/web/file-uploader.iife.min.js +0 -8
- package/web/file-uploader.iife.min.js.LEGAL.txt +0 -71
- package/web/file-uploader.min.d.ts +0 -2859
- package/web/file-uploader.min.js +0 -8
- package/web/file-uploader.min.js.LEGAL.txt +0 -71
- package/web/uc-basic.layered.min.css +0 -7
- package/web/uc-basic.min.css +0 -6
- package/web/uc-cloud-image-editor.layered.min.css +0 -7
- package/web/uc-cloud-image-editor.min.css +0 -6
- package/web/uc-cloud-image-editor.min.d.ts +0 -2816
- package/web/uc-cloud-image-editor.min.js +0 -8
- package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
- package/web/uc-file-uploader-inline.layered.min.css +0 -7
- package/web/uc-file-uploader-inline.min.css +0 -6
- package/web/uc-file-uploader-inline.min.d.ts +0 -2859
- package/web/uc-file-uploader-inline.min.js +0 -8
- package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-minimal.layered.min.css +0 -7
- package/web/uc-file-uploader-minimal.min.css +0 -6
- package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
- package/web/uc-file-uploader-minimal.min.js +0 -8
- package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-regular.layered.min.css +0 -7
- package/web/uc-file-uploader-regular.min.css +0 -6
- package/web/uc-file-uploader-regular.min.d.ts +0 -2859
- package/web/uc-file-uploader-regular.min.js +0 -8
- package/web/uc-file-uploader-regular.min.js.LEGAL.txt +0 -71
- package/web/uc-img.min.d.ts +0 -75
- package/web/uc-img.min.js +0 -8
- package/web/uc-img.min.js.LEGAL.txt +0 -24
|
@@ -1,7 +1,135 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var nl_default = {
|
|
8
|
+
"locale-id": "nl",
|
|
9
|
+
"social-source-lang": "nl",
|
|
10
|
+
"upload-file": "Bestand uploaden",
|
|
11
|
+
"upload-files": "Bestanden uploaden",
|
|
12
|
+
"choose-file": "Kies bestand",
|
|
13
|
+
"choose-files": "Kies bestanden",
|
|
14
|
+
"drop-files-here": "Bestanden hier neerzetten",
|
|
15
|
+
"select-file-source": "Selecteer bestandsbron",
|
|
16
|
+
selected: "Geselecteerd",
|
|
17
|
+
upload: "Uploaden",
|
|
18
|
+
"add-more": "Meer toevoegen",
|
|
19
|
+
cancel: "Annuleren",
|
|
20
|
+
"start-from-cancel": "Annuleren",
|
|
21
|
+
clear: "Wissen",
|
|
22
|
+
"camera-shot": "Foto maken",
|
|
23
|
+
"upload-url": "Importeren",
|
|
24
|
+
"upload-url-placeholder": "Plak hier de link",
|
|
25
|
+
"edit-image": "Afbeelding bewerken",
|
|
26
|
+
"edit-detail": "Details bewerken",
|
|
27
|
+
back: "Terug",
|
|
28
|
+
done: "Gedaan",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Verwijderen",
|
|
31
|
+
no: "Nee",
|
|
32
|
+
yes: "Ja",
|
|
33
|
+
"confirm-your-action": "Bevestig je actie",
|
|
34
|
+
"are-you-sure": "Weet je het zeker?",
|
|
35
|
+
"selected-count": "Geselecteerd:",
|
|
36
|
+
"upload-error": "Uploadfout",
|
|
37
|
+
"validation-error": "Validatiefout",
|
|
38
|
+
"no-files": "Geen bestanden geselecteerd",
|
|
39
|
+
browse: "Bladeren",
|
|
40
|
+
"not-uploaded-yet": "Nog niet geüpload...",
|
|
41
|
+
file__one: "bestand",
|
|
42
|
+
file__other: "bestanden",
|
|
43
|
+
error__one: "fout",
|
|
44
|
+
error__other: "fouten",
|
|
45
|
+
"header-uploading": "Uploaden van {{count}} {{plural:file(count)}}",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "{{count}} {{plural:file(count)}} geüpload",
|
|
48
|
+
"header-total": "{{count}} {{plural:file(count)}} geselecteerd",
|
|
49
|
+
"src-type-local": "Van apparaat",
|
|
50
|
+
"src-type-from-url": "Van link",
|
|
51
|
+
"src-type-camera": "Camera",
|
|
52
|
+
"src-type-facebook": "Facebook",
|
|
53
|
+
"src-type-dropbox": "Dropbox",
|
|
54
|
+
"src-type-gdrive": "Google Drive",
|
|
55
|
+
"src-type-ngdrive": "Google Drive",
|
|
56
|
+
"src-type-gphotos": "Google Photos",
|
|
57
|
+
"src-type-flickr": "Flickr",
|
|
58
|
+
"src-type-vk": "VK",
|
|
59
|
+
"src-type-evernote": "Evernote",
|
|
60
|
+
"src-type-box": "Box",
|
|
61
|
+
"src-type-onedrive": "OneDrive",
|
|
62
|
+
"src-type-huddle": "Huddle",
|
|
63
|
+
"src-type-other": "Andere",
|
|
64
|
+
"src-type-mobile-video-camera": "Video",
|
|
65
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
66
|
+
"caption-from-url": "Importeren van link",
|
|
67
|
+
"caption-camera": "Camera",
|
|
68
|
+
"caption-edit-file": "Bestand bewerken",
|
|
69
|
+
"file-no-name": "Geen naam...",
|
|
70
|
+
"toggle-fullscreen": "Volledig scherm wisselen",
|
|
71
|
+
"toggle-guides": "Richtlijnen wisselen",
|
|
72
|
+
rotate: "Roteren",
|
|
73
|
+
"flip-vertical": "Verticaal spiegelen",
|
|
74
|
+
"flip-horizontal": "Horizontaal spiegelen",
|
|
75
|
+
apply: "Toepassen",
|
|
76
|
+
brightness: "Helderheid",
|
|
77
|
+
contrast: "Contrast",
|
|
78
|
+
saturation: "Verzadiging",
|
|
79
|
+
exposure: "Belichting",
|
|
80
|
+
gamma: "Gamma",
|
|
81
|
+
vibrance: "Levendigheid",
|
|
82
|
+
warmth: "Warmte",
|
|
83
|
+
enhance: "Verbeteren",
|
|
84
|
+
original: "Origineel",
|
|
85
|
+
resize: "Afbeelding schalen",
|
|
86
|
+
crop: "Bijsnijden",
|
|
87
|
+
"select-color": "Kleur selecteren",
|
|
88
|
+
text: "Tekst",
|
|
89
|
+
draw: "Tekenen",
|
|
90
|
+
"cancel-edit": "Bewerken annuleren",
|
|
91
|
+
"tab-view": "Voorbeeld",
|
|
92
|
+
"tab-details": "Details",
|
|
93
|
+
"file-name": "Naam",
|
|
94
|
+
"file-size": "Grootte",
|
|
95
|
+
"cdn-url": "CDN URL",
|
|
96
|
+
"file-size-unknown": "Onbekend",
|
|
97
|
+
"camera-permissions-denied": "Toegang tot de camera geweigerd",
|
|
98
|
+
"camera-permissions-prompt": "Geef toegang tot de camera alstublieft",
|
|
99
|
+
"camera-permissions-request": "Toegang aanvragen",
|
|
100
|
+
"files-count-limit-error-title": "Bestandslimiet overschreden",
|
|
101
|
+
"files-count-limit-error-too-few": "U heeft {{total}} {{plural:file(total)}} gekozen. Minimaal {{min}} {{plural:file(min)}} vereist.",
|
|
102
|
+
"files-count-limit-error-too-many": "U heeft te veel bestanden gekozen. Maximaal {{max}} {{plural:file(max)}} toegestaan.",
|
|
103
|
+
"files-max-size-limit-error": "Bestand is te groot. Max bestandsgrootte is {{maxFileSize}}.",
|
|
104
|
+
"has-validation-errors": "Er is een validatiefout opgetreden. Controleer uw bestanden voor het uploaden.",
|
|
105
|
+
"images-only-accepted": "Alleen afbeeldingsbestanden worden geaccepteerd.",
|
|
106
|
+
"file-type-not-allowed": "Dit bestandstype is niet toegestaan.",
|
|
107
|
+
"some-files-were-not-uploaded": "Sommige bestanden zijn niet geüpload.",
|
|
108
|
+
"file-item-edit-button": "Bewerken",
|
|
109
|
+
"file-item-remove-button": "Verwijderen",
|
|
110
|
+
"a11y-activity-header-button-close": "Sluiten",
|
|
111
|
+
"a11y-editor-tab-filters": "Filters",
|
|
112
|
+
"a11y-editor-tab-tuning": "Afstemming",
|
|
113
|
+
"a11y-editor-tab-crop": "Bijsnijden",
|
|
114
|
+
flip: "Omdraaien",
|
|
115
|
+
mirror: "Spiegel",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "{{name}} filter toepassen",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "{{name}} operatie toepassen",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "{{name}} afstemming toepassen",
|
|
119
|
+
finished: "Voltooid",
|
|
120
|
+
failed: "Mislukt",
|
|
121
|
+
uploading: "Uploaden",
|
|
122
|
+
idle: "Inactief",
|
|
123
|
+
"a11y-file-item-status": "Bestand {{fileName}} in status {{status}}",
|
|
124
|
+
"select-all": "Selecteer alles",
|
|
125
|
+
"deselect-all": "Deselecteer alles",
|
|
126
|
+
"waiting-for": "Wachten op {{source}}",
|
|
127
|
+
"queued-uploading": "In de wachtrij voor upload",
|
|
128
|
+
"queued-validation": "In de wachtrij voor validatie",
|
|
129
|
+
validation: "Bezig met valideren",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Bewerking {{name}} {{value}} toepassen",
|
|
131
|
+
"crop-to-shape": "Bijsnijden naar {{value}}",
|
|
132
|
+
custom: "Vrije vorm",
|
|
133
|
+
"freeform-crop": "Vrije uitsnijding"
|
|
134
|
+
};
|
|
135
|
+
export { nl_default as default };
|
|
@@ -47,7 +47,6 @@ declare const _default: {
|
|
|
47
47
|
'src-type-local': string;
|
|
48
48
|
'src-type-from-url': string;
|
|
49
49
|
'src-type-camera': string;
|
|
50
|
-
'src-type-draw': string;
|
|
51
50
|
'src-type-facebook': string;
|
|
52
51
|
'src-type-dropbox': string;
|
|
53
52
|
'src-type-gdrive': string;
|
|
@@ -64,7 +63,6 @@ declare const _default: {
|
|
|
64
63
|
'src-type-mobile-photo-camera': string;
|
|
65
64
|
'caption-from-url': string;
|
|
66
65
|
'caption-camera': string;
|
|
67
|
-
'caption-draw': string;
|
|
68
66
|
'caption-edit-file': string;
|
|
69
67
|
'file-no-name': string;
|
|
70
68
|
'toggle-fullscreen': string;
|
|
@@ -132,5 +130,4 @@ declare const _default: {
|
|
|
132
130
|
custom: string;
|
|
133
131
|
'freeform-crop': string;
|
|
134
132
|
};
|
|
135
|
-
|
|
136
|
-
export { _default as default };
|
|
133
|
+
export default _default;
|
|
@@ -1,7 +1,139 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var pl_default = {
|
|
8
|
+
"locale-id": "pl",
|
|
9
|
+
"social-source-lang": "pl",
|
|
10
|
+
"upload-file": "Prześlij plik",
|
|
11
|
+
"upload-files": "Prześlij pliki",
|
|
12
|
+
"choose-file": "Wybierz plik",
|
|
13
|
+
"choose-files": "Wybierz pliki",
|
|
14
|
+
"drop-files-here": "Upuść pliki tutaj",
|
|
15
|
+
"select-file-source": "Wybierz źródło pliku",
|
|
16
|
+
selected: "Wybrane",
|
|
17
|
+
upload: "Prześlij",
|
|
18
|
+
"add-more": "Dodaj więcej",
|
|
19
|
+
cancel: "Anuluj",
|
|
20
|
+
"start-from-cancel": "Anuluj",
|
|
21
|
+
clear: "Wyczyść",
|
|
22
|
+
"camera-shot": "Zdjęcie",
|
|
23
|
+
"upload-url": "Importuj",
|
|
24
|
+
"upload-url-placeholder": "Wklej link tutaj",
|
|
25
|
+
"edit-image": "Edytuj obraz",
|
|
26
|
+
"edit-detail": "Szczegóły",
|
|
27
|
+
back: "Wstecz",
|
|
28
|
+
done: "Gotowe",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Usuń",
|
|
31
|
+
no: "Nie",
|
|
32
|
+
yes: "Tak",
|
|
33
|
+
"confirm-your-action": "Potwierdź swoją akcję",
|
|
34
|
+
"are-you-sure": "Jesteś pewny?",
|
|
35
|
+
"selected-count": "Wybrano:",
|
|
36
|
+
"upload-error": "Błąd przesyłania",
|
|
37
|
+
"validation-error": "Błąd walidacji",
|
|
38
|
+
"no-files": "Nie wybrano plików",
|
|
39
|
+
browse: "Przeglądaj",
|
|
40
|
+
"not-uploaded-yet": "Jeszcze nie przesłano...",
|
|
41
|
+
file__one: "plik",
|
|
42
|
+
file__few: "pliki",
|
|
43
|
+
file__many: "plików",
|
|
44
|
+
file__other: "plików",
|
|
45
|
+
error__one: "błąd",
|
|
46
|
+
error__few: "błędy",
|
|
47
|
+
error__many: "błędów",
|
|
48
|
+
error__other: "błędów",
|
|
49
|
+
"header-uploading": "Przesyłanie {{count}} {{plural:file(count)}}",
|
|
50
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
51
|
+
"header-succeed": "{{count}} {{plural:file(count)}} przesłane",
|
|
52
|
+
"header-total": "{{count}} {{plural:file(count)}} wybrane",
|
|
53
|
+
"src-type-local": "Z urządzenia",
|
|
54
|
+
"src-type-from-url": "Z linku",
|
|
55
|
+
"src-type-camera": "Aparat",
|
|
56
|
+
"src-type-facebook": "Facebook",
|
|
57
|
+
"src-type-dropbox": "Dropbox",
|
|
58
|
+
"src-type-gdrive": "Google Drive",
|
|
59
|
+
"src-type-ngdrive": "Google Drive",
|
|
60
|
+
"src-type-gphotos": "Google Photos",
|
|
61
|
+
"src-type-flickr": "Flickr",
|
|
62
|
+
"src-type-vk": "VK",
|
|
63
|
+
"src-type-evernote": "Evernote",
|
|
64
|
+
"src-type-box": "Box",
|
|
65
|
+
"src-type-onedrive": "OneDrive",
|
|
66
|
+
"src-type-huddle": "Huddle",
|
|
67
|
+
"src-type-other": "Inne",
|
|
68
|
+
"src-type-mobile-video-camera": "Wideo",
|
|
69
|
+
"src-type-mobile-photo-camera": "Zdjęcie",
|
|
70
|
+
"caption-from-url": "Import z linku",
|
|
71
|
+
"caption-camera": "Aparat",
|
|
72
|
+
"caption-edit-file": "Edytuj plik",
|
|
73
|
+
"file-no-name": "Bez nazwy...",
|
|
74
|
+
"toggle-fullscreen": "Pełny ekran",
|
|
75
|
+
"toggle-guides": "Przełącz przewodniki",
|
|
76
|
+
rotate: "Obróć",
|
|
77
|
+
"flip-vertical": "Odwróć w pionie",
|
|
78
|
+
"flip-horizontal": "Odwróć w poziomie",
|
|
79
|
+
apply: "Zastosuj",
|
|
80
|
+
brightness: "Jasność",
|
|
81
|
+
contrast: "Kontrast",
|
|
82
|
+
saturation: "Nasycenie",
|
|
83
|
+
exposure: "Ekspozycja",
|
|
84
|
+
gamma: "Gamma",
|
|
85
|
+
vibrance: "Wibracja",
|
|
86
|
+
warmth: "Ciepło",
|
|
87
|
+
enhance: "Popraw",
|
|
88
|
+
original: "Oryginalny",
|
|
89
|
+
resize: "Zmień rozmiar obrazu",
|
|
90
|
+
crop: "Przytnij",
|
|
91
|
+
"select-color": "Wybierz kolor",
|
|
92
|
+
text: "Tekst",
|
|
93
|
+
draw: "Rysuj",
|
|
94
|
+
"cancel-edit": "Anuluj edycję",
|
|
95
|
+
"tab-view": "Podgląd",
|
|
96
|
+
"tab-details": "Szczegóły",
|
|
97
|
+
"file-name": "Nazwa",
|
|
98
|
+
"file-size": "Rozmiar",
|
|
99
|
+
"cdn-url": "URL CDN",
|
|
100
|
+
"file-size-unknown": "Nieznany",
|
|
101
|
+
"camera-permissions-denied": "Dostęp do kamery został zabroniony",
|
|
102
|
+
"camera-permissions-prompt": "Proszę zezwolić na dostęp do kamery",
|
|
103
|
+
"camera-permissions-request": "Zażądaj dostępu",
|
|
104
|
+
"files-count-limit-error-title": "Przekroczono limit liczby plików",
|
|
105
|
+
"files-count-limit-error-too-few": "Wybrałeś {{total}} {{plural:file(total)}}. Wymagane jest co najmniej {{min}} {{plural:file(min)}}.",
|
|
106
|
+
"files-count-limit-error-too-many": "Wybrałeś za dużo plików. Maksymalnie {{max}} {{plural:file(max)}}.",
|
|
107
|
+
"files-max-size-limit-error": "Plik jest za duży. Maksymalny rozmiar pliku to {{maxFileSize}}.",
|
|
108
|
+
"has-validation-errors": "Wystąpił błąd walidacji pliku. Proszę, sprawdź swoje pliki przed przesłaniem.",
|
|
109
|
+
"images-only-accepted": "Akceptowane są tylko pliki obrazów.",
|
|
110
|
+
"file-type-not-allowed": "Przesyłanie tego typu plików jest niedozwolone.",
|
|
111
|
+
"some-files-were-not-uploaded": "Niektóre pliki nie zostały przesłane.",
|
|
112
|
+
"file-item-edit-button": "Edytuj",
|
|
113
|
+
"file-item-remove-button": "Usuń",
|
|
114
|
+
"a11y-activity-header-button-close": "Zamknij",
|
|
115
|
+
"a11y-editor-tab-filters": "Filtry",
|
|
116
|
+
"a11y-editor-tab-tuning": "Dostrajanie",
|
|
117
|
+
"a11y-editor-tab-crop": "Przytnij",
|
|
118
|
+
flip: "Obróć",
|
|
119
|
+
mirror: "Lustro",
|
|
120
|
+
"a11y-cloud-editor-apply-filter": "Zastosuj filtr {{name}}",
|
|
121
|
+
"a11y-cloud-editor-apply-crop": "Zastosuj operację {{name}}",
|
|
122
|
+
"a11y-cloud-editor-apply-tuning": "Zastosuj dostrajanie {{name}}",
|
|
123
|
+
finished: "Zakończono",
|
|
124
|
+
failed: "Nie powiodło się",
|
|
125
|
+
uploading: "Przesyłanie",
|
|
126
|
+
idle: "Bezczynny",
|
|
127
|
+
"a11y-file-item-status": "Plik {{fileName}} ma status {{status}}",
|
|
128
|
+
"select-all": "Zaznacz wszystko",
|
|
129
|
+
"deselect-all": "Odznacz wszystko",
|
|
130
|
+
"waiting-for": "Oczekiwanie na {{source}}",
|
|
131
|
+
"queued-uploading": "W kolejce do przesłania",
|
|
132
|
+
"queued-validation": "W kolejce do walidacji",
|
|
133
|
+
validation: "Walidacja w toku",
|
|
134
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Zastosuj operację {{name}} {{value}}",
|
|
135
|
+
"crop-to-shape": "Przytnij do {{value}}",
|
|
136
|
+
custom: "Forma swobodna",
|
|
137
|
+
"freeform-crop": "Swobodne kadrowanie"
|
|
138
|
+
};
|
|
139
|
+
export { pl_default as default };
|
|
@@ -45,7 +45,6 @@ declare const _default: {
|
|
|
45
45
|
'src-type-local': string;
|
|
46
46
|
'src-type-from-url': string;
|
|
47
47
|
'src-type-camera': string;
|
|
48
|
-
'src-type-draw': string;
|
|
49
48
|
'src-type-facebook': string;
|
|
50
49
|
'src-type-dropbox': string;
|
|
51
50
|
'src-type-gdrive': string;
|
|
@@ -62,7 +61,6 @@ declare const _default: {
|
|
|
62
61
|
'src-type-mobile-photo-camera': string;
|
|
63
62
|
'caption-from-url': string;
|
|
64
63
|
'caption-camera': string;
|
|
65
|
-
'caption-draw': string;
|
|
66
64
|
'caption-edit-file': string;
|
|
67
65
|
'file-no-name': string;
|
|
68
66
|
'toggle-fullscreen': string;
|
|
@@ -130,5 +128,4 @@ declare const _default: {
|
|
|
130
128
|
custom: string;
|
|
131
129
|
'freeform-crop': string;
|
|
132
130
|
};
|
|
133
|
-
|
|
134
|
-
export { _default as default };
|
|
131
|
+
export default _default;
|
|
@@ -1,7 +1,137 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var pt_default = {
|
|
8
|
+
"locale-id": "pt",
|
|
9
|
+
"social-source-lang": "pt",
|
|
10
|
+
"upload-file": "Carregar arquivo",
|
|
11
|
+
"upload-files": "Carregar arquivos",
|
|
12
|
+
"choose-file": "Escolher arquivo",
|
|
13
|
+
"choose-files": "Escolher arquivos",
|
|
14
|
+
"drop-files-here": "Solte os arquivos aqui",
|
|
15
|
+
"select-file-source": "Selecionar origem do arquivo",
|
|
16
|
+
selected: "Selecionado",
|
|
17
|
+
upload: "Carregar",
|
|
18
|
+
"add-more": "Adicionar mais",
|
|
19
|
+
cancel: "Cancelar",
|
|
20
|
+
"start-from-cancel": "Cancelar",
|
|
21
|
+
clear: "Limpar",
|
|
22
|
+
"camera-shot": "Tirar foto",
|
|
23
|
+
"upload-url": "Importar",
|
|
24
|
+
"upload-url-placeholder": "Cole o link aqui",
|
|
25
|
+
"edit-image": "Editar imagem",
|
|
26
|
+
"edit-detail": "Detalhes",
|
|
27
|
+
back: "Voltar",
|
|
28
|
+
done: "Concluído",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Remover",
|
|
31
|
+
no: "Não",
|
|
32
|
+
yes: "Sim",
|
|
33
|
+
"confirm-your-action": "Confirmar sua ação",
|
|
34
|
+
"are-you-sure": "Tem certeza?",
|
|
35
|
+
"selected-count": "Selecionados:",
|
|
36
|
+
"upload-error": "Erro no upload",
|
|
37
|
+
"validation-error": "Erro de validação",
|
|
38
|
+
"no-files": "Nenhum arquivo selecionado",
|
|
39
|
+
browse: "Procurar",
|
|
40
|
+
"not-uploaded-yet": "Ainda não carregado...",
|
|
41
|
+
file__one: "arquivo",
|
|
42
|
+
file__many: "arquivos",
|
|
43
|
+
file__other: "arquivos",
|
|
44
|
+
error__one: "erro",
|
|
45
|
+
error__many: "erros",
|
|
46
|
+
error__other: "erros",
|
|
47
|
+
"header-uploading": "Carregando {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} carregado",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} selecionado",
|
|
51
|
+
"src-type-local": "Do dispositivo",
|
|
52
|
+
"src-type-from-url": "Do link",
|
|
53
|
+
"src-type-camera": "Câmera",
|
|
54
|
+
"src-type-facebook": "Facebook",
|
|
55
|
+
"src-type-dropbox": "Dropbox",
|
|
56
|
+
"src-type-gdrive": "Google Drive",
|
|
57
|
+
"src-type-ngdrive": "Google Drive",
|
|
58
|
+
"src-type-gphotos": "Google Photos",
|
|
59
|
+
"src-type-flickr": "Flickr",
|
|
60
|
+
"src-type-vk": "VK",
|
|
61
|
+
"src-type-evernote": "Evernote",
|
|
62
|
+
"src-type-box": "Box",
|
|
63
|
+
"src-type-onedrive": "OneDrive",
|
|
64
|
+
"src-type-huddle": "Huddle",
|
|
65
|
+
"src-type-other": "Outro",
|
|
66
|
+
"src-type-mobile-video-camera": "Vídeo",
|
|
67
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
68
|
+
"caption-from-url": "Importar do link",
|
|
69
|
+
"caption-camera": "Câmera",
|
|
70
|
+
"caption-edit-file": "Editar arquivo",
|
|
71
|
+
"file-no-name": "Sem nome...",
|
|
72
|
+
"toggle-fullscreen": "Alternar tela cheia",
|
|
73
|
+
"toggle-guides": "Alternar guias",
|
|
74
|
+
rotate: "Rotacionar",
|
|
75
|
+
"flip-vertical": "Virar verticalmente",
|
|
76
|
+
"flip-horizontal": "Virar horizontalmente",
|
|
77
|
+
apply: "Aplicar",
|
|
78
|
+
brightness: "Brilho",
|
|
79
|
+
contrast: "Contraste",
|
|
80
|
+
saturation: "Saturação",
|
|
81
|
+
exposure: "Exposição",
|
|
82
|
+
gamma: "Gama",
|
|
83
|
+
vibrance: "Vivacidade",
|
|
84
|
+
warmth: "Calor",
|
|
85
|
+
enhance: "Melhorar",
|
|
86
|
+
original: "Original",
|
|
87
|
+
resize: "Redimensionar imagem",
|
|
88
|
+
crop: "Cortar",
|
|
89
|
+
"select-color": "Selecionar cor",
|
|
90
|
+
text: "Texto",
|
|
91
|
+
draw: "Desenhar",
|
|
92
|
+
"cancel-edit": "Cancelar edição",
|
|
93
|
+
"tab-view": "Pré-visualizar",
|
|
94
|
+
"tab-details": "Detalhes",
|
|
95
|
+
"file-name": "Nome",
|
|
96
|
+
"file-size": "Tamanho",
|
|
97
|
+
"cdn-url": "URL CDN",
|
|
98
|
+
"file-size-unknown": "Desconhecido",
|
|
99
|
+
"camera-permissions-denied": "Acesso à câmera negado",
|
|
100
|
+
"camera-permissions-prompt": "Por favor, permita o acesso à câmera",
|
|
101
|
+
"camera-permissions-request": "Solicitar acesso",
|
|
102
|
+
"files-count-limit-error-title": "Limite de quantidade de arquivos excedido",
|
|
103
|
+
"files-count-limit-error-too-few": "Você selecionou {{total}} {{plural:file(total)}}. Pelo menos {{min}} {{plural:file(min)}} são necessários.",
|
|
104
|
+
"files-count-limit-error-too-many": "Você selecionou muitos arquivos. {{max}} {{plural:file(max)}} é o máximo.",
|
|
105
|
+
"files-max-size-limit-error": "Arquivo muito grande. O tamanho máximo do arquivo é {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "Ocorreu um erro de validação do arquivo. Por favor, verifique seus arquivos antes do upload.",
|
|
107
|
+
"images-only-accepted": "Apenas arquivos de imagem são aceitos.",
|
|
108
|
+
"file-type-not-allowed": "O upload desses tipos de arquivo não é permitido.",
|
|
109
|
+
"some-files-were-not-uploaded": "Alguns arquivos não foram carregados.",
|
|
110
|
+
"file-item-edit-button": "Editar",
|
|
111
|
+
"file-item-remove-button": "Remover",
|
|
112
|
+
"a11y-activity-header-button-close": "Fechar",
|
|
113
|
+
"a11y-editor-tab-filters": "Filtros",
|
|
114
|
+
"a11y-editor-tab-tuning": "Ajustes",
|
|
115
|
+
"a11y-editor-tab-crop": "Cortar",
|
|
116
|
+
flip: "Virar",
|
|
117
|
+
mirror: "Espelho",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "Aplicar filtro {{name}}",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "Aplicar operação {{name}}",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "Aplicar ajuste {{name}}",
|
|
121
|
+
finished: "Concluído",
|
|
122
|
+
failed: "Falhou",
|
|
123
|
+
uploading: "Carregando",
|
|
124
|
+
idle: "Ocioso",
|
|
125
|
+
"a11y-file-item-status": "O arquivo {{fileName}} está no status {{status}}",
|
|
126
|
+
"select-all": "Selecionar tudo",
|
|
127
|
+
"deselect-all": "Desmarcar tudo",
|
|
128
|
+
"waiting-for": "Aguardando {{source}}",
|
|
129
|
+
"queued-uploading": "Na fila para envio",
|
|
130
|
+
"queued-validation": "Na fila para validação",
|
|
131
|
+
validation: "Validando",
|
|
132
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Aplicar operação {{name}} {{value}}",
|
|
133
|
+
"crop-to-shape": "Recortar para {{value}}",
|
|
134
|
+
custom: "Forma livre",
|
|
135
|
+
"freeform-crop": "Recorte livre"
|
|
136
|
+
};
|
|
137
|
+
export { pt_default as default };
|
|
@@ -45,7 +45,6 @@ declare const _default: {
|
|
|
45
45
|
'src-type-local': string;
|
|
46
46
|
'src-type-from-url': string;
|
|
47
47
|
'src-type-camera': string;
|
|
48
|
-
'src-type-draw': string;
|
|
49
48
|
'src-type-facebook': string;
|
|
50
49
|
'src-type-dropbox': string;
|
|
51
50
|
'src-type-gdrive': string;
|
|
@@ -62,7 +61,6 @@ declare const _default: {
|
|
|
62
61
|
'src-type-mobile-photo-camera': string;
|
|
63
62
|
'caption-from-url': string;
|
|
64
63
|
'caption-camera': string;
|
|
65
|
-
'caption-draw': string;
|
|
66
64
|
'caption-edit-file': string;
|
|
67
65
|
'file-no-name': string;
|
|
68
66
|
'toggle-fullscreen': string;
|
|
@@ -130,5 +128,4 @@ declare const _default: {
|
|
|
130
128
|
custom: string;
|
|
131
129
|
'freeform-crop': string;
|
|
132
130
|
};
|
|
133
|
-
|
|
134
|
-
export { _default as default };
|
|
131
|
+
export default _default;
|