@jjlmoya/utils-home 1.25.0 → 1.26.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 +1 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/wallPaintingCalculator/bibliography.astro +14 -0
- package/src/tool/wallPaintingCalculator/bibliography.ts +14 -0
- package/src/tool/wallPaintingCalculator/component.astro +340 -0
- package/src/tool/wallPaintingCalculator/entry.ts +29 -0
- package/src/tool/wallPaintingCalculator/i18n/de.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/en.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/es.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/fr.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/id.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/it.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/ja.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/ko.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/nl.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/pl.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/pt.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/ru.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/sv.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/tr.ts +226 -0
- package/src/tool/wallPaintingCalculator/i18n/zh.ts +226 -0
- package/src/tool/wallPaintingCalculator/index.ts +9 -0
- package/src/tool/wallPaintingCalculator/logic.ts +27 -0
- package/src/tool/wallPaintingCalculator/seo.astro +15 -0
- package/src/tool/wallPaintingCalculator/ui.ts +42 -0
- package/src/tool/wallPaintingCalculator/wall-painting-calculator.css +326 -0
- package/src/tools.ts +2 -0
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { WallPaintingCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'calculateur-peinture-murs';
|
|
7
|
+
const title = 'Calculateur de Peinture et de Dilution pour Murs';
|
|
8
|
+
const description =
|
|
9
|
+
'Calculez exactement combien de litres ou de gallons de peinture vous avez besoin pour vos murs. Ajustez les couches, le type de surface, la dilution et obtenez le coût réel avant d\'acheter.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Comment calculer la quantité exacte de peinture?',
|
|
14
|
+
answer:
|
|
15
|
+
'Multipliez la surface du mur par le nombre de couches, puis divisez par le rendement de la peinture en mètres carrés ou pieds carrés par litre ou gallon. Soustrayez d\'abord les portes et fenêtres de la surface totale.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Quelle quantité de peinture faut-il pour une pièce standard?',
|
|
19
|
+
answer:
|
|
20
|
+
'Une pièce de 12 mètres carrés avec des plafonds de 2,5 mètres a environ 30 mètres carrés de surface murale. Avec deux couches et un rendement de 12 mètres carrés par litre, il vous faut environ 5 litres de peinture.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Dois-je diluer la peinture avant de l\'appliquer?',
|
|
24
|
+
answer:
|
|
25
|
+
'Les peintures plastiques à base d\'eau sont généralement prêtes à l\'emploi ou nécessitent 5 à 10 pour cent d\'eau sur la première couche. Les peintures émaillées ou à l\'huile nécessitent souvent un solvant spécifique indiqué sur le pot.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Combien de couches sont vraiment nécessaires?',
|
|
29
|
+
answer:
|
|
30
|
+
'Les surfaces neuves ou très absorbantes ont besoin d\'une sous-couche plus deux couches de finition. Repeindre un mur déjà peint dans une couleur similaire nécessite généralement une à deux couches.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Dois-je soustraire les portes et fenêtres?',
|
|
34
|
+
answer:
|
|
35
|
+
'Oui. Mesurez chaque ouverture et soustrayez-la de la surface murale totale. En règle générale, une porte fait environ 2 mètres carrés et une fenêtre environ 1,5 mètre carré.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Le type de surface change-t-il le rendement?',
|
|
39
|
+
answer:
|
|
40
|
+
'Oui. Les murs lisses et préparés offrent un rendement allant jusqu\'à 14 mètres carrés par litre. Le béton brut, le crépi ou la brique absorbante peuvent faire chuter le rendement à 6 ou 8 mètres carrés par litre.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const howToData = [
|
|
45
|
+
{
|
|
46
|
+
name: 'Mesurez vos murs',
|
|
47
|
+
text: 'Mesurez la largeur et la hauteur de chaque mur. Multipliez-les pour obtenir la surface de chaque mur, puis additionnez tous les murs.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: 'Soustrayez les ouvertures',
|
|
51
|
+
text: 'Mesurez les portes et fenêtres et soustrayez leur surface du total pour obtenir la surface réelle à peindre.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Choisissez le type de peinture',
|
|
55
|
+
text: 'Sélectionnez le type de peinture dans le calculateur. La peinture plastique mate, la peinture plastique satinée et la peinture émaillée ont des rendements et des recommandations de dilution différents.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'Indiquez les couches et le prix',
|
|
59
|
+
text: 'Indiquez le nombre de couches que vous prévoyez d\'appliquer et le prix par litre ou gallon. Le calculateur vous donnera la quantité exacte et le coût total.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'FAQPage',
|
|
66
|
+
mainEntity: faqData.map((item) => ({
|
|
67
|
+
'@type': 'Question',
|
|
68
|
+
name: item.question,
|
|
69
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
70
|
+
})),
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const howToSchema: WithContext<HowTo> = {
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'HowTo',
|
|
76
|
+
name: title,
|
|
77
|
+
description,
|
|
78
|
+
step: howToData.map((step) => ({
|
|
79
|
+
'@type': 'HowToStep',
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'UtilityApplication',
|
|
91
|
+
operatingSystem: 'All',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
inLanguage: 'fr',
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export const content: ToolLocaleContent<WallPaintingCalculatorUI> = {
|
|
97
|
+
slug,
|
|
98
|
+
title,
|
|
99
|
+
description,
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliography,
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
seo: [
|
|
105
|
+
{
|
|
106
|
+
type: 'title',
|
|
107
|
+
text: 'Calculateur de Peinture: Achetez Exactement ce dont Vous Avez Besoin',
|
|
108
|
+
level: 2,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'paragraph',
|
|
112
|
+
html: 'Peindre une pièce sans calculer au préalable se termine souvent par des <strong>pots à moitié pleins</strong> ou des courses d\'urgence au magasin. La raison est simple: le rendement de la peinture varie avec la porosité de la surface, le changement de couleur et le nombre de couches. Un mur lisse et déjà peint peut offrir un rendement allant jusqu\'à 14 mètres carrés par litre, tandis qu\'un mur crépi peut absorber la même quantité et ne couvrir que 6 mètres carrés par litre.',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'stats',
|
|
116
|
+
items: [
|
|
117
|
+
{ value: 'Élevé', label: 'Couverture standard', icon: 'mdi:format-paint' },
|
|
118
|
+
{ value: '2 couches', label: 'Recommandé', icon: 'mdi:layers' },
|
|
119
|
+
{ value: '5-10%', label: 'Dilution typique', icon: 'mdi:cup-water' },
|
|
120
|
+
],
|
|
121
|
+
columns: 3,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Comment Fonctionne Vraiment le Rendement de la Peinture',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'Les fabricants indiquent un rendement théorique sur le pot. Ce chiffre suppose une surface parfaitement lisse, non absorbante, blanche et appliquée avec un rouleau professionnel dans des conditions idéales. Dans la réalité, <strong>murs poreux, couleurs foncées et application bricolage</strong> réduisent ce rendement de 20 à 40 pour cent. Notre calculateur vous permet de choisir des profils réalistes pour ne pas être en manque.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
items: [
|
|
135
|
+
{
|
|
136
|
+
title: 'Peinture Plastique Mate',
|
|
137
|
+
description: 'Le choix le plus courant pour les intérieurs. Bonne couverture, facile à retoucher et lavable dans la plupart des qualités.',
|
|
138
|
+
icon: 'mdi:palette',
|
|
139
|
+
points: ['Couverture standard pour intérieurs', 'Dilution: 5 à 10 pour cent d\'eau', 'Idéal pour: salons et chambres'],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
title: 'Peinture Plastique Satinée',
|
|
143
|
+
description: 'Fini légèrement brillant avec une plus grande résistance à l\'humidité et aux taches. Plus difficile à retoucher sans traces.',
|
|
144
|
+
icon: 'mdi:brightness-6',
|
|
145
|
+
points: ['Couverture légèrement supérieure', 'Dilution: 5 pour cent d\'eau', 'Idéal pour: cuisines et salles de bain'],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
title: 'Peinture Émaillée',
|
|
149
|
+
description: 'Fini dur et durable pour la menuiserie, les radiateurs et les zones à fort passage. Nécessite un solvant ou un diluant spécifique.',
|
|
150
|
+
icon: 'mdi:spray',
|
|
151
|
+
points: ['Fini dur et durable', 'Dilution: 10 à 15 pour cent de solvant', 'Idéal pour: portes, cadres et meubles'],
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
columns: 3,
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'diagnostic',
|
|
158
|
+
variant: 'info',
|
|
159
|
+
title: 'Mesure Pratique des Surfaces',
|
|
160
|
+
icon: 'mdi:ruler-square',
|
|
161
|
+
badge: 'Conseil',
|
|
162
|
+
html: '<p style="margin:0">Multipliez la largeur par la hauteur de chaque mur. Pour un total rapide, additionnez toutes les largeurs et multipliez-les par la hauteur de la pièce. Soustrayez ensuite environ 2 mètres carrés par porte standard et 1,5 mètre carré par fenêtre.</p>',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'title',
|
|
166
|
+
text: 'Règles de Dilution et d\'Application',
|
|
167
|
+
level: 3,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'paragraph',
|
|
171
|
+
html: 'Les premières couches sur des surfaces neuves ou réparées nécessitent toujours une légère dilution pour que la peinture pénètre et accroche. Les couches de finition doivent être appliquées non diluées ou avec le minimum indiqué par le fabricant. <strong>Une dilution excessive casse le pigment</strong> et laisse des zones transparentes qui nécessitent une couche supplémentaire.',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'summary',
|
|
175
|
+
title: 'Pourquoi Calculer Avant d\'Acheter',
|
|
176
|
+
items: [
|
|
177
|
+
'Évitez les restes de peinture qui sèchent dans le pot et finissent en déchet.',
|
|
178
|
+
'Prévenez les différences de teinte entre les lots achetés à des moments différents.',
|
|
179
|
+
'Budgetisez avec précision: connaissez le coût réel incluant sous-couche et outils.',
|
|
180
|
+
'Planifiez le travail en une seule fois sans l\'interrompre pour du matériel supplémentaire.',
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
ui: {
|
|
185
|
+
sectionTitle: 'Surface et Peinture',
|
|
186
|
+
labelMetric: 'Métrique',
|
|
187
|
+
labelImperial: 'Impérial',
|
|
188
|
+
labelArea: 'Surface totale à peindre',
|
|
189
|
+
labelAreaFt: 'Surface totale à peindre',
|
|
190
|
+
unitArea: 'm2',
|
|
191
|
+
unitAreaFt: 'ft2',
|
|
192
|
+
labelYield: 'Rendement de la peinture',
|
|
193
|
+
labelYieldFt: 'Rendement de la peinture',
|
|
194
|
+
unitYield: 'm2/L',
|
|
195
|
+
unitYieldFt: 'ft2/gal',
|
|
196
|
+
labelType: 'Sélectionnez le type de peinture',
|
|
197
|
+
btnPlasticMatTitle: 'Plastique Mat',
|
|
198
|
+
btnPlasticMatSub: 'Mat · Eau 5%',
|
|
199
|
+
btnPlasticSatinTitle: 'Plastique Satiné',
|
|
200
|
+
btnPlasticSatinSub: 'Satiné · Eau 5%',
|
|
201
|
+
btnEnamelTitle: 'Émail',
|
|
202
|
+
btnEnamelSub: 'Émail · Solvant 10%',
|
|
203
|
+
labelCoats: 'Nombre de couches',
|
|
204
|
+
unitCoats: 'couches',
|
|
205
|
+
labelPrice: 'Prix par litre',
|
|
206
|
+
labelPriceFt: 'Prix par gallon',
|
|
207
|
+
unitPrice: '/L',
|
|
208
|
+
unitPriceGal: '/gal',
|
|
209
|
+
labelDilution: 'Pourcentage de dilution',
|
|
210
|
+
unitDilution: '%',
|
|
211
|
+
resultBadge: 'Calcul de peinture',
|
|
212
|
+
labelPaint: 'Litres de peinture',
|
|
213
|
+
labelPaintGal: 'Gallons de peinture',
|
|
214
|
+
labelCost: 'Coût total',
|
|
215
|
+
labelWater: 'Liquide de dilution',
|
|
216
|
+
labelWaterGal: 'Liquide de dilution',
|
|
217
|
+
labelTotalVolume: 'Mélange total',
|
|
218
|
+
labelTotalVolumeGal: 'Mélange total',
|
|
219
|
+
labelCurrency: 'Devise',
|
|
220
|
+
btnCurrUSD: '$',
|
|
221
|
+
btnCurrEUR: '€',
|
|
222
|
+
btnCurrGBP: '£',
|
|
223
|
+
btnCurrJPY: '¥',
|
|
224
|
+
currencySign: '€',
|
|
225
|
+
},
|
|
226
|
+
};
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { WallPaintingCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'kalkulator-cat-tembok';
|
|
7
|
+
const title = 'Kalkulator Cat dan Pengenceran untuk Dinding';
|
|
8
|
+
const description =
|
|
9
|
+
'Hitung dengan tepat berapa liter atau galon cat yang Anda butuhkan untuk dinding Anda. Sesuaikan lapisan, jenis permukaan, pengenceran dan dapatkan biaya nyata sebelum membeli.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Bagaimana cara menghitung jumlah cat yang tepat?',
|
|
14
|
+
answer:
|
|
15
|
+
'Kalikan luas permukaan dinding dengan jumlah lapisan, lalu bagi dengan hasil cat dalam meter persegi atau kaki persegi per liter atau galon. Kurangi pintu dan jendela dari luas total terlebih dahulu.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Berapa banyak cat yang dibutuhkan untuk ruangan standar?',
|
|
19
|
+
answer:
|
|
20
|
+
'Ruangan 12 meter persegi dengan langit-langit setinggi 2,5 meter memiliki sekitar 30 meter persegi permukaan dinding. Dengan dua lapisan dan hasil 12 meter persegi per liter, Anda membutuhkan sekitar 5 liter cat.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Apakah saya harus mencairkan cat sebelum mengaplikasikannya?',
|
|
24
|
+
answer:
|
|
25
|
+
'Cat plastik berbasis air biasanya siap pakai atau membutuhkan 5 hingga 10 persen air pada lapisan pertama. Cat enamel atau minyak sering membutuhkan pelarut khusus yang tercantum pada kaleng.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Berapa banyak lapisan yang benar-benar diperlukan?',
|
|
29
|
+
answer:
|
|
30
|
+
'Permukaan baru atau sangat menyerap membutuhkan primer ditambah dua lapisan finishing. Mengecat ulang dinding yang sudah dicat dalam warna serupa biasanya hanya membutuhkan satu atau dua lapisan.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Apakah saya harus mengurangi pintu dan jendela?',
|
|
34
|
+
answer:
|
|
35
|
+
'Ya. Ukur setiap bukaan dan kurangi dari total luas dinding. Sebagai aturan cepat, pintu sekitar 2 meter persegi dan jendela sekitar 1,5 meter persegi masing-masing.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Apakah jenis permukaan mengubah hasil cat?',
|
|
39
|
+
answer:
|
|
40
|
+
'Ya. Dinding halus yang sudah disiapkan dapat menghasilkan hingga 14 meter persegi per liter. Beton kasar, plester bertekstur atau bata menyerap dapat menurunkan hasil menjadi 6 atau 8 meter persegi per liter.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const howToData = [
|
|
45
|
+
{
|
|
46
|
+
name: 'Ukur dinding Anda',
|
|
47
|
+
text: 'Ukur lebar dan tinggi setiap dinding. Kalikan untuk mendapatkan luas setiap dinding, lalu jumlahkan semua dinding.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: 'Kurangi bukaan',
|
|
51
|
+
text: 'Ukur pintu dan jendela dan kurangi luasnya dari total untuk mendapatkan permukaan nyata untuk dicat.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Pilih jenis cat',
|
|
55
|
+
text: 'Pilih jenis cat di kalkulator. Cat plastik matte, cat plastik satin dan enamel memiliki hasil dan rekomendasi pengenceran yang berbeda.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'Tetapkan lapisan dan harga',
|
|
59
|
+
text: 'Tunjukkan berapa banyak lapisan yang Anda rencanakan untuk diterapkan dan harga per liter atau galon. Kalkulator akan mengembalikan jumlah dan total biaya yang tepat.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'FAQPage',
|
|
66
|
+
mainEntity: faqData.map((item) => ({
|
|
67
|
+
'@type': 'Question',
|
|
68
|
+
name: item.question,
|
|
69
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
70
|
+
})),
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const howToSchema: WithContext<HowTo> = {
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'HowTo',
|
|
76
|
+
name: title,
|
|
77
|
+
description,
|
|
78
|
+
step: howToData.map((step) => ({
|
|
79
|
+
'@type': 'HowToStep',
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'UtilityApplication',
|
|
91
|
+
operatingSystem: 'All',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
inLanguage: 'id',
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export const content: ToolLocaleContent<WallPaintingCalculatorUI> = {
|
|
97
|
+
slug,
|
|
98
|
+
title,
|
|
99
|
+
description,
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliography,
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
seo: [
|
|
105
|
+
{
|
|
106
|
+
type: 'title',
|
|
107
|
+
text: 'Kalkulator Cat: Beli Persis yang Anda Butuhkan',
|
|
108
|
+
level: 2,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'paragraph',
|
|
112
|
+
html: 'Mengecat ruangan tanpa menghitung terlebih dahulu biasanya berakhir dengan <strong>kaleng setengah kosong</strong> atau perjalanan darurat ke toko. Alasannya sederhana: hasil cat bervariasi dengan porositas permukaan, perubahan warna dan jumlah lapisan. Dinding halus yang sebelumnya dicat dapat menghasilkan hingga 14 meter persegi per liter, sementara dinding plester kasar dapat menyerap jumlah yang sama dan hanya menutupi 6 meter persegi per liter.',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'stats',
|
|
116
|
+
items: [
|
|
117
|
+
{ value: 'Tinggi', label: 'Cakupan Standar', icon: 'mdi:format-paint' },
|
|
118
|
+
{ value: '2 lapisan', label: 'Direkomendasikan', icon: 'mdi:layers' },
|
|
119
|
+
{ value: '5-10%', label: 'Pengenceran Tipikal', icon: 'mdi:cup-water' },
|
|
120
|
+
],
|
|
121
|
+
columns: 3,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Bagaimana Hasil Cat Benar-benar Bekerja',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'Produsen menyatakan hasil teoritis pada kaleng. Angka itu mengasumsikan permukaan yang benar-benar halus, tidak menyerap, putih dan dioleskan dengan rol profesional dalam kondisi ideal. Di dunia nyata, <strong>dinding berpori, warna gelap, dan aplikasi DIY</strong> mengurangi hasil tersebut sebesar 20 hingga 40 persen. Kalkulator kami memungkinkan Anda memilih profil yang realistis sehingga Anda tidak kekurangan.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
items: [
|
|
135
|
+
{
|
|
136
|
+
title: 'Cat Plastik Matte',
|
|
137
|
+
description: 'Pilihan paling umum untuk interior. Cakupan tinggi, mudah untuk retouch, dan dapat dicuci di sebagian besar kualitas.',
|
|
138
|
+
icon: 'mdi:palette',
|
|
139
|
+
points: ['Cakupan interior standar', 'Pengenceran: 5 hingga 10 persen air', 'Terbaik untuk: ruang tamu dan kamar tidur'],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
title: 'Cat Plastik Satin',
|
|
143
|
+
description: 'Finish sedikit mengkilap dengan resistensi lebih besar terhadap kelembaban dan noda. Lebih sulit untuk retouch tanpa bekas.',
|
|
144
|
+
icon: 'mdi:brightness-6',
|
|
145
|
+
points: ['Cakupan sedikit lebih tinggi', 'Pengenceran: 5 persen air', 'Terbaik untuk: dapur dan kamar mandi'],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
title: 'Cat Enamel',
|
|
149
|
+
description: 'Finish keras dan tahan lama untuk kayu, radiator dan area lalu lintas tinggi. Membutuhkan pelarut atau pengencer khusus.',
|
|
150
|
+
icon: 'mdi:spray',
|
|
151
|
+
points: ['Finish keras dan tahan lama', 'Pengenceran: 10 hingga 15 persen pelarut', 'Terbaik untuk: pintu, bingkai dan furnitur'],
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
columns: 3,
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'diagnostic',
|
|
158
|
+
variant: 'info',
|
|
159
|
+
title: 'Pengukuran Permukaan Praktis',
|
|
160
|
+
icon: 'mdi:ruler-square',
|
|
161
|
+
badge: 'Tip',
|
|
162
|
+
html: '<p style="margin:0">Kalikan lebar dinding kali tinggi dinding untuk setiap dinding. Untuk total cepat, tambahkan semua lebar dan kalikan dengan tinggi ruangan. Kemudian kurangi sekitar 2 meter persegi untuk setiap pintu standar dan 1,5 meter persegi untuk setiap jendela.</p>',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'title',
|
|
166
|
+
text: 'Aturan Pengenceran dan Aplikasi',
|
|
167
|
+
level: 3,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'paragraph',
|
|
171
|
+
html: 'Lapisan pertama pada permukaan baru atau yang diperbaiki selalu membutuhkan pengenceran ringan agar cat menembus dan mengikat. Lapisan finishing harus dioleskan tidak dicairkan atau dengan minimum yang diindikasikan oleh produsen. <strong>Pengenceran berlebihan merusak pigmen</strong> dan meninggalkan bercak transparan yang membutuhkan lapisan tambahan.',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'summary',
|
|
175
|
+
title: 'Mengapa Menghitung Sebelum Membeli',
|
|
176
|
+
items: [
|
|
177
|
+
'Hindari sisa cat yang mengering di kaleng dan berakhir sebagai limbah.',
|
|
178
|
+
'Cegah ketidakcocokan warna antara batch yang dibeli pada waktu berbeda.',
|
|
179
|
+
'Anggaran dengan akurat: ketahui biaya nyata termasuk primer dan peralatan.',
|
|
180
|
+
'Rencanakan pekerjaan sekaligus tanpa menginterupsi untuk material tambahan.',
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
ui: {
|
|
185
|
+
sectionTitle: 'Permukaan dan Cat',
|
|
186
|
+
labelMetric: 'Metrik',
|
|
187
|
+
labelImperial: 'Imperial',
|
|
188
|
+
labelArea: 'Luas total untuk dicat',
|
|
189
|
+
labelAreaFt: 'Luas total untuk dicat',
|
|
190
|
+
unitArea: 'm2',
|
|
191
|
+
unitAreaFt: 'ft2',
|
|
192
|
+
labelYield: 'Hasil cat',
|
|
193
|
+
labelYieldFt: 'Hasil cat',
|
|
194
|
+
unitYield: 'm2/L',
|
|
195
|
+
unitYieldFt: 'ft2/gal',
|
|
196
|
+
labelType: 'Pilih jenis cat',
|
|
197
|
+
btnPlasticMatTitle: 'Plastik Matte',
|
|
198
|
+
btnPlasticMatSub: 'Matte · Air 5%',
|
|
199
|
+
btnPlasticSatinTitle: 'Plastik Satin',
|
|
200
|
+
btnPlasticSatinSub: 'Satin · Air 5%',
|
|
201
|
+
btnEnamelTitle: 'Enamel',
|
|
202
|
+
btnEnamelSub: 'Enamel · Pelarut 10%',
|
|
203
|
+
labelCoats: 'Jumlah lapisan',
|
|
204
|
+
unitCoats: 'lapisan',
|
|
205
|
+
labelPrice: 'Harga per liter',
|
|
206
|
+
labelPriceFt: 'Harga per galon',
|
|
207
|
+
unitPrice: '/L',
|
|
208
|
+
unitPriceGal: '/gal',
|
|
209
|
+
labelDilution: 'Persentase pengenceran',
|
|
210
|
+
unitDilution: '%',
|
|
211
|
+
resultBadge: 'Perhitungan cat',
|
|
212
|
+
labelPaint: 'Liter cat',
|
|
213
|
+
labelPaintGal: 'Galon cat',
|
|
214
|
+
labelCost: 'Biaya total',
|
|
215
|
+
labelWater: 'Cairan pengencer',
|
|
216
|
+
labelWaterGal: 'Cairan pengencer',
|
|
217
|
+
labelTotalVolume: 'Campuran total',
|
|
218
|
+
labelTotalVolumeGal: 'Campuran total',
|
|
219
|
+
labelCurrency: 'Mata Uang',
|
|
220
|
+
btnCurrUSD: '$',
|
|
221
|
+
btnCurrEUR: '€',
|
|
222
|
+
btnCurrGBP: '£',
|
|
223
|
+
btnCurrJPY: '¥',
|
|
224
|
+
currencySign: 'Rp',
|
|
225
|
+
},
|
|
226
|
+
};
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { WallPaintingCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'calcolatore-pittura-pareti';
|
|
7
|
+
const title = 'Calcolatore di Pittura e Diluizione per Pareti';
|
|
8
|
+
const description =
|
|
9
|
+
'Calcola esattamente quanti litri o galloni di vernice ti servono per le tue pareti. Regola per strati, tipo di superficie, diluizione e ottieni il costo reale prima di acquistare.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Come calcolo la quantità esatta di vernice?',
|
|
14
|
+
answer:
|
|
15
|
+
'Moltiplica la superficie della parete per il numero di strati, poi dividi per la resa della vernice in metri quadrati o piedi quadrati per litro o gallone. Sottrai prima porte e finestre dall\'area totale.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Quanta vernice serve per una stanza standard?',
|
|
19
|
+
answer:
|
|
20
|
+
'Una stanza di 12 metri quadrati con soffitti alti 2,5 metri ha circa 30 metri quadrati di superficie muraria. Con due strati e una resa di 12 metri quadrati per litro, servono circa 5 litri di vernice.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Devo diluire la vernice prima di applicarla?',
|
|
24
|
+
answer:
|
|
25
|
+
'Le vernici plastiche a base d\'acqua sono solitamente pronte all\'uso o necessitano del 5 al 10 per cento di acqua sul primo strato. Le vernici smaltate o ad olio spesso richiedono un diluente specifico indicato sulla latta.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Quanti strati sono davvero necessari?',
|
|
29
|
+
answer:
|
|
30
|
+
'Le superfici nuove o molto assorbenti necessitano di un fondo più due mani di finitura. Rivedere una parete già dipinta in un colore simile di solito richiede solo uno o due strati.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Devo sottrarre porte e finestre?',
|
|
34
|
+
answer:
|
|
35
|
+
'Sì. Misura ogni apertura e sottraila dall\'area muraria totale. Come regola pratica, le porte sono circa 2 metri quadrati e le finestre circa 1,5 metri quadrati ciascuna.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Il tipo di superficie cambia la resa?',
|
|
39
|
+
answer:
|
|
40
|
+
'Sì. Le pareti lisce e preparate possono avere una resa fino a 14 metri quadrati per litro. Il calcestruzzo ruvido, l\'intonaco ruvido o il mattone assorbente possono far scendere la resa a 6 o 8 metri quadrati per litro.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const howToData = [
|
|
45
|
+
{
|
|
46
|
+
name: 'Misura le tue pareti',
|
|
47
|
+
text: 'Misura la larghezza e l\'altezza di ogni parete. Moltiplicale per ottenere l\'area di ciascuna parete, poi somma tutte le pareti.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: 'Sottrai le aperture',
|
|
51
|
+
text: 'Misura porte e finestre e sottrai la loro area dal totale per ottenere la superficie reale da dipingere.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Scegli il tipo di vernice',
|
|
55
|
+
text: 'Seleziona il tipo di vernice nel calcolatore. La plastica opaca, la plastica satinata e lo smalto hanno rese e raccomandazioni di diluizione diverse.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'Imposta strati e prezzo',
|
|
59
|
+
text: 'Indica quanti strati prevedi di applicare e il prezzo per litro o gallone. Il calcolatore restituirà la quantità e il costo totale esatti.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'FAQPage',
|
|
66
|
+
mainEntity: faqData.map((item) => ({
|
|
67
|
+
'@type': 'Question',
|
|
68
|
+
name: item.question,
|
|
69
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
70
|
+
})),
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const howToSchema: WithContext<HowTo> = {
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'HowTo',
|
|
76
|
+
name: title,
|
|
77
|
+
description,
|
|
78
|
+
step: howToData.map((step) => ({
|
|
79
|
+
'@type': 'HowToStep',
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'UtilityApplication',
|
|
91
|
+
operatingSystem: 'All',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
inLanguage: 'it',
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export const content: ToolLocaleContent<WallPaintingCalculatorUI> = {
|
|
97
|
+
slug,
|
|
98
|
+
title,
|
|
99
|
+
description,
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliography,
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
seo: [
|
|
105
|
+
{
|
|
106
|
+
type: 'title',
|
|
107
|
+
text: 'Calcolatore di Vernice: Acquista Esattamente Quello che Ti Serve',
|
|
108
|
+
level: 2,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'paragraph',
|
|
112
|
+
html: 'Dipingere una stanza senza calcolare prima di solito finisce con <strong>lattine mezze piene</strong> o corse d\'emergenza al negozio. Il motivo è semplice: la resa della vernice varia con la porosità della superficie, il cambio di colore e il numero di strati. Una parete liscia e precedentemente dipinta può avere una resa fino a 14 metri quadrati per litro, mentre una parete di intonaco ruvido può assorbire la stessa quantità e coprire solo 6 metri quadrati per litro.',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'stats',
|
|
116
|
+
items: [
|
|
117
|
+
{ value: 'Alto', label: 'Copertura Standard', icon: 'mdi:format-paint' },
|
|
118
|
+
{ value: '2 strati', label: 'Raccomandato', icon: 'mdi:layers' },
|
|
119
|
+
{ value: '5-10%', label: 'Diluizione Tipica', icon: 'mdi:cup-water' },
|
|
120
|
+
],
|
|
121
|
+
columns: 3,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'Come Funziona Realmente la Resa della Vernice',
|
|
126
|
+
level: 3,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'I produttori indicano sulla latta una resa teorica. Quel numero presuppone una superficie perfettamente liscia, non assorbente, bianca e applicata con un rullo professionale in condizioni ideali. Nel mondo reale, <strong>pareti porose, colori scuri e applicazione fai da te</strong> riducono quella resa dal 20 al 40 per cento. Il nostro calcolatore ti permette di scegliere profili realistici in modo da non rimanere a corto.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'comparative',
|
|
134
|
+
items: [
|
|
135
|
+
{
|
|
136
|
+
title: 'Vernice Plastica Opaca',
|
|
137
|
+
description: 'La scelta più comune per gli interni. Alta copertura, facile da ritoccare e lavabile nella maggior parte delle qualità.',
|
|
138
|
+
icon: 'mdi:palette',
|
|
139
|
+
points: ['Copertura standard per interni', 'Diluizione: 5 al 10 per cento di acqua', 'Ideale per: soggiorni e camere da letto'],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
title: 'Vernice Plastica Satinata',
|
|
143
|
+
description: 'Finitura leggermente lucida con maggiore resistenza all\'umidità e alle macchie. Più difficile da ritoccare senza segni.',
|
|
144
|
+
icon: 'mdi:brightness-6',
|
|
145
|
+
points: ['Copertura leggermente superiore', 'Diluizione: 5 per cento di acqua', 'Ideale per: cucine e bagni'],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
title: 'Vernice Smalto',
|
|
149
|
+
description: 'Finitura dura e duratura per falegnameria, termosifoni e aree ad alto traffico. Richiede diluente o solvente specifico.',
|
|
150
|
+
icon: 'mdi:spray',
|
|
151
|
+
points: ['Finitura dura e duratura', 'Diluizione: 10 al 15 per cento di solvente', 'Ideale per: porte, cornici e mobili'],
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
columns: 3,
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'diagnostic',
|
|
158
|
+
variant: 'info',
|
|
159
|
+
title: 'Misurazione Pratica delle Superfici',
|
|
160
|
+
icon: 'mdi:ruler-square',
|
|
161
|
+
badge: 'Suggerimento',
|
|
162
|
+
html: '<p style="margin:0">Moltiplica la larghezza per l\'altezza di ogni parete. Per un totale rapido, somma tutte le larghezze e moltiplicalle per l\'altezza della stanza. Poi sottrai circa 2 metri quadrati per ogni porta standard e 1,5 metri quadrati per ogni finestra.</p>',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'title',
|
|
166
|
+
text: 'Regole di Diluizione e Applicazione',
|
|
167
|
+
level: 3,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'paragraph',
|
|
171
|
+
html: 'I primi strati su superfici nuove o riparate necessitano sempre di una leggera diluizione in modo che la vernice penetri e ancori. Gli strati di finitura devono essere applicati non diluiti o con il minimo indicato dal produttore. <strong>Una diluizione eccessiva rompe il pigmento</strong> e lascia zone trasparenti che richiedono uno strato aggiuntivo.',
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'summary',
|
|
175
|
+
title: 'Perché Calcolare Prima di Acquistare',
|
|
176
|
+
items: [
|
|
177
|
+
'Evita avanzi di vernice che si seccano nella latta e finiscono come rifiuto.',
|
|
178
|
+
'Previene differenze di tonalità tra lotti acquistati in momenti diversi.',
|
|
179
|
+
'Stima il budget con precisione: conosci il costo reale incluso fondo e attrezzi.',
|
|
180
|
+
'Pianifica il lavoro in un\'unica volta senza interromperlo per materiale aggiuntivo.',
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
ui: {
|
|
185
|
+
sectionTitle: 'Superficie e Vernice',
|
|
186
|
+
labelMetric: 'Metrico',
|
|
187
|
+
labelImperial: 'Imperiale',
|
|
188
|
+
labelArea: 'Superficie totale da dipingere',
|
|
189
|
+
labelAreaFt: 'Superficie totale da dipingere',
|
|
190
|
+
unitArea: 'm2',
|
|
191
|
+
unitAreaFt: 'ft2',
|
|
192
|
+
labelYield: 'Resa della vernice',
|
|
193
|
+
labelYieldFt: 'Resa della vernice',
|
|
194
|
+
unitYield: 'm2/L',
|
|
195
|
+
unitYieldFt: 'ft2/gal',
|
|
196
|
+
labelType: 'Seleziona il tipo di vernice',
|
|
197
|
+
btnPlasticMatTitle: 'Plastica Opaca',
|
|
198
|
+
btnPlasticMatSub: 'Opaca · Acqua 5%',
|
|
199
|
+
btnPlasticSatinTitle: 'Plastica Satinata',
|
|
200
|
+
btnPlasticSatinSub: 'Satinata · Acqua 5%',
|
|
201
|
+
btnEnamelTitle: 'Smalto',
|
|
202
|
+
btnEnamelSub: 'Smalto · Solvente 10%',
|
|
203
|
+
labelCoats: 'Numero di strati',
|
|
204
|
+
unitCoats: 'strati',
|
|
205
|
+
labelPrice: 'Prezzo per litro',
|
|
206
|
+
labelPriceFt: 'Prezzo per gallone',
|
|
207
|
+
unitPrice: '/L',
|
|
208
|
+
unitPriceGal: '/gal',
|
|
209
|
+
labelDilution: 'Percentuale di diluizione',
|
|
210
|
+
unitDilution: '%',
|
|
211
|
+
resultBadge: 'Calcolo vernice',
|
|
212
|
+
labelPaint: 'Litri di vernice',
|
|
213
|
+
labelPaintGal: 'Galloni di vernice',
|
|
214
|
+
labelCost: 'Costo totale',
|
|
215
|
+
labelWater: 'Liquido diluente',
|
|
216
|
+
labelWaterGal: 'Liquido diluente',
|
|
217
|
+
labelTotalVolume: 'Miscela totale',
|
|
218
|
+
labelTotalVolumeGal: 'Miscela totale',
|
|
219
|
+
labelCurrency: 'Valuta',
|
|
220
|
+
btnCurrUSD: '$',
|
|
221
|
+
btnCurrEUR: '€',
|
|
222
|
+
btnCurrGBP: '£',
|
|
223
|
+
btnCurrJPY: '¥',
|
|
224
|
+
currencySign: '€',
|
|
225
|
+
},
|
|
226
|
+
};
|