@jjlmoya/utils-converters 1.13.0 → 1.15.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/package.json +3 -2
- package/src/category/index.ts +20 -20
- package/src/entries.ts +65 -0
- package/src/tool/avifAJpg/entry.ts +29 -0
- package/src/tool/avifAJpg/index.ts +2 -31
- package/src/tool/avifAPng/entry.ts +29 -0
- package/src/tool/avifAPng/index.ts +2 -31
- package/src/tool/avifAWebp/entry.ts +29 -0
- package/src/tool/avifAWebp/index.ts +2 -31
- package/src/tool/bmpAJpg/entry.ts +29 -0
- package/src/tool/bmpAJpg/index.ts +2 -31
- package/src/tool/bmpAPng/entry.ts +29 -0
- package/src/tool/bmpAPng/index.ts +2 -31
- package/src/tool/bmpAWebp/entry.ts +29 -0
- package/src/tool/bmpAWebp/index.ts +2 -31
- package/src/tool/gifAJpg/entry.ts +29 -0
- package/src/tool/gifAJpg/index.ts +2 -31
- package/src/tool/gifAPng/entry.ts +29 -0
- package/src/tool/gifAPng/index.ts +2 -31
- package/src/tool/gifAWebp/entry.ts +29 -0
- package/src/tool/gifAWebp/index.ts +2 -31
- package/src/tool/imagenBase64/entry.ts +43 -0
- package/src/tool/imagenBase64/index.ts +3 -45
- package/src/tool/jpgAIco/entry.ts +29 -0
- package/src/tool/jpgAIco/index.ts +2 -31
- package/src/tool/jpgAPng/entry.ts +29 -0
- package/src/tool/jpgAPng/index.ts +2 -31
- package/src/tool/jpgAWebp/entry.ts +29 -0
- package/src/tool/jpgAWebp/index.ts +2 -31
- package/src/tool/pngAIco/entry.ts +29 -0
- package/src/tool/pngAIco/index.ts +2 -31
- package/src/tool/pngAJpg/entry.ts +29 -0
- package/src/tool/pngAJpg/index.ts +2 -31
- package/src/tool/pngAWebp/entry.ts +29 -0
- package/src/tool/pngAWebp/index.ts +2 -31
- package/src/tool/svgAJpg/entry.ts +29 -0
- package/src/tool/svgAJpg/index.ts +2 -31
- package/src/tool/svgAPng/entry.ts +29 -0
- package/src/tool/svgAPng/index.ts +2 -31
- package/src/tool/webpAIco/entry.ts +29 -0
- package/src/tool/webpAIco/index.ts +2 -31
- package/src/tool/webpAJpg/entry.ts +29 -0
- package/src/tool/webpAJpg/index.ts +2 -31
- package/src/tool/webpAPng/entry.ts +29 -0
- package/src/tool/webpAPng/index.ts +2 -31
- package/src/tools.ts +1 -1
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type GifAPngLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const gifAPng: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'gif-a-png',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { gifAPng } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const GIF_A_PNG_TOOL: ToolDefinition = {
|
|
33
4
|
entry: gifAPng,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type GifAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const gifAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'gif-a-webp',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type GifAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const gifAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'gif-a-webp',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { gifAWebp } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const GIF_A_WEBP_TOOL: ToolDefinition = {
|
|
33
4
|
entry: gifAWebp,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export interface ImageToBase64UI {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
dragTitle: string;
|
|
6
|
+
dragSubtext: string;
|
|
7
|
+
formatBadge: string;
|
|
8
|
+
dataUriLabel: string;
|
|
9
|
+
base64Label: string;
|
|
10
|
+
copyBtn: string;
|
|
11
|
+
dataUriPlaceholder: string;
|
|
12
|
+
base64Placeholder: string;
|
|
13
|
+
toastMessage: string;
|
|
14
|
+
invalidImageAlert: string;
|
|
15
|
+
bibliographyTitle: string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export type ImagenBase64LocaleContent = ToolLocaleContent<ImageToBase64UI>;
|
|
19
|
+
|
|
20
|
+
export const imagenBase64: ConvertersToolEntry<ImageToBase64UI> = {
|
|
21
|
+
id: 'imagen-base64',
|
|
22
|
+
icons: {
|
|
23
|
+
bg: 'mdi:file-image',
|
|
24
|
+
fg: 'mdi:code-tags',
|
|
25
|
+
},
|
|
26
|
+
i18n: {
|
|
27
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
28
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
29
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
30
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
31
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
32
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
33
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
34
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
35
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
36
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
37
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
38
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
39
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
40
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
41
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
42
|
+
},
|
|
43
|
+
};
|
|
@@ -1,48 +1,6 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
[key: string]: string;
|
|
5
|
-
dragTitle: string;
|
|
6
|
-
dragSubtext: string;
|
|
7
|
-
formatBadge: string;
|
|
8
|
-
dataUriLabel: string;
|
|
9
|
-
base64Label: string;
|
|
10
|
-
copyBtn: string;
|
|
11
|
-
dataUriPlaceholder: string;
|
|
12
|
-
base64Placeholder: string;
|
|
13
|
-
toastMessage: string;
|
|
14
|
-
invalidImageAlert: string;
|
|
15
|
-
bibliographyTitle: string;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export type ImagenBase64LocaleContent = ToolLocaleContent<ImageToBase64UI>;
|
|
19
|
-
|
|
20
|
-
export const imagenBase64: ConvertersToolEntry<ImageToBase64UI> = {
|
|
21
|
-
id: 'imagen-base64',
|
|
22
|
-
icons: {
|
|
23
|
-
bg: 'mdi:file-image',
|
|
24
|
-
fg: 'mdi:code-tags',
|
|
25
|
-
},
|
|
26
|
-
i18n: {
|
|
27
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
28
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
29
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
30
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
31
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
32
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
33
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
34
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
35
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
36
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
37
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
38
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
39
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
40
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
41
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
42
|
-
},
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
import type { ToolDefinition } from '../../types';
|
|
2
|
+
import { imagenBase64 } from './entry';
|
|
3
|
+
export * from './entry';
|
|
46
4
|
export const IMAGEN_BASE64_TOOL: ToolDefinition = {
|
|
47
5
|
entry: imagenBase64,
|
|
48
6
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type JpgAIcoLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const jpgAIco: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'jpg-a-ico',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type JpgAIcoLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const jpgAIco: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'jpg-a-ico',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { jpgAIco } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const JPG_A_ICO_TOOL: ToolDefinition = {
|
|
33
4
|
entry: jpgAIco,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type JpgAPngLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const jpgAPng: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'jpg-a-png',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
16
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type JpgAPngLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const jpgAPng: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'jpg-a-png',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
16
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { jpgAPng } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const JPG_A_PNG_TOOL: ToolDefinition = {
|
|
33
4
|
entry: jpgAPng,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type JpgAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const jpgAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'jpg-a-webp',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type JpgAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const jpgAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'jpg-a-webp',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { jpgAWebp } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const JPG_A_WEBP_TOOL: ToolDefinition = {
|
|
33
4
|
entry: jpgAWebp,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type PngAIcoLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const pngAIco: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'png-a-ico',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type PngAIcoLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const pngAIco: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'png-a-ico',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { pngAIco } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const PNG_A_ICO_TOOL: ToolDefinition = {
|
|
33
4
|
entry: pngAIco,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type PngAJpgLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const pngAJpg: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'png-a-jpg',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
16
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type PngAJpgLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const pngAJpg: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'png-a-jpg',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
16
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { pngAJpg } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const PNG_A_JPG_TOOL: ToolDefinition = {
|
|
33
4
|
entry: pngAJpg,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type PngAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const pngAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'png-a-webp',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:file-image',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type PngAWebpLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
-
|
|
6
|
-
export const pngAWebp: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
-
id: 'png-a-webp',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:file-image',
|
|
10
|
-
fg: 'mdi:file-export',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { pngAWebp } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const PNG_A_WEBP_TOOL: ToolDefinition = {
|
|
33
4
|
entry: pngAWebp,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ConvertersToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ImageConverterUI } from '../../shared/ImageConverter.astro';
|
|
3
|
+
|
|
4
|
+
export type SvgAJpgLocaleContent = ToolLocaleContent<ImageConverterUI>;
|
|
5
|
+
|
|
6
|
+
export const svgAJpg: ConvertersToolEntry<ImageConverterUI> = {
|
|
7
|
+
id: 'svg-a-jpg',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:svg',
|
|
10
|
+
fg: 'mdi:file-export',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
14
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
15
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
16
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
17
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
18
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
19
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
20
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
21
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
22
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
23
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
24
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
25
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
26
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
27
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
28
|
+
},
|
|
29
|
+
};
|