@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,236 +1,236 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { FabricProjectCalculatorUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'fabric-project-calculator';
|
|
7
|
-
const title = 'アイテム別生地必要量計算機';
|
|
8
|
-
const description =
|
|
9
|
-
'スカート、パンツ、ドレス、シャツを縫うために必要な生地の量を簡単に計算します。生地幅やサイズに合わせて、プロ仕様の裁断プランを提案します。';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: 'スカートにはどのくらいの生地が必要ですか?',
|
|
14
|
-
answer:
|
|
15
|
-
'生地幅によって異なります。140〜150cm幅の生地でタイトスカートを作る場合、通常1.20メートルで十分です。90〜110cm幅の場合は、2.00メートル必要になります。',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: '生地幅は必要量にどのように影響しますか?',
|
|
19
|
-
answer:
|
|
20
|
-
'生地幅が狭いと、型紙のパーツを横に並べて配置できないため、パーツを縦に並べる必要があり、通常は2倍の長さが必要になります。',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: '生地は多めに買ったほうがいいですか?',
|
|
24
|
-
answer:
|
|
25
|
-
'はい、洗濯による縮みや織りキズ、予期せぬ縫い代などを考慮して、10%(約20cm)程度の余裕を持つことが推奨されます。',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: '地の目(布目)とは何ですか?',
|
|
29
|
-
answer:
|
|
30
|
-
'生地の耳に対して平行な方向のことです。着用時に型崩れを防ぐために、型紙はこの地の目に沿って配置する必要があります。',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'アイテムの種類を選択',
|
|
37
|
-
text: '製作するモデル(スカート、パンツなど)を選択して、基本の必要量テーブルを読み込みます。',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: '生地幅を入力',
|
|
41
|
-
text: '購入予定の生地の耳から耳までの幅(90、115、140、150cm)を測定します。',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'サイズを選択',
|
|
45
|
-
text: 'サイズ(XS-S、M-L、XL-XXL)に合わせてボリュームを調整し、乗数を再計算します。',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: '合計メーター数を確認',
|
|
49
|
-
text: '縫い代を含めた最終的な結果を確認し、ショップで注文する正確な量を把握します。',
|
|
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<FabricProjectCalculatorUI> = {
|
|
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: 'ソーイングにおいて最も多い悩みの一つが、特定のプロジェクトのためにどれくらいの生地を買えばいいかを判断することです。生地の必要量は、アイテムのデザイン、個人のサイズ、そして何よりも生地の幅(通常90cm〜150cm)という3つの要素によって大きく変わります。この計算機は、買いすぎや裁断途中の生地不足を防ぐために、計算を体系化しています。',
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
type: 'title',
|
|
106
|
-
text: 'ドレスやパンツにはどれくらいの生地が必要ですか?',
|
|
107
|
-
level: 3,
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
type: 'paragraph',
|
|
111
|
-
html: '伝統的な計算方法は、着丈に袖丈を加え、見返しや裾の余裕を持たせるというものです。しかし、生地幅が狭い(90〜110cm)場合、パーツを横に並べることができず、2倍の長さを購入する必要があります。当ツールは、繊維業界の標準に従って、これらのバリエーションを自動的に計算に入れます。',
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
type: 'title',
|
|
115
|
-
text: '生地幅別の推定必要量(サイズM-Lの場合)',
|
|
116
|
-
level: 3,
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
type: 'list',
|
|
120
|
-
items: [
|
|
121
|
-
'<strong>タイトスカート:</strong> 90cm幅で2.00m ・ 140/150cm幅で1.20m',
|
|
122
|
-
'<strong>ロングパンツ:</strong> 90cm幅で2.50m ・ 140/150cm幅で1.50m',
|
|
123
|
-
'<strong>長袖シャツ:</strong> 90cm幅で2.20m ・ 140/150cm幅で1.40m',
|
|
124
|
-
'<strong>ベーシックドレス:</strong> 90cm幅で3.50m ・ 140/150cm幅で2.20m',
|
|
125
|
-
],
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
type: 'title',
|
|
129
|
-
text: '生地必要量に影響を与える要因',
|
|
130
|
-
level: 3,
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
type: 'list',
|
|
134
|
-
items: [
|
|
135
|
-
'<strong>柄の方向(リピート):</strong> 生地に向きのある柄やチェック柄(柄合わせが必要なもの)がある場合、材料を15%から20%余分に用意する必要があります。',
|
|
136
|
-
'<strong>裁断の向き(バイアス):</strong> バイアス裁断やサーキュラースカート(全円スカート)などは、角度による無駄が多く出るため、大幅に多くの生地を消費します。',
|
|
137
|
-
'<strong>毛並みの向き:</strong> ベルベットやコーデュロイのような生地では、すべてのパーツを同じ方向に裁断する必要があり、パズルのような効率的な配置が制限されます。',
|
|
138
|
-
'<strong>縮み:</strong> 多くの天然繊維(綿、リネン、ウール)は最初の洗濯で縮みます。裁断前に水通しをすることが不可欠です。',
|
|
139
|
-
],
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
type: 'tip',
|
|
143
|
-
title: '仕立て屋のヒント',
|
|
144
|
-
html: '<p>大きな柄やチェック柄(格子)を使用する場合は、標準の寸法だけに頼らないでください。計算された合計メーター数に、必ず柄の1リピート分(ラポール)を加えて、脇の縫い目で柄が合うように調整してください。</p>',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
type: 'title',
|
|
148
|
-
text: 'この計算機のメリットと注意点',
|
|
149
|
-
level: 3,
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
type: 'list',
|
|
153
|
-
items: [
|
|
154
|
-
'サイズ調整可能な、複数の生地幅に対応した即時計算。',
|
|
155
|
-
'カスタマイズ可能な縫い代の見積もりを含む。',
|
|
156
|
-
'生地上のパーツ配置(マーキング)の視覚的なガイド。',
|
|
157
|
-
'実際の型紙配置の代わりにはなりません。プラスサイズの場合は、手動での追加調整が必要になる場合があります。',
|
|
158
|
-
],
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
type: 'card',
|
|
162
|
-
title: '生地幅',
|
|
163
|
-
icon: 'mdi:arrow-expand-horizontal',
|
|
164
|
-
html: '生地の<strong>耳から耳まで</strong>の横方向の寸法です。型紙のパーツを並べて配置できるか、縦に並べる必要があるかを決定します。',
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
type: 'card',
|
|
168
|
-
title: '縫い代',
|
|
169
|
-
icon: 'mdi:tape-measure',
|
|
170
|
-
html: '型紙の端から<strong>出来上がり線(縫い目)</strong>までの距離です。衣料品の場合、標準的な値は1.5cmです。',
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
type: 'card',
|
|
174
|
-
title: '耳(セルビッジ)',
|
|
175
|
-
icon: 'mdi:content-cut',
|
|
176
|
-
html: '生地の両端にある、<strong>ほつれない</strong>補強された部分です。地の目の方向を示し、裁断の基準となります。',
|
|
177
|
-
},
|
|
178
|
-
],
|
|
179
|
-
ui: {
|
|
180
|
-
sectionProject: 'プロジェクト',
|
|
181
|
-
sectionMaterial: '材料',
|
|
182
|
-
labelGarmentType: 'アイテムの種類',
|
|
183
|
-
labelSize: 'サイズ',
|
|
184
|
-
labelFabricWidth: '生地幅 (cm)',
|
|
185
|
-
labelSeamAllowance: '縫い代 (cm)',
|
|
186
|
-
garmentSkirt: 'スカート (タイト/Aライン)',
|
|
187
|
-
garmentPants: 'パンツ',
|
|
188
|
-
garmentDress: 'ドレス',
|
|
189
|
-
garmentShirt: 'シャツ / ブラウス',
|
|
190
|
-
garmentCoat: 'コート / ジャケット',
|
|
191
|
-
garmentTote: 'トートバッグ',
|
|
192
|
-
garmentMerceria: {
|
|
193
|
-
skirt: '20cmファスナーx1、ボタンx1',
|
|
194
|
-
pants: '20cmファスナーx1、ボタンx1、芯地30cm',
|
|
195
|
-
dress: '60cmファスナーx1、芯地50cm',
|
|
196
|
-
shirt: 'ボタンx7、薄手芯地1m',
|
|
197
|
-
coat: '大きめボタンx3、芯地1.5m、裏地',
|
|
198
|
-
tote: '持ち手用テープ2m',
|
|
199
|
-
},
|
|
200
|
-
sizeXS: 'XS-S',
|
|
201
|
-
sizeM: 'M-L',
|
|
202
|
-
sizeXL: 'XL-XXL',
|
|
203
|
-
width90: '90 cm (小幅/シングル)',
|
|
204
|
-
width115: '115 cm (パッチワーク/US)',
|
|
205
|
-
width140: '140 cm (EU標準)',
|
|
206
|
-
width150: '150 cm (広幅/インテリア)',
|
|
207
|
-
btnClear: 'リセット',
|
|
208
|
-
btnShare: '共有',
|
|
209
|
-
btnCopied: 'コピーしました',
|
|
210
|
-
btnCopyList: 'リストをコピー',
|
|
211
|
-
resultLabel: '必要な量:',
|
|
212
|
-
resultUnit: 'メートル',
|
|
213
|
-
shopAdviceFormat: 'ショップで「{m}m」と注文してください',
|
|
214
|
-
boardEmpty: 'アイテムを選択して配置図を表示',
|
|
215
|
-
boardDescFormat: '幅: {w}cm | 長さ: {m}m',
|
|
216
|
-
merchTitle: '手芸用品と副資材',
|
|
217
|
-
checklistThread: '対応するミシン糸',
|
|
218
|
-
warningSerialFormat: '{w}cm幅の生地では、このサイズのパーツを横に並べられません。縦に並べる裁断プランに変更しました。',
|
|
219
|
-
foldLabel: '⊟ わ(折り目)',
|
|
220
|
-
pieceNames: {
|
|
221
|
-
front: '前身頃',
|
|
222
|
-
back: '後身頃',
|
|
223
|
-
waistband: 'ウエストバンド',
|
|
224
|
-
waistbelt: 'ベルト',
|
|
225
|
-
sleeve: '袖',
|
|
226
|
-
collar: '襟',
|
|
227
|
-
cuffs: 'カフス',
|
|
228
|
-
facings: '見返し',
|
|
229
|
-
lapels: 'ラペル',
|
|
230
|
-
pocket: 'ポケット',
|
|
231
|
-
body: '本体',
|
|
232
|
-
handleA: '持ち手A',
|
|
233
|
-
handleB: '持ち手B',
|
|
234
|
-
},
|
|
235
|
-
},
|
|
236
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { FabricProjectCalculatorUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'fabric-project-calculator';
|
|
7
|
+
const title = 'アイテム別生地必要量計算機';
|
|
8
|
+
const description =
|
|
9
|
+
'スカート、パンツ、ドレス、シャツを縫うために必要な生地の量を簡単に計算します。生地幅やサイズに合わせて、プロ仕様の裁断プランを提案します。';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'スカートにはどのくらいの生地が必要ですか?',
|
|
14
|
+
answer:
|
|
15
|
+
'生地幅によって異なります。140〜150cm幅の生地でタイトスカートを作る場合、通常1.20メートルで十分です。90〜110cm幅の場合は、2.00メートル必要になります。',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '生地幅は必要量にどのように影響しますか?',
|
|
19
|
+
answer:
|
|
20
|
+
'生地幅が狭いと、型紙のパーツを横に並べて配置できないため、パーツを縦に並べる必要があり、通常は2倍の長さが必要になります。',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '生地は多めに買ったほうがいいですか?',
|
|
24
|
+
answer:
|
|
25
|
+
'はい、洗濯による縮みや織りキズ、予期せぬ縫い代などを考慮して、10%(約20cm)程度の余裕を持つことが推奨されます。',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '地の目(布目)とは何ですか?',
|
|
29
|
+
answer:
|
|
30
|
+
'生地の耳に対して平行な方向のことです。着用時に型崩れを防ぐために、型紙はこの地の目に沿って配置する必要があります。',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'アイテムの種類を選択',
|
|
37
|
+
text: '製作するモデル(スカート、パンツなど)を選択して、基本の必要量テーブルを読み込みます。',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: '生地幅を入力',
|
|
41
|
+
text: '購入予定の生地の耳から耳までの幅(90、115、140、150cm)を測定します。',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'サイズを選択',
|
|
45
|
+
text: 'サイズ(XS-S、M-L、XL-XXL)に合わせてボリュームを調整し、乗数を再計算します。',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '合計メーター数を確認',
|
|
49
|
+
text: '縫い代を含めた最終的な結果を確認し、ショップで注文する正確な量を把握します。',
|
|
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<FabricProjectCalculatorUI> = {
|
|
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: 'ソーイングにおいて最も多い悩みの一つが、特定のプロジェクトのためにどれくらいの生地を買えばいいかを判断することです。生地の必要量は、アイテムのデザイン、個人のサイズ、そして何よりも生地の幅(通常90cm〜150cm)という3つの要素によって大きく変わります。この計算機は、買いすぎや裁断途中の生地不足を防ぐために、計算を体系化しています。',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'title',
|
|
106
|
+
text: 'ドレスやパンツにはどれくらいの生地が必要ですか?',
|
|
107
|
+
level: 3,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type: 'paragraph',
|
|
111
|
+
html: '伝統的な計算方法は、着丈に袖丈を加え、見返しや裾の余裕を持たせるというものです。しかし、生地幅が狭い(90〜110cm)場合、パーツを横に並べることができず、2倍の長さを購入する必要があります。当ツールは、繊維業界の標準に従って、これらのバリエーションを自動的に計算に入れます。',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: '生地幅別の推定必要量(サイズM-Lの場合)',
|
|
116
|
+
level: 3,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'list',
|
|
120
|
+
items: [
|
|
121
|
+
'<strong>タイトスカート:</strong> 90cm幅で2.00m ・ 140/150cm幅で1.20m',
|
|
122
|
+
'<strong>ロングパンツ:</strong> 90cm幅で2.50m ・ 140/150cm幅で1.50m',
|
|
123
|
+
'<strong>長袖シャツ:</strong> 90cm幅で2.20m ・ 140/150cm幅で1.40m',
|
|
124
|
+
'<strong>ベーシックドレス:</strong> 90cm幅で3.50m ・ 140/150cm幅で2.20m',
|
|
125
|
+
],
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type: 'title',
|
|
129
|
+
text: '生地必要量に影響を与える要因',
|
|
130
|
+
level: 3,
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
type: 'list',
|
|
134
|
+
items: [
|
|
135
|
+
'<strong>柄の方向(リピート):</strong> 生地に向きのある柄やチェック柄(柄合わせが必要なもの)がある場合、材料を15%から20%余分に用意する必要があります。',
|
|
136
|
+
'<strong>裁断の向き(バイアス):</strong> バイアス裁断やサーキュラースカート(全円スカート)などは、角度による無駄が多く出るため、大幅に多くの生地を消費します。',
|
|
137
|
+
'<strong>毛並みの向き:</strong> ベルベットやコーデュロイのような生地では、すべてのパーツを同じ方向に裁断する必要があり、パズルのような効率的な配置が制限されます。',
|
|
138
|
+
'<strong>縮み:</strong> 多くの天然繊維(綿、リネン、ウール)は最初の洗濯で縮みます。裁断前に水通しをすることが不可欠です。',
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
type: 'tip',
|
|
143
|
+
title: '仕立て屋のヒント',
|
|
144
|
+
html: '<p>大きな柄やチェック柄(格子)を使用する場合は、標準の寸法だけに頼らないでください。計算された合計メーター数に、必ず柄の1リピート分(ラポール)を加えて、脇の縫い目で柄が合うように調整してください。</p>',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: 'この計算機のメリットと注意点',
|
|
149
|
+
level: 3,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'list',
|
|
153
|
+
items: [
|
|
154
|
+
'サイズ調整可能な、複数の生地幅に対応した即時計算。',
|
|
155
|
+
'カスタマイズ可能な縫い代の見積もりを含む。',
|
|
156
|
+
'生地上のパーツ配置(マーキング)の視覚的なガイド。',
|
|
157
|
+
'実際の型紙配置の代わりにはなりません。プラスサイズの場合は、手動での追加調整が必要になる場合があります。',
|
|
158
|
+
],
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
type: 'card',
|
|
162
|
+
title: '生地幅',
|
|
163
|
+
icon: 'mdi:arrow-expand-horizontal',
|
|
164
|
+
html: '生地の<strong>耳から耳まで</strong>の横方向の寸法です。型紙のパーツを並べて配置できるか、縦に並べる必要があるかを決定します。',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'card',
|
|
168
|
+
title: '縫い代',
|
|
169
|
+
icon: 'mdi:tape-measure',
|
|
170
|
+
html: '型紙の端から<strong>出来上がり線(縫い目)</strong>までの距離です。衣料品の場合、標準的な値は1.5cmです。',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
type: 'card',
|
|
174
|
+
title: '耳(セルビッジ)',
|
|
175
|
+
icon: 'mdi:content-cut',
|
|
176
|
+
html: '生地の両端にある、<strong>ほつれない</strong>補強された部分です。地の目の方向を示し、裁断の基準となります。',
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
ui: {
|
|
180
|
+
sectionProject: 'プロジェクト',
|
|
181
|
+
sectionMaterial: '材料',
|
|
182
|
+
labelGarmentType: 'アイテムの種類',
|
|
183
|
+
labelSize: 'サイズ',
|
|
184
|
+
labelFabricWidth: '生地幅 (cm)',
|
|
185
|
+
labelSeamAllowance: '縫い代 (cm)',
|
|
186
|
+
garmentSkirt: 'スカート (タイト/Aライン)',
|
|
187
|
+
garmentPants: 'パンツ',
|
|
188
|
+
garmentDress: 'ドレス',
|
|
189
|
+
garmentShirt: 'シャツ / ブラウス',
|
|
190
|
+
garmentCoat: 'コート / ジャケット',
|
|
191
|
+
garmentTote: 'トートバッグ',
|
|
192
|
+
garmentMerceria: {
|
|
193
|
+
skirt: '20cmファスナーx1、ボタンx1',
|
|
194
|
+
pants: '20cmファスナーx1、ボタンx1、芯地30cm',
|
|
195
|
+
dress: '60cmファスナーx1、芯地50cm',
|
|
196
|
+
shirt: 'ボタンx7、薄手芯地1m',
|
|
197
|
+
coat: '大きめボタンx3、芯地1.5m、裏地',
|
|
198
|
+
tote: '持ち手用テープ2m',
|
|
199
|
+
},
|
|
200
|
+
sizeXS: 'XS-S',
|
|
201
|
+
sizeM: 'M-L',
|
|
202
|
+
sizeXL: 'XL-XXL',
|
|
203
|
+
width90: '90 cm (小幅/シングル)',
|
|
204
|
+
width115: '115 cm (パッチワーク/US)',
|
|
205
|
+
width140: '140 cm (EU標準)',
|
|
206
|
+
width150: '150 cm (広幅/インテリア)',
|
|
207
|
+
btnClear: 'リセット',
|
|
208
|
+
btnShare: '共有',
|
|
209
|
+
btnCopied: 'コピーしました',
|
|
210
|
+
btnCopyList: 'リストをコピー',
|
|
211
|
+
resultLabel: '必要な量:',
|
|
212
|
+
resultUnit: 'メートル',
|
|
213
|
+
shopAdviceFormat: 'ショップで「{m}m」と注文してください',
|
|
214
|
+
boardEmpty: 'アイテムを選択して配置図を表示',
|
|
215
|
+
boardDescFormat: '幅: {w}cm | 長さ: {m}m',
|
|
216
|
+
merchTitle: '手芸用品と副資材',
|
|
217
|
+
checklistThread: '対応するミシン糸',
|
|
218
|
+
warningSerialFormat: '{w}cm幅の生地では、このサイズのパーツを横に並べられません。縦に並べる裁断プランに変更しました。',
|
|
219
|
+
foldLabel: '⊟ わ(折り目)',
|
|
220
|
+
pieceNames: {
|
|
221
|
+
front: '前身頃',
|
|
222
|
+
back: '後身頃',
|
|
223
|
+
waistband: 'ウエストバンド',
|
|
224
|
+
waistbelt: 'ベルト',
|
|
225
|
+
sleeve: '袖',
|
|
226
|
+
collar: '襟',
|
|
227
|
+
cuffs: 'カフス',
|
|
228
|
+
facings: '見返し',
|
|
229
|
+
lapels: 'ラペル',
|
|
230
|
+
pocket: 'ポケット',
|
|
231
|
+
body: '本体',
|
|
232
|
+
handleA: '持ち手A',
|
|
233
|
+
handleB: '持ち手B',
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
};
|