@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 fi_default = {
|
|
8
|
+
"locale-id": "fi",
|
|
9
|
+
"social-source-lang": "en",
|
|
10
|
+
"upload-file": "Lataa tiedosto",
|
|
11
|
+
"upload-files": "Lataa tiedostoja",
|
|
12
|
+
"choose-file": "Valitse tiedosto",
|
|
13
|
+
"choose-files": "Valitse tiedostoja",
|
|
14
|
+
"drop-files-here": "Raahaa tiedostot tänne",
|
|
15
|
+
"select-file-source": "Valitse tiedoston lähde",
|
|
16
|
+
selected: "Valittu",
|
|
17
|
+
upload: "Lataa",
|
|
18
|
+
"add-more": "Lisää",
|
|
19
|
+
cancel: "Peruuta",
|
|
20
|
+
"start-from-cancel": "Peruuta alkuun",
|
|
21
|
+
clear: "Tyhjennä",
|
|
22
|
+
"camera-shot": "Kuva",
|
|
23
|
+
"upload-url": "Tuo",
|
|
24
|
+
"upload-url-placeholder": "Liitä linkki tähän",
|
|
25
|
+
"edit-image": "Muokkaa kuvaa",
|
|
26
|
+
"edit-detail": "Lisätiedot",
|
|
27
|
+
back: "Takaisin",
|
|
28
|
+
done: "Valmis",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Poista",
|
|
31
|
+
no: "Ei",
|
|
32
|
+
yes: "Kyllä",
|
|
33
|
+
"confirm-your-action": "Vahvista toimintosi",
|
|
34
|
+
"are-you-sure": "Oletko varma?",
|
|
35
|
+
"selected-count": "Valitut:",
|
|
36
|
+
"upload-error": "Latausvirhe",
|
|
37
|
+
"validation-error": "Validointivirhe",
|
|
38
|
+
"no-files": "Ei tiedostoja valittu",
|
|
39
|
+
browse: "Selaa",
|
|
40
|
+
"not-uploaded-yet": "Ei vielä ladattu...",
|
|
41
|
+
file__one: "tiedosto",
|
|
42
|
+
file__other: "tiedostot",
|
|
43
|
+
error__one: "virhe",
|
|
44
|
+
error__other: "virheitä",
|
|
45
|
+
"header-uploading": "Ladataan {{count}} {{plural:file(count)}}",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "{{count}} {{plural:file(count)}} ladattu",
|
|
48
|
+
"header-total": "{{count}} {{plural:file(count)}} valittu",
|
|
49
|
+
"src-type-local": "Laiteesta",
|
|
50
|
+
"src-type-from-url": "Linkistä",
|
|
51
|
+
"src-type-camera": "Kamera",
|
|
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 Kuvat",
|
|
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": "Muu",
|
|
64
|
+
"src-type-mobile-video-camera": "Video",
|
|
65
|
+
"src-type-mobile-photo-camera": "Valokuva",
|
|
66
|
+
"caption-from-url": "Tuo linkistä",
|
|
67
|
+
"caption-camera": "Kamera",
|
|
68
|
+
"caption-edit-file": "Muokkaa tiedostoa",
|
|
69
|
+
"file-no-name": "Ei nimeä...",
|
|
70
|
+
"toggle-fullscreen": "Vaihda koko näyttöön",
|
|
71
|
+
"toggle-guides": "Opastus",
|
|
72
|
+
rotate: "Käännä",
|
|
73
|
+
"flip-vertical": "Käännä pystysuunnassa",
|
|
74
|
+
"flip-horizontal": "Käännä vaakasuunnassa",
|
|
75
|
+
apply: "Käytä",
|
|
76
|
+
brightness: "Kirkkaus",
|
|
77
|
+
contrast: "Kontrasti",
|
|
78
|
+
saturation: "Saturaatio",
|
|
79
|
+
exposure: "Valotusaika",
|
|
80
|
+
gamma: "Gamma",
|
|
81
|
+
vibrance: "Elinvoima",
|
|
82
|
+
warmth: "Lämpö",
|
|
83
|
+
enhance: "Paranna",
|
|
84
|
+
original: "Alkuperäinen",
|
|
85
|
+
resize: "Muuta kuvan kokoa",
|
|
86
|
+
crop: "Rajaa",
|
|
87
|
+
"select-color": "Valitse väri",
|
|
88
|
+
text: "Teksti",
|
|
89
|
+
draw: "Piirrä",
|
|
90
|
+
"cancel-edit": "Peruuta muokkaus",
|
|
91
|
+
"tab-view": "Esikatselu",
|
|
92
|
+
"tab-details": "Lisätiedot",
|
|
93
|
+
"file-name": "Nimi",
|
|
94
|
+
"file-size": "Koko",
|
|
95
|
+
"cdn-url": "CDN URL",
|
|
96
|
+
"file-size-unknown": "Tuntematon",
|
|
97
|
+
"camera-permissions-denied": "Kameran käyttöoikeus evätty",
|
|
98
|
+
"camera-permissions-prompt": "Salli kameran käyttö",
|
|
99
|
+
"camera-permissions-request": "Pyydä käyttöoikeutta",
|
|
100
|
+
"files-count-limit-error-title": "Tiedostojen lukumäärän ylitys",
|
|
101
|
+
"files-count-limit-error-too-few": "Olet valinnut {{total}} {{plural:file(total)}}. Vähintään {{min}} {{plural:file(min)}} vaaditaan.",
|
|
102
|
+
"files-count-limit-error-too-many": "Olet valinnut liian monta tiedostoa. {{max}} {{plural:file(max)}} on enimmäismäärä.",
|
|
103
|
+
"files-max-size-limit-error": "Tiedosto on liian suuri. Maksimi tiedostokoko on {{maxFileSize}}.",
|
|
104
|
+
"has-validation-errors": "Tiedostojen validointivirhe. Tarkista tiedostosi ennen latausta.",
|
|
105
|
+
"images-only-accepted": "Vain kuvamuotoiset tiedostot hyväksytään.",
|
|
106
|
+
"file-type-not-allowed": "Näiden tiedostotyyppien lataaminen ei ole sallittua.",
|
|
107
|
+
"some-files-were-not-uploaded": "Joitain tiedostoja ei ladattu.",
|
|
108
|
+
"file-item-edit-button": "Muokkaa",
|
|
109
|
+
"file-item-remove-button": "Poista",
|
|
110
|
+
"a11y-editor-tab-filters": "Suodattimet",
|
|
111
|
+
"a11y-editor-tab-tuning": "Säätö",
|
|
112
|
+
"a11y-editor-tab-crop": "Rajaus",
|
|
113
|
+
"a11y-activity-header-button-close": "Sulje",
|
|
114
|
+
flip: "Käännä",
|
|
115
|
+
mirror: "Peilaa",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "Käytä {{name}} suodatin",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "Käytä {{name}} rajaus",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "Käytä {{name}} säätö",
|
|
119
|
+
finished: "Valmis",
|
|
120
|
+
failed: "Epäonnistui",
|
|
121
|
+
uploading: "Ladataan",
|
|
122
|
+
idle: "Toimeton",
|
|
123
|
+
"a11y-file-item-status": "Tiedosto {{fileName}} tilassa {{status}}",
|
|
124
|
+
"select-all": "Valitse kaikki",
|
|
125
|
+
"deselect-all": "Poista valinnat",
|
|
126
|
+
"waiting-for": "Odotetaan {{source}}",
|
|
127
|
+
"queued-uploading": "Jonossa latausta varten",
|
|
128
|
+
"queued-validation": "Jonossa validointia varten",
|
|
129
|
+
validation: "Validoidaan",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Käytä toimintoa {{name}} {{value}}",
|
|
131
|
+
"crop-to-shape": "Rajaa arvoon {{value}}",
|
|
132
|
+
custom: "Vapaa muoto",
|
|
133
|
+
"freeform-crop": "Vapaa rajaus"
|
|
134
|
+
};
|
|
135
|
+
export { fi_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 fr_default = {
|
|
8
|
+
"locale-id": "fr",
|
|
9
|
+
"social-source-lang": "fr",
|
|
10
|
+
"upload-file": "Télécharger un fichier",
|
|
11
|
+
"upload-files": "Télécharger des fichiers",
|
|
12
|
+
"choose-file": "Choisir un fichier",
|
|
13
|
+
"choose-files": "Choisir des fichiers",
|
|
14
|
+
"drop-files-here": "Déposez les fichiers ici",
|
|
15
|
+
"select-file-source": "Sélectionnez la source du fichier",
|
|
16
|
+
selected: "Sélectionné",
|
|
17
|
+
upload: "Télécharger",
|
|
18
|
+
"add-more": "Ajouter plus",
|
|
19
|
+
cancel: "Annuler",
|
|
20
|
+
"start-from-cancel": "Annuler",
|
|
21
|
+
clear: "Effacer",
|
|
22
|
+
"camera-shot": "Prendre une photo",
|
|
23
|
+
"upload-url": "Importer",
|
|
24
|
+
"upload-url-placeholder": "Collez le lien ici",
|
|
25
|
+
"edit-image": "Éditer l'image",
|
|
26
|
+
"edit-detail": "Détails",
|
|
27
|
+
back: "Retour",
|
|
28
|
+
done: "Terminé",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Retirer",
|
|
31
|
+
no: "Non",
|
|
32
|
+
yes: "Oui",
|
|
33
|
+
"confirm-your-action": "Confirmez votre action",
|
|
34
|
+
"are-you-sure": "Êtes-vous sûr?",
|
|
35
|
+
"selected-count": "Sélectionné :",
|
|
36
|
+
"upload-error": "Erreur de téléchargement",
|
|
37
|
+
"validation-error": "Erreur de validation",
|
|
38
|
+
"no-files": "Aucun fichier sélectionné",
|
|
39
|
+
browse: "Parcourir",
|
|
40
|
+
"not-uploaded-yet": "Pas encore téléchargé...",
|
|
41
|
+
file__one: "fichier",
|
|
42
|
+
file__many: "fichiers",
|
|
43
|
+
file__other: "fichiers",
|
|
44
|
+
error__one: "erreur",
|
|
45
|
+
error__many: "erreurs",
|
|
46
|
+
error__other: "erreurs",
|
|
47
|
+
"header-uploading": "Téléchargement de {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} téléchargé(s)",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} sélectionné(s)",
|
|
51
|
+
"src-type-local": "Depuis l'appareil",
|
|
52
|
+
"src-type-from-url": "Depuis le lien",
|
|
53
|
+
"src-type-camera": "Appareil photo",
|
|
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": "Autre",
|
|
66
|
+
"src-type-mobile-video-camera": "Vidéo",
|
|
67
|
+
"src-type-mobile-photo-camera": "Photo",
|
|
68
|
+
"caption-from-url": "Importer depuis le lien",
|
|
69
|
+
"caption-camera": "Appareil photo",
|
|
70
|
+
"caption-edit-file": "Éditer le fichier",
|
|
71
|
+
"file-no-name": "Sans nom...",
|
|
72
|
+
"toggle-fullscreen": "Basculer en plein écran",
|
|
73
|
+
"toggle-guides": "Basculer les guides",
|
|
74
|
+
rotate: "Pivoter",
|
|
75
|
+
"flip-vertical": "Retourner verticalement",
|
|
76
|
+
"flip-horizontal": "Retourner horizontalement",
|
|
77
|
+
apply: "Appliquer",
|
|
78
|
+
brightness: "Luminosité",
|
|
79
|
+
contrast: "Contraste",
|
|
80
|
+
saturation: "Saturation",
|
|
81
|
+
exposure: "Exposition",
|
|
82
|
+
gamma: "Gamma",
|
|
83
|
+
vibrance: "Vibrance",
|
|
84
|
+
warmth: "Chaleur",
|
|
85
|
+
enhance: "Améliorer",
|
|
86
|
+
original: "Original",
|
|
87
|
+
resize: "Redimensionner l'image",
|
|
88
|
+
crop: "Rogner",
|
|
89
|
+
"select-color": "Sélectionner la couleur",
|
|
90
|
+
text: "Texte",
|
|
91
|
+
draw: "Dessiner",
|
|
92
|
+
"cancel-edit": "Annuler l'édition",
|
|
93
|
+
"tab-view": "Aperçu",
|
|
94
|
+
"tab-details": "Détails",
|
|
95
|
+
"file-name": "Nom",
|
|
96
|
+
"file-size": "Taille",
|
|
97
|
+
"cdn-url": "URL CDN",
|
|
98
|
+
"file-size-unknown": "Inconnu",
|
|
99
|
+
"camera-permissions-denied": "Accès à la caméra refusé",
|
|
100
|
+
"camera-permissions-prompt": "Veuillez autoriser l'accès à la caméra",
|
|
101
|
+
"camera-permissions-request": "Demander l'accès",
|
|
102
|
+
"files-count-limit-error-title": "Limite du nombre de fichiers dépassée",
|
|
103
|
+
"files-count-limit-error-too-few": "Vous avez choisi {{total}} {{plural:file(total)}}. Au moins {{min}} {{plural:file(min)}} requis.",
|
|
104
|
+
"files-count-limit-error-too-many": "Vous avez choisi trop de fichiers. {{max}} {{plural:file(max)}} maximum.",
|
|
105
|
+
"files-max-size-limit-error": "Le fichier est trop gros. La taille maximale du fichier est de {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "Une erreur de validation de fichier s'est produite. Veuillez vérifier vos fichiers avant de les télécharger.",
|
|
107
|
+
"images-only-accepted": "Seuls les fichiers image sont acceptés.",
|
|
108
|
+
"file-type-not-allowed": "Le téléchargement de ces types de fichiers n'est pas autorisé.",
|
|
109
|
+
"some-files-were-not-uploaded": "Certains fichiers n'ont pas été téléchargés.",
|
|
110
|
+
"file-item-edit-button": "Modifier",
|
|
111
|
+
"file-item-remove-button": "Supprimer",
|
|
112
|
+
"a11y-activity-header-button-close": "Fermer",
|
|
113
|
+
"a11y-editor-tab-filters": "Filtres",
|
|
114
|
+
"a11y-editor-tab-tuning": "Réglage",
|
|
115
|
+
"a11y-editor-tab-crop": "Recadrer",
|
|
116
|
+
flip: "Retourner",
|
|
117
|
+
mirror: "Miroir",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "Appliquer le filtre {{name}}",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "Appliquer l'opération {{name}}",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "Appliquer le réglage {{name}}",
|
|
121
|
+
finished: "Terminé",
|
|
122
|
+
failed: "Échoué",
|
|
123
|
+
uploading: "Téléchargement",
|
|
124
|
+
idle: "Inactif",
|
|
125
|
+
"a11y-file-item-status": "Le fichier {{fileName}} est en statut {{status}}",
|
|
126
|
+
"select-all": "Tout sélectionner",
|
|
127
|
+
"deselect-all": "Tout désélectionner",
|
|
128
|
+
"waiting-for": "En attente de {{source}}",
|
|
129
|
+
"queued-uploading": "En file d’attente pour l’envoi",
|
|
130
|
+
"queued-validation": "En file d’attente pour la validation",
|
|
131
|
+
validation: "Validation en cours",
|
|
132
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Appliquer l'opération {{name}} {{value}}",
|
|
133
|
+
"crop-to-shape": "Rogner en {{value}}",
|
|
134
|
+
custom: "Forme libre",
|
|
135
|
+
"freeform-crop": "Recadrage libre"
|
|
136
|
+
};
|
|
137
|
+
export { fr_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 he_default = {
|
|
8
|
+
"locale-id": "he",
|
|
9
|
+
"social-source-lang": "he",
|
|
10
|
+
"upload-file": "העלה קובץ",
|
|
11
|
+
"upload-files": "העלה קבצים",
|
|
12
|
+
"choose-file": "בחר קובץ",
|
|
13
|
+
"choose-files": "בחר קבצים",
|
|
14
|
+
"drop-files-here": "שחרר קבצים כאן",
|
|
15
|
+
"select-file-source": "בחר מקור קבצים",
|
|
16
|
+
selected: "נבחר",
|
|
17
|
+
upload: "העלה",
|
|
18
|
+
"add-more": "הוסף עוד",
|
|
19
|
+
cancel: "בטל",
|
|
20
|
+
"start-from-cancel": "בטל",
|
|
21
|
+
clear: "נקה",
|
|
22
|
+
"camera-shot": "צילום",
|
|
23
|
+
"upload-url": "ייבוא",
|
|
24
|
+
"upload-url-placeholder": "הדבק קישור כאן",
|
|
25
|
+
"edit-image": "ערוך תמונה",
|
|
26
|
+
"edit-detail": "פרטים",
|
|
27
|
+
back: "חזור",
|
|
28
|
+
done: "סיום",
|
|
29
|
+
ok: "אישור",
|
|
30
|
+
"remove-from-list": "הסר",
|
|
31
|
+
no: "לא",
|
|
32
|
+
yes: "כן",
|
|
33
|
+
"confirm-your-action": "אשר פעולה זו",
|
|
34
|
+
"are-you-sure": "האם אתה בטוח?",
|
|
35
|
+
"selected-count": "נבחרו:",
|
|
36
|
+
"upload-error": "שגיאת העלאה",
|
|
37
|
+
"validation-error": "שגיאת אימות",
|
|
38
|
+
"no-files": "לא נבחרו קבצים",
|
|
39
|
+
browse: "עיין",
|
|
40
|
+
"not-uploaded-yet": "טרם הועלה...",
|
|
41
|
+
file__one: "קובץ",
|
|
42
|
+
file__two: "קבצים",
|
|
43
|
+
file__other: "קבצים",
|
|
44
|
+
error__one: "שגיאה",
|
|
45
|
+
error__two: "שגיאות",
|
|
46
|
+
error__other: "שגיאות",
|
|
47
|
+
"header-uploading": "מעלה {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} הועלו",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} נבחרו",
|
|
51
|
+
"src-type-local": "מהמכשיר",
|
|
52
|
+
"src-type-from-url": "מקישור",
|
|
53
|
+
"src-type-camera": "מצלמה",
|
|
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": "אחר",
|
|
66
|
+
"src-type-mobile-video-camera": "וידאו",
|
|
67
|
+
"src-type-mobile-photo-camera": "תמונה",
|
|
68
|
+
"caption-from-url": "ייבוא מקישור",
|
|
69
|
+
"caption-camera": "מצלמה",
|
|
70
|
+
"caption-edit-file": "ערוך קובץ",
|
|
71
|
+
"file-no-name": "ללא שם...",
|
|
72
|
+
"toggle-fullscreen": "מסך מלא",
|
|
73
|
+
"toggle-guides": "הצג מדריכים",
|
|
74
|
+
rotate: "סובב",
|
|
75
|
+
"flip-vertical": "הפוך אנכית",
|
|
76
|
+
"flip-horizontal": "הפוך אופקית",
|
|
77
|
+
apply: "החל",
|
|
78
|
+
brightness: "בהירות",
|
|
79
|
+
contrast: "ניגודיות",
|
|
80
|
+
saturation: "רוויה",
|
|
81
|
+
exposure: "חשיפה",
|
|
82
|
+
gamma: "גמא",
|
|
83
|
+
vibrance: "חיוניות",
|
|
84
|
+
warmth: "חום",
|
|
85
|
+
enhance: "שפר",
|
|
86
|
+
original: "מקורי",
|
|
87
|
+
resize: "שנה גודל תמונה",
|
|
88
|
+
crop: "חתוך",
|
|
89
|
+
"select-color": "בחר צבע",
|
|
90
|
+
text: "טקסט",
|
|
91
|
+
draw: "צייר",
|
|
92
|
+
"cancel-edit": "בטל עריכה",
|
|
93
|
+
"tab-view": "תצוגה מקדימה",
|
|
94
|
+
"tab-details": "פרטים",
|
|
95
|
+
"file-name": "שם",
|
|
96
|
+
"file-size": "גודל",
|
|
97
|
+
"cdn-url": "כתובת CDN",
|
|
98
|
+
"file-size-unknown": "לא ידוע",
|
|
99
|
+
"camera-permissions-denied": "גישה למצלמה נדחתה",
|
|
100
|
+
"camera-permissions-prompt": "אנא אפשר גישה למצלמה",
|
|
101
|
+
"camera-permissions-request": "בקש גישה",
|
|
102
|
+
"files-count-limit-error-title": "חריגה ממגבלת כמות הקבצים",
|
|
103
|
+
"files-count-limit-error-too-few": "בחרת {{total}} {{plural:file(total)}}. לפחות {{min}} {{plural:file(min)}} נדרשים.",
|
|
104
|
+
"files-count-limit-error-too-many": "בחרת יותר מדי קבצים. מקסימום {{max}} {{plural:file(max)}}.",
|
|
105
|
+
"files-max-size-limit-error": "הקובץ גדול מדי. הגודל המקסימלי הוא {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "אירעה שגיאת אימות קבצים. אנא בדוק את הקבצים לפני ההעלאה.",
|
|
107
|
+
"images-only-accepted": "מתקבלים רק קבצי תמונות.",
|
|
108
|
+
"file-type-not-allowed": "העלאת סוגי קבצים אלו אינה מורשית.",
|
|
109
|
+
"some-files-were-not-uploaded": "חלק מהקבצים לא הועלו.",
|
|
110
|
+
"file-item-edit-button": "ערוך",
|
|
111
|
+
"file-item-remove-button": "הסר",
|
|
112
|
+
"a11y-activity-header-button-close": "סגור",
|
|
113
|
+
"a11y-editor-tab-filters": "מסננים",
|
|
114
|
+
"a11y-editor-tab-tuning": "כיוון",
|
|
115
|
+
"a11y-editor-tab-crop": "חיתוך",
|
|
116
|
+
flip: "היפוך",
|
|
117
|
+
mirror: "מראה",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "החל מסנן {{name}}",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "החל פעולה {{name}}",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "החל כיוון {{name}}",
|
|
121
|
+
finished: "הושלם",
|
|
122
|
+
failed: "נכשל",
|
|
123
|
+
uploading: "מעלה",
|
|
124
|
+
idle: "בטלה",
|
|
125
|
+
"a11y-file-item-status": "הקובץ {{fileName}} במצב {{status}}",
|
|
126
|
+
"select-all": "בחר הכל",
|
|
127
|
+
"deselect-all": "בטל בחירת הכל",
|
|
128
|
+
"waiting-for": "ממתין ל{{source}}",
|
|
129
|
+
"queued-uploading": "בתור להעלאה",
|
|
130
|
+
"queued-validation": "בתור לאימות",
|
|
131
|
+
validation: "מתבצע אימות",
|
|
132
|
+
"a11y-cloud-editor-apply-aspect-ratio": "החל פעולה {{name}} {{value}}",
|
|
133
|
+
"crop-to-shape": "חיתוך ל{{value}}",
|
|
134
|
+
custom: "צורה חופשית",
|
|
135
|
+
"freeform-crop": "חיתוך חופשי"
|
|
136
|
+
};
|
|
137
|
+
export { he_default as default };
|
|
@@ -43,7 +43,6 @@ declare const _default: {
|
|
|
43
43
|
'src-type-local': string;
|
|
44
44
|
'src-type-from-url': string;
|
|
45
45
|
'src-type-camera': string;
|
|
46
|
-
'src-type-draw': string;
|
|
47
46
|
'src-type-facebook': string;
|
|
48
47
|
'src-type-dropbox': string;
|
|
49
48
|
'src-type-gdrive': string;
|
|
@@ -60,7 +59,6 @@ declare const _default: {
|
|
|
60
59
|
'src-type-mobile-photo-camera': string;
|
|
61
60
|
'caption-from-url': string;
|
|
62
61
|
'caption-camera': string;
|
|
63
|
-
'caption-draw': string;
|
|
64
62
|
'caption-edit-file': string;
|
|
65
63
|
'file-no-name': string;
|
|
66
64
|
'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;
|