@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.
- package/package.json +60 -0
- package/src/category/i18n/en.ts +24 -0
- package/src/category/i18n/es.ts +208 -0
- package/src/category/i18n/fr.ts +24 -0
- package/src/category/index.ts +37 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +32 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n-titles.test.ts +66 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/american-kitchen-converter/AmericanKitchenEngine.ts +259 -0
- package/src/tool/american-kitchen-converter/bibliography.astro +6 -0
- package/src/tool/american-kitchen-converter/component.astro +838 -0
- package/src/tool/american-kitchen-converter/i18n/en.ts +282 -0
- package/src/tool/american-kitchen-converter/i18n/es.ts +281 -0
- package/src/tool/american-kitchen-converter/i18n/fr.ts +292 -0
- package/src/tool/american-kitchen-converter/index.ts +24 -0
- package/src/tool/american-kitchen-converter/seo.astro +8 -0
- package/src/tool/banana-ripeness/BananaCare.css +587 -0
- package/src/tool/banana-ripeness/BananaEngine.ts +79 -0
- package/src/tool/banana-ripeness/bibliography.astro +6 -0
- package/src/tool/banana-ripeness/component.astro +285 -0
- package/src/tool/banana-ripeness/i18n/en.ts +177 -0
- package/src/tool/banana-ripeness/i18n/es.ts +177 -0
- package/src/tool/banana-ripeness/i18n/fr.ts +177 -0
- package/src/tool/banana-ripeness/index.ts +24 -0
- package/src/tool/banana-ripeness/seo.astro +8 -0
- package/src/tool/brine/bibliography.astro +6 -0
- package/src/tool/brine/component.astro +884 -0
- package/src/tool/brine/i18n/en.ts +221 -0
- package/src/tool/brine/i18n/es.ts +222 -0
- package/src/tool/brine/i18n/fr.ts +221 -0
- package/src/tool/brine/index.ts +26 -0
- package/src/tool/brine/seo.astro +8 -0
- package/src/tool/cookware-guide/CookwareGuide.css +487 -0
- package/src/tool/cookware-guide/bibliography.astro +6 -0
- package/src/tool/cookware-guide/component.astro +164 -0
- package/src/tool/cookware-guide/i18n/en.ts +163 -0
- package/src/tool/cookware-guide/i18n/es.ts +163 -0
- package/src/tool/cookware-guide/i18n/fr.ts +164 -0
- package/src/tool/cookware-guide/index.ts +24 -0
- package/src/tool/cookware-guide/init.ts +174 -0
- package/src/tool/cookware-guide/seo.astro +8 -0
- package/src/tool/egg-timer/EggTimer.css +503 -0
- package/src/tool/egg-timer/bibliography.astro +14 -0
- package/src/tool/egg-timer/component.astro +281 -0
- package/src/tool/egg-timer/i18n/en.ts +230 -0
- package/src/tool/egg-timer/i18n/es.ts +222 -0
- package/src/tool/egg-timer/i18n/fr.ts +121 -0
- package/src/tool/egg-timer/index.ts +27 -0
- package/src/tool/egg-timer/seo.astro +39 -0
- package/src/tool/ingredient-rescaler/IngredientRescaler.css +308 -0
- package/src/tool/ingredient-rescaler/bibliography.astro +6 -0
- package/src/tool/ingredient-rescaler/component.astro +107 -0
- package/src/tool/ingredient-rescaler/i18n/en.ts +265 -0
- package/src/tool/ingredient-rescaler/i18n/es.ts +268 -0
- package/src/tool/ingredient-rescaler/i18n/fr.ts +207 -0
- package/src/tool/ingredient-rescaler/index.ts +24 -0
- package/src/tool/ingredient-rescaler/init.ts +200 -0
- package/src/tool/ingredient-rescaler/seo.astro +8 -0
- package/src/tool/kitchen-timer/KitchenTimer.css +325 -0
- package/src/tool/kitchen-timer/bibliography.astro +6 -0
- package/src/tool/kitchen-timer/component.astro +341 -0
- package/src/tool/kitchen-timer/i18n/en.ts +154 -0
- package/src/tool/kitchen-timer/i18n/es.ts +154 -0
- package/src/tool/kitchen-timer/i18n/fr.ts +154 -0
- package/src/tool/kitchen-timer/index.ts +26 -0
- package/src/tool/kitchen-timer/init.ts +55 -0
- package/src/tool/kitchen-timer/lib/AudioHelper.ts +27 -0
- package/src/tool/kitchen-timer/lib/DockManager.ts +97 -0
- package/src/tool/kitchen-timer/lib/KitchenTimer.ts +264 -0
- package/src/tool/kitchen-timer/seo.astro +8 -0
- package/src/tool/meringue-peak/MeringueCalculator.css +298 -0
- package/src/tool/meringue-peak/bibliography.astro +6 -0
- package/src/tool/meringue-peak/component.astro +169 -0
- package/src/tool/meringue-peak/i18n/en.ts +257 -0
- package/src/tool/meringue-peak/i18n/es.ts +234 -0
- package/src/tool/meringue-peak/i18n/fr.ts +234 -0
- package/src/tool/meringue-peak/index.ts +24 -0
- package/src/tool/meringue-peak/seo.astro +8 -0
- package/src/tool/mold-scaler/MoldScaler.css +406 -0
- package/src/tool/mold-scaler/bibliography.astro +6 -0
- package/src/tool/mold-scaler/component.astro +126 -0
- package/src/tool/mold-scaler/i18n/en.ts +268 -0
- package/src/tool/mold-scaler/i18n/es.ts +269 -0
- package/src/tool/mold-scaler/i18n/fr.ts +276 -0
- package/src/tool/mold-scaler/index.ts +26 -0
- package/src/tool/mold-scaler/init.ts +264 -0
- package/src/tool/mold-scaler/seo.astro +8 -0
- package/src/tool/pizza/Pizza.css +569 -0
- package/src/tool/pizza/bibliography.astro +6 -0
- package/src/tool/pizza/calculator.ts +143 -0
- package/src/tool/pizza/component.astro +237 -0
- package/src/tool/pizza/i18n/en.ts +288 -0
- package/src/tool/pizza/i18n/es.ts +289 -0
- package/src/tool/pizza/i18n/fr.ts +288 -0
- package/src/tool/pizza/index.ts +27 -0
- package/src/tool/pizza/seo.astro +8 -0
- package/src/tool/roux-guide/RouxGuide.css +483 -0
- package/src/tool/roux-guide/bibliography.astro +6 -0
- package/src/tool/roux-guide/component.astro +194 -0
- package/src/tool/roux-guide/i18n/en.ts +233 -0
- package/src/tool/roux-guide/i18n/es.ts +225 -0
- package/src/tool/roux-guide/i18n/fr.ts +225 -0
- package/src/tool/roux-guide/index.ts +24 -0
- package/src/tool/roux-guide/init.ts +187 -0
- package/src/tool/roux-guide/seo.astro +8 -0
- package/src/tool/sourdough-calculator/SourdoughCalculator.css +369 -0
- package/src/tool/sourdough-calculator/bibliography.astro +6 -0
- package/src/tool/sourdough-calculator/component.astro +198 -0
- package/src/tool/sourdough-calculator/i18n/en.ts +242 -0
- package/src/tool/sourdough-calculator/i18n/es.ts +243 -0
- package/src/tool/sourdough-calculator/i18n/fr.ts +248 -0
- package/src/tool/sourdough-calculator/index.ts +24 -0
- package/src/tool/sourdough-calculator/init.ts +131 -0
- package/src/tool/sourdough-calculator/seo.astro +8 -0
- package/src/tools.ts +29 -0
- package/src/types.ts +73 -0
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from "../../../types";
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: "equilibrium-brining-calculator-meat-fermentation-ratios",
|
|
5
|
+
title: "Equilibrium Brining and Fermentation Calculator",
|
|
6
|
+
description:
|
|
7
|
+
"Master the science of equilibrium brining for juicy meats and perfect fermentations. Calculate exact salinity based on total product and water weight.",
|
|
8
|
+
ui: {
|
|
9
|
+
calculator: "Calculator",
|
|
10
|
+
subtitle: "Enter weights to calculate the perfect balance.",
|
|
11
|
+
productWeight: "Product Weight (g)",
|
|
12
|
+
waterWeight: "Water Weight (g)",
|
|
13
|
+
desiredSalinity: "Desired Salinity",
|
|
14
|
+
meat: "Meats (1.5%)",
|
|
15
|
+
fermented: "Fermenteds (2.0%)",
|
|
16
|
+
sauces: "Sauces (3.5%)",
|
|
17
|
+
preserves: "Preserves (5.0%)",
|
|
18
|
+
addSugar: "Add Sugar",
|
|
19
|
+
sugarHint: "Balances flavor and helps browning (50% of salt)",
|
|
20
|
+
saltNeeded: "Salt Needed",
|
|
21
|
+
sugarOptional: "Sugar (Optional)",
|
|
22
|
+
estimatedTime: "Estimated Time",
|
|
23
|
+
product: "Product",
|
|
24
|
+
total: "Total",
|
|
25
|
+
unitGrams: "grams",
|
|
26
|
+
timeMeatsLabel: "Time (Meats)",
|
|
27
|
+
timeMeatsDuration: "4 - 48 Hours",
|
|
28
|
+
timeVegetablesLabel: "Time (Vegetables)",
|
|
29
|
+
timeVegetablesDuration: "1 - 3 Weeks",
|
|
30
|
+
timePreservesLabel: "Time (Preserves)",
|
|
31
|
+
timePreservesDuration: "1+ Months",
|
|
32
|
+
},
|
|
33
|
+
faqTitle: "Frequently Asked Questions",
|
|
34
|
+
bibliographyTitle: "Sources and References",
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: "What is the equilibrium brining method?",
|
|
38
|
+
answer:
|
|
39
|
+
"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.",
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: "How much salt do I need for pickles?",
|
|
43
|
+
answer:
|
|
44
|
+
"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.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: "Can I freeze meat after brining?",
|
|
48
|
+
answer:
|
|
49
|
+
"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.",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: "Why add sugar to the brine?",
|
|
53
|
+
answer:
|
|
54
|
+
"Sugar has two functions: it facilitates the Maillard reaction (browning) in meats and balances the saline flavor without making the product taste sweet.",
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
howTo: [
|
|
58
|
+
{
|
|
59
|
+
name: "Determine your goal",
|
|
60
|
+
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.",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: "Weigh ingredient and water",
|
|
64
|
+
text: "Weigh the product (meat, vegetables) and water exactly. Precision is critical: even 5g difference changes result accuracy. Use a precision scale.",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Calculate with the tool",
|
|
68
|
+
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.",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: "Dissolve and mix",
|
|
72
|
+
text: "Completely dissolve salt in cold water before adding product. For meats, ensure brine covers everything. For fermenteds, ensure product is submerged.",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "Ferment or cure",
|
|
76
|
+
text: "Refrigerate based on type: 4-48 hours for meats, 1-3 weeks for fermenteds. Exact time depends on temperature and personal taste.",
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
bibliography: [
|
|
80
|
+
{
|
|
81
|
+
name: "The Noma Guide to Fermentation - René Redzepi & David Zilber",
|
|
82
|
+
url: "https://www.nomacph.com/",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "Salt, Fat, Acid, Heat - Samin Nosrat",
|
|
86
|
+
url: "https://www.saltfatacidheat.com/",
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: "Pollan, Michael - Cooked",
|
|
90
|
+
url: "https://michaelpollan.com/",
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
seo: [
|
|
94
|
+
{
|
|
95
|
+
type: "title",
|
|
96
|
+
text: "Master Guide for Equilibrium Brining and Fermentation",
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: "paragraph",
|
|
101
|
+
html: "<strong>Equilibrium brining</strong> is the ultimate technique to ensure juicy and safe results. Unlike traditional methods, this calculates salt based on the <strong>total weight</strong> of water and product, ensuring constant salinity regardless of container volume.",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: "stats",
|
|
105
|
+
columns: 4,
|
|
106
|
+
items: [
|
|
107
|
+
{
|
|
108
|
+
value: "1.5 - 2%",
|
|
109
|
+
label: "Ideal Meat Ratio",
|
|
110
|
+
icon: "mdi:food-steak",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
value: "2.5 - 3%",
|
|
114
|
+
label: "Fermentation Ratio",
|
|
115
|
+
icon: "mdi:flask-outline",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
value: "18-22°C",
|
|
119
|
+
label: "Fermentation Temp",
|
|
120
|
+
icon: "mdi:thermometer",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
value: "0.5%",
|
|
124
|
+
label: "Balance Sugar",
|
|
125
|
+
icon: "mdi:shaker-outline",
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: "title",
|
|
131
|
+
text: "Differences Between Dry and Wet Brining",
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: "comparative",
|
|
136
|
+
columns: 2,
|
|
137
|
+
items: [
|
|
138
|
+
{
|
|
139
|
+
title: "Dry Brining",
|
|
140
|
+
icon: "mdi:shaker-outline",
|
|
141
|
+
description: "Salt is applied directly to product surface without additional water.",
|
|
142
|
+
points: [
|
|
143
|
+
"Much crispier skin on poultry",
|
|
144
|
+
"More concentrated ingredient flavor",
|
|
145
|
+
"Takes up less fridge space",
|
|
146
|
+
"Ideal for steaks and whole chickens",
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
title: "Wet Brining",
|
|
151
|
+
icon: "mdi:water",
|
|
152
|
+
description: "Product is submerged in water and salt solution calculated by equilibrium.",
|
|
153
|
+
highlight: true,
|
|
154
|
+
points: [
|
|
155
|
+
"Superior moisture transfer",
|
|
156
|
+
"Allows introduction of aromatics (spices)",
|
|
157
|
+
"More uniform curing in large pieces",
|
|
158
|
+
"Ideal for turkey, pork loin, and fish",
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: "title",
|
|
165
|
+
text: "Times and Salinities by Application",
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: "table",
|
|
170
|
+
headers: ["Category", "Salinity (%)", "Min. Time", "Primary Goal"],
|
|
171
|
+
rows: [
|
|
172
|
+
["Poultry & Pork", "1.5% - 2.0%", "12 - 24 hours", "Juiciness and tenderness"],
|
|
173
|
+
["White Fish", "1.0% - 1.5%", "20 - 45 minutes", "Meat firmness"],
|
|
174
|
+
["Lacto-fermentation", "2.5% - 3.0%", "7 - 21 days", "Microbiological safety"],
|
|
175
|
+
["Sauces & Preserves", "3.5% - 5.0%", "1+ month", "Long-term preservation"],
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: "diagnostic",
|
|
180
|
+
variant: "warning",
|
|
181
|
+
title: "Identifying Brining Issues",
|
|
182
|
+
html: "If brine has a foul (non-acidic) smell, colored mold (black, pink), or product becomes extremely soft, discard it. Surface white mold (Kahm yeast) is normal in fermenteds and can be removed.",
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: "title",
|
|
186
|
+
text: "Expert Curing Glossary",
|
|
187
|
+
level: 3,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: "glossary",
|
|
191
|
+
items: [
|
|
192
|
+
{
|
|
193
|
+
term: "Osmosis",
|
|
194
|
+
definition: "Physical process where salt penetrates food cells to balance concentrations.",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
term: "Denaturation",
|
|
198
|
+
definition: "Salt's effect on proteins allowing them to retain more water during cooking.",
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
term: "Kahm Yeast",
|
|
202
|
+
definition: "Thin white layer sometimes appearing on ferment surface; harmless but indicates low acidity.",
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
term: "Lacto-fermentation",
|
|
206
|
+
definition: "Anaerobic fermentation where bacteria convert sugars into lactic acid, preserving food.",
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
type: "tip",
|
|
212
|
+
title: "Water Quality",
|
|
213
|
+
html: "Always avoid tap water with high chlorine, as it can inhibit good bacteria growth in fermentations. Use filtered water or let water stand for 24h.",
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
type: "paragraph",
|
|
217
|
+
html: "Our equilibrium calculator eliminates guesswork from your recipes, allowing you to cook with the confidence of a professional.",
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
schemas: [],
|
|
221
|
+
};
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from "../../../types";
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: "salmuera",
|
|
5
|
+
title: "Calculadora de Salmuera por Equilibrio",
|
|
6
|
+
description:
|
|
7
|
+
"La ciencia del equilibrio para carnes jugosas y fermentados perfectos. Calcula la salinidad exacta basada en el peso total de ingrediente y agua.",
|
|
8
|
+
ui: {
|
|
9
|
+
calculator: "Calculadora",
|
|
10
|
+
subtitle: "Introduce los pesos para calcular el equilibrio perfecto.",
|
|
11
|
+
productWeight: "Peso del Producto (g)",
|
|
12
|
+
waterWeight: "Peso del Agua (g)",
|
|
13
|
+
desiredSalinity: "Salinidad Deseada",
|
|
14
|
+
meat: "Carnes (1.5%)",
|
|
15
|
+
fermented: "Fermentados (2.0%)",
|
|
16
|
+
sauces: "Salsas (3.5%)",
|
|
17
|
+
preserves: "Conservas (5.0%)",
|
|
18
|
+
addSugar: "Añadir Azúcar",
|
|
19
|
+
sugarHint: "Equilibra el sabor y ayuda al dorado (50% de la sal)",
|
|
20
|
+
saltNeeded: "Sal Necesaria",
|
|
21
|
+
sugarOptional: "Azúcar (Opcional)",
|
|
22
|
+
estimatedTime: "Tiempo Estimado",
|
|
23
|
+
product: "Producto",
|
|
24
|
+
total: "Total",
|
|
25
|
+
unitGrams: "gramos",
|
|
26
|
+
timeMeatsLabel: "Tiempo (Carnes)",
|
|
27
|
+
timeMeatsDuration: "4 - 48 Horas",
|
|
28
|
+
timeVegetablesLabel: "Tiempo (Vegetales)",
|
|
29
|
+
timeVegetablesDuration: "1 - 3 Semanas",
|
|
30
|
+
timePreservesLabel: "Tiempo (Conservas)",
|
|
31
|
+
timePreservesDuration: "1+ Meses",
|
|
32
|
+
},
|
|
33
|
+
faqTitle: "Preguntas Frecuentes",
|
|
34
|
+
bibliographyTitle: "Fuentes y Referencias",
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: "¿Qué es el método de salmuera por equilibrio?",
|
|
38
|
+
answer:
|
|
39
|
+
"El método de equilibrio calcula la sal en función del peso total (agua + ingrediente), no solo del agua. Esto garantiza una concentración de sal consistente independientemente de la cantidad de ingrediente que uses.",
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: "¿Cuánta sal necesito para hacer encurtidos?",
|
|
43
|
+
answer:
|
|
44
|
+
"Para vegetales fermentados (pepinillos, chucrut, kimchi) se recomienda entre 2% y 3% de sal. Para carnes, entre 1.5% y 2%. La calculadora te da la cantidad exacta según tu peso de ingredientes.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: "¿Puedo congelar la carne después de la salmuera?",
|
|
48
|
+
answer:
|
|
49
|
+
"Sí, es ideal. La salmuera protege contra quemaduras por congelación y la carne estará lista para cocinar al descongelar. Sin embargo, evita congelar vegetales fermentados ya que se volverán papilla.",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: "¿Por qué añadir azúcar a la salmuera?",
|
|
53
|
+
answer:
|
|
54
|
+
"El azúcar tiene dos funciones: facilita la reacción de Maillard (dorado) en carnes y equilibra el sabor salino sin hacer que el producto sepa dulce. No convierte tu salmuera en un postre.",
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
howTo: [
|
|
58
|
+
{
|
|
59
|
+
name: "Determina tu objetivo",
|
|
60
|
+
text: "Decide si vas a hacer carnes en salmuera (1.5-2%), fermentados (2-3%), salsas (3.5%) o conservas de larga duración (5%+). Cada una tiene un tiempo y propósito diferente.",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: "Pesa ingrediente y agua",
|
|
64
|
+
text: "Pesa el producto (carne, vegetales) y el agua exactamente. La precisión es crítica: incluso 5g de diferencia cambia el resultado. Usa una balanza de precisión.",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Calcula con la herramienta",
|
|
68
|
+
text: "Introduce los pesos en la calculadora y ajusta la salinidad según tu tipo de producto. La herramienta te dirá exactamente cuánta sal y azúcar necesitas.",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: "Disuelve y mezcla",
|
|
72
|
+
text: "Disuelve completamente la sal en agua fría antes de añadir el producto. Para carnes, asegúrate de que la salmuera cubra todo. Para fermentados, el peso debe estar sumergido.",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "Fermenta o cura",
|
|
76
|
+
text: "Refrigera según el tipo: 4-48 horas para carnes, 1-3 semanas para fermentados. El tiempo exacto depende de la temperatura y tu gusto personal.",
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
bibliography: [
|
|
80
|
+
{
|
|
81
|
+
name: "The Noma Guide to Fermentation - René Redzepi & David Zilber",
|
|
82
|
+
url: "https://www.nomacph.com/",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "Salt, Fat, Acid, Heat - Samin Nosrat",
|
|
86
|
+
url: "https://www.saltfatacidheat.com/",
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: "Pollan, Michael - Cooked",
|
|
90
|
+
url: "https://michaelpollan.com/",
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
seo: [
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Guía Maestro de Salmuera por Equilibrio y Fermentación',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: 'La <strong>salmuera por equilibrio</strong> es la técnica definitiva para garantizar resultados jugosos y seguros. A diferencia de los métodos tradicionales, este calcula la sal basándose en el <strong>peso total</strong> del agua y el producto, asegurando una salinidad constante independientemente del volumen del recipiente.',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'stats',
|
|
105
|
+
columns: 4,
|
|
106
|
+
items: [
|
|
107
|
+
{
|
|
108
|
+
value: '1.5 - 2%',
|
|
109
|
+
label: 'Ratio Ideal Carnes',
|
|
110
|
+
icon: 'mdi:food-steak',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
value: '2.5 - 3%',
|
|
114
|
+
label: 'Ratio Fermentados',
|
|
115
|
+
icon: 'mdi:flask-outline',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
value: '18-22°C',
|
|
119
|
+
label: 'Temp. Fermentación',
|
|
120
|
+
icon: 'mdi:thermometer',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
value: '0.5%',
|
|
124
|
+
label: 'Azúcar de Equilibrio',
|
|
125
|
+
icon: 'mdi:shaker-outline',
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'title',
|
|
131
|
+
text: 'Diferencias entre Salmuera Seca y Humeda',
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'comparative',
|
|
136
|
+
columns: 2,
|
|
137
|
+
items: [
|
|
138
|
+
{
|
|
139
|
+
title: 'Salmuera Seca (Dry Brining)',
|
|
140
|
+
icon: 'mdi:shaker-outline',
|
|
141
|
+
description: 'Se aplica la sal directamente sobre la superficie del producto sin usar agua adicional.',
|
|
142
|
+
points: [
|
|
143
|
+
'Piel mucho más crujiente en aves',
|
|
144
|
+
'Sabor más concentrado del ingrediente',
|
|
145
|
+
'Ocupa menos espacio en la nevera',
|
|
146
|
+
'Ideal para filetes y pollos enteros',
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
title: 'Salmuera Húmeda (Wet Brining)',
|
|
151
|
+
icon: 'mdi:water',
|
|
152
|
+
description: 'El producto se sumerge en una solución de agua y sal calculada por equilibrio.',
|
|
153
|
+
highlight: true,
|
|
154
|
+
points: [
|
|
155
|
+
'Transferencia de humedad superior',
|
|
156
|
+
'Permite introducir aromas (especias)',
|
|
157
|
+
'Curado más uniforme en piezas grandes',
|
|
158
|
+
'Ideal para pavo, lomo de cerdo y pescados',
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: 'title',
|
|
165
|
+
text: 'Tiempos y Salinidades según la Aplicación',
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'table',
|
|
170
|
+
headers: ['Categoría', 'Salinidad (%)', 'Tiempo Mínimo', 'Objetivo Principal'],
|
|
171
|
+
rows: [
|
|
172
|
+
['Aves y Cerdo', '1.5% - 2.0%', '12 - 24 horas', 'Jugosidad y ternura'],
|
|
173
|
+
['Pescados Blancos', '1.0% - 1.5%', '20 - 45 minutos', 'Firmeza de la carne'],
|
|
174
|
+
['Lacto-fermentados', '2.5% - 3.0%', '7 - 21 días', 'Seguridad microbiológica'],
|
|
175
|
+
['Salsas y Conservas', '3.5% - 5.0%', '1+ mes', 'Preservación a largo plazo'],
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'diagnostic',
|
|
180
|
+
variant: 'warning',
|
|
181
|
+
title: 'Identificación de Problemas en la Salmuera',
|
|
182
|
+
html: 'Si la salmuera presenta un olor fétido (no ácido), moho de colores (negro, rosa) o el producto se vuelve extremadamente blando, deséchalo. El moho blanco superficial (levadura Kahm) es normal en fermentados y se puede retirar.',
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: 'title',
|
|
186
|
+
text: 'Glosario del Experto en Curados',
|
|
187
|
+
level: 3,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'glossary',
|
|
191
|
+
items: [
|
|
192
|
+
{
|
|
193
|
+
term: 'Ósmosis',
|
|
194
|
+
definition: 'Proceso físico por el cual la sal penetra en las células del alimento para equilibrar las concentraciones.',
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
term: 'Desnaturalización',
|
|
198
|
+
definition: 'Efecto de la sal sobre las proteínas que permite que estas retengan más agua durante la cocción.',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
term: 'Levadura Kahm',
|
|
202
|
+
definition: 'Capa blanca y fina que aparece a veces en la superficie de los fermentados; es inofensiva pero indica falta de acidez.',
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
term: 'Lacto-fermentación',
|
|
206
|
+
definition: 'Fermentación anaeróbica donde las bacterias convierten azúcares en ácido láctico, preservando el alimento.',
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
type: 'tip',
|
|
212
|
+
title: 'Calidad del Agua',
|
|
213
|
+
html: 'Evita siempre el agua del grifo con mucho cloro, ya que puede inhibir el crecimiento de las bacterias buenas en tus fermentaciones. Usa agua filtrada o deja reposar el agua 24h.',
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
type: 'paragraph',
|
|
217
|
+
html: 'Nuestra calculadora de equilibrio elimina las conjeturas de tus recetas, permitiéndote cocinar con la confianza de un profesional del sector.',
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
|
|
221
|
+
schemas: [],
|
|
222
|
+
};
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from "../../../types";
|
|
2
|
+
|
|
3
|
+
export const content: ToolLocaleContent = {
|
|
4
|
+
slug: "calculateur-saumure-equilibre-fermentation-viande-ratios",
|
|
5
|
+
title: "Calculateur de Saumure par Équilibre et Fermentation",
|
|
6
|
+
description:
|
|
7
|
+
"Maîtrisez la science de la saumure par équilibre pour des viandes juteuses et des fermentations parfaites. Calculez la salinité exacte basée sur le poids total.",
|
|
8
|
+
ui: {
|
|
9
|
+
calculator: "Calculatrice",
|
|
10
|
+
subtitle: "Entrez les poids para calculer l'équilibre parfait.",
|
|
11
|
+
productWeight: "Poids du Produit (g)",
|
|
12
|
+
waterWeight: "Poids de l'Eau (g)",
|
|
13
|
+
desiredSalinity: "Salinité Souhaitée",
|
|
14
|
+
meat: "Viandes (1.5%)",
|
|
15
|
+
fermented: "Fermentations (2.0%)",
|
|
16
|
+
sauces: "Sauces (3.5%)",
|
|
17
|
+
preserves: "Conserves (5.0%)",
|
|
18
|
+
addSugar: "Ajouter du Sucre",
|
|
19
|
+
sugarHint: "Équilibre le goût et aide au brunissement (50% du sel)",
|
|
20
|
+
saltNeeded: "Sel Nécessaire",
|
|
21
|
+
sugarOptional: "Sucre (Optionnel)",
|
|
22
|
+
estimatedTime: "Temps Estimé",
|
|
23
|
+
product: "Produit",
|
|
24
|
+
total: "Total",
|
|
25
|
+
unitGrams: "grammes",
|
|
26
|
+
timeMeatsLabel: "Temps (Viandes)",
|
|
27
|
+
timeMeatsDuration: "4 - 48 Heures",
|
|
28
|
+
timeVegetablesLabel: "Temps (Légumes)",
|
|
29
|
+
timeVegetablesDuration: "1 - 3 Semaines",
|
|
30
|
+
timePreservesLabel: "Temps (Conserves)",
|
|
31
|
+
timePreservesDuration: "1+ Mois",
|
|
32
|
+
},
|
|
33
|
+
faqTitle: "Questions Fréquentes sur la Saumure",
|
|
34
|
+
bibliographyTitle: "Sources et Références Scientifiques",
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: "Qu'est-ce que la méthode de saumure par équilibre ?",
|
|
38
|
+
answer:
|
|
39
|
+
"La méthode par équilibre calcule le sel en fonction du poids total (eau + ingrédient), pas seulement du poids de l'eau. Cela garantit une concentration de sel constante quelle que soit la quantité d'ingrédient utilisée.",
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: "Combien de sel faut-il pour les légumes fermentés ?",
|
|
43
|
+
answer:
|
|
44
|
+
"Pour les légumes fermentés (cornichons, choucroute, kimchi), il est recommandé d'utiliser entre 2% et 3% de sel. Pour les viandes, entre 1,5% et 2%. Le calculateur vous donne le montant exact selon vos poids.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: "Puis-je congeler de la viande après saumurage ?",
|
|
48
|
+
answer:
|
|
49
|
+
"Oui, c'est idéal. La saumure protège contre les brûlures de congélation et la viande sera prête à cuire dès la décongélation. Évitez toutefois de congeler des légumes fermentés car ils perdraient leur texture.",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: "Pourquoi ajouter du sucre à la saumure ?",
|
|
53
|
+
answer:
|
|
54
|
+
"Le sucre a deux fonctions : il facilite la réaction de Maillard (brunissement) pour les viandes et équilibre la saveur saline sans rendre le produit sucré.",
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
howTo: [
|
|
58
|
+
{
|
|
59
|
+
name: "Déterminez votre objectif",
|
|
60
|
+
text: "Décidez si vous saumurez des viandes (1,5-2%), fermentez des légumes (2-3%), faites des sauces (3,5%) ou des conserves (5%+).",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: "Pesez l'ingrédient et l'eau",
|
|
64
|
+
text: "Pesez le produit et l'eau avec précision. Chaque gramme compte pour la sécurité alimentaire et le goût. Utilisez une balance de précision.",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Calculez avec l'outil",
|
|
68
|
+
text: "Entrez les poids dans le calculateur et ajustez la salinité selon votre type de produit. L'outil vous indiquera les grammes exacts de sel et de sucre.",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: "Dissolvez et mélangez",
|
|
72
|
+
text: "Dissolvez complètement le sel dans l'eau froide avant d'ajouter le produit. Pour les viandes, assurez-vous que la saumure recouvre tout.",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "Fermentez ou marinez",
|
|
76
|
+
text: "Réfrigérez selon le type : 4-48 h pour les viandes, 1-3 semaines pour les fermentations. Le temps dépend de la température ambiante.",
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
bibliography: [
|
|
80
|
+
{
|
|
81
|
+
name: "The Noma Guide to Fermentation - René Redzepi & David Zilber",
|
|
82
|
+
url: "https://www.nomacph.com/",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "Salt, Fat, Acid, Heat - Samin Nosrat",
|
|
86
|
+
url: "https://www.saltfatacidheat.com/",
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: "Pollan, Michael - Cooked",
|
|
90
|
+
url: "https://michaelpollan.com/",
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
seo: [
|
|
94
|
+
{
|
|
95
|
+
type: "title",
|
|
96
|
+
text: "Guide Maître de Saumure par Équilibre et Fermentation",
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: "paragraph",
|
|
101
|
+
html: "La <strong>saumure par équilibre</strong> est la technique ultime pour garantir des résultats juteux et sûrs. Contrairement aux méthodes traditionnelles, celle-ci calcule le sel sur le <strong>poids total</strong> de l'eau et du produit.",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: "stats",
|
|
105
|
+
columns: 4,
|
|
106
|
+
items: [
|
|
107
|
+
{
|
|
108
|
+
value: "1.5 - 2%",
|
|
109
|
+
label: "Ratio Idéal Viandes",
|
|
110
|
+
icon: "mdi:food-steak",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
value: "2.5 - 3%",
|
|
114
|
+
label: "Ratio Fermentation",
|
|
115
|
+
icon: "mdi:flask-outline",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
value: "18-22°C",
|
|
119
|
+
label: "Temp. Fermentation",
|
|
120
|
+
icon: "mdi:thermometer",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
value: "0.5%",
|
|
124
|
+
label: "Sucre d'Équilibre",
|
|
125
|
+
icon: "mdi:shaker-outline",
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: "title",
|
|
131
|
+
text: "Différences entre Saumure Sèche et Humide",
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: "comparative",
|
|
136
|
+
columns: 2,
|
|
137
|
+
items: [
|
|
138
|
+
{
|
|
139
|
+
title: "Saumure Sèche (Dry Brining)",
|
|
140
|
+
icon: "mdi:shaker-outline",
|
|
141
|
+
description: "Le sel est appliqué directement sur la surface du produit sans ajout d'eau.",
|
|
142
|
+
points: [
|
|
143
|
+
"Peau beaucoup plus croustillante sur les volailles",
|
|
144
|
+
"Saveur plus concentrée de l'ingrédient",
|
|
145
|
+
"Prend moins de place au réfrigérateur",
|
|
146
|
+
"Idéal pour les steaks et poulets entiers",
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
title: "Saumure Humide (Wet Brining)",
|
|
151
|
+
icon: "mdi:water",
|
|
152
|
+
description: "Le produit est immergé dans une solution d'eau et de sel calculée par équilibre.",
|
|
153
|
+
highlight: true,
|
|
154
|
+
points: [
|
|
155
|
+
"Transfert d'humidité supérieur",
|
|
156
|
+
"Permet l'introduction d'aromates (épices)",
|
|
157
|
+
"Salaison plus uniforme sur les grosses pièces",
|
|
158
|
+
"Idéal pour la dinde, le porc et le poisson",
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type: "title",
|
|
165
|
+
text: "Temps et Salinités selon l'Application",
|
|
166
|
+
level: 3,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: "table",
|
|
170
|
+
headers: ["Catégorie", "Salinité (%)", "Temps Minimum", "Objectif Principal"],
|
|
171
|
+
rows: [
|
|
172
|
+
["Volaille et Porc", "1.5% - 2.0%", "12 - 24 heures", "Jutosité et tendreté"],
|
|
173
|
+
["Poissons Blancs", "1.0% - 1.5%", "20 - 45 minutes", "Fermeté de la chair"],
|
|
174
|
+
["Lacto-fermentation", "2.5% - 3.0%", "7 - 21 jours", "Sécurité microbiologique"],
|
|
175
|
+
["Sauces et Conserves", "3.5% - 5.0%", "1+ mois", "Conservation longue durée"],
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: "diagnostic",
|
|
180
|
+
variant: "warning",
|
|
181
|
+
title: "Identifier les Problèmes de Saumure",
|
|
182
|
+
html: "Si la saumure dégage une odeur fétide (non acide), si des moisissures colorées apparaissent, ou si le produit devient trop mou, jetez-le. Le voile blanc en surface (levure Kahm) est normal.",
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: "title",
|
|
186
|
+
text: "Glossaire de l'Expert en Salaison",
|
|
187
|
+
level: 3,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: "glossary",
|
|
191
|
+
items: [
|
|
192
|
+
{
|
|
193
|
+
term: "Osmose",
|
|
194
|
+
definition: "Processus physique par lequel le sel pénètre dans les cellules pour équilibrer les concentrations.",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
term: "Dénaturation",
|
|
198
|
+
definition: "Effet du sel sur les protéines permettant de retenir plus d'eau pendant la cuisson.",
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
term: "Levure Kahm",
|
|
202
|
+
definition: "Fine couche blanche inoffensive indiquant un manque d'acidité ou d'hygiène parfaite.",
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
term: "Lacto-fermentation",
|
|
206
|
+
definition: "Fermentation anaérobie où les bactéries transforment les sucres en acide lactique.",
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
type: "tip",
|
|
212
|
+
title: "Qualité de l'Eau",
|
|
213
|
+
html: "Évitez l'eau du robinet trop chlorée qui peut inhiber les bonnes bactéries. Utilisez de l'eau filtrée ou laissez reposer l'eau 24h à l'air libre.",
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
type: "paragraph",
|
|
217
|
+
html: "Notre calculateur d'équilibre supprime les approximations, vous permettant de cuisiner avec la confiance d'un professionnel.",
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
schemas: [],
|
|
221
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { CookingToolEntry, ToolDefinition } from "../../types";
|
|
2
|
+
import BrineComponent from "./component.astro";
|
|
3
|
+
import BrineSEO from "./seo.astro";
|
|
4
|
+
import BrineBibliography from "./bibliography.astro";
|
|
5
|
+
|
|
6
|
+
export const brine: CookingToolEntry = {
|
|
7
|
+
id: "brine-calculator",
|
|
8
|
+
icons: {
|
|
9
|
+
bg: "mdi:water",
|
|
10
|
+
fg: "mdi:salt",
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
es: () => import("./i18n/es").then((m) => m.content),
|
|
14
|
+
en: () => import("./i18n/en").then((m) => m.content),
|
|
15
|
+
fr: () => import("./i18n/fr").then((m) => m.content),
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export { BrineComponent, BrineSEO, BrineBibliography };
|
|
20
|
+
|
|
21
|
+
export const BRINE_TOOL: ToolDefinition = {
|
|
22
|
+
entry: brine,
|
|
23
|
+
Component: BrineComponent,
|
|
24
|
+
SEOComponent: BrineSEO,
|
|
25
|
+
BibliographyComponent: BrineBibliography,
|
|
26
|
+
};
|