@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,211 +1,211 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { BurnTestUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'identificador-fibras-combustion';
|
|
7
|
-
const title = 'Prueba de Combustión Textil';
|
|
8
|
-
const description =
|
|
9
|
-
'Identifica la composición real de cualquier tela mediante el análisis de su quemado. Diferencia algodón, lana, seda y sintéticos con rigor científico.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: '¿Es seguro realizar una prueba de combustión en casa?',
|
|
14
|
-
answer:
|
|
15
|
-
'Sí, siempre que tomes precauciones extremas: usa pinzas metálicas, trabaja sobre una superficie ignífuga (cerámica o metal), ten agua cerca y realiza la prueba en un lugar ventilado. Solo necesitas una pequeña muestra de 1x1 cm o unos hilos.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: '¿Cómo huele el algodón al quemarse?',
|
|
19
|
-
answer:
|
|
20
|
-
'El algodón es celulosa pura. Al quemarse, huele exactamente como el papel quemado o las hojas secas. La ceniza resultante es gris, muy fina y se deshace al tacto.',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: '¿Qué indica una bola negra y dura al final de la fibra?',
|
|
24
|
-
answer:
|
|
25
|
-
'Es el signo inequívoco de una fibra sintética (plástico), como el poliéster o el nylon. Al fundirse, el polímero se aglutina en una perla plástica que no se desmenuza, a diferencia de las cenizas de las fibras naturales.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: '¿Por qué la lana huele mal al quemarse?',
|
|
29
|
-
answer:
|
|
30
|
-
'La lana y la seda son proteínas animales que contienen azufre. Al entrar en contacto con el fuego, emiten un olor penetrante a pelo quemado o plumas quemadas. Es la forma más fácil de diferenciarlas de las fibras vegetales.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Extraer una muestra representativa',
|
|
37
|
-
text: 'Corta un pequeño cuadrado del tejido o, mejor aún, extrae unos hilos tanto de la urdimbre (vertical) como de la trama (horizontal).',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Observar la aproximación a la llama',
|
|
41
|
-
text: 'Acerca la fibra lentamente al fuego sin tocarlo. Observa si se encoge, se funde o si prende fuego inmediatamente.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Analizar el tipo de llama y humo',
|
|
45
|
-
text: 'Fíjate si la llama es constante o se apaga sola, y si el humo es blanco, negro o inexistente.',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Evaluar el residuo y el olor',
|
|
49
|
-
text: 'Una vez fría, toca la ceniza o perla resultante y percibe el olor (papel, pelo o químico) para confirmar la familia de la fibra.',
|
|
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: 'es',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
const flame = {
|
|
87
|
-
cellulosic: 'Arde RÁPIDO y con BRILLO (Llama amarilla). No se funde. Sigue ardiendo al retirar.',
|
|
88
|
-
protein: 'Arde LENTAMENTE, chisporrotea y se ENCOGE alejándose de la llama. Se autoextingue al retirar.',
|
|
89
|
-
synthetic: 'Se FUNDE y contrae rápidamente, gotea como plástico derretido. Llama humeante.',
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
const odor = {
|
|
93
|
-
paper: 'Papel quemado, madera, hojas secas.',
|
|
94
|
-
hair: 'Pelo quemado, cuerno quemado, plumas.',
|
|
95
|
-
chemical_sweet: 'Químico AROMÁTICO (dulce, afrutado).',
|
|
96
|
-
chemical_fishy: 'Químico AGRIO (pescado, carne asada).',
|
|
97
|
-
vegetable: 'Vegetales cocidos (apio).',
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
const residue = {
|
|
101
|
-
ash_soft: 'Ceniza GRIS/NEGRA fina, suave y volátil (se deshace al tocar).',
|
|
102
|
-
ash_shape: 'Ceniza GRIS mantiene forma de la fibra (friable).',
|
|
103
|
-
bead_crushable: 'Masa negra hueca/quebradiza (se pulveriza fácilmente con los dedos).',
|
|
104
|
-
bead_hard: 'Bola DURA y vítrea. Imposible de romper con los dedos.',
|
|
105
|
-
bead_irregular: 'Masa negra DURA e irregular.',
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
const smoke = {
|
|
109
|
-
white_gray: 'Blanco / Gris claro.',
|
|
110
|
-
gray: 'Gris medio.',
|
|
111
|
-
black: 'Negro DENSO y oscuro.',
|
|
112
|
-
};
|
|
113
|
-
|
|
114
|
-
export const content: ToolLocaleContent<BurnTestUI> = {
|
|
115
|
-
slug,
|
|
116
|
-
title,
|
|
117
|
-
description,
|
|
118
|
-
faq: faqData,
|
|
119
|
-
bibliography: bibliography,
|
|
120
|
-
howTo: howToData,
|
|
121
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
122
|
-
seo: [
|
|
123
|
-
{
|
|
124
|
-
type: 'title',
|
|
125
|
-
text: 'La Ciencia Forense del Filamento',
|
|
126
|
-
level: 2,
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
type: 'paragraph',
|
|
130
|
-
html: 'La prueba de combustión es el método analítico más rápido y preciso para diferenciar polímeros naturales de sintéticos sin recurrir a microscopio electrónico. Al someter una fibra al calor, su comportamiento molecular revela su origen: desde la celulosa vegetal hasta las proteínas animales o los derivados del petróleo.',
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
type: 'card',
|
|
134
|
-
title: 'Fibras Celulósicas',
|
|
135
|
-
icon: 'mdi:leaf',
|
|
136
|
-
html: 'El <strong>Algodón</strong> y el <strong>Lino</strong> arden rápidamente sin fundirse. Huelen a papel quemado porque proceden de la madera o plantas, dejando una ceniza gris volátil que se esparce al soplar.',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
type: 'card',
|
|
140
|
-
title: 'Fibras Proteicas',
|
|
141
|
-
icon: 'mdi:sheep',
|
|
142
|
-
html: 'La <strong>Lana</strong> y la <strong>Seda</strong> se alejan de la llama. Su olor característico a pelo quemado indica la presencia de azufre y queratina. El residuo es una cuenta negra que se pulveriza al tocarla.',
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
type: 'card',
|
|
146
|
-
title: 'Fibras Sintéticas',
|
|
147
|
-
icon: 'mdi:bottle-soda-classic',
|
|
148
|
-
html: 'El <strong>Poliéster</strong> y el <strong>Nailon</strong> son esencialmente plásticos. Se funden formando una gota caliente que se endurece en una bola vítrea imposible de romper, con un olor químico punzante.',
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
type: 'title',
|
|
152
|
-
text: 'Matriz de Evidencia Química',
|
|
153
|
-
level: 2,
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
type: 'paragraph',
|
|
157
|
-
html: 'Un análisis preciso requiere cruzar al menos tres evidencias. El olor es el indicador más fiable para identificar mezclas: si una tela de "lino" desprende un leve aroma plástico y deja residuos duros, indica una mezcla con poliéster no declarada.',
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
type: 'tip',
|
|
161
|
-
title: 'Protocolo de Seguridad de Laboratorio',
|
|
162
|
-
html: '<strong>Ventilación crítica:</strong> Las fibras sintéticas liberan gases tóxicos al arder. Nunca realices esta prueba en espacios cerrados.<br><strong>Extinción inmediata:</strong> Ten siempre un recipiente con agua al lado. Algunas fibras sintéticas pueden fundirse y adherirse a la piel.',
|
|
163
|
-
},
|
|
164
|
-
],
|
|
165
|
-
ui: {
|
|
166
|
-
investigationLabel: 'INVESTIGACIÓN',
|
|
167
|
-
stepPrefix: 'PASO',
|
|
168
|
-
stepCompleted: 'ANÁLISIS COMPLETADO',
|
|
169
|
-
resetLabel: 'REINICIAR',
|
|
170
|
-
positiveId: 'IDENTIFICACIÓN POSITIVA',
|
|
171
|
-
flameLabel: 'Comportamiento Llama',
|
|
172
|
-
odorLabel: 'Rastro Olfativo',
|
|
173
|
-
residueLabel: 'Residuo',
|
|
174
|
-
identifiedAs: 'Muestra identificada positivamente como',
|
|
175
|
-
safetyTitle: 'Protocolo de Seguridad',
|
|
176
|
-
safetyText:
|
|
177
|
-
'Realiza esta prueba en un lugar ventilado, sobre una superficie ignífuga. Usa pinzas metálicas y mantén agua cerca.',
|
|
178
|
-
questions: {
|
|
179
|
-
flame: '¿Comportamiento ante la llama?',
|
|
180
|
-
odor: '¿Olor característico?',
|
|
181
|
-
residue: '¿Residuo final?',
|
|
182
|
-
smoke: '¿Tipo de humo?',
|
|
183
|
-
},
|
|
184
|
-
fiberData: {
|
|
185
|
-
cotton: { name: 'Algodón', icon: 'mdi:tshirt-crew', color: '#60A5FA', description: 'Fibra vegetal natural, suave y transpirable. El rey de los básicos.' },
|
|
186
|
-
linen: { name: 'Lino', icon: 'mdi:leaf', color: '#A7F3D0', description: 'Fibra vegetal muy fuerte, fresca y con arruga característica.' },
|
|
187
|
-
wool: { name: 'Lana / Merino', icon: 'mdi:sheep', color: '#FCD34D', description: 'Fibra animal proteica, aislante térmico excelente y elástica.' },
|
|
188
|
-
silk: { name: 'Seda', icon: 'mdi:ticket-percent', color: '#F472B6', description: 'Fibra animal de filamento continuo. Brillo natural y tacto seco.' },
|
|
189
|
-
cashmere: { name: 'Cashmere', icon: 'mdi:crown', color: '#F59E0B', description: 'Fibra de lujo de cabra de Cachemira. Extremadamente suave y ligera.' },
|
|
190
|
-
mohair: { name: 'Mohair', icon: 'mdi:shimmer', color: '#14B8A6', description: 'La "fibra de diamante" de la cabra de Angora. Brillo natural y elástica.' },
|
|
191
|
-
angora: { name: 'Angora', icon: 'mdi:rabbit', color: '#F9FAFB', description: 'Pelo del conejo de Angora. Efecto "halo" esponjoso y ligereza extrema.' },
|
|
192
|
-
alpaca: { name: 'Alpaca', icon: 'mdi:image-filter-hdr', color: '#9F7AEA', description: 'Tesoro de los Andes. Fibra hueca, térmica, hipoalergénica y sedosa.' },
|
|
193
|
-
polyester: { name: 'Poliéster', icon: 'mdi:oil', color: '#94A3B8', description: 'Fibra sintética de petróleo. Resistente, no arruga, no respira.' },
|
|
194
|
-
nylon: { name: 'Nailon (Poliamida)', icon: 'mdi:parachute', color: '#2DD4BF', description: 'Sintética muy resistente a tracción y abrasión.' },
|
|
195
|
-
acrylic: { name: 'Acrílico', icon: 'mdi:resize', color: '#450A0A', description: 'Sintético imitación lana. Suave, caliente, hace bolas.' },
|
|
196
|
-
},
|
|
197
|
-
burnTestData: [
|
|
198
|
-
{ fiberId: 'cotton', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_soft },
|
|
199
|
-
{ fiberId: 'linen', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_shape },
|
|
200
|
-
{ fiberId: 'wool', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
201
|
-
{ fiberId: 'silk', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
202
|
-
{ fiberId: 'cashmere', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
203
|
-
{ fiberId: 'mohair', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
204
|
-
{ fiberId: 'angora', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
205
|
-
{ fiberId: 'alpaca', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
206
|
-
{ fiberId: 'polyester', flame: flame.synthetic, odor: odor.chemical_sweet, smoke: smoke.black, residue: residue.bead_hard },
|
|
207
|
-
{ fiberId: 'nylon', flame: flame.synthetic, odor: odor.vegetable, smoke: smoke.white_gray, residue: residue.bead_hard },
|
|
208
|
-
{ fiberId: 'acrylic', flame: flame.synthetic, odor: odor.chemical_fishy, smoke: smoke.black, residue: residue.bead_irregular },
|
|
209
|
-
],
|
|
210
|
-
},
|
|
211
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { BurnTestUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'identificador-fibras-combustion';
|
|
7
|
+
const title = 'Prueba de Combustión Textil';
|
|
8
|
+
const description =
|
|
9
|
+
'Identifica la composición real de cualquier tela mediante el análisis de su quemado. Diferencia algodón, lana, seda y sintéticos con rigor científico.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: '¿Es seguro realizar una prueba de combustión en casa?',
|
|
14
|
+
answer:
|
|
15
|
+
'Sí, siempre que tomes precauciones extremas: usa pinzas metálicas, trabaja sobre una superficie ignífuga (cerámica o metal), ten agua cerca y realiza la prueba en un lugar ventilado. Solo necesitas una pequeña muestra de 1x1 cm o unos hilos.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Cómo huele el algodón al quemarse?',
|
|
19
|
+
answer:
|
|
20
|
+
'El algodón es celulosa pura. Al quemarse, huele exactamente como el papel quemado o las hojas secas. La ceniza resultante es gris, muy fina y se deshace al tacto.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Qué indica una bola negra y dura al final de la fibra?',
|
|
24
|
+
answer:
|
|
25
|
+
'Es el signo inequívoco de una fibra sintética (plástico), como el poliéster o el nylon. Al fundirse, el polímero se aglutina en una perla plástica que no se desmenuza, a diferencia de las cenizas de las fibras naturales.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '¿Por qué la lana huele mal al quemarse?',
|
|
29
|
+
answer:
|
|
30
|
+
'La lana y la seda son proteínas animales que contienen azufre. Al entrar en contacto con el fuego, emiten un olor penetrante a pelo quemado o plumas quemadas. Es la forma más fácil de diferenciarlas de las fibras vegetales.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Extraer una muestra representativa',
|
|
37
|
+
text: 'Corta un pequeño cuadrado del tejido o, mejor aún, extrae unos hilos tanto de la urdimbre (vertical) como de la trama (horizontal).',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Observar la aproximación a la llama',
|
|
41
|
+
text: 'Acerca la fibra lentamente al fuego sin tocarlo. Observa si se encoge, se funde o si prende fuego inmediatamente.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Analizar el tipo de llama y humo',
|
|
45
|
+
text: 'Fíjate si la llama es constante o se apaga sola, y si el humo es blanco, negro o inexistente.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Evaluar el residuo y el olor',
|
|
49
|
+
text: 'Una vez fría, toca la ceniza o perla resultante y percibe el olor (papel, pelo o químico) para confirmar la familia de la fibra.',
|
|
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: 'es',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const flame = {
|
|
87
|
+
cellulosic: 'Arde RÁPIDO y con BRILLO (Llama amarilla). No se funde. Sigue ardiendo al retirar.',
|
|
88
|
+
protein: 'Arde LENTAMENTE, chisporrotea y se ENCOGE alejándose de la llama. Se autoextingue al retirar.',
|
|
89
|
+
synthetic: 'Se FUNDE y contrae rápidamente, gotea como plástico derretido. Llama humeante.',
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const odor = {
|
|
93
|
+
paper: 'Papel quemado, madera, hojas secas.',
|
|
94
|
+
hair: 'Pelo quemado, cuerno quemado, plumas.',
|
|
95
|
+
chemical_sweet: 'Químico AROMÁTICO (dulce, afrutado).',
|
|
96
|
+
chemical_fishy: 'Químico AGRIO (pescado, carne asada).',
|
|
97
|
+
vegetable: 'Vegetales cocidos (apio).',
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
const residue = {
|
|
101
|
+
ash_soft: 'Ceniza GRIS/NEGRA fina, suave y volátil (se deshace al tocar).',
|
|
102
|
+
ash_shape: 'Ceniza GRIS mantiene forma de la fibra (friable).',
|
|
103
|
+
bead_crushable: 'Masa negra hueca/quebradiza (se pulveriza fácilmente con los dedos).',
|
|
104
|
+
bead_hard: 'Bola DURA y vítrea. Imposible de romper con los dedos.',
|
|
105
|
+
bead_irregular: 'Masa negra DURA e irregular.',
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
const smoke = {
|
|
109
|
+
white_gray: 'Blanco / Gris claro.',
|
|
110
|
+
gray: 'Gris medio.',
|
|
111
|
+
black: 'Negro DENSO y oscuro.',
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export const content: ToolLocaleContent<BurnTestUI> = {
|
|
115
|
+
slug,
|
|
116
|
+
title,
|
|
117
|
+
description,
|
|
118
|
+
faq: faqData,
|
|
119
|
+
bibliography: bibliography,
|
|
120
|
+
howTo: howToData,
|
|
121
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
122
|
+
seo: [
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: 'La Ciencia Forense del Filamento',
|
|
126
|
+
level: 2,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'paragraph',
|
|
130
|
+
html: 'La prueba de combustión es el método analítico más rápido y preciso para diferenciar polímeros naturales de sintéticos sin recurrir a microscopio electrónico. Al someter una fibra al calor, su comportamiento molecular revela su origen: desde la celulosa vegetal hasta las proteínas animales o los derivados del petróleo.',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'card',
|
|
134
|
+
title: 'Fibras Celulósicas',
|
|
135
|
+
icon: 'mdi:leaf',
|
|
136
|
+
html: 'El <strong>Algodón</strong> y el <strong>Lino</strong> arden rápidamente sin fundirse. Huelen a papel quemado porque proceden de la madera o plantas, dejando una ceniza gris volátil que se esparce al soplar.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'card',
|
|
140
|
+
title: 'Fibras Proteicas',
|
|
141
|
+
icon: 'mdi:sheep',
|
|
142
|
+
html: 'La <strong>Lana</strong> y la <strong>Seda</strong> se alejan de la llama. Su olor característico a pelo quemado indica la presencia de azufre y queratina. El residuo es una cuenta negra que se pulveriza al tocarla.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
type: 'card',
|
|
146
|
+
title: 'Fibras Sintéticas',
|
|
147
|
+
icon: 'mdi:bottle-soda-classic',
|
|
148
|
+
html: 'El <strong>Poliéster</strong> y el <strong>Nailon</strong> son esencialmente plásticos. Se funden formando una gota caliente que se endurece en una bola vítrea imposible de romper, con un olor químico punzante.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'title',
|
|
152
|
+
text: 'Matriz de Evidencia Química',
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'Un análisis preciso requiere cruzar al menos tres evidencias. El olor es el indicador más fiable para identificar mezclas: si una tela de "lino" desprende un leve aroma plástico y deja residuos duros, indica una mezcla con poliéster no declarada.',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: 'tip',
|
|
161
|
+
title: 'Protocolo de Seguridad de Laboratorio',
|
|
162
|
+
html: '<strong>Ventilación crítica:</strong> Las fibras sintéticas liberan gases tóxicos al arder. Nunca realices esta prueba en espacios cerrados.<br><strong>Extinción inmediata:</strong> Ten siempre un recipiente con agua al lado. Algunas fibras sintéticas pueden fundirse y adherirse a la piel.',
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
ui: {
|
|
166
|
+
investigationLabel: 'INVESTIGACIÓN',
|
|
167
|
+
stepPrefix: 'PASO',
|
|
168
|
+
stepCompleted: 'ANÁLISIS COMPLETADO',
|
|
169
|
+
resetLabel: 'REINICIAR',
|
|
170
|
+
positiveId: 'IDENTIFICACIÓN POSITIVA',
|
|
171
|
+
flameLabel: 'Comportamiento Llama',
|
|
172
|
+
odorLabel: 'Rastro Olfativo',
|
|
173
|
+
residueLabel: 'Residuo',
|
|
174
|
+
identifiedAs: 'Muestra identificada positivamente como',
|
|
175
|
+
safetyTitle: 'Protocolo de Seguridad',
|
|
176
|
+
safetyText:
|
|
177
|
+
'Realiza esta prueba en un lugar ventilado, sobre una superficie ignífuga. Usa pinzas metálicas y mantén agua cerca.',
|
|
178
|
+
questions: {
|
|
179
|
+
flame: '¿Comportamiento ante la llama?',
|
|
180
|
+
odor: '¿Olor característico?',
|
|
181
|
+
residue: '¿Residuo final?',
|
|
182
|
+
smoke: '¿Tipo de humo?',
|
|
183
|
+
},
|
|
184
|
+
fiberData: {
|
|
185
|
+
cotton: { name: 'Algodón', icon: 'mdi:tshirt-crew', color: '#60A5FA', description: 'Fibra vegetal natural, suave y transpirable. El rey de los básicos.' },
|
|
186
|
+
linen: { name: 'Lino', icon: 'mdi:leaf', color: '#A7F3D0', description: 'Fibra vegetal muy fuerte, fresca y con arruga característica.' },
|
|
187
|
+
wool: { name: 'Lana / Merino', icon: 'mdi:sheep', color: '#FCD34D', description: 'Fibra animal proteica, aislante térmico excelente y elástica.' },
|
|
188
|
+
silk: { name: 'Seda', icon: 'mdi:ticket-percent', color: '#F472B6', description: 'Fibra animal de filamento continuo. Brillo natural y tacto seco.' },
|
|
189
|
+
cashmere: { name: 'Cashmere', icon: 'mdi:crown', color: '#F59E0B', description: 'Fibra de lujo de cabra de Cachemira. Extremadamente suave y ligera.' },
|
|
190
|
+
mohair: { name: 'Mohair', icon: 'mdi:shimmer', color: '#14B8A6', description: 'La "fibra de diamante" de la cabra de Angora. Brillo natural y elástica.' },
|
|
191
|
+
angora: { name: 'Angora', icon: 'mdi:rabbit', color: '#F9FAFB', description: 'Pelo del conejo de Angora. Efecto "halo" esponjoso y ligereza extrema.' },
|
|
192
|
+
alpaca: { name: 'Alpaca', icon: 'mdi:image-filter-hdr', color: '#9F7AEA', description: 'Tesoro de los Andes. Fibra hueca, térmica, hipoalergénica y sedosa.' },
|
|
193
|
+
polyester: { name: 'Poliéster', icon: 'mdi:oil', color: '#94A3B8', description: 'Fibra sintética de petróleo. Resistente, no arruga, no respira.' },
|
|
194
|
+
nylon: { name: 'Nailon (Poliamida)', icon: 'mdi:parachute', color: '#2DD4BF', description: 'Sintética muy resistente a tracción y abrasión.' },
|
|
195
|
+
acrylic: { name: 'Acrílico', icon: 'mdi:resize', color: '#450A0A', description: 'Sintético imitación lana. Suave, caliente, hace bolas.' },
|
|
196
|
+
},
|
|
197
|
+
burnTestData: [
|
|
198
|
+
{ fiberId: 'cotton', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_soft },
|
|
199
|
+
{ fiberId: 'linen', flame: flame.cellulosic, odor: odor.paper, smoke: smoke.white_gray, residue: residue.ash_shape },
|
|
200
|
+
{ fiberId: 'wool', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
201
|
+
{ fiberId: 'silk', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
202
|
+
{ fiberId: 'cashmere', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
203
|
+
{ fiberId: 'mohair', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
204
|
+
{ fiberId: 'angora', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
205
|
+
{ fiberId: 'alpaca', flame: flame.protein, odor: odor.hair, smoke: smoke.gray, residue: residue.bead_crushable },
|
|
206
|
+
{ fiberId: 'polyester', flame: flame.synthetic, odor: odor.chemical_sweet, smoke: smoke.black, residue: residue.bead_hard },
|
|
207
|
+
{ fiberId: 'nylon', flame: flame.synthetic, odor: odor.vegetable, smoke: smoke.white_gray, residue: residue.bead_hard },
|
|
208
|
+
{ fiberId: 'acrylic', flame: flame.synthetic, odor: odor.chemical_fishy, smoke: smoke.black, residue: residue.bead_irregular },
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
};
|