@jjlmoya/utils-cooking 1.2.0 → 1.3.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 (32) hide show
  1. package/package.json +1 -1
  2. package/src/tool/american-kitchen-converter/i18n/en.ts +76 -1
  3. package/src/tool/american-kitchen-converter/i18n/es.ts +76 -1
  4. package/src/tool/american-kitchen-converter/i18n/fr.ts +76 -1
  5. package/src/tool/banana-ripeness/i18n/en.ts +72 -1
  6. package/src/tool/banana-ripeness/i18n/es.ts +72 -1
  7. package/src/tool/banana-ripeness/i18n/fr.ts +72 -1
  8. package/src/tool/brine/i18n/en.ts +80 -1
  9. package/src/tool/brine/i18n/es.ts +80 -1
  10. package/src/tool/brine/i18n/fr.ts +80 -1
  11. package/src/tool/cookware-guide/i18n/en.ts +72 -1
  12. package/src/tool/cookware-guide/i18n/es.ts +72 -1
  13. package/src/tool/cookware-guide/i18n/fr.ts +72 -1
  14. package/src/tool/egg-timer/i18n/en.ts +76 -1
  15. package/src/tool/egg-timer/i18n/es.ts +76 -1
  16. package/src/tool/egg-timer/i18n/fr.ts +81 -1
  17. package/src/tool/ingredient-rescaler/i18n/fr.ts +72 -1
  18. package/src/tool/kitchen-timer/i18n/en.ts +76 -1
  19. package/src/tool/kitchen-timer/i18n/es.ts +76 -1
  20. package/src/tool/kitchen-timer/i18n/fr.ts +76 -1
  21. package/src/tool/meringue-peak/i18n/en.ts +76 -1
  22. package/src/tool/meringue-peak/i18n/es.ts +72 -1
  23. package/src/tool/meringue-peak/i18n/fr.ts +72 -1
  24. package/src/tool/pizza/i18n/en.ts +94 -1
  25. package/src/tool/pizza/i18n/es.ts +94 -1
  26. package/src/tool/pizza/i18n/fr.ts +94 -1
  27. package/src/tool/roux-guide/i18n/en.ts +76 -1
  28. package/src/tool/roux-guide/i18n/es.ts +72 -1
  29. package/src/tool/roux-guide/i18n/fr.ts +72 -1
  30. package/src/tool/sourdough-calculator/i18n/en.ts +72 -1
  31. package/src/tool/sourdough-calculator/i18n/es.ts +72 -1
  32. package/src/tool/sourdough-calculator/i18n/fr.ts +77 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-cooking",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,5 +1,80 @@
1
1
  import type { ToolLocaleContent } from "../../../types";
2
2
 
