@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.
Files changed (134) hide show
  1. package/package.json +60 -0
  2. package/src/category/i18n/en.ts +76 -0
  3. package/src/category/i18n/es.ts +76 -0
  4. package/src/category/i18n/fr.ts +73 -0
  5. package/src/category/index.ts +17 -0
  6. package/src/category/seo.astro +15 -0
  7. package/src/components/PreviewNavSidebar.astro +116 -0
  8. package/src/components/PreviewToolbar.astro +143 -0
  9. package/src/data.ts +11 -0
  10. package/src/env.d.ts +5 -0
  11. package/src/index.ts +32 -0
  12. package/src/layouts/PreviewLayout.astro +117 -0
  13. package/src/pages/[locale]/[slug].astro +146 -0
  14. package/src/pages/[locale].astro +253 -0
  15. package/src/pages/index.astro +4 -0
  16. package/src/tests/faq_count.test.ts +19 -0
  17. package/src/tests/locale_completeness.test.ts +42 -0
  18. package/src/tests/mocks/astro_mock.js +2 -0
  19. package/src/tests/no_h1_in_components.test.ts +48 -0
  20. package/src/tests/seo_length.test.ts +22 -0
  21. package/src/tests/title_separators.test.ts +40 -0
  22. package/src/tests/tool_validation.test.ts +17 -0
  23. package/src/tool/burnTest/bibliography.astro +34 -0
  24. package/src/tool/burnTest/component.astro +602 -0
  25. package/src/tool/burnTest/i18n/en.ts +225 -0
  26. package/src/tool/burnTest/i18n/es.ts +225 -0
  27. package/src/tool/burnTest/i18n/fr.ts +225 -0
  28. package/src/tool/burnTest/index.ts +34 -0
  29. package/src/tool/burnTest/logic.ts +3 -0
  30. package/src/tool/burnTest/seo.astro +40 -0
  31. package/src/tool/burnTest/ui.ts +36 -0
  32. package/src/tool/clothingSizeConverter/bibliography.astro +34 -0
  33. package/src/tool/clothingSizeConverter/component.astro +1226 -0
  34. package/src/tool/clothingSizeConverter/i18n/en.ts +356 -0
  35. package/src/tool/clothingSizeConverter/i18n/es.ts +356 -0
  36. package/src/tool/clothingSizeConverter/i18n/fr.ts +356 -0
  37. package/src/tool/clothingSizeConverter/index.ts +34 -0
  38. package/src/tool/clothingSizeConverter/logic.ts +30 -0
  39. package/src/tool/clothingSizeConverter/seo.astro +40 -0
  40. package/src/tool/clothingSizeConverter/ui.ts +70 -0
  41. package/src/tool/fabricProjectCalculator/bibliography.astro +19 -0
  42. package/src/tool/fabricProjectCalculator/component.astro +914 -0
  43. package/src/tool/fabricProjectCalculator/i18n/en.ts +250 -0
  44. package/src/tool/fabricProjectCalculator/i18n/es.ts +250 -0
  45. package/src/tool/fabricProjectCalculator/i18n/fr.ts +250 -0
  46. package/src/tool/fabricProjectCalculator/index.ts +34 -0
  47. package/src/tool/fabricProjectCalculator/logic.ts +89 -0
  48. package/src/tool/fabricProjectCalculator/seo.astro +40 -0
  49. package/src/tool/fabricProjectCalculator/ui.ts +57 -0
  50. package/src/tool/fabricTruth/bibliography.astro +40 -0
  51. package/src/tool/fabricTruth/component.astro +708 -0
  52. package/src/tool/fabricTruth/i18n/en.ts +282 -0
  53. package/src/tool/fabricTruth/i18n/es.ts +316 -0
  54. package/src/tool/fabricTruth/i18n/fr.ts +282 -0
  55. package/src/tool/fabricTruth/index.ts +34 -0
  56. package/src/tool/fabricTruth/logic.ts +91 -0
  57. package/src/tool/fabricTruth/seo.astro +40 -0
  58. package/src/tool/fabricTruth/ui.ts +28 -0
  59. package/src/tool/fiberPrep/bibliography.astro +33 -0
  60. package/src/tool/fiberPrep/component.astro +987 -0
  61. package/src/tool/fiberPrep/i18n/en.ts +225 -0
  62. package/src/tool/fiberPrep/i18n/es.ts +225 -0
  63. package/src/tool/fiberPrep/i18n/fr.ts +225 -0
  64. package/src/tool/fiberPrep/index.ts +34 -0
  65. package/src/tool/fiberPrep/logic.ts +36 -0
  66. package/src/tool/fiberPrep/seo.astro +40 -0
  67. package/src/tool/fiberPrep/ui.ts +38 -0
  68. package/src/tool/knittingGauge/bibliography.astro +14 -0
  69. package/src/tool/knittingGauge/component.astro +828 -0
  70. package/src/tool/knittingGauge/i18n/en.ts +234 -0
  71. package/src/tool/knittingGauge/i18n/es.ts +234 -0
  72. package/src/tool/knittingGauge/i18n/fr.ts +234 -0
  73. package/src/tool/knittingGauge/index.ts +34 -0
  74. package/src/tool/knittingGauge/logic.ts +28 -0
  75. package/src/tool/knittingGauge/seo.astro +40 -0
  76. package/src/tool/knittingGauge/ui.ts +41 -0
  77. package/src/tool/laundryGuide/bibliography.astro +33 -0
  78. package/src/tool/laundryGuide/component.astro +486 -0
  79. package/src/tool/laundryGuide/data-en.ts +166 -0
  80. package/src/tool/laundryGuide/data-es.ts +166 -0
  81. package/src/tool/laundryGuide/data-fr.ts +103 -0
  82. package/src/tool/laundryGuide/i18n/en.ts +275 -0
  83. package/src/tool/laundryGuide/i18n/es.ts +275 -0
  84. package/src/tool/laundryGuide/i18n/fr.ts +291 -0
  85. package/src/tool/laundryGuide/index.ts +29 -0
  86. package/src/tool/laundryGuide/logic.ts +19 -0
  87. package/src/tool/laundryGuide/seo.astro +40 -0
  88. package/src/tool/needleConverter/bibliography.astro +14 -0
  89. package/src/tool/needleConverter/component.astro +518 -0
  90. package/src/tool/needleConverter/i18n/en.ts +217 -0
  91. package/src/tool/needleConverter/i18n/es.ts +217 -0
  92. package/src/tool/needleConverter/i18n/fr.ts +217 -0
  93. package/src/tool/needleConverter/index.ts +34 -0
  94. package/src/tool/needleConverter/logic.ts +31 -0
  95. package/src/tool/needleConverter/seo.astro +15 -0
  96. package/src/tool/needleConverter/ui.ts +17 -0
  97. package/src/tool/sewingPatternScaler/bibliography.astro +14 -0
  98. package/src/tool/sewingPatternScaler/component.astro +550 -0
  99. package/src/tool/sewingPatternScaler/i18n/en.ts +196 -0
  100. package/src/tool/sewingPatternScaler/i18n/es.ts +231 -0
  101. package/src/tool/sewingPatternScaler/i18n/fr.ts +187 -0
  102. package/src/tool/sewingPatternScaler/index.ts +34 -0
  103. package/src/tool/sewingPatternScaler/logic.ts +35 -0
  104. package/src/tool/sewingPatternScaler/seo.astro +49 -0
  105. package/src/tool/sewingPatternScaler/ui.ts +29 -0
  106. package/src/tool/shoeSizeConverter/bibliography.astro +34 -0
  107. package/src/tool/shoeSizeConverter/component.astro +437 -0
  108. package/src/tool/shoeSizeConverter/i18n/en.ts +188 -0
  109. package/src/tool/shoeSizeConverter/i18n/es.ts +188 -0
  110. package/src/tool/shoeSizeConverter/i18n/fr.ts +188 -0
  111. package/src/tool/shoeSizeConverter/index.ts +34 -0
  112. package/src/tool/shoeSizeConverter/logic.ts +8 -0
  113. package/src/tool/shoeSizeConverter/seo.astro +40 -0
  114. package/src/tool/shoeSizeConverter/ui.ts +21 -0
  115. package/src/tool/stainChemistry/bibliography.astro +40 -0
  116. package/src/tool/stainChemistry/component.astro +717 -0
  117. package/src/tool/stainChemistry/i18n/en.ts +303 -0
  118. package/src/tool/stainChemistry/i18n/es.ts +300 -0
  119. package/src/tool/stainChemistry/i18n/fr.ts +310 -0
  120. package/src/tool/stainChemistry/index.ts +34 -0
  121. package/src/tool/stainChemistry/logic.ts +11 -0
  122. package/src/tool/stainChemistry/seo.astro +40 -0
  123. package/src/tool/stainChemistry/ui.ts +51 -0
  124. package/src/tool/yarnCalculator/bibliography.astro +19 -0
  125. package/src/tool/yarnCalculator/component.astro +792 -0
  126. package/src/tool/yarnCalculator/i18n/en.ts +310 -0
  127. package/src/tool/yarnCalculator/i18n/es.ts +310 -0
  128. package/src/tool/yarnCalculator/i18n/fr.ts +310 -0
  129. package/src/tool/yarnCalculator/index.ts +34 -0
  130. package/src/tool/yarnCalculator/logic.ts +84 -0
  131. package/src/tool/yarnCalculator/seo.astro +14 -0
  132. package/src/tool/yarnCalculator/ui.ts +42 -0
  133. package/src/tools.ts +16 -0
  134. package/src/types.ts +72 -0
