@jjlmoya/utils-audiovisual 1.5.0 → 1.7.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 +58 -58
- package/src/category/i18n/fr.ts +1 -1
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tool/chromaticLens/component.astro +38 -38
- package/src/tool/chromaticLens/i18n/en.ts +1 -1
- package/src/tool/chromaticLens/i18n/es.ts +1 -1
- package/src/tool/chromaticLens/i18n/fr.ts +1 -1
- package/src/tool/collageMaker/component.astro +47 -47
- package/src/tool/collageMaker/i18n/en.ts +1 -1
- package/src/tool/collageMaker/i18n/es.ts +1 -1
- package/src/tool/collageMaker/i18n/fr.ts +1 -1
- package/src/tool/exifCleaner/component.astro +49 -48
- package/src/tool/exifCleaner/i18n/en.ts +2 -2
- package/src/tool/exifCleaner/i18n/es.ts +2 -2
- package/src/tool/exifCleaner/i18n/fr.ts +3 -3
- package/src/tool/imageCompressor/component.astro +144 -106
- package/src/tool/imageCompressor/i18n/en.ts +12 -2
- package/src/tool/imageCompressor/i18n/es.ts +13 -3
- package/src/tool/imageCompressor/i18n/fr.ts +12 -2
- package/src/tool/imageCompressor/index.ts +10 -0
- package/src/tool/printQualityCalculator/component.astro +129 -104
- package/src/tool/printQualityCalculator/i18n/en.ts +17 -3
- package/src/tool/printQualityCalculator/i18n/es.ts +19 -5
- package/src/tool/printQualityCalculator/i18n/fr.ts +18 -4
- package/src/tool/printQualityCalculator/index.ts +14 -0
- package/src/tool/privacyBlur/component.astro +35 -35
- package/src/tool/privacyBlur/i18n/en.ts +1 -1
- package/src/tool/privacyBlur/i18n/es.ts +1 -1
- package/src/tool/privacyBlur/i18n/fr.ts +1 -1
- package/src/tool/subtitleSync/component.astro +42 -42
- package/src/tool/subtitleSync/i18n/en.ts +1 -1
- package/src/tool/subtitleSync/i18n/es.ts +1 -1
- package/src/tool/subtitleSync/i18n/fr.ts +3 -3
- package/src/tool/timelapseCalculator/component.astro +41 -42
- package/src/tool/tvDistance/component.astro +55 -55
- package/src/tool/tvDistance/i18n/en.ts +1 -1
- package/src/tool/tvDistance/i18n/es.ts +1 -1
- package/src/tool/tvDistance/i18n/fr.ts +1 -1
- package/src/tool/videoFrameExtractor/component.astro +54 -54
- package/src/tool/videoFrameExtractor/i18n/en.ts +1 -1
- package/src/tool/videoFrameExtractor/i18n/es.ts +1 -1
- package/src/tool/videoFrameExtractor/i18n/fr.ts +1 -1
|
@@ -2,7 +2,7 @@ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dt
|
|
|
2
2
|
import type { ImageCompressorUI, ImageCompressorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
4
|
const slug = 'online-image-compressor-reduce-file-size-no-quality-loss';
|
|
5
|
-
const title = 'Online Image Compressor
|
|
5
|
+
const title = 'Online Image Compressor: Reduce weight without losing quality';
|
|
6
6
|
const description = 'Optimize and compress your JPG, PNG, and WebP photos for free. Reduce file size to improve your web loading speed locally.';
|
|
7
7
|
|
|
8
8
|
const ui: ImageCompressorUI = {
|
|
@@ -11,7 +11,8 @@ const ui: ImageCompressorUI = {
|
|
|
11
11
|
settingsTitle: "Compression Settings",
|
|
12
12
|
qualityLabel: "Visual Quality",
|
|
13
13
|
widthLabel: "Maximum Width (Pixels)",
|
|
14
|
-
convertToWebpLabel: "Convert to WebP
|
|
14
|
+
convertToWebpLabel: "Convert to WebP",
|
|
15
|
+
compressionLabel: "Compression",
|
|
15
16
|
compressBtn: "Compress Image",
|
|
16
17
|
processingLabel: "Processing...",
|
|
17
18
|
resultsTitle: "Optimized Images",
|
|
@@ -20,6 +21,15 @@ const ui: ImageCompressorUI = {
|
|
|
20
21
|
reductionLabel: "Savings",
|
|
21
22
|
downloadBtn: "Download",
|
|
22
23
|
addMoreBtn: "Add more",
|
|
24
|
+
browseFilesBtn: "Browse files",
|
|
25
|
+
processedFilesTitle: "Processed Files",
|
|
26
|
+
downloadAllBtn: "Download All",
|
|
27
|
+
adjustThisImage: "Adjust this image",
|
|
28
|
+
downloadTitle: "Download",
|
|
29
|
+
maxWidthLabel: "Max width (px)",
|
|
30
|
+
closeBtn: "Close",
|
|
31
|
+
totalSavingsLabel: "Total savings",
|
|
32
|
+
noSavings: "No net savings",
|
|
23
33
|
faqTitle: "Frequently Asked Questions",
|
|
24
34
|
bibliographyTitle: "References"
|
|
25
35
|
};
|
|
@@ -2,7 +2,7 @@ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dt
|
|
|
2
2
|
import type { ImageCompressorUI, ImageCompressorLocaleContent } from '../index';
|
|
3
3
|
|
|
4
4
|
const slug = 'compresor-imagenes';
|
|
5
|
-
const title = 'Compresor de Imágenes Online
|
|
5
|
+
const title = 'Compresor de Imágenes Online: Reduce el peso sin perder calidad';
|
|
6
6
|
const description = 'Optimiza y comprime tus fotos JPG, PNG y WebP de forma gratuita. Reduce el tamaño de archivo para mejorar la velocidad de carga de tu web de forma local.';
|
|
7
7
|
|
|
8
8
|
const ui: ImageCompressorUI = {
|
|
@@ -11,7 +11,8 @@ const ui: ImageCompressorUI = {
|
|
|
11
11
|
settingsTitle: "Ajustes de Compresión",
|
|
12
12
|
qualityLabel: "Calidad Visual",
|
|
13
13
|
widthLabel: "Ancho Máximo (Píxeles)",
|
|
14
|
-
convertToWebpLabel: "Convertir a WebP
|
|
14
|
+
convertToWebpLabel: "Convertir a WebP",
|
|
15
|
+
compressionLabel: "Compresión",
|
|
15
16
|
compressBtn: "Comprimir Imagen",
|
|
16
17
|
processingLabel: "Procesando...",
|
|
17
18
|
resultsTitle: "Imágenes Optimizadas",
|
|
@@ -19,7 +20,16 @@ const ui: ImageCompressorUI = {
|
|
|
19
20
|
newSizeLabel: "Nuevo Tamaño",
|
|
20
21
|
reductionLabel: "Ahorro",
|
|
21
22
|
downloadBtn: "Descargar",
|
|
22
|
-
addMoreBtn: "Añadir más"
|
|
23
|
+
addMoreBtn: "Añadir más",
|
|
24
|
+
browseFilesBtn: "Explorar archivos",
|
|
25
|
+
processedFilesTitle: "Archivos Procesados",
|
|
26
|
+
downloadAllBtn: "Descargar Todas",
|
|
27
|
+
adjustThisImage: "Ajustar esta imagen",
|
|
28
|
+
downloadTitle: "Descargar",
|
|
29
|
+
maxWidthLabel: "Ancho máx. (px)",
|
|
30
|
+
closeBtn: "Cerrar",
|
|
31
|
+
totalSavingsLabel: "Ahorro total",
|
|
32
|
+
noSavings: "Sin ahorro neto"
|
|
23
33
|
};
|
|
24
34
|
|
|
25
35
|
const faq: ImageCompressorLocaleContent['faq'] = [
|
|
@@ -11,7 +11,8 @@ const ui: ImageCompressorUI = {
|
|
|
11
11
|
settingsTitle: "Paramètres de Compression",
|
|
12
12
|
qualityLabel: "Qualité Visuelle",
|
|
13
13
|
widthLabel: "Largeur Maximale (Pixels)",
|
|
14
|
-
convertToWebpLabel: "Convertir en WebP
|
|
14
|
+
convertToWebpLabel: "Convertir en WebP",
|
|
15
|
+
compressionLabel: "Compression",
|
|
15
16
|
compressBtn: "Compresser l'Image",
|
|
16
17
|
processingLabel: "Traitement...",
|
|
17
18
|
resultsTitle: "Images Optimisées",
|
|
@@ -19,7 +20,16 @@ const ui: ImageCompressorUI = {
|
|
|
19
20
|
newSizeLabel: "Nouvelle Taille",
|
|
20
21
|
reductionLabel: "Économie",
|
|
21
22
|
downloadBtn: "Télécharger",
|
|
22
|
-
addMoreBtn: "Ajouter"
|
|
23
|
+
addMoreBtn: "Ajouter",
|
|
24
|
+
browseFilesBtn: "Parcourir les fichiers",
|
|
25
|
+
processedFilesTitle: "Fichiers Traités",
|
|
26
|
+
downloadAllBtn: "Tout Télécharger",
|
|
27
|
+
adjustThisImage: "Ajuster cette image",
|
|
28
|
+
downloadTitle: "Télécharger",
|
|
29
|
+
maxWidthLabel: "Larg. max (px)",
|
|
30
|
+
closeBtn: "Fermer",
|
|
31
|
+
totalSavingsLabel: "Économies totales",
|
|
32
|
+
noSavings: "Pas d'économies nettes"
|
|
23
33
|
};
|
|
24
34
|
|
|
25
35
|
const faq: ImageCompressorLocaleContent['faq'] = [
|
|
@@ -10,6 +10,7 @@ export interface ImageCompressorUI {
|
|
|
10
10
|
qualityLabel: string;
|
|
11
11
|
widthLabel: string;
|
|
12
12
|
convertToWebpLabel: string;
|
|
13
|
+
compressionLabel: string;
|
|
13
14
|
compressBtn: string;
|
|
14
15
|
processingLabel: string;
|
|
15
16
|
resultsTitle: string;
|
|
@@ -18,6 +19,15 @@ export interface ImageCompressorUI {
|
|
|
18
19
|
reductionLabel: string;
|
|
19
20
|
downloadBtn: string;
|
|
20
21
|
addMoreBtn: string;
|
|
22
|
+
browseFilesBtn: string;
|
|
23
|
+
processedFilesTitle: string;
|
|
24
|
+
downloadAllBtn: string;
|
|
25
|
+
adjustThisImage: string;
|
|
26
|
+
downloadTitle: string;
|
|
27
|
+
maxWidthLabel: string;
|
|
28
|
+
closeBtn: string;
|
|
29
|
+
totalSavingsLabel: string;
|
|
30
|
+
noSavings: string;
|
|
21
31
|
[key: string]: string;
|
|
22
32
|
}
|
|
23
33
|
|