3
+ const title = "US Cooking Conversion Calculator: Cups to Grams";
4
+ const description = "Convert cups, tablespoons, and Fahrenheit to the metric system. Your professional compass for decoding American recipes with absolute precision.";
5
+ const faq = [
6
+ {
7
+ question: "What's the difference between 1 cup and 250ml?",
8
+ 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.",
9
+ },
10
+ {
11
+ question: "Why doesn't flour always weigh the same?",
12
+ 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.",
13
+ },
14
+ {
15
+ question: "What's the difference between Tbsp and tsp?",
16
+ 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.",
17
+ },
18
+ {
19
+ question: "Is a US cup the same as an imperial cup?",
20
+ 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.",
21
+ },
22
+ {
23
+ question: "What temperature is 'Gas Mark 4'?",
24
+ answer: "Gas Mark 4 is equivalent to 350°F or 175°C. This is the most common temperature for standard cake baking.",
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: "Select conversion type",
30
+ text: "Choose between Cups to Grams, Tablespoons/Teaspoons to Grams, or Fahrenheit to Celsius.",
31
+ },
32
+ {
33
+ name: "Pick your ingredient",
34
+ text: "Every food has a different density. Flour, sugar, and butter all weigh differently per cup.",
35
+ },
36
+ {
37
+ name: "Enter the quantity",
38
+ text: "Input the number of cups, spoons, or degrees. The converter calculates the metric equivalent instantly.",
39
+ },
40
+ {
41
+ name: "Adjust your recipe",
42
+ text: "With exact metric measurements, you can now replicate any international recipe with professional success.",
43
+ },
44
+ ];
45
+
46
+ const faqSchema = {
47
+ '@context': 'https://schema.org',
48
+ '@type': 'FAQPage',
49
+ mainEntity: faq.map((item) => ({
50
+ '@type': 'Question',
51
+ name: item.question,
52
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
53
+ })),
54
+ };
55
+
56
+ const howToSchema = {
57
+ '@context': 'https://schema.org',
58
+ '@type': 'HowTo',
59
+ name: title,
60
+ description,
61
+ step: howTo.map((step) => ({
62
+ '@type': 'HowToStep',
63
+ name: step.name,
64
+ text: step.text,
65
+ })),
66
+ };
67
+
68
+ const appSchema = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ name: title,
72
+ description,
73
+ applicationCategory: 'UtilitiesApplication',
74
+ operatingSystem: 'Web',
75
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
76
+ };
77
+
3
78
  export const content: ToolLocaleContent = {
4
79
  slug: "us-cooking-conversion-calculator-cups-to-grams-fahrenheit",
5
80
  title: "US Cooking Conversion Calculator: Cups to Grams",
@@ -278,5 +353,5 @@ export const content: ToolLocaleContent = {
278
353
  html: "Using a professional converter turns the frustration of foreign recipes into the success of a perfect bake.",
279
354
  },
280
355
  ],
281
- schemas: [],
356
+ schemas: [faqSchema, howToSchema, appSchema],
282
357
  };
@@ -1,5 +1,80 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Conversor Cocina Americana Cups a Gramos y Temperaturas";
4
+ const description = "Convierte cups, tablespoons y Fahrenheit al sistema métrico. La brújula para descifrar recetas estadounidenses con precisión profesional.";
5
+ const faq = [
6
+ {
7
+ question: '¿Cuál es la diferencia entre 1 cup y 250ml?',
8
+ 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.',
9
+ },
10
+ {
11
+ question: '¿Por qué la harina no siempre pesa lo mismo?',
12
+ 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.',
13
+ },
14
+ {
15
+ question: '¿Cuál es la diferencia entre Tbsp y tsp?',
16
+ 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.',
17
+ },
18
+ {
19
+ question: '¿Es lo mismo una cup US que una cup imperial?',
20
+ 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.',
21
+ },
22
+ {
23
+ question: '¿A qué temperatura corresponde el "gas 4" del horno?',
24
+ 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.',
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: 'Selecciona el tipo de conversión',
30
+ text: 'Elige entre Cups a Gramos, Tablespoons/Teaspoons a Gramos, o Fahrenheit a Celsius.',
31
+ },
32
+ {
33
+ name: 'Escoge el ingrediente',
34
+ text: 'Cada alimento tiene una densidad diferente. La harina, azúcar, mantequilla: todos pesan distinto.',
35
+ },
36
+ {
37
+ name: 'Ingresa la cantidad',
38
+ text: 'Escribe el número de cups, cucharas o grados. El conversor calcula el equivalente al instante.',
39
+ },
40
+ {
41
+ name: 'Ajusta tu receta',
42
+ text: 'Con la conversión exacta, ahora puedes seguir la receta estadounidense con precisión profesional.',
43
+ },
44
+ ];
45
+
46
+ const faqSchema = {
47
+ '@context': 'https://schema.org',
48
+ '@type': 'FAQPage',
49
+ mainEntity: faq.map((item) => ({
50
+ '@type': 'Question',
51
+ name: item.question,
52
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
53
+ })),
54
+ };
55
+
56
+ const howToSchema = {
57
+ '@context': 'https://schema.org',
58
+ '@type': 'HowTo',
59
+ name: title,
60
+ description,
61
+ step: howTo.map((step) => ({
62
+ '@type': 'HowToStep',
63
+ name: step.name,
64
+ text: step.text,
65
+ })),
66
+ };
67
+
68
+ const appSchema = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ name: title,
72
+ description,
73
+ applicationCategory: 'UtilitiesApplication',
74
+ operatingSystem: 'Web',
75
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
76
+ };
77
+
3
78
  export const content: ToolLocaleContent = {
4
79
  slug: 'conversor-unidades-cocina-americana',
5
80
  title: 'Conversor Cocina Americana Cups a Gramos y Temperaturas',
@@ -277,5 +352,5 @@ export const content: ToolLocaleContent = {
277
352
  text: 'Con la conversión exacta, ahora puedes seguir la receta estadounidense con precisión profesional.',
278
353
  },
279
354
  ],
