@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 = 'textilflecken-chemie-protokoll';
|
|
7
|
-
const title = 'Chemisches Protokoll zur Entfernung von Textilflecken';
|
|
8
|
-
const description =
|
|
9
|
-
'Wissenschaftliche Protokolle zur Fleckentfernung basierend auf Faserart und chemischer Natur des Flecks. Percarbonat, Enzyme, Lösungsmittel: Die richtige Methode für jeden Fall.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'Kann ich Bleichmittel anstelle von Percarbonat verwenden?',
|
|
14
|
-
answer:
|
|
15
|
-
'Bleichmittel (Natriumhypochlorit) ist hochgradig korrosiv. Es baut die Fasern ab, wodurch sie vergilben und brüchig werden. Percarbonat bleicht durch Aktivsauerstoff und schont dabei die natürliche Molekularstruktur.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: 'Warum hilft Essig gegen Gerüche?',
|
|
19
|
-
answer:
|
|
20
|
-
'Körpergerüche sind meist alkalisch. Die Essigsäure im Essig neutralisiert sie und wandelt sie in geruchlose Salze um, die beim Ausspülen vollständig entfernt werden.',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: 'Sollte ich bei Blut immer kaltes Wasser verwenden?',
|
|
24
|
-
answer:
|
|
25
|
-
'Ja. Hitze bringt die Blutproteine zum Gerinnen, wodurch sie sich dauerhaft an die Faser binden. Kaltes Wasser hält den Fleck in einem löslichen Zustand und ermöglicht es enzymatischen Wirkstoffen, effektiv zu arbeiten.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: 'Was passiert, wenn ich Aceton auf ein Kleidungsstück aus Acetat auftrage?',
|
|
29
|
-
answer:
|
|
30
|
-
'Aceton löst Triacetat und Acetat auf. Acetatfasern sind mit Essigsäure veresterte Cellulose und in Aceton vollständig löslich. Das Ergebnis wäre die irreversible Zerstörung des Gewebes.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Faserart identifizieren',
|
|
37
|
-
text: 'Überprüfen Sie das Etikett im Kleidungsstück, um festzustellen, ob es sich um Naturfasern, Synthetik oder Edelfasern (Wolle, Seide, Kaschmir) handelt.',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Faser im Tool auswählen',
|
|
41
|
-
text: 'Wählen Sie das entsprechende Material im ersten Auswahlmenü.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Fleckentyp auswählen',
|
|
45
|
-
text: 'Geben Sie an, ob der Fleck organisch (Wein, Obst), proteinhaltig (Blut), fettig oder synthetisch (Tinte) ist.',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Angegebenes Protokoll anwenden',
|
|
49
|
-
text: 'Folgen Sie den Anweisungen zu Wirkstoff, Temperatur und Methode. Achten Sie besonders auf die kritischen Warnhinweise.',
|
|
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: 'de',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
-
slug,
|
|
88
|
-
title,
|
|
89
|
-
description,
|
|
90
|
-
ui: {
|
|
91
|
-
toolTitle: 'Chemisches Fleckenprotokoll',
|
|
92
|
-
fiberLabel: '1. Faser',
|
|
93
|
-
selectFiberPlaceholder: 'Gewebe auswählen...',
|
|
94
|
-
stainLabel: '2. Fleck',
|
|
95
|
-
selectStainPlaceholder: 'Was ist passiert?',
|
|
96
|
-
molecularDiagnosis: 'Molekulare Diagnose',
|
|
97
|
-
requiredAgent: 'Benötigter Wirkstoff',
|
|
98
|
-
thermalCondition: 'Thermische Bedingung',
|
|
99
|
-
temperature: 'Temperatur',
|
|
100
|
-
cleaningInstructions: 'Reinigungsanweisungen',
|
|
101
|
-
criticalWarning: 'Kritische Vorsicht',
|
|
102
|
-
criticalWarningLabel: 'VORSICHT',
|
|
103
|
-
technicalNote: 'Technischer Hinweis',
|
|
104
|
-
technicalNoteText:
|
|
105
|
-
'Prüfen Sie vor der vollständigen chemischen Behandlung immer die Farbechtheit an einer unauffälligen Stelle.',
|
|
106
|
-
systemDiagnosis: 'Diagnosesystem',
|
|
107
|
-
systemDiagnosisDesc:
|
|
108
|
-
'Konfigurieren Sie die Textilparameter, um den Reinigungsleitfaden zu erhalten',
|
|
109
|
-
delicatePercarbonateWarning:
|
|
110
|
-
'RISIKO DES MOLEKULAREN ABBAUS. Tierische Fasern reagieren hochsensibel auf Percarbonat. Test an unauffälliger Stelle durchführen.',
|
|
111
|
-
fiberData: {
|
|
112
|
-
cotton: { name: 'Baumwolle', family: 'natural', isNoble: false },
|
|
113
|
-
linen: { name: 'Leinen', family: 'natural', isNoble: true },
|
|
114
|
-
wool: { name: 'Wolle / Merino', family: 'natural', isNoble: true },
|
|
115
|
-
silk: { name: 'Seide', family: 'natural', isNoble: true },
|
|
116
|
-
cashmere: { name: 'Kaschmir', family: 'natural', isNoble: true },
|
|
117
|
-
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
-
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
-
alpaca: { name: 'Alpaka', family: 'natural', isNoble: true },
|
|
120
|
-
polyester: { name: 'Polyester', family: 'synthetic', isNoble: false },
|
|
121
|
-
viscose: { name: 'Viskose / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
-
nylon: { name: 'Nylon (Polyamid)', family: 'synthetic', isNoble: false },
|
|
123
|
-
acrylic: { name: 'Acryl', family: 'synthetic', isNoble: false },
|
|
124
|
-
},
|
|
125
|
-
agents: {
|
|
126
|
-
percarbonate: {
|
|
127
|
-
name: 'Natriumpercarbonat',
|
|
128
|
-
description: 'Biologisch abbaubares Sauerstoffbleichmittel. Setzt beim Auflösen Aktivsauerstoff frei.',
|
|
129
|
-
warning: 'Bei Proteinfasern (Seide, Wolle) hohe Konzentrationen vermeiden.',
|
|
130
|
-
},
|
|
131
|
-
isopropyl: {
|
|
132
|
-
name: 'Isopropylalkohol',
|
|
133
|
-
description: 'Effektives Lösungsmittel für Pigmente und leichte Fette.',
|
|
134
|
-
warning: 'Kann bei Seide den Glanz beeinträchtigen und einige Kunststoffe lösen, wenn nicht verdünnt.',
|
|
135
|
-
},
|
|
136
|
-
acetone: {
|
|
137
|
-
name: 'Aceton',
|
|
138
|
-
description: 'Starkes Lösungsmittel für Lacke und Klebstoffe.',
|
|
139
|
-
warning: 'VERBOTEN bei Acetat und Triacetat (löst die Faser auf).',
|
|
140
|
-
},
|
|
141
|
-
enzyme: {
|
|
142
|
-
name: 'Enzymatisches Waschmittel',
|
|
143
|
-
description: 'Enthält Proteasen, die biologische Flecken aufspalten.',
|
|
144
|
-
warning: 'Mit Vorsicht bei Wolle und Seide verwenden (diese bestehen aus Protein).',
|
|
145
|
-
},
|
|
146
|
-
vinegar: {
|
|
147
|
-
name: 'Weißer Essig',
|
|
148
|
-
description: 'Milde Essigsäure zur Neutralisierung von Gerüchen und Fixierung von Farben.',
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
stains: [
|
|
152
|
-
{
|
|
153
|
-
id: 'wine',
|
|
154
|
-
name: 'Rotwein / Obst',
|
|
155
|
-
protocols: {
|
|
156
|
-
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Langes Einweichen' },
|
|
157
|
-
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Direktes Auftragen als Paste' },
|
|
158
|
-
delicate: {
|
|
159
|
-
agentId: 'vinegar',
|
|
160
|
-
temperature: 'Kalt',
|
|
161
|
-
method: 'Spülen mit Sprudelwasser und Essig',
|
|
162
|
-
notes: 'Nicht reiben',
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
id: 'blood',
|
|
168
|
-
name: 'Blut',
|
|
169
|
-
protocols: {
|
|
170
|
-
natural: {
|
|
171
|
-
agentId: 'enzyme',
|
|
172
|
-
temperature: 'Kalt',
|
|
173
|
-
method: 'Einweichen in Salzwasser, dann Enzymreiniger',
|
|
174
|
-
},
|
|
175
|
-
synthetic: { agentId: 'enzyme', temperature: 'Kalt', method: 'Direktes Auftragen' },
|
|
176
|
-
delicate: {
|
|
177
|
-
agentId: 'vinegar',
|
|
178
|
-
temperature: 'Kalt',
|
|
179
|
-
method: 'Sofortiges Ausspülen, Hitze vermeiden',
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
id: 'grease',
|
|
185
|
-
name: 'Fett / Öl',
|
|
186
|
-
protocols: {
|
|
187
|
-
natural: {
|
|
188
|
-
agentId: 'isopropyl',
|
|
189
|
-
temperature: '40°C',
|
|
190
|
-
method: 'Mit Alkohol lösen, dann waschen',
|
|
191
|
-
},
|
|
192
|
-
synthetic: {
|
|
193
|
-
agentId: 'isopropyl',
|
|
194
|
-
temperature: '40°C',
|
|
195
|
-
method: 'Saugfähiges Papier unterlegen',
|
|
196
|
-
},
|
|
197
|
-
delicate: { agentId: 'isopropyl', temperature: 'Kalt', method: 'Alkohol zu 50% verdünnen' },
|
|
198
|
-
},
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
id: 'ink',
|
|
202
|
-
name: 'Tinte / Marker',
|
|
203
|
-
protocols: {
|
|
204
|
-
natural: {
|
|
205
|
-
agentId: 'isopropyl',
|
|
206
|
-
temperature: 'Raumtemp.',
|
|
207
|
-
method: 'Von außen nach innen abtupfen',
|
|
208
|
-
},
|
|
209
|
-
synthetic: {
|
|
210
|
-
agentId: 'isopropyl',
|
|
211
|
-
temperature: 'Raumtemp.',
|
|
212
|
-
method: 'Vorsicht vor Ausbreitung',
|
|
213
|
-
},
|
|
214
|
-
delicate: {
|
|
215
|
-
agentId: 'isopropyl',
|
|
216
|
-
temperature: 'Kalt',
|
|
217
|
-
method: 'Verdünnen und an verdeckter Stelle testen',
|
|
218
|
-
},
|
|
219
|
-
},
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
},
|
|
223
|
-
seo: [
|
|
224
|
-
{
|
|
225
|
-
type: 'title',
|
|
226
|
-
text: 'Die Chemie hinter der Textilreinigung',
|
|
227
|
-
level: 2,
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
type: 'paragraph',
|
|
231
|
-
html: 'Nicht alle Flecken sind gleich, und nicht alle Fasern reagieren gleich auf dieselben chemischen Wirkstoffe. Der Unterschied zwischen der Rettung eines Kleidungsstücks und seiner Zerstörung liegt im Verständnis der molekularen Natur des Flecks und der Faserstruktur.',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
type: 'card',
|
|
235
|
-
title: '01: Kontrollierte Oxidation',
|
|
236
|
-
icon: 'mdi:atom',
|
|
237
|
-
html: '<strong>Natriumpercarbonat</strong> setzt Aktivsauerstoff frei, der die Doppelbindungen der Chromophore (die Moleküle, die für die Farbe des Flecks verantwortlich sind) aufbricht, wodurch sie farblos und wasserlöslich werden. Es ist die effektivste Methode für organische Flecken.',
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
type: 'card',
|
|
241
|
-
title: '02: Lösung durch Lösungsmittel',
|
|
242
|
-
icon: 'mdi:flask-outline',
|
|
243
|
-
html: 'Flecken wie Öl oder Tinte sind nicht wasserlöslich. Lösungsmittel wie <strong>Isopropylalkohol</strong> oder <strong>Aceton</strong> verringern die Oberflächenspannung und ziehen die unpolaren Moleküle des Flecks an, sodass sie auf ein Trägermedium übertragen werden können.',
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
type: 'title',
|
|
247
|
-
text: 'Faserhoheit: Warum die Faserart entscheidend ist',
|
|
248
|
-
level: 2,
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
type: 'paragraph',
|
|
252
|
-
html: 'Nicht alle Fasern "verdauen" gleich. <strong>Seide und Wolle</strong> bestehen aus Proteinen (Fibroin und Keratin). Wenn Sie ein enzymatisches Waschmittel verwenden, das darauf ausgelegt ist, Proteine abzubauen (wie bei Blut oder Ei), wird das Waschmittel unkontrolliert anfangen, die Faser selbst anzugreifen und Glanz sowie Struktur des Gewebes zu zerstören.',
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
type: 'title',
|
|
256
|
-
text: 'Die Gefahr der Hitze',
|
|
257
|
-
level: 2,
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
type: 'paragraph',
|
|
261
|
-
html: 'Einer der häufigsten Fehler ist die Verwendung von heißem Wasser, um einen Blutfleck "aufzuweichen". Chemisch gesehen führt Hitze zur <strong>Koagulation der Proteine</strong> im Fleck, wodurch sie sich dauerhaft in der porösen Struktur der Faser festsetzen. Proteinflecken müssen immer mit kaltem Wasser behandelt werden.',
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
type: 'tip',
|
|
265
|
-
title: 'Notfallprotokoll: Rotwein',
|
|
266
|
-
html: '<strong>A. Passive Absorption:</strong> Mit saugfähigem Papier abtupfen, niemals reiben, um mechanische Ausbreitung zu verhindern.<br><strong>B. Osmotische Neutralisierung:</strong> Mit feinem Salz bedecken, um die Flüssigkeit aus dem Faserkern zu ziehen.<br><strong>C. Chemische Aktion:</strong> Eine Paste aus Percarbonat und Wasser bei 40°C auftragen, wenn die Faser hitzebeständig ist.',
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
type: 'title',
|
|
270
|
-
text: 'Spezifische Lösungsmittel und Vorsichtsmaßnahmen',
|
|
271
|
-
level: 2,
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
type: 'paragraph',
|
|
275
|
-
html: '<strong>Aceton</strong> ist ein hervorragendes Lösungsmittel für Nagellack oder Klebstoff, aber zerstörerisch für <strong>Acetat</strong>. Da es sich um aus Cellulose gewonnene, aber chemisch behandelte Fasern handelt, löst Aceton das Gewebe buchstäblich auf.',
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
type: 'paragraph',
|
|
279
|
-
html: '<strong>Isopropylalkohol</strong> ist stabiler, kann aber bei gefärbten Synthetikfasern die Pigmente mitreißen. Wir empfehlen vor der Hauptbehandlung immer den "Saum-Test" an einer unauffälligen Stelle.',
|
|
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 = 'textilflecken-chemie-protokoll';
|
|
7
|
+
const title = 'Chemisches Protokoll zur Entfernung von Textilflecken';
|
|
8
|
+
const description =
|
|
9
|
+
'Wissenschaftliche Protokolle zur Fleckentfernung basierend auf Faserart und chemischer Natur des Flecks. Percarbonat, Enzyme, Lösungsmittel: Die richtige Methode für jeden Fall.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Kann ich Bleichmittel anstelle von Percarbonat verwenden?',
|
|
14
|
+
answer:
|
|
15
|
+
'Bleichmittel (Natriumhypochlorit) ist hochgradig korrosiv. Es baut die Fasern ab, wodurch sie vergilben und brüchig werden. Percarbonat bleicht durch Aktivsauerstoff und schont dabei die natürliche Molekularstruktur.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Warum hilft Essig gegen Gerüche?',
|
|
19
|
+
answer:
|
|
20
|
+
'Körpergerüche sind meist alkalisch. Die Essigsäure im Essig neutralisiert sie und wandelt sie in geruchlose Salze um, die beim Ausspülen vollständig entfernt werden.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Sollte ich bei Blut immer kaltes Wasser verwenden?',
|
|
24
|
+
answer:
|
|
25
|
+
'Ja. Hitze bringt die Blutproteine zum Gerinnen, wodurch sie sich dauerhaft an die Faser binden. Kaltes Wasser hält den Fleck in einem löslichen Zustand und ermöglicht es enzymatischen Wirkstoffen, effektiv zu arbeiten.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Was passiert, wenn ich Aceton auf ein Kleidungsstück aus Acetat auftrage?',
|
|
29
|
+
answer:
|
|
30
|
+
'Aceton löst Triacetat und Acetat auf. Acetatfasern sind mit Essigsäure veresterte Cellulose und in Aceton vollständig löslich. Das Ergebnis wäre die irreversible Zerstörung des Gewebes.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Faserart identifizieren',
|
|
37
|
+
text: 'Überprüfen Sie das Etikett im Kleidungsstück, um festzustellen, ob es sich um Naturfasern, Synthetik oder Edelfasern (Wolle, Seide, Kaschmir) handelt.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Faser im Tool auswählen',
|
|
41
|
+
text: 'Wählen Sie das entsprechende Material im ersten Auswahlmenü.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Fleckentyp auswählen',
|
|
45
|
+
text: 'Geben Sie an, ob der Fleck organisch (Wein, Obst), proteinhaltig (Blut), fettig oder synthetisch (Tinte) ist.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Angegebenes Protokoll anwenden',
|
|
49
|
+
text: 'Folgen Sie den Anweisungen zu Wirkstoff, Temperatur und Methode. Achten Sie besonders auf die kritischen Warnhinweise.',
|
|
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: 'de',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
ui: {
|
|
91
|
+
toolTitle: 'Chemisches Fleckenprotokoll',
|
|
92
|
+
fiberLabel: '1. Faser',
|
|
93
|
+
selectFiberPlaceholder: 'Gewebe auswählen...',
|
|
94
|
+
stainLabel: '2. Fleck',
|
|
95
|
+
selectStainPlaceholder: 'Was ist passiert?',
|
|
96
|
+
molecularDiagnosis: 'Molekulare Diagnose',
|
|
97
|
+
requiredAgent: 'Benötigter Wirkstoff',
|
|
98
|
+
thermalCondition: 'Thermische Bedingung',
|
|
99
|
+
temperature: 'Temperatur',
|
|
100
|
+
cleaningInstructions: 'Reinigungsanweisungen',
|
|
101
|
+
criticalWarning: 'Kritische Vorsicht',
|
|
102
|
+
criticalWarningLabel: 'VORSICHT',
|
|
103
|
+
technicalNote: 'Technischer Hinweis',
|
|
104
|
+
technicalNoteText:
|
|
105
|
+
'Prüfen Sie vor der vollständigen chemischen Behandlung immer die Farbechtheit an einer unauffälligen Stelle.',
|
|
106
|
+
systemDiagnosis: 'Diagnosesystem',
|
|
107
|
+
systemDiagnosisDesc:
|
|
108
|
+
'Konfigurieren Sie die Textilparameter, um den Reinigungsleitfaden zu erhalten',
|
|
109
|
+
delicatePercarbonateWarning:
|
|
110
|
+
'RISIKO DES MOLEKULAREN ABBAUS. Tierische Fasern reagieren hochsensibel auf Percarbonat. Test an unauffälliger Stelle durchführen.',
|
|
111
|
+
fiberData: {
|
|
112
|
+
cotton: { name: 'Baumwolle', family: 'natural', isNoble: false },
|
|
113
|
+
linen: { name: 'Leinen', family: 'natural', isNoble: true },
|
|
114
|
+
wool: { name: 'Wolle / Merino', family: 'natural', isNoble: true },
|
|
115
|
+
silk: { name: 'Seide', family: 'natural', isNoble: true },
|
|
116
|
+
cashmere: { name: 'Kaschmir', family: 'natural', isNoble: true },
|
|
117
|
+
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
+
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
+
alpaca: { name: 'Alpaka', family: 'natural', isNoble: true },
|
|
120
|
+
polyester: { name: 'Polyester', family: 'synthetic', isNoble: false },
|
|
121
|
+
viscose: { name: 'Viskose / Rayon', family: 'artificial', isNoble: false },
|
|
122
|
+
nylon: { name: 'Nylon (Polyamid)', family: 'synthetic', isNoble: false },
|
|
123
|
+
acrylic: { name: 'Acryl', family: 'synthetic', isNoble: false },
|
|
124
|
+
},
|
|
125
|
+
agents: {
|
|
126
|
+
percarbonate: {
|
|
127
|
+
name: 'Natriumpercarbonat',
|
|
128
|
+
description: 'Biologisch abbaubares Sauerstoffbleichmittel. Setzt beim Auflösen Aktivsauerstoff frei.',
|
|
129
|
+
warning: 'Bei Proteinfasern (Seide, Wolle) hohe Konzentrationen vermeiden.',
|
|
130
|
+
},
|
|
131
|
+
isopropyl: {
|
|
132
|
+
name: 'Isopropylalkohol',
|
|
133
|
+
description: 'Effektives Lösungsmittel für Pigmente und leichte Fette.',
|
|
134
|
+
warning: 'Kann bei Seide den Glanz beeinträchtigen und einige Kunststoffe lösen, wenn nicht verdünnt.',
|
|
135
|
+
},
|
|
136
|
+
acetone: {
|
|
137
|
+
name: 'Aceton',
|
|
138
|
+
description: 'Starkes Lösungsmittel für Lacke und Klebstoffe.',
|
|
139
|
+
warning: 'VERBOTEN bei Acetat und Triacetat (löst die Faser auf).',
|
|
140
|
+
},
|
|
141
|
+
enzyme: {
|
|
142
|
+
name: 'Enzymatisches Waschmittel',
|
|
143
|
+
description: 'Enthält Proteasen, die biologische Flecken aufspalten.',
|
|
144
|
+
warning: 'Mit Vorsicht bei Wolle und Seide verwenden (diese bestehen aus Protein).',
|
|
145
|
+
},
|
|
146
|
+
vinegar: {
|
|
147
|
+
name: 'Weißer Essig',
|
|
148
|
+
description: 'Milde Essigsäure zur Neutralisierung von Gerüchen und Fixierung von Farben.',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
stains: [
|
|
152
|
+
{
|
|
153
|
+
id: 'wine',
|
|
154
|
+
name: 'Rotwein / Obst',
|
|
155
|
+
protocols: {
|
|
156
|
+
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Langes Einweichen' },
|
|
157
|
+
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Direktes Auftragen als Paste' },
|
|
158
|
+
delicate: {
|
|
159
|
+
agentId: 'vinegar',
|
|
160
|
+
temperature: 'Kalt',
|
|
161
|
+
method: 'Spülen mit Sprudelwasser und Essig',
|
|
162
|
+
notes: 'Nicht reiben',
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
id: 'blood',
|
|
168
|
+
name: 'Blut',
|
|
169
|
+
protocols: {
|
|
170
|
+
natural: {
|
|
171
|
+
agentId: 'enzyme',
|
|
172
|
+
temperature: 'Kalt',
|
|
173
|
+
method: 'Einweichen in Salzwasser, dann Enzymreiniger',
|
|
174
|
+
},
|
|
175
|
+
synthetic: { agentId: 'enzyme', temperature: 'Kalt', method: 'Direktes Auftragen' },
|
|
176
|
+
delicate: {
|
|
177
|
+
agentId: 'vinegar',
|
|
178
|
+
temperature: 'Kalt',
|
|
179
|
+
method: 'Sofortiges Ausspülen, Hitze vermeiden',
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: 'grease',
|
|
185
|
+
name: 'Fett / Öl',
|
|
186
|
+
protocols: {
|
|
187
|
+
natural: {
|
|
188
|
+
agentId: 'isopropyl',
|
|
189
|
+
temperature: '40°C',
|
|
190
|
+
method: 'Mit Alkohol lösen, dann waschen',
|
|
191
|
+
},
|
|
192
|
+
synthetic: {
|
|
193
|
+
agentId: 'isopropyl',
|
|
194
|
+
temperature: '40°C',
|
|
195
|
+
method: 'Saugfähiges Papier unterlegen',
|
|
196
|
+
},
|
|
197
|
+
delicate: { agentId: 'isopropyl', temperature: 'Kalt', method: 'Alkohol zu 50% verdünnen' },
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
id: 'ink',
|
|
202
|
+
name: 'Tinte / Marker',
|
|
203
|
+
protocols: {
|
|
204
|
+
natural: {
|
|
205
|
+
agentId: 'isopropyl',
|
|
206
|
+
temperature: 'Raumtemp.',
|
|
207
|
+
method: 'Von außen nach innen abtupfen',
|
|
208
|
+
},
|
|
209
|
+
synthetic: {
|
|
210
|
+
agentId: 'isopropyl',
|
|
211
|
+
temperature: 'Raumtemp.',
|
|
212
|
+
method: 'Vorsicht vor Ausbreitung',
|
|
213
|
+
},
|
|
214
|
+
delicate: {
|
|
215
|
+
agentId: 'isopropyl',
|
|
216
|
+
temperature: 'Kalt',
|
|
217
|
+
method: 'Verdünnen und an verdeckter Stelle testen',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
seo: [
|
|
224
|
+
{
|
|
225
|
+
type: 'title',
|
|
226
|
+
text: 'Die Chemie hinter der Textilreinigung',
|
|
227
|
+
level: 2,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'paragraph',
|
|
231
|
+
html: 'Nicht alle Flecken sind gleich, und nicht alle Fasern reagieren gleich auf dieselben chemischen Wirkstoffe. Der Unterschied zwischen der Rettung eines Kleidungsstücks und seiner Zerstörung liegt im Verständnis der molekularen Natur des Flecks und der Faserstruktur.',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'card',
|
|
235
|
+
title: '01: Kontrollierte Oxidation',
|
|
236
|
+
icon: 'mdi:atom',
|
|
237
|
+
html: '<strong>Natriumpercarbonat</strong> setzt Aktivsauerstoff frei, der die Doppelbindungen der Chromophore (die Moleküle, die für die Farbe des Flecks verantwortlich sind) aufbricht, wodurch sie farblos und wasserlöslich werden. Es ist die effektivste Methode für organische Flecken.',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: 'card',
|
|
241
|
+
title: '02: Lösung durch Lösungsmittel',
|
|
242
|
+
icon: 'mdi:flask-outline',
|
|
243
|
+
html: 'Flecken wie Öl oder Tinte sind nicht wasserlöslich. Lösungsmittel wie <strong>Isopropylalkohol</strong> oder <strong>Aceton</strong> verringern die Oberflächenspannung und ziehen die unpolaren Moleküle des Flecks an, sodass sie auf ein Trägermedium übertragen werden können.',
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
type: 'title',
|
|
247
|
+
text: 'Faserhoheit: Warum die Faserart entscheidend ist',
|
|
248
|
+
level: 2,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
type: 'paragraph',
|
|
252
|
+
html: 'Nicht alle Fasern "verdauen" gleich. <strong>Seide und Wolle</strong> bestehen aus Proteinen (Fibroin und Keratin). Wenn Sie ein enzymatisches Waschmittel verwenden, das darauf ausgelegt ist, Proteine abzubauen (wie bei Blut oder Ei), wird das Waschmittel unkontrolliert anfangen, die Faser selbst anzugreifen und Glanz sowie Struktur des Gewebes zu zerstören.',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
type: 'title',
|
|
256
|
+
text: 'Die Gefahr der Hitze',
|
|
257
|
+
level: 2,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
type: 'paragraph',
|
|
261
|
+
html: 'Einer der häufigsten Fehler ist die Verwendung von heißem Wasser, um einen Blutfleck "aufzuweichen". Chemisch gesehen führt Hitze zur <strong>Koagulation der Proteine</strong> im Fleck, wodurch sie sich dauerhaft in der porösen Struktur der Faser festsetzen. Proteinflecken müssen immer mit kaltem Wasser behandelt werden.',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
type: 'tip',
|
|
265
|
+
title: 'Notfallprotokoll: Rotwein',
|
|
266
|
+
html: '<strong>A. Passive Absorption:</strong> Mit saugfähigem Papier abtupfen, niemals reiben, um mechanische Ausbreitung zu verhindern.<br><strong>B. Osmotische Neutralisierung:</strong> Mit feinem Salz bedecken, um die Flüssigkeit aus dem Faserkern zu ziehen.<br><strong>C. Chemische Aktion:</strong> Eine Paste aus Percarbonat und Wasser bei 40°C auftragen, wenn die Faser hitzebeständig ist.',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
type: 'title',
|
|
270
|
+
text: 'Spezifische Lösungsmittel und Vorsichtsmaßnahmen',
|
|
271
|
+
level: 2,
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
type: 'paragraph',
|
|
275
|
+
html: '<strong>Aceton</strong> ist ein hervorragendes Lösungsmittel für Nagellack oder Klebstoff, aber zerstörerisch für <strong>Acetat</strong>. Da es sich um aus Cellulose gewonnene, aber chemisch behandelte Fasern handelt, löst Aceton das Gewebe buchstäblich auf.',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
type: 'paragraph',
|
|
279
|
+
html: '<strong>Isopropylalkohol</strong> ist stabiler, kann aber bei gefärbten Synthetikfasern die Pigmente mitreißen. Wir empfehlen vor der Hauptbehandlung immer den "Saum-Test" an einer unauffälligen Stelle.',
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
faq: faqData,
|
|
283
|
+
bibliography: bibliography,
|
|
284
|
+
howTo: howToData,
|
|
285
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
+
};
|