@jjlmoya/utils-textiles 1.1.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 +60 -0
- package/src/category/i18n/en.ts +76 -0
- package/src/category/i18n/es.ts +76 -0
- package/src/category/i18n/fr.ts +73 -0
- package/src/category/index.ts +17 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +32 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +253 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/title_separators.test.ts +40 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/burnTest/bibliography.astro +34 -0
- package/src/tool/burnTest/component.astro +602 -0
- package/src/tool/burnTest/i18n/en.ts +225 -0
- package/src/tool/burnTest/i18n/es.ts +225 -0
- package/src/tool/burnTest/i18n/fr.ts +225 -0
- package/src/tool/burnTest/index.ts +34 -0
- package/src/tool/burnTest/logic.ts +3 -0
- package/src/tool/burnTest/seo.astro +40 -0
- package/src/tool/burnTest/ui.ts +36 -0
- package/src/tool/clothingSizeConverter/bibliography.astro +34 -0
- package/src/tool/clothingSizeConverter/component.astro +1226 -0
- package/src/tool/clothingSizeConverter/i18n/en.ts +356 -0
- package/src/tool/clothingSizeConverter/i18n/es.ts +356 -0
- package/src/tool/clothingSizeConverter/i18n/fr.ts +356 -0
- package/src/tool/clothingSizeConverter/index.ts +34 -0
- package/src/tool/clothingSizeConverter/logic.ts +30 -0
- package/src/tool/clothingSizeConverter/seo.astro +40 -0
- package/src/tool/clothingSizeConverter/ui.ts +70 -0
- package/src/tool/fabricProjectCalculator/bibliography.astro +19 -0
- package/src/tool/fabricProjectCalculator/component.astro +914 -0
- package/src/tool/fabricProjectCalculator/i18n/en.ts +250 -0
- package/src/tool/fabricProjectCalculator/i18n/es.ts +250 -0
- package/src/tool/fabricProjectCalculator/i18n/fr.ts +250 -0
- package/src/tool/fabricProjectCalculator/index.ts +34 -0
- package/src/tool/fabricProjectCalculator/logic.ts +89 -0
- package/src/tool/fabricProjectCalculator/seo.astro +40 -0
- package/src/tool/fabricProjectCalculator/ui.ts +57 -0
- package/src/tool/fabricTruth/bibliography.astro +40 -0
- package/src/tool/fabricTruth/component.astro +708 -0
- package/src/tool/fabricTruth/i18n/en.ts +282 -0
- package/src/tool/fabricTruth/i18n/es.ts +316 -0
- package/src/tool/fabricTruth/i18n/fr.ts +282 -0
- package/src/tool/fabricTruth/index.ts +34 -0
- package/src/tool/fabricTruth/logic.ts +91 -0
- package/src/tool/fabricTruth/seo.astro +40 -0
- package/src/tool/fabricTruth/ui.ts +28 -0
- package/src/tool/fiberPrep/bibliography.astro +33 -0
- package/src/tool/fiberPrep/component.astro +987 -0
- package/src/tool/fiberPrep/i18n/en.ts +225 -0
- package/src/tool/fiberPrep/i18n/es.ts +225 -0
- package/src/tool/fiberPrep/i18n/fr.ts +225 -0
- package/src/tool/fiberPrep/index.ts +34 -0
- package/src/tool/fiberPrep/logic.ts +36 -0
- package/src/tool/fiberPrep/seo.astro +40 -0
- package/src/tool/fiberPrep/ui.ts +38 -0
- package/src/tool/knittingGauge/bibliography.astro +14 -0
- package/src/tool/knittingGauge/component.astro +828 -0
- package/src/tool/knittingGauge/i18n/en.ts +234 -0
- package/src/tool/knittingGauge/i18n/es.ts +234 -0
- package/src/tool/knittingGauge/i18n/fr.ts +234 -0
- package/src/tool/knittingGauge/index.ts +34 -0
- package/src/tool/knittingGauge/logic.ts +28 -0
- package/src/tool/knittingGauge/seo.astro +40 -0
- package/src/tool/knittingGauge/ui.ts +41 -0
- package/src/tool/laundryGuide/bibliography.astro +33 -0
- package/src/tool/laundryGuide/component.astro +486 -0
- package/src/tool/laundryGuide/data-en.ts +166 -0
- package/src/tool/laundryGuide/data-es.ts +166 -0
- package/src/tool/laundryGuide/data-fr.ts +103 -0
- package/src/tool/laundryGuide/i18n/en.ts +275 -0
- package/src/tool/laundryGuide/i18n/es.ts +275 -0
- package/src/tool/laundryGuide/i18n/fr.ts +291 -0
- package/src/tool/laundryGuide/index.ts +29 -0
- package/src/tool/laundryGuide/logic.ts +19 -0
- package/src/tool/laundryGuide/seo.astro +40 -0
- package/src/tool/needleConverter/bibliography.astro +14 -0
- package/src/tool/needleConverter/component.astro +518 -0
- package/src/tool/needleConverter/i18n/en.ts +217 -0
- package/src/tool/needleConverter/i18n/es.ts +217 -0
- package/src/tool/needleConverter/i18n/fr.ts +217 -0
- package/src/tool/needleConverter/index.ts +34 -0
- package/src/tool/needleConverter/logic.ts +31 -0
- package/src/tool/needleConverter/seo.astro +15 -0
- package/src/tool/needleConverter/ui.ts +17 -0
- package/src/tool/sewingPatternScaler/bibliography.astro +14 -0
- package/src/tool/sewingPatternScaler/component.astro +550 -0
- package/src/tool/sewingPatternScaler/i18n/en.ts +196 -0
- package/src/tool/sewingPatternScaler/i18n/es.ts +231 -0
- package/src/tool/sewingPatternScaler/i18n/fr.ts +187 -0
- package/src/tool/sewingPatternScaler/index.ts +34 -0
- package/src/tool/sewingPatternScaler/logic.ts +35 -0
- package/src/tool/sewingPatternScaler/seo.astro +49 -0
- package/src/tool/sewingPatternScaler/ui.ts +29 -0
- package/src/tool/shoeSizeConverter/bibliography.astro +34 -0
- package/src/tool/shoeSizeConverter/component.astro +437 -0
- package/src/tool/shoeSizeConverter/i18n/en.ts +188 -0
- package/src/tool/shoeSizeConverter/i18n/es.ts +188 -0
- package/src/tool/shoeSizeConverter/i18n/fr.ts +188 -0
- package/src/tool/shoeSizeConverter/index.ts +34 -0
- package/src/tool/shoeSizeConverter/logic.ts +8 -0
- package/src/tool/shoeSizeConverter/seo.astro +40 -0
- package/src/tool/shoeSizeConverter/ui.ts +21 -0
- package/src/tool/stainChemistry/bibliography.astro +40 -0
- package/src/tool/stainChemistry/component.astro +717 -0
- package/src/tool/stainChemistry/i18n/en.ts +303 -0
- package/src/tool/stainChemistry/i18n/es.ts +300 -0
- package/src/tool/stainChemistry/i18n/fr.ts +310 -0
- package/src/tool/stainChemistry/index.ts +34 -0
- package/src/tool/stainChemistry/logic.ts +11 -0
- package/src/tool/stainChemistry/seo.astro +40 -0
- package/src/tool/stainChemistry/ui.ts +51 -0
- package/src/tool/yarnCalculator/bibliography.astro +19 -0
- package/src/tool/yarnCalculator/component.astro +792 -0
- package/src/tool/yarnCalculator/i18n/en.ts +310 -0
- package/src/tool/yarnCalculator/i18n/es.ts +310 -0
- package/src/tool/yarnCalculator/i18n/fr.ts +310 -0
- package/src/tool/yarnCalculator/index.ts +34 -0
- package/src/tool/yarnCalculator/logic.ts +84 -0
- package/src/tool/yarnCalculator/seo.astro +14 -0
- package/src/tool/yarnCalculator/ui.ts +42 -0
- package/src/tools.ts +16 -0
- package/src/types.ts +72 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { NeedleConverterUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'knitting-needle-converter';
|
|
6
|
+
const title = 'Knitting and Crochet Needle Converter';
|
|
7
|
+
const description =
|
|
8
|
+
'Convert needle sizes between Metric (mm), US and UK systems with yarn weight recommendations and WPI.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Why are there different needle sizing systems?',
|
|
13
|
+
answer:
|
|
14
|
+
'Historically, each country developed its own system. The metric system (mm) is the most precise international standard. The US system uses progressive numbering (0-50), while the UK system uses reverse numbering: the higher the number, the finer the needle.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Are crochet and knitting US sizes the same?',
|
|
18
|
+
answer:
|
|
19
|
+
'Not exactly. US crochet hooks usually have an associated letter (e.g. H-8) and there are specific variations for small sizes. Additionally, steel hooks for fine threads use a completely different numbering system.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'What needle should I choose if my pattern uses a size with no exact equivalent?',
|
|
23
|
+
answer:
|
|
24
|
+
'If a pattern calls for a size like 7.0mm and your system only goes from 6.5mm to 8.0mm, it is always recommended to make a gauge swatch. A 0.5mm difference can significantly alter the final size of the garment.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'What is WPI (Wraps Per Inch)?',
|
|
28
|
+
answer:
|
|
29
|
+
'It is the number of yarn wraps that fit in one inch. It is the most reliable method to identify the weight of an unlabelled yarn and determine the most suitable needle for it.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Select the craft type',
|
|
36
|
+
text: 'Choose between knitting or crochet to see the correct US system equivalences.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Pick the size on the visual selector',
|
|
40
|
+
text: 'Tap the circle corresponding to your needle size. The holes have a real mathematical proportion to the millimetre value.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Read the equivalences',
|
|
44
|
+
text: 'Check the real-time results: millimetres, US size and UK size, along with the recommended yarn category and its WPI.',
|
|
45
|
+
},
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'FAQPage',
|
|
51
|
+
mainEntity: faqData.map((item) => ({
|
|
52
|
+
'@type': 'Question',
|
|
53
|
+
name: item.question,
|
|
54
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
55
|
+
})),
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const howToSchema: WithContext<HowTo> = {
|
|
59
|
+
'@context': 'https://schema.org',
|
|
60
|
+
'@type': 'HowTo',
|
|
61
|
+
name: title,
|
|
62
|
+
description,
|
|
63
|
+
step: howToData.map((step) => ({
|
|
64
|
+
'@type': 'HowToStep',
|
|
65
|
+
name: step.name,
|
|
66
|
+
text: step.text,
|
|
67
|
+
})),
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
71
|
+
'@context': 'https://schema.org',
|
|
72
|
+
'@type': 'SoftwareApplication',
|
|
73
|
+
name: title,
|
|
74
|
+
description,
|
|
75
|
+
applicationCategory: 'UtilityApplication',
|
|
76
|
+
operatingSystem: 'All',
|
|
77
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
78
|
+
inLanguage: 'en',
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const content: ToolLocaleContent<NeedleConverterUI> = {
|
|
82
|
+
slug,
|
|
83
|
+
title,
|
|
84
|
+
description,
|
|
85
|
+
faqTitle: 'Frequently Asked Questions',
|
|
86
|
+
faq: faqData,
|
|
87
|
+
bibliographyTitle: 'Bibliography',
|
|
88
|
+
bibliography: [
|
|
89
|
+
{
|
|
90
|
+
name: 'Craft Yarn Council: Needle and Hook Size Chart',
|
|
91
|
+
url: 'https://www.craftyarncouncil.com/standards/hooks-and-needles',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: 'British Standards Institution: Textiles - Marking of Knitting Needles',
|
|
95
|
+
url: 'https://knowledge.bsigroup.com/products/textile-machinery-knitting-machines-number-of-needles-for-circular-knitting-machines-of-large-nominal-diameter',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
howTo: howToData,
|
|
99
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
|
+
seo: [
|
|
101
|
+
{
|
|
102
|
+
type: 'title',
|
|
103
|
+
text: 'Technical Guide to Knitting and Crochet Needles: Systems, Gauges and Equivalences',
|
|
104
|
+
level: 2,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
type: 'paragraph',
|
|
108
|
+
html: 'The globalisation of digital patterns has made it essential to understand the differences between the <strong>metric decimal system</strong>, the <strong>US standard</strong> and the <strong>UK imperial system</strong>. This tool converts between all three systems and offers yarn weight recommendations using the WPI method.',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'stats',
|
|
112
|
+
items: [
|
|
113
|
+
{ value: 'Offline', label: 'Works Offline', icon: 'mdi:wifi-off' },
|
|
114
|
+
{ value: 'Triple', label: 'Full Sync', icon: 'mdi:sync' },
|
|
115
|
+
{ value: 'WPI', label: 'Yarn Analysis', icon: 'mdi:texture' },
|
|
116
|
+
],
|
|
117
|
+
columns: 3,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'title',
|
|
121
|
+
text: 'The Complexity of International Systems',
|
|
122
|
+
level: 3,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'table',
|
|
126
|
+
headers: ['System', 'Basis', 'Main Region', 'Technical Characteristics'],
|
|
127
|
+
rows: [
|
|
128
|
+
['<strong>Metric (mm)</strong>', 'Exact diameter in mm', 'Europe / International', 'The most reliable ISO standard. Constant increments of 0.25mm or 0.50mm.'],
|
|
129
|
+
['<strong>US</strong>', 'Progressive Numbering', 'North America', 'Uses numbers from 0 to 50. For crochet, numbers are associated with letters (B-1, G-6).'],
|
|
130
|
+
['<strong>UK (Imperial)</strong>', 'Reverse Numbering', 'UK / Australia', 'Based on wire drawing gauge. Higher number means finer needle (14 is fine, 0 is thick).'],
|
|
131
|
+
],
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Yarn Identification Using the WPI Method',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Lace (18-22+ WPI):</strong> Ultra-fine threads for silk or mohair lace. Needles from 1.5mm to 2.5mm.',
|
|
142
|
+
'<strong>Fingering / Baby (14-16 WPI):</strong> The standard for socks and baby garments. Optimal needles 2.75mm to 3.25mm.',
|
|
143
|
+
'<strong>Sport / Fine (12-14 WPI):</strong> Medium-fine weight, ideal for lightweight jackets. Needles 3.5mm to 3.75mm.',
|
|
144
|
+
'<strong>DK / Light Worsted (11-13 WPI):</strong> The most versatile weight. Needles 4.0mm or 4.5mm.',
|
|
145
|
+
'<strong>Worsted / Aran (9-10 WPI):</strong> Heavy yarn for winter jumpers. Needles 5.0mm to 5.5mm.',
|
|
146
|
+
'<strong>Bulky / Chunky (7-8 WPI):</strong> Large gauge yarns for quick projects. Needles 6.0mm to 8.0mm.',
|
|
147
|
+
'<strong>Super Bulky (5-6 WPI):</strong> Giant fibres for home décor or scarves. Needles 9.0mm to 15.0mm.',
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'tip',
|
|
152
|
+
title: 'Pro Tip: Steel Crochet Hooks',
|
|
153
|
+
html: '<p>There is a special family of hooks for extremely fine mercerised cotton thread. These are <strong>Steel Hooks</strong>. Unlike aluminium hooks, their numbering is specific and reverse: a #14 steel hook (0.6mm) is much finer than a #00 (3.5mm). Never use the standard crochet table for these gauges.</p>',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'diagnostic',
|
|
157
|
+
variant: 'success',
|
|
158
|
+
title: 'Checklist for Getting the Right Gauge',
|
|
159
|
+
icon: 'mdi:check-circle-outline',
|
|
160
|
+
badge: 'Technical Validation',
|
|
161
|
+
html: '<p>Follow these steps before starting a long-term project:</p><ul><li><strong>Personal Tension:</strong> If you knit tightly, go up 0.5mm. If loosely, go down 0.5mm.</li><li><strong>Needle Material:</strong> Bamboo for slippery yarns; Metal for rough wools.</li><li><strong>Fibre Type:</strong> Cotton does not give; Merino wool expands with blocking.</li><li><strong>Gauge Swatch:</strong> Knit a 10x10cm square and wash it before measuring the final gauge.</li></ul>',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'proscons',
|
|
165
|
+
items: [
|
|
166
|
+
{
|
|
167
|
+
pro: 'The Metric system is universal and avoids rounding errors between manufacturers.',
|
|
168
|
+
con: 'Many old and historical patterns do not include millimetre measurements.',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
pro: 'The US system makes it easy to memorise standard sizes for American patterns.',
|
|
172
|
+
con: 'Crochet letters are not always consistent between brands (e.g. US G can be 4mm or 4.25mm).',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
pro: 'The WPI system allows unlabelled yarns to be recycled in a technical and professional way.',
|
|
176
|
+
con: 'Requires very meticulous manual measurement to avoid skewing the result.',
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
type: 'glossary',
|
|
182
|
+
items: [
|
|
183
|
+
{ term: 'Gauge Swatch', definition: 'A sample square (typically 10x10cm) knitted before starting a project to validate the real gauge.' },
|
|
184
|
+
{ term: 'Hook Throat', definition: 'The throat of the crochet hook. Its depth determines how much yarn load the hook can handle.' },
|
|
185
|
+
{ term: 'Block Testing', definition: 'Process of wetting and stretching knitted fabric so fibres relax and reveal their true final size.' },
|
|
186
|
+
],
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'summary',
|
|
190
|
+
title: 'Critical Factors for Project Success',
|
|
191
|
+
items: [
|
|
192
|
+
'The right needle will dictate not only size but the durability of the garment against friction.',
|
|
193
|
+
'Use our converter to validate patterns from American or British magazines in seconds.',
|
|
194
|
+
'If you cannot find the exact equivalent, opt for the higher or lower gauge based on your tension swatch.',
|
|
195
|
+
'Crochet uses approximately 30% more yarn than knitting with the same needle.',
|
|
196
|
+
'Clean metal needles regularly to maintain optimal sliding speed.',
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
ui: {
|
|
201
|
+
labelSystem: 'WORKING SYSTEM',
|
|
202
|
+
modeKnitting: 'Knitting',
|
|
203
|
+
modeCrochet: 'Crochet',
|
|
204
|
+
calibratorLabel: 'PRECISION GAUGE (REAL SCALE)',
|
|
205
|
+
calibratorDesc: 'Select a diameter to see equivalences in real time. The holes have a real mathematical proportion to the millimetre value.',
|
|
206
|
+
tagMetric: 'Metric (mm)',
|
|
207
|
+
tagUS: 'US System',
|
|
208
|
+
tagUK: 'UK System',
|
|
209
|
+
yarnLabel: 'IDEAL YARN WEIGHT',
|
|
210
|
+
wpiFormat: '{wpi} WPI (Wraps per inch)',
|
|
211
|
+
tableSectionLabel: 'TECHNICAL EQUIVALENCE CATALOGUE',
|
|
212
|
+
tableMetric: 'METRIC',
|
|
213
|
+
tableUS: 'US SIZE',
|
|
214
|
+
tableUK: 'UK / IMPERIAL',
|
|
215
|
+
tableYarn: 'YARN CATEGORY',
|
|
216
|
+
},
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { NeedleConverterUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'conversor-agujas-punto';
|
|
6
|
+
const title = 'Conversor de Agujas de Punto y Ganchillo';
|
|
7
|
+
const description =
|
|
8
|
+
'Convierte tamaños de agujas entre sistemas Métrico (mm), US y UK con recomendación de hilos y WPI.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Por qué hay diferentes sistemas de tallas de agujas?',
|
|
13
|
+
answer:
|
|
14
|
+
'Históricamente, cada país desarrolló su propio sistema. El sistema métrico (mm) es el estándar internacional más preciso. El sistema US usa numeración progresiva (0-50), mientras que el sistema UK usa numeración inversa: cuanto más alto el número, más fina es la aguja.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Son iguales las tallas de ganchillo y punto en US?',
|
|
18
|
+
answer:
|
|
19
|
+
'No exactamente. Los ganchillos en US suelen llevar una letra asociada (ej. H-8) y existen variaciones específicas en grosores pequeños. Además, los ganchillos de acero para hilos finos usan una numeración totalmente distinta.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Qué aguja debo elegir si mi patrón usa una medida sin equivalente exacto?',
|
|
23
|
+
answer:
|
|
24
|
+
'Si un patrón pide una medida como 7.0mm y tu sistema solo llega de 6.5mm a 8.0mm, se recomienda hacer siempre una muestra de tensión (gauge). La diferencia de 0.5mm puede alterar significativamente el tamaño final de la prenda.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Qué es el WPI (Wraps Per Inch)?',
|
|
28
|
+
answer:
|
|
29
|
+
'Es el número de vueltas de hilo que caben en una pulgada. Es el método más fiable para identificar el grosor de una lana sin etiqueta y determinar qué aguja es la más adecuada para tejerla.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Selecciona el tipo de labor',
|
|
36
|
+
text: 'Elige entre punto (knitting) o ganchillo (crochet) para ver las equivalencias correctas en el sistema US.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Elige el calibre en el selector visual',
|
|
40
|
+
text: 'Pulsa sobre el círculo que corresponde al tamaño de tu aguja. Los orificios guardan proporción matemática real con el milimetraje.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Lee las equivalencias',
|
|
44
|
+
text: 'Consulta los resultados en tiempo real: milímetros, talla US y talla UK, junto con la categoría de hilo recomendada y su WPI.',
|
|
45
|
+
},
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'FAQPage',
|
|
51
|
+
mainEntity: faqData.map((item) => ({
|
|
52
|
+
'@type': 'Question',
|
|
53
|
+
name: item.question,
|
|
54
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
55
|
+
})),
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const howToSchema: WithContext<HowTo> = {
|
|
59
|
+
'@context': 'https://schema.org',
|
|
60
|
+
'@type': 'HowTo',
|
|
61
|
+
name: title,
|
|
62
|
+
description,
|
|
63
|
+
step: howToData.map((step) => ({
|
|
64
|
+
'@type': 'HowToStep',
|
|
65
|
+
name: step.name,
|
|
66
|
+
text: step.text,
|
|
67
|
+
})),
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
71
|
+
'@context': 'https://schema.org',
|
|
72
|
+
'@type': 'SoftwareApplication',
|
|
73
|
+
name: title,
|
|
74
|
+
description,
|
|
75
|
+
applicationCategory: 'UtilityApplication',
|
|
76
|
+
operatingSystem: 'All',
|
|
77
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
78
|
+
inLanguage: 'es',
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const content: ToolLocaleContent<NeedleConverterUI> = {
|
|
82
|
+
slug,
|
|
83
|
+
title,
|
|
84
|
+
description,
|
|
85
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
86
|
+
faq: faqData,
|
|
87
|
+
bibliographyTitle: 'Bibliografía',
|
|
88
|
+
bibliography: [
|
|
89
|
+
{
|
|
90
|
+
name: 'Craft Yarn Council: Needle and Hook Size Chart',
|
|
91
|
+
url: 'https://www.craftyarncouncil.com/standards/hooks-and-needles',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: 'British Standards Institution: Textiles - Marking of Knitting Needles',
|
|
95
|
+
url: 'https://knowledge.bsigroup.com/products/textile-machinery-knitting-machines-number-of-needles-for-circular-knitting-machines-of-large-nominal-diameter',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
howTo: howToData,
|
|
99
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
|
+
seo: [
|
|
101
|
+
{
|
|
102
|
+
type: 'title',
|
|
103
|
+
text: 'Guía Técnica de Agujas de Punto y Ganchillo: Sistemas, Calibres y Equivalencias',
|
|
104
|
+
level: 2,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
type: 'paragraph',
|
|
108
|
+
html: 'La globalización de los patrones digitales ha hecho imprescindible entender las diferencias entre el <strong>sistema métrico decimal</strong>, el <strong>estándar de Estados Unidos (US)</strong> y el <strong>sistema imperial del Reino Unido (UK)</strong>. Esta herramienta convierte entre los tres sistemas y ofrece recomendación de hilo mediante el método WPI.',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'stats',
|
|
112
|
+
items: [
|
|
113
|
+
{ value: 'Offline', label: 'Funciona sin Red', icon: 'mdi:wifi-off' },
|
|
114
|
+
{ value: 'Triple', label: 'Sincronización Total', icon: 'mdi:sync' },
|
|
115
|
+
{ value: 'WPI', label: 'Análisis de Hilo', icon: 'mdi:texture' },
|
|
116
|
+
],
|
|
117
|
+
columns: 3,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'title',
|
|
121
|
+
text: 'La Complejidad de los Sistemas Internacionales',
|
|
122
|
+
level: 3,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'table',
|
|
126
|
+
headers: ['Sistema', 'Base de Cálculo', 'Región Predominante', 'Características Técnicas'],
|
|
127
|
+
rows: [
|
|
128
|
+
['<strong>Métrico (mm)</strong>', 'Diámetro exacto en mm', 'Europa / Internacional', 'El estándar ISO más fiable. Incrementos constantes de 0.25mm o 0.50mm.'],
|
|
129
|
+
['<strong>US (EE.UU.)</strong>', 'Numeración Progresiva', 'Norteamérica', 'Usa números del 0 al 50. En ganchillo, los números se asocian a letras (B-1, G-6).'],
|
|
130
|
+
['<strong>UK (Imperial)</strong>', 'Numeración Inversa', 'Reino Unido / Australia', 'Basado en el calibre de trefilado. A mayor número, más fina es la aguja (14 es fino, 0 es grueso).'],
|
|
131
|
+
],
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Identificación de Hilos mediante el Método WPI',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Lace / Encaje (18-22+ WPI):</strong> Hilos ultrafinos para encajes de seda o mohair. Agujas de 1.5mm a 2.5mm.',
|
|
142
|
+
'<strong>Fingering / Baby (14-16 WPI):</strong> El estándar para calcetines y ropa de bebé. Agujas óptimas de 2.75mm a 3.25mm.',
|
|
143
|
+
'<strong>Sport / Fine (12-14 WPI):</strong> Hilo de grosor medio-bajo, ideal para chaquetas ligeras. Agujas de 3.5mm a 3.75mm.',
|
|
144
|
+
'<strong>DK / Light Worsted (11-13 WPI):</strong> El grosor más versátil del mercado. Agujas de 4.0mm o 4.5mm.',
|
|
145
|
+
'<strong>Worsted / Aran (9-10 WPI):</strong> Hilo grueso para jerséis de invierno. Agujas de 5.0mm a 5.5mm.',
|
|
146
|
+
'<strong>Bulky / Chunky (7-8 WPI):</strong> Lanas de gran calibre para proyectos rápidos. Agujas de 6.0mm a 8.0mm.',
|
|
147
|
+
'<strong>Super Bulky (5-6 WPI):</strong> Fibras gigantes para decoración o bufandas. Agujas de 9.0mm a 15.0mm.',
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'tip',
|
|
152
|
+
title: 'Técnica Profesional: El Ganchillo de Acero',
|
|
153
|
+
html: '<p>Existe una familia de agujas para hilos de algodón mercerizado extremadamente finos. Son los <strong>Steel Hooks (Ganchillos de Acero)</strong>. Su numeración es específica e inversa: un ganchillo de acero #14 (0.6mm) es mucho más fino que uno de #00 (3.5mm). Nunca uses la tabla estándar para estos calibres.</p>',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'diagnostic',
|
|
157
|
+
variant: 'success',
|
|
158
|
+
title: 'Checklist para acertar con el calibre',
|
|
159
|
+
icon: 'mdi:check-circle-outline',
|
|
160
|
+
badge: 'Validación Técnica',
|
|
161
|
+
html: '<p>Sigue estos pasos antes de iniciar un proyecto de larga duración:</p><ul><li><strong>Tensión Personal:</strong> Si eres tejedora apretada, sube 0.5mm. Si eres floja, baja 0.5mm.</li><li><strong>Material de Aguja:</strong> Bambú para hilos resbaladizos; Metal para lanas rugosas.</li><li><strong>Tipo de Fibra:</strong> El algodón no cede; la lana merino se expande con el bloqueo.</li><li><strong>Muestra de Tensión:</strong> Teje un cuadrado de 10x10cm y lávalo antes de medir el calibre final.</li></ul>',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'proscons',
|
|
165
|
+
items: [
|
|
166
|
+
{
|
|
167
|
+
pro: 'El sistema Métrico es universal y evita errores de redondeo entre fabricantes.',
|
|
168
|
+
con: 'Muchos patrones antiguos e históricos no incluyen medidas en milímetros.',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
pro: 'El sistema US facilita la memorización de tallas estándar para patrones americanos.',
|
|
172
|
+
con: 'Las letras en ganchillo no siempre son consistentes entre marcas.',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
pro: 'El sistema WPI permite reciclar hilos sin etiqueta de forma técnica y profesional.',
|
|
176
|
+
con: 'Requiere una medición manual muy meticulosa para no falsear el resultado.',
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
type: 'glossary',
|
|
182
|
+
items: [
|
|
183
|
+
{ term: 'Gauge Swatch', definition: 'Cuadrado de muestra (10x10cm) tejido antes de iniciar el proyecto para validar el calibre real.' },
|
|
184
|
+
{ term: 'Hook Throat', definition: 'La garganta del ganchillo. Su profundidad determina cuánta carga de hilo puede manejar la aguja.' },
|
|
185
|
+
{ term: 'Block Testing', definition: 'Proceso de humedecer y estirar el tejido para que las fibras se relajen y revelen su tamaño final verdadero.' },
|
|
186
|
+
],
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'summary',
|
|
190
|
+
title: 'Factores Críticos para el Éxito de tu Proyecto Textil',
|
|
191
|
+
items: [
|
|
192
|
+
'La aguja correcta dictará no solo el tamaño, sino la durabilidad de la prenda contra el rozamiento.',
|
|
193
|
+
'Usa nuestro conversor para validar patrones de revistas americanas o inglesas en segundos.',
|
|
194
|
+
'Si no encuentras el equivalente exacto, opta por el calibre superior o inferior basándote en tu muestra de tensión.',
|
|
195
|
+
'El ganchillo consume aprox. un 30% más de hilo que el punto con la misma aguja.',
|
|
196
|
+
'Limpia tus agujas de metal regularmente para mantener la velocidad de deslizamiento óptima.',
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
ui: {
|
|
201
|
+
labelSystem: 'SISTEMA DE TRABAJO',
|
|
202
|
+
modeKnitting: 'Punto',
|
|
203
|
+
modeCrochet: 'Ganchillo',
|
|
204
|
+
calibratorLabel: 'CALIBRADOR DE PRECISIÓN (ESCALA REAL)',
|
|
205
|
+
calibratorDesc: 'Selecciona un diámetro para ver las equivalencias en tiempo real. Los orificios guardan una proporción matemática real respecto al milimetraje.',
|
|
206
|
+
tagMetric: 'Métrico (mm)',
|
|
207
|
+
tagUS: 'Sistema US',
|
|
208
|
+
tagUK: 'Sistema UK',
|
|
209
|
+
yarnLabel: 'GROSOR DE HILO IDEAL',
|
|
210
|
+
wpiFormat: '{wpi} WPI (Vuelta por pulgada)',
|
|
211
|
+
tableSectionLabel: 'CATÁLOGO TÉCNICO DE EQUIVALENCIAS',
|
|
212
|
+
tableMetric: 'MÉTRICO',
|
|
213
|
+
tableUS: 'US SIZE',
|
|
214
|
+
tableUK: 'UK / IMPERIAL',
|
|
215
|
+
tableYarn: 'CATEGORÍA HILO',
|
|
216
|
+
},
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { NeedleConverterUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'convertisseur-aiguilles-tricot';
|
|
6
|
+
const title = 'Convertisseur d\'Aiguilles de Tricot et Crochet';
|
|
7
|
+
const description =
|
|
8
|
+
'Convertissez les tailles d\'aiguilles entre les systèmes Métrique (mm), US et UK avec recommandations de fils et WPI.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Pourquoi existe-t-il différents systèmes de tailles d\'aiguilles ?',
|
|
13
|
+
answer:
|
|
14
|
+
'Historiquement, chaque pays a développé son propre système. Le système métrique (mm) est la norme internationale la plus précise. Le système US utilise une numérotation progressive (0-50), tandis que le système UK utilise une numérotation inverse : plus le numéro est élevé, plus l\'aiguille est fine.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Les tailles de crochet et de tricot en US sont-elles les mêmes ?',
|
|
18
|
+
answer:
|
|
19
|
+
'Pas exactement. Les crochets US portent généralement une lettre associée (ex. H-8) et il existe des variations spécifiques pour les petites tailles. De plus, les crochets en acier pour fils fins utilisent une numérotation totalement différente.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Quelle aiguille choisir si mon patron utilise une taille sans équivalent exact ?',
|
|
23
|
+
answer:
|
|
24
|
+
'Si un patron demande une taille comme 7.0mm et que votre système ne va que de 6.5mm à 8.0mm, il est toujours recommandé de faire un échantillon de tension (gauge). Une différence de 0.5mm peut modifier significativement la taille finale du vêtement.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Qu\'est-ce que le WPI (Wraps Per Inch) ?',
|
|
28
|
+
answer:
|
|
29
|
+
'C\'est le nombre de tours de fil qui tiennent dans un pouce. C\'est la méthode la plus fiable pour identifier l\'épaisseur d\'une laine sans étiquette et déterminer quelle aiguille lui convient le mieux.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Sélectionnez le type de travail',
|
|
36
|
+
text: 'Choisissez entre tricot (knitting) ou crochet pour voir les équivalences correctes dans le système US.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Choisissez le calibre dans le sélecteur visuel',
|
|
40
|
+
text: 'Appuyez sur le cercle correspondant à la taille de votre aiguille. Les orifices ont une proportion mathématique réelle par rapport au millimétrage.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Lisez les équivalences',
|
|
44
|
+
text: 'Consultez les résultats en temps réel : millimètres, taille US et taille UK, ainsi que la catégorie de fil recommandée et son WPI.',
|
|
45
|
+
},
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
49
|
+
'@context': 'https://schema.org',
|
|
50
|
+
'@type': 'FAQPage',
|
|
51
|
+
mainEntity: faqData.map((item) => ({
|
|
52
|
+
'@type': 'Question',
|
|
53
|
+
name: item.question,
|
|
54
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
55
|
+
})),
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const howToSchema: WithContext<HowTo> = {
|
|
59
|
+
'@context': 'https://schema.org',
|
|
60
|
+
'@type': 'HowTo',
|
|
61
|
+
name: title,
|
|
62
|
+
description,
|
|
63
|
+
step: howToData.map((step) => ({
|
|
64
|
+
'@type': 'HowToStep',
|
|
65
|
+
name: step.name,
|
|
66
|
+
text: step.text,
|
|
67
|
+
})),
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
71
|
+
'@context': 'https://schema.org',
|
|
72
|
+
'@type': 'SoftwareApplication',
|
|
73
|
+
name: title,
|
|
74
|
+
description,
|
|
75
|
+
applicationCategory: 'UtilityApplication',
|
|
76
|
+
operatingSystem: 'All',
|
|
77
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
78
|
+
inLanguage: 'fr',
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const content: ToolLocaleContent<NeedleConverterUI> = {
|
|
82
|
+
slug,
|
|
83
|
+
title,
|
|
84
|
+
description,
|
|
85
|
+
faqTitle: 'Questions Fréquentes',
|
|
86
|
+
faq: faqData,
|
|
87
|
+
bibliographyTitle: 'Bibliographie',
|
|
88
|
+
bibliography: [
|
|
89
|
+
{
|
|
90
|
+
name: 'Craft Yarn Council: Needle and Hook Size Chart',
|
|
91
|
+
url: 'https://www.craftyarncouncil.com/standards/hooks-and-needles',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: 'British Standards Institution: Textiles - Marking of Knitting Needles',
|
|
95
|
+
url: 'https://knowledge.bsigroup.com/products/textile-machinery-knitting-machines-number-of-needles-for-circular-knitting-machines-of-large-nominal-diameter',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
howTo: howToData,
|
|
99
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
|
+
seo: [
|
|
101
|
+
{
|
|
102
|
+
type: 'title',
|
|
103
|
+
text: 'Guide Technique des Aiguilles à Tricoter et Crochets : Systèmes, Calibres et Équivalences',
|
|
104
|
+
level: 2,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
type: 'paragraph',
|
|
108
|
+
html: 'La mondialisation des patrons numériques a rendu indispensable la compréhension des différences entre le <strong>système métrique décimal</strong>, la <strong>norme américaine (US)</strong> et le <strong>système impérial britannique (UK)</strong>. Cet outil convertit entre les trois systèmes et offre des recommandations de fil via la méthode WPI.',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'stats',
|
|
112
|
+
items: [
|
|
113
|
+
{ value: 'Offline', label: 'Fonctionne Hors Ligne', icon: 'mdi:wifi-off' },
|
|
114
|
+
{ value: 'Triple', label: 'Synchronisation Totale', icon: 'mdi:sync' },
|
|
115
|
+
{ value: 'WPI', label: 'Analyse du Fil', icon: 'mdi:texture' },
|
|
116
|
+
],
|
|
117
|
+
columns: 3,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'title',
|
|
121
|
+
text: 'La Complexité des Systèmes Internationaux',
|
|
122
|
+
level: 3,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'table',
|
|
126
|
+
headers: ['Système', 'Base de Calcul', 'Région Principale', 'Caractéristiques Techniques'],
|
|
127
|
+
rows: [
|
|
128
|
+
['<strong>Métrique (mm)</strong>', 'Diamètre exact en mm', 'Europe / International', 'La norme ISO la plus fiable. Incréments constants de 0,25mm ou 0,50mm.'],
|
|
129
|
+
['<strong>US (États-Unis)</strong>', 'Numérotation Progressive', 'Amérique du Nord', 'Utilise des numéros de 0 à 50. Pour le crochet, les numéros sont associés à des lettres (B-1, G-6).'],
|
|
130
|
+
['<strong>UK (Impérial)</strong>', 'Numérotation Inverse', 'Royaume-Uni / Australie', 'Basé sur le calibre de tréfilage. Plus le numéro est grand, plus l\'aiguille est fine (14 est fin, 0 est épais).'],
|
|
131
|
+
],
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Identification des Fils par la Méthode WPI',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Lace / Dentelle (18-22+ WPI) :</strong> Fils ultra-fins pour dentelles en soie ou mohair. Aiguilles de 1,5mm à 2,5mm.',
|
|
142
|
+
'<strong>Fingering / Baby (14-16 WPI) :</strong> La norme pour les chaussettes et la layette. Aiguilles optimales de 2,75mm à 3,25mm.',
|
|
143
|
+
'<strong>Sport / Fin (12-14 WPI) :</strong> Fil de grosse moyenne-fine, idéal pour les vestes légères. Aiguilles de 3,5mm à 3,75mm.',
|
|
144
|
+
'<strong>DK / Light Worsted (11-13 WPI) :</strong> L\'épaisseur la plus polyvalente. Aiguilles de 4,0mm ou 4,5mm.',
|
|
145
|
+
'<strong>Worsted / Aran (9-10 WPI) :</strong> Fil épais pour pulls d\'hiver. Aiguilles de 5,0mm à 5,5mm.',
|
|
146
|
+
'<strong>Bulky / Chunky (7-8 WPI) :</strong> Laines de grand calibre pour projets rapides. Aiguilles de 6,0mm à 8,0mm.',
|
|
147
|
+
'<strong>Super Bulky (5-6 WPI) :</strong> Fibres géantes pour décoration ou écharpes. Aiguilles de 9,0mm à 15,0mm.',
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'tip',
|
|
152
|
+
title: 'Technique Professionnelle : Les Crochets en Acier',
|
|
153
|
+
html: '<p>Il existe une famille de crochets pour les fils de coton mercerisé extrêmement fins. Ce sont les <strong>Steel Hooks (Crochets en Acier)</strong>. Contrairement aux crochets en aluminium, leur numérotation est spécifique et inverse : un crochet en acier #14 (0,6mm) est beaucoup plus fin qu\'un #00 (3,5mm). N\'utilisez jamais le tableau standard pour ces calibres.</p>',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'diagnostic',
|
|
157
|
+
variant: 'success',
|
|
158
|
+
title: 'Checklist pour Réussir le Calibre',
|
|
159
|
+
icon: 'mdi:check-circle-outline',
|
|
160
|
+
badge: 'Validation Technique',
|
|
161
|
+
html: '<p>Suivez ces étapes avant de commencer un projet de longue durée :</p><ul><li><strong>Tension Personnelle :</strong> Si vous tricotez serré, montez de 0,5mm. Si vous tricotez lâche, descendez de 0,5mm.</li><li><strong>Matériau de l\'Aiguille :</strong> Bambou pour les fils glissants ; Métal pour les laines rugueuses.</li><li><strong>Type de Fibre :</strong> Le coton ne cède pas ; La laine mérinos se dilate au blocage.</li><li><strong>Échantillon de Tension :</strong> Tricotez un carré de 10x10cm et lavez-le avant de mesurer le calibre final.</li></ul>',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'proscons',
|
|
165
|
+
items: [
|
|
166
|
+
{
|
|
167
|
+
pro: 'Le système Métrique est universel et évite les erreurs d\'arrondi entre fabricants.',
|
|
168
|
+
con: 'De nombreux patrons anciens n\'incluent pas de mesures en millimètres.',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
pro: 'Le système US facilite la mémorisation des tailles standard pour les patrons américains.',
|
|
172
|
+
con: 'Les lettres des crochets ne sont pas toujours cohérentes entre les marques.',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
pro: 'Le système WPI permet de recycler des fils sans étiquette de façon technique et professionnelle.',
|
|
176
|
+
con: 'Nécessite une mesure manuelle très méticuleuse pour ne pas fausser le résultat.',
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
type: 'glossary',
|
|
182
|
+
items: [
|
|
183
|
+
{ term: 'Gauge Swatch', definition: 'Carré d\'échantillon (10x10cm) tricoté avant de commencer le projet pour valider le calibre réel.' },
|
|
184
|
+
{ term: 'Hook Throat', definition: 'La gorge du crochet. Sa profondeur détermine la charge de fil que l\'aiguille peut gérer.' },
|
|
185
|
+
{ term: 'Block Testing', definition: 'Processus de mouillage et d\'étirement du tricot pour que les fibres se détendent et révèlent leur taille finale réelle.' },
|
|
186
|
+
],
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: 'summary',
|
|
190
|
+
title: 'Facteurs Critiques pour la Réussite de Votre Projet Textile',
|
|
191
|
+
items: [
|
|
192
|
+
'La bonne aiguille déterminera non seulement la taille, mais aussi la durabilité du vêtement contre le frottement.',
|
|
193
|
+
'Utilisez notre convertisseur pour valider des patrons de magazines américains ou anglais en quelques secondes.',
|
|
194
|
+
'Si vous ne trouvez pas l\'équivalent exact, optez pour le calibre supérieur ou inférieur basé sur votre échantillon de tension.',
|
|
195
|
+
'Le crochet consomme environ 30% plus de fil que le tricot avec la même aiguille.',
|
|
196
|
+
'Nettoyez régulièrement vos aiguilles en métal pour maintenir une vitesse de glissement optimale.',
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
ui: {
|
|
201
|
+
labelSystem: 'SYSTÈME DE TRAVAIL',
|
|
202
|
+
modeKnitting: 'Tricot',
|
|
203
|
+
modeCrochet: 'Crochet',
|
|
204
|
+
calibratorLabel: 'CALIBRATEUR DE PRÉCISION (ÉCHELLE RÉELLE)',
|
|
205
|
+
calibratorDesc: 'Sélectionnez un diamètre pour voir les équivalences en temps réel. Les orifices ont une proportion mathématique réelle par rapport au millimétrage.',
|
|
206
|
+
tagMetric: 'Métrique (mm)',
|
|
207
|
+
tagUS: 'Système US',
|
|
208
|
+
tagUK: 'Système UK',
|
|
209
|
+
yarnLabel: 'GROSSEUR DE FIL IDÉALE',
|
|
210
|
+
wpiFormat: '{wpi} WPI (Tours par pouce)',
|
|
211
|
+
tableSectionLabel: 'CATALOGUE TECHNIQUE D\'ÉQUIVALENCES',
|
|
212
|
+
tableMetric: 'MÉTRIQUE',
|
|
213
|
+
tableUS: 'TAILLE US',
|
|
214
|
+
tableUK: 'UK / IMPÉRIAL',
|
|
215
|
+
tableYarn: 'CATÉGORIE DE FIL',
|
|
216
|
+
},
|
|
217
|
+
};
|