280
- schemas: [],
355
+ schemas: [faqSchema, howToSchema, appSchema],
281
356
  };
@@ -1,5 +1,80 @@
1
1
  import type { ToolLocaleContent } from "../../../types";
2
2
 
3
+ const title = "Convertisseur de Cuisine Américaine : Cups en Grammes, Fahrenheit";
4
+ const description = "Convertissez les cups, tablespoons et Fahrenheit en système métrique. Votre boussole pour décoder les recettes américaines avec une précision professionnelle.";
5
+ const faq = [
6
+ {
7
+ question: "Quelle est la différence entre 1 cup et 250ml ?",
8
+ answer: "1 cup américaine vaut environ 236,6ml, et non 250ml. En cuisine pratique, on utilise 240ml. Cette différence de 4% peut impacter les recettes sensibles comme les macarons.",
9
+ },
10
+ {
11
+ question: "Pourquoi le poids de la farine varie-t-il ?",
12
+ answer: "La farine se tasse avec le temps. Une cup de farine fraîchement tamisée pèse moins qu'une cup de farine restée longtemps dans son sac. Les professionnels pèsent toujours leurs ingrédients.",
13
+ },
14
+ {
15
+ question: "Quelle est la différence entre Tbsp et tsp ?",
16
+ answer: "1 Tablespoon (Tbsp) = 15ml. 1 Teaspoon (tsp) = 5ml. Il y a exactement trois cuillères à café dans une cuillère à soupe.",
17
+ },
18
+ {
19
+ question: "La cup américaine est-elle identique à la cup impériale ?",
20
+ answer: "Non. Une cup US fait 236ml, tandis qu'une cup Impériale (UK) fait 284ml, soit 20% de différence ! La plupart des blogs utilisent le standard US.",
21
+ },
22
+ {
23
+ question: "À quelle température correspond le Thermostat 6 ?",
24
+ answer: "Le Thermostat 6 correspond à 180°C, soit environ 350°F. C'est la température de cuisson la plus courante.",
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: "Sélectionnez le type de conversion",
30
+ text: "Choisissez entre Cups en Grammes, Cuillères en Grammes ou Fahrenheit en Celsius.",
31
+ },
32
+ {
33
+ name: "Choisissez l'ingrédient",
34
+ text: "Chaque aliment a une densité différente. La farine, le sucre ou le beurre pèsent différemment.",
35
+ },
36
+ {
37
+ name: "Entrez la quantité",
38
+ text: "Saisissez le nombre de cups ou de degrés. La conversion métrique s'affiche instantanément.",
39
+ },
40
+ {
41
+ name: "Ajustez votre recette",
42
+ text: "Avec des mesures précises, vous pouvez reproduire n'importe quelle recette internationale avec succès.",
43
+ },
44
+ ];
45
+
46
+ const faqSchema = {
47
+ '@context': 'https://schema.org',
48
+ '@type': 'FAQPage',
49
+ mainEntity: faq.map((item) => ({
50
+ '@type': 'Question',
51
+ name: item.question,
52
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
53
+ })),
54
+ };
55
+
56
+ const howToSchema = {
57
+ '@context': 'https://schema.org',
58
+ '@type': 'HowTo',
59
+ name: title,
60
+ description,
61
+ step: howTo.map((step) => ({
62
+ '@type': 'HowToStep',
63
+ name: step.name,
64
+ text: step.text,
65
+ })),
66
+ };
67
+
68
+ const appSchema = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'SoftwareApplication',
71
+ name: title,
72
+ description,
73
+ applicationCategory: 'UtilitiesApplication',
74
+ operatingSystem: 'Web',
75
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
76
+ };
77
+
3
78
  export const content: ToolLocaleContent = {
4
79
  slug: "convertisseur-mesures-cuisine-americaine-cups-grammes",
5
80
  title: "Convertisseur de Cuisine Américaine : Cups en Grammes, Fahrenheit",
@@ -288,5 +363,5 @@ export const content: ToolLocaleContent = {
288
363
  html: "Utiliser un convertisseur professionnel transforme la frustration des recettes étrangères en succès culinaire.",
289
364
  },
290
365
  ],
