@jjlmoya/utils-cooking 1.32.0 → 1.34.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 +2 -2
- package/src/category/index.ts +6 -0
- package/src/entries.ts +7 -1
- package/src/index.ts +3 -0
- package/src/tests/i18n-titles.test.ts +1 -1
- package/src/tests/i18n_coverage.test.ts +1 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/carry-over-cooking-predictor/bibliography.astro +6 -0
- package/src/tool/carry-over-cooking-predictor/bibliography.ts +10 -0
- package/src/tool/carry-over-cooking-predictor/carry-over-cooking-predictor.css +513 -0
- package/src/tool/carry-over-cooking-predictor/component.astro +362 -0
- package/src/tool/carry-over-cooking-predictor/entry.ts +26 -0
- package/src/tool/carry-over-cooking-predictor/i18n/de.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/en.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/es.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/fr.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/id.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/it.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/ja.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/ko.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/nl.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/pl.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/pt.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/ru.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/sv.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/tr.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/i18n/zh.ts +286 -0
- package/src/tool/carry-over-cooking-predictor/index.ts +11 -0
- package/src/tool/carry-over-cooking-predictor/logic.ts +63 -0
- package/src/tool/carry-over-cooking-predictor/seo.astro +15 -0
- package/src/tool/egg-timer/component.astro +19 -17
- package/src/tool/egg-timer/perfect-boiled-egg-timer-altitude-calculator.css +336 -502
- package/src/tool/maillard-reaction-optimizer/bibliography.astro +6 -0
- package/src/tool/maillard-reaction-optimizer/bibliography.ts +14 -0
- package/src/tool/maillard-reaction-optimizer/component.astro +391 -0
- package/src/tool/maillard-reaction-optimizer/entry.ts +12 -0
- package/src/tool/maillard-reaction-optimizer/i18n/de.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/en.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/es.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/fr.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/id.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/it.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/ja.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/ko.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/nl.ts +308 -0
- package/src/tool/maillard-reaction-optimizer/i18n/pl.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/pt.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/ru.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/sv.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/tr.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/i18n/zh.ts +307 -0
- package/src/tool/maillard-reaction-optimizer/index.ts +11 -0
- package/src/tool/maillard-reaction-optimizer/logic.ts +57 -0
- package/src/tool/maillard-reaction-optimizer/maillard-reaction-optimizer.css +694 -0
- package/src/tool/maillard-reaction-optimizer/seo.astro +15 -0
- package/src/tool/meat-binder-transglutaminase-calculator/bibliography.astro +6 -0
- package/src/tool/meat-binder-transglutaminase-calculator/bibliography.ts +18 -0
- package/src/tool/meat-binder-transglutaminase-calculator/component.astro +253 -0
- package/src/tool/meat-binder-transglutaminase-calculator/components/LabReport.astro +59 -0
- package/src/tool/meat-binder-transglutaminase-calculator/components/TissueSpecimen.astro +67 -0
- package/src/tool/meat-binder-transglutaminase-calculator/components/TissueViewer.astro +137 -0
- package/src/tool/meat-binder-transglutaminase-calculator/entry.ts +26 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/de.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/en.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/es.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/fr.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/id.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/it.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/ja.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/ko.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/nl.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/pl.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/pt.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/ru.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/sv.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/tr.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/i18n/zh.ts +178 -0
- package/src/tool/meat-binder-transglutaminase-calculator/index.ts +11 -0
- package/src/tool/meat-binder-transglutaminase-calculator/logic.ts +66 -0
- package/src/tool/meat-binder-transglutaminase-calculator/meat-binder-transglutaminase-calculator.css +785 -0
- package/src/tool/meat-binder-transglutaminase-calculator/seo.astro +15 -0
- package/src/tools.ts +6 -0
- package/src/types.ts +1 -1
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
3
|
+
|
|
4
|
+
const title = 'Fleischbinder:Transglutaminase:Rechner: Dossier zur Molekularküche';
|
|
5
|
+
const description = 'Berechnen Sie die präzise Transglutaminase-Dosierung (TG) für die Fleischbindung. Erhalten Sie Trockenbestäubungs- oder Schlammverhältnisse, Inkubationszeit und Temperatur-Sicherheitswarnungen.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Was ist Transglutaminase und wie bindet sie Fleisch?',
|
|
10
|
+
answer: 'Transglutaminase (TG), auch bekannt als "Fleischkleber", ist ein Enzym, das die Bildung kovalenter Bindungen zwischen den Aminosäuren Glutamin und Lysin in Proteinen katalysiert. Beim Auftragen auf Fleischoberflächen erzeugt es Querverbindungen, die separate Stücke zu einer einzigen zusammenhängenden Platte verschmelzen. Die Reaktion benötigt Zeit und kalte Temperaturen (2-5 °C), um sich vollständig zu entwickeln, typischerweise 6 bis 24 Stunden.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'Was ist der Unterschied zwischen Trockenbestäubung und Schlammauftrag?',
|
|
14
|
+
answer: 'Bei der Trockenbestäubung wird das TG-Pulver direkt auf die Fleischoberfläche gestreut (0,75:1,5 % des Fleischgewichts). Die Schlamm-Methode mischt einen Teil TG mit vier Teilen Wasser zu einer streichfähigen Paste, ideal zum Beschichten unregelmäßiger Oberflächen oder zum Auftragen dünner, gleichmäßiger Schichten auf große Braten oder Filets mit Haut.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Beeinflusst die Temperatur die Transglutaminase-Aktivität?',
|
|
18
|
+
answer: 'Ja. TG ist zwischen 2 °C und 15 °C am aktivsten. Bei höheren Temperaturen (bis zu 40 °C) beschleunigt sich die Reaktion, muss aber genau überwacht werden. Über 60 °C denaturiert das Enzym und wird dauerhaft inaktiv: die Quervernetzungsreaktion stoppt vollständig. Halten Sie TG-gebundenes Fleisch während des Garens stets unter 60 °C, um die Bindung zu erhalten.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Kann ich Transglutaminase bei Fisch oder Schalentieren verwenden?',
|
|
22
|
+
answer: 'Ja, aber Fisch und Schalentiere haben geringere Mengen an Lysin und Glutamin in ihren Muskelproteinen als rotes Fleisch und Geflügel. Möglicherweise benötigen Sie ein höheres TG-Verhältnis (1,2:1,5 %) und längere Inkubationszeiten. Für empfindliche Jakobsmuscheln oder dünne Fischfilets empfiehlt sich die Schlamm-Methode für eine gleichmäßigere Abdeckung.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Auftragsmethode wählen',
|
|
29
|
+
text: 'Wählen Sie Trockenbestäubung für gleichmäßige Oberflächen wie Braten und Steaks. Wählen Sie Schlamm für unregelmäßige Schnitte, dünne Schichten oder Proteine mit Haut.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Fleischgewicht eingeben',
|
|
33
|
+
text: 'Geben Sie das Gesamtgewicht des Fleisches oder Proteins in Gramm ein, das Sie binden möchten.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Proteinart angeben',
|
|
37
|
+
text: 'Wählen Sie die Proteinart, die am besten zu Ihrem Stück passt. Rotes Fleisch benötigt weniger TG; Fisch und Schalentiere benötigen mehr.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Inkubationstemperatur einstellen',
|
|
41
|
+
text: 'Geben Sie die Kühllagertemperatur (2:40 °C) ein. Der Rechner schätzt die erforderliche Bindungszeit.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'TG abwiegen und auftragen',
|
|
45
|
+
text: 'Messen Sie das berechnete TG-Pulver ab. Tragen Sie es durch Bestäuben oder Aufstreichen des Schlamms auf und drücken Sie die Proteinoberflächen fest zusammen.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Ruhen lassen und kühlen',
|
|
49
|
+
text: 'Wickeln Sie es fest in Frischhaltefolie und kühlen Sie es für den empfohlenen Inkubationszeitraum, bevor Sie es garen.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema = {
|
|
54
|
+
'@context': 'https://schema.org' as const,
|
|
55
|
+
'@type': 'FAQPage' as const,
|
|
56
|
+
mainEntity: faq.map((item) => ({
|
|
57
|
+
'@type': 'Question' as const,
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema = {
|
|
64
|
+
'@context': 'https://schema.org' as const,
|
|
65
|
+
'@type': 'HowTo' as const,
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howTo.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep' as const,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema = {
|
|
76
|
+
'@context': 'https://schema.org' as const,
|
|
77
|
+
'@type': 'SoftwareApplication' as const,
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilitiesApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent = {
|
|
86
|
+
slug: 'fleischbinder-transglutaminase-rechner',
|
|
87
|
+
title: 'Fleischbinder:Transglutaminase:Rechner',
|
|
88
|
+
description: 'Berechnen Sie die präzise Transglutaminase-Dosierung (TG) für die Fleischbindung. Erhalten Sie Trockenbestäubungs- oder Schlammverhältnisse, Inkubationszeit und Temperatur-Sicherheitswarnungen.',
|
|
89
|
+
faqTitle: 'Häufig gestellte Fragen',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Fleischbinder:Transglutaminase:Rechner',
|
|
92
|
+
subtitle: 'Molekulare Präzision für Protein:Quervernetzung',
|
|
93
|
+
methodLabel: 'Auftragsmethode',
|
|
94
|
+
dryMethod: 'Trockenbestäubung',
|
|
95
|
+
slurryMethod: 'Schlamm (streichfähige Paste)',
|
|
96
|
+
weightLabel: 'Fleisch-/Protein-Gewicht',
|
|
97
|
+
proteinLabel: 'Proteinart',
|
|
98
|
+
redMeat: 'Rotes Fleisch (Rind, Lamm, Wild)',
|
|
99
|
+
poultry: 'Geflügel (Huhn, Pute, Ente)',
|
|
100
|
+
fish: 'Fisch (feste Filets, ganzer Fisch)',
|
|
101
|
+
shellfish: 'Schalentiere (Jakobsmuscheln, Garnelen, Hummer)',
|
|
102
|
+
unitLabel: 'Maßsystem',
|
|
103
|
+
metricUnit: 'Metrisch (g / °C)',
|
|
104
|
+
imperialUnit: 'Imperial (oz / °F)',
|
|
105
|
+
tempLabel: 'Inkubationstemperatur',
|
|
106
|
+
resultTitle: 'Dosierungsergebnisse',
|
|
107
|
+
tgAmount: 'Transglutaminase (TG)',
|
|
108
|
+
waterAmount: 'Wasser (für Schlamm)',
|
|
109
|
+
totalWeight: 'Gesamtgewicht gebunden',
|
|
110
|
+
ratioLabel: 'TG-Verhältnis',
|
|
111
|
+
incubationLabel: 'Empfohlene Inkubation',
|
|
112
|
+
incubationRange: '{min}h bis {max}h',
|
|
113
|
+
dryDustingDesc: 'TG-Pulver gleichmäßig über die Fleischoberfläche streuen, dann die Stücke zusammendrücken. Ideal für flache Schnitte und Braten.',
|
|
114
|
+
slurryDesc: 'TG mit 4 Teilen Wasser zu einer streichfähigen Paste mischen. Mit einem Pinsel für unregelmäßige Oberflächen, Filets oder Hautbindung auftragen.',
|
|
115
|
+
enzymeDestroyed: 'Enzym zerstört: Temperatur überschreitet die Denaturierungsschwelle. Transglutaminase ist denaturiert und kann nicht binden.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'Stunden',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Wie viel Transglutaminase sollte man pro Kilo Fleisch verwenden?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'Die richtige Dosis hängt von der Proteinart und der Auftragsmethode ab. Für rotes Fleisch verwenden Sie 0,75:1,0 % TG bezogen auf das Gewicht (7,5:10 g pro kg). Für Geflügel 1,0:1,2 %. Für Fisch und Schalentiere 1,2:1,5 %. Für flache Schnitte als Trockenbestäubung auftragen oder für unregelmäßige Oberflächen mit 4 Teilen Wasser als Schlamm mischen. Geben Sie das Proteingewicht in den obigen Rechner ein, um eine genaue Messung zu erhalten.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Trockenbestäubung vs. Schlamm: Welche Methode sollten Sie wählen?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Trockenbestäubung funktioniert am besten auf flachen, gleichmäßigen Oberflächen wie Steaks, Braten oder Schnitzeln. Das TG-Pulver direkt aufstreuen (0,75:1,5 % des Fleischgewichts) und die Stücke zusammendrücken. Die Schlamm-Methode (1 Teil TG zu 4 Teilen Wasser) ist besser für unregelmäßige Schnitte, Filets mit Haut oder empfindliche Jakobsmuscheln, bei denen eine gleichmäßige Abdeckung wichtig ist. Die Paste aufstreichen, zusammensetzen und fest einwickeln. Beide Methoden erfordern eine kalte Inkubation, um die Bindung abzuschließen.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Warum Temperaturkontrolle über Ihre Bindung entscheidet',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Transglutaminase arbeitet am besten zwischen 2 °C und 5 °C und bildet über 6:24 Stunden starke Querverbindungen. Bei höheren Kühlschranktemperaturen (5:15 °C) beschleunigt sich die Reaktion auf 3:8 Stunden, aber die Bindungen können schwächer sein. Über 40 °C denaturiert das Enzym schnell, und bei 60 °C wird es sofort zerstört: alle vorhandenen Bindungen hören auf, sich zu bilden, und das Fleisch trennt sich während des Garens. Überwachen Sie stets Ihre Kühllagertemperatur mit der Anzeige im obigen Visualizer.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Protein', 'TG-Dosis (% des Gewichts)', 'Methode', 'Inkubation (2:5 °C)', 'Bindungsstärke'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Rind, Lamm, Wild', '0,75:1,0 %', 'Trockenbestäubung', '6:12 h', 'Sehr stark'],
|
|
156
|
+
['Huhn, Pute, Ente', '1,0:1,2 %', 'Beide', '8:16 h', 'Stark'],
|
|
157
|
+
['Lachs, Kabeljau, Wolfsbarsch', '1,2:1,5 %', 'Schlamm', '12:24 h', 'Mäßig'],
|
|
158
|
+
['Jakobsmuscheln, Garnelen, Hummer', '1,0:1,5 %', 'Schlamm', '12:24 h', 'Mäßig'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Häufige Fehler beim Binden von Fleisch mit TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Zu viel Enzym:</strong> Die Verwendung von mehr als 1,5 % TG hinterlässt einen sichtbaren weißen Rückstand und eine kreidige Textur. Die überschüssige Menge macht die Bindung nicht stärker.',
|
|
170
|
+
'<strong>Fett oder Silberhaut auf der Oberfläche:</strong> TG kann nicht an Fett oder Bindegewebe binden. Schneiden Sie Oberflächen sauber, bis blanke Muskelfasern sichtbar sind, bevor Sie auftragen.',
|
|
171
|
+
'<strong>Ruhezeit überspringen:</strong> Die Quervernetzungsreaktion dauert Stunden. Wenn Sie sofort nach dem Zusammensetzen garen, wird das Enzym weggespült, bevor sich Bindungen bilden.',
|
|
172
|
+
'<strong>Hitze über 60 °C beim Garen:</strong> Die Bindung hält schonendem Garen stand (Sous-vide bei 55:58 °C ist ideal), aber hohe Brattemperaturen können die Grenzfläche schwächen.',
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
bibliography,
|
|
177
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
178
|
+
};
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
3
|
+
|
|
4
|
+
const title = 'Meat Binder Transglutaminase Calculator: Molecular Gastronomy Dosing Guide';
|
|
5
|
+
const description = 'Calculate precise transglutaminase (TG) dosage for meat binding. Get dry dusting or slurry ratios, incubation time, and temperature safety alerts.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'What is transglutaminase and how does it bind meat?',
|
|
10
|
+
answer: 'Transglutaminase (TG), also known as "meat glue," is an enzyme that catalyzes the formation of covalent bonds between the amino acids glutamine and lysine in proteins. When applied to meat surfaces, it creates cross-links that fuse separate pieces into a single cohesive slab. The reaction requires time and cold temperatures (2-5°C) to develop fully, typically 6 to 24 hours.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'What is the difference between dry dusting and slurry application?',
|
|
14
|
+
answer: 'Dry dusting involves sprinkling the TG powder directly onto the meat surface at 0.75-1.5% of the meat weight. The slurry method mixes one part TG with four parts water to create a brushable paste, ideal for coating irregular surfaces or applying thin, even layers to large roasts or skin-on fillets.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Does temperature affect transglutaminase activity?',
|
|
18
|
+
answer: 'Yes. TG is most active between 2°C and 15°C. At higher temperatures (up to 40°C) the reaction accelerates but must be closely monitored. Above 60°C, the enzyme denatures and becomes permanently inactive �" the cross-linking reaction stops entirely. Always keep TG-bound meat below 60°C during cooking to preserve the bond.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Can I use transglutaminase on fish or shellfish?',
|
|
22
|
+
answer: 'Yes, but fish and shellfish have lower levels of lysine and glutamine in their muscle proteins compared to red meat and poultry. You may need a higher TG ratio (1.2-1.5%) and longer incubation times. For delicate scallops or thin fish fillets, consider the slurry method for more even coverage.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Select application method',
|
|
29
|
+
text: 'Choose Dry Dusting for even surfaces like roasts and steaks. Choose Slurry for irregular cuts, thin layers, or skin-on proteins.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Enter meat weight',
|
|
33
|
+
text: 'Input the total weight of the meat or protein you want to bind in grams.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Specify protein type',
|
|
37
|
+
text: 'Select the protein type that best matches your cut. Red meats need less TG; fish and shellfish need more.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Set incubation temperature',
|
|
41
|
+
text: 'Enter the cold storage temperature (2-40°C). The calculator will estimate the required binding time.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Weigh and apply TG',
|
|
45
|
+
text: 'Measure the calculated TG powder. Apply by dusting or brushing the slurry, then press protein surfaces together firmly.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Rest and refrigerate',
|
|
49
|
+
text: 'Wrap tightly in plastic film and refrigerate for the recommended incubation period before cooking.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema = {
|
|
54
|
+
'@context': 'https://schema.org' as const,
|
|
55
|
+
'@type': 'FAQPage' as const,
|
|
56
|
+
mainEntity: faq.map((item) => ({
|
|
57
|
+
'@type': 'Question' as const,
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema = {
|
|
64
|
+
'@context': 'https://schema.org' as const,
|
|
65
|
+
'@type': 'HowTo' as const,
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howTo.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep' as const,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema = {
|
|
76
|
+
'@context': 'https://schema.org' as const,
|
|
77
|
+
'@type': 'SoftwareApplication' as const,
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilitiesApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent = {
|
|
86
|
+
slug: 'meat-binder-transglutaminase-calculator',
|
|
87
|
+
title: 'Meat Binder Transglutaminase Calculator',
|
|
88
|
+
description: 'Calculate precise transglutaminase (TG) dosage for meat binding. Get dry dusting or slurry ratios, incubation time, and temperature safety alerts.',
|
|
89
|
+
faqTitle: 'Frequently Asked Questions',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Meat Binder Transglutaminase Calculator',
|
|
92
|
+
subtitle: 'Molecular precision for protein binding',
|
|
93
|
+
methodLabel: 'Application Method',
|
|
94
|
+
dryMethod: 'Dry Dusting',
|
|
95
|
+
slurryMethod: 'Slurry (Paintable Paste)',
|
|
96
|
+
weightLabel: 'Meat / Protein Weight',
|
|
97
|
+
proteinLabel: 'Protein Type',
|
|
98
|
+
redMeat: 'Red Meat (Beef, Lamb, Game)',
|
|
99
|
+
poultry: 'Poultry (Chicken, Turkey, Duck)',
|
|
100
|
+
fish: 'Fish (Firm Fillets, Whole Fish)',
|
|
101
|
+
shellfish: 'Shellfish (Scallops, Shrimp, Lobster)',
|
|
102
|
+
unitLabel: 'Measurement System',
|
|
103
|
+
metricUnit: 'Metric (g / °C)',
|
|
104
|
+
imperialUnit: 'Imperial (oz / °F)',
|
|
105
|
+
tempLabel: 'Incubation Temperature',
|
|
106
|
+
resultTitle: 'Dosing Results',
|
|
107
|
+
tgAmount: 'Transglutaminase (TG)',
|
|
108
|
+
waterAmount: 'Water (for Slurry)',
|
|
109
|
+
totalWeight: 'Total Bound Weight',
|
|
110
|
+
ratioLabel: 'TG Ratio',
|
|
111
|
+
incubationLabel: 'Recommended Incubation',
|
|
112
|
+
incubationRange: '{min}h to {max}h',
|
|
113
|
+
dryDustingDesc: 'Sprinkle TG powder evenly over the meat surface, then press pieces together. Ideal for flat cuts and roasts.',
|
|
114
|
+
slurryDesc: 'Mix TG with 4 parts water to create a brushable paste. Apply with a brush for irregular surfaces, fillets, or skin bonding.',
|
|
115
|
+
enzymeDestroyed: 'Enzyme Destroyed �" Temperature exceeds the denaturation threshold. Transglutaminase is denatured and will not bind.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'hours',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'How much transglutaminase should you use per kilo of meat?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'The right dose depends on the type of protein and the application method. For red meat, use 0.75�"1.0% TG by weight (7.5�"10 g per kg). For poultry, 1.0�"1.2%. For fish and shellfish, 1.2�"1.5%. Apply as a dry dust for flat cuts or mix with 4 parts water as a slurry for irregular surfaces. Enter your protein weight in the calculator above to get an exact measurement.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Dry dusting vs. slurry: which method should you choose?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Dry dusting works best on flat, even surfaces like steaks, roasts, or cutlets. Sprinkle the TG powder directly (0.75�"1.5% of meat weight) and press the pieces together. The slurry method (1 part TG to 4 parts water) is better for irregular cuts, skin-on fillets, or delicate scallops where even coverage matters. Brush the paste on, assemble, and wrap tightly. Both methods require cold incubation to complete the bond.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Why temperature control makes or breaks your bind',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Transglutaminase works best between 2°C and 5°C, forming strong cross-links over 6�"24 hours. At higher fridge temperatures (5�"15°C) the reaction speeds up to 3�"8 hours, but the bonds may be shallower. Above 40°C the enzyme denatures quickly, and at 60°C it is destroyed instantly �" any existing bonds stop forming and the meat will separate during cooking. Always monitor your cold storage temperature with the gauge in the visualizer above.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Protein', 'TG Dose (% of weight)', 'Method', 'Incubation (2�"5°C)', 'Bond Strength'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Beef, Lamb, Game', '0.75�"1.0%', 'Dry dust', '6�"12 h', 'Very strong'],
|
|
156
|
+
['Chicken, Turkey, Duck', '1.0�"1.2%', 'Either', '8�"16 h', 'Strong'],
|
|
157
|
+
['Salmon, Cod, Sea Bass', '1.2�"1.5%', 'Slurry', '12�"24 h', 'Moderate'],
|
|
158
|
+
['Scallops, Shrimp, Lobster', '1.0�"1.5%', 'Slurry', '12�"24 h', 'Moderate'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Common mistakes when binding meat with TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Too much enzyme:</strong> Using more than 1.5% TG leaves a visible white residue and a chalky texture. The excess does not make the bond stronger.',
|
|
170
|
+
'<strong>Fat or silver skin on the surface:</strong> TG cannot bind to fat or connective tissue. Trim surfaces clean until you see bare muscle fibers before applying.',
|
|
171
|
+
'<strong>Skipping the rest period:</strong> The cross-linking reaction takes hours. Cooking immediately after assembly will wash the enzyme away before bonds form.',
|
|
172
|
+
'<strong>Heat above 60°C during cooking:</strong> The bond holds through gentle cooking (sous vide at 55�"58°C is ideal), but high searing temperatures can weaken the interface.'
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
bibliography,
|
|
177
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
178
|
+
};
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
3
|
+
|
|
4
|
+
const title = 'Calculadora de Transglutaminasa para Pegamento de Carne: Guía de Dosificación para Gastronomía Molecular';
|
|
5
|
+
const description = 'Calcule la dosis precisa de transglutaminasa (TG) para la unión de carne. Obtenga proporciones de espolvoreado seco o pasta, tiempo de incubación y alertas de seguridad de temperatura.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: '¿Qué es la transglutaminasa y cómo une la carne?',
|
|
10
|
+
answer: 'La transglutaminasa (TG), también conocida como "pegamento de carne", es una enzima que cataliza la formación de enlaces covalentes entre los aminoácidos glutamina y lisina en las proteínas. Cuando se aplica a superficies de carne, crea entrecruzamientos que fusionan piezas separadas en un bloque cohesivo único. La reacción requiere tiempo y temperaturas frías (2-5 °C) para desarrollarse completamente, normalmente de 6 a 24 horas.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: '¿Cuál es la diferencia entre el espolvoreado seco y la aplicación en pasta?',
|
|
14
|
+
answer: 'El espolvoreado seco consiste en espolvorear el polvo de TG directamente sobre la superficie de la carne al 0,75:1,5 % del peso de la carne. El método de pasta mezcla una parte de TG con cuatro partes de agua para crear una pasta brushable, ideal para recubrir superficies irregulares o aplicar capas finas y uniformes en asados grandes o filetes con piel.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Afecta la temperatura a la actividad de la transglutaminasa?',
|
|
18
|
+
answer: 'Sí. La TG es más activa entre 2 °C y 15 °C. A temperaturas más altas (hasta 40 °C) la reacción se acelera pero debe monitorearse de cerca. Por encima de 60 °C, la enzima se desnaturaliza y se vuelve permanentemente inactiva: la reacción de entrecruzamiento se detiene por completo. Mantenga siempre la carne unida con TG por debajo de 60 °C durante la cocción para preservar el enlace.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: '¿Puedo usar transglutaminasa en pescado o mariscos?',
|
|
22
|
+
answer: 'Sí, pero el pescado y los mariscos tienen niveles más bajos de lisina y glutamina en sus proteínas musculares en comparación con la carne roja y las aves. Es posible que necesite una proporción más alta de TG (1,2:1,5 %) y tiempos de incubación más largos. Para vieiras delicadas o filetes de pescado finos, considere el método de pasta para una cobertura más uniforme.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Seleccionar método de aplicación',
|
|
29
|
+
text: 'Elija Espolvoreado Seco para superficies uniformes como asados y bistecs. Elija Pasta para cortes irregulares, capas finas o proteínas con piel.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Ingresar peso de la carne',
|
|
33
|
+
text: 'Introduzca el peso total de la carne o proteína que desea unir en gramos.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Especificar tipo de proteína',
|
|
37
|
+
text: 'Seleccione el tipo de proteína que mejor se adapte a su corte. Las carnes rojas necesitan menos TG; el pescado y los mariscos necesitan más.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Establecer temperatura de incubación',
|
|
41
|
+
text: 'Ingrese la temperatura de almacenamiento en frío (2:40 °C). La calculadora estimará el tiempo de unión requerido.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Pesar y aplicar TG',
|
|
45
|
+
text: 'Mida el polvo de TG calculado. Aplíquelo espolvoreando o cepillando la pasta, luego presione las superficies de proteína firmemente juntas.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Reposar y refrigerar',
|
|
49
|
+
text: 'Envuelva bien en film plástico y refrigere durante el período de incubación recomendado antes de cocinar.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema = {
|
|
54
|
+
'@context': 'https://schema.org' as const,
|
|
55
|
+
'@type': 'FAQPage' as const,
|
|
56
|
+
mainEntity: faq.map((item) => ({
|
|
57
|
+
'@type': 'Question' as const,
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema = {
|
|
64
|
+
'@context': 'https://schema.org' as const,
|
|
65
|
+
'@type': 'HowTo' as const,
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howTo.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep' as const,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema = {
|
|
76
|
+
'@context': 'https://schema.org' as const,
|
|
77
|
+
'@type': 'SoftwareApplication' as const,
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilitiesApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent = {
|
|
86
|
+
slug: 'calculadora-transglutaminasa-pegamento-carne',
|
|
87
|
+
title: 'Calculadora de Transglutaminasa para Pegamento de Carne',
|
|
88
|
+
description: 'Calcule la dosis precisa de transglutaminasa (TG) para la unión de carne. Obtenga proporciones de espolvoreado seco o pasta, tiempo de incubación y alertas de seguridad de temperatura.',
|
|
89
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Calculadora de Transglutaminasa para Pegamento de Carne',
|
|
92
|
+
subtitle: 'Precisión molecular para el entrecruzamiento de proteínas',
|
|
93
|
+
methodLabel: 'Método de Aplicación',
|
|
94
|
+
dryMethod: 'Espolvoreado Seco',
|
|
95
|
+
slurryMethod: 'Pasta (Pasta Brushable)',
|
|
96
|
+
weightLabel: 'Peso de Carne / Proteína',
|
|
97
|
+
proteinLabel: 'Tipo de Proteína',
|
|
98
|
+
redMeat: 'Carne Roja (Res, Cordero, Caza)',
|
|
99
|
+
poultry: 'Aves (Pollo, Pavo, Pato)',
|
|
100
|
+
fish: 'Pescado (Filetes Firmes, Pescado Entero)',
|
|
101
|
+
shellfish: 'Mariscos (Vieiras, Camarones, Langosta)',
|
|
102
|
+
unitLabel: 'Sistema de Medición',
|
|
103
|
+
metricUnit: 'Métrico (g / °C)',
|
|
104
|
+
imperialUnit: 'Imperial (oz / °F)',
|
|
105
|
+
tempLabel: 'Temperatura de Incubación',
|
|
106
|
+
resultTitle: 'Resultados de Dosificación',
|
|
107
|
+
tgAmount: 'Transglutaminasa (TG)',
|
|
108
|
+
waterAmount: 'Agua (para Pasta)',
|
|
109
|
+
totalWeight: 'Peso Total Unido',
|
|
110
|
+
ratioLabel: 'Proporción de TG',
|
|
111
|
+
incubationLabel: 'Incubación Recomendada',
|
|
112
|
+
incubationRange: '{min}h a {max}h',
|
|
113
|
+
dryDustingDesc: 'Espolvoree el polvo de TG uniformemente sobre la superficie de la carne, luego presione las piezas juntas. Ideal para cortes planos y asados.',
|
|
114
|
+
slurryDesc: 'Mezcle TG con 4 partes de agua para crear una pasta brushable. Aplique con un pincel para superficies irregulares, filetes o unión de piel.',
|
|
115
|
+
enzymeDestroyed: 'Enzima Destruida: La temperatura supera el umbral de desnaturalización. La transglutaminasa se ha desnaturalizado y no se unirá.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'horas',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: '¿Cuánta transglutaminasa se debe usar por kilo de carne?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'La dosis correcta depende del tipo de proteína y del método de aplicación. Para carne roja, use 0,75:1,0 % de TG en peso (7,5:10 g por kg). Para aves, 1,0:1,2 %. Para pescado y mariscos, 1,2:1,5 %. Aplique como espolvoreado seco para cortes planos o mezcle con 4 partes de agua como pasta para superficies irregulares. Ingrese el peso de la proteína en la calculadora anterior para obtener una medida exacta.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Espolvoreado seco vs. pasta: ¿qué método debería elegir?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'El espolvoreado seco funciona mejor en superficies planas y uniformes como bistecs, asados o filetes. Espolvoree el polvo de TG directamente (0,75:1,5 % del peso de la carne) y presione las piezas juntas. El método de pasta (1 parte de TG por 4 partes de agua) es mejor para cortes irregulares, filetes con piel o vieiras delicadas donde la cobertura uniforme es importante. Cepille la pasta, ensamble y envuelva bien. Ambos métodos requieren incubación en frío para completar la unión.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Por qué el control de temperatura decide el éxito de su unión',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'La transglutaminasa funciona mejor entre 2 °C y 5 °C, formando fuertes entrecruzamientos en 6:24 horas. A temperaturas de refrigerador más altas (5:15 °C) la reacción se acelera a 3:8 horas, pero los enlaces pueden ser más superficiales. Por encima de 40 °C la enzima se desnaturaliza rápidamente, y a 60 °C se destruye instantáneamente: cualquier enlace existente deja de formarse y la carne se separará durante la cocción. Monitoree siempre su temperatura de almacenamiento en frío con el indicador en el visualizador anterior.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Proteína', 'Dosis de TG (% del peso)', 'Método', 'Incubación (2:5 °C)', 'Fuerza del Enlace'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Res, Cordero, Caza', '0,75:1,0 %', 'Espolvoreado seco', '6:12 h', 'Muy fuerte'],
|
|
156
|
+
['Pollo, Pavo, Pato', '1,0:1,2 %', 'Cualquiera', '8:16 h', 'Fuerte'],
|
|
157
|
+
['Salmón, Bacalao, Lubina', '1,2:1,5 %', 'Pasta', '12:24 h', 'Moderada'],
|
|
158
|
+
['Vieiras, Camarones, Langosta', '1,0:1,5 %', 'Pasta', '12:24 h', 'Moderada'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Errores comunes al unir carne con TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Demasiada enzima:</strong> Usar más del 1,5 % de TG deja un residuo blanco visible y una textura calcárea. El exceso no hace que el enlace sea más fuerte.',
|
|
170
|
+
'<strong>Grasa o tejido plateado en la superficie:</strong> La TG no puede unirse a la grasa o al tejido conectivo. Recorte las superficies hasta ver fibras musculares desnudas antes de aplicar.',
|
|
171
|
+
'<strong>Saltarse el período de reposo:</strong> La reacción de entrecruzamiento lleva horas. Cocinar inmediatamente después del ensamblaje lavará la enzima antes de que se formen los enlaces.',
|
|
172
|
+
'<strong>Calor superior a 60 °C durante la cocción:</strong> El enlace resiste la cocción suave (sous vide a 55:58 °C es ideal), pero las altas temperaturas de sellado pueden debilitar la interfaz.',
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
bibliography,
|
|
177
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
178
|
+
};
|