@jjlmoya/utils-audiovisual 1.5.0 → 1.6.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.
@@ -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 (Recommended)",
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
  };
@@ -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 (Recomendado)",
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 (Recommandé)",
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