@jjlmoya/utils-converters 1.18.0 → 1.20.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 +2 -2
- package/src/tests/seo_parity.test.ts +60 -0
- package/src/tests/translation_copy.test.ts +123 -0
- package/src/tool/pngAJpg/i18n/de.ts +40 -40
- package/src/tool/pngAJpg/i18n/en.ts +99 -32
- package/src/tool/pngAJpg/i18n/fr.ts +95 -22
- package/src/tool/pngAJpg/i18n/id.ts +36 -36
- package/src/tool/pngAJpg/i18n/it.ts +35 -35
- package/src/tool/pngAJpg/i18n/ja.ts +80 -84
- package/src/tool/pngAJpg/i18n/ko.ts +80 -84
- package/src/tool/pngAJpg/i18n/nl.ts +40 -40
- package/src/tool/pngAJpg/i18n/pl.ts +35 -35
- package/src/tool/pngAJpg/i18n/pt.ts +32 -32
- package/src/tool/pngAJpg/i18n/ru.ts +80 -84
- package/src/tool/pngAJpg/i18n/sv.ts +35 -35
- package/src/tool/pngAJpg/i18n/tr.ts +33 -33
- package/src/tool/pngAJpg/i18n/zh.ts +80 -84
|
@@ -21,19 +21,24 @@ const ui: ImageConverterUI = {
|
|
|
21
21
|
|
|
22
22
|
const faq: PngAJpgLocaleContent['faq'] = [
|
|
23
23
|
{
|
|
24
|
-
question: 'Pourquoi
|
|
24
|
+
question: 'Pourquoi choisir notre convertisseur local PNG vers JPG ?',
|
|
25
25
|
answer:
|
|
26
|
-
'
|
|
26
|
+
'Contrairement aux services classiques, cet outil traite les fichiers entièrement dans le navigateur. Vos images ne touchent jamais un disque distant: vous gardez le contrôle et la confidentialité de vos données.',
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
question: '
|
|
29
|
+
question: 'JPG ou PNG: quel format choisir ?',
|
|
30
30
|
answer:
|
|
31
|
-
'
|
|
31
|
+
'Le PNG convient aux logos et aux éléments transparents. Le JPG est préférable pour les photos et les bannières web, car ses fichiers sont bien plus légers et accélèrent le chargement des pages.',
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
question: '
|
|
34
|
+
question: 'Comment convertir une image sans rien envoyer ?',
|
|
35
35
|
answer:
|
|
36
|
-
|
|
36
|
+
"Nous utilisons le Canvas HTML5. Le navigateur recrée l'image dans une zone virtuelle invisible, remplit la transparence en blanc et produit directement les octets JPEG à télécharger.",
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
question: 'Est-ce sûr pour des documents confidentiels ?',
|
|
40
|
+
answer:
|
|
41
|
+
"Oui. Pour la banque, la santé ou le droit, il est préférable de ne pas envoyer les images à un service externe: le traitement reste dans la RAM et s'arrête à la fermeture de l'onglet.",
|
|
37
42
|
},
|
|
38
43
|
];
|
|
39
44
|
|
|
@@ -55,42 +60,110 @@ const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
|
55
60
|
const seo: PngAJpgLocaleContent['seo'] = [
|
|
56
61
|
{
|
|
57
62
|
type: 'title',
|
|
58
|
-
text: 'Convertisseur PNG vers JPG
|
|
63
|
+
text: 'Convertisseur PNG vers JPG: guide pratique d\'optimisation des images',
|
|
64
|
+
level: 2,
|
|
59
65
|
},
|
|
60
66
|
{
|
|
61
67
|
type: 'paragraph',
|
|
62
|
-
html:
|
|
63
|
-
|
|
68
|
+
html: 'Dans le design numérique et le développement web, la rapidité compte. Le PNG conserve la transparence et la qualité sans perte, mais produit parfois des fichiers lourds. Pour des pages rapides et des pièces jointes légères, le JPG est souvent plus adapté.',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
type: 'title',
|
|
72
|
+
text: 'JPG ou PNG: lequel choisir ?',
|
|
73
|
+
level: 3,
|
|
64
74
|
},
|
|
65
75
|
{
|
|
66
76
|
type: 'paragraph',
|
|
67
|
-
html:
|
|
68
|
-
'Le JPG (ou JPEG) utilise un algorithme de compression avec perte qui réduit considérablement la taille du fichier. Pour les photographies et les images où une légère perte de détail est acceptable, JPG est le choix standard. Un PNG de 2 Mo peut devenir un JPG de 200 Ko avec une qualité visuelle pratiquement identique.',
|
|
77
|
+
html: "Aucun format n'est meilleur dans tous les cas. Le PNG convient aux interfaces, logos et fonds transparents, mais sa compression sans perte peut donner des fichiers beaucoup plus volumineux.",
|
|
69
78
|
},
|
|
70
79
|
{
|
|
71
80
|
type: 'paragraph',
|
|
72
|
-
html:
|
|
73
|
-
'Notre convertisseur PNG vers JPG fonctionne entièrement dans votre navigateur via l\'API Canvas HTML5. Les zones transparentes du PNG original sont remplacées par un fond blanc solide, car le format JPG ne supporte pas le canal alpha.',
|
|
81
|
+
html: "Le JPG supprime les détails peu visibles et produit des images légères. Il convient aux photos, bannières et réseaux sociaux: une légère perte en échange d'un chargement plus rapide.",
|
|
74
82
|
},
|
|
75
83
|
{
|
|
76
|
-
type: '
|
|
77
|
-
|
|
78
|
-
|
|
84
|
+
type: 'title',
|
|
85
|
+
text: 'Comparaison technique: traitement local et cloud',
|
|
86
|
+
level: 3,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: 'comparative',
|
|
90
|
+
items: [
|
|
91
|
+
{
|
|
92
|
+
title: 'Convertisseurs cloud',
|
|
93
|
+
description: 'Services classiques qui envoient vos photos vers un serveur distant.',
|
|
94
|
+
icon: 'mdi:cloud-upload',
|
|
95
|
+
pointIcon: 'mdi:close-circle-outline',
|
|
96
|
+
points: [
|
|
97
|
+
'Latence réseau (envoi/téléchargement)',
|
|
98
|
+
'Risque de fuite de données privées',
|
|
99
|
+
'Limite de taille par fichier',
|
|
100
|
+
'Publicités et traceurs',
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
title: 'Notre architecture locale',
|
|
105
|
+
description: 'Traitement direct sur votre appareil avec du JavaScript natif.',
|
|
106
|
+
icon: 'mdi:laptop-mac',
|
|
107
|
+
highlight: true,
|
|
108
|
+
points: [
|
|
109
|
+
'Vitesse immédiate sans réseau',
|
|
110
|
+
'Confidentialité garantie (zéro octet envoyé)',
|
|
111
|
+
'Aucune limite de Mo par fichier',
|
|
112
|
+
'Interface professionnelle et claire',
|
|
113
|
+
],
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: 'Fonctionnement de la conversion technique',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: "La conversion sans serveur s'appuie sur les API modernes du navigateur. Le fichier devient un Blob temporaire en RAM, puis il est dessiné dans un Canvas HTML5 invisible.",
|
|
79
125
|
},
|
|
80
126
|
{
|
|
81
127
|
type: 'paragraph',
|
|
82
|
-
html:
|
|
83
|
-
|
|
128
|
+
html: "Le JPG ne gère pas la transparence: les zones transparentes sont donc remplies de blanc avant le rendu. Le Canvas génère ensuite le flux JPEG enregistré directement sur l'appareil.",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'tip',
|
|
132
|
+
title: 'Conseil SEO: le poids idéal',
|
|
133
|
+
html: 'Une image plus légère peut améliorer le LCP et les indicateurs PageSpeed. Réduire un PNG volumineux en JPG est particulièrement utile pour les en-têtes et les pages riches en images.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'title',
|
|
137
|
+
text: 'Sécurité pour les entreprises et les professionnels',
|
|
138
|
+
level: 3,
|
|
84
139
|
},
|
|
85
140
|
{
|
|
86
141
|
type: 'paragraph',
|
|
87
|
-
html:
|
|
88
|
-
|
|
142
|
+
html: 'Pour la banque, la santé ou le droit, envoyer des fichiers à un service externe peut présenter un risque. Ici le traitement reste dans la RAM du navigateur, sans transfert vers un cloud.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Compatibilité du résultat',
|
|
147
|
+
level: 3,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'list',
|
|
151
|
+
icon: 'mdi:check-circle',
|
|
152
|
+
items: [
|
|
153
|
+
'Visionneuses Windows, macOS et appareils mobiles.',
|
|
154
|
+
'Réseaux sociaux (Instagram, LinkedIn, etc.).',
|
|
155
|
+
'Outils bureautiques (Word, PowerPoint).',
|
|
156
|
+
'Gestionnaires de contenu (WordPress, Shopify).',
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'title',
|
|
161
|
+
text: 'Conclusion: optimisez avec méthode',
|
|
162
|
+
level: 3,
|
|
89
163
|
},
|
|
90
164
|
{
|
|
91
165
|
type: 'paragraph',
|
|
92
|
-
html:
|
|
93
|
-
'Convertissez PNG en JPG instantanément, gratuitement et en toute confidentialité directement dans votre navigateur. Sans inscription, sans limites et sans compromettre la sécurité de vos fichiers.',
|
|
166
|
+
html: 'Ce convertisseur associe rapidité et confidentialité. Développeur ou particulier, vous pouvez alléger vos images sans remettre vos fichiers à un service tiers.',
|
|
94
167
|
},
|
|
95
168
|
];
|
|
96
169
|
|
|
@@ -21,24 +21,24 @@ const ui: ImageConverterUI = {
|
|
|
21
21
|
|
|
22
22
|
const faq: PngAJpgLocaleContent['faq'] = [
|
|
23
23
|
{
|
|
24
|
-
question: 'Mengapa memilih konverter
|
|
24
|
+
question: 'Mengapa memilih konverter PNG ke JPG lokal kami?',
|
|
25
25
|
answer:
|
|
26
|
-
'Berbeda
|
|
26
|
+
'Berbeda dari layanan biasa, alat ini memproses file sepenuhnya di browser. Gambar Anda tidak dikirim ke disk jarak jauh, sehingga kendali dan privasi data tetap terjaga.',
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
question: 'JPG atau PNG
|
|
29
|
+
question: 'JPG atau PNG: mana yang cocok untuk saya?',
|
|
30
30
|
answer:
|
|
31
|
-
'PNG
|
|
31
|
+
'PNG cocok untuk logo dan elemen transparan. JPG lebih sesuai untuk foto dan banner web karena ukurannya jauh lebih kecil sehingga halaman dimuat lebih cepat.',
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
question: 'Bagaimana
|
|
34
|
+
question: 'Bagaimana konversi bekerja tanpa mengunggah file?',
|
|
35
35
|
answer:
|
|
36
|
-
'Kami menggunakan
|
|
36
|
+
'Kami menggunakan Canvas HTML5. Browser membuat ulang gambar pada kanvas virtual yang tidak terlihat, mengisi area transparan dengan putih, lalu menghasilkan data JPEG untuk diunduh.',
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
question: 'Apakah aman untuk dokumen rahasia?',
|
|
40
40
|
answer:
|
|
41
|
-
'Ya
|
|
41
|
+
'Ya. Untuk dokumen perbankan, kesehatan, atau hukum, pemrosesan lokal lebih aman: data hanya berada di RAM perangkat dan berhenti saat tab ditutup.',
|
|
42
42
|
},
|
|
43
43
|
];
|
|
44
44
|
|
|
@@ -60,56 +60,56 @@ const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
|
60
60
|
const seo: PngAJpgLocaleContent['seo'] = [
|
|
61
61
|
{
|
|
62
62
|
type: 'title',
|
|
63
|
-
text: 'Konverter PNG ke JPG:
|
|
63
|
+
text: 'Konverter PNG ke JPG: panduan praktis mengoptimalkan gambar',
|
|
64
64
|
level: 2,
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
type: 'paragraph',
|
|
68
|
-
html: 'Dalam
|
|
68
|
+
html: 'Dalam desain digital dan pengembangan web, kecepatan sangat penting. PNG mempertahankan transparansi dan kualitas tanpa kehilangan, tetapi ukurannya bisa besar. Untuk halaman cepat dan lampiran ringan, JPG sering menjadi pilihan praktis.',
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
type: 'title',
|
|
72
|
-
text: 'JPG atau PNG?',
|
|
72
|
+
text: 'JPG atau PNG: mana yang sebaiknya dipilih?',
|
|
73
73
|
level: 3,
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
type: 'paragraph',
|
|
77
|
-
html: 'Tidak ada format
|
|
77
|
+
html: 'Tidak ada format terbaik untuk semua kebutuhan. PNG cocok untuk antarmuka, logo, dan latar transparan, tetapi kompresi tanpa kehilangan dapat menghasilkan file yang jauh lebih besar.',
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
type: 'paragraph',
|
|
81
|
-
html: 'JPG
|
|
81
|
+
html: 'JPG mengurangi detail yang sulit dilihat mata sehingga ukuran gambar lebih ringan. Format ini cocok untuk foto, banner, dan media sosial ketika kecepatan unduh lebih penting.',
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
type: 'title',
|
|
85
|
-
text: 'Perbandingan
|
|
85
|
+
text: 'Perbandingan teknis: proses lokal dan cloud',
|
|
86
86
|
level: 3,
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
type: 'comparative',
|
|
90
90
|
items: [
|
|
91
91
|
{
|
|
92
|
-
title: 'Konverter
|
|
93
|
-
description: '
|
|
92
|
+
title: 'Konverter berbasis cloud',
|
|
93
|
+
description: 'Layanan tradisional yang mengunggah foto ke server jarak jauh.',
|
|
94
94
|
icon: 'mdi:cloud-upload',
|
|
95
95
|
pointIcon: 'mdi:close-circle-outline',
|
|
96
96
|
points: [
|
|
97
|
-
'Latensi jaringan (
|
|
97
|
+
'Latensi jaringan (unggah/unduh)',
|
|
98
98
|
'Risiko kebocoran data pribadi',
|
|
99
|
-
'
|
|
99
|
+
'Batas ukuran file',
|
|
100
100
|
'Iklan dan pelacak',
|
|
101
101
|
],
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
|
-
title: 'Arsitektur
|
|
105
|
-
description: 'Pemrosesan langsung pada perangkat
|
|
104
|
+
title: 'Arsitektur lokal kami',
|
|
105
|
+
description: 'Pemrosesan langsung pada perangkat dengan JavaScript asli.',
|
|
106
106
|
icon: 'mdi:laptop-mac',
|
|
107
107
|
highlight: true,
|
|
108
108
|
points: [
|
|
109
|
-
'Kecepatan
|
|
110
|
-
'Privasi terjamin (
|
|
111
|
-
'Tanpa
|
|
112
|
-
'Antarmuka
|
|
109
|
+
'Kecepatan langsung tanpa jaringan',
|
|
110
|
+
'Privasi terjamin (nol byte dikirim)',
|
|
111
|
+
'Tanpa batas MB per file',
|
|
112
|
+
'Antarmuka bersih dan profesional',
|
|
113
113
|
],
|
|
114
114
|
},
|
|
115
115
|
],
|
|
@@ -121,49 +121,49 @@ const seo: PngAJpgLocaleContent['seo'] = [
|
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
123
|
type: 'paragraph',
|
|
124
|
-
html: '
|
|
124
|
+
html: 'Konversi tanpa server memanfaatkan API browser modern. Saat file dipilih, browser membuat Blob sementara di RAM lalu menggambarnya pada Canvas HTML5 yang tidak terlihat.',
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
type: 'paragraph',
|
|
128
|
-
html: '
|
|
128
|
+
html: 'JPG tidak mendukung transparansi, sehingga area transparan diisi putih sebelum gambar dirender. Canvas kemudian menghasilkan data JPEG yang langsung disimpan di perangkat.',
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
type: 'tip',
|
|
132
|
-
title: 'Tips SEO:
|
|
133
|
-
html: '
|
|
132
|
+
title: 'Tips SEO: ukuran yang ideal',
|
|
133
|
+
html: 'Gambar yang lebih ringan dapat memperbaiki LCP dan metrik PageSpeed. Mengubah PNG besar menjadi JPG yang lebih kecil berguna untuk header dan halaman dengan banyak gambar.',
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
type: 'title',
|
|
137
|
-
text: 'Keamanan untuk
|
|
137
|
+
text: 'Keamanan untuk perusahaan dan profesional',
|
|
138
138
|
level: 3,
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
type: 'paragraph',
|
|
142
|
-
html: '
|
|
142
|
+
html: 'Untuk perbankan, kesehatan, dan hukum, mengirim file ke layanan eksternal dapat berisiko. Di sini pemrosesan berlangsung di RAM browser tanpa mengunggah data ke cloud.',
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
type: 'title',
|
|
146
|
-
text: 'Kompatibilitas
|
|
146
|
+
text: 'Kompatibilitas hasil',
|
|
147
147
|
level: 3,
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
type: 'list',
|
|
151
151
|
icon: 'mdi:check-circle',
|
|
152
152
|
items: [
|
|
153
|
-
'Penampil
|
|
154
|
-
'
|
|
155
|
-
'
|
|
156
|
-
'
|
|
153
|
+
'Penampil Windows, macOS, dan perangkat seluler.',
|
|
154
|
+
'Media sosial (Instagram, LinkedIn, dan lainnya).',
|
|
155
|
+
'Perangkat lunak kantor (Word, PowerPoint).',
|
|
156
|
+
'Pengelola konten (WordPress, Shopify).',
|
|
157
157
|
],
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
type: 'title',
|
|
161
|
-
text: 'Kesimpulan:
|
|
161
|
+
text: 'Kesimpulan: optimalkan dengan tepat',
|
|
162
162
|
level: 3,
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
type: 'paragraph',
|
|
166
|
-
html: 'Konverter ini
|
|
166
|
+
html: 'Konverter ini menggabungkan kecepatan dan privasi. Baik Anda pengembang maupun pengguna rumahan, Anda dapat mengecilkan gambar tanpa menyerahkan file ke layanan pihak ketiga.',
|
|
167
167
|
},
|
|
168
168
|
];
|
|
169
169
|
|
|
@@ -23,22 +23,22 @@ const faq: PngAJpgLocaleContent['faq'] = [
|
|
|
23
23
|
{
|
|
24
24
|
question: 'Perché scegliere il nostro convertitore locale da PNG a JPG?',
|
|
25
25
|
answer:
|
|
26
|
-
'A differenza
|
|
26
|
+
'A differenza dei servizi tradizionali, questo strumento elabora i file interamente nel browser. Le immagini non raggiungono mai un disco remoto, quindi mantieni il pieno controllo e la privacy dei dati.',
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
question: 'JPG o PNG
|
|
29
|
+
question: 'JPG o PNG: quale formato è più adatto?',
|
|
30
30
|
answer:
|
|
31
|
-
'
|
|
31
|
+
'PNG è ideale per loghi ed elementi trasparenti. JPG è invece preferibile per fotografie e banner web, perché produce file molto più leggeri e accelera il caricamento delle pagine.',
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
question: 'Come
|
|
34
|
+
question: 'Come avviene la conversione senza caricare i file?',
|
|
35
35
|
answer:
|
|
36
|
-
|
|
36
|
+
"Usiamo il Canvas HTML5. Il browser ricrea l'immagine in un'area virtuale invisibile, riempie la trasparenza con il bianco e genera direttamente i byte JPEG da scaricare.",
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
question: 'È sicuro per documenti riservati?',
|
|
40
40
|
answer:
|
|
41
|
-
|
|
41
|
+
"Sì. Per banca, sanità e studi legali è più sicuro non inviare immagini a servizi esterni: l'elaborazione resta nella RAM del dispositivo e termina quando chiudi la scheda.",
|
|
42
42
|
},
|
|
43
43
|
];
|
|
44
44
|
|
|
@@ -60,55 +60,55 @@ const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
|
60
60
|
const seo: PngAJpgLocaleContent['seo'] = [
|
|
61
61
|
{
|
|
62
62
|
type: 'title',
|
|
63
|
-
text: 'Convertitore
|
|
63
|
+
text: 'Convertitore PNG in JPG: guida pratica per ottimizzare le immagini',
|
|
64
64
|
level: 2,
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
type: 'paragraph',
|
|
68
|
-
html: 'Nel
|
|
68
|
+
html: 'Nel design digitale e nello sviluppo web, la velocità conta. PNG conserva trasparenza e qualità senza perdita, ma spesso genera file pesanti. Per pagine rapide e allegati leggeri, convertire una foto in JPG è una scelta efficace.',
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
type: 'title',
|
|
72
|
-
text: 'JPG o PNG?',
|
|
72
|
+
text: 'JPG o PNG: quale scegliere?',
|
|
73
73
|
level: 3,
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
type: 'paragraph',
|
|
77
|
-
html: 'Non esiste un formato migliore
|
|
77
|
+
html: 'Non esiste un formato migliore in assoluto. PNG è adatto a interfacce, loghi e sfondi trasparenti; la compressione senza perdita però può produrre file molto più grandi.',
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
type: 'paragraph',
|
|
81
|
-
html: '
|
|
81
|
+
html: 'JPG riduce i dettagli difficili da percepire e produce immagini leggere. È indicato per fotografie, banner e social: il compromesso tra minima perdita e maggiore velocità di rete è spesso vantaggioso.',
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
type: 'title',
|
|
85
|
-
text: 'Confronto
|
|
85
|
+
text: 'Confronto tecnico: elaborazione locale e cloud',
|
|
86
86
|
level: 3,
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
type: 'comparative',
|
|
90
90
|
items: [
|
|
91
91
|
{
|
|
92
|
-
title: 'Convertitori
|
|
93
|
-
description: '
|
|
92
|
+
title: 'Convertitori cloud',
|
|
93
|
+
description: 'Servizi tradizionali che caricano le foto su un server remoto.',
|
|
94
94
|
icon: 'mdi:cloud-upload',
|
|
95
95
|
pointIcon: 'mdi:close-circle-outline',
|
|
96
96
|
points: [
|
|
97
|
-
'Latenza di rete (
|
|
98
|
-
'Rischio di fuga
|
|
97
|
+
'Latenza di rete (upload/download)',
|
|
98
|
+
'Rischio di fuga dei dati privati',
|
|
99
99
|
'Limiti di dimensione per file',
|
|
100
|
-
'Pubblicità e
|
|
100
|
+
'Pubblicità e tracciamento',
|
|
101
101
|
],
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
|
-
title: 'La
|
|
105
|
-
description: 'Elaborazione diretta sul
|
|
104
|
+
title: 'La nostra architettura locale',
|
|
105
|
+
description: 'Elaborazione diretta sul dispositivo con tecnologia JavaScript nativa.',
|
|
106
106
|
icon: 'mdi:laptop-mac',
|
|
107
107
|
highlight: true,
|
|
108
108
|
points: [
|
|
109
|
-
'Velocità
|
|
110
|
-
'Privacy garantita (
|
|
111
|
-
'
|
|
109
|
+
'Velocità immediata senza rete',
|
|
110
|
+
'Privacy garantita (zero byte inviati)',
|
|
111
|
+
'Nessun limite di MB per file',
|
|
112
112
|
'Interfaccia professionale e pulita',
|
|
113
113
|
],
|
|
114
114
|
},
|
|
@@ -121,49 +121,49 @@ const seo: PngAJpgLocaleContent['seo'] = [
|
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
123
|
type: 'paragraph',
|
|
124
|
-
html: '
|
|
124
|
+
html: 'La conversione senza server usa le API del browser. Quando scegli un file, il browser crea un Blob temporaneo nella RAM e lo disegna su un Canvas HTML5 invisibile.',
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
type: 'paragraph',
|
|
128
|
-
html: '
|
|
128
|
+
html: 'JPG non supporta il canale alfa: le aree trasparenti vengono quindi riempite di bianco prima del rendering. Il Canvas genera poi il flusso JPEG che il dispositivo salva direttamente.',
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
type: 'tip',
|
|
132
|
-
title: 'Consiglio SEO:
|
|
133
|
-
html: '
|
|
132
|
+
title: 'Consiglio SEO: il peso ideale',
|
|
133
|
+
html: "Un'immagine più leggera può migliorare LCP e PageSpeed. Ridurre un PNG grande a un JPG più piccolo è utile per intestazioni, articoli e pagine con molte immagini.",
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
type: 'title',
|
|
137
|
-
text: 'Sicurezza per
|
|
137
|
+
text: 'Sicurezza per aziende e professionisti',
|
|
138
138
|
level: 3,
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
type: 'paragraph',
|
|
142
|
-
html:
|
|
142
|
+
html: "Per banca, sanità e studi legali, inviare file a servizi esterni può creare rischi. Qui l'elaborazione resta nella RAM del browser e non richiede un caricamento su cloud.",
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
type: 'title',
|
|
146
|
-
text: 'Compatibilità del
|
|
146
|
+
text: 'Compatibilità del risultato',
|
|
147
147
|
level: 3,
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
type: 'list',
|
|
151
151
|
icon: 'mdi:check-circle',
|
|
152
152
|
items: [
|
|
153
|
-
'Visualizzatori
|
|
154
|
-
'Social network (Instagram, LinkedIn
|
|
155
|
-
'
|
|
156
|
-
'
|
|
153
|
+
'Visualizzatori su Windows, macOS e dispositivi mobili.',
|
|
154
|
+
'Social network (Instagram, LinkedIn e altri).',
|
|
155
|
+
"Programmi d'ufficio (Word, PowerPoint).",
|
|
156
|
+
'Sistemi di gestione dei contenuti (WordPress, Shopify).',
|
|
157
157
|
],
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
type: 'title',
|
|
161
|
-
text: 'Conclusione:
|
|
161
|
+
text: 'Conclusione: ottimizza con criterio',
|
|
162
162
|
level: 3,
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
type: 'paragraph',
|
|
166
|
-
html: 'Questo convertitore
|
|
166
|
+
html: 'Questo convertitore unisce rapidità e privacy. Che tu sia uno sviluppatore o un utente domestico, puoi ridurre il peso delle immagini senza consegnare i file a un servizio di terze parti.',
|
|
167
167
|
},
|
|
168
168
|
];
|
|
169
169
|
|