@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 = 'textielvlekken-chemisch-protocol';
|
|
7
|
-
const title = 'Chemisch Protocol voor Textielvlekken';
|
|
8
|
-
const description =
|
|
9
|
-
'Wetenschappelijke protocollen voor vlekverwijdering op basis van vezeltype en de chemische aard van de vlek. Percarbonaat, enzymen, oplosmiddelen: de juiste methode voor elk geval.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'Kan ik bleekmiddel gebruiken in plaats van percarbonaat?',
|
|
14
|
-
answer:
|
|
15
|
-
'Bleekmiddel (natriumhypochloriet) is zeer corrosief. Het tast de vezels aan, waardoor ze gelig en broos worden. Percarbonaat bleekt met actieve zuurstof en respecteert de natuurlijke moleculaire structuur.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: 'Waarom helpt azijn tegen geurtjes?',
|
|
19
|
-
answer:
|
|
20
|
-
'Lichaamsgeuren zijn meestal alkalisch. Het azijnzuur in azijn neutraliseert ze en zet ze om in geurloze zouten die tijdens het spoelen volledig worden verwijderd.',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: 'Moet ik altijd koud water gebruiken voor bloed?',
|
|
24
|
-
answer:
|
|
25
|
-
'Ja. Warmte stolt de eiwitten in het bloed, waardoor de vlek permanent aan de vezel hecht. Koud water houdt de vlek vloeibaar en stelt enzymatische middelen in staat effectief te werken.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: 'Wat gebeurt er als ik aceton op een kledingstuk van acetaat aanbreng?',
|
|
29
|
-
answer:
|
|
30
|
-
'Aceton lost triacetaat en acetaat op. Acetaatvezels zijn cellulose veresterd met azijnzuur en zijn volledig oplosbaar in aceton. Het resultaat is de onherstelbare vernietiging van de stof.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Identificeer het vezeltype',
|
|
37
|
-
text: 'Raadpleeg het label in het kledingstuk om te bepalen of het een natuurlijke vezel, synthetisch of een fijne vezel (wol, zijde, kasjmier) is.',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Selecteer de vezel in de tool',
|
|
41
|
-
text: 'Kies het overeenkomstige materiaal in de eerste kiezer.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Selecteer het type vlek',
|
|
45
|
-
text: 'Geef aan of de vlek organisch (wijn, fruit), eiwitrijk (bloed), vet of synthetisch (inkt) is.',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Pas het aangegeven protocol toe',
|
|
49
|
-
text: 'Volg de instructies voor middel, temperatuur en methode. Let speciaal op de kritieke veiligheidswaarschuwingen.',
|
|
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: 'nl',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
-
slug,
|
|
88
|
-
title,
|
|
89
|
-
description,
|
|
90
|
-
ui: {
|
|
91
|
-
toolTitle: 'Chemisch Vlekkenprotocol',
|
|
92
|
-
fiberLabel: '1. Vezel',
|
|
93
|
-
selectFiberPlaceholder: 'Selecteer stof...',
|
|
94
|
-
stainLabel: '2. Vlek',
|
|
95
|
-
selectStainPlaceholder: 'Wat is er gebeurd?',
|
|
96
|
-
molecularDiagnosis: 'Moleculaire Diagnose',
|
|
97
|
-
requiredAgent: 'Benodigd Middel',
|
|
98
|
-
thermalCondition: 'Thermische Conditie',
|
|
99
|
-
temperature: 'Temperatuur',
|
|
100
|
-
cleaningInstructions: 'Reinigingsinstructies',
|
|
101
|
-
criticalWarning: 'Kritieke Veiligheid',
|
|
102
|
-
criticalWarningLabel: 'LET OP',
|
|
103
|
-
technicalNote: 'Technische noot',
|
|
104
|
-
technicalNoteText:
|
|
105
|
-
'Valideer altijd de kleurvastheid op een onopvallende plek voordat je doorgaat met de volledige chemische behandeling.',
|
|
106
|
-
systemDiagnosis: 'Diagnosesysteem',
|
|
107
|
-
systemDiagnosisDesc:
|
|
108
|
-
'Stel de textielparameters in om de reinigingsroutekaart te ontvangen',
|
|
109
|
-
delicatePercarbonateWarning:
|
|
110
|
-
'RISICO OP MOLECULAIRE DEGRADATIE. Dierlijke vezels zijn zeer gevoelig voor percarbonaat. Test uitvoeren op onopvallende plek.',
|
|
111
|
-
fiberData: {
|
|
112
|
-
cotton: { name: 'Katoen', family: 'natural', isNoble: false },
|
|
113
|
-
linen: { name: 'Linnen', family: 'natural', isNoble: true },
|
|
114
|
-
wool: { name: 'Wol / Merino', family: 'natural', isNoble: true },
|
|
115
|
-
silk: { name: 'Zijde', family: 'natural', isNoble: true },
|
|
116
|
-
cashmere: { name: 'Kasjmier', 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: 'Polyester', family: 'synthetic', isNoble: false },
|
|
121
|
-
viscose: { name: 'Viscose / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
-
nylon: { name: 'Nylon (Polyamide)', family: 'synthetic', isNoble: false },
|
|
123
|
-
acrylic: { name: 'Acryl', family: 'synthetic', isNoble: false },
|
|
124
|
-
},
|
|
125
|
-
agents: {
|
|
126
|
-
percarbonate: {
|
|
127
|
-
name: 'Natriumpercarbonaat',
|
|
128
|
-
description: 'Biologisch afbreekbare zuurstofbleekmiddel. Geeft actieve zuurstof af bij het oplossen.',
|
|
129
|
-
warning: 'Vermijd op eiwitvezels (zijde, wol) in hoge concentraties.',
|
|
130
|
-
},
|
|
131
|
-
isopropyl: {
|
|
132
|
-
name: 'Isopropylalcohol',
|
|
133
|
-
description: 'Effectief oplosmiddel voor pigmenten en lichte vetten.',
|
|
134
|
-
warning: 'Kan de glans op zijde beschadigen en sommige acrylstoffen oplossen als het niet wordt verdund.',
|
|
135
|
-
},
|
|
136
|
-
acetone: {
|
|
137
|
-
name: 'Aceton',
|
|
138
|
-
description: 'Krachtig oplosmiddel voor lakken en lijmen.',
|
|
139
|
-
warning: 'VERBODEN op acetaat en triacetaat (lost de vezel op).',
|
|
140
|
-
},
|
|
141
|
-
enzyme: {
|
|
142
|
-
name: 'Enzymatisch Wasmiddel',
|
|
143
|
-
description: 'Bevat proteasen die biologische vlekken afbreken.',
|
|
144
|
-
warning: 'Gebruik met voorzichtigheid op wol en zijde (dit zijn eiwitten).',
|
|
145
|
-
},
|
|
146
|
-
vinegar: {
|
|
147
|
-
name: 'Witte Azijn',
|
|
148
|
-
description: 'Mild azijnzuur om geuren te neutraliseren en kleuren vast te leggen.',
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
stains: [
|
|
152
|
-
{
|
|
153
|
-
id: 'wine',
|
|
154
|
-
name: 'Rode Wijn / Fruit',
|
|
155
|
-
protocols: {
|
|
156
|
-
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Langdurig weken' },
|
|
157
|
-
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Rechtstreekse pasta' },
|
|
158
|
-
delicate: {
|
|
159
|
-
agentId: 'vinegar',
|
|
160
|
-
temperature: 'Koud',
|
|
161
|
-
method: 'Spoelen met spuitwater en azijn',
|
|
162
|
-
notes: 'Niet wrijven',
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
id: 'blood',
|
|
168
|
-
name: 'Bloed',
|
|
169
|
-
protocols: {
|
|
170
|
-
natural: {
|
|
171
|
-
agentId: 'enzyme',
|
|
172
|
-
temperature: 'Koud',
|
|
173
|
-
method: 'Weken in zout water en daarna enzym',
|
|
174
|
-
},
|
|
175
|
-
synthetic: { agentId: 'enzyme', temperature: 'Koud', method: 'Directe applicatie' },
|
|
176
|
-
delicate: {
|
|
177
|
-
agentId: 'vinegar',
|
|
178
|
-
temperature: 'Koud',
|
|
179
|
-
method: 'Onmiddellijk spoelen, hitte vermijden',
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
id: 'grease',
|
|
185
|
-
name: 'Vet / Olie',
|
|
186
|
-
protocols: {
|
|
187
|
-
natural: {
|
|
188
|
-
agentId: 'isopropyl',
|
|
189
|
-
temperature: '40°C',
|
|
190
|
-
method: 'Oplossen met alcohol en dan wassen',
|
|
191
|
-
},
|
|
192
|
-
synthetic: {
|
|
193
|
-
agentId: 'isopropyl',
|
|
194
|
-
temperature: '40°C',
|
|
195
|
-
method: 'Absorberend papier eronder leggen',
|
|
196
|
-
},
|
|
197
|
-
delicate: { agentId: 'isopropyl', temperature: 'Koud', method: 'Alcohol verdunnen tot 50%' },
|
|
198
|
-
},
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
id: 'ink',
|
|
202
|
-
name: 'Inkt / Marker',
|
|
203
|
-
protocols: {
|
|
204
|
-
natural: {
|
|
205
|
-
agentId: 'isopropyl',
|
|
206
|
-
temperature: 'Omgeving',
|
|
207
|
-
method: 'Deppen van buiten naar binnen',
|
|
208
|
-
},
|
|
209
|
-
synthetic: {
|
|
210
|
-
agentId: 'isopropyl',
|
|
211
|
-
temperature: 'Omgeving',
|
|
212
|
-
method: 'Voorzichtig met verspreiding',
|
|
213
|
-
},
|
|
214
|
-
delicate: {
|
|
215
|
-
agentId: 'isopropyl',
|
|
216
|
-
temperature: 'Koud',
|
|
217
|
-
method: 'Verdunnen en testen op verborgen plek',
|
|
218
|
-
},
|
|
219
|
-
},
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
},
|
|
223
|
-
seo: [
|
|
224
|
-
{
|
|
225
|
-
type: 'title',
|
|
226
|
-
text: 'De Chemie Achter Textielreiniging',
|
|
227
|
-
level: 2,
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
type: 'paragraph',
|
|
231
|
-
html: 'Niet alle vlekken zijn gelijk, en niet alle vezels reageren hetzelfde op dezelfde chemische middelen. Het verschil tussen het redden van een kledingstuk en het vernietigen ervan ligt in het begrijpen van de moleculaire aard van de vlek en de vezelstructuur.',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
type: 'card',
|
|
235
|
-
title: '01: Gecontroleerde Oxidatie',
|
|
236
|
-
icon: 'mdi:atom',
|
|
237
|
-
html: '<strong>Natriumpercarbonaat</strong> geeft actieve zuurstof af die de dubbele bindingen van chromoforen (de moleculen die verantwoordelijk zijn voor de kleur van de vlek) breekt, waardoor ze kleurloos en in water oplosbaar worden. Het is de meest effectieve methode voor organische vlekken.',
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
type: 'card',
|
|
241
|
-
title: '02: Oplosbaar maken door Oplosmiddelen',
|
|
242
|
-
icon: 'mdi:flask-outline',
|
|
243
|
-
html: 'Vlekken zoals olie of inkt zijn niet oplosbaar in water. Oplosmiddelen zoals <strong>isopropylalcohol</strong> of <strong>aceton</strong> verlagen de oppervlaktespanning en trekken de niet-polaire moleculen van de vlek aan, waardoor ze kunnen worden overgedragen op een drager.',
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
type: 'title',
|
|
247
|
-
text: 'Soevereiniteit over Vezels: Waarom het Type Uitmaakt',
|
|
248
|
-
level: 2,
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
type: 'paragraph',
|
|
252
|
-
html: 'Niet alle vezels "eten" hetzelfde. <strong>Zijde en wol</strong> zijn eiwitten (fibroïne en keratine). Als je een enzymatisch wasmiddel aanbrengt dat is ontworpen om "eiwitten te eten" (zoals bloedvlekken of ei) zonder controle, zal het wasmiddel de vezel zelf gaan afbreken, waardoor de glans en de structuur van de stof worden vernietigd.',
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
type: 'title',
|
|
256
|
-
text: 'Het Gevaar van Hitte',
|
|
257
|
-
level: 2,
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
type: 'paragraph',
|
|
261
|
-
html: 'Een van de meest gemaakte fouten is het gebruik van warm water om een bloedvlek "zacht te maken". Chemisch gezien veroorzaakt hitte de <strong>stolling van de eiwitten</strong> van de vlek, waardoor ze permanent aan de poreuze structuur van de vezel worden gefixeerd. Eiwitvlekken moeten altijd met koud water worden behandeld.',
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
type: 'tip',
|
|
265
|
-
title: 'Noodprotocol: Rode Wijn',
|
|
266
|
-
html: '<strong>A. Passieve absorptie:</strong> Deppen met absorberend papier, nooit wrijven om mechanische uitbreiding te voorkomen.<br><strong>B. Osmotische neutralisatie:</strong> Bedekken met fijn zout om de vloeistof uit de vezelkern te trekken.<br><strong>C. Chemische actie:</strong> Breng een pasta aan van percarbonaat en water op 40°C als de vezel hittebestendig is.',
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
type: 'title',
|
|
270
|
-
text: 'Specifieke Oplosmiddelen en Voorzorgsmaatregelen',
|
|
271
|
-
level: 2,
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
type: 'paragraph',
|
|
275
|
-
html: '<strong>Aceton</strong> is een uitzonderlijk oplosmiddel voor nagellak of lijm, maar is destructief voor <strong>acetaat</strong>. Omdat het vezels zijn die afgeleid zijn van cellulose maar chemisch behandeld, lost aceton het weefsel letterlijk op.',
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
type: 'paragraph',
|
|
279
|
-
html: '<strong>Isopropylalcohol</strong> is stabieler, maar op geverfde synthetische stoffen kan het het pigment zelf meeslepen. We raden altijd de "zoomtest" aan op een onopvallende plek voor de hoofdbehandeling.',
|
|
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 = 'textielvlekken-chemisch-protocol';
|
|
7
|
+
const title = 'Chemisch Protocol voor Textielvlekken';
|
|
8
|
+
const description =
|
|
9
|
+
'Wetenschappelijke protocollen voor vlekverwijdering op basis van vezeltype en de chemische aard van de vlek. Percarbonaat, enzymen, oplosmiddelen: de juiste methode voor elk geval.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Kan ik bleekmiddel gebruiken in plaats van percarbonaat?',
|
|
14
|
+
answer:
|
|
15
|
+
'Bleekmiddel (natriumhypochloriet) is zeer corrosief. Het tast de vezels aan, waardoor ze gelig en broos worden. Percarbonaat bleekt met actieve zuurstof en respecteert de natuurlijke moleculaire structuur.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Waarom helpt azijn tegen geurtjes?',
|
|
19
|
+
answer:
|
|
20
|
+
'Lichaamsgeuren zijn meestal alkalisch. Het azijnzuur in azijn neutraliseert ze en zet ze om in geurloze zouten die tijdens het spoelen volledig worden verwijderd.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Moet ik altijd koud water gebruiken voor bloed?',
|
|
24
|
+
answer:
|
|
25
|
+
'Ja. Warmte stolt de eiwitten in het bloed, waardoor de vlek permanent aan de vezel hecht. Koud water houdt de vlek vloeibaar en stelt enzymatische middelen in staat effectief te werken.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Wat gebeurt er als ik aceton op een kledingstuk van acetaat aanbreng?',
|
|
29
|
+
answer:
|
|
30
|
+
'Aceton lost triacetaat en acetaat op. Acetaatvezels zijn cellulose veresterd met azijnzuur en zijn volledig oplosbaar in aceton. Het resultaat is de onherstelbare vernietiging van de stof.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Identificeer het vezeltype',
|
|
37
|
+
text: 'Raadpleeg het label in het kledingstuk om te bepalen of het een natuurlijke vezel, synthetisch of een fijne vezel (wol, zijde, kasjmier) is.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Selecteer de vezel in de tool',
|
|
41
|
+
text: 'Kies het overeenkomstige materiaal in de eerste kiezer.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Selecteer het type vlek',
|
|
45
|
+
text: 'Geef aan of de vlek organisch (wijn, fruit), eiwitrijk (bloed), vet of synthetisch (inkt) is.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Pas het aangegeven protocol toe',
|
|
49
|
+
text: 'Volg de instructies voor middel, temperatuur en methode. Let speciaal op de kritieke veiligheidswaarschuwingen.',
|
|
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: 'nl',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
ui: {
|
|
91
|
+
toolTitle: 'Chemisch Vlekkenprotocol',
|
|
92
|
+
fiberLabel: '1. Vezel',
|
|
93
|
+
selectFiberPlaceholder: 'Selecteer stof...',
|
|
94
|
+
stainLabel: '2. Vlek',
|
|
95
|
+
selectStainPlaceholder: 'Wat is er gebeurd?',
|
|
96
|
+
molecularDiagnosis: 'Moleculaire Diagnose',
|
|
97
|
+
requiredAgent: 'Benodigd Middel',
|
|
98
|
+
thermalCondition: 'Thermische Conditie',
|
|
99
|
+
temperature: 'Temperatuur',
|
|
100
|
+
cleaningInstructions: 'Reinigingsinstructies',
|
|
101
|
+
criticalWarning: 'Kritieke Veiligheid',
|
|
102
|
+
criticalWarningLabel: 'LET OP',
|
|
103
|
+
technicalNote: 'Technische noot',
|
|
104
|
+
technicalNoteText:
|
|
105
|
+
'Valideer altijd de kleurvastheid op een onopvallende plek voordat je doorgaat met de volledige chemische behandeling.',
|
|
106
|
+
systemDiagnosis: 'Diagnosesysteem',
|
|
107
|
+
systemDiagnosisDesc:
|
|
108
|
+
'Stel de textielparameters in om de reinigingsroutekaart te ontvangen',
|
|
109
|
+
delicatePercarbonateWarning:
|
|
110
|
+
'RISICO OP MOLECULAIRE DEGRADATIE. Dierlijke vezels zijn zeer gevoelig voor percarbonaat. Test uitvoeren op onopvallende plek.',
|
|
111
|
+
fiberData: {
|
|
112
|
+
cotton: { name: 'Katoen', family: 'natural', isNoble: false },
|
|
113
|
+
linen: { name: 'Linnen', family: 'natural', isNoble: true },
|
|
114
|
+
wool: { name: 'Wol / Merino', family: 'natural', isNoble: true },
|
|
115
|
+
silk: { name: 'Zijde', family: 'natural', isNoble: true },
|
|
116
|
+
cashmere: { name: 'Kasjmier', 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: 'Polyester', family: 'synthetic', isNoble: false },
|
|
121
|
+
viscose: { name: 'Viscose / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
+
nylon: { name: 'Nylon (Polyamide)', family: 'synthetic', isNoble: false },
|
|
123
|
+
acrylic: { name: 'Acryl', family: 'synthetic', isNoble: false },
|
|
124
|
+
},
|
|
125
|
+
agents: {
|
|
126
|
+
percarbonate: {
|
|
127
|
+
name: 'Natriumpercarbonaat',
|
|
128
|
+
description: 'Biologisch afbreekbare zuurstofbleekmiddel. Geeft actieve zuurstof af bij het oplossen.',
|
|
129
|
+
warning: 'Vermijd op eiwitvezels (zijde, wol) in hoge concentraties.',
|
|
130
|
+
},
|
|
131
|
+
isopropyl: {
|
|
132
|
+
name: 'Isopropylalcohol',
|
|
133
|
+
description: 'Effectief oplosmiddel voor pigmenten en lichte vetten.',
|
|
134
|
+
warning: 'Kan de glans op zijde beschadigen en sommige acrylstoffen oplossen als het niet wordt verdund.',
|
|
135
|
+
},
|
|
136
|
+
acetone: {
|
|
137
|
+
name: 'Aceton',
|
|
138
|
+
description: 'Krachtig oplosmiddel voor lakken en lijmen.',
|
|
139
|
+
warning: 'VERBODEN op acetaat en triacetaat (lost de vezel op).',
|
|
140
|
+
},
|
|
141
|
+
enzyme: {
|
|
142
|
+
name: 'Enzymatisch Wasmiddel',
|
|
143
|
+
description: 'Bevat proteasen die biologische vlekken afbreken.',
|
|
144
|
+
warning: 'Gebruik met voorzichtigheid op wol en zijde (dit zijn eiwitten).',
|
|
145
|
+
},
|
|
146
|
+
vinegar: {
|
|
147
|
+
name: 'Witte Azijn',
|
|
148
|
+
description: 'Mild azijnzuur om geuren te neutraliseren en kleuren vast te leggen.',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
stains: [
|
|
152
|
+
{
|
|
153
|
+
id: 'wine',
|
|
154
|
+
name: 'Rode Wijn / Fruit',
|
|
155
|
+
protocols: {
|
|
156
|
+
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Langdurig weken' },
|
|
157
|
+
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Rechtstreekse pasta' },
|
|
158
|
+
delicate: {
|
|
159
|
+
agentId: 'vinegar',
|
|
160
|
+
temperature: 'Koud',
|
|
161
|
+
method: 'Spoelen met spuitwater en azijn',
|
|
162
|
+
notes: 'Niet wrijven',
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
id: 'blood',
|
|
168
|
+
name: 'Bloed',
|
|
169
|
+
protocols: {
|
|
170
|
+
natural: {
|
|
171
|
+
agentId: 'enzyme',
|
|
172
|
+
temperature: 'Koud',
|
|
173
|
+
method: 'Weken in zout water en daarna enzym',
|
|
174
|
+
},
|
|
175
|
+
synthetic: { agentId: 'enzyme', temperature: 'Koud', method: 'Directe applicatie' },
|
|
176
|
+
delicate: {
|
|
177
|
+
agentId: 'vinegar',
|
|
178
|
+
temperature: 'Koud',
|
|
179
|
+
method: 'Onmiddellijk spoelen, hitte vermijden',
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: 'grease',
|
|
185
|
+
name: 'Vet / Olie',
|
|
186
|
+
protocols: {
|
|
187
|
+
natural: {
|
|
188
|
+
agentId: 'isopropyl',
|
|
189
|
+
temperature: '40°C',
|
|
190
|
+
method: 'Oplossen met alcohol en dan wassen',
|
|
191
|
+
},
|
|
192
|
+
synthetic: {
|
|
193
|
+
agentId: 'isopropyl',
|
|
194
|
+
temperature: '40°C',
|
|
195
|
+
method: 'Absorberend papier eronder leggen',
|
|
196
|
+
},
|
|
197
|
+
delicate: { agentId: 'isopropyl', temperature: 'Koud', method: 'Alcohol verdunnen tot 50%' },
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
id: 'ink',
|
|
202
|
+
name: 'Inkt / Marker',
|
|
203
|
+
protocols: {
|
|
204
|
+
natural: {
|
|
205
|
+
agentId: 'isopropyl',
|
|
206
|
+
temperature: 'Omgeving',
|
|
207
|
+
method: 'Deppen van buiten naar binnen',
|
|
208
|
+
},
|
|
209
|
+
synthetic: {
|
|
210
|
+
agentId: 'isopropyl',
|
|
211
|
+
temperature: 'Omgeving',
|
|
212
|
+
method: 'Voorzichtig met verspreiding',
|
|
213
|
+
},
|
|
214
|
+
delicate: {
|
|
215
|
+
agentId: 'isopropyl',
|
|
216
|
+
temperature: 'Koud',
|
|
217
|
+
method: 'Verdunnen en testen op verborgen plek',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
seo: [
|
|
224
|
+
{
|
|
225
|
+
type: 'title',
|
|
226
|
+
text: 'De Chemie Achter Textielreiniging',
|
|
227
|
+
level: 2,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'paragraph',
|
|
231
|
+
html: 'Niet alle vlekken zijn gelijk, en niet alle vezels reageren hetzelfde op dezelfde chemische middelen. Het verschil tussen het redden van een kledingstuk en het vernietigen ervan ligt in het begrijpen van de moleculaire aard van de vlek en de vezelstructuur.',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'card',
|
|
235
|
+
title: '01: Gecontroleerde Oxidatie',
|
|
236
|
+
icon: 'mdi:atom',
|
|
237
|
+
html: '<strong>Natriumpercarbonaat</strong> geeft actieve zuurstof af die de dubbele bindingen van chromoforen (de moleculen die verantwoordelijk zijn voor de kleur van de vlek) breekt, waardoor ze kleurloos en in water oplosbaar worden. Het is de meest effectieve methode voor organische vlekken.',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: 'card',
|
|
241
|
+
title: '02: Oplosbaar maken door Oplosmiddelen',
|
|
242
|
+
icon: 'mdi:flask-outline',
|
|
243
|
+
html: 'Vlekken zoals olie of inkt zijn niet oplosbaar in water. Oplosmiddelen zoals <strong>isopropylalcohol</strong> of <strong>aceton</strong> verlagen de oppervlaktespanning en trekken de niet-polaire moleculen van de vlek aan, waardoor ze kunnen worden overgedragen op een drager.',
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
type: 'title',
|
|
247
|
+
text: 'Soevereiniteit over Vezels: Waarom het Type Uitmaakt',
|
|
248
|
+
level: 2,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
type: 'paragraph',
|
|
252
|
+
html: 'Niet alle vezels "eten" hetzelfde. <strong>Zijde en wol</strong> zijn eiwitten (fibroïne en keratine). Als je een enzymatisch wasmiddel aanbrengt dat is ontworpen om "eiwitten te eten" (zoals bloedvlekken of ei) zonder controle, zal het wasmiddel de vezel zelf gaan afbreken, waardoor de glans en de structuur van de stof worden vernietigd.',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
type: 'title',
|
|
256
|
+
text: 'Het Gevaar van Hitte',
|
|
257
|
+
level: 2,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
type: 'paragraph',
|
|
261
|
+
html: 'Een van de meest gemaakte fouten is het gebruik van warm water om een bloedvlek "zacht te maken". Chemisch gezien veroorzaakt hitte de <strong>stolling van de eiwitten</strong> van de vlek, waardoor ze permanent aan de poreuze structuur van de vezel worden gefixeerd. Eiwitvlekken moeten altijd met koud water worden behandeld.',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
type: 'tip',
|
|
265
|
+
title: 'Noodprotocol: Rode Wijn',
|
|
266
|
+
html: '<strong>A. Passieve absorptie:</strong> Deppen met absorberend papier, nooit wrijven om mechanische uitbreiding te voorkomen.<br><strong>B. Osmotische neutralisatie:</strong> Bedekken met fijn zout om de vloeistof uit de vezelkern te trekken.<br><strong>C. Chemische actie:</strong> Breng een pasta aan van percarbonaat en water op 40°C als de vezel hittebestendig is.',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
type: 'title',
|
|
270
|
+
text: 'Specifieke Oplosmiddelen en Voorzorgsmaatregelen',
|
|
271
|
+
level: 2,
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
type: 'paragraph',
|
|
275
|
+
html: '<strong>Aceton</strong> is een uitzonderlijk oplosmiddel voor nagellak of lijm, maar is destructief voor <strong>acetaat</strong>. Omdat het vezels zijn die afgeleid zijn van cellulose maar chemisch behandeld, lost aceton het weefsel letterlijk op.',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
type: 'paragraph',
|
|
279
|
+
html: '<strong>Isopropylalcohol</strong> is stabieler, maar op geverfde synthetische stoffen kan het het pigment zelf meeslepen. We raden altijd de "zoomtest" aan op een onopvallende plek voor de hoofdbehandeling.',
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
faq: faqData,
|
|
283
|
+
bibliography: bibliography,
|
|
284
|
+
howTo: howToData,
|
|
285
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
+
};
|