291
- schemas: [],
366
+ schemas: [faqSchema, howToSchema, appSchema],
292
367
  };
@@ -1,5 +1,76 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Banana Diagnostics and Conservation: Scientific Guide";
4
+ const description = "Analyze your banana ripening stage with scientific precision. Learn conservation techniques, ethylene biochemistry, and nutritional optimization.";
5
+ const faq = [
6
+ {
7
+ question: 'Why do bananas turn black in the fridge?',
8
+ answer: 'Cold breaks down cell walls in the peel, releasing enzymes that oxidize phenols and create black polyphenols. However, the inside usually stays firm and sweet longer than outside.',
9
+ },
10
+ {
11
+ question: 'How can I ripen a banana quickly?',
12
+ answer: 'Put them in a closed paper bag with an apple or tomato. These emit ethylene gas, which accelerates ripening. If in a hurry, you can put them in the oven at low temperature for a few minutes.',
13
+ },
14
+ {
15
+ question: 'Is it safe to eat spotted bananas?',
16
+ answer: 'Yes, totally. Spots indicate starch has converted to sugar, making them sweeter and more digestible. Only discard if they have mold, smell bad, or are excessively soft.',
17
+ },
18
+ {
19
+ question: 'What is ethylene?',
20
+ answer: 'It\'s a plant hormone in gas form that regulates growth and ripening. Banana is a climacteric fruit, meaning it continues producing ethylene and ripening after harvest.',
21
+ },
22
+ ];
23
+ const howTo = [
24
+ {
25
+ name: 'Observe the color',
26
+ text: 'Carefully examine peel color, from green to dark brown, to determine current ripening stage.',
27
+ },
28
+ {
29
+ name: 'Use the simulator',
30
+ text: 'Slide the ripeness indicator to see accurate predictions about when it reaches the next stage.',
31
+ },
32
+ {
33
+ name: 'Adjust conditions',
34
+ text: 'Modify temperature and humidity to see how they affect ripening speed.',
35
+ },
36
+ {
37
+ name: 'Apply conservation',
38
+ text: 'Follow specific conservation and acceleration recommendations based on current stage.',
39
+ },
40
+ ];
41
+
42
+ const faqSchema = {
43
+ '@context': 'https://schema.org',
44
+ '@type': 'FAQPage',
45
+ mainEntity: faq.map((item) => ({
46
+ '@type': 'Question',
47
+ name: item.question,
48
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
49
+ })),
50
+ };
51
+
52
+ const howToSchema = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'HowTo',
55
+ name: title,
56
+ description,
57
+ step: howTo.map((step) => ({
58
+ '@type': 'HowToStep',
59
+ name: step.name,
60
+ text: step.text,
61
+ })),
62
+ };
63
+
64
+ const appSchema = {
65
+ '@context': 'https://schema.org',
66
+ '@type': 'SoftwareApplication',
67
+ name: title,
68
+ description,
69
+ applicationCategory: 'UtilitiesApplication',
70
+ operatingSystem: 'Web',
71
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
72
+ };
73
+
3
74
  export const content: ToolLocaleContent = {
4
75
  slug: 'banana-ripeness',
5
76
  title: 'Banana Diagnostics and Conservation: Scientific Guide',
@@ -173,5 +244,5 @@ export const content: ToolLocaleContent = {
173
244
  html: '<strong>Degradation Alert:</strong> External factors like relative humidity over 85% or temperatures above 25°C can drastically accelerate degradation, taking banana from optimal to inedible in hours. This simulator helps you anticipate these changes and plan strategically.',
174
245
  },
175
246
  ],
