@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,215 +1,215 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { FiberPrepUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'preparation-fibres-teinture-naturelle';
|
|
7
|
-
const title = 'Préparation des Fibres pour la Teinture Naturelle';
|
|
8
|
-
const description =
|
|
9
|
-
'Calculateur WOF, protocoles de mordançage et rampes thermiques pour préparer la laine, la soie et le coton avant la teinture naturelle.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'Qu\'est-ce que le WOF (Weight of Fiber) ?',
|
|
14
|
-
answer:
|
|
15
|
-
'Le WOF est le système standard pour calculer la quantité de pigment ou de mordant nécessaire. Il se base sur le poids sec de la fibre. Par exemple, 100% de WOF d\'écorces d\'oignon pour 100g de laine signifie que vous avez besoin de 100g d\'écorces d\'oignon.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: 'Pourquoi le mordançage est-il nécessaire ?',
|
|
19
|
-
answer:
|
|
20
|
-
'Le mordant (comme l\'alun) agit comme un pont chimique entre la fibre textile et le pigment naturel. Sans lui, la plupart des teintures ne se fixeraient pas et disparaîtraient au premier lavage (faible solidité à la lumière et au frottement).',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: 'Quelle est la différence entre préparer des fibres animales et végétales ?',
|
|
24
|
-
answer:
|
|
25
|
-
'Les fibres animales (protéiques comme la laine) acceptent très bien l\'alun seul. Les fibres végétales (cellulosiques comme le coton ou le lin) nécessitent une étape préalable de tanins pour "tromper" la fibre et lui faire accepter le mordant métallique.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: 'Qu\'est-ce que la rampe thermique en teinture ?',
|
|
29
|
-
answer:
|
|
30
|
-
'C\'est l\'augmentation graduelle de la température (env. 1-2°C par minute) du bain de teinture. C\'est crucial pour éviter le choc thermique, notamment avec la laine, qui peut feutrer ou rétrécir si les changements de température sont brusques.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Nettoyage et dégraissage',
|
|
37
|
-
text: 'Lavez la fibre avec un détergent neutre pour éliminer les huiles, cires ou amidons industriels qui empêchent le mordant de pénétrer uniformément.',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Peser la fibre sèche',
|
|
41
|
-
text: 'Obtenez le poids exact du matériau sec. Cette valeur est la base de tous les calculs WOF (Weight of Fiber).',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Calcul et bain de mordant',
|
|
45
|
-
text: 'Dissolvez le mordant (ex. alun de potassium à 15% WOF) dans l\'eau chaude et immergez la fibre, en maintenant une température constante selon le protocole.',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Maturation et rinçage',
|
|
49
|
-
text: 'Laissez reposer la fibre mordancée (de préférence 24h) pour que le métal se fixe profondément avant de passer au bain de teinture définitif.',
|
|
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: 'fr',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export const content: ToolLocaleContent<FiberPrepUI> = {
|
|
87
|
-
slug,
|
|
88
|
-
title,
|
|
89
|
-
description,
|
|
90
|
-
faq: faqData,
|
|
91
|
-
bibliography: bibliography,
|
|
92
|
-
howTo: howToData,
|
|
93
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
94
|
-
seo: [
|
|
95
|
-
{
|
|
96
|
-
type: 'title',
|
|
97
|
-
text: 'La Science derrière le Mordançage',
|
|
98
|
-
level: 2,
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
type: 'paragraph',
|
|
102
|
-
html: 'Préparer une fibre pour la teinture n\'est pas simplement la laver. C\'est un processus d\'ingénierie chimique au niveau moléculaire appelé mordançage. Le mot vient du latin <i>mordere</i> (mordre), et sa fonction est d\'agir comme un pont chimique entre la fibre et le pigment. Sans ce pont, la plupart des teintures naturelles se laveraient simplement au premier rinçage.',
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
type: 'card',
|
|
106
|
-
title: 'Concept Clé',
|
|
107
|
-
icon: 'mdi:molecule',
|
|
108
|
-
html: 'Le mordant possède des valences disponibles qui se fixent simultanément aux polymères de la fibre et à la molécule colorante.',
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
type: 'title',
|
|
112
|
-
text: 'Différenciation des Fibres',
|
|
113
|
-
level: 2,
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
type: 'card',
|
|
117
|
-
title: 'Fibres Protéiques: Laine et Soie',
|
|
118
|
-
icon: 'mdi:sheep',
|
|
119
|
-
html: 'Ces fibres sont composées de chaînes d\'acides aminés avec une affinité naturelle élevée pour les métaux. La chaleur ouvre les écailles de la fibre permettant aux sels d\'alun de pénétrer profondément. La <strong>Crème de Tartre</strong> est vitale pour maintenir le pH acide qui préserve la douceur.',
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
type: 'card',
|
|
123
|
-
title: 'Fibres Cellulosiques: Coton et Lin',
|
|
124
|
-
icon: 'mdi:leaf',
|
|
125
|
-
html: 'La cellulose n\'a pas de sites de liaison facilement disponibles. C\'est pourquoi nous utilisons le <strong>protocole en deux étapes</strong>: d\'abord des tanins qui se fixent à la cellulose, puis l\'alun se fixe à ces tanins. Sans ce pré-traitement, la couleur sera pâle et peu résistante au lavage.',
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
type: 'title',
|
|
129
|
-
text: 'Contrôle du Bain: WOF, Température et pH',
|
|
130
|
-
level: 2,
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
type: 'paragraph',
|
|
134
|
-
html: 'Pour des résultats professionnels et reproductibles, le concept de <strong>WOF (Weight of Fabric)</strong> est la loi. Tout se mesure en pourcentage du poids sec de la fibre. Un excès de mordant peut saturer la fibre en la laissant rugueuse ou avec des dépôts métalliques qui altèrent la couleur finale.',
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
type: 'tip',
|
|
138
|
-
title: 'La Rampe Thermique',
|
|
139
|
-
html: 'La chaleur agit comme catalyseur, accélérant la réaction chimique. Cependant, un changement brusque de température dans la laine peut provoquer que les écailles s\'accrochent définitivement, résultant en un tissu feutré et rétréci.',
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
type: 'tip',
|
|
143
|
-
title: 'Le Facteur pH',
|
|
144
|
-
html: 'De nombreux teintures naturelles sont des indicateurs de pH vivants. Le pH influence la solubilité des sels et la conservation de la fibre. La soie peut perdre son éclat si le bain est trop alcalin. Ajuster le pH avec de l\'acide citrique ou du carbonate de calcium est fondamental.',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
type: 'title',
|
|
148
|
-
text: 'Substances et Sécurité',
|
|
149
|
-
level: 2,
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
type: 'card',
|
|
153
|
-
title: 'Alun de Potassium',
|
|
154
|
-
icon: 'mdi:bottle-tonic-skull',
|
|
155
|
-
html: 'Mordant universel, incolore et très efficace. La référence pour les fibres protéiques.',
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
type: 'card',
|
|
159
|
-
title: 'Crème de Tartre',
|
|
160
|
-
icon: 'mdi:spoon-sugar',
|
|
161
|
-
html: 'Assistant qui améliore la fixation et la douceur des fibres animales. Maintient le pH acide.',
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
type: 'tip',
|
|
165
|
-
title: 'Protocole de Sécurité',
|
|
166
|
-
html: 'Utilisez des casseroles exclusivement pour la teinture, jamais pour la préparation alimentaire.<br>Portez des gants et un masque lors de la manipulation de mordants en poudre.<br>Assurez une ventilation constante pour éviter l\'accumulation de vapeurs.',
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
ui: {
|
|
170
|
-
profileTitle: 'Sélection du Profil',
|
|
171
|
-
profileDesc: 'Le protocole chimique se divise selon l\'origine moléculaire de la fibre',
|
|
172
|
-
proteinTitle: 'Fibres Protéiques',
|
|
173
|
-
proteinOrigin: 'Origine Animale',
|
|
174
|
-
proteinDesc: 'Laine, soie, alpaga, mohair ou cachemire. Nécessitent des températures contrôlées et un pH acide.',
|
|
175
|
-
cellulosicTitle: 'Fibres Cellulosiques',
|
|
176
|
-
cellulosicOrigin: 'Origine Végétale',
|
|
177
|
-
cellulosicDesc: 'Coton, lin, chanvre ou jute. Nécessitent un pré-mordançage aux tanins pour fixer le pigment.',
|
|
178
|
-
wofTitle: 'Calculateur WOF',
|
|
179
|
-
weightLabel: 'Poids du Vêtement Sec (g)',
|
|
180
|
-
weightUnit: 'g',
|
|
181
|
-
wofEmptyMsg: 'Sélectionnez un profil pour activer les calculs',
|
|
182
|
-
alumLabel: 'Alun',
|
|
183
|
-
cremLabel: 'Crème de Tartre',
|
|
184
|
-
ironLabel: 'Fer (Attention)',
|
|
185
|
-
rampTitle: 'Rampe Thermique',
|
|
186
|
-
rampEmptyTitle: 'En attente de sélection',
|
|
187
|
-
rampEmptyDesc: 'Choisissez une fibre pour voir le cycle thermique',
|
|
188
|
-
phTitle: 'Stabilisateur de pH',
|
|
189
|
-
phDesc: 'Facteur critique pour la saturation de la couleur',
|
|
190
|
-
phVolumeLabel: 'Volume du Bain (L)',
|
|
191
|
-
phSliderLabel: 'pH Actuel',
|
|
192
|
-
phAcidLabel: 'Acide (1)',
|
|
193
|
-
phAlkalineLabel: 'Alcalin (14)',
|
|
194
|
-
phEmptyMsg: 'Sélectionnez un profil pour activer le stabilisateur',
|
|
195
|
-
phStrings: {
|
|
196
|
-
optimal: 'pH optimal',
|
|
197
|
-
raisePrefix: 'Ajouter Carbonate de Calcium ou Soude. Env.',
|
|
198
|
-
raiseSuffix: 'g pour monter à',
|
|
199
|
-
lowerPrefix: 'Ajouter Acide Citrique ou Vinaigre. Env.',
|
|
200
|
-
lowerSuffix: 'ml pour descendre à',
|
|
201
|
-
},
|
|
202
|
-
proteinFibers: [
|
|
203
|
-
{ id: 'wool', name: 'Laine / Mérinos', icon: 'mdi:sheep' },
|
|
204
|
-
{ id: 'silk', name: 'Soie', icon: 'mdi:ticket-percent' },
|
|
205
|
-
{ id: 'cashmere', name: 'Cachemire', icon: 'mdi:crown' },
|
|
206
|
-
{ id: 'mohair', name: 'Mohair', icon: 'mdi:shimmer' },
|
|
207
|
-
{ id: 'angora', name: 'Angora', icon: 'mdi:rabbit' },
|
|
208
|
-
{ id: 'alpaca', name: 'Alpaga', icon: 'mdi:image-filter-hdr' },
|
|
209
|
-
],
|
|
210
|
-
cellulosicFibers: [
|
|
211
|
-
{ id: 'cotton', name: 'Coton', icon: 'mdi:tshirt-crew' },
|
|
212
|
-
{ id: 'linen', name: 'Lin', icon: 'mdi:leaf' },
|
|
213
|
-
],
|
|
214
|
-
},
|
|
215
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { FiberPrepUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'preparation-fibres-teinture-naturelle';
|
|
7
|
+
const title = 'Préparation des Fibres pour la Teinture Naturelle';
|
|
8
|
+
const description =
|
|
9
|
+
'Calculateur WOF, protocoles de mordançage et rampes thermiques pour préparer la laine, la soie et le coton avant la teinture naturelle.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'Qu\'est-ce que le WOF (Weight of Fiber) ?',
|
|
14
|
+
answer:
|
|
15
|
+
'Le WOF est le système standard pour calculer la quantité de pigment ou de mordant nécessaire. Il se base sur le poids sec de la fibre. Par exemple, 100% de WOF d\'écorces d\'oignon pour 100g de laine signifie que vous avez besoin de 100g d\'écorces d\'oignon.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Pourquoi le mordançage est-il nécessaire ?',
|
|
19
|
+
answer:
|
|
20
|
+
'Le mordant (comme l\'alun) agit comme un pont chimique entre la fibre textile et le pigment naturel. Sans lui, la plupart des teintures ne se fixeraient pas et disparaîtraient au premier lavage (faible solidité à la lumière et au frottement).',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Quelle est la différence entre préparer des fibres animales et végétales ?',
|
|
24
|
+
answer:
|
|
25
|
+
'Les fibres animales (protéiques comme la laine) acceptent très bien l\'alun seul. Les fibres végétales (cellulosiques comme le coton ou le lin) nécessitent une étape préalable de tanins pour "tromper" la fibre et lui faire accepter le mordant métallique.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'Qu\'est-ce que la rampe thermique en teinture ?',
|
|
29
|
+
answer:
|
|
30
|
+
'C\'est l\'augmentation graduelle de la température (env. 1-2°C par minute) du bain de teinture. C\'est crucial pour éviter le choc thermique, notamment avec la laine, qui peut feutrer ou rétrécir si les changements de température sont brusques.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Nettoyage et dégraissage',
|
|
37
|
+
text: 'Lavez la fibre avec un détergent neutre pour éliminer les huiles, cires ou amidons industriels qui empêchent le mordant de pénétrer uniformément.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Peser la fibre sèche',
|
|
41
|
+
text: 'Obtenez le poids exact du matériau sec. Cette valeur est la base de tous les calculs WOF (Weight of Fiber).',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Calcul et bain de mordant',
|
|
45
|
+
text: 'Dissolvez le mordant (ex. alun de potassium à 15% WOF) dans l\'eau chaude et immergez la fibre, en maintenant une température constante selon le protocole.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Maturation et rinçage',
|
|
49
|
+
text: 'Laissez reposer la fibre mordancée (de préférence 24h) pour que le métal se fixe profondément avant de passer au bain de teinture définitif.',
|
|
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: 'fr',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<FiberPrepUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliography: bibliography,
|
|
92
|
+
howTo: howToData,
|
|
93
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
94
|
+
seo: [
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'La Science derrière le Mordançage',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: 'Préparer une fibre pour la teinture n\'est pas simplement la laver. C\'est un processus d\'ingénierie chimique au niveau moléculaire appelé mordançage. Le mot vient du latin <i>mordere</i> (mordre), et sa fonction est d\'agir comme un pont chimique entre la fibre et le pigment. Sans ce pont, la plupart des teintures naturelles se laveraient simplement au premier rinçage.',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'card',
|
|
106
|
+
title: 'Concept Clé',
|
|
107
|
+
icon: 'mdi:molecule',
|
|
108
|
+
html: 'Le mordant possède des valences disponibles qui se fixent simultanément aux polymères de la fibre et à la molécule colorante.',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'title',
|
|
112
|
+
text: 'Différenciation des Fibres',
|
|
113
|
+
level: 2,
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'card',
|
|
117
|
+
title: 'Fibres Protéiques: Laine et Soie',
|
|
118
|
+
icon: 'mdi:sheep',
|
|
119
|
+
html: 'Ces fibres sont composées de chaînes d\'acides aminés avec une affinité naturelle élevée pour les métaux. La chaleur ouvre les écailles de la fibre permettant aux sels d\'alun de pénétrer profondément. La <strong>Crème de Tartre</strong> est vitale pour maintenir le pH acide qui préserve la douceur.',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'card',
|
|
123
|
+
title: 'Fibres Cellulosiques: Coton et Lin',
|
|
124
|
+
icon: 'mdi:leaf',
|
|
125
|
+
html: 'La cellulose n\'a pas de sites de liaison facilement disponibles. C\'est pourquoi nous utilisons le <strong>protocole en deux étapes</strong>: d\'abord des tanins qui se fixent à la cellulose, puis l\'alun se fixe à ces tanins. Sans ce pré-traitement, la couleur sera pâle et peu résistante au lavage.',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type: 'title',
|
|
129
|
+
text: 'Contrôle du Bain: WOF, Température et pH',
|
|
130
|
+
level: 2,
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'paragraph',
|
|
134
|
+
html: 'Pour des résultats professionnels et reproductibles, le concept de <strong>WOF (Weight of Fabric)</strong> est la loi. Tout se mesure en pourcentage du poids sec de la fibre. Un excès de mordant peut saturer la fibre en la laissant rugueuse ou avec des dépôts métalliques qui altèrent la couleur finale.',
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: 'tip',
|
|
138
|
+
title: 'La Rampe Thermique',
|
|
139
|
+
html: 'La chaleur agit comme catalyseur, accélérant la réaction chimique. Cependant, un changement brusque de température dans la laine peut provoquer que les écailles s\'accrochent définitivement, résultant en un tissu feutré et rétréci.',
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
type: 'tip',
|
|
143
|
+
title: 'Le Facteur pH',
|
|
144
|
+
html: 'De nombreux teintures naturelles sont des indicateurs de pH vivants. Le pH influence la solubilité des sels et la conservation de la fibre. La soie peut perdre son éclat si le bain est trop alcalin. Ajuster le pH avec de l\'acide citrique ou du carbonate de calcium est fondamental.',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: 'Substances et Sécurité',
|
|
149
|
+
level: 2,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'card',
|
|
153
|
+
title: 'Alun de Potassium',
|
|
154
|
+
icon: 'mdi:bottle-tonic-skull',
|
|
155
|
+
html: 'Mordant universel, incolore et très efficace. La référence pour les fibres protéiques.',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
type: 'card',
|
|
159
|
+
title: 'Crème de Tartre',
|
|
160
|
+
icon: 'mdi:spoon-sugar',
|
|
161
|
+
html: 'Assistant qui améliore la fixation et la douceur des fibres animales. Maintient le pH acide.',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'tip',
|
|
165
|
+
title: 'Protocole de Sécurité',
|
|
166
|
+
html: 'Utilisez des casseroles exclusivement pour la teinture, jamais pour la préparation alimentaire.<br>Portez des gants et un masque lors de la manipulation de mordants en poudre.<br>Assurez une ventilation constante pour éviter l\'accumulation de vapeurs.',
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
ui: {
|
|
170
|
+
profileTitle: 'Sélection du Profil',
|
|
171
|
+
profileDesc: 'Le protocole chimique se divise selon l\'origine moléculaire de la fibre',
|
|
172
|
+
proteinTitle: 'Fibres Protéiques',
|
|
173
|
+
proteinOrigin: 'Origine Animale',
|
|
174
|
+
proteinDesc: 'Laine, soie, alpaga, mohair ou cachemire. Nécessitent des températures contrôlées et un pH acide.',
|
|
175
|
+
cellulosicTitle: 'Fibres Cellulosiques',
|
|
176
|
+
cellulosicOrigin: 'Origine Végétale',
|
|
177
|
+
cellulosicDesc: 'Coton, lin, chanvre ou jute. Nécessitent un pré-mordançage aux tanins pour fixer le pigment.',
|
|
178
|
+
wofTitle: 'Calculateur WOF',
|
|
179
|
+
weightLabel: 'Poids du Vêtement Sec (g)',
|
|
180
|
+
weightUnit: 'g',
|
|
181
|
+
wofEmptyMsg: 'Sélectionnez un profil pour activer les calculs',
|
|
182
|
+
alumLabel: 'Alun',
|
|
183
|
+
cremLabel: 'Crème de Tartre',
|
|
184
|
+
ironLabel: 'Fer (Attention)',
|
|
185
|
+
rampTitle: 'Rampe Thermique',
|
|
186
|
+
rampEmptyTitle: 'En attente de sélection',
|
|
187
|
+
rampEmptyDesc: 'Choisissez une fibre pour voir le cycle thermique',
|
|
188
|
+
phTitle: 'Stabilisateur de pH',
|
|
189
|
+
phDesc: 'Facteur critique pour la saturation de la couleur',
|
|
190
|
+
phVolumeLabel: 'Volume du Bain (L)',
|
|
191
|
+
phSliderLabel: 'pH Actuel',
|
|
192
|
+
phAcidLabel: 'Acide (1)',
|
|
193
|
+
phAlkalineLabel: 'Alcalin (14)',
|
|
194
|
+
phEmptyMsg: 'Sélectionnez un profil pour activer le stabilisateur',
|
|
195
|
+
phStrings: {
|
|
196
|
+
optimal: 'pH optimal',
|
|
197
|
+
raisePrefix: 'Ajouter Carbonate de Calcium ou Soude. Env.',
|
|
198
|
+
raiseSuffix: 'g pour monter à',
|
|
199
|
+
lowerPrefix: 'Ajouter Acide Citrique ou Vinaigre. Env.',
|
|
200
|
+
lowerSuffix: 'ml pour descendre à',
|
|
201
|
+
},
|
|
202
|
+
proteinFibers: [
|
|
203
|
+
{ id: 'wool', name: 'Laine / Mérinos', icon: 'mdi:sheep' },
|
|
204
|
+
{ id: 'silk', name: 'Soie', icon: 'mdi:ticket-percent' },
|
|
205
|
+
{ id: 'cashmere', name: 'Cachemire', icon: 'mdi:crown' },
|
|
206
|
+
{ id: 'mohair', name: 'Mohair', icon: 'mdi:shimmer' },
|
|
207
|
+
{ id: 'angora', name: 'Angora', icon: 'mdi:rabbit' },
|
|
208
|
+
{ id: 'alpaca', name: 'Alpaga', icon: 'mdi:image-filter-hdr' },
|
|
209
|
+
],
|
|
210
|
+
cellulosicFibers: [
|
|
211
|
+
{ id: 'cotton', name: 'Coton', icon: 'mdi:tshirt-crew' },
|
|
212
|
+
{ id: 'linen', name: 'Lin', icon: 'mdi:leaf' },
|
|
213
|
+
],
|
|
214
|
+
},
|
|
215
|
+
};
|