@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,87 +1,87 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { SewingPatternScalerUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'skalning-symonster';
|
|
7
|
-
const title = 'Onlineverktyg för storleksändring av symönster';
|
|
8
|
-
const description = 'Anpassa valfritt symönster till dina verkliga mått. Kalkylator för differentiell skalning med förhandsgranskning av det uppdaterade mönstret.';
|
|
9
|
-
|
|
10
|
-
const faqData = [
|
|
11
|
-
{
|
|
12
|
-
question: 'Varför växer inte axeln lika mycket som bysten?',
|
|
13
|
-
answer: 'Människokroppen är ingen sfär. Medan volymen på bålen kan variera avsevärt, är skelettet och artikulationspunkter som axeln mycket mer statiska. En professionell storleksändring (grading) använder differentierade faktorer för att inte obalansera plagget.',
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
question: 'Vad är "rörelsevidd" eller "ease"?',
|
|
17
|
-
answer: 'Det är det extra utrymmet mellan din kropp och tyget. Utan rörelsevidd skulle du inte kunna röra dig. Vår kalkylator bibehåller denna rörelsevidd så att plagget passar dig så som designern tänkte sig, men anpassat till dina verkliga konturer.',
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
question: 'Kan jag skala ett mönster för stickat eller jersey?',
|
|
21
|
-
answer: 'Ja, men tänk på att elastiska tyger ofta har negativ rörelsevidd. Om mönstret är mycket åtsittande, se till att elasticitetsfaktorn i det nya tyget du väljer är densamma som i originaltyget.',
|
|
22
|
-
},
|
|
23
|
-
];
|
|
24
|
-
|
|
25
|
-
const howToData = [
|
|
26
|
-
{
|
|
27
|
-
name: 'Mät ditt mönster',
|
|
28
|
-
text: 'Mät de viktigaste horisontella linjerna (byst, midja och höft) på pappersdelarna i ditt originalmönster, från söm till söm.',
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
name: 'Konfigurera ursprung',
|
|
32
|
-
text: 'Ange mönstrets storlek eller måtten du har tagit i kolumnen "Ursprung" i vårt verktyg.',
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
name: 'Ange mål',
|
|
36
|
-
text: 'Ange dina verkliga mått eller storleken du vill nå. Verktyget beräknar den exakta skillnaden per zon.',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
name: 'Applicera på klippbordet',
|
|
40
|
-
text: 'Följ instruktionerna "Åtgärder på klippbordet" för att lägga till eller ta bort centimeter på sidorna och nederkanterna av dina mönsterdelar.',
|
|
41
|
-
},
|
|
42
|
-
];
|
|
43
|
-
|
|
44
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
45
|
-
'@context': 'https://schema.org',
|
|
46
|
-
'@type': 'FAQPage',
|
|
47
|
-
mainEntity: faqData.map((item) => ({
|
|
48
|
-
'@type': 'Question',
|
|
49
|
-
name: item.question,
|
|
50
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
51
|
-
})),
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
const howToSchema: WithContext<HowTo> = {
|
|
55
|
-
'@context': 'https://schema.org',
|
|
56
|
-
'@type': 'HowTo',
|
|
57
|
-
name: title,
|
|
58
|
-
description,
|
|
59
|
-
step: howToData.map((step) => ({
|
|
60
|
-
'@type': 'HowToStep',
|
|
61
|
-
name: step.name,
|
|
62
|
-
text: step.text,
|
|
63
|
-
})),
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
67
|
-
'@context': 'https://schema.org',
|
|
68
|
-
'@type': 'SoftwareApplication',
|
|
69
|
-
name: title,
|
|
70
|
-
description,
|
|
71
|
-
applicationCategory: 'UtilityApplication',
|
|
72
|
-
operatingSystem: 'All',
|
|
73
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
74
|
-
inLanguage: 'sv',
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
78
|
-
slug,
|
|
79
|
-
title,
|
|
80
|
-
description,
|
|
81
|
-
faq: faqData,
|
|
82
|
-
bibliography: bibliography,
|
|
83
|
-
howTo: howToData,
|
|
84
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { SewingPatternScalerUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'skalning-symonster';
|
|
7
|
+
const title = 'Onlineverktyg för storleksändring av symönster';
|
|
8
|
+
const description = 'Anpassa valfritt symönster till dina verkliga mått. Kalkylator för differentiell skalning med förhandsgranskning av det uppdaterade mönstret.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Varför växer inte axeln lika mycket som bysten?',
|
|
13
|
+
answer: 'Människokroppen är ingen sfär. Medan volymen på bålen kan variera avsevärt, är skelettet och artikulationspunkter som axeln mycket mer statiska. En professionell storleksändring (grading) använder differentierade faktorer för att inte obalansera plagget.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Vad är "rörelsevidd" eller "ease"?',
|
|
17
|
+
answer: 'Det är det extra utrymmet mellan din kropp och tyget. Utan rörelsevidd skulle du inte kunna röra dig. Vår kalkylator bibehåller denna rörelsevidd så att plagget passar dig så som designern tänkte sig, men anpassat till dina verkliga konturer.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Kan jag skala ett mönster för stickat eller jersey?',
|
|
21
|
+
answer: 'Ja, men tänk på att elastiska tyger ofta har negativ rörelsevidd. Om mönstret är mycket åtsittande, se till att elasticitetsfaktorn i det nya tyget du väljer är densamma som i originaltyget.',
|
|
22
|
+
},
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
const howToData = [
|
|
26
|
+
{
|
|
27
|
+
name: 'Mät ditt mönster',
|
|
28
|
+
text: 'Mät de viktigaste horisontella linjerna (byst, midja och höft) på pappersdelarna i ditt originalmönster, från söm till söm.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Konfigurera ursprung',
|
|
32
|
+
text: 'Ange mönstrets storlek eller måtten du har tagit i kolumnen "Ursprung" i vårt verktyg.',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Ange mål',
|
|
36
|
+
text: 'Ange dina verkliga mått eller storleken du vill nå. Verktyget beräknar den exakta skillnaden per zon.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Applicera på klippbordet',
|
|
40
|
+
text: 'Följ instruktionerna "Åtgärder på klippbordet" för att lägga till eller ta bort centimeter på sidorna och nederkanterna av dina mönsterdelar.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
45
|
+
'@context': 'https://schema.org',
|
|
46
|
+
'@type': 'FAQPage',
|
|
47
|
+
mainEntity: faqData.map((item) => ({
|
|
48
|
+
'@type': 'Question',
|
|
49
|
+
name: item.question,
|
|
50
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
51
|
+
})),
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const howToSchema: WithContext<HowTo> = {
|
|
55
|
+
'@context': 'https://schema.org',
|
|
56
|
+
'@type': 'HowTo',
|
|
57
|
+
name: title,
|
|
58
|
+
description,
|
|
59
|
+
step: howToData.map((step) => ({
|
|
60
|
+
'@type': 'HowToStep',
|
|
61
|
+
name: step.name,
|
|
62
|
+
text: step.text,
|
|
63
|
+
})),
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
67
|
+
'@context': 'https://schema.org',
|
|
68
|
+
'@type': 'SoftwareApplication',
|
|
69
|
+
name: title,
|
|
70
|
+
description,
|
|
71
|
+
applicationCategory: 'UtilityApplication',
|
|
72
|
+
operatingSystem: 'All',
|
|
73
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
74
|
+
inLanguage: 'sv',
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
78
|
+
slug,
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
faq: faqData,
|
|
82
|
+
bibliography: bibliography,
|
|
83
|
+
howTo: howToData,
|
|
84
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
85
85
|
seo: [
|
|
86
86
|
{
|
|
87
87
|
type: 'title',
|
|
@@ -150,33 +150,33 @@ export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
|
150
150
|
],
|
|
151
151
|
},
|
|
152
152
|
],
|
|
153
|
-
ui: {
|
|
154
|
-
labelSystem: 'ARBETSSYSTEM',
|
|
155
|
-
modeStandard: 'Standardstorlekar',
|
|
156
|
-
modeCustom: 'Verkliga mått',
|
|
157
|
-
labelPatternSize: 'Mönsterstorlek',
|
|
158
|
-
labelTargetSize: 'Målstorlek',
|
|
159
|
-
labelOriginMeasures: 'URSPRUNGSMÅTT',
|
|
160
|
-
labelTargetMeasures: 'DINA MÅTT',
|
|
161
|
-
labelEase: 'Nuvarande vidd (Ease)',
|
|
162
|
-
labelChest: 'Byst',
|
|
163
|
-
labelWaist: 'Midja',
|
|
164
|
-
labelHips: 'Höft',
|
|
165
|
-
labelLength: 'Längd',
|
|
166
|
-
resBust: 'Byst',
|
|
167
|
-
resWaist: 'Midja',
|
|
168
|
-
resHips: 'Höft',
|
|
169
|
-
resLength: 'Längd',
|
|
170
|
-
actionLatAdd: 'Lägg till',
|
|
171
|
-
actionLatRemove: 'Ta bort',
|
|
172
|
-
actionLatSuffix: 'på sidan av mönsterdelen',
|
|
173
|
-
actionLatNote: 'Justering per fjärdedels mönster',
|
|
174
|
-
actionLenExtend: 'Förläng mönstret',
|
|
175
|
-
actionLenShorten: 'Förkorta mönstret',
|
|
176
|
-
actionLenNote: 'Justering på nederkantslinjen',
|
|
177
|
-
legendOriginal: 'Original',
|
|
178
|
-
legendUpdated: 'Uppdaterat',
|
|
179
|
-
warnText: 'Skalning över 3 storlekar. Risk för deformation i ärmhål.',
|
|
180
|
-
sizePrefix: 'Storlek',
|
|
181
|
-
},
|
|
182
|
-
};
|
|
153
|
+
ui: {
|
|
154
|
+
labelSystem: 'ARBETSSYSTEM',
|
|
155
|
+
modeStandard: 'Standardstorlekar',
|
|
156
|
+
modeCustom: 'Verkliga mått',
|
|
157
|
+
labelPatternSize: 'Mönsterstorlek',
|
|
158
|
+
labelTargetSize: 'Målstorlek',
|
|
159
|
+
labelOriginMeasures: 'URSPRUNGSMÅTT',
|
|
160
|
+
labelTargetMeasures: 'DINA MÅTT',
|
|
161
|
+
labelEase: 'Nuvarande vidd (Ease)',
|
|
162
|
+
labelChest: 'Byst',
|
|
163
|
+
labelWaist: 'Midja',
|
|
164
|
+
labelHips: 'Höft',
|
|
165
|
+
labelLength: 'Längd',
|
|
166
|
+
resBust: 'Byst',
|
|
167
|
+
resWaist: 'Midja',
|
|
168
|
+
resHips: 'Höft',
|
|
169
|
+
resLength: 'Längd',
|
|
170
|
+
actionLatAdd: 'Lägg till',
|
|
171
|
+
actionLatRemove: 'Ta bort',
|
|
172
|
+
actionLatSuffix: 'på sidan av mönsterdelen',
|
|
173
|
+
actionLatNote: 'Justering per fjärdedels mönster',
|
|
174
|
+
actionLenExtend: 'Förläng mönstret',
|
|
175
|
+
actionLenShorten: 'Förkorta mönstret',
|
|
176
|
+
actionLenNote: 'Justering på nederkantslinjen',
|
|
177
|
+
legendOriginal: 'Original',
|
|
178
|
+
legendUpdated: 'Uppdaterat',
|
|
179
|
+
warnText: 'Skalning över 3 storlekar. Risk för deformation i ärmhål.',
|
|
180
|
+
sizePrefix: 'Storlek',
|
|
181
|
+
},
|
|
182
|
+
};
|
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { SewingPatternScalerUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'dikis-kalibi-olceklendirici';
|
|
7
|
-
const title = 'Online Dikiş Kalıbı Ölçeklendirme (Serileme) Aracı';
|
|
8
|
-
const description = 'Herhangi bir dikiş kalıbını gerçek vücut ölçülerinize göre ayarlayın. Güncellenmiş kalıp önizlemeli diferansiyel ölçeklendirme hesaplayıcısı.';
|
|
9
|
-
|
|
10
|
-
const faqData = [
|
|
11
|
-
{
|
|
12
|
-
question: 'Omuz neden göğüsle aynı oranda büyümüyor?',
|
|
13
|
-
answer: 'İnsan vücudu bir küre değildir. Gövde hacmi önemli ölçüde değişebilirken, iskelet ve omuz gibi eklem noktaları çok daha statiktir. Profesyonel bir serileme (grading), giysinin dengesini bozmamak için bölgelere göre farklı katsayılar uygular.',
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
question: '"Rahatlık payı" veya "ease" nedir?',
|
|
17
|
-
answer: 'Vücudunuz ile kumaş arasındaki fazladan boşluktur. Rahatlık payı olmasaydı hareket edemezdiniz. Hesaplayıcımız bu payı korur, böylece giysi tasarımcının hayal ettiği gibi durur ancak sizin gerçek hatlarınıza uyarlanır.',
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
question: 'Örgü veya jarse kalıbını ölçeklendirebilir miyim?',
|
|
21
|
-
answer: 'Evet, ancak elastik kumaşların genellikle negatif rahatlık payına sahip olduğunu unutmayın. Kalıp çok darsa, seçeceğiniz yeni kumaşın esneklik faktörünün orijinaliyle aynı olduğundan emin olun.',
|
|
22
|
-
},
|
|
23
|
-
];
|
|
24
|
-
|
|
25
|
-
const howToData = [
|
|
26
|
-
{
|
|
27
|
-
name: 'Kalıbınızı ölçün',
|
|
28
|
-
text: 'Orijinal kağıt kalıp parçalarınız üzerindeki temel yatay çizgileri (göğüs, bel ve kalça) dikişten dikişe ölçün.',
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
name: 'Kaynağı yapılandırın',
|
|
32
|
-
text: 'Kalıp bedenini veya aldığınız ölçüleri aracımızdaki "Kaynak" (Origin) sütununa girin.',
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
name: 'Hedefi girin',
|
|
36
|
-
text: 'Gerçek ölçülerinizi veya ulaşmak istediğiniz hedef bedeni girin. Araç, bölge başına tam farkı hesaplayacaktır.',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
name: 'Kesim masasında uygulayın',
|
|
40
|
-
text: 'Parçalarınızın yanlarına ve etek uçlarına santimetre eklemek veya çıkarmak için "Kesim Masası İşlemleri" talimatlarını izleyin.',
|
|
41
|
-
},
|
|
42
|
-
];
|
|
43
|
-
|
|
44
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
45
|
-
'@context': 'https://schema.org',
|
|
46
|
-
'@type': 'FAQPage',
|
|
47
|
-
mainEntity: faqData.map((item) => ({
|
|
48
|
-
'@type': 'Question',
|
|
49
|
-
name: item.question,
|
|
50
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
51
|
-
})),
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
const howToSchema: WithContext<HowTo> = {
|
|
55
|
-
'@context': 'https://schema.org',
|
|
56
|
-
'@type': 'HowTo',
|
|
57
|
-
name: title,
|
|
58
|
-
description,
|
|
59
|
-
step: howToData.map((step) => ({
|
|
60
|
-
'@type': 'HowToStep',
|
|
61
|
-
name: step.name,
|
|
62
|
-
text: step.text,
|
|
63
|
-
})),
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
67
|
-
'@context': 'https://schema.org',
|
|
68
|
-
'@type': 'SoftwareApplication',
|
|
69
|
-
name: title,
|
|
70
|
-
description,
|
|
71
|
-
applicationCategory: 'UtilityApplication',
|
|
72
|
-
operatingSystem: 'All',
|
|
73
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
74
|
-
inLanguage: 'tr',
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
78
|
-
slug,
|
|
79
|
-
title,
|
|
80
|
-
description,
|
|
81
|
-
faq: faqData,
|
|
82
|
-
bibliography: bibliography,
|
|
83
|
-
howTo: howToData,
|
|
84
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { SewingPatternScalerUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'dikis-kalibi-olceklendirici';
|
|
7
|
+
const title = 'Online Dikiş Kalıbı Ölçeklendirme (Serileme) Aracı';
|
|
8
|
+
const description = 'Herhangi bir dikiş kalıbını gerçek vücut ölçülerinize göre ayarlayın. Güncellenmiş kalıp önizlemeli diferansiyel ölçeklendirme hesaplayıcısı.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Omuz neden göğüsle aynı oranda büyümüyor?',
|
|
13
|
+
answer: 'İnsan vücudu bir küre değildir. Gövde hacmi önemli ölçüde değişebilirken, iskelet ve omuz gibi eklem noktaları çok daha statiktir. Profesyonel bir serileme (grading), giysinin dengesini bozmamak için bölgelere göre farklı katsayılar uygular.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '"Rahatlık payı" veya "ease" nedir?',
|
|
17
|
+
answer: 'Vücudunuz ile kumaş arasındaki fazladan boşluktur. Rahatlık payı olmasaydı hareket edemezdiniz. Hesaplayıcımız bu payı korur, böylece giysi tasarımcının hayal ettiği gibi durur ancak sizin gerçek hatlarınıza uyarlanır.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Örgü veya jarse kalıbını ölçeklendirebilir miyim?',
|
|
21
|
+
answer: 'Evet, ancak elastik kumaşların genellikle negatif rahatlık payına sahip olduğunu unutmayın. Kalıp çok darsa, seçeceğiniz yeni kumaşın esneklik faktörünün orijinaliyle aynı olduğundan emin olun.',
|
|
22
|
+
},
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
const howToData = [
|
|
26
|
+
{
|
|
27
|
+
name: 'Kalıbınızı ölçün',
|
|
28
|
+
text: 'Orijinal kağıt kalıp parçalarınız üzerindeki temel yatay çizgileri (göğüs, bel ve kalça) dikişten dikişe ölçün.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Kaynağı yapılandırın',
|
|
32
|
+
text: 'Kalıp bedenini veya aldığınız ölçüleri aracımızdaki "Kaynak" (Origin) sütununa girin.',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Hedefi girin',
|
|
36
|
+
text: 'Gerçek ölçülerinizi veya ulaşmak istediğiniz hedef bedeni girin. Araç, bölge başına tam farkı hesaplayacaktır.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Kesim masasında uygulayın',
|
|
40
|
+
text: 'Parçalarınızın yanlarına ve etek uçlarına santimetre eklemek veya çıkarmak için "Kesim Masası İşlemleri" talimatlarını izleyin.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
45
|
+
'@context': 'https://schema.org',
|
|
46
|
+
'@type': 'FAQPage',
|
|
47
|
+
mainEntity: faqData.map((item) => ({
|
|
48
|
+
'@type': 'Question',
|
|
49
|
+
name: item.question,
|
|
50
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
51
|
+
})),
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const howToSchema: WithContext<HowTo> = {
|
|
55
|
+
'@context': 'https://schema.org',
|
|
56
|
+
'@type': 'HowTo',
|
|
57
|
+
name: title,
|
|
58
|
+
description,
|
|
59
|
+
step: howToData.map((step) => ({
|
|
60
|
+
'@type': 'HowToStep',
|
|
61
|
+
name: step.name,
|
|
62
|
+
text: step.text,
|
|
63
|
+
})),
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
67
|
+
'@context': 'https://schema.org',
|
|
68
|
+
'@type': 'SoftwareApplication',
|
|
69
|
+
name: title,
|
|
70
|
+
description,
|
|
71
|
+
applicationCategory: 'UtilityApplication',
|
|
72
|
+
operatingSystem: 'All',
|
|
73
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
74
|
+
inLanguage: 'tr',
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
78
|
+
slug,
|
|
79
|
+
title,
|
|
80
|
+
description,
|
|
81
|
+
faq: faqData,
|
|
82
|
+
bibliography: bibliography,
|
|
83
|
+
howTo: howToData,
|
|
84
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
85
85
|
seo: [
|
|
86
86
|
{
|
|
87
87
|
type: 'title',
|
|
@@ -150,33 +150,33 @@ export const content: ToolLocaleContent<SewingPatternScalerUI> = {
|
|
|
150
150
|
],
|
|
151
151
|
},
|
|
152
152
|
],
|
|
153
|
-
ui: {
|
|
154
|
-
labelSystem: 'ÇALIŞMA SİSTEMİ',
|
|
155
|
-
modeStandard: 'Standart Bedenler',
|
|
156
|
-
modeCustom: 'Gerçek Ölçüler',
|
|
157
|
-
labelPatternSize: 'Kalıp Bedeni',
|
|
158
|
-
labelTargetSize: 'Hedef Beden',
|
|
159
|
-
labelOriginMeasures: 'KAYNAK ÖLÇÜLER',
|
|
160
|
-
labelTargetMeasures: 'ÖLÇÜLERİNİZ',
|
|
161
|
-
labelEase: 'Mevcut Rahatlık Payı (Ease)',
|
|
162
|
-
labelChest: 'Göğüs',
|
|
163
|
-
labelWaist: 'Bel',
|
|
164
|
-
labelHips: 'Kalça',
|
|
165
|
-
labelLength: 'Boy',
|
|
166
|
-
resBust: 'Göğüs',
|
|
167
|
-
resWaist: 'Bel',
|
|
168
|
-
resHips: 'Kalça',
|
|
169
|
-
resLength: 'Boy',
|
|
170
|
-
actionLatAdd: 'Ekle',
|
|
171
|
-
actionLatRemove: 'Çıkar',
|
|
172
|
-
actionLatSuffix: 'parçanın yanından',
|
|
173
|
-
actionLatNote: 'Kalıp çeyreği başına ayarlama',
|
|
174
|
-
actionLenExtend: 'Kalıbı uzat',
|
|
175
|
-
actionLenShorten: 'Kalıbı kısalt',
|
|
176
|
-
actionLenNote: 'Etek ucu çizgisinde ayarlama',
|
|
177
|
-
legendOriginal: 'Orijinal',
|
|
178
|
-
legendUpdated: 'Güncellendi',
|
|
179
|
-
warnText: '3 bedenden fazla ölçeklendirme. Kol oyuntusunda deformasyon riski.',
|
|
180
|
-
sizePrefix: 'Beden',
|
|
181
|
-
},
|
|
182
|
-
};
|
|
153
|
+
ui: {
|
|
154
|
+
labelSystem: 'ÇALIŞMA SİSTEMİ',
|
|
155
|
+
modeStandard: 'Standart Bedenler',
|
|
156
|
+
modeCustom: 'Gerçek Ölçüler',
|
|
157
|
+
labelPatternSize: 'Kalıp Bedeni',
|
|
158
|
+
labelTargetSize: 'Hedef Beden',
|
|
159
|
+
labelOriginMeasures: 'KAYNAK ÖLÇÜLER',
|
|
160
|
+
labelTargetMeasures: 'ÖLÇÜLERİNİZ',
|
|
161
|
+
labelEase: 'Mevcut Rahatlık Payı (Ease)',
|
|
162
|
+
labelChest: 'Göğüs',
|
|
163
|
+
labelWaist: 'Bel',
|
|
164
|
+
labelHips: 'Kalça',
|
|
165
|
+
labelLength: 'Boy',
|
|
166
|
+
resBust: 'Göğüs',
|
|
167
|
+
resWaist: 'Bel',
|
|
168
|
+
resHips: 'Kalça',
|
|
169
|
+
resLength: 'Boy',
|
|
170
|
+
actionLatAdd: 'Ekle',
|
|
171
|
+
actionLatRemove: 'Çıkar',
|
|
172
|
+
actionLatSuffix: 'parçanın yanından',
|
|
173
|
+
actionLatNote: 'Kalıp çeyreği başına ayarlama',
|
|
174
|
+
actionLenExtend: 'Kalıbı uzat',
|
|
175
|
+
actionLenShorten: 'Kalıbı kısalt',
|
|
176
|
+
actionLenNote: 'Etek ucu çizgisinde ayarlama',
|
|
177
|
+
legendOriginal: 'Orijinal',
|
|
178
|
+
legendUpdated: 'Güncellendi',
|
|
179
|
+
warnText: '3 bedenden fazla ölçeklendirme. Kol oyuntusunda deformasyon riski.',
|
|
180
|
+
sizePrefix: 'Beden',
|
|
181
|
+
},
|
|
182
|
+
};
|