176
- schemas: [],
247
+ schemas: [faqSchema, howToSchema, appSchema],
177
248
  };
@@ -1,5 +1,76 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Diagnóstico y Conservación de Plátanos: Guía Científica";
4
+ const description = "Analiza el estado de maduración de tus plátanos con precisión científica. Aprende técnicas de conservación, bioquímica del etileno y optimización nutricional.";
5
+ const faq = [
6
+ {
7
+ question: '¿Por qué se ponen negros los plátanos en la nevera?',
8
+ answer: 'El frío rompe las paredes celulares de la cáscara, liberando enzimas que oxidan los fenoles y crean polifenoles negros. Sin embargo, el interior suele conservarse firme y dulce por más tiempo que fuera.',
9
+ },
10
+ {
11
+ question: '¿Cómo puedo madurar un plátano rápido?',
12
+ answer: 'Ponlos en una bolsa de papel cerrada con una manzana o un tomate. Estos emiten gas etileno, que acelera la maduración. Si tienes mucha prisa, puedes ponerlos unos minutos en el horno a baja temperatura.',
13
+ },
14
+ {
15
+ question: '¿Es seguro comer plátanos con manchas?',
16
+ answer: 'Sí, totalmente. De hecho, las manchas indican que el almidón se ha convertido en azúcar, haciéndolos más dulces y digeribles. Solo deséchalos si tienen moho, huelen mal o están excesivamente blandos.',
17
+ },
18
+ {
19
+ question: '¿Qué es el etileno?',
20
+ answer: 'Es una hormona vegetal en forma de gas que regula el crecimiento y la maduración. El plátano es una fruta climatérica, lo que significa que sigue produciendo etileno y madurando después de ser recolectado.',
21
+ },
22
+ ];
23
+ const howTo = [
24
+ {
25
+ name: 'Observar el color',
26
+ text: 'Examina cuidadosamente el color de la cáscara, desde verde hasta marrón oscuro, para determinar el estado de maduración actual.',
27
+ },
28
+ {
29
+ name: 'Usar el simulador',
30
+ text: 'Desliza el indicador de maduración para ver predicciones precisas sobre cuándo alcanzará el siguiente estado.',
31
+ },
32
+ {
33
+ name: 'Ajustar condiciones',
34
+ text: 'Modifica temperatura y humedad para ver cómo afectan la velocidad de maduración.',
35
+ },
36
+ {
37
+ name: 'Aplicar conservación',
38
+ text: 'Sigue las recomendaciones específicas de conservación y aceleración según el estado actual.',
39
+ },
40
+ ];
41
+
42
+ const faqSchema = {
43
+ '@context': 'https://schema.org',
44
+ '@type': 'FAQPage',
45
+ mainEntity: faq.map((item) => ({
46
+ '@type': 'Question',
47
+ name: item.question,
48
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
49
+ })),
50
+ };
51
+
52
+ const howToSchema = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'HowTo',
55
+ name: title,
56
+ description,
57
+ step: howTo.map((step) => ({
58
+ '@type': 'HowToStep',
59
+ name: step.name,
60
+ text: step.text,
61
+ })),
62
+ };
63
+
64
+ const appSchema = {
65
+ '@context': 'https://schema.org',
66
+ '@type': 'SoftwareApplication',
67
+ name: title,
68
+ description,
69
+ applicationCategory: 'UtilitiesApplication',
70
+ operatingSystem: 'Web',
71
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
72
+ };
73
+
3
74
  export const content: ToolLocaleContent = {
4
75
  slug: 'diagnostico-platanos',
5
76
  title: 'Diagnóstico y Conservación de Plátanos: Guía Científica',
@@ -173,5 +244,5 @@ export const content: ToolLocaleContent = {
173
244
  html: '<strong>Alerta de degradación:</strong> Factores externos como humedad relativa superior al 85% o temperaturas por encima de los 25°C pueden acelerar drásticamente la degradación, llevando el plátano de óptimo a incomestible en cuestión de horas. Este simulador te ayuda a anticipar estos cambios y planificar estratégicamente.',
174
245
  },
175
246
  ],
