@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 = 'fiber-preparation-natural-dyeing';
|
|
7
|
-
const title = '染色のための繊維の下準備';
|
|
8
|
-
const description =
|
|
9
|
-
'天然染色の前に、ウール、シルク、コットンを準備するための WOF 計算機、媒染プロトコル、および昇温スケジュール。';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'WOF (Weight of Fiber) とは何ですか?',
|
|
14
|
-
answer:
|
|
15
|
-
'WOF は、必要な染料や媒染剤の量を計算するための標準的なシステムです。繊維の乾燥重量に基づいています。例えば、100g のウールに対してタマネギの皮 100% WOF とは、100g のタマネギの皮が必要であることを意味します。',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: 'なぜ媒染が必要なのですか?',
|
|
19
|
-
answer:
|
|
20
|
-
'媒染剤(ミョウバンなど)は、繊維と天然染料の間の化学的な橋渡しの役割を果たします。媒染なしでは、ほとんどの染料は定着せず、最初の洗濯で流れ落ちてしまいます(耐光性や摩擦堅牢度が低くなります)。',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: '動物性繊維と植物性繊維の下準備の違いは何ですか?',
|
|
24
|
-
answer:
|
|
25
|
-
'動物性繊維(ウールなどのタンパク質繊維)は、ミョウバンのみで非常によく染まります。植物性繊維(コットンやリネンなどのセルロース繊維)は、金属媒染剤を受け入れやすくするために、事前にタンニンで処理する工程が必要です。',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: '染色のにおける昇温スケジュール(サーマルランプ)とは何ですか?',
|
|
29
|
-
answer:
|
|
30
|
-
'染浴の温度を段階的に(毎分約 1〜2℃)上げていくことです。急激な温度変化による熱ショックを避けるために非常に重要です。特にウールは、急激な温度変化でフェルト化(硬く縮む)してしまうことがあります。',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: '精錬と洗浄',
|
|
37
|
-
text: '媒染剤が均一に浸透するのを妨げる油分、ワックス、または工業用糊を取り除くために、中性洗剤で繊維を洗います。',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: '乾燥重量の測定',
|
|
41
|
-
text: '乾燥した状態の重量を正確に測定します。この値がすべての WOF(Weight of Fiber)計算の基準となります。',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: '計算と媒染浴',
|
|
45
|
-
text: '媒染剤(例:15% WOF の生ミョウバン)をお湯に溶かし、繊維を浸します。プロトコルに従って温度を一定に保ちます。',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: '熟成とすすぎ',
|
|
49
|
-
text: '媒染した繊維を(できれば 24 時間)休ませ、金属を芯まで定着させてから、最終的な染色の工程に進みます。',
|
|
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: 'ja',
|
|
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: '媒染の背後にある科学',
|
|
98
|
-
level: 2,
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
type: 'paragraph',
|
|
102
|
-
html: '染色に向けて繊維を準備することは、単に洗うことではありません。それは分子レベルでの化学プロセスであり、「媒染」と呼ばれます。この言葉はラテン語の <i>mordere</i>(噛む)に由来し、その役割は繊維と染料の間の化学的な架け橋となることです。この架け橋がなければ、ほとんどの天然染料は最初のすすぎで流れ落ちてしまいます。',
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
type: 'card',
|
|
106
|
-
title: '重要なコンセプト',
|
|
107
|
-
icon: 'mdi:molecule',
|
|
108
|
-
html: '媒染剤は、繊維のポリマーと染料の両方に同時に結びつくことができる「手(原子価)」を持っています。',
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
type: 'title',
|
|
112
|
-
text: '繊維による違い',
|
|
113
|
-
level: 2,
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
type: 'card',
|
|
117
|
-
title: 'タンパク質繊維:ウールとシルク',
|
|
118
|
-
icon: 'mdi:sheep',
|
|
119
|
-
html: 'これらの繊維はアミノ酸鎖で構成されており、金属に対して非常に高い親和性を持っています。熱によって繊維の鱗(スケール)が開き、ミョウバンが深く浸透します。柔らかさを保つための酸性 pH を維持するために、<strong>酒石英(クリーム・オブ・ターター)</strong>の使用が不可欠です。',
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
type: 'card',
|
|
123
|
-
title: 'セルロース繊維:コットンとリネン',
|
|
124
|
-
icon: 'mdi:leaf',
|
|
125
|
-
html: 'セルロースには、結合しやすい箇所が少ありません。そのため、<strong>2 段階プロトコル</strong>を使用します。まずタンニンをセルロースに付着させ、次にミョウバンをそのタンニンに付着させます。この前処理なしでは、色は薄くなり、堅牢度も低くなります。',
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
type: 'title',
|
|
129
|
-
text: '染浴の管理:WOF、温度、pH',
|
|
130
|
-
level: 2,
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
type: 'paragraph',
|
|
134
|
-
html: 'プロフェッショナルで再現性のある結果を得るためには、<strong>WOF (Weight of Fabric)</strong> の概念が基本となります。すべては繊維の乾燥重量に対するパーセンテージとして測定されます。媒染剤が過剰だと繊維が飽和し、手触りが悪くなったり、金属の沈着によって最終的な色が変わったりすることがあります。',
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
type: 'tip',
|
|
138
|
-
title: '昇温スケジュール',
|
|
139
|
-
html: '熱は触媒として働き、化学反応を促進します。しかし、ウールの急激な温度変化は、繊維の鱗が互いに永久に引っかかり合う原因となり、フェルト化や縮みを引き起こします。',
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
type: 'tip',
|
|
143
|
-
title: 'pH 要因',
|
|
144
|
-
html: '多くの天然染料は、生きた pH 指示薬です。pH は塩の溶解度や繊維の保存状態に影響します。シルクは、染浴がアルカリ性に寄りすぎると光沢を失うことがあります。クエン酸や炭酸カルシウムで pH を調整することが非常に重要です。',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
type: 'title',
|
|
148
|
-
text: '物質と安全性',
|
|
149
|
-
level: 2,
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
type: 'card',
|
|
153
|
-
title: '生ミョウバン',
|
|
154
|
-
icon: 'mdi:bottle-tonic-skull',
|
|
155
|
-
html: '汎用性の高い媒染剤で、無色で非常に効果的です。タンパク質繊維の基準となる薬剤です。',
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
type: 'card',
|
|
159
|
-
title: '酒石英(クリーム・オブ・ターター)',
|
|
160
|
-
icon: 'mdi:spoon-sugar',
|
|
161
|
-
html: '動物性繊維の定着と柔らかさを向上させる助剤です。pH を酸性に保ちます。',
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
type: 'tip',
|
|
165
|
-
title: '安全プロトコル',
|
|
166
|
-
html: '染色のための鍋は専用のものを用意し、食品には絶対に使用しないでください。<br>粉末の媒染剤を扱う際は、手袋とマスクを着用してください。<br>蒸気がこもらないよう、常に換気を確保してください。',
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
ui: {
|
|
170
|
-
profileTitle: 'プロファイルの選択',
|
|
171
|
-
profileDesc: '化学プロトコルは繊維の分子の由来によって分けられます',
|
|
172
|
-
proteinTitle: 'タンパク質繊維',
|
|
173
|
-
proteinOrigin: '動物由来',
|
|
174
|
-
proteinDesc: 'ウール、シルク、アルパカ、モヘア、カシミヤなど。温度管理と酸性 pH が必要です。',
|
|
175
|
-
cellulosicTitle: 'セルロース繊維',
|
|
176
|
-
cellulosicOrigin: '植物由来',
|
|
177
|
-
cellulosicDesc: 'コットン、リネン、ヘンプ、ジュートなど。色素を定着させるためにタンニンによる事前媒染が必要です。',
|
|
178
|
-
wofTitle: 'WOF 計算機',
|
|
179
|
-
weightLabel: '乾燥時の重量 (g)',
|
|
180
|
-
weightUnit: 'g',
|
|
181
|
-
wofEmptyMsg: '計算を有効にするにはプロファイルを選択してください',
|
|
182
|
-
alumLabel: 'ミョウバン',
|
|
183
|
-
cremLabel: '酒石英',
|
|
184
|
-
ironLabel: '鉄(注意)',
|
|
185
|
-
rampTitle: '昇温スケジュール',
|
|
186
|
-
rampEmptyTitle: '選択待ち',
|
|
187
|
-
rampEmptyDesc: '繊維を選択して温度サイクルを表示します',
|
|
188
|
-
phTitle: 'pH 安定剤',
|
|
189
|
-
phDesc: '色の彩度に関わる重要な要因',
|
|
190
|
-
phVolumeLabel: '液量 (L)',
|
|
191
|
-
phSliderLabel: '現在の pH',
|
|
192
|
-
phAcidLabel: '酸性 (1)',
|
|
193
|
-
phAlkalineLabel: 'アルカリ性 (14)',
|
|
194
|
-
phEmptyMsg: '安定剤を有効にするにはプロファイルを選択してください',
|
|
195
|
-
phStrings: {
|
|
196
|
-
optimal: '最適な pH',
|
|
197
|
-
raisePrefix: '炭酸カルシウムまたはソーダ灰を追加してください。約',
|
|
198
|
-
raiseSuffix: 'g で目標の pH に',
|
|
199
|
-
lowerPrefix: 'クエン酸または酢を追加してください。約',
|
|
200
|
-
lowerSuffix: 'ml で目標の pH に',
|
|
201
|
-
},
|
|
202
|
-
proteinFibers: [
|
|
203
|
-
{ id: 'wool', name: 'ウール / メリノ', icon: 'mdi:sheep' },
|
|
204
|
-
{ id: 'silk', name: 'シルク', icon: 'mdi:ticket-percent' },
|
|
205
|
-
{ id: 'cashmere', name: 'カシミヤ', icon: 'mdi:crown' },
|
|
206
|
-
{ id: 'mohair', name: 'モヘア', icon: 'mdi:shimmer' },
|
|
207
|
-
{ id: 'angora', name: 'アンゴラ', icon: 'mdi:rabbit' },
|
|
208
|
-
{ id: 'alpaca', name: 'アルパカ', icon: 'mdi:image-filter-hdr' },
|
|
209
|
-
],
|
|
210
|
-
cellulosicFibers: [
|
|
211
|
-
{ id: 'cotton', name: 'コットン', icon: 'mdi:tshirt-crew' },
|
|
212
|
-
{ id: 'linen', name: 'リネン', 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 = 'fiber-preparation-natural-dyeing';
|
|
7
|
+
const title = '染色のための繊維の下準備';
|
|
8
|
+
const description =
|
|
9
|
+
'天然染色の前に、ウール、シルク、コットンを準備するための WOF 計算機、媒染プロトコル、および昇温スケジュール。';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'WOF (Weight of Fiber) とは何ですか?',
|
|
14
|
+
answer:
|
|
15
|
+
'WOF は、必要な染料や媒染剤の量を計算するための標準的なシステムです。繊維の乾燥重量に基づいています。例えば、100g のウールに対してタマネギの皮 100% WOF とは、100g のタマネギの皮が必要であることを意味します。',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'なぜ媒染が必要なのですか?',
|
|
19
|
+
answer:
|
|
20
|
+
'媒染剤(ミョウバンなど)は、繊維と天然染料の間の化学的な橋渡しの役割を果たします。媒染なしでは、ほとんどの染料は定着せず、最初の洗濯で流れ落ちてしまいます(耐光性や摩擦堅牢度が低くなります)。',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '動物性繊維と植物性繊維の下準備の違いは何ですか?',
|
|
24
|
+
answer:
|
|
25
|
+
'動物性繊維(ウールなどのタンパク質繊維)は、ミョウバンのみで非常によく染まります。植物性繊維(コットンやリネンなどのセルロース繊維)は、金属媒染剤を受け入れやすくするために、事前にタンニンで処理する工程が必要です。',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '染色のにおける昇温スケジュール(サーマルランプ)とは何ですか?',
|
|
29
|
+
answer:
|
|
30
|
+
'染浴の温度を段階的に(毎分約 1〜2℃)上げていくことです。急激な温度変化による熱ショックを避けるために非常に重要です。特にウールは、急激な温度変化でフェルト化(硬く縮む)してしまうことがあります。',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: '精錬と洗浄',
|
|
37
|
+
text: '媒染剤が均一に浸透するのを妨げる油分、ワックス、または工業用糊を取り除くために、中性洗剤で繊維を洗います。',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: '乾燥重量の測定',
|
|
41
|
+
text: '乾燥した状態の重量を正確に測定します。この値がすべての WOF(Weight of Fiber)計算の基準となります。',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: '計算と媒染浴',
|
|
45
|
+
text: '媒染剤(例:15% WOF の生ミョウバン)をお湯に溶かし、繊維を浸します。プロトコルに従って温度を一定に保ちます。',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '熟成とすすぎ',
|
|
49
|
+
text: '媒染した繊維を(できれば 24 時間)休ませ、金属を芯まで定着させてから、最終的な染色の工程に進みます。',
|
|
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: 'ja',
|
|
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: '媒染の背後にある科学',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: '染色に向けて繊維を準備することは、単に洗うことではありません。それは分子レベルでの化学プロセスであり、「媒染」と呼ばれます。この言葉はラテン語の <i>mordere</i>(噛む)に由来し、その役割は繊維と染料の間の化学的な架け橋となることです。この架け橋がなければ、ほとんどの天然染料は最初のすすぎで流れ落ちてしまいます。',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'card',
|
|
106
|
+
title: '重要なコンセプト',
|
|
107
|
+
icon: 'mdi:molecule',
|
|
108
|
+
html: '媒染剤は、繊維のポリマーと染料の両方に同時に結びつくことができる「手(原子価)」を持っています。',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
type: 'title',
|
|
112
|
+
text: '繊維による違い',
|
|
113
|
+
level: 2,
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'card',
|
|
117
|
+
title: 'タンパク質繊維:ウールとシルク',
|
|
118
|
+
icon: 'mdi:sheep',
|
|
119
|
+
html: 'これらの繊維はアミノ酸鎖で構成されており、金属に対して非常に高い親和性を持っています。熱によって繊維の鱗(スケール)が開き、ミョウバンが深く浸透します。柔らかさを保つための酸性 pH を維持するために、<strong>酒石英(クリーム・オブ・ターター)</strong>の使用が不可欠です。',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'card',
|
|
123
|
+
title: 'セルロース繊維:コットンとリネン',
|
|
124
|
+
icon: 'mdi:leaf',
|
|
125
|
+
html: 'セルロースには、結合しやすい箇所が少ありません。そのため、<strong>2 段階プロトコル</strong>を使用します。まずタンニンをセルロースに付着させ、次にミョウバンをそのタンニンに付着させます。この前処理なしでは、色は薄くなり、堅牢度も低くなります。',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type: 'title',
|
|
129
|
+
text: '染浴の管理:WOF、温度、pH',
|
|
130
|
+
level: 2,
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'paragraph',
|
|
134
|
+
html: 'プロフェッショナルで再現性のある結果を得るためには、<strong>WOF (Weight of Fabric)</strong> の概念が基本となります。すべては繊維の乾燥重量に対するパーセンテージとして測定されます。媒染剤が過剰だと繊維が飽和し、手触りが悪くなったり、金属の沈着によって最終的な色が変わったりすることがあります。',
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: 'tip',
|
|
138
|
+
title: '昇温スケジュール',
|
|
139
|
+
html: '熱は触媒として働き、化学反応を促進します。しかし、ウールの急激な温度変化は、繊維の鱗が互いに永久に引っかかり合う原因となり、フェルト化や縮みを引き起こします。',
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
type: 'tip',
|
|
143
|
+
title: 'pH 要因',
|
|
144
|
+
html: '多くの天然染料は、生きた pH 指示薬です。pH は塩の溶解度や繊維の保存状態に影響します。シルクは、染浴がアルカリ性に寄りすぎると光沢を失うことがあります。クエン酸や炭酸カルシウムで pH を調整することが非常に重要です。',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: '物質と安全性',
|
|
149
|
+
level: 2,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'card',
|
|
153
|
+
title: '生ミョウバン',
|
|
154
|
+
icon: 'mdi:bottle-tonic-skull',
|
|
155
|
+
html: '汎用性の高い媒染剤で、無色で非常に効果的です。タンパク質繊維の基準となる薬剤です。',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
type: 'card',
|
|
159
|
+
title: '酒石英(クリーム・オブ・ターター)',
|
|
160
|
+
icon: 'mdi:spoon-sugar',
|
|
161
|
+
html: '動物性繊維の定着と柔らかさを向上させる助剤です。pH を酸性に保ちます。',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'tip',
|
|
165
|
+
title: '安全プロトコル',
|
|
166
|
+
html: '染色のための鍋は専用のものを用意し、食品には絶対に使用しないでください。<br>粉末の媒染剤を扱う際は、手袋とマスクを着用してください。<br>蒸気がこもらないよう、常に換気を確保してください。',
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
ui: {
|
|
170
|
+
profileTitle: 'プロファイルの選択',
|
|
171
|
+
profileDesc: '化学プロトコルは繊維の分子の由来によって分けられます',
|
|
172
|
+
proteinTitle: 'タンパク質繊維',
|
|
173
|
+
proteinOrigin: '動物由来',
|
|
174
|
+
proteinDesc: 'ウール、シルク、アルパカ、モヘア、カシミヤなど。温度管理と酸性 pH が必要です。',
|
|
175
|
+
cellulosicTitle: 'セルロース繊維',
|
|
176
|
+
cellulosicOrigin: '植物由来',
|
|
177
|
+
cellulosicDesc: 'コットン、リネン、ヘンプ、ジュートなど。色素を定着させるためにタンニンによる事前媒染が必要です。',
|
|
178
|
+
wofTitle: 'WOF 計算機',
|
|
179
|
+
weightLabel: '乾燥時の重量 (g)',
|
|
180
|
+
weightUnit: 'g',
|
|
181
|
+
wofEmptyMsg: '計算を有効にするにはプロファイルを選択してください',
|
|
182
|
+
alumLabel: 'ミョウバン',
|
|
183
|
+
cremLabel: '酒石英',
|
|
184
|
+
ironLabel: '鉄(注意)',
|
|
185
|
+
rampTitle: '昇温スケジュール',
|
|
186
|
+
rampEmptyTitle: '選択待ち',
|
|
187
|
+
rampEmptyDesc: '繊維を選択して温度サイクルを表示します',
|
|
188
|
+
phTitle: 'pH 安定剤',
|
|
189
|
+
phDesc: '色の彩度に関わる重要な要因',
|
|
190
|
+
phVolumeLabel: '液量 (L)',
|
|
191
|
+
phSliderLabel: '現在の pH',
|
|
192
|
+
phAcidLabel: '酸性 (1)',
|
|
193
|
+
phAlkalineLabel: 'アルカリ性 (14)',
|
|
194
|
+
phEmptyMsg: '安定剤を有効にするにはプロファイルを選択してください',
|
|
195
|
+
phStrings: {
|
|
196
|
+
optimal: '最適な pH',
|
|
197
|
+
raisePrefix: '炭酸カルシウムまたはソーダ灰を追加してください。約',
|
|
198
|
+
raiseSuffix: 'g で目標の pH に',
|
|
199
|
+
lowerPrefix: 'クエン酸または酢を追加してください。約',
|
|
200
|
+
lowerSuffix: 'ml で目標の pH に',
|
|
201
|
+
},
|
|
202
|
+
proteinFibers: [
|
|
203
|
+
{ id: 'wool', name: 'ウール / メリノ', icon: 'mdi:sheep' },
|
|
204
|
+
{ id: 'silk', name: 'シルク', icon: 'mdi:ticket-percent' },
|
|
205
|
+
{ id: 'cashmere', name: 'カシミヤ', icon: 'mdi:crown' },
|
|
206
|
+
{ id: 'mohair', name: 'モヘア', icon: 'mdi:shimmer' },
|
|
207
|
+
{ id: 'angora', name: 'アンゴラ', icon: 'mdi:rabbit' },
|
|
208
|
+
{ id: 'alpaca', name: 'アルパカ', icon: 'mdi:image-filter-hdr' },
|
|
209
|
+
],
|
|
210
|
+
cellulosicFibers: [
|
|
211
|
+
{ id: 'cotton', name: 'コットン', icon: 'mdi:tshirt-crew' },
|
|
212
|
+
{ id: 'linen', name: 'リネン', icon: 'mdi:leaf' },
|
|
213
|
+
],
|
|
214
|
+
},
|
|
215
|
+
};
|