@@ -0,0 +1,356 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { ClothingSizeConverterUI } from '../ui';
4
+
5
+ const slug = 'clothing-size-converter';
6
+ const title = 'International Clothing Size Converter';
7
+ const description =
8
+ 'Convert clothing sizes between EU, US, UK and IT systems. Shirts, pants, dresses and jackets for men, women and unisex. Includes measurement guide and brand fit recommendations.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'What is the difference between EU and US clothing sizes?',
13
+ answer:
14
+ 'European (EU) sizes use progressive numbers (XS, S, M, L or 32, 34, 36, 38) while US sizes use letters (XS, S, M, L) or numbers for women\'s pants (0, 2, 4, 6). Generally, EU 36 is approximately US 4 in women\'s clothing.',
15
+ },
16
+ {
17
+ question: 'Do sizes change for men\'s vs women\'s clothing?',
18
+ answer:
19
+ 'Yes, absolutely. Even in the same country, a size 40 for men is not the same as a 40 for women. Men have different proportions (broader shoulders), so the size calculation varies.',
20
+ },
21
+ {
22
+ question: 'How do I know if I should size up or down for a brand?',
23
+ answer:
24
+ 'The best approach is to check reviews from other customers. Phrases like "runs small" or "runs large" are very helpful. Also consult the brand\'s specific measurement chart.',
25
+ },
26
+ {
27
+ question: 'Is the size conversion chart accurate?',
28
+ answer:
29
+ 'The conversion chart is a guide. While generally accurate, each brand has its own specifications. Always verify the store\'s specific size chart before purchasing.',
30
+ },
31
+ {
32
+ question: 'Do clothes shrink after washing?',
33
+ answer:
34
+ '100% cotton can shrink 5–10% if washed in hot water and tumble dried. Synthetic materials hold their shape better. Always check the care label instructions.',
35
+ },
36
+ ];
37
+
38
+ const howToData = [
39
+ {
40
+ name: 'Select Garment and Gender',
41
+ text: 'Choose the garment type (shirt, pants, dress, jacket) and the corresponding gender.',
42
+ },
43
+ {
44
+ name: 'Choose Your Size System',
45
+ text: 'Select the system you know: EU, US, UK or IT.',
46
+ },
47
+ {
48
+ name: 'Select Your Size',
49
+ text: 'Pick your size from the selector or click the grid. You will see equivalences instantly.',
50
+ },
51
+ {
52
+ name: 'Check the Brand Guide',
53
+ text: 'See whether that brand runs small, regular or large to adjust your purchase.',
54
+ },
55
+ ];
56
+
57
+ const faqSchema: WithContext<FAQPage> = {
58
+ '@context': 'https://schema.org',
59
+ '@type': 'FAQPage',
60
+ mainEntity: faqData.map((item) => ({
61
+ '@type': 'Question',
62
+ name: item.question,
63
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
64
+ })),
65
+ };
66
+
67
+ const howToSchema: WithContext<HowTo> = {
68
+ '@context': 'https://schema.org',
69
+ '@type': 'HowTo',
70
+ name: title,
71
+ description,
72
+ step: howToData.map((step) => ({
73
+ '@type': 'HowToStep',
74
+ name: step.name,
75
+ text: step.text,
76
+ })),
77
+ };
78
+
79
+ const appSchema: WithContext<SoftwareApplication> = {
80
+ '@context': 'https://schema.org',
81
+ '@type': 'SoftwareApplication',
82
+ name: title,
83
+ description,
84
+ applicationCategory: 'UtilityApplication',
85
+ operatingSystem: 'All',
86
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
87
+ inLanguage: 'en',
88
+ };
89
+
90
+ const shirtsData = {
91
+ men: [
92
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '36' },
93
+ { EU: 'S', US: 'S', UK: 'S', IT: '38' },
94
+ { EU: 'M', US: 'M', UK: 'M', IT: '40' },
95
+ { EU: 'L', US: 'L', UK: 'L', IT: '42' },
96
+ { EU: 'XL', US: 'XL', UK: 'XL', IT: '44' },
97
+ { EU: 'XXL', US: 'XXL', UK: 'XXL', IT: '46' },
98
+ ],
99
+ women: [
100
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '32' },
101
+ { EU: 'S', US: 'S', UK: 'S', IT: '34' },
102
+ { EU: 'M', US: 'M', UK: 'M', IT: '36' },
103
+ { EU: 'L', US: 'L', UK: 'L', IT: '38' },
104
+ { EU: 'XL', US: 'XL', UK: 'XL', IT: '40' },
105
+ { EU: 'XXL', US: 'XXL', UK: 'XXL', IT: '42' },
106
+ ],
107
+ unisex: [
108
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '34' },
109
+ { EU: 'S', US: 'S', UK: 'S', IT: '36' },
110
+ { EU: 'M', US: 'M', UK: 'M', IT: '38' },
111
+ { EU: 'L', US: 'L', UK: 'L', IT: '40' },
112
+ { EU: 'XL', US: 'XL', UK: 'XL', IT: '42' },
113
+ { EU: 'XXL', US: 'XXL', UK: 'XXL', IT: '44' },
114
+ ],
115
+ };
116
+
117
+ const pantsData = {
118
+ men: [
119
+ { EU: '30', US: '30', UK: '30', IT: '44' },
120
+ { EU: '32', US: '32', UK: '32', IT: '46' },
121
+ { EU: '34', US: '34', UK: '34', IT: '48' },
122
+ { EU: '36', US: '36', UK: '36', IT: '50' },
123
+ { EU: '38', US: '38', UK: '38', IT: '52' },
124
+ { EU: '40', US: '40', UK: '40', IT: '54' },
125
+ ],
126
+ women: [
127
+ { EU: '32', US: '0', UK: '4', IT: '36' },
128
+ { EU: '34', US: '2', UK: '6', IT: '38' },
129
+ { EU: '36', US: '4', UK: '8', IT: '40' },
130
+ { EU: '38', US: '6', UK: '10', IT: '42' },
131
+ { EU: '40', US: '8', UK: '12', IT: '44' },
132
+ { EU: '42', US: '10', UK: '14', IT: '46' },
133
+ ],
134
+ unisex: [],
135
+ };
136
+
137
+ const dressesData = {
138
+ men: [
139
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '36' },
140
+ { EU: 'S', US: 'S', UK: 'S', IT: '38' },
141
+ { EU: 'M', US: 'M', UK: 'M', IT: '40' },
142
+ { EU: 'L', US: 'L', UK: 'L', IT: '42' },
143
+ ],
144
+ women: [
145
+ { EU: 'XS', US: '0-2', UK: '4-6', IT: '32-34' },
146
+ { EU: 'S', US: '4-6', UK: '8-10', IT: '36-38' },
147
+ { EU: 'M', US: '8-10', UK: '12-14', IT: '40-42' },
148
+ { EU: 'L', US: '12-14', UK: '16-18', IT: '44-46' },
149
+ { EU: 'XL', US: '16-18', UK: '20-22', IT: '48-50' },
150
+ ],
151
+ unisex: [],
152
+ };
153
+
154
+ const jacketsData = {
155
+ men: [
156
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '44' },
157
+ { EU: 'S', US: 'S', UK: 'S', IT: '46' },
158
+ { EU: 'M', US: 'M', UK: 'M', IT: '48' },
159
+ { EU: 'L', US: 'L', UK: 'L', IT: '50' },
160
+ { EU: 'XL', US: 'XL', UK: 'XL', IT: '52' },
161
+ ],
162
+ women: [
163
+ { EU: 'XS', US: 'XS', UK: 'XS', IT: '32' },
164
+ { EU: 'S', US: 'S', UK: 'S', IT: '34' },
165
+ { EU: 'M', US: 'M', UK: 'M', IT: '36' },
166
+ { EU: 'L', US: 'L', UK: 'L', IT: '38' },
167
+ { EU: 'XL', US: 'XL', UK: 'XL', IT: '40' },
168
+ ],
169
+ unisex: [],
170
+ };
171
+
172
+ const measurementRanges = {
173
+ shirts: [
174
+ { size: 'XS', chest: 84, waist: 76, hip: 84 },
175
+ { size: 'S', chest: 92, waist: 84, hip: 92 },
176
+ { size: 'M', chest: 100, waist: 92, hip: 100 },
177
+ { size: 'L', chest: 108, waist: 100, hip: 108 },
178
+ { size: 'XL', chest: 116, waist: 108, hip: 116 },
179
+ { size: 'XXL', chest: 124, waist: 116, hip: 124 },
180
+ ],
181
+ pants: [
182
+ { size: '30', chest: 80, waist: 76, hip: 89 },
183
+ { size: '32', chest: 85, waist: 81, hip: 94 },
184
+ { size: '34', chest: 90, waist: 86, hip: 99 },
185
+ { size: '36', chest: 95, waist: 91, hip: 104 },
186
+ { size: '38', chest: 100, waist: 96, hip: 109 },
187
+ { size: '40', chest: 105, waist: 101, hip: 114 },
188
+ ],
189
+ dresses: [
190
+ { size: 'XS', chest: 80, waist: 72, hip: 88 },
191
+ { size: 'S', chest: 88, waist: 80, hip: 96 },
192
+ { size: 'M', chest: 96, waist: 88, hip: 104 },
193
+ { size: 'L', chest: 104, waist: 96, hip: 112 },
194
+ { size: 'XL', chest: 112, waist: 104, hip: 120 },
195
+ ],
196
+ jackets: [
197
+ { size: 'XS', chest: 84, waist: 76, hip: 88 },
198
+ { size: 'S', chest: 92, waist: 84, hip: 96 },
199
+ { size: 'M', chest: 100, waist: 92, hip: 104 },
200
+ { size: 'L', chest: 108, waist: 100, hip: 112 },
201
+ { size: 'XL', chest: 116, waist: 108, hip: 120 },
202
+ ],
203
+ };
204
+
205
+ export const content: ToolLocaleContent<ClothingSizeConverterUI> = {
206
+ slug,
207
+ title,
208
+ description,
209
+ faqTitle: 'Frequently Asked Questions',
210
+ faq: faqData,
211
+ bibliographyTitle: 'Bibliography',
212
+ bibliography: [
213
+ { name: 'ISO 3635: Clothing Sizes - Official Standard', url: 'https://www.iso.org/standard/68644.html' },
214
+ { name: 'Clothing Size Standards - Wikipedia', url: 'https://en.wikipedia.org/wiki/Clothing_size' },
215
+ {
216
+ name: 'International Clothing Size Conversion - Wikipedia',
217
+ url: 'https://en.wikipedia.org/wiki/Clothing_size#International_variations',
218
+ },
219
+ ],
220
+ howTo: howToData,
221
+ schemas: [faqSchema, howToSchema, appSchema],
222
+ seo: [
223
+ {
224
+ type: 'title',
225
+ text: 'Clothing Size Converter: Complete International Guide',
226
+ level: 2,
227
+ },
228
+ {
229
+ type: 'paragraph',
230
+ html: 'Buying clothes from international stores can be confusing when sizes do not match. The <strong>clothing size converter</strong> helps you find your perfect size across EU, US, UK and IT systems, for shirts, pants, dresses and jackets.',
231
+ },
232
+ {
233
+ type: 'title',
234
+ text: 'Why do clothing sizes vary between countries?',
235
+ level: 2,
236
+ },
237
+ {
238
+ type: 'paragraph',
239
+ html: 'There is no single international standard for clothing sizes. Each region developed its own system, creating confusion when shopping from foreign stores or platforms like Amazon.',
240
+ },
241
+ {
242
+ type: 'list',
243
+ items: [
244
+ '<span><strong>EU sizes (Europe):</strong> Use progressive numbers (XS, S, M, L or 32, 34, 36...). The most common system in Spain and Italy.</span>',
245
+ '<span><strong>US sizes (United States):</strong> Use letters (XS, S, M, L) or numbers for women\'s pants (0, 2, 4, 6).</span>',
246
+ '<span><strong>UK sizes (United Kingdom):</strong> Similar to EU but with its own numbering, generally lower than US.</span>',
247
+ '<span><strong>IT sizes (Italy):</strong> Italian numbering with variations from the general EU system.</span>',
248
+ ],
249
+ },
250
+ {
251
+ type: 'tip',
252
+ title: 'Professional Tip',
253
+ html: 'Sizes vary significantly between brands. A size 38 in Zara can be different from a 38 in H&amp;M. Always check the store\'s specific size chart before purchasing.',
254
+ },
255
+ {
256
+ type: 'title',
257
+ text: 'How to measure your body correctly',
258
+ level: 2,
259
+ },
260
+ {
261
+ type: 'paragraph',
262
+ html: 'To guarantee the right size, measure your body with a flexible tape measure. Measure at the end of the day, when your body is at its maximum expansion.',
263
+ },
264
+ {
265
+ type: 'list',
266
+ items: [
267
+ '<span><strong>Chest:</strong> Measure around the widest part of your chest, passing the tape under your arms.</span>',
268
+ '<span><strong>Waist:</strong> Measure at navel height without artificially holding in your stomach.</span>',
269
+ '<span><strong>Hip:</strong> Measure around the widest part of your hips, keeping the tape parallel to the floor.</span>',
270
+ ],
271
+ },
272
+ {
273
+ type: 'title',
274
+ text: 'Brand fit guide',
275
+ level: 2,
276
+ },
277
+ {
278
+ type: 'list',
279
+ items: [
280
+ '<span><strong>Zara:</strong> Regular sizing. A 36 in Zara is generally reliable for standard measurements.</span>',
281
+ '<span><strong>H&amp;M:</strong> Tends to run large. Consider sizing down from your usual size.</span>',
282
+ '<span><strong>Uniqlo:</strong> Runs small, especially in basics. Sizing up is recommended.</span>',
283
+ '<span><strong>Nike / Adidas:</strong> Athletic, close-fitting cuts. Consider going up half a size.</span>',
284
+ ],
285
+ },
286
+ ],
287
+ ui: {
288
+ categoryLabel: 'Garment Type',
289
+ categoryShirts: 'Shirts',
290
+ categoryPants: 'Pants',
291
+ categoryDresses: 'Dresses',
292
+ categoryJackets: 'Jackets',
293
+ genderLabel: 'Gender',
294
+ genderMen: 'Men',
295
+ genderWomen: 'Women',
296
+ genderUnisex: 'Unisex',
297
+ tabBySize: 'By Size',
298
+ tabByMeasurements: 'By Measurements',
299
+ regionLabel: 'Your Size System',
300
+ sizeLabel: 'Select Your Size',
301
+ regionEU: 'Europe (EU)',
302
+ regionUS: 'United States (US)',
303
+ regionUK: 'United Kingdom (UK)',
304
+ regionIT: 'Italy (IT)',
305
+ labelEU: 'Europe',
306
+ labelUS: 'United States',
307
+ labelUK: 'United Kingdom',
308
+ labelIT: 'Italy',
309
+ quickGridTitle: 'Quick Reference (EU)',
310
+ tableTitle: 'Full Conversion Table',
311
+ measurementsTitle: 'Enter Your Measurements',
312
+ chestLabel: 'Chest (cm)',
313
+ waistLabel: 'Waist (cm)',
314
+ hipLabel: 'Hip (cm)',
315
+ chestPlaceholder: 'E.g. 95',
316
+ waistPlaceholder: 'E.g. 85',
317
+ hipPlaceholder: 'E.g. 95',
318
+ recommendBtnLabel: 'Recommend Size',
319
+ tipsTitle: 'Measurement Tips',
320
+ tipOverClothes: 'Over clothes',
321
+ tipStraight: 'Straight and parallel',
322
+ tipNoTight: 'Without pulling tight',
323
+ tipEndOfDay: 'At the end of the day',
324
+ recommendationTitle: 'Recommended Size',
325
+ recommendedSizePrefix: 'We recommend size:',
326
+ measuredBy: 'Based on your measurements:',
327
+ chestShort: 'Chest',
328
+ waistShort: 'Waist',
329
+ hipShort: 'Hip',
330
+ recommendationError: 'Please fill in all measurements to get a recommendation.',
331
+ recommendationNoData: 'No data available for this category.',
332
+ fitGuideTitle: 'Brand Fit Guide',
333
+ fitSmall: 'Small Fit',
334
+ fitRegular: 'Regular Fit',
335
+ fitLarge: 'Large Fit',
336
+ fitInfoDefault: 'Click a brand to get specific recommendations.',
337
+ fitNotif1: ' usually fits ',
338
+ fitNotifSmall: 'small',
339
+ fitNotifRegular: 'regular',
340
+ fitNotifLarge: 'large',
341
+ fitNotif2: 'Consider',
342
+ fitNotif3: "if it's your first time buying from this brand.",
343
+ fitAdviceSmall: 'sizing up by one',
344
+ fitAdviceRegular: 'sticking with your usual size',
345
+ fitAdviceLarge: 'sizing down by one',
346
+ fitSelectedSuffix: 'selected. Select another brand to compare.',
347
+ infoBannerTitle: 'Pro Tip:',
348
+ infoBannerText:
349
+ "Clothing sizes vary significantly between brands. Always check the store's specific size chart before purchasing.",
350
+ shirtsData,
351
+ pantsData,
352
+ dressesData,
353
+ jacketsData,
354
+ measurementRanges,
355
+ },
356
+ };