@jjlmoya/utils-cooking 1.2.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 (130) hide show
  1. package/package.json +60 -0
  2. package/src/category/i18n/en.ts +24 -0
  3. package/src/category/i18n/es.ts +208 -0
  4. package/src/category/i18n/fr.ts +24 -0
  5. package/src/category/index.ts +37 -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 +251 -0
  15. package/src/pages/index.astro +4 -0
  16. package/src/tests/faq_count.test.ts +19 -0
  17. package/src/tests/i18n-titles.test.ts +66 -0
  18. package/src/tests/locale_completeness.test.ts +42 -0
  19. package/src/tests/mocks/astro_mock.js +2 -0
  20. package/src/tests/no_h1_in_components.test.ts +48 -0
  21. package/src/tests/seo_length.test.ts +22 -0
  22. package/src/tests/tool_validation.test.ts +17 -0
  23. package/src/tool/american-kitchen-converter/AmericanKitchenEngine.ts +259 -0
  24. package/src/tool/american-kitchen-converter/bibliography.astro +6 -0
  25. package/src/tool/american-kitchen-converter/component.astro +838 -0
  26. package/src/tool/american-kitchen-converter/i18n/en.ts +282 -0
  27. package/src/tool/american-kitchen-converter/i18n/es.ts +281 -0
  28. package/src/tool/american-kitchen-converter/i18n/fr.ts +292 -0
  29. package/src/tool/american-kitchen-converter/index.ts +24 -0
  30. package/src/tool/american-kitchen-converter/seo.astro +8 -0
  31. package/src/tool/banana-ripeness/BananaCare.css +587 -0
  32. package/src/tool/banana-ripeness/BananaEngine.ts +79 -0
  33. package/src/tool/banana-ripeness/bibliography.astro +6 -0
  34. package/src/tool/banana-ripeness/component.astro +285 -0
  35. package/src/tool/banana-ripeness/i18n/en.ts +177 -0
  36. package/src/tool/banana-ripeness/i18n/es.ts +177 -0
  37. package/src/tool/banana-ripeness/i18n/fr.ts +177 -0
  38. package/src/tool/banana-ripeness/index.ts +24 -0
  39. package/src/tool/banana-ripeness/seo.astro +8 -0
  40. package/src/tool/brine/bibliography.astro +6 -0
  41. package/src/tool/brine/component.astro +884 -0
  42. package/src/tool/brine/i18n/en.ts +221 -0
  43. package/src/tool/brine/i18n/es.ts +222 -0
  44. package/src/tool/brine/i18n/fr.ts +221 -0
  45. package/src/tool/brine/index.ts +26 -0
  46. package/src/tool/brine/seo.astro +8 -0
  47. package/src/tool/cookware-guide/CookwareGuide.css +487 -0
  48. package/src/tool/cookware-guide/bibliography.astro +6 -0
  49. package/src/tool/cookware-guide/component.astro +164 -0
  50. package/src/tool/cookware-guide/i18n/en.ts +163 -0
  51. package/src/tool/cookware-guide/i18n/es.ts +163 -0
  52. package/src/tool/cookware-guide/i18n/fr.ts +164 -0
  53. package/src/tool/cookware-guide/index.ts +24 -0
  54. package/src/tool/cookware-guide/init.ts +174 -0
  55. package/src/tool/cookware-guide/seo.astro +8 -0
  56. package/src/tool/egg-timer/EggTimer.css +503 -0
  57. package/src/tool/egg-timer/bibliography.astro +14 -0
  58. package/src/tool/egg-timer/component.astro +281 -0
  59. package/src/tool/egg-timer/i18n/en.ts +230 -0
  60. package/src/tool/egg-timer/i18n/es.ts +222 -0
  61. package/src/tool/egg-timer/i18n/fr.ts +121 -0
  62. package/src/tool/egg-timer/index.ts +27 -0
  63. package/src/tool/egg-timer/seo.astro +39 -0
  64. package/src/tool/ingredient-rescaler/IngredientRescaler.css +308 -0
  65. package/src/tool/ingredient-rescaler/bibliography.astro +6 -0
  66. package/src/tool/ingredient-rescaler/component.astro +107 -0
  67. package/src/tool/ingredient-rescaler/i18n/en.ts +265 -0
  68. package/src/tool/ingredient-rescaler/i18n/es.ts +268 -0
  69. package/src/tool/ingredient-rescaler/i18n/fr.ts +207 -0
  70. package/src/tool/ingredient-rescaler/index.ts +24 -0
  71. package/src/tool/ingredient-rescaler/init.ts +200 -0
  72. package/src/tool/ingredient-rescaler/seo.astro +8 -0
  73. package/src/tool/kitchen-timer/KitchenTimer.css +325 -0
  74. package/src/tool/kitchen-timer/bibliography.astro +6 -0
  75. package/src/tool/kitchen-timer/component.astro +341 -0
  76. package/src/tool/kitchen-timer/i18n/en.ts +154 -0
  77. package/src/tool/kitchen-timer/i18n/es.ts +154 -0
  78. package/src/tool/kitchen-timer/i18n/fr.ts +154 -0
  79. package/src/tool/kitchen-timer/index.ts +26 -0
  80. package/src/tool/kitchen-timer/init.ts +55 -0
  81. package/src/tool/kitchen-timer/lib/AudioHelper.ts +27 -0
  82. package/src/tool/kitchen-timer/lib/DockManager.ts +97 -0
  83. package/src/tool/kitchen-timer/lib/KitchenTimer.ts +264 -0
  84. package/src/tool/kitchen-timer/seo.astro +8 -0
  85. package/src/tool/meringue-peak/MeringueCalculator.css +298 -0
  86. package/src/tool/meringue-peak/bibliography.astro +6 -0
  87. package/src/tool/meringue-peak/component.astro +169 -0
  88. package/src/tool/meringue-peak/i18n/en.ts +257 -0
  89. package/src/tool/meringue-peak/i18n/es.ts +234 -0
  90. package/src/tool/meringue-peak/i18n/fr.ts +234 -0
  91. package/src/tool/meringue-peak/index.ts +24 -0
  92. package/src/tool/meringue-peak/seo.astro +8 -0
  93. package/src/tool/mold-scaler/MoldScaler.css +406 -0
  94. package/src/tool/mold-scaler/bibliography.astro +6 -0
  95. package/src/tool/mold-scaler/component.astro +126 -0
  96. package/src/tool/mold-scaler/i18n/en.ts +268 -0
  97. package/src/tool/mold-scaler/i18n/es.ts +269 -0
  98. package/src/tool/mold-scaler/i18n/fr.ts +276 -0
  99. package/src/tool/mold-scaler/index.ts +26 -0
  100. package/src/tool/mold-scaler/init.ts +264 -0
  101. package/src/tool/mold-scaler/seo.astro +8 -0
  102. package/src/tool/pizza/Pizza.css +569 -0
  103. package/src/tool/pizza/bibliography.astro +6 -0
  104. package/src/tool/pizza/calculator.ts +143 -0
  105. package/src/tool/pizza/component.astro +237 -0
  106. package/src/tool/pizza/i18n/en.ts +288 -0
  107. package/src/tool/pizza/i18n/es.ts +289 -0
  108. package/src/tool/pizza/i18n/fr.ts +288 -0
  109. package/src/tool/pizza/index.ts +27 -0
  110. package/src/tool/pizza/seo.astro +8 -0
  111. package/src/tool/roux-guide/RouxGuide.css +483 -0
  112. package/src/tool/roux-guide/bibliography.astro +6 -0
  113. package/src/tool/roux-guide/component.astro +194 -0
  114. package/src/tool/roux-guide/i18n/en.ts +233 -0
  115. package/src/tool/roux-guide/i18n/es.ts +225 -0
  116. package/src/tool/roux-guide/i18n/fr.ts +225 -0
  117. package/src/tool/roux-guide/index.ts +24 -0
  118. package/src/tool/roux-guide/init.ts +187 -0
  119. package/src/tool/roux-guide/seo.astro +8 -0
  120. package/src/tool/sourdough-calculator/SourdoughCalculator.css +369 -0
  121. package/src/tool/sourdough-calculator/bibliography.astro +6 -0
  122. package/src/tool/sourdough-calculator/component.astro +198 -0
  123. package/src/tool/sourdough-calculator/i18n/en.ts +242 -0
  124. package/src/tool/sourdough-calculator/i18n/es.ts +243 -0
  125. package/src/tool/sourdough-calculator/i18n/fr.ts +248 -0
  126. package/src/tool/sourdough-calculator/index.ts +24 -0
  127. package/src/tool/sourdough-calculator/init.ts +131 -0
  128. package/src/tool/sourdough-calculator/seo.astro +8 -0
  129. package/src/tools.ts +29 -0
  130. package/src/types.ts +73 -0
@@ -0,0 +1,282 @@
1
+ import type { ToolLocaleContent } from "../../../types";
2
+
3
+ export const content: ToolLocaleContent = {
4
+ slug: "us-cooking-conversion-calculator-cups-to-grams-fahrenheit",
5
+ title: "US Cooking Conversion Calculator: Cups to Grams",
6
+ description:
7
+ "Convert cups, tablespoons, and Fahrenheit to the metric system. Your professional compass for decoding American recipes with absolute precision.",
8
+ ui: {
9
+ copied: "Copied",
10
+ noHistory: "No history",
11
+ load: "Load",
12
+ delete: "Delete",
13
+ tabCups: "Cups to Grams",
14
+ tabSpoons: "Spoons to Grams",
15
+ tabTemperatures: "Temperatures",
16
+ tabCupsAriaLabel: "Cups to Grams",
17
+ tabSpoonsAriaLabel: "Spoons to Grams",
18
+ tabTempsAriaLabel: "Oven Temperatures",
19
+ stepSelectIngredient: "Select Ingredient",
20
+ stepHowManyCups: "How Many Cups?",
21
+ stepSelectMeasure: "Select Measure",
22
+ stepQuantity: "Quantity",
23
+ stepOvenConversion: "Oven Conversion",
24
+ stepFrequentTemps: "Frequent Recipe Temperatures",
25
+ cupFlour: "Flour",
26
+ cupFlourSub: "120g / cup",
27
+ cupWhiteSugar: "White Sugar",
28
+ cupWhiteSugarSub: "200g / cup",
29
+ cupBrownSugar: "Brown Sugar",
30
+ cupBrownSugarSub: "220g / cup",
31
+ cupPowderSugar: "Powdered Sugar",
32
+ cupPowderSugarSub: "115g / cup",
33
+ cupButter: "Butter",
34
+ cupButterSub: "227g / cup",
35
+ cupCocoa: "Cocoa Powder",
36
+ cupCocoaSub: "85g / cup",
37
+ cupLiquids: "Liquids",
38
+ cupLiquidsSub: "240g / cup",
39
+ cupOats: "Oats",
40
+ cupOatsSub: "90g / cup",
41
+ cupFlourAriaLabel: "Flour",
42
+ cupWhiteSugarAriaLabel: "White Sugar",
43
+ cupBrownSugarAriaLabel: "Brown Sugar",
44
+ cupPowderSugarAriaLabel: "Powdered Sugar",
45
+ cupButterAriaLabel: "Butter",
46
+ cupCocoaAriaLabel: "Cocoa",
47
+ cupLiquidsAriaLabel: "Liquid",
48
+ cupOatsAriaLabel: "Oats",
49
+ stepperMinus: "Subtract",
50
+ stepperPlus: "Add",
51
+ cupsAmountLabel: "Amount of Cups",
52
+ spoonQuantityLabel: "Quantity",
53
+ cupQuick1_4: "1/4 Cup",
54
+ cupQuick1_3: "1/3 Cup",
55
+ cupQuick1_2: "1/2 Cup",
56
+ cupQuick1: "1 Cup",
57
+ unitGrams: "Grams",
58
+ unitGramsML: "Grams / Milliliters",
59
+ spoonMeasureLabel: "Select Measure",
60
+ spoonTablespoon: "Tablespoon (Tbsp)",
61
+ spoonTeaspoon: "Teaspoon (tsp)",
62
+ spoonTablespoonAriaLabel: "Large tablespoon",
63
+ spoonTeaspoonAriaLabel: "Small teaspoon",
64
+ spoonSelectIngredient: "Select Ingredient",
65
+ spoonLeavening: "Leavening",
66
+ spoonLeaveningSub: "Baking Powder",
67
+ spoonSalt: "Fine Salt",
68
+ spoonSaltSub: "Mineral",
69
+ spoonSugar: "White Sugar",
70
+ spoonSugarSub: "Granulated",
71
+ spoonLiquids: "Liquids",
72
+ spoonLiquidsSub: "Water, Oil",
73
+ spoonLeavingAriaLabel: "Chemical Leavening",
74
+ spoonSaltAriaLabel: "Salt",
75
+ spoonSugarAriaLabel: "White Sugar",
76
+ spoonLiquidsAriaLabel: "Liquid",
77
+ spoonQuick1_4: "1/4",
78
+ spoonQuick1_2: "1/2",
79
+ spoonQuick1: "1",
80
+ spoonQuick2: "2",
81
+ tempFahrenheit: "Fahrenheit (°F)",
82
+ tempCelsius: "Celsius (°C)",
83
+ tempFahrenheitAriaLabel: "Fahrenheit",
84
+ tempCelsiusAriaLabel: "Celsius",
85
+ tempPreset275: "275°F",
86
+ tempPreset275Desc: "135°C - Drying",
87
+ tempPreset275AriaLabel: "Set 275 Fahrenheit",
88
+ tempPreset325: "325°F",
89
+ tempPreset325Desc: "165°C - Dense cake",
90
+ tempPreset325AriaLabel: "Set 325 Fahrenheit",
91
+ tempPreset350: "350°F",
92
+ tempPreset350Desc: "175°C - Standard baking",
93
+ tempPreset350AriaLabel: "Set 350 Fahrenheit",
94
+ tempPreset400: "400°F",
95
+ tempPreset400Desc: "200°C - Breads / Pies",
96
+ tempPreset400AriaLabel: "Set 400 Fahrenheit",
97
+ tempPreset425: "425°F",
98
+ tempPreset425Desc: "220°C - Pizzas / Pastries",
99
+ tempPreset425AriaLabel: "Set 425 Fahrenheit",
100
+ },
101
+ faqTitle: "Frequently Asked Questions",
102
+ faq: [
103
+ {
104
+ question: "What's the difference between 1 cup and 250ml?",
105
+ answer: "1 US cup is approximately 236.6ml, not 250ml. For practical kitchen results, we use 240ml. Even this small 4% difference can affect sensitive recipes like macarons or professional pastries.",
106
+ },
107
+ {
108
+ question: "Why doesn't flour always weigh the same?",
109
+ answer: "Flour compacts over time and during transport. A freshly sifted cup of flour weighs less than a 'packed' cup from the bottom of the bag. Professional bakers always weigh ingredients for consistency.",
110
+ },
111
+ {
112
+ question: "What's the difference between Tbsp and tsp?",
113
+ answer: "1 Tablespoon (Tbsp) is 15ml, while 1 Teaspoon (tsp) is 5ml. Exactly three teaspoons fit into one tablespoon. Errors in spice measurements (usually tsp) are common in home baking.",
114
+ },
115
+ {
116
+ question: "Is a US cup the same as an imperial cup?",
117
+ answer: "No. A US cup is 236ml, whereas an Imperial (UK) cup is 284ml—a 20% difference! Most online recipes use US cups. If not specified, the US standard is the safest assumption.",
118
+ },
119
+ {
120
+ question: "What temperature is 'Gas Mark 4'?",
121
+ answer: "Gas Mark 4 is equivalent to 350°F or 175°C. This is the most common temperature for standard cake baking.",
122
+ },
123
+ ],
124
+ bibliographyTitle: "Bibliography & Resources",
125
+ bibliography: [
126
+ {
127
+ name: "King Arthur Baking: Ingredient Weight Chart",
128
+ url: "https://www.kingarthurbaking.com/learn/ingredient-weight-chart",
129
+ },
130
+ {
131
+ name: "Culinary Institute of America: Conversions and Equivalents",
132
+ url: "https://www.ciachef.edu/",
133
+ },
134
+ ],
135
+ howTo: [
136
+ {
137
+ name: "Select conversion type",
138
+ text: "Choose between Cups to Grams, Tablespoons/Teaspoons to Grams, or Fahrenheit to Celsius.",
139
+ },
140
+ {
141
+ name: "Pick your ingredient",
142
+ text: "Every food has a different density. Flour, sugar, and butter all weigh differently per cup.",
143
+ },
144
+ {
145
+ name: "Enter the quantity",
146
+ text: "Input the number of cups, spoons, or degrees. The converter calculates the metric equivalent instantly.",
147
+ },
148
+ {
149
+ name: "Adjust your recipe",
150
+ text: "With exact metric measurements, you can now replicate any international recipe with professional success.",
151
+ },
152
+ ],
153
+ seo: [
154
+ {
155
+ type: "title",
156
+ text: "Master Guide for American Kitchen Measure Conversions",
157
+ level: 2,
158
+ },
159
+ {
160
+ type: "paragraph",
161
+ html: "Converting <strong>cups to grams</strong> or <strong>Fahrenheit to Celsius</strong> is the first step to mastering international recipes. American cooking relies on volume, which introduces up to 25% variability in dry ingredients like flour.",
162
+ },
163
+ {
164
+ type: "stats",
165
+ columns: 4,
166
+ items: [
167
+ {
168
+ value: "120g",
169
+ label: "1 Cup of Flour",
170
+ icon: "mdi:grain",
171
+ },
172
+ {
173
+ value: "227g",
174
+ label: "Butter Stick",
175
+ icon: "mdi:cube-outline",
176
+ },
177
+ {
178
+ value: "175°C",
179
+ label: "350°F Equivalent",
180
+ icon: "mdi:thermometer",
181
+ },
182
+ {
183
+ value: "240ml",
184
+ label: "1 Cup Volume",
185
+ icon: "mdi:water-percent",
186
+ },
187
+ ],
188
+ },
189
+ {
190
+ type: "title",
191
+ text: "Critical Differences Between Volume and Weight",
192
+ level: 3,
193
+ },
194
+ {
195
+ type: "comparative",
196
+ columns: 2,
197
+ items: [
198
+ {
199
+ title: "Volume Measurement (Cups)",
200
+ icon: "mdi:cup-water",
201
+ description: "Used in US home recipes. Measures the space an ingredient occupies.",
202
+ points: [
203
+ "Highly dependent on compaction",
204
+ "Common 20-30% error in flours",
205
+ "Inconsistent across cup brands",
206
+ "Requires sifting for better accuracy",
207
+ ],
208
+ },
209
+ {
210
+ title: "Weight Measurement (Grams)",
211
+ icon: "mdi:scale-balance",
212
+ description: "The standard for European and professional baking. Absolute precision.",
213
+ highlight: true,
214
+ points: [
215
+ "Precision of +/- 1g always",
216
+ "Consistent, repeatable results",
217
+ "Less cleanup (single bowl)",
218
+ "Facilitates mathematical scaling",
219
+ ],
220
+ },
221
+ ],
222
+ },
223
+ {
224
+ type: "title",
225
+ text: "Common Ingredient Equivalencies",
226
+ level: 3,
227
+ },
228
+ {
229
+ type: "table",
230
+ headers: ["Ingredient", "1 Cup (Volume)", "Grams (Weight)", "Density"],
231
+ rows: [
232
+ ["All-Purpose Flour", "1 Cup", "120g", "Low"],
233
+ ["White Sugar", "1 Cup", "200g", "Medium"],
234
+ ["Brown Sugar", "1 Cup", "220g (packed)", "High"],
235
+ ["Butter", "1 Cup (2 sticks)", "227g", "High"],
236
+ ["Cocoa Powder", "1 Cup", "85g", "Very Low"],
237
+ ],
238
+ },
239
+ {
240
+ type: "diagnostic",
241
+ variant: "warning",
242
+ title: "Is Your Cake Coming Out Dry?",
243
+ html: "The most common issue with cups is 'dipping the cup' into the flour bag. This compacts the powder, and you might be adding up to 40g of extra flour per cup. The solution is <strong>always converting to grams</strong> using our calculator.",
244
+ },
245
+ {
246
+ type: "title",
247
+ text: "Glossary of US Kitchen Units",
248
+ level: 3,
249
+ },
250
+ {
251
+ type: "glossary",
252
+ items: [
253
+ {
254
+ term: "Cup",
255
+ definition: "A unit of volume equal to about 240ml. The backbone of American cooking.",
256
+ },
257
+ {
258
+ term: "Tbsp (Tablespoon)",
259
+ definition: "A large spoon measurement, equal to 15ml or 3 teaspoons.",
260
+ },
261
+ {
262
+ term: "tsp (Teaspoon)",
263
+ definition: "A small spoon measurement, equal to 5ml. Critical for leavening and salt.",
264
+ },
265
+ {
266
+ term: "Stick of Butter",
267
+ definition: "Common US butter format weighing exactly 4oz or 113.5g (half a cup).",
268
+ },
269
+ ],
270
+ },
271
+ {
272
+ type: "tip",
273
+ title: "The Spoon and Level Method",
274
+ html: "If you don't have a scale and MUST use cups, spoon the ingredient into the cup without packing it, then level off with a knife. It's far more accurate than dipping.",
275
+ },
276
+ {
277
+ type: "paragraph",
278
+ html: "Using a professional converter turns the frustration of foreign recipes into the success of a perfect bake.",
279
+ },
280
+ ],
281
+ schemas: [],
282
+ };
@@ -0,0 +1,281 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+
3
+ export const content: ToolLocaleContent = {
4
+ slug: 'conversor-unidades-cocina-americana',
5
+ title: 'Conversor Cocina Americana Cups a Gramos y Temperaturas',
6
+ description: 'Convierte cups, tablespoons y Fahrenheit al sistema métrico. La brújula para descifrar recetas estadounidenses con precisión profesional.',
7
+ faqTitle: 'Preguntas Frecuentes',
8
+ bibliographyTitle: 'Bibliografía',
9
+ ui: {
10
+ copied: 'Copiado',
11
+ noHistory: 'Sin historial',
12
+ load: 'Cargar',
13
+ delete: 'Eliminar',
14
+ tabCups: 'Tazas a Gramos',
15
+ tabSpoons: 'Cucharas a Gramos',
16
+ tabTemperatures: 'Temperaturas',
17
+ tabCupsAriaLabel: 'Tazas a Gramos',
18
+ tabSpoonsAriaLabel: 'Cucharas a Gramos',
19
+ tabTempsAriaLabel: 'Temperaturas de Horno',
20
+ stepSelectIngredient: 'Selecciona el Ingrediente',
21
+ stepHowManyCups: '¿Cuántas Tazas (Cups)?',
22
+ stepSelectMeasure: 'Selecciona la Medida',
23
+ stepQuantity: 'Cantidad',
24
+ stepOvenConversion: 'Conversión de Horno',
25
+ stepFrequentTemps: 'Temperaturas de Receta Frecuentes',
26
+ cupFlour: 'Harina',
27
+ cupFlourSub: '120g / cup',
28
+ cupWhiteSugar: 'Azúcar Blanco',
29
+ cupWhiteSugarSub: '200g / cup',
30
+ cupBrownSugar: 'Azúcar Moreno',
31
+ cupBrownSugarSub: '220g / cup',
32
+ cupPowderSugar: 'Azúcar Glas',
33
+ cupPowderSugarSub: '115g / cup',
34
+ cupButter: 'Mantequilla',
35
+ cupButterSub: '227g / cup',
36
+ cupCocoa: 'Cacao en Polvo',
37
+ cupCocoaSub: '85g / cup',
38
+ cupLiquids: 'Líquidos',
39
+ cupLiquidsSub: '240g / cup',
40
+ cupOats: 'Avena',
41
+ cupOatsSub: '90g / cup',
42
+ cupFlourAriaLabel: 'Harina',
43
+ cupWhiteSugarAriaLabel: 'Azúcar Blanco',
44
+ cupBrownSugarAriaLabel: 'Azúcar Moreno',
45
+ cupPowderSugarAriaLabel: 'Azúcar Glas',
46
+ cupButterAriaLabel: 'Mantequilla',
47
+ cupCocoaAriaLabel: 'Cacao',
48
+ cupLiquidsAriaLabel: 'Líquido',
49
+ cupOatsAriaLabel: 'Avena',
50
+ stepperMinus: 'Restar',
51
+ stepperPlus: 'Sumar',
52
+ cupsAmountLabel: 'Cantidad de Tazas',
53
+ spoonQuantityLabel: 'Cantidad',
54
+ cupQuick1_4: '1/4 Cup',
55
+ cupQuick1_3: '1/3 Cup',
56
+ cupQuick1_2: '1/2 Cup',
57
+ cupQuick1: '1 Cup',
58
+ unitGrams: 'Gramos',
59
+ unitGramsML: 'Gramos / Mililitros',
60
+ spoonMeasureLabel: 'Selecciona la Medida',
61
+ spoonTablespoon: 'Cucharada Grande (Tbsp)',
62
+ spoonTeaspoon: 'Cucharadita Pequeña (tsp)',
63
+ spoonTablespoonAriaLabel: 'Cucharada grande',
64
+ spoonTeaspoonAriaLabel: 'Cucharadita pequeña',
65
+ spoonSelectIngredient: 'Selecciona el Ingrediente',
66
+ spoonLeavening: 'Levadura',
67
+ spoonLeaveningSub: 'Polvo Hornear',
68
+ spoonSalt: 'Sal Fina',
69
+ spoonSaltSub: 'Mineral',
70
+ spoonSugar: 'Azúcar Blanco',
71
+ spoonSugarSub: 'Granulado',
72
+ spoonLiquids: 'Líquidos',
73
+ spoonLiquidsSub: 'Agua, Aceite',
74
+ spoonLeavingAriaLabel: 'Levadura Química',
75
+ spoonSaltAriaLabel: 'Sal',
76
+ spoonSugarAriaLabel: 'Azúcar Blanco',
77
+ spoonLiquidsAriaLabel: 'Líquido',
78
+ spoonQuick1_4: '1/4',
79
+ spoonQuick1_2: '1/2',
80
+ spoonQuick1: '1',
81
+ spoonQuick2: '2',
82
+ tempFahrenheit: 'Fahrenheit (°F)',
83
+ tempCelsius: 'Celsius (°C)',
84
+ tempFahrenheitAriaLabel: 'Fahrenheit',
85
+ tempCelsiusAriaLabel: 'Celsius',
86
+ tempPreset275: '275°F',
87
+ tempPreset275Desc: '135°C - Secado',
88
+ tempPreset275AriaLabel: 'Set 275 Fahrenheit',
89
+ tempPreset325: '325°F',
90
+ tempPreset325Desc: '165°C - Bizcocho denso',
91
+ tempPreset325AriaLabel: 'Set 325 Fahrenheit',
92
+ tempPreset350: '350°F',
93
+ tempPreset350Desc: '175°C - Estándar pasteles',
94
+ tempPreset350AriaLabel: 'Set 350 Fahrenheit',
95
+ tempPreset400: '400°F',
96
+ tempPreset400Desc: '200°C - Panes / Tartas',
97
+ tempPreset400AriaLabel: 'Set 400 Fahrenheit',
98
+ tempPreset425: '425°F',
99
+ tempPreset425Desc: '220°C - Pizzas / Hojaldre',
100
+ tempPreset425AriaLabel: 'Set 425 Fahrenheit',
101
+ },
102
+ seo: [
103
+ {
104
+ type: 'title',
105
+ text: 'Guía Maestro para el Conversor de Medidas de Cocina Americana',
106
+ level: 2,
107
+ },
108
+ {
109
+ type: 'paragraph',
110
+ html: 'Convertir <strong>cups a gramos</strong> o <strong>Fahrenheit a Celsius</strong> es el primer paso para dominar las recetas internacionales. La cocina estadounidense se basa en el volumen, lo que introduce una variabilidad de hasta el 25% en ingredientes secos como la harina.',
111
+ },
112
+ {
113
+ type: 'stats',
114
+ columns: 4,
115
+ items: [
116
+ {
117
+ value: '120g',
118
+ label: '1 Cup de Harina',
119
+ icon: 'mdi:grain',
120
+ },
121
+ {
122
+ value: '227g',
123
+ label: 'Stick de Mantequilla',
124
+ icon: 'mdi:cube-outline',
125
+ },
126
+ {
127
+ value: '175°C',
128
+ label: 'Equivalente 350°F',
129
+ icon: 'mdi:thermometer',
130
+ },
131
+ {
132
+ value: '240ml',
133
+ label: 'Volumen 1 Cup',
134
+ icon: 'mdi:water-percent',
135
+ },
136
+ ],
137
+ },
138
+ {
139
+ type: 'title',
140
+ text: 'Diferencias Críticas entre Volumen y Peso',
141
+ level: 3,
142
+ },
143
+ {
144
+ type: 'comparative',
145
+ columns: 2,
146
+ items: [
147
+ {
148
+ title: 'Medición por Volumen (Cups)',
149
+ icon: 'mdi:cup-water',
150
+ description: 'Utilizado en recetas domésticas de EE.UU. Mide el espacio que ocupa el ingrediente.',
151
+ points: [
152
+ 'Muy dependiente de la compactación',
153
+ 'Error común del 20-30% en harinas',
154
+ 'Inconsistente entre marcas de tazas',
155
+ 'Requiere tamizar antes para mayor precisión',
156
+ ],
157
+ },
158
+ {
159
+ title: 'Medición por Peso (Gramos)',
160
+ icon: 'mdi:scale-balance',
161
+ description: 'El estándar de la repostería profesional y europea. Precisión absoluta.',
162
+ highlight: true,
163
+ points: [
164
+ 'Precisión de +/- 1g siempre',
165
+ 'Resultados consistentes y repetibles',
166
+ 'Menos limpieza (un solo bol)',
167
+ 'Facilita el escalado matemático',
168
+ ],
169
+ },
170
+ ],
171
+ },
172
+ {
173
+ type: 'title',
174
+ text: 'Equivalencias de Ingredientes Comunes',
175
+ level: 3,
176
+ },
177
+ {
178
+ type: 'table',
179
+ headers: ['Ingrediente', '1 Cup (Volumen)', 'Gramos (Peso)', 'Densidad'],
180
+ rows: [
181
+ ['Harina de Trigo', '1 Cup', '120g', 'Baja'],
182
+ ['Azúcar Blanco', '1 Cup', '200g', 'Media'],
183
+ ['Azúcar Moreno', '1 Cup', '220g (compactado)', 'Alta'],
184
+ ['Mantequilla', '1 Cup (2 sticks)', '227g', 'Alta'],
185
+ ['Cacao en Polvo', '1 Cup', '85g', 'Muy Baja'],
186
+ ],
187
+ },
188
+ {
189
+ type: 'diagnostic',
190
+ variant: 'warning',
191
+ title: '¿Tu Bizcocho ha Salido Seco?',
192
+ html: 'El problema más común al usar cups es "hundir la taza" en el saco de harina. Esto compacta el polvo y puedes estar añadiendo hasta 40g extras de harina por cada taza. La solución es <strong>siempre convertir a gramos</strong> usando nuestra calculadora.',
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: 'Glosario de Unidades Estadounidenses',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'glossary',
201
+ items: [
202
+ {
203
+ term: 'Cup (Taza)',
204
+ definition: 'Unidad de volumen equivalente a unos 240ml. Es la base de la cocina americana.',
205
+ },
206
+ {
207
+ term: 'Tbsp (Tablespoon)',
208
+ definition: 'Cucharada sopera, equivalente a 15ml o 3 teaspoons.',
209
+ },
210
+ {
211
+ term: 'tsp (Teaspoon)',
212
+ definition: 'Cucharadita de café, equivalente a 5ml. Crucial para levaduras y sal.',
213
+ },
214
+ {
215
+ term: 'Stick of Butter',
216
+ definition: 'Formato común de mantequilla en EE.UU. que pesa exactamente 113.5g (media cup).',
217
+ },
218
+ ],
219
+ },
220
+ {
221
+ type: 'tip',
222
+ title: 'El truco de la Cuchara',
223
+ html: 'Si no tienes báscula y DEBES usar cups, llena la taza a cucharadas sin apretar y nivela con un cuchillo. Es mucho más preciso que hundir la taza.',
224
+ },
225
+ {
226
+ type: 'paragraph',
227
+ html: 'Usar un conversor profesional transforma la frustración de las recetas extranjeras en el éxito de un horneado perfecto.',
228
+ },
229
+ ],
230
+ faq: [
231
+ {
232
+ question: '¿Cuál es la diferencia entre 1 cup y 250ml?',
233
+ answer: '1 cup estadounidense = 236.588ml, no 250ml. Para propósitos prácticos, usamos 240ml. Aunque parece pequeña, esta diferencia de 4% puede afectar en recetas sensibles como macarons o mousses.',
234
+ },
235
+ {
236
+ question: '¿Por qué la harina no siempre pesa lo mismo?',
237
+ answer: 'Porque la harina se compacta con el tiempo y el transporte. Una harina recién tamizada pesa menos que una que ha estado en la despensa. Por eso, los panaderos profesionales siempre pesan, nunca miden volumen.',
238
+ },
239
+ {
240
+ question: '¿Cuál es la diferencia entre Tbsp y tsp?',
241
+ answer: '1 Tablespoon (Tbsp) = 15ml. 1 Teaspoon (tsp) = 5ml. Una cucharada es 3 veces una cucharita. En recetas de repostería, los errores con especias (que se miden en tsp) son comunes.',
242
+ },
243
+ {
244
+ question: '¿Es lo mismo una cup US que una cup imperial?',
245
+ answer: 'No. 1 US cup = 236ml. 1 Imperial cup (UK) = 284ml. Una diferencia del 20%. La mayoría de blogs estadounidenses usan US cups. Si la receta no especifica, asume US.',
246
+ },
247
+ {
248
+ question: '¿A qué temperatura corresponde el "gas 4" del horno?',
249
+ answer: 'Gas 4 = 180°C = 350°F. Es la escala británica. En repostería española, buscamos el número equivalente en tu horno: algunos usan gas, otros electrónico.',
250
+ },
251
+ ],
252
+ bibliography: [
253
+ {
254
+ name: 'King Arthur Baking: Ingredient Weight Chart',
255
+ url: 'https://www.kingarthurbaking.com/learn/ingredient-weight-chart',
256
+ },
257
+ {
258
+ name: 'Culinary Institute of America: Conversions and Equivalents',
259
+ url: 'https://www.ciachef.edu/',
260
+ },
261
+ ],
262
+ howTo: [
263
+ {
264
+ name: 'Selecciona el tipo de conversión',
265
+ text: 'Elige entre Cups a Gramos, Tablespoons/Teaspoons a Gramos, o Fahrenheit a Celsius.',
266
+ },
267
+ {
268
+ name: 'Escoge el ingrediente',
269
+ text: 'Cada alimento tiene una densidad diferente. La harina, azúcar, mantequilla: todos pesan distinto.',
270
+ },
271
+ {
272
+ name: 'Ingresa la cantidad',
273
+ text: 'Escribe el número de cups, cucharas o grados. El conversor calcula el equivalente al instante.',
274
+ },
275
+ {
276
+ name: 'Ajusta tu receta',
277
+ text: 'Con la conversión exacta, ahora puedes seguir la receta estadounidense con precisión profesional.',
278
+ },
279
+ ],
280
+ schemas: [],
281
+ };