176
- schemas: [],
247
+ schemas: [faqSchema, howToSchema, appSchema],
177
248
  };
@@ -1,5 +1,76 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Banana Diagnostics and Conservation: Scientific Guide";
4
+ const description = "Analyze your banana ripening stage with scientific precision. Learn conservation techniques, ethylene biochemistry, and nutritional optimization.";
5
+ const faq = [
6
+ {
7
+ question: 'Why do bananas turn black in the fridge?',
8
+ answer: 'Cold breaks down cell walls in the peel, releasing enzymes that oxidize phenols and create black polyphenols. However, the inside usually stays firm and sweet longer than outside.',
9
+ },
10
+ {
11
+ question: 'How can I ripen a banana quickly?',
12
+ answer: 'Put them in a closed paper bag with an apple or tomato. These emit ethylene gas, which accelerates ripening. If in a hurry, you can put them in the oven at low temperature for a few minutes.',
13
+ },
14
+ {
15
+ question: 'Is it safe to eat spotted bananas?',
16
+ answer: 'Yes, totally. Spots indicate starch has converted to sugar, making them sweeter and more digestible. Only discard if they have mold, smell bad, or are excessively soft.',
17
+ },
18
+ {
19
+ question: 'What is ethylene?',
20
+ answer: 'It\'s a plant hormone in gas form that regulates growth and ripening. Banana is a climacteric fruit, meaning it continues producing ethylene and ripening after harvest.',
21
+ },
22
+ ];
23
+ const howTo = [
24
+ {
25
+ name: 'Observe the color',
26
+ text: 'Carefully examine peel color, from green to dark brown, to determine current ripening stage.',
27
+ },
28
+ {
29
+ name: 'Use the simulator',
30
+ text: 'Slide the ripeness indicator to see accurate predictions about when it reaches the next stage.',
31
+ },
32
+ {
33
+ name: 'Adjust conditions',
34
+ text: 'Modify temperature and humidity to see how they affect ripening speed.',
35
+ },
36
+ {
37
+ name: 'Apply conservation',
38
+ text: 'Follow specific conservation and acceleration recommendations based on current stage.',
39
+ },
40
+ ];
41
+
42
+ const faqSchema = {
43
+ '@context': 'https://schema.org',
44
+ '@type': 'FAQPage',
45
+ mainEntity: faq.map((item) => ({
46
+ '@type': 'Question',
47
+ name: item.question,
48
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
49
+ })),
50
+ };
51
+
52
+ const howToSchema = {
53
+ '@context': 'https://schema.org',
54
+ '@type': 'HowTo',
55
+ name: title,
56
+ description,
57
+ step: howTo.map((step) => ({
58
+ '@type': 'HowToStep',
59
+ name: step.name,
60
+ text: step.text,
61
+ })),
62
+ };
63
+
64
+ const appSchema = {
65
+ '@context': 'https://schema.org',
66
+ '@type': 'SoftwareApplication',
67
+ name: title,
68
+ description,
69
+ applicationCategory: 'UtilitiesApplication',
70
+ operatingSystem: 'Web',
71
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
72
+ };
73
+
3
74
  export const content: ToolLocaleContent = {
4
75
  slug: 'banana-ripeness',
5
76
  title: 'Banana Diagnostics and Conservation: Scientific Guide',
@@ -173,5 +244,5 @@ export const content: ToolLocaleContent = {
173
244
  html: '<strong>Degradation Alert:</strong> External factors like relative humidity over 85% or temperatures above 25°C can drastically accelerate degradation, taking banana from optimal to inedible in hours. This simulator helps you anticipate these changes and plan strategically.',
174
245
  },
175
246
  ],
176
- schemas: [],
247
+ schemas: [faqSchema, howToSchema, appSchema],
177
248
  };
@@ -1,5 +1,84 @@
1
1
  import type { ToolLocaleContent } from "../../../types";
2
2
 
3
+ const title = "Equilibrium Brining and Fermentation Calculator";
4
+ const description = "Master the science of equilibrium brining for juicy meats and perfect fermentations. Calculate exact salinity based on total product and water weight.";
5
+ const faq = [
6
+ {
7
+ question: "What is the equilibrium brining method?",
8
+ answer:
9
+ "The equilibrium method calculates salt based on total weight (water + ingredient), not just weighted water. it guarantees consistent salt concentration regardless of the amount of ingredient you use.",
10
+ },
11
+ {
12
+ question: "How much salt do I need for pickles?",
13
+ answer:
14
+ "For fermented vegetables (pickles, sauerkraut, kimchi), 2% to 3% salt is recommended. For meats, between 1.5% and 2%. The calculator gives the exact amount based on your ingredient weight.",
15
+ },
16
+ {
17
+ question: "Can I freeze meat after brining?",
18
+ answer:
19
+ "Yes, it's ideal. Brine protects against freezer burn and the meat will be ready to cook upon thawing. However, avoid freezing fermented vegetables as they will turn mushy.",
20
+ },
21
+ {
22
+ question: "Why add sugar to the brine?",
23
+ answer:
24
+ "Sugar has two functions: it facilitates the Maillard reaction (browning) in meats and balances the saline flavor without making the product taste sweet.",
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: "Determine your goal",
30
+ text: "Decide if you are brining meats (1.5-2%), fermenting (2-3%), making sauces (3.5%), or long-term preserves (5%+). Each has a different time and purpose.",
31
+ },
32
+ {
33
+ name: "Weigh ingredient and water",
34
+ text: "Weigh the product (meat, vegetables) and water exactly. Precision is critical: even 5g difference changes result accuracy. Use a precision scale.",
35
+ },
36
+ {
37
+ name: "Calculate with the tool",
38
+ text: "Enter the weights into the calculator and adjust salinity according to your product type. The tool tells you exactly how much salt and sugar you need.",
39
+ },
40
+ {
41
+ name: "Dissolve and mix",
42
+ text: "Completely dissolve salt in cold water before adding product. For meats, ensure brine covers everything. For fermenteds, ensure product is submerged.",
43
+ },
44
+ {
45
+ name: "Ferment or cure",
46
+ text: "Refrigerate based on type: 4-48 hours for meats, 1-3 weeks for fermenteds. Exact time depends on temperature and personal taste.",
47
+ },
48
+ ];
49
+
50
+ const faqSchema = {
51
+ '@context': 'https://schema.org',
52
+ '@type': 'FAQPage',
53
+ mainEntity: faq.map((item) => ({
54
+ '@type': 'Question',
55
+ name: item.question,
56
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
57
+ })),
58
+ };
59
+
60
+ const howToSchema = {
61
+ '@context': 'https://schema.org',
62
+ '@type': 'HowTo',
63
+ name: title,
64
+ description,
65
+ step: howTo.map((step) => ({
66
+ '@type': 'HowToStep',
67
+ name: step.name,
68
+ text: step.text,
69
+ })),
70
+ };
71
+
72
+ const appSchema = {
73
+ '@context': 'https://schema.org',
74
+ '@type': 'SoftwareApplication',
75
+ name: title,
76
+ description,
77
+ applicationCategory: 'UtilitiesApplication',
78
+ operatingSystem: 'Web',
79
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
80
+ };
81
+
3
82
  export const content: ToolLocaleContent = {
4
83
  slug: "equilibrium-brining-calculator-meat-fermentation-ratios",
5
84
  title: "Equilibrium Brining and Fermentation Calculator",
@@ -217,5 +296,5 @@ export const content: ToolLocaleContent = {
217
296
  html: "Our equilibrium calculator eliminates guesswork from your recipes, allowing you to cook with the confidence of a professional.",
218
297
  },
219
298
  ],
220
- schemas: [],
299
+ schemas: [faqSchema, howToSchema, appSchema],
221
300
  };