@uploadcare/file-uploader 1.21.0-alpha.3 → 1.21.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/LICENSE +1 -1
- package/README.md +8 -2
- package/abstract/ActivityBlock.d.ts +0 -1
- package/abstract/ActivityBlock.d.ts.map +1 -1
- package/abstract/ActivityBlock.js +1 -1
- package/abstract/Block.d.ts +13 -2
- package/abstract/Block.d.ts.map +1 -1
- package/abstract/Block.js +35 -3
- package/abstract/CTX.d.ts +4 -4
- package/abstract/CTX.d.ts.map +1 -1
- package/abstract/CTX.js +2 -2
- package/abstract/SolutionBlock.d.ts +2 -2
- package/abstract/UploaderBlock.d.ts +9 -5
- package/abstract/UploaderBlock.d.ts.map +1 -1
- package/abstract/UploaderBlock.js +50 -13
- package/abstract/UploaderPublicApi.d.ts +2 -2
- package/abstract/UploaderPublicApi.d.ts.map +1 -1
- package/abstract/UploaderPublicApi.js +4 -4
- package/abstract/l10nProcessor.js +1 -1
- package/abstract/{LocaleManager.d.ts → managers/LocaleManager.d.ts} +8 -8
- package/abstract/{LocaleManager.d.ts.map → managers/LocaleManager.d.ts.map} +1 -1
- package/abstract/{LocaleManager.js → managers/LocaleManager.js} +8 -8
- package/abstract/{ModalManager.d.ts → managers/ModalManager.d.ts} +7 -7
- package/abstract/{ModalManager.d.ts.map → managers/ModalManager.d.ts.map} +1 -1
- package/abstract/{ModalManager.js → managers/ModalManager.js} +4 -3
- package/abstract/managers/SecureUploadsManager.d.ts +22 -0
- package/abstract/{SecureUploadsManager.d.ts.map → managers/SecureUploadsManager.d.ts.map} +1 -1
- package/abstract/{SecureUploadsManager.js → managers/SecureUploadsManager.js} +9 -5
- package/abstract/managers/TelemetryManager.d.ts +71 -0
- package/abstract/managers/TelemetryManager.d.ts.map +1 -0
- package/abstract/managers/TelemetryManager.js +218 -0
- package/abstract/{ValidationManager.d.ts → managers/ValidationManager.d.ts} +7 -7
- package/abstract/managers/ValidationManager.d.ts.map +1 -0
- package/abstract/{ValidationManager.js → managers/ValidationManager.js} +16 -14
- package/abstract/{a11y.d.ts → managers/a11y.d.ts} +2 -2
- package/abstract/managers/a11y.d.ts.map +1 -0
- package/abstract/{a11y.js → managers/a11y.js} +1 -1
- package/blocks/CameraSource/CameraSource.d.ts +2 -2
- package/blocks/CameraSource/CameraSource.d.ts.map +1 -1
- package/blocks/CameraSource/CameraSource.js +15 -3
- package/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +2 -1
- package/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/CloudImageEditorBlock.js +20 -5
- package/blocks/CloudImageEditor/src/CropFrame.js +3 -3
- package/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +11 -0
- package/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.js +130 -0
- package/blocks/CloudImageEditor/src/EditorButtonControl.js +1 -1
- package/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/EditorCropButtonControl.js +9 -1
- package/blocks/CloudImageEditor/src/EditorFilterControl.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/EditorFilterControl.js +7 -1
- package/blocks/CloudImageEditor/src/EditorImageCropper.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/EditorImageCropper.js +3 -3
- package/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +1 -1
- package/blocks/CloudImageEditor/src/EditorOperationControl.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/EditorOperationControl.js +9 -3
- package/blocks/CloudImageEditor/src/EditorToolbar.d.ts +19 -7
- package/blocks/CloudImageEditor/src/EditorToolbar.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/EditorToolbar.js +88 -21
- package/blocks/CloudImageEditor/src/css/common.css +39 -7
- package/blocks/CloudImageEditor/src/index.d.ts +1 -0
- package/blocks/CloudImageEditor/src/index.js +1 -0
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +2 -1
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.js +74 -8
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +2 -0
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.test.js +35 -0
- package/blocks/CloudImageEditor/src/state.d.ts +2 -2
- package/blocks/CloudImageEditor/src/state.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/state.js +2 -2
- package/blocks/CloudImageEditor/src/svg-sprite.d.ts +1 -1
- package/blocks/CloudImageEditor/src/svg-sprite.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/svg-sprite.js +1 -1
- package/blocks/CloudImageEditor/src/toolbar-constants.d.ts +2 -2
- package/blocks/CloudImageEditor/src/toolbar-constants.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/toolbar-constants.js +3 -2
- package/blocks/CloudImageEditor/src/types.d.ts +2 -0
- package/blocks/CloudImageEditor/src/types.d.ts.map +1 -1
- package/blocks/CloudImageEditor/src/types.js +9 -1
- package/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +11 -0
- package/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/utils/parseFilterValue.js +11 -0
- package/blocks/Config/Config.d.ts.map +1 -1
- package/blocks/Config/Config.js +6 -1
- package/blocks/Config/initialConfig.d.ts +1 -0
- package/blocks/Config/initialConfig.d.ts.map +1 -1
- package/blocks/Config/initialConfig.js +6 -2
- package/blocks/Config/normalizeConfigValue.d.ts.map +1 -1
- package/blocks/Config/normalizeConfigValue.js +3 -0
- package/blocks/Config/side-effects.d.ts +8 -4
- package/blocks/Config/side-effects.d.ts.map +1 -1
- package/blocks/Config/side-effects.js +115 -21
- package/blocks/DropArea/DropArea.d.ts +2 -2
- package/blocks/ExternalSource/ExternalSource.d.ts +2 -2
- package/blocks/ExternalSource/types.d.ts +0 -3
- package/blocks/ExternalSource/types.d.ts.map +1 -1
- package/blocks/ExternalSource/types.js +0 -4
- package/blocks/FileItem/FileItem.d.ts +2 -3
- package/blocks/FileItem/FileItem.d.ts.map +1 -1
- package/blocks/FileItem/FileItem.js +20 -18
- package/blocks/FileItem/FileItemConfig.d.ts +1 -1
- package/blocks/FileItem/FileItemConfig.d.ts.map +1 -1
- package/blocks/FileItem/FileItemConfig.js +3 -3
- package/blocks/Modal/Modal.d.ts +6 -6
- package/blocks/Modal/Modal.d.ts.map +1 -1
- package/blocks/Modal/Modal.js +10 -12
- package/blocks/SimpleBtn/SimpleBtn.d.ts +2 -2
- package/blocks/SourceBtn/SourceBtn.d.ts +2 -2
- package/blocks/SourceBtn/SourceBtn.d.ts.map +1 -1
- package/blocks/SourceBtn/SourceBtn.js +0 -8
- package/blocks/Thumb/Thumb.d.ts +2 -2
- package/blocks/Thumb/Thumb.d.ts.map +1 -1
- package/blocks/Thumb/Thumb.js +2 -0
- package/blocks/UploadCtxProvider/EventEmitter.d.ts +17 -4
- package/blocks/UploadCtxProvider/EventEmitter.d.ts.map +1 -1
- package/blocks/UploadCtxProvider/EventEmitter.js +14 -2
- package/blocks/UploadList/UploadList.d.ts +2 -2
- package/blocks/UrlSource/UrlSource.js +3 -1
- package/blocks/themes/uc-basic/common.css +4 -0
- package/blocks/themes/uc-basic/index.css +0 -1
- package/blocks/themes/uc-basic/svg-sprite.d.ts +1 -1
- package/blocks/themes/uc-basic/svg-sprite.d.ts.map +1 -1
- package/blocks/themes/uc-basic/svg-sprite.js +1 -1
- package/env.d.ts +1 -1
- package/env.js +1 -1
- package/index.d.ts +1 -2
- package/index.js +1 -2
- package/index.ssr.d.ts +19 -69
- package/index.ssr.d.ts.map +1 -1
- package/index.ssr.js +44 -143
- package/locales/file-uploader/ar.d.ts +4 -0
- package/locales/file-uploader/ar.js +5 -0
- package/locales/file-uploader/az.d.ts +4 -0
- package/locales/file-uploader/az.js +5 -0
- package/locales/file-uploader/ca.d.ts +4 -0
- package/locales/file-uploader/ca.js +6 -0
- package/locales/file-uploader/cs.d.ts +4 -0
- package/locales/file-uploader/cs.js +6 -0
- package/locales/file-uploader/da.d.ts +4 -0
- package/locales/file-uploader/da.js +6 -0
- package/locales/file-uploader/de.d.ts +4 -0
- package/locales/file-uploader/de.js +6 -0
- package/locales/file-uploader/el.d.ts +4 -0
- package/locales/file-uploader/el.js +6 -0
- package/locales/file-uploader/en.d.ts +4 -3
- package/locales/file-uploader/en.js +5 -3
- package/locales/file-uploader/es.d.ts +4 -0
- package/locales/file-uploader/es.js +6 -0
- package/locales/file-uploader/et.d.ts +4 -0
- package/locales/file-uploader/et.js +6 -0
- package/locales/file-uploader/fi.d.ts +4 -0
- package/locales/file-uploader/fi.js +6 -0
- package/locales/file-uploader/fr.d.ts +4 -0
- package/locales/file-uploader/fr.js +6 -0
- package/locales/file-uploader/he.d.ts +4 -0
- package/locales/file-uploader/he.js +6 -0
- package/locales/file-uploader/hy.d.ts +4 -0
- package/locales/file-uploader/hy.js +5 -0
- package/locales/file-uploader/is.d.ts +4 -0
- package/locales/file-uploader/is.js +6 -0
- package/locales/file-uploader/it.d.ts +4 -0
- package/locales/file-uploader/it.js +6 -0
- package/locales/file-uploader/ja.d.ts +4 -0
- package/locales/file-uploader/ja.js +6 -0
- package/locales/file-uploader/ka.d.ts +4 -0
- package/locales/file-uploader/ka.js +6 -0
- package/locales/file-uploader/kk.d.ts +4 -0
- package/locales/file-uploader/kk.js +6 -0
- package/locales/file-uploader/ko.d.ts +4 -0
- package/locales/file-uploader/ko.js +6 -0
- package/locales/file-uploader/lv.d.ts +4 -0
- package/locales/file-uploader/lv.js +6 -0
- package/locales/file-uploader/nb.d.ts +4 -0
- package/locales/file-uploader/nb.js +6 -0
- package/locales/file-uploader/nl.d.ts +4 -0
- package/locales/file-uploader/nl.js +6 -0
- package/locales/file-uploader/pl.d.ts +4 -0
- package/locales/file-uploader/pl.js +6 -0
- package/locales/file-uploader/pt.d.ts +4 -0
- package/locales/file-uploader/pt.js +6 -0
- package/locales/file-uploader/ro.d.ts +4 -0
- package/locales/file-uploader/ro.js +6 -0
- package/locales/file-uploader/ru.d.ts +4 -0
- package/locales/file-uploader/ru.js +6 -0
- package/locales/file-uploader/sk.d.ts +4 -0
- package/locales/file-uploader/sk.js +6 -0
- package/locales/file-uploader/sr.d.ts +4 -0
- package/locales/file-uploader/sr.js +6 -0
- package/locales/file-uploader/sv.d.ts +4 -0
- package/locales/file-uploader/sv.js +6 -0
- package/locales/file-uploader/tr.d.ts +4 -0
- package/locales/file-uploader/tr.js +6 -0
- package/locales/file-uploader/uk.d.ts +4 -0
- package/locales/file-uploader/uk.js +6 -0
- package/locales/file-uploader/vi.d.ts +4 -0
- package/locales/file-uploader/vi.js +6 -0
- package/locales/file-uploader/zh-TW.d.ts +4 -0
- package/locales/file-uploader/zh-TW.js +6 -0
- package/locales/file-uploader/zh.d.ts +4 -0
- package/locales/file-uploader/zh.js +6 -0
- package/package.json +8 -8
- package/solutions/cloud-image-editor/CloudImageEditor.d.ts +35 -0
- package/solutions/cloud-image-editor/CloudImageEditor.d.ts.map +1 -1
- package/solutions/cloud-image-editor/CloudImageEditor.js +12 -0
- package/solutions/file-uploader/inline/FileUploaderInline.d.ts +3 -2
- package/solutions/file-uploader/inline/FileUploaderInline.d.ts.map +1 -1
- package/solutions/file-uploader/inline/FileUploaderInline.js +4 -0
- package/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +11 -10
- package/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts.map +1 -1
- package/solutions/file-uploader/minimal/FileUploaderMinimal.js +9 -9
- package/solutions/file-uploader/regular/FileUploaderRegular.d.ts +3 -2
- package/solutions/file-uploader/regular/FileUploaderRegular.d.ts.map +1 -1
- package/solutions/file-uploader/regular/FileUploaderRegular.js +4 -4
- package/types/events.d.ts +1 -1
- package/types/exported.d.ts +59 -52
- package/types/jsx.d.ts +2 -0
- package/utils/isPromiseLike.d.ts +2 -0
- package/utils/isPromiseLike.d.ts.map +1 -0
- package/utils/isPromiseLike.js +12 -0
- package/utils/isPromiseLike.test.d.ts +2 -0
- package/utils/isPromiseLike.test.d.ts.map +1 -0
- package/utils/isPromiseLike.test.js +20 -0
- package/utils/parseCdnUrl.d.ts.map +1 -1
- package/utils/parseCdnUrl.js +4 -1
- package/utils/parseCdnUrl.test.js +13 -0
- package/utils/validators/collection/validateCollectionUploadError.d.ts +2 -2
- package/utils/validators/collection/validateCollectionUploadError.d.ts.map +1 -1
- package/utils/validators/collection/validateCollectionUploadError.js +1 -1
- package/utils/validators/collection/validateMultiple.d.ts +2 -2
- package/utils/validators/collection/validateMultiple.d.ts.map +1 -1
- package/utils/validators/collection/validateMultiple.js +1 -1
- package/utils/validators/file/validateFileType.d.ts +2 -2
- package/utils/validators/file/validateFileType.d.ts.map +1 -1
- package/utils/validators/file/validateFileType.js +1 -1
- package/utils/validators/file/validateIsImage.d.ts +2 -2
- package/utils/validators/file/validateIsImage.d.ts.map +1 -1
- package/utils/validators/file/validateIsImage.js +1 -1
- package/utils/validators/file/validateMaxSizeLimit.d.ts +2 -2
- package/utils/validators/file/validateMaxSizeLimit.d.ts.map +1 -1
- package/utils/validators/file/validateMaxSizeLimit.js +1 -1
- package/utils/validators/file/validateUploadError.d.ts +2 -2
- package/utils/validators/file/validateUploadError.d.ts.map +1 -1
- package/utils/validators/file/validateUploadError.js +1 -1
- package/web/file-uploader.iife.min.js +5 -5
- package/web/file-uploader.min.js +5 -5
- package/web/uc-basic.min.css +1 -1
- package/web/uc-cloud-image-editor.min.css +1 -1
- package/web/uc-cloud-image-editor.min.js +5 -5
- package/web/uc-file-uploader-inline.min.css +1 -1
- package/web/uc-file-uploader-inline.min.js +5 -5
- package/web/uc-file-uploader-minimal.min.css +1 -1
- package/web/uc-file-uploader-minimal.min.js +5 -5
- package/web/uc-file-uploader-regular.min.css +1 -1
- package/web/uc-file-uploader-regular.min.js +5 -5
- package/web/uc-img.min.js +2 -2
- package/abstract/SecureUploadsManager.d.ts +0 -22
- package/abstract/ValidationManager.d.ts.map +0 -1
- package/abstract/a11y.d.ts.map +0 -1
- package/blocks/AiGenerateSource/AIGenerateSource.d.ts +0 -47
- package/blocks/AiGenerateSource/AIGenerateSource.d.ts.map +0 -1
- package/blocks/AiGenerateSource/AIGenerateSource.js +0 -180
- package/blocks/AiGenerateSource/ai-generate-source.css +0 -58
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
queued: string;
|
|
122
122
|
'a11y-file-item-status': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=da.d.ts.map
|
|
@@ -123,4 +123,10 @@ export default {
|
|
|
123
123
|
queued: 'I kø',
|
|
124
124
|
'a11y-file-item-status': 'Filen {{fileName}} er i status {{status}}',
|
|
125
125
|
'waiting-for': 'Venter på {{source}}',
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Anvend handling {{name}} {{value}}',
|
|
127
|
+
'aspect-ratio': 'Bredde-højdeforhold',
|
|
128
|
+
|
|
129
|
+
'crop-to-shape': 'Beskær til {{value}}',
|
|
130
|
+
|
|
131
|
+
custom: 'Tilpasset',
|
|
126
132
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
queued: string;
|
|
122
122
|
'a11y-file-item-status': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=de.d.ts.map
|
|
@@ -124,4 +124,10 @@ export default {
|
|
|
124
124
|
queued: 'In der Warteschlange',
|
|
125
125
|
'a11y-file-item-status': 'Datei {{fileName}} im Status {{status}}',
|
|
126
126
|
'waiting-for': 'Warten auf {{source}}',
|
|
127
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Vorgang {{name}} {{value}} anwenden',
|
|
128
|
+
'aspect-ratio': 'Seitenverhältnis',
|
|
129
|
+
|
|
130
|
+
'crop-to-shape': 'Zuschneiden auf {{value}}',
|
|
131
|
+
|
|
132
|
+
custom: 'Benutzerdefiniert',
|
|
127
133
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
queued: string;
|
|
122
122
|
'a11y-file-item-status': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=el.d.ts.map
|
|
@@ -124,4 +124,10 @@ export default {
|
|
|
124
124
|
queued: 'Σε ουρά',
|
|
125
125
|
'a11y-file-item-status': 'Το αρχείο {{fileName}} βρίσκεται στην κατάσταση {{status}}',
|
|
126
126
|
'waiting-for': 'Αναμονή για {{source}}',
|
|
127
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Εφαρμογή λειτουργίας {{name}} {{value}}',
|
|
128
|
+
'aspect-ratio': 'Λόγος διαστάσεων',
|
|
129
|
+
|
|
130
|
+
'crop-to-shape': 'Περικοπή σε {{value}}',
|
|
131
|
+
|
|
132
|
+
custom: 'Προσαρμοσμένο',
|
|
127
133
|
};
|
|
@@ -44,7 +44,6 @@ declare const _default: {
|
|
|
44
44
|
'header-total': string;
|
|
45
45
|
'src-type-local': string;
|
|
46
46
|
'src-type-from-url': string;
|
|
47
|
-
'src-type-ai-generate': string;
|
|
48
47
|
'src-type-camera': string;
|
|
49
48
|
'src-type-mobile-video-camera': string;
|
|
50
49
|
'src-type-mobile-photo-camera': string;
|
|
@@ -106,17 +105,16 @@ declare const _default: {
|
|
|
106
105
|
'some-files-were-not-uploaded': string;
|
|
107
106
|
'file-item-edit-button': string;
|
|
108
107
|
'file-item-remove-button': string;
|
|
109
|
-
'file-item-ai-button': string;
|
|
110
108
|
'a11y-editor-tab-filters': string;
|
|
111
109
|
'a11y-editor-tab-tuning': string;
|
|
112
110
|
'a11y-editor-tab-crop': string;
|
|
113
|
-
'a11y-editor-tab-ai': string;
|
|
114
111
|
'a11y-activity-header-button-close': string;
|
|
115
112
|
flip: string;
|
|
116
113
|
mirror: string;
|
|
117
114
|
'a11y-cloud-editor-apply-filter': string;
|
|
118
115
|
'a11y-cloud-editor-apply-crop': string;
|
|
119
116
|
'a11y-cloud-editor-apply-tuning': string;
|
|
117
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
120
118
|
finished: string;
|
|
121
119
|
failed: string;
|
|
122
120
|
uploading: string;
|
|
@@ -124,6 +122,9 @@ declare const _default: {
|
|
|
124
122
|
'a11y-file-item-status': string;
|
|
125
123
|
'waiting-for': string;
|
|
126
124
|
queued: string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
127
128
|
};
|
|
128
129
|
export default _default;
|
|
129
130
|
//# sourceMappingURL=en.d.ts.map
|
|
@@ -44,7 +44,6 @@ export default {
|
|
|
44
44
|
'header-total': '{{count}} {{plural:file(count)}} selected',
|
|
45
45
|
'src-type-local': 'From device',
|
|
46
46
|
'src-type-from-url': 'From link',
|
|
47
|
-
'src-type-ai-generate': 'AI Editor',
|
|
48
47
|
'src-type-camera': 'Camera',
|
|
49
48
|
'src-type-mobile-video-camera': 'Video',
|
|
50
49
|
'src-type-mobile-photo-camera': 'Photo',
|
|
@@ -107,17 +106,16 @@ export default {
|
|
|
107
106
|
'some-files-were-not-uploaded': 'Some files were not uploaded.',
|
|
108
107
|
'file-item-edit-button': 'Edit',
|
|
109
108
|
'file-item-remove-button': 'Remove',
|
|
110
|
-
'file-item-ai-button': 'Ai generate image',
|
|
111
109
|
'a11y-editor-tab-filters': 'Filters',
|
|
112
110
|
'a11y-editor-tab-tuning': 'Tuning',
|
|
113
111
|
'a11y-editor-tab-crop': 'Crop',
|
|
114
|
-
'a11y-editor-tab-ai': 'AI',
|
|
115
112
|
'a11y-activity-header-button-close': 'Close',
|
|
116
113
|
flip: 'Flip',
|
|
117
114
|
mirror: 'Mirror',
|
|
118
115
|
'a11y-cloud-editor-apply-filter': 'Apply {{name}} filter',
|
|
119
116
|
'a11y-cloud-editor-apply-crop': 'Apply {{name}} operation',
|
|
120
117
|
'a11y-cloud-editor-apply-tuning': 'Apply {{name}} tuning',
|
|
118
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Apply operation {{name}} {{value}}',
|
|
121
119
|
finished: 'Finished',
|
|
122
120
|
failed: 'Failed',
|
|
123
121
|
uploading: 'Uploading',
|
|
@@ -125,4 +123,8 @@ export default {
|
|
|
125
123
|
'a11y-file-item-status': 'File {{fileName}} in status {{status}}',
|
|
126
124
|
'waiting-for': 'Waiting for {{source}}',
|
|
127
125
|
queued: 'Queued',
|
|
126
|
+
'aspect-ratio': 'Aspect ratio',
|
|
127
|
+
'crop-to-shape': 'Crop to {{value}}',
|
|
128
|
+
|
|
129
|
+
custom: 'Custom',
|
|
128
130
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
queued: string;
|
|
124
124
|
'a11y-file-item-status': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=es.d.ts.map
|
|
@@ -125,4 +125,10 @@ export default {
|
|
|
125
125
|
queued: 'En cola',
|
|
126
126
|
'a11y-file-item-status': 'El archivo {{fileName}} está en estado {{status}}',
|
|
127
127
|
'waiting-for': 'Esperando por {{source}}',
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Aplicar operación {{name}} {{value}}',
|
|
129
|
+
'aspect-ratio': 'Relación de aspecto',
|
|
130
|
+
|
|
131
|
+
'crop-to-shape': 'Recortar a {{value}}',
|
|
132
|
+
|
|
133
|
+
custom: 'Personalizado',
|
|
128
134
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
queued: string;
|
|
122
122
|
'a11y-file-item-status': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=et.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
queued: 'Järjekorras',
|
|
123
123
|
'a11y-file-item-status': 'Fail {{fileName}} on seisundis {{status}}',
|
|
124
124
|
'waiting-for': 'Ootel {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Rakenda toiming {{name}} {{value}}',
|
|
126
|
+
'aspect-ratio': 'Külgede suhe',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': 'Kärbi suuruseks {{value}}',
|
|
129
|
+
|
|
130
|
+
custom: 'Kohandatud',
|
|
125
131
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=fi.d.ts.map
|
|
@@ -123,4 +123,10 @@ export default {
|
|
|
123
123
|
'select-all': 'Valitse kaikki',
|
|
124
124
|
'deselect-all': 'Poista valinnat',
|
|
125
125
|
'waiting-for': 'Odotetaan {{source}}',
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Käytä toimintoa {{name}} {{value}}',
|
|
127
|
+
'aspect-ratio': 'Kuvasuhde',
|
|
128
|
+
|
|
129
|
+
'crop-to-shape': 'Rajaa arvoon {{value}}',
|
|
130
|
+
|
|
131
|
+
custom: 'Mukautettu',
|
|
126
132
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'select-all': string;
|
|
124
124
|
'deselect-all': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=fr.d.ts.map
|
|
@@ -125,4 +125,10 @@ export default {
|
|
|
125
125
|
'select-all': 'Tout sélectionner',
|
|
126
126
|
'deselect-all': 'Tout désélectionner',
|
|
127
127
|
'waiting-for': 'En attente de {{source}}',
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': "Appliquer l'opération {{name}} {{value}}",
|
|
129
|
+
'aspect-ratio': "Rapport d'aspect",
|
|
130
|
+
|
|
131
|
+
'crop-to-shape': 'Rogner en {{value}}',
|
|
132
|
+
|
|
133
|
+
custom: 'Personnalisé',
|
|
128
134
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'select-all': string;
|
|
124
124
|
'deselect-all': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=he.d.ts.map
|
|
@@ -124,4 +124,10 @@ export default {
|
|
|
124
124
|
'select-all': 'בחר הכל',
|
|
125
125
|
'deselect-all': 'בטל בחירת הכל',
|
|
126
126
|
'waiting-for': 'ממתין ל{{source}}',
|
|
127
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'החל פעולה {{name}} {{value}}',
|
|
128
|
+
'aspect-ratio': 'יחס גובה-רוחב',
|
|
129
|
+
|
|
130
|
+
'crop-to-shape': 'חיתוך ל{{value}}',
|
|
131
|
+
|
|
132
|
+
custom: 'מותאם אישית',
|
|
127
133
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=hy.d.ts.map
|
|
@@ -122,4 +122,9 @@ export default {
|
|
|
122
122
|
'select-all': 'Ընտրել բոլորը',
|
|
123
123
|
'deselect-all': 'Հրաժարվել բոլորից',
|
|
124
124
|
'waiting-for': 'Սպասում եմ {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Կիրառել գործողություն {{name}} {{value}}',
|
|
126
|
+
'aspect-ratio': 'Կողմերի հարաբերություն',
|
|
127
|
+
'crop-to-shape': 'Կտրել մինչև {{value}}',
|
|
128
|
+
|
|
129
|
+
custom: 'Հարմարեցված',
|
|
125
130
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=is.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
'select-all': 'Velja allt',
|
|
123
123
|
'deselect-all': 'Afvelja allt',
|
|
124
124
|
'waiting-for': 'Bíð eftir {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Beita aðgerð {{name}} {{value}}',
|
|
126
|
+
'aspect-ratio': 'Hlutfall hliða',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': 'Sníða í {{value}}',
|
|
129
|
+
|
|
130
|
+
custom: 'Sérsniðið',
|
|
125
131
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'select-all': string;
|
|
124
124
|
'deselect-all': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=it.d.ts.map
|
|
@@ -125,4 +125,10 @@ export default {
|
|
|
125
125
|
'select-all': 'Seleziona tutto',
|
|
126
126
|
'deselect-all': 'Deseleziona tutto',
|
|
127
127
|
'waiting-for': 'In attesa di {{source}}',
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Applica operazione {{name}} {{value}}',
|
|
129
|
+
'aspect-ratio': "Rapporto d'aspetto",
|
|
130
|
+
|
|
131
|
+
'crop-to-shape': 'Ritaglia a {{value}}',
|
|
132
|
+
|
|
133
|
+
custom: 'Personalizzato',
|
|
128
134
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=ja.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
'select-all': 'すべて選択',
|
|
123
123
|
'deselect-all': 'すべて選択解除',
|
|
124
124
|
'waiting-for': '{{source}} を待っています',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': '操作 {{name}} {{value}} を適用',
|
|
126
|
+
'aspect-ratio': 'アスペクト比',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': '{{value}} にトリミング',
|
|
129
|
+
|
|
130
|
+
custom: 'カスタム',
|
|
125
131
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=ka.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
'select-all': 'ყველას არჩევა',
|
|
123
123
|
'deselect-all': 'ყველას არჩევის გაუქმება',
|
|
124
124
|
'waiting-for': 'ველოდები {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'გამოიყენეთ ოპერაცია {{name}} {{value}}',
|
|
126
|
+
'aspect-ratio': 'გვერდების თანაფარდობა',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': 'შემოკლება {{value}}-მდე',
|
|
129
|
+
|
|
130
|
+
custom: 'მორგებული',
|
|
125
131
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=kk.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
'select-all': 'Барлығын таңдау',
|
|
123
123
|
'deselect-all': 'Барлығын таңдаудан шығару',
|
|
124
124
|
'waiting-for': 'Күтіп тұр {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': '{{name}} {{value}} операциясын қолданыңыз',
|
|
126
|
+
'aspect-ratio': 'Қабырғалар қатынасы',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': '{{value}} өлшеміне қиып алу',
|
|
129
|
+
|
|
130
|
+
custom: 'Теңшеулі',
|
|
125
131
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=ko.d.ts.map
|
|
@@ -121,4 +121,10 @@ export default {
|
|
|
121
121
|
'select-all': '모두 선택',
|
|
122
122
|
'deselect-all': '모두 선택 해제',
|
|
123
123
|
'waiting-for': '{{source}} 대기 중',
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': '작업 {{name}} {{value}} 적용',
|
|
125
|
+
'aspect-ratio': '종횡비',
|
|
126
|
+
|
|
127
|
+
'crop-to-shape': '{{value}}로 자르기',
|
|
128
|
+
|
|
129
|
+
custom: '사용자 정의',
|
|
124
130
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'deselect-all': string;
|
|
124
124
|
'waiting-for': string;
|
|
125
125
|
queued: string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=lv.d.ts.map
|
|
@@ -124,4 +124,10 @@ export default {
|
|
|
124
124
|
'deselect-all': 'Noņemt izvēli visiem',
|
|
125
125
|
'waiting-for': 'Gaida {{source}}',
|
|
126
126
|
queued: 'Rindā',
|
|
127
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Lietot darbību {{name}} {{value}}',
|
|
128
|
+
'aspect-ratio': 'Malu attiecība',
|
|
129
|
+
|
|
130
|
+
'crop-to-shape': 'Apgriezt līdz {{value}}',
|
|
131
|
+
|
|
132
|
+
custom: 'Pielāgots',
|
|
127
133
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=nb.d.ts.map
|
|
@@ -122,4 +122,10 @@ export default {
|
|
|
122
122
|
'select-all': 'Velg alle',
|
|
123
123
|
'deselect-all': 'Fjern alle',
|
|
124
124
|
'waiting-for': 'Venter på {{source}}',
|
|
125
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Bruk handling {{name}} {{value}}',
|
|
126
|
+
'aspect-ratio': 'Bredde-høydeforhold',
|
|
127
|
+
|
|
128
|
+
'crop-to-shape': 'Beskjær til {{value}}',
|
|
129
|
+
|
|
130
|
+
custom: 'Tilpasset',
|
|
125
131
|
};
|
|
@@ -121,6 +121,10 @@ declare const _default: {
|
|
|
121
121
|
'select-all': string;
|
|
122
122
|
'deselect-all': string;
|
|
123
123
|
'waiting-for': string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'aspect-ratio': string;
|
|
126
|
+
'crop-to-shape': string;
|
|
127
|
+
custom: string;
|
|
124
128
|
};
|
|
125
129
|
export default _default;
|
|
126
130
|
//# sourceMappingURL=nl.d.ts.map
|
|
@@ -123,4 +123,10 @@ export default {
|
|
|
123
123
|
'select-all': 'Selecteer alles',
|
|
124
124
|
'deselect-all': 'Deselecteer alles',
|
|
125
125
|
'waiting-for': 'Wachten op {{source}}',
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Bewerking {{name}} {{value}} toepassen',
|
|
127
|
+
'aspect-ratio': 'Beeldverhouding',
|
|
128
|
+
|
|
129
|
+
'crop-to-shape': 'Bijsnijden naar {{value}}',
|
|
130
|
+
|
|
131
|
+
custom: 'Aangepast',
|
|
126
132
|
};
|
|
@@ -125,6 +125,10 @@ declare const _default: {
|
|
|
125
125
|
'select-all': string;
|
|
126
126
|
'deselect-all': string;
|
|
127
127
|
'waiting-for': string;
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
129
|
+
'aspect-ratio': string;
|
|
130
|
+
'crop-to-shape': string;
|
|
131
|
+
custom: string;
|
|
128
132
|
};
|
|
129
133
|
export default _default;
|
|
130
134
|
//# sourceMappingURL=pl.d.ts.map
|
|
@@ -126,4 +126,10 @@ export default {
|
|
|
126
126
|
'select-all': 'Zaznacz wszystko',
|
|
127
127
|
'deselect-all': 'Odznacz wszystko',
|
|
128
128
|
'waiting-for': 'Oczekiwanie na {{source}}',
|
|
129
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Zastosuj operację {{name}} {{value}}',
|
|
130
|
+
'aspect-ratio': 'Proporcje',
|
|
131
|
+
|
|
132
|
+
'crop-to-shape': 'Przytnij do {{value}}',
|
|
133
|
+
|
|
134
|
+
custom: 'Niestandardowy',
|
|
129
135
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'select-all': string;
|
|
124
124
|
'deselect-all': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=pt.d.ts.map
|
|
@@ -125,4 +125,10 @@ export default {
|
|
|
125
125
|
'select-all': 'Selecionar tudo',
|
|
126
126
|
'deselect-all': 'Desmarcar tudo',
|
|
127
127
|
'waiting-for': 'Aguardando {{source}}',
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Aplicar operação {{name}} {{value}}',
|
|
129
|
+
'aspect-ratio': 'Proporção',
|
|
130
|
+
|
|
131
|
+
'crop-to-shape': 'Recortar para {{value}}',
|
|
132
|
+
|
|
133
|
+
custom: 'Personalizado',
|
|
128
134
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'select-all': string;
|
|
124
124
|
'deselect-all': string;
|
|
125
125
|
'waiting-for': string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=ro.d.ts.map
|
|
@@ -125,4 +125,10 @@ export default {
|
|
|
125
125
|
'select-all': 'Selectează tot',
|
|
126
126
|
'deselect-all': 'Deselectează tot',
|
|
127
127
|
'waiting-for': 'Așteptare pentru {{source}}',
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Aplică operația {{name}} {{value}}',
|
|
129
|
+
'aspect-ratio': 'Raport de aspect',
|
|
130
|
+
|
|
131
|
+
'crop-to-shape': 'Decupează la {{value}}',
|
|
132
|
+
|
|
133
|
+
custom: 'Personalizat',
|
|
128
134
|
};
|
|
@@ -125,6 +125,10 @@ declare const _default: {
|
|
|
125
125
|
'select-all': string;
|
|
126
126
|
'deselect-all': string;
|
|
127
127
|
'waiting-for': string;
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
129
|
+
'aspect-ratio': string;
|
|
130
|
+
'crop-to-shape': string;
|
|
131
|
+
custom: string;
|
|
128
132
|
};
|
|
129
133
|
export default _default;
|
|
130
134
|
//# sourceMappingURL=ru.d.ts.map
|
|
@@ -126,4 +126,10 @@ export default {
|
|
|
126
126
|
'select-all': 'Выбрать все',
|
|
127
127
|
'deselect-all': 'Отменить выбор всех',
|
|
128
128
|
'waiting-for': 'Ожидание {{source}}',
|
|
129
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Применить операцию {{name}} {{value}}',
|
|
130
|
+
'aspect-ratio': 'Соотношение сторон',
|
|
131
|
+
|
|
132
|
+
'crop-to-shape': 'Обрезать до {{value}}',
|
|
133
|
+
|
|
134
|
+
custom: 'Пользовательский',
|
|
129
135
|
};
|
|
@@ -125,6 +125,10 @@ declare const _default: {
|
|
|
125
125
|
'deselect-all': string;
|
|
126
126
|
'waiting-for': string;
|
|
127
127
|
queued: string;
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
129
|
+
'aspect-ratio': string;
|
|
130
|
+
'crop-to-shape': string;
|
|
131
|
+
custom: string;
|
|
128
132
|
};
|
|
129
133
|
export default _default;
|
|
130
134
|
//# sourceMappingURL=sk.d.ts.map
|
|
@@ -126,4 +126,10 @@ export default {
|
|
|
126
126
|
'deselect-all': 'Zrušiť výber všetkého',
|
|
127
127
|
'waiting-for': 'Čaká sa na {{source}}',
|
|
128
128
|
queued: 'Vo fronte',
|
|
129
|
+
'a11y-cloud-editor-apply-aspect-ratio': 'Použiť operáciu {{name}} {{value}}',
|
|
130
|
+
'aspect-ratio': 'Pomer strán',
|
|
131
|
+
|
|
132
|
+
'crop-to-shape': 'Orezať na {{value}}',
|
|
133
|
+
|
|
134
|
+
custom: 'Vlastný',
|
|
129
135
|
};
|
|
@@ -123,6 +123,10 @@ declare const _default: {
|
|
|
123
123
|
'deselect-all': string;
|
|
124
124
|
'waiting-for': string;
|
|
125
125
|
queued: string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'aspect-ratio': string;
|
|
128
|
+
'crop-to-shape': string;
|
|
129
|
+
custom: string;
|
|
126
130
|
};
|
|
127
131
|
export default _default;
|
|
128
132
|
//# sourceMappingURL=sr.d.ts.map
|