@jjlmoya/utils-cooking 1.2.0 → 1.4.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 (33) 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/es.ts +1 -1
  18. package/src/tool/ingredient-rescaler/i18n/fr.ts +72 -1
  19. package/src/tool/kitchen-timer/i18n/en.ts +76 -1
  20. package/src/tool/kitchen-timer/i18n/es.ts +76 -1
  21. package/src/tool/kitchen-timer/i18n/fr.ts +76 -1
  22. package/src/tool/meringue-peak/i18n/en.ts +76 -1
  23. package/src/tool/meringue-peak/i18n/es.ts +72 -1
  24. package/src/tool/meringue-peak/i18n/fr.ts +72 -1
  25. package/src/tool/pizza/i18n/en.ts +94 -1
  26. package/src/tool/pizza/i18n/es.ts +94 -1
  27. package/src/tool/pizza/i18n/fr.ts +94 -1
  28. package/src/tool/roux-guide/i18n/en.ts +76 -1
  29. package/src/tool/roux-guide/i18n/es.ts +72 -1
  30. package/src/tool/roux-guide/i18n/fr.ts +72 -1
  31. package/src/tool/sourdough-calculator/i18n/en.ts +72 -1
  32. package/src/tool/sourdough-calculator/i18n/es.ts +72 -1
  33. package/src/tool/sourdough-calculator/i18n/fr.ts +77 -1
@@ -1,5 +1,76 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Sourdough Starter Feeding Calculator";
4
+ const description = "Automatically calculate exact proportions of starter, flour, and water for your sourdough maintenance and feeding. Preset or custom ratios available.";
5
+ const faq = [
6
+ {
7
+ question: 'What is a 1:1:1 ratio?',
8
+ answer: 'It\'s the most common ratio for maintaining sourdough starter at room temperature. It means 1 part starter, 1 part flour, and 1 part water. Best for daily feedings.',
9
+ },
10
+ {
11
+ question: 'When should I use a 1:2:2 ratio?',
12
+ answer: 'A 1:2:2 ratio is often used to reactive or wake up a starter. It provides a more predictable fermentation curve, ideal for reinvigorating a culture after refrigeration.',
13
+ },
14
+ {
15
+ question: 'Why use the 1:5:5 "sweet spot"?',
16
+ answer: 'The 1:5:5 ratio is a favorite for many bakers. It allows for an 8-12 hour fermentation window at room temperature before the starter peaks, balancing convenience with time control.',
17
+ },
18
+ {
19
+ question: 'Can I use custom ratios?',
20
+ answer: 'Absolutely. If you have a specific feeding protocol, you can enter your own ratios. Some bakers use 1:10:10 for very slow fermentation, others use 1:1:0.8 for a stiffer starter.',
21
+ },
22
+ {
23
+ question: 'Does the calculator round the grams?',
24
+ answer: 'Yes. It rounds to the nearest whole number for practicality. For maximum precision, use a digital scale; however, small rounding differences won\'t significantly impact fermentation.',
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: 'Enter total amount needed',
30
+ text: 'Define the total weight of sourdough starter you need for your recipe (e.g., 300g for a typical loaf).',
31
+ },
32
+ {
33
+ name: 'Select feeding ratio',
34
+ text: 'Choose from preset ratios (Maintain, Activate, Retard, Strong, Sweet Spot) or create your own custom ratio.',
35
+ },
36
+ {
37
+ name: 'Get your exact measurements',
38
+ text: 'The calculator shows you exactly how much starter, flour, and water to mix. Combine and ferment according to your schedule.',
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: 'sourdough-starter-feeding-calculator-ratio-proportions',
5
76
  title: 'Sourdough Starter Feeding Calculator',
@@ -238,5 +309,5 @@ export const content: ToolLocaleContent = {
238
309
  totalDough: 'Total Dough',
239
310
  mm: 'ST',
240
311
  },
241
- schemas: [],
312
+ schemas: [faqSchema, howToSchema, appSchema],
242
313
  };
@@ -1,5 +1,76 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
2
 
3
+ const title = "Calculadora de Masa Madre Ratios de Fermentación";
4
+ const description = "Calcula automáticamente las proporciones de masa madre, harina y agua para mantener tu cultivo. Ratios predefinidos o personalizados.";
5
+ const faq = [
6
+ {
7
+ question: '¿Qué es el ratio 1:1:1?',
8
+ answer: 'Es el ratio más común para mantener la masa madre a temperatura ambiente. Significa 1 parte de masa madre, 1 parte de harina y 1 parte de agua. Útil cuando refrescas diariamente.',
9
+ },
10
+ {
11
+ question: '¿Cuándo uso 1:2:2?',
12
+ answer: 'El ratio 1:2:2 es para activar la masa madre. Genera una fermentación más lenta pero predecible. Ideal si guardarás el cultivo en frío y quieres revigorarlo.',
13
+ },
14
+ {
15
+ question: '¿Cuál es el "sweet spot" 1:5:5?',
16
+ answer: 'El ratio 1:5:5 es el "sweet spot" para muchos panaderos. Permite 8-12 horas de fermentación a temperatura ambiente antes de que la masa madre esté lista. Equilibra comodidad con control de tiempo.',
17
+ },
18
+ {
19
+ question: '¿Puedo usar ratios personalizados?',
20
+ answer: 'Absolutamente. Si tienes un protocolo específico, puedes ingresar tus propios ratios. Algunos panaderos usan 1:10:10 para fermentación lentísima, otros 1:1:0.8 para menos agua.',
21
+ },
22
+ {
23
+ question: '¿La calculadora redondea los gramos?',
24
+ answer: 'Sí. Redondea al número entero más cercano para practicidad. Si necesitas máxima precisión, usa una báscula digital. Los pequeños redondeos no afectan significativamente la fermentación.',
25
+ },
26
+ ];
27
+ const howTo = [
28
+ {
29
+ name: 'Ingresa la cantidad total que necesitas',
30
+ text: 'Define el peso total de masa madre que requieres para tu receta (ej: 300g para un pan típico).',
31
+ },
32
+ {
33
+ name: 'Selecciona el ratio de refresco',
34
+ text: 'Elige entre los ratios predefinidos (Mantener, Activar, Retardar, Fuerte, Sweet Spot) o crea uno personalizado.',
35
+ },
36
+ {
37
+ name: 'Obtén las cantidades exactas',
38
+ text: 'La calculadora te muestra cuánto de masa madre, harina y agua necesitas. Mezcla estos ingredientes y deja fermentar según tu protocolo.',
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: 'calculadora-masa-madre',
5
76
  title: 'Calculadora de Masa Madre Ratios de Fermentación',
@@ -239,5 +310,5 @@ export const content: ToolLocaleContent = {
239
310
  totalDough: 'Total Masa',
240
311
  mm: 'MM',
241
312
  },
242
- schemas: [],
313
+ schemas: [faqSchema, howToSchema, appSchema],
243
314
  };
@@ -1,5 +1,81 @@
1
1
  import type { ToolLocaleContent } from "../../../types";
2
2
 
3
+ const title = "Calculateur de Rafraîchissement du Levain";
4
+ const description = "Le choix le plus courant en boulangerie artisanale moderne. Très facile à mélanger et à incorporer.";
5
+ const faq = [
6
+ {
7
+ question: "Qu'est-ce qu'un ratio 1:1:1 ?",
8
+ answer:
9
+ "C'est le ratio le plus courant pour entretenir le levain à température ambiante. Cela signifie 1 part de levain, 1 part de farine et 1 part d'eau. Idéal pour un rafraîchissement quotidien.",
10
+ },
11
+ {
12
+ question: "Quand utiliser un ratio 1:2:2 ?",
13
+ answer:
14
+ "Un ratio 1:2:2 est souvent utilisé pour réactiver ou réveiller un levain. Il offre une courbe de fermentation plus prévisible, idéale après un passage au réfrigérateur.",
15
+ },
16
+ {
17
+ question: "Pourquoi utiliser le ratio 1:5:5 ?",
18
+ answer:
19
+ "Le ratio 1:5:5 est le favori de nombreux boulangers. Il permet une fenêtre de fermentation de 8 à 12 heures avant que le levain n'atteigne son pic, équilibrant commodité et contrôle du temps.",
20
+ },
21
+ {
22
+ question: "Puis-je utiliser des ratios personnalisés ?",
23
+ answer:
24
+ "Absolument. Si vous avez un protocole spécifique, vous pouvez saisir vos propres ratios. Certains boulangers utilisent 1:10:10 pour une fermentation très lente, d'autres 1:1:0.8 pour un levain plus ferme.",
25
+ },
26
+ {
27
+ question: "Le calculateur arrondit-il les grammes ?",
28
+ answer:
29
+ "Oui. Il arrondit à l'entier le plus proche par praticité. Pour une précision maximale, utilisez une balance digitale ; toutefois, de petits écarts d'arrondi n'impactent pas significativement la fermentation.",
30
+ },
31
+ ];
32
+ const howTo = [
33
+ {
34
+ name: "Entrez la quantité totale",
35
+ text: "Définissez le poids total de levain dont vous avez besoin pour votre recette (ex: 300g pour un pain classique).",
36
+ },
37
+ {
38
+ name: "Sélectionnez le ratio",
39
+ text: "Choisissez parmi les ratios prédéfinis (Maintenir, Activer, Retarder, Fort, Sweet Spot) ou créez votre propre ratio personnalisé.",
40
+ },
41
+ {
42
+ name: "Obtenez vos mesures exactes",
43
+ text: "Le calculateur vous montre exactement combien de levain, de farine et d'eau mélanger. Mélangez et laissez fermenter selon votre planning.",
44
+ },
45
+ ];
46
+
47
+ const faqSchema = {
48
+ '@context': 'https://schema.org',
49
+ '@type': 'FAQPage',
50
+ mainEntity: faq.map((item) => ({
51
+ '@type': 'Question',
52
+ name: item.question,
53
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
54
+ })),
55
+ };
56
+
57
+ const howToSchema = {
58
+ '@context': 'https://schema.org',
59
+ '@type': 'HowTo',
60
+ name: title,
61
+ description,
62
+ step: howTo.map((step) => ({
63
+ '@type': 'HowToStep',
64
+ name: step.name,
65
+ text: step.text,
66
+ })),
67
+ };
68
+
69
+ const appSchema = {
70
+ '@context': 'https://schema.org',
71
+ '@type': 'SoftwareApplication',
72
+ name: title,
73
+ description,
74
+ applicationCategory: 'UtilitiesApplication',
75
+ operatingSystem: 'Web',
76
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
77
+ };
78
+
3
79
  export const content: ToolLocaleContent = {
4
80
  slug: "calculateur-rafraichissement-levain-proportions-ratio",
5
81
  title: "Calculateur de Rafraîchissement du Levain",
@@ -244,5 +320,5 @@ export const content: ToolLocaleContent = {
244
320
  totalDough: "Total Levain",
245
321
  mm: "Levain",
246
322
  },
247
- schemas: [],
323
+ schemas: [faqSchema, howToSchema, appSchema],
248
324
  };