@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,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 cs_default = {
|
|
8
|
+
"locale-id": "cs",
|
|
9
|
+
"social-source-lang": "cs",
|
|
10
|
+
"upload-file": "Nahrát soubor",
|
|
11
|
+
"upload-files": "Nahrát soubory",
|
|
12
|
+
"choose-file": "Vybrat soubor",
|
|
13
|
+
"choose-files": "Vybrat soubory",
|
|
14
|
+
"drop-files-here": "Přetáhněte soubory sem",
|
|
15
|
+
"select-file-source": "Vyberte zdroj souboru",
|
|
16
|
+
selected: "Vybráno",
|
|
17
|
+
upload: "Nahrát",
|
|
18
|
+
"add-more": "Přidat další",
|
|
19
|
+
cancel: "Zrušit",
|
|
20
|
+
"start-from-cancel": "Zrušit",
|
|
21
|
+
clear: "Vyčistit",
|
|
22
|
+
"camera-shot": "Snímek",
|
|
23
|
+
"upload-url": "Importovat",
|
|
24
|
+
"upload-url-placeholder": "Vložte odkaz zde",
|
|
25
|
+
"edit-image": "Upravit obrázek",
|
|
26
|
+
"edit-detail": "Detaily",
|
|
27
|
+
back: "Zpět",
|
|
28
|
+
done: "Hotovo",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Odebrat",
|
|
31
|
+
no: "Ne",
|
|
32
|
+
yes: "Ano",
|
|
33
|
+
"confirm-your-action": "Potvrdit akci",
|
|
34
|
+
"are-you-sure": "Jste si jistí?",
|
|
35
|
+
"selected-count": "Vybráno:",
|
|
36
|
+
"select-all": "Vybrat vše",
|
|
37
|
+
"deselect-all": "Zrušit výběr všeho",
|
|
38
|
+
"upload-error": "Chyba nahrávání",
|
|
39
|
+
"validation-error": "Chyba validace",
|
|
40
|
+
"no-files": "Nebyly vybrány žádné soubory",
|
|
41
|
+
browse: "Procházet",
|
|
42
|
+
"not-uploaded-yet": "Ještě nebylo nahráno...",
|
|
43
|
+
file__one: "soubor",
|
|
44
|
+
file__few: "soubory",
|
|
45
|
+
file__many: "souborů",
|
|
46
|
+
file__other: "souborů",
|
|
47
|
+
error__one: "chyba",
|
|
48
|
+
error__few: "chyby",
|
|
49
|
+
error__many: "chyby",
|
|
50
|
+
error__other: "chyb",
|
|
51
|
+
"header-uploading": "Nahrává se {{count}} {{plural:file(count)}}",
|
|
52
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
53
|
+
"header-succeed": "{{count}} {{plural:file(count)}} nahráno",
|
|
54
|
+
"header-total": "{{count}} {{plural:file(count)}} vybráno",
|
|
55
|
+
"src-type-local": "Zařízení",
|
|
56
|
+
"src-type-from-url": "Z odkazu",
|
|
57
|
+
"src-type-camera": "Kamera",
|
|
58
|
+
"src-type-facebook": "Facebook",
|
|
59
|
+
"src-type-dropbox": "Dropbox",
|
|
60
|
+
"src-type-gdrive": "Google Drive",
|
|
61
|
+
"src-type-ngdrive": "Google Drive",
|
|
62
|
+
"src-type-gphotos": "Google Photos",
|
|
63
|
+
"src-type-flickr": "Flickr",
|
|
64
|
+
"src-type-vk": "VK",
|
|
65
|
+
"src-type-evernote": "Evernote",
|
|
66
|
+
"src-type-box": "Box",
|
|
67
|
+
"src-type-onedrive": "OneDrive",
|
|
68
|
+
"src-type-huddle": "Huddle",
|
|
69
|
+
"src-type-other": "Jiné",
|
|
70
|
+
"src-type-mobile-video-camera": "Video",
|
|
71
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
72
|
+
"caption-from-url": "Importovat z odkazu",
|
|
73
|
+
"caption-camera": "Kamera",
|
|
74
|
+
"caption-edit-file": "Upravit soubor",
|
|
75
|
+
"file-no-name": "Bez názvu...",
|
|
76
|
+
"toggle-fullscreen": "Přepnout celou obrazovku",
|
|
77
|
+
"toggle-guides": "Přepnout průvodce",
|
|
78
|
+
rotate: "Otočit",
|
|
79
|
+
"flip-vertical": "Převrátit vertikálně",
|
|
80
|
+
"flip-horizontal": "Převrátit horizontálně",
|
|
81
|
+
apply: "Použít",
|
|
82
|
+
brightness: "Jas",
|
|
83
|
+
contrast: "Kontrast",
|
|
84
|
+
saturation: "Sytost",
|
|
85
|
+
exposure: "Expozice",
|
|
86
|
+
gamma: "Gama",
|
|
87
|
+
vibrance: "Vibrance",
|
|
88
|
+
warmth: "Teplo",
|
|
89
|
+
enhance: "Vylepšit",
|
|
90
|
+
original: "Originál",
|
|
91
|
+
resize: "Změnit velikost",
|
|
92
|
+
crop: "Oříznout",
|
|
93
|
+
"select-color": "Vybrat barvu",
|
|
94
|
+
text: "Text",
|
|
95
|
+
draw: "Kreslit",
|
|
96
|
+
"cancel-edit": "Zrušit úpravy",
|
|
97
|
+
"tab-view": "Náhled",
|
|
98
|
+
"tab-details": "Detaily",
|
|
99
|
+
"file-name": "Název",
|
|
100
|
+
"file-size": "Velikost",
|
|
101
|
+
"cdn-url": "CDN URL",
|
|
102
|
+
"file-size-unknown": "Neznámá",
|
|
103
|
+
"camera-permissions-denied": "Přístup ke kameře byl zamítnut",
|
|
104
|
+
"camera-permissions-prompt": "Prosím, povolte přístup ke kameře",
|
|
105
|
+
"camera-permissions-request": "Požádat o přístup",
|
|
106
|
+
"files-count-limit-error-title": "Překročen limit počtu souborů",
|
|
107
|
+
"files-count-limit-error-too-few": "Vybrali jste {{total}} {{plural:file(total)}}. Minimálně je vyžadováno {{min}} {{plural:file(min)}}.",
|
|
108
|
+
"files-count-limit-error-too-many": "Vybrali jste příliš mnoho souborů. Maximálně je možné {{max}} {{plural:file(max)}}.",
|
|
109
|
+
"files-max-size-limit-error": "Soubor je příliš velký. Maximální velikost souboru je {{maxFileSize}}.",
|
|
110
|
+
"has-validation-errors": "Při validaci souborů došlo k chybám. Prosím, překontrolujte své soubory před nahráním.",
|
|
111
|
+
"images-only-accepted": "Přijímány jsou pouze obrázkové soubory.",
|
|
112
|
+
"file-type-not-allowed": "Nahrávání těchto typů souborů není povoleno.",
|
|
113
|
+
"some-files-were-not-uploaded": "Některé soubory nebyly nahrány.",
|
|
114
|
+
"file-item-edit-button": "Upravit",
|
|
115
|
+
"file-item-remove-button": "Odstranit",
|
|
116
|
+
"a11y-activity-header-button-close": "Zavřít",
|
|
117
|
+
"a11y-editor-tab-filters": "Filtry",
|
|
118
|
+
"a11y-editor-tab-tuning": "Ladění",
|
|
119
|
+
"a11y-editor-tab-crop": "Oříznutí",
|
|
120
|
+
flip: "Převrátit",
|
|
121
|
+
mirror: "Zrcadlit",
|
|
122
|
+
"a11y-cloud-editor-apply-filter": "Použít filtr {{name}}",
|
|
123
|
+
"a11y-cloud-editor-apply-crop": "Použít operaci {{name}}",
|
|
124
|
+
"a11y-cloud-editor-apply-tuning": "Použít ladění {{name}}",
|
|
125
|
+
finished: "Dokončeno",
|
|
126
|
+
failed: "Selhalo",
|
|
127
|
+
uploading: "Nahrává se",
|
|
128
|
+
idle: "Nečinný",
|
|
129
|
+
"a11y-file-item-status": "Soubor {{fileName}} je ve stavu {{status}}",
|
|
130
|
+
"waiting-for": "Čekání na {{source}}",
|
|
131
|
+
"queued-uploading": "Ve frontě na nahrání",
|
|
132
|
+
"queued-validation": "Ve frontě na validaci",
|
|
133
|
+
validation: "Probíhá validace",
|
|
134
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Použít operaci {{name}} {{value}}",
|
|
135
|
+
"crop-to-shape": "Oříznout na {{value}}",
|
|
136
|
+
custom: "Volná forma",
|
|
137
|
+
"freeform-crop": "Volné ořezání"
|
|
138
|
+
};
|
|
139
|
+
export { cs_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;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|
|
@@ -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 da_default = {
|
|
8
|
+
"locale-id": "da",
|
|
9
|
+
"social-source-lang": "da",
|
|
10
|
+
"upload-file": "Upload fil",
|
|
11
|
+
"upload-files": "Upload filer",
|
|
12
|
+
"choose-file": "Vælg fil",
|
|
13
|
+
"choose-files": "Vælg filer",
|
|
14
|
+
"drop-files-here": "Slip filer her",
|
|
15
|
+
"select-file-source": "Vælg filkilde",
|
|
16
|
+
selected: "Valgt",
|
|
17
|
+
upload: "Upload",
|
|
18
|
+
"add-more": "Tilføj flere",
|
|
19
|
+
cancel: "Annuller",
|
|
20
|
+
"start-from-cancel": "Annuller",
|
|
21
|
+
clear: "Ryd",
|
|
22
|
+
"camera-shot": "Tag billede",
|
|
23
|
+
"upload-url": "Importer",
|
|
24
|
+
"upload-url-placeholder": "Indsæt link her",
|
|
25
|
+
"edit-image": "Rediger billede",
|
|
26
|
+
"edit-detail": "Detaljer",
|
|
27
|
+
back: "Tilbage",
|
|
28
|
+
done: "Færdig",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Fjern",
|
|
31
|
+
no: "Nej",
|
|
32
|
+
yes: "Ja",
|
|
33
|
+
"confirm-your-action": "Bekræft din handling",
|
|
34
|
+
"are-you-sure": "Er du sikker?",
|
|
35
|
+
"selected-count": "Valgt:",
|
|
36
|
+
"select-all": "Vælg alle",
|
|
37
|
+
"deselect-all": "Fravælg alle",
|
|
38
|
+
"upload-error": "Fejl ved upload",
|
|
39
|
+
"validation-error": "Valideringsfejl",
|
|
40
|
+
"no-files": "Ingen filer valgt",
|
|
41
|
+
browse: "Gennemse",
|
|
42
|
+
"not-uploaded-yet": "Ikke uploadet endnu...",
|
|
43
|
+
file__one: "fil",
|
|
44
|
+
file__other: "filer",
|
|
45
|
+
error__one: "fejl",
|
|
46
|
+
error__other: "fejl",
|
|
47
|
+
"header-uploading": "Uploader {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} uploadet",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} valgt",
|
|
51
|
+
"src-type-local": "Fra enhed",
|
|
52
|
+
"src-type-from-url": "Fra link",
|
|
53
|
+
"src-type-camera": "Kamera",
|
|
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": "Andet",
|
|
66
|
+
"src-type-mobile-video-camera": "Video",
|
|
67
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
68
|
+
"caption-from-url": "Importer fra link",
|
|
69
|
+
"caption-camera": "Kamera",
|
|
70
|
+
"caption-edit-file": "Rediger fil",
|
|
71
|
+
"file-no-name": "Intet navn...",
|
|
72
|
+
"toggle-fullscreen": "Fuldskærm til/fra",
|
|
73
|
+
"toggle-guides": "Guides til/fra",
|
|
74
|
+
rotate: "Roter",
|
|
75
|
+
"flip-vertical": "Vend lodret",
|
|
76
|
+
"flip-horizontal": "Vend vandret",
|
|
77
|
+
apply: "Anvend",
|
|
78
|
+
brightness: "Lysstyrke",
|
|
79
|
+
contrast: "Kontrast",
|
|
80
|
+
saturation: "Mætning",
|
|
81
|
+
exposure: "Eksponering",
|
|
82
|
+
gamma: "Gamma",
|
|
83
|
+
vibrance: "Levende farver",
|
|
84
|
+
warmth: "Varme",
|
|
85
|
+
enhance: "Forbedre",
|
|
86
|
+
original: "Original",
|
|
87
|
+
resize: "Ændre størrelse",
|
|
88
|
+
crop: "Beskær",
|
|
89
|
+
"select-color": "Vælg farve",
|
|
90
|
+
text: "Tekst",
|
|
91
|
+
draw: "Tegn",
|
|
92
|
+
"cancel-edit": "Annuller redigering",
|
|
93
|
+
"tab-view": "Forhåndsvisning",
|
|
94
|
+
"tab-details": "Detaljer",
|
|
95
|
+
"file-name": "Navn",
|
|
96
|
+
"file-size": "Størrelse",
|
|
97
|
+
"cdn-url": "CDN URL",
|
|
98
|
+
"file-size-unknown": "Ukendt",
|
|
99
|
+
"camera-permissions-denied": "Kameraadgang nægtet",
|
|
100
|
+
"camera-permissions-prompt": "Tillad venligst adgang til kameraet",
|
|
101
|
+
"camera-permissions-request": "Anmod om adgang",
|
|
102
|
+
"files-count-limit-error-title": "Filantal grænse overskredet",
|
|
103
|
+
"files-count-limit-error-too-few": "Du har valgt {{total}} {{plural:file(total)}}. Mindst {{min}} {{plural:file(min)}} er påkrævet.",
|
|
104
|
+
"files-count-limit-error-too-many": "Du har valgt for mange filer. Maksimalt {{max}} {{plural:file(max)}} er tilladt.",
|
|
105
|
+
"files-max-size-limit-error": "Filen er for stor. Maksimal filstørrelse er {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "Der opstod en valideringsfejl på filen. Tjek venligst dine filer før upload.",
|
|
107
|
+
"images-only-accepted": "Kun billedfiler accepteres.",
|
|
108
|
+
"file-type-not-allowed": "Upload af denne filtype er ikke tilladt.",
|
|
109
|
+
"some-files-were-not-uploaded": "Nogle filer blev ikke uploadet.",
|
|
110
|
+
"file-item-edit-button": "Rediger",
|
|
111
|
+
"file-item-remove-button": "Fjern",
|
|
112
|
+
"a11y-activity-header-button-close": "Luk",
|
|
113
|
+
"a11y-editor-tab-filters": "Filtre",
|
|
114
|
+
"a11y-editor-tab-tuning": "Justering",
|
|
115
|
+
"a11y-editor-tab-crop": "Beskær",
|
|
116
|
+
flip: "Vend",
|
|
117
|
+
mirror: "Spejl",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "Anvend {{name}} filter",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "Anvend {{name}} handling",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "Anvend {{name}} justering",
|
|
121
|
+
finished: "Afsluttet",
|
|
122
|
+
failed: "Mislykkedes",
|
|
123
|
+
uploading: "Uploader",
|
|
124
|
+
idle: "Inaktiv",
|
|
125
|
+
"a11y-file-item-status": "Filen {{fileName}} er i status {{status}}",
|
|
126
|
+
"waiting-for": "Venter på {{source}}",
|
|
127
|
+
"queued-uploading": "I kø til upload",
|
|
128
|
+
"queued-validation": "I kø til validering",
|
|
129
|
+
validation: "Validerer",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Anvend handling {{name}} {{value}}",
|
|
131
|
+
"crop-to-shape": "Beskær til {{value}}",
|
|
132
|
+
custom: "Fri form",
|
|
133
|
+
"freeform-crop": "Fri beskæring"
|
|
134
|
+
};
|
|
135
|
+
export { da_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;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|
|
@@ -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 de_default = {
|
|
8
|
+
"locale-id": "de",
|
|
9
|
+
"social-source-lang": "de",
|
|
10
|
+
"upload-file": "Datei hochladen",
|
|
11
|
+
"upload-files": "Dateien hochladen",
|
|
12
|
+
"choose-file": "Datei wählen",
|
|
13
|
+
"choose-files": "Dateien wählen",
|
|
14
|
+
"drop-files-here": "Dateien hier ablegen",
|
|
15
|
+
"select-file-source": "Dateiquelle auswählen",
|
|
16
|
+
selected: "Ausgewählt",
|
|
17
|
+
upload: "Hochladen",
|
|
18
|
+
"add-more": "Weitere hinzufügen",
|
|
19
|
+
cancel: "Abbrechen",
|
|
20
|
+
"start-from-cancel": "Abbrechen",
|
|
21
|
+
clear: "Leeren",
|
|
22
|
+
"camera-shot": "Aufnahme",
|
|
23
|
+
"upload-url": "Importieren",
|
|
24
|
+
"upload-url-placeholder": "Link hier einfügen",
|
|
25
|
+
"edit-image": "Bild bearbeiten",
|
|
26
|
+
"edit-detail": "Details",
|
|
27
|
+
back: "Zurück",
|
|
28
|
+
done: "Fertig",
|
|
29
|
+
ok: "OK",
|
|
30
|
+
"remove-from-list": "Entfernen",
|
|
31
|
+
no: "Nein",
|
|
32
|
+
yes: "Ja",
|
|
33
|
+
"confirm-your-action": "Aktion bestätigen",
|
|
34
|
+
"are-you-sure": "Sind Sie sicher?",
|
|
35
|
+
"selected-count": "Ausgewählt:",
|
|
36
|
+
"select-all": "Alles auswählen",
|
|
37
|
+
"deselect-all": "Alles abwählen",
|
|
38
|
+
"upload-error": "Fehler beim Hochladen",
|
|
39
|
+
"validation-error": "Validierungsfehler",
|
|
40
|
+
"no-files": "Keine Dateien ausgewählt",
|
|
41
|
+
browse: "Durchsuchen",
|
|
42
|
+
"not-uploaded-yet": "Noch nicht hochgeladen...",
|
|
43
|
+
file__one: "Datei",
|
|
44
|
+
file__other: "Dateien",
|
|
45
|
+
error__one: "Fehler",
|
|
46
|
+
error__other: "Fehler",
|
|
47
|
+
"header-uploading": "Lade {{count}} {{plural:file(count)}} hoch",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} hochgeladen",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} ausgewählt",
|
|
51
|
+
"src-type-local": "Vom Gerät",
|
|
52
|
+
"src-type-from-url": "Vom Link",
|
|
53
|
+
"src-type-camera": "Kamera",
|
|
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": "Andere",
|
|
66
|
+
"src-type-mobile-video-camera": "Video",
|
|
67
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
68
|
+
"caption-from-url": "Von Link importieren",
|
|
69
|
+
"caption-camera": "Kamera",
|
|
70
|
+
"caption-edit-file": "Datei bearbeiten",
|
|
71
|
+
"file-no-name": "Kein Name...",
|
|
72
|
+
"toggle-fullscreen": "Vollbild umschalten",
|
|
73
|
+
"toggle-guides": "Anleitungen umschalten",
|
|
74
|
+
rotate: "Drehen",
|
|
75
|
+
"flip-vertical": "Vertikal spiegeln",
|
|
76
|
+
"flip-horizontal": "Horizontal spiegeln",
|
|
77
|
+
apply: "Anwenden",
|
|
78
|
+
brightness: "Helligkeit",
|
|
79
|
+
contrast: "Kontrast",
|
|
80
|
+
saturation: "Sättigung",
|
|
81
|
+
exposure: "Belichtung",
|
|
82
|
+
gamma: "Gamma",
|
|
83
|
+
vibrance: "Lebendigkeit",
|
|
84
|
+
warmth: "Wärme",
|
|
85
|
+
enhance: "Verbessern",
|
|
86
|
+
original: "Original",
|
|
87
|
+
resize: "Bildgröße ändern",
|
|
88
|
+
crop: "Zuschneiden",
|
|
89
|
+
"select-color": "Farbe auswählen",
|
|
90
|
+
text: "Text",
|
|
91
|
+
draw: "Zeichnen",
|
|
92
|
+
"cancel-edit": "Bearbeitung abbrechen",
|
|
93
|
+
"tab-view": "Vorschau",
|
|
94
|
+
"tab-details": "Details",
|
|
95
|
+
"file-name": "Name",
|
|
96
|
+
"file-size": "Größe",
|
|
97
|
+
"cdn-url": "CDN-URL",
|
|
98
|
+
"file-size-unknown": "Unbekannt",
|
|
99
|
+
"camera-permissions-denied": "Kamerazugriff verweigert",
|
|
100
|
+
"camera-permissions-prompt": "Bitte Zugriff auf die Kamera erlauben",
|
|
101
|
+
"camera-permissions-request": "Zugriff anfordern",
|
|
102
|
+
"files-count-limit-error-title": "Dateianzahlbegrenzung überschritten",
|
|
103
|
+
"files-count-limit-error-too-few": "Sie haben {{total}} {{plural:file(total)}} ausgewählt. Mindestens {{min}} {{plural:file(min)}} erforderlich.",
|
|
104
|
+
"files-count-limit-error-too-many": "Sie haben zu viele Dateien ausgewählt. Maximal {{max}} {{plural:file(max)}} möglich.",
|
|
105
|
+
"files-max-size-limit-error": "Datei ist zu groß. Maximale Dateigröße ist {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "Es ist ein Validierungsfehler aufgetreten. Bitte überprüfen Sie Ihre Dateien vor dem Hochladen.",
|
|
107
|
+
"images-only-accepted": "Nur Bilddateien werden akzeptiert.",
|
|
108
|
+
"file-type-not-allowed": "Das Hochladen dieser Dateitypen ist nicht erlaubt.",
|
|
109
|
+
"some-files-were-not-uploaded": "Einige Dateien wurden nicht hochgeladen.",
|
|
110
|
+
"file-item-edit-button": "Bearbeiten",
|
|
111
|
+
"file-item-remove-button": "Entfernen",
|
|
112
|
+
"a11y-activity-header-button-close": "Schließen",
|
|
113
|
+
"a11y-editor-tab-filters": "Filter",
|
|
114
|
+
"a11y-editor-tab-tuning": "Feinabstimmung",
|
|
115
|
+
"a11y-editor-tab-crop": "Zuschneiden",
|
|
116
|
+
flip: "Drehen",
|
|
117
|
+
mirror: "Spiegeln",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "{{name}}-Filter anwenden",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "{{name}}-Operation anwenden",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "{{name}}-Abstimmung anwenden",
|
|
121
|
+
finished: "Abgeschlossen",
|
|
122
|
+
failed: "Fehlgeschlagen",
|
|
123
|
+
uploading: "Hochladen",
|
|
124
|
+
idle: "Leerlauf",
|
|
125
|
+
"a11y-file-item-status": "Datei {{fileName}} im Status {{status}}",
|
|
126
|
+
"waiting-for": "Warten auf {{source}}",
|
|
127
|
+
"queued-uploading": "In Warteschlange zum Hochladen",
|
|
128
|
+
"queued-validation": "In Warteschlange zur Validierung",
|
|
129
|
+
validation: "Validierung läuft",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Vorgang {{name}} {{value}} anwenden",
|
|
131
|
+
"crop-to-shape": "Zuschneiden auf {{value}}",
|
|
132
|
+
custom: "Freiform",
|
|
133
|
+
"freeform-crop": "Freier Zuschnitt"
|
|
134
|
+
};
|
|
135
|
+
export { de_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;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|