@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 = 'conversor-tallas-ropa';
6
+ const title = 'Conversor de Tallas de Ropa Internacional';
7
+ const description =
8
+ 'Convierte tallas de ropa entre sistemas EU, US, UK e IT. Camisetas, pantalones, vestidos y chaquetas para hombre, mujer y unisex. Incluye guía de medidas y recomendador por marca.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '¿Cuál es la diferencia entre talla EU y talla US en ropa?',
13
+ answer:
14
+ 'Las tallas europeas (EU) usan números progresivos (XS, S, M, L o 32, 34, 36, 38) mientras que las estadounidenses (US) usan letras o números específicos para pantalones. En general, una talla 36 EU equivale a un 4 US en ropa de mujer.',
15
+ },
16
+ {
17
+ question: '¿Cambian las tallas si es ropa de hombre o mujer?',
18
+ answer:
19
+ 'Sí, absolutamente. Incluso en el mismo país, una talla 40 para hombre no es la misma que una 40 para mujer. Los hombres tienen proporciones diferentes (hombros más anchos), así que el cálculo de talla varía.',
20
+ },
21
+ {
22
+ question: '¿Cómo sé si debo subir o bajar una talla en una marca?',
23
+ answer:
24
+ 'La mejor forma es revisar las reseñas de otros clientes. Frases como "me quedó pequeño" o "talla grande" son muy útiles. También consulta la tabla específica de medidas de esa marca.',
25
+ },
26
+ {
27
+ question: '¿Es exacta la tabla de conversión de tallas?',
28
+ answer:
29
+ 'La tabla de conversión es una guía. Aunque generalmente es precisa, cada marca tiene sus propias especificaciones. Siempre verifica la tabla de tallas de la tienda específica antes de comprar.',
30
+ },
31
+ {
32
+ question: '¿Encogen las prendas después de lavar?',
33
+ answer:
34
+ 'Depende del material. El algodón 100% puede encoger un 5-10% si se lava a agua caliente y se seca en secadora. Los materiales sintéticos mantienen mejor su forma. Revisa siempre las instrucciones de lavado.',
35
+ },
36
+ ];
37
+
38
+ const howToData = [
39
+ {
40
+ name: 'Selecciona Prenda y Género',
41
+ text: 'Elige el tipo de ropa (camiseta, pantalón, vestido, chaqueta) y el género correspondiente.',
42
+ },
43
+ {
44
+ name: 'Elige Tu Sistema de Talla',
45
+ text: 'Selecciona el sistema que conoces: EU, US, UK o IT.',
46
+ },
47
+ {
48
+ name: 'Selecciona Tu Talla',
49
+ text: 'Elige tu talla en el selector o haz clic en la cuadrícula. Verás las equivalencias al instante.',
50
+ },
51
+ {
52
+ name: 'Consulta la Guía de Marcas',
53
+ text: 'Revisa si esa marca talla pequeño, regular o grande para ajustar tu compra.',
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: 'es',
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: 'Preguntas Frecuentes',
210
+ faq: faqData,
211
+ bibliographyTitle: 'Bibliografía',
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: 'Conversor de Tallas de Ropa: Guía Completa',
226
+ level: 2,
227
+ },
228
+ {
229
+ type: 'paragraph',
230
+ html: 'Comprar ropa en tiendas internacionales puede ser confuso cuando las tallas no coinciden. El <strong>conversor de tallas de ropa</strong> te ayuda a encontrar tu talla perfecta en sistemas EU, US, UK e IT, para camisetas, pantalones, vestidos y chaquetas.',
231
+ },
232
+ {
233
+ type: 'title',
234
+ text: '¿Por qué las tallas de ropa varían entre países?',
235
+ level: 2,
236
+ },
237
+ {
238
+ type: 'paragraph',
239
+ html: 'No existe un estándar internacional único. Cada región desarrolló su propio sistema, lo que genera confusión al comprar en tiendas extranjeras o en plataformas como Amazon o AliExpress.',
240
+ },
241
+ {
242
+ type: 'list',
243
+ items: [
244
+ '<span><strong>Tallas EU (Europa):</strong> Usan números progresivos (XS, S, M, L o 32, 34, 36...). Es el sistema más común en España e Italia.</span>',
245
+ '<span><strong>Tallas US (Estados Unidos):</strong> Usan letras (XS, S, M, L) o números para pantalones de mujer (0, 2, 4, 6).</span>',
246
+ '<span><strong>Tallas UK (Reino Unido):</strong> Similar al sistema EU pero con numeración propia, generalmente inferior a la US.</span>',
247
+ '<span><strong>Tallas IT (Italia):</strong> Numeración italiana con variaciones respecto al sistema EU general.</span>',
248
+ ],
249
+ },
250
+ {
251
+ type: 'tip',
252
+ title: 'Consejo Profesional',
253
+ html: 'Las tallas varían significativamente entre marcas. Una talla 38 en Zara puede ser diferente a una 38 en H&amp;M. Consulta siempre la tabla de tallas específica de la tienda antes de comprar.',
254
+ },
255
+ {
256
+ type: 'title',
257
+ text: 'Cómo medir tu cuerpo correctamente',
258
+ level: 2,
259
+ },
260
+ {
261
+ type: 'paragraph',
262
+ html: 'Para garantizar una talla correcta, mide tu cuerpo con una cinta métrica flexible. Mide al final del día, cuando el cuerpo está en su máxima expansión.',
263
+ },
264
+ {
265
+ type: 'list',
266
+ items: [
267
+ '<span><strong>Pecho:</strong> Mide alrededor de la parte más ancha del pecho, pasando la cinta por debajo de los brazos.</span>',
268
+ '<span><strong>Cintura:</strong> Mide a la altura del ombligo sin apretar el abdomen artificialmente.</span>',
269
+ '<span><strong>Cadera:</strong> Mide alrededor de la parte más ancha de las caderas, con la cinta paralela al suelo.</span>',
270
+ ],
271
+ },
272
+ {
273
+ type: 'title',
274
+ text: 'Guía de ajuste por marca',
275
+ level: 2,
276
+ },
277
+ {
278
+ type: 'list',
279
+ items: [
280
+ '<span><strong>Zara:</strong> Tallas regulares. Una 36 en Zara suele ser confiable para medidas estándar.</span>',
281
+ '<span><strong>H&amp;M:</strong> Tiende a tallar grande. Considera bajar una talla respecto a tu habitual.</span>',
282
+ '<span><strong>Uniqlo:</strong> Talla pequeño, especialmente en básicos. Se recomienda subir una talla.</span>',
283
+ '<span><strong>Nike / Adidas:</strong> Cortes ajustados para actividad física. Valora subir media talla.</span>',
284
+ ],
285
+ },
286
+ ],
287
+ ui: {
288
+ categoryLabel: 'Tipo de Prenda',
289
+ categoryShirts: 'Camisetas',
290
+ categoryPants: 'Pantalones',
291
+ categoryDresses: 'Vestidos',
292
+ categoryJackets: 'Chaquetas',
293
+ genderLabel: 'Género',
294
+ genderMen: 'Hombre',
295
+ genderWomen: 'Mujer',
296
+ genderUnisex: 'Unisex',
297
+ tabBySize: 'Por Talla',
298
+ tabByMeasurements: 'Por Medidas',
299
+ regionLabel: 'Tu Sistema de Talla',
300
+ sizeLabel: 'Selecciona tu Talla',
301
+ regionEU: 'Europa (EU)',
302
+ regionUS: 'Estados Unidos (US)',
303
+ regionUK: 'Reino Unido (UK)',
304
+ regionIT: 'Italia (IT)',
305
+ labelEU: 'Europa',
306
+ labelUS: 'Estados Unidos',
307
+ labelUK: 'Reino Unido',
308
+ labelIT: 'Italia',
309
+ quickGridTitle: 'Equivalencias Rápidas (EU)',
310
+ tableTitle: 'Tabla de Conversión Completa',
311
+ measurementsTitle: 'Ingresa tus Medidas',
312
+ chestLabel: 'Pecho (cm)',
313
+ waistLabel: 'Cintura (cm)',
314
+ hipLabel: 'Cadera (cm)',
315
+ chestPlaceholder: 'Ej: 95',
316
+ waistPlaceholder: 'Ej: 85',
317
+ hipPlaceholder: 'Ej: 95',
318
+ recommendBtnLabel: 'Recomendar Talla',
319
+ tipsTitle: 'Tips de Medición',
320
+ tipOverClothes: 'Sobre la ropa',
321
+ tipStraight: 'Recta y paralela',
322
+ tipNoTight: 'Sin apretar',
323
+ tipEndOfDay: 'Al final del día',
324
+ recommendationTitle: 'Talla Recomendada',
325
+ recommendedSizePrefix: 'Te recomendamos la talla:',
326
+ measuredBy: 'Basado en tus medidas:',
327
+ chestShort: 'Pecho',
328
+ waistShort: 'Cintura',
329
+ hipShort: 'Cadera',
330
+ recommendationError: 'Por favor completa todas las medidas para obtener una recomendación.',
331
+ recommendationNoData: 'No hay datos disponibles para esta categoría.',
332
+ fitGuideTitle: 'Guía de Ajuste por Marca',
333
+ fitSmall: 'Talla Pequeña',
334
+ fitRegular: 'Talla Regular',
335
+ fitLarge: 'Talla Grande',
336
+ fitInfoDefault: 'Haz clic en una marca para obtener recomendaciones específicas.',
337
+ fitNotif1: ' suele tallar ',
338
+ fitNotifSmall: 'pequeño',
339
+ fitNotifRegular: 'regular',
340
+ fitNotifLarge: 'grande',
341
+ fitNotif2: 'Considera',
342
+ fitNotif3: 'si es tu primera vez comprando en esta marca.',
343
+ fitAdviceSmall: 'subir una talla',
344
+ fitAdviceRegular: 'mantener tu talla habitual',
345
+ fitAdviceLarge: 'bajar una talla',
346
+ fitSelectedSuffix: 'seleccionada. Selecciona otra marca para comparar.',
347
+ infoBannerTitle: 'Pro Tip:',
348
+ infoBannerText:
349
+ 'Las tallas de ropa varían significativamente entre marcas. Siempre revisa la tabla específica de la tienda antes de comprar.',
350
+ shirtsData,
351
+ pantsData,
352
+ dressesData,
353
+ jacketsData,
354
+ measurementRanges,
355
+ },
356
+ };