@jjlmoya/utils-textiles 1.20.0 → 1.22.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/category/i18n/de.ts +76 -76
- package/src/category/i18n/en.ts +76 -76
- package/src/category/i18n/es.ts +76 -76
- package/src/category/i18n/fr.ts +76 -76
- package/src/category/i18n/id.ts +76 -76
- package/src/category/i18n/it.ts +76 -76
- package/src/category/i18n/ja.ts +76 -76
- package/src/category/i18n/ko.ts +76 -76
- package/src/category/i18n/nl.ts +76 -76
- package/src/category/i18n/pl.ts +76 -76
- package/src/category/i18n/pt.ts +76 -76
- package/src/category/i18n/ru.ts +76 -76
- package/src/category/i18n/sv.ts +76 -76
- package/src/category/i18n/zh.ts +76 -76
- package/src/category/index.ts +2 -0
- package/src/category/seo.astro +1 -1
- package/src/components/PreviewNavSidebar.astro +1 -1
- package/src/components/PreviewToolbar.astro +1 -1
- package/src/data.ts +1 -1
- package/src/entries.ts +4 -1
- package/src/env.d.ts +1 -1
- package/src/index.ts +1 -1
- package/src/layouts/PreviewLayout.astro +113 -113
- package/src/pages/index.astro +1 -1
- package/src/tests/faq_count.test.ts +19 -19
- package/src/tests/i18n_coverage.test.ts +4 -2
- package/src/tests/locale_spelling.test.ts +44 -0
- package/src/tests/mocks/astro_mock.js +1 -1
- package/src/tests/no_en_dash.test.ts +70 -70
- package/src/tests/no_h1_in_components.test.ts +1 -1
- package/src/tests/seo_length.test.ts +22 -22
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/spanish_leakage.test.ts +175 -153
- package/src/tests/tool_validation.test.ts +17 -17
- package/src/tool/burnTest/i18n/es.ts +211 -211
- package/src/tool/burnTest/i18n/fr.ts +211 -211
- package/src/tool/burnTest/i18n/ja.ts +211 -211
- package/src/tool/burnTest/i18n/ko.ts +211 -211
- package/src/tool/burnTest/i18n/pl.ts +211 -211
- package/src/tool/burnTest/i18n/ru.ts +211 -211
- package/src/tool/burnTest/i18n/sv.ts +211 -211
- package/src/tool/burnTest/i18n/zh.ts +211 -211
- package/src/tool/burnTest/seo.astro +15 -15
- package/src/tool/clothingSizeConverter/i18n/de.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/en.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/fr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ja.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ko.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/nl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/pl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ru.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/sv.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/tr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/zh.ts +348 -348
- package/src/tool/clothingSizeConverter/seo.astro +15 -15
- package/src/tool/embroideryStitchPricingEstimator/bibliography.astro +6 -0
- package/src/tool/embroideryStitchPricingEstimator/bibliography.ts +12 -0
- package/src/tool/embroideryStitchPricingEstimator/component.astro +111 -0
- package/src/tool/embroideryStitchPricingEstimator/controller.ts +111 -0
- package/src/tool/embroideryStitchPricingEstimator/dom-views.ts +94 -0
- package/src/tool/embroideryStitchPricingEstimator/embroidery-stitch-count-pricing-estimator.css +438 -0
- package/src/tool/embroideryStitchPricingEstimator/entry.ts +29 -0
- package/src/tool/embroideryStitchPricingEstimator/evaluator.ts +22 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/de.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/en.ts +194 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/es.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/fr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/id.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/it.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ja.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ko.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/nl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pt.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ru.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/sv.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/tr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/zh.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/index.ts +11 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.test.ts +40 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.ts +86 -0
- package/src/tool/embroideryStitchPricingEstimator/seo.astro +15 -0
- package/src/tool/embroideryStitchPricingEstimator/storage.ts +20 -0
- package/src/tool/embroideryStitchPricingEstimator/ui.ts +53 -0
- package/src/tool/fabricProjectCalculator/i18n/de.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ja.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ko.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/nl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/pl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ru.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/sv.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/tr.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/zh.ts +236 -236
- package/src/tool/fabricProjectCalculator/seo.astro +15 -15
- package/src/tool/fabricTruth/i18n/de.ts +268 -268
- package/src/tool/fabricTruth/i18n/en.ts +268 -268
- package/src/tool/fabricTruth/i18n/es.ts +302 -302
- package/src/tool/fabricTruth/i18n/fr.ts +268 -268
- package/src/tool/fabricTruth/i18n/id.ts +268 -268
- package/src/tool/fabricTruth/i18n/it.ts +268 -268
- package/src/tool/fabricTruth/i18n/ja.ts +268 -268
- package/src/tool/fabricTruth/i18n/ko.ts +268 -268
- package/src/tool/fabricTruth/i18n/nl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pt.ts +268 -268
- package/src/tool/fabricTruth/i18n/ru.ts +268 -268
- package/src/tool/fabricTruth/i18n/sv.ts +268 -268
- package/src/tool/fabricTruth/i18n/tr.ts +268 -268
- package/src/tool/fabricTruth/i18n/zh.ts +272 -272
- package/src/tool/fabricTruth/seo.astro +15 -15
- package/src/tool/fiberPrep/i18n/de.ts +215 -215
- package/src/tool/fiberPrep/i18n/fr.ts +215 -215
- package/src/tool/fiberPrep/i18n/ja.ts +215 -215
- package/src/tool/fiberPrep/i18n/ko.ts +215 -215
- package/src/tool/fiberPrep/i18n/nl.ts +215 -215
- package/src/tool/fiberPrep/i18n/pl.ts +215 -215
- package/src/tool/fiberPrep/i18n/ru.ts +215 -215
- package/src/tool/fiberPrep/i18n/sv.ts +215 -215
- package/src/tool/fiberPrep/i18n/tr.ts +215 -215
- package/src/tool/fiberPrep/i18n/zh.ts +215 -215
- package/src/tool/fiberPrep/seo.astro +15 -15
- package/src/tool/knittingGauge/i18n/de.ts +224 -224
- package/src/tool/knittingGauge/i18n/ja.ts +224 -224
- package/src/tool/knittingGauge/i18n/ko.ts +224 -224
- package/src/tool/knittingGauge/i18n/pl.ts +224 -224
- package/src/tool/knittingGauge/i18n/ru.ts +224 -224
- package/src/tool/knittingGauge/i18n/tr.ts +224 -224
- package/src/tool/knittingGauge/i18n/zh.ts +224 -224
- package/src/tool/knittingGauge/seo.astro +15 -15
- package/src/tool/laundryGuide/i18n/de.ts +271 -271
- package/src/tool/laundryGuide/i18n/en.ts +271 -271
- package/src/tool/laundryGuide/i18n/es.ts +271 -271
- package/src/tool/laundryGuide/i18n/fr.ts +255 -255
- package/src/tool/laundryGuide/i18n/id.ts +271 -271
- package/src/tool/laundryGuide/i18n/it.ts +271 -271
- package/src/tool/laundryGuide/i18n/ja.ts +271 -271
- package/src/tool/laundryGuide/i18n/ko.ts +271 -271
- package/src/tool/laundryGuide/i18n/nl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pt.ts +271 -271
- package/src/tool/laundryGuide/i18n/ru.ts +271 -271
- package/src/tool/laundryGuide/i18n/sv.ts +271 -271
- package/src/tool/laundryGuide/i18n/tr.ts +271 -271
- package/src/tool/laundryGuide/i18n/zh.ts +271 -271
- package/src/tool/laundryGuide/seo.astro +15 -15
- package/src/tool/needleConverter/i18n/de.ts +202 -202
- package/src/tool/needleConverter/i18n/es.ts +207 -207
- package/src/tool/needleConverter/i18n/fr.ts +207 -207
- package/src/tool/needleConverter/i18n/ja.ts +202 -202
- package/src/tool/needleConverter/i18n/ko.ts +202 -202
- package/src/tool/needleConverter/i18n/nl.ts +202 -202
- package/src/tool/needleConverter/i18n/pl.ts +202 -202
- package/src/tool/needleConverter/i18n/ru.ts +202 -202
- package/src/tool/needleConverter/i18n/sv.ts +202 -202
- package/src/tool/needleConverter/i18n/tr.ts +202 -202
- package/src/tool/needleConverter/i18n/zh.ts +202 -202
- package/src/tool/needleConverter/seo.astro +15 -15
- package/src/tool/sewingPatternScaler/component.astro +236 -236
- package/src/tool/sewingPatternScaler/i18n/fr.ts +170 -170
- package/src/tool/sewingPatternScaler/i18n/ja.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ko.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/nl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/pl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ru.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/sv.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/tr.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/zh.ts +114 -114
- package/src/tool/sewingPatternScaler/seo.astro +15 -15
- package/src/tool/shoeSizeConverter/i18n/fr.ts +183 -183
- package/src/tool/shoeSizeConverter/i18n/ja.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ko.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/nl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/pl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ru.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/sv.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/tr.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/zh.ts +179 -179
- package/src/tool/shoeSizeConverter/seo.astro +15 -15
- package/src/tool/stainChemistry/bibliography.ts +16 -16
- package/src/tool/stainChemistry/i18n/de.ts +286 -286
- package/src/tool/stainChemistry/i18n/en.ts +289 -289
- package/src/tool/stainChemistry/i18n/es.ts +286 -286
- package/src/tool/stainChemistry/i18n/fr.ts +296 -296
- package/src/tool/stainChemistry/i18n/id.ts +286 -286
- package/src/tool/stainChemistry/i18n/it.ts +286 -286
- package/src/tool/stainChemistry/i18n/ja.ts +286 -286
- package/src/tool/stainChemistry/i18n/ko.ts +283 -283
- package/src/tool/stainChemistry/i18n/nl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pt.ts +286 -286
- package/src/tool/stainChemistry/i18n/ru.ts +286 -286
- package/src/tool/stainChemistry/i18n/sv.ts +286 -286
- package/src/tool/stainChemistry/i18n/tr.ts +286 -286
- package/src/tool/stainChemistry/i18n/zh.ts +281 -281
- package/src/tool/stainChemistry/seo.astro +15 -15
- package/src/tool/yarnCalculator/i18n/de.ts +296 -296
- package/src/tool/yarnCalculator/i18n/es.ts +296 -296
- package/src/tool/yarnCalculator/i18n/fr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ja.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ko.ts +296 -296
- package/src/tool/yarnCalculator/i18n/nl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/pl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ru.ts +296 -296
- package/src/tool/yarnCalculator/i18n/sv.ts +296 -296
- package/src/tool/yarnCalculator/i18n/tr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/zh.ts +295 -295
- package/src/tool/yarnCalculator/seo.astro +15 -15
- package/src/tools.ts +2 -2
|
@@ -1,286 +1,286 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { StainChemistryUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'protocollo-chimico-macchie-tessili';
|
|
7
|
-
const title = 'Protocollo Chimico di Rimozione Macchie Tessili';
|
|
8
|
-
const description =
|
|
9
|
-
'Protocolli scientifici per eliminare le macchie in base al tipo di fibra e alla natura chimica della macchia. Percarbonato, enzimi, solventi: il metodo corretto per ogni caso.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'Posso usare la candeggina al posto del percarbonato?',
|
|
14
|
-
answer:
|
|
15
|
-
"La candeggina (ipoclorito di sodio) è altamente corrosiva. Degrada le fibre rendendole ingiallite e fragili. Il percarbonato sbianca tramite l'ossigeno attivo, rispettando la struttura molecolare naturale.",
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: "Perché l'aceto aiuta con gli odori?",
|
|
19
|
-
answer:
|
|
20
|
-
"Gli odori corporei sono solitamente alcalini. L'acido acetico dell'aceto li neutralizza, trasformandoli in sali inodori che vengono eliminati completamente durante il risciacquo.",
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: "Devo sempre usare acqua fredda per il sangue?",
|
|
24
|
-
answer:
|
|
25
|
-
"Sì. Il calore coagula le proteine del sangue, fissandolo alla fibra in modo permanente. L'acqua fredda mantiene la macchia in uno stato solubile e permette agli agenti enzimatici di agire efficacemente.",
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: 'Cosa succede se applico acetone su un capo in acetato?',
|
|
29
|
-
answer:
|
|
30
|
-
"L'acetone scioglie il triacetato e l'acetato. Le fibre di acetato sono cellulosa esterificata con acido acetico e sono completamente solubili in acetone. Il risultato sarebbe la distruzione irreversibile del tessuto.",
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Identificare il tipo di fibra',
|
|
37
|
-
text: "Consulta l'etichetta interna del capo per sapere se si tratta di fibra naturale, sintetica o nobile (lana, seta, cashmere).",
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Selezionare la fibra nello strumento',
|
|
41
|
-
text: 'Scegli il materiale corrispondente nel primo selettore.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Selezionare il tipo di macchia',
|
|
45
|
-
text: 'Indica se la macchia è organica (vino, frutta), proteica (sangue), grassa o sintetica (inchiostro).',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Applicare il protocollo indicato',
|
|
49
|
-
text: 'Segui le istruzioni su agente, temperatura e metodo. Presta particolare attenzione alle avvertenze di cautela critica.',
|
|
50
|
-
},
|
|
51
|
-
];
|
|
52
|
-
|
|
53
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
-
'@context': 'https://schema.org',
|
|
55
|
-
'@type': 'FAQPage',
|
|
56
|
-
mainEntity: faqData.map((item) => ({
|
|
57
|
-
'@type': 'Question',
|
|
58
|
-
name: item.question,
|
|
59
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
-
})),
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
const howToSchema: WithContext<HowTo> = {
|
|
64
|
-
'@context': 'https://schema.org',
|
|
65
|
-
'@type': 'HowTo',
|
|
66
|
-
name: title,
|
|
67
|
-
description,
|
|
68
|
-
step: howToData.map((step) => ({
|
|
69
|
-
'@type': 'HowToStep',
|
|
70
|
-
name: step.name,
|
|
71
|
-
text: step.text,
|
|
72
|
-
})),
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
-
'@context': 'https://schema.org',
|
|
77
|
-
'@type': 'SoftwareApplication',
|
|
78
|
-
name: title,
|
|
79
|
-
description,
|
|
80
|
-
applicationCategory: 'UtilityApplication',
|
|
81
|
-
operatingSystem: 'All',
|
|
82
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
-
inLanguage: 'it',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
-
slug,
|
|
88
|
-
title,
|
|
89
|
-
description,
|
|
90
|
-
ui: {
|
|
91
|
-
toolTitle: 'Protocollo Chimico Macchie',
|
|
92
|
-
fiberLabel: '1. Fibra',
|
|
93
|
-
selectFiberPlaceholder: 'Seleziona il tessuto...',
|
|
94
|
-
stainLabel: '2. Macchia',
|
|
95
|
-
selectStainPlaceholder: 'Cosa è successo?',
|
|
96
|
-
molecularDiagnosis: 'Diagnosi Molecolare',
|
|
97
|
-
requiredAgent: 'Agente Richiesto',
|
|
98
|
-
thermalCondition: 'Condizione Termale',
|
|
99
|
-
temperature: 'Temperatura',
|
|
100
|
-
cleaningInstructions: 'Istruzioni di Pulizia',
|
|
101
|
-
criticalWarning: 'Cautela Critica',
|
|
102
|
-
criticalWarningLabel: 'ATTENZIONE',
|
|
103
|
-
technicalNote: 'Nota tecnica',
|
|
104
|
-
technicalNoteText:
|
|
105
|
-
'Valida sempre la solidità della tintura in una zona non visibile prima di procedere con il trattamento chimico completo.',
|
|
106
|
-
systemDiagnosis: 'Sistema di Diagnosi',
|
|
107
|
-
systemDiagnosisDesc:
|
|
108
|
-
'Configura i parametri tessili per ottenere la tabella di marcia per la pulizia',
|
|
109
|
-
delicatePercarbonateWarning:
|
|
110
|
-
'RISCHIO DI DEGRADAZIONE MOLECOLARE. Fibre animali altamente sensibili al percarbonato. Effettuare test in zona non visibile.',
|
|
111
|
-
fiberData: {
|
|
112
|
-
cotton: { name: 'Cotone', family: 'natural', isNoble: false },
|
|
113
|
-
linen: { name: 'Lino', family: 'natural', isNoble: true },
|
|
114
|
-
wool: { name: 'Lana / Merino', family: 'natural', isNoble: true },
|
|
115
|
-
silk: { name: 'Seta', family: 'natural', isNoble: true },
|
|
116
|
-
cashmere: { name: 'Cashmere', family: 'natural', isNoble: true },
|
|
117
|
-
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
-
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
-
alpaca: { name: 'Alpaca', family: 'natural', isNoble: true },
|
|
120
|
-
polyester: { name: 'Poliestere', family: 'synthetic', isNoble: false },
|
|
121
|
-
viscose: { name: 'Viscosa / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
-
nylon: { name: 'Nylon (Poliammide)', family: 'synthetic', isNoble: false },
|
|
123
|
-
acrylic: { name: 'Acrilico', family: 'synthetic', isNoble: false },
|
|
124
|
-
},
|
|
125
|
-
agents: {
|
|
126
|
-
percarbonate: {
|
|
127
|
-
name: 'Percarbonato di Sodio',
|
|
128
|
-
description: 'Sbiancante ossigenato biodegradabile. Rilascia ossigeno attivo quando si scioglie.',
|
|
129
|
-
warning: 'Evitare su fibre proteiche (seta, lana) ad alte concentrazioni.',
|
|
130
|
-
},
|
|
131
|
-
isopropyl: {
|
|
132
|
-
name: 'Alcol Isopropilico',
|
|
133
|
-
description: 'Solvente efficace per pigmenti e grassi leggeri.',
|
|
134
|
-
warning: 'Può danneggiare la lucentezza delle sete e sciogliere alcuni acrilici se non diluito.',
|
|
135
|
-
},
|
|
136
|
-
acetone: {
|
|
137
|
-
name: 'Acetone',
|
|
138
|
-
description: 'Solvente potente per lacche e colle.',
|
|
139
|
-
warning: 'PROIBITO su acetati e triacetati (scioglie la fibra).',
|
|
140
|
-
},
|
|
141
|
-
enzyme: {
|
|
142
|
-
name: 'Detergente Enzimatico',
|
|
143
|
-
description: 'Contiene proteasi che rompono le macchie biologiche.',
|
|
144
|
-
warning: 'Usare con cautela su lana e seta (sono proteine).',
|
|
145
|
-
},
|
|
146
|
-
vinegar: {
|
|
147
|
-
name: 'Aceto Bianco',
|
|
148
|
-
description: 'Acido acetico blando per neutralizzare gli odori e fissare i colori.',
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
stains: [
|
|
152
|
-
{
|
|
153
|
-
id: 'wine',
|
|
154
|
-
name: 'Vino Rosso / Frutta',
|
|
155
|
-
protocols: {
|
|
156
|
-
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Ammollo prolungato' },
|
|
157
|
-
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Pasta diretta' },
|
|
158
|
-
delicate: {
|
|
159
|
-
agentId: 'vinegar',
|
|
160
|
-
temperature: 'Fredda',
|
|
161
|
-
method: 'Risciacquo con acqua gasata e aceto',
|
|
162
|
-
notes: 'Non strofinare',
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
id: 'blood',
|
|
168
|
-
name: 'Sangue',
|
|
169
|
-
protocols: {
|
|
170
|
-
natural: {
|
|
171
|
-
agentId: 'enzyme',
|
|
172
|
-
temperature: 'Fredda',
|
|
173
|
-
method: 'Ammollo in acqua salata e poi enzima',
|
|
174
|
-
},
|
|
175
|
-
synthetic: { agentId: 'enzyme', temperature: 'Fredda', method: 'Applicazione diretta' },
|
|
176
|
-
delicate: {
|
|
177
|
-
agentId: 'vinegar',
|
|
178
|
-
temperature: 'Fredda',
|
|
179
|
-
method: 'Risciacquo immediato, evitare calore',
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
id: 'grease',
|
|
185
|
-
name: 'Grasso / Olio',
|
|
186
|
-
protocols: {
|
|
187
|
-
natural: {
|
|
188
|
-
agentId: 'isopropyl',
|
|
189
|
-
temperature: '40°C',
|
|
190
|
-
method: 'Sciogliere con alcol e poi lavare',
|
|
191
|
-
},
|
|
192
|
-
synthetic: {
|
|
193
|
-
agentId: 'isopropyl',
|
|
194
|
-
temperature: '40°C',
|
|
195
|
-
method: 'Mettere carta assorbente sotto',
|
|
196
|
-
},
|
|
197
|
-
delicate: { agentId: 'isopropyl', temperature: 'Fredda', method: 'Diluire alcol al 50%' },
|
|
198
|
-
},
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
id: 'ink',
|
|
202
|
-
name: 'Inchiostro / Pennarello',
|
|
203
|
-
protocols: {
|
|
204
|
-
natural: {
|
|
205
|
-
agentId: 'isopropyl',
|
|
206
|
-
temperature: 'Ambiente',
|
|
207
|
-
method: 'Tamponare dall\'esterno verso l\'interno',
|
|
208
|
-
},
|
|
209
|
-
synthetic: {
|
|
210
|
-
agentId: 'isopropyl',
|
|
211
|
-
temperature: 'Ambiente',
|
|
212
|
-
method: 'Cautela con la dispersione',
|
|
213
|
-
},
|
|
214
|
-
delicate: {
|
|
215
|
-
agentId: 'isopropyl',
|
|
216
|
-
temperature: 'Fredda',
|
|
217
|
-
method: 'Diluire e provare in zona nascosta',
|
|
218
|
-
},
|
|
219
|
-
},
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
},
|
|
223
|
-
seo: [
|
|
224
|
-
{
|
|
225
|
-
type: 'title',
|
|
226
|
-
text: 'La Chimica Dietro la Pulizia Tessile',
|
|
227
|
-
level: 2,
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
type: 'paragraph',
|
|
231
|
-
html: 'Non tutte le macchie sono uguali, e non tutte le fibre reagiscono allo stesso modo agli stessi agenti chimici. La differenza tra salvare un capo e distruggerlo sta nel capire la natura molecolare della macchia e la struttura della fibra.',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
type: 'card',
|
|
235
|
-
title: '01: Ossidazione Controllata',
|
|
236
|
-
icon: 'mdi:atom',
|
|
237
|
-
html: 'Il <strong>percarbonato di sodio</strong> rilascia ossigeno attivo che rompe i doppi legami dei cromofori (le molecole responsabili del colore della macchia), rendendoli incolori e solubili in acqua. È il metodo più efficace per le macchie organiche.',
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
type: 'card',
|
|
241
|
-
title: '02: Solubilizzazione tramite Solventi',
|
|
242
|
-
icon: 'mdi:flask-outline',
|
|
243
|
-
html: "Macchie come l'olio o l'inchiostro non sono solubili in acqua. Solventi come l'<strong>alcol isopropilico</strong> o l'<strong>acetone</strong> riducono la tensione superficiale e attirano le molecole non polari della macchia, permettendo loro di trasferirsi su un mezzo di supporto.",
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
type: 'title',
|
|
247
|
-
text: 'Sovranità sulle Fibre: Perché il Tipo Conta',
|
|
248
|
-
level: 2,
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
type: 'paragraph',
|
|
252
|
-
html: 'Non tutte le fibre "mangiano" allo stesso modo. La <strong>seta e la lana</strong> sono proteine (fibroina e cheratina). Se applichi un detergente enzimatico progettato per "mangiare proteine" (macchie di sangue o uovo) senza controllo, il detergente inizierà a degradare la fibra stessa, distruggendo la lucentezza e la struttura del tessuto.',
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
type: 'title',
|
|
256
|
-
text: 'Il Pericolo del Calore',
|
|
257
|
-
level: 2,
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
type: 'paragraph',
|
|
261
|
-
html: 'Uno degli errori più comuni è usare acqua calda per "ammorbidire" una macchia di sangue. Chimicamente, il calore produce la <strong>coagulazione delle proteine</strong> della macchia, fissandole permanentemente alla struttura porosa della fibra. Le macchie di proteine devono essere trattate sempre con acqua fredda.',
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
type: 'tip',
|
|
265
|
-
title: 'Protocollo di Emergenza: Vino Rosso',
|
|
266
|
-
html: "<strong>A. Assorbimento passivo:</strong> Tamponare con carta assorbente, mai strofinare per evitare l'espansione meccanica.<br><strong>B. Neutralizzazione osmotica:</strong> Coprire con sale fino per attirare il liquido verso l'esterno del nucleo della fibra.<br><strong>C. Azione chimica:</strong> Applicare una pasta di percarbonato e acqua a 40°C se la fibra è resistente al calore.",
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
type: 'title',
|
|
270
|
-
text: 'Solventi Specifici e Precauzioni',
|
|
271
|
-
level: 2,
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
type: 'paragraph',
|
|
275
|
-
html: "L'<strong>acetone</strong> è un solvente eccezionale per lacche per unghie o colle, ma è distruttivo per l'<strong>acetato</strong>. Essendo fibre derivate dalla cellulosa ma trattate chimicamente, l'acetone letteralmente scioglie il tessuto.",
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
type: 'paragraph',
|
|
279
|
-
html: "L'<strong>alcol isopropilico</strong> è più stabile, ma sui sintetici tinti può trascinare il pigmento stesso. Raccomandiamo sempre la 'prova dell'orlo' in una zona non visibile prima del trattamento principale.",
|
|
280
|
-
},
|
|
281
|
-
],
|
|
282
|
-
faq: faqData,
|
|
283
|
-
bibliography: bibliography,
|
|
284
|
-
howTo: howToData,
|
|
285
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { StainChemistryUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'protocollo-chimico-macchie-tessili';
|
|
7
|
+
const title = 'Protocollo Chimico di Rimozione Macchie Tessili';
|
|
8
|
+
const description =
|
|
9
|
+
'Protocolli scientifici per eliminare le macchie in base al tipo di fibra e alla natura chimica della macchia. Percarbonato, enzimi, solventi: il metodo corretto per ogni caso.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Posso usare la candeggina al posto del percarbonato?',
|
|
14
|
+
answer:
|
|
15
|
+
"La candeggina (ipoclorito di sodio) è altamente corrosiva. Degrada le fibre rendendole ingiallite e fragili. Il percarbonato sbianca tramite l'ossigeno attivo, rispettando la struttura molecolare naturale.",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: "Perché l'aceto aiuta con gli odori?",
|
|
19
|
+
answer:
|
|
20
|
+
"Gli odori corporei sono solitamente alcalini. L'acido acetico dell'aceto li neutralizza, trasformandoli in sali inodori che vengono eliminati completamente durante il risciacquo.",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: "Devo sempre usare acqua fredda per il sangue?",
|
|
24
|
+
answer:
|
|
25
|
+
"Sì. Il calore coagula le proteine del sangue, fissandolo alla fibra in modo permanente. L'acqua fredda mantiene la macchia in uno stato solubile e permette agli agenti enzimatici di agire efficacemente.",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Cosa succede se applico acetone su un capo in acetato?',
|
|
29
|
+
answer:
|
|
30
|
+
"L'acetone scioglie il triacetato e l'acetato. Le fibre di acetato sono cellulosa esterificata con acido acetico e sono completamente solubili in acetone. Il risultato sarebbe la distruzione irreversibile del tessuto.",
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Identificare il tipo di fibra',
|
|
37
|
+
text: "Consulta l'etichetta interna del capo per sapere se si tratta di fibra naturale, sintetica o nobile (lana, seta, cashmere).",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Selezionare la fibra nello strumento',
|
|
41
|
+
text: 'Scegli il materiale corrispondente nel primo selettore.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Selezionare il tipo di macchia',
|
|
45
|
+
text: 'Indica se la macchia è organica (vino, frutta), proteica (sangue), grassa o sintetica (inchiostro).',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Applicare il protocollo indicato',
|
|
49
|
+
text: 'Segui le istruzioni su agente, temperatura e metodo. Presta particolare attenzione alle avvertenze di cautela critica.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
+
'@context': 'https://schema.org',
|
|
55
|
+
'@type': 'FAQPage',
|
|
56
|
+
mainEntity: faqData.map((item) => ({
|
|
57
|
+
'@type': 'Question',
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema: WithContext<HowTo> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'HowTo',
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howToData.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep',
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilityApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
inLanguage: 'it',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
ui: {
|
|
91
|
+
toolTitle: 'Protocollo Chimico Macchie',
|
|
92
|
+
fiberLabel: '1. Fibra',
|
|
93
|
+
selectFiberPlaceholder: 'Seleziona il tessuto...',
|
|
94
|
+
stainLabel: '2. Macchia',
|
|
95
|
+
selectStainPlaceholder: 'Cosa è successo?',
|
|
96
|
+
molecularDiagnosis: 'Diagnosi Molecolare',
|
|
97
|
+
requiredAgent: 'Agente Richiesto',
|
|
98
|
+
thermalCondition: 'Condizione Termale',
|
|
99
|
+
temperature: 'Temperatura',
|
|
100
|
+
cleaningInstructions: 'Istruzioni di Pulizia',
|
|
101
|
+
criticalWarning: 'Cautela Critica',
|
|
102
|
+
criticalWarningLabel: 'ATTENZIONE',
|
|
103
|
+
technicalNote: 'Nota tecnica',
|
|
104
|
+
technicalNoteText:
|
|
105
|
+
'Valida sempre la solidità della tintura in una zona non visibile prima di procedere con il trattamento chimico completo.',
|
|
106
|
+
systemDiagnosis: 'Sistema di Diagnosi',
|
|
107
|
+
systemDiagnosisDesc:
|
|
108
|
+
'Configura i parametri tessili per ottenere la tabella di marcia per la pulizia',
|
|
109
|
+
delicatePercarbonateWarning:
|
|
110
|
+
'RISCHIO DI DEGRADAZIONE MOLECOLARE. Fibre animali altamente sensibili al percarbonato. Effettuare test in zona non visibile.',
|
|
111
|
+
fiberData: {
|
|
112
|
+
cotton: { name: 'Cotone', family: 'natural', isNoble: false },
|
|
113
|
+
linen: { name: 'Lino', family: 'natural', isNoble: true },
|
|
114
|
+
wool: { name: 'Lana / Merino', family: 'natural', isNoble: true },
|
|
115
|
+
silk: { name: 'Seta', family: 'natural', isNoble: true },
|
|
116
|
+
cashmere: { name: 'Cashmere', family: 'natural', isNoble: true },
|
|
117
|
+
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
+
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
+
alpaca: { name: 'Alpaca', family: 'natural', isNoble: true },
|
|
120
|
+
polyester: { name: 'Poliestere', family: 'synthetic', isNoble: false },
|
|
121
|
+
viscose: { name: 'Viscosa / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
+
nylon: { name: 'Nylon (Poliammide)', family: 'synthetic', isNoble: false },
|
|
123
|
+
acrylic: { name: 'Acrilico', family: 'synthetic', isNoble: false },
|
|
124
|
+
},
|
|
125
|
+
agents: {
|
|
126
|
+
percarbonate: {
|
|
127
|
+
name: 'Percarbonato di Sodio',
|
|
128
|
+
description: 'Sbiancante ossigenato biodegradabile. Rilascia ossigeno attivo quando si scioglie.',
|
|
129
|
+
warning: 'Evitare su fibre proteiche (seta, lana) ad alte concentrazioni.',
|
|
130
|
+
},
|
|
131
|
+
isopropyl: {
|
|
132
|
+
name: 'Alcol Isopropilico',
|
|
133
|
+
description: 'Solvente efficace per pigmenti e grassi leggeri.',
|
|
134
|
+
warning: 'Può danneggiare la lucentezza delle sete e sciogliere alcuni acrilici se non diluito.',
|
|
135
|
+
},
|
|
136
|
+
acetone: {
|
|
137
|
+
name: 'Acetone',
|
|
138
|
+
description: 'Solvente potente per lacche e colle.',
|
|
139
|
+
warning: 'PROIBITO su acetati e triacetati (scioglie la fibra).',
|
|
140
|
+
},
|
|
141
|
+
enzyme: {
|
|
142
|
+
name: 'Detergente Enzimatico',
|
|
143
|
+
description: 'Contiene proteasi che rompono le macchie biologiche.',
|
|
144
|
+
warning: 'Usare con cautela su lana e seta (sono proteine).',
|
|
145
|
+
},
|
|
146
|
+
vinegar: {
|
|
147
|
+
name: 'Aceto Bianco',
|
|
148
|
+
description: 'Acido acetico blando per neutralizzare gli odori e fissare i colori.',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
stains: [
|
|
152
|
+
{
|
|
153
|
+
id: 'wine',
|
|
154
|
+
name: 'Vino Rosso / Frutta',
|
|
155
|
+
protocols: {
|
|
156
|
+
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Ammollo prolungato' },
|
|
157
|
+
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Pasta diretta' },
|
|
158
|
+
delicate: {
|
|
159
|
+
agentId: 'vinegar',
|
|
160
|
+
temperature: 'Fredda',
|
|
161
|
+
method: 'Risciacquo con acqua gasata e aceto',
|
|
162
|
+
notes: 'Non strofinare',
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
id: 'blood',
|
|
168
|
+
name: 'Sangue',
|
|
169
|
+
protocols: {
|
|
170
|
+
natural: {
|
|
171
|
+
agentId: 'enzyme',
|
|
172
|
+
temperature: 'Fredda',
|
|
173
|
+
method: 'Ammollo in acqua salata e poi enzima',
|
|
174
|
+
},
|
|
175
|
+
synthetic: { agentId: 'enzyme', temperature: 'Fredda', method: 'Applicazione diretta' },
|
|
176
|
+
delicate: {
|
|
177
|
+
agentId: 'vinegar',
|
|
178
|
+
temperature: 'Fredda',
|
|
179
|
+
method: 'Risciacquo immediato, evitare calore',
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: 'grease',
|
|
185
|
+
name: 'Grasso / Olio',
|
|
186
|
+
protocols: {
|
|
187
|
+
natural: {
|
|
188
|
+
agentId: 'isopropyl',
|
|
189
|
+
temperature: '40°C',
|
|
190
|
+
method: 'Sciogliere con alcol e poi lavare',
|
|
191
|
+
},
|
|
192
|
+
synthetic: {
|
|
193
|
+
agentId: 'isopropyl',
|
|
194
|
+
temperature: '40°C',
|
|
195
|
+
method: 'Mettere carta assorbente sotto',
|
|
196
|
+
},
|
|
197
|
+
delicate: { agentId: 'isopropyl', temperature: 'Fredda', method: 'Diluire alcol al 50%' },
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
id: 'ink',
|
|
202
|
+
name: 'Inchiostro / Pennarello',
|
|
203
|
+
protocols: {
|
|
204
|
+
natural: {
|
|
205
|
+
agentId: 'isopropyl',
|
|
206
|
+
temperature: 'Ambiente',
|
|
207
|
+
method: 'Tamponare dall\'esterno verso l\'interno',
|
|
208
|
+
},
|
|
209
|
+
synthetic: {
|
|
210
|
+
agentId: 'isopropyl',
|
|
211
|
+
temperature: 'Ambiente',
|
|
212
|
+
method: 'Cautela con la dispersione',
|
|
213
|
+
},
|
|
214
|
+
delicate: {
|
|
215
|
+
agentId: 'isopropyl',
|
|
216
|
+
temperature: 'Fredda',
|
|
217
|
+
method: 'Diluire e provare in zona nascosta',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
seo: [
|
|
224
|
+
{
|
|
225
|
+
type: 'title',
|
|
226
|
+
text: 'La Chimica Dietro la Pulizia Tessile',
|
|
227
|
+
level: 2,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'paragraph',
|
|
231
|
+
html: 'Non tutte le macchie sono uguali, e non tutte le fibre reagiscono allo stesso modo agli stessi agenti chimici. La differenza tra salvare un capo e distruggerlo sta nel capire la natura molecolare della macchia e la struttura della fibra.',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'card',
|
|
235
|
+
title: '01: Ossidazione Controllata',
|
|
236
|
+
icon: 'mdi:atom',
|
|
237
|
+
html: 'Il <strong>percarbonato di sodio</strong> rilascia ossigeno attivo che rompe i doppi legami dei cromofori (le molecole responsabili del colore della macchia), rendendoli incolori e solubili in acqua. È il metodo più efficace per le macchie organiche.',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: 'card',
|
|
241
|
+
title: '02: Solubilizzazione tramite Solventi',
|
|
242
|
+
icon: 'mdi:flask-outline',
|
|
243
|
+
html: "Macchie come l'olio o l'inchiostro non sono solubili in acqua. Solventi come l'<strong>alcol isopropilico</strong> o l'<strong>acetone</strong> riducono la tensione superficiale e attirano le molecole non polari della macchia, permettendo loro di trasferirsi su un mezzo di supporto.",
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
type: 'title',
|
|
247
|
+
text: 'Sovranità sulle Fibre: Perché il Tipo Conta',
|
|
248
|
+
level: 2,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
type: 'paragraph',
|
|
252
|
+
html: 'Non tutte le fibre "mangiano" allo stesso modo. La <strong>seta e la lana</strong> sono proteine (fibroina e cheratina). Se applichi un detergente enzimatico progettato per "mangiare proteine" (macchie di sangue o uovo) senza controllo, il detergente inizierà a degradare la fibra stessa, distruggendo la lucentezza e la struttura del tessuto.',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
type: 'title',
|
|
256
|
+
text: 'Il Pericolo del Calore',
|
|
257
|
+
level: 2,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
type: 'paragraph',
|
|
261
|
+
html: 'Uno degli errori più comuni è usare acqua calda per "ammorbidire" una macchia di sangue. Chimicamente, il calore produce la <strong>coagulazione delle proteine</strong> della macchia, fissandole permanentemente alla struttura porosa della fibra. Le macchie di proteine devono essere trattate sempre con acqua fredda.',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
type: 'tip',
|
|
265
|
+
title: 'Protocollo di Emergenza: Vino Rosso',
|
|
266
|
+
html: "<strong>A. Assorbimento passivo:</strong> Tamponare con carta assorbente, mai strofinare per evitare l'espansione meccanica.<br><strong>B. Neutralizzazione osmotica:</strong> Coprire con sale fino per attirare il liquido verso l'esterno del nucleo della fibra.<br><strong>C. Azione chimica:</strong> Applicare una pasta di percarbonato e acqua a 40°C se la fibra è resistente al calore.",
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
type: 'title',
|
|
270
|
+
text: 'Solventi Specifici e Precauzioni',
|
|
271
|
+
level: 2,
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
type: 'paragraph',
|
|
275
|
+
html: "L'<strong>acetone</strong> è un solvente eccezionale per lacche per unghie o colle, ma è distruttivo per l'<strong>acetato</strong>. Essendo fibre derivate dalla cellulosa ma trattate chimicamente, l'acetone letteralmente scioglie il tessuto.",
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
type: 'paragraph',
|
|
279
|
+
html: "L'<strong>alcol isopropilico</strong> è più stabile, ma sui sintetici tinti può trascinare il pigmento stesso. Raccomandiamo sempre la 'prova dell'orlo' in una zona non visibile prima del trattamento principale.",
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
faq: faqData,
|
|
283
|
+
bibliography: bibliography,
|
|
284
|
+
howTo: howToData,
|
|
285
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
+
};
|