@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 = 'Calculateur de Transglutaminase pour Liaison de Viande: Guide de Dosage en Gastronomie Moléculaire';
|
|
5
|
+
const description = 'Calculez le dosage précis de transglutaminase (TG) pour la liaison de viande. Obtenez les ratios pour saupoudrage à sec ou slurry, le temps d\'incubation et les alertes de sécurité de température.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Qu\'est-ce que la transglutaminase et comment lie-t-elle la viande ?',
|
|
10
|
+
answer: 'La transglutaminase (TG), également connue sous le nom de " colle à viande ", est une enzyme qui catalyse la formation de liaisons covalentes entre les acides aminés glutamine et lysine dans les protéines. Appliquée sur les surfaces de viande, elle crée des ponts qui fusionnent des morceaux séparés en un seul bloc cohérent. La réaction nécessite du temps et des températures froides (2-5 °C) pour se développer complètement, généralement de 6 à 24 heures.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'Quelle est la différence entre le saupoudrage à sec et l\'application en slurry ?',
|
|
14
|
+
answer: 'Le saupoudrage à sec consiste à saupoudrer la poudre de TG directement sur la surface de la viande à 0,75-1,5 % du poids de la viande. La méthode du slurry mélange une part de TG avec quatre parts d\'eau pour créer une pâte applicable au pinceau, idéale pour les surfaces irrégulières ou l\'application de couches fines et uniformes sur les gros rôtis ou les filets avec peau.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'La température affecte-t-elle l\'activité de la transglutaminase ?',
|
|
18
|
+
answer: 'Oui. La TG est la plus active entre 2 °C et 15 °C. À des températures plus élevées (jusqu\'à 40 °C), la réaction s\'accélère mais doit être étroitement surveillée. Au-dessus de 60 °C, l\'enzyme se dénature et devient définitivement inactive: la réaction de pontage s\'arrête complètement. Gardez toujours la viande liée à la TG en dessous de 60 °C pendant la cuisson pour préserver la liaison.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Puis-je utiliser la transglutaminase sur le poisson ou les crustacés ?',
|
|
22
|
+
answer: 'Oui, mais le poisson et les crustacés ont des niveaux plus faibles de lysine et de glutamine dans leurs protéines musculaires par rapport à la viande rouge et à la volaille. Vous pourriez avoir besoin d\'un ratio de TG plus élevé (1,2-1,5 %) et de temps d\'incubation plus longs. Pour les pétoncles délicats ou les filets de poisson fins, envisagez la méthode du slurry pour une couverture plus uniforme.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Choisissez la méthode d\'application',
|
|
29
|
+
text: 'Choisissez le saupoudrage à sec pour les surfaces uniformes comme les rôtis et les steaks. Choisissez le slurry pour les coupes irrégulières, les couches fines ou les protéines avec peau.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Entrez le poids de la viande',
|
|
33
|
+
text: 'Saisissez le poids total de la viande ou de la protéine que vous souhaitez lier en grammes.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Spécifiez le type de protéine',
|
|
37
|
+
text: 'Sélectionnez le type de protéine qui correspond le mieux à votre coupe. Les viandes rouges nécessitent moins de TG ; le poisson et les crustacés en nécessitent davantage.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Définissez la température d\'incubation',
|
|
41
|
+
text: 'Entrez la température de stockage au froid (2-40 °C). Le calculateur estimera le temps de liaison requis.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Pesez et appliquez la TG',
|
|
45
|
+
text: 'Mesurez la poudre de TG calculée. Appliquez par saupoudrage ou en brossant le slurry, puis pressez fermement les surfaces de protéines ensemble.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Repos et réfrigération',
|
|
49
|
+
text: 'Enveloppez hermétiquement dans un film plastique et réfrigérez pendant la période d\'incubation recommandée avant la cuisson.',
|
|
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: 'calculateur-transglutaminase-liaison-viande',
|
|
87
|
+
title: 'Calculateur de Transglutaminase pour Liaison de Viande',
|
|
88
|
+
description: 'Calculez le dosage précis de transglutaminase (TG) pour la liaison de viande. Obtenez les ratios pour saupoudrage à sec ou slurry, le temps d\'incubation et les alertes de sécurité de température.',
|
|
89
|
+
faqTitle: 'Foire Aux Questions',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Calculateur de Transglutaminase pour Liaison de Viande',
|
|
92
|
+
subtitle: 'Précision moléculaire pour le pontage des protéines',
|
|
93
|
+
methodLabel: 'Méthode d\'Application',
|
|
94
|
+
dryMethod: 'Saupoudrage à Sec',
|
|
95
|
+
slurryMethod: 'Slurry (Pâte Applicable au Pinceau)',
|
|
96
|
+
weightLabel: 'Poids de la Viande / Protéine',
|
|
97
|
+
proteinLabel: 'Type de Protéine',
|
|
98
|
+
redMeat: 'Viande Rouge (Bœuf, Agneau, Gibier)',
|
|
99
|
+
poultry: 'Volaille (Poulet, Dinde, Canard)',
|
|
100
|
+
fish: 'Poisson (Filets Fermes, Poisson Entier)',
|
|
101
|
+
shellfish: 'Crustacés (Pétoncles, Crevettes, Homard)',
|
|
102
|
+
unitLabel: 'Système de Mesure',
|
|
103
|
+
metricUnit: 'Métrique (g / °C)',
|
|
104
|
+
imperialUnit: 'Impérial (oz / °F)',
|
|
105
|
+
tempLabel: 'Température d\'Incubation',
|
|
106
|
+
resultTitle: 'Résultats de Dosage',
|
|
107
|
+
tgAmount: 'Transglutaminase (TG)',
|
|
108
|
+
waterAmount: 'Eau (pour le Slurry)',
|
|
109
|
+
totalWeight: 'Poids Total Lié',
|
|
110
|
+
ratioLabel: 'Ratio TG',
|
|
111
|
+
incubationLabel: 'Incubation Recommandée',
|
|
112
|
+
incubationRange: '{min}h à {max}h',
|
|
113
|
+
dryDustingDesc: 'Saupoudrez la poudre de TG uniformément sur la surface de la viande, puis pressez les morceaux ensemble. Idéal pour les coupes plates et les rôtis.',
|
|
114
|
+
slurryDesc: 'Mélangez la TG avec 4 parts d\'eau pour créer une pâte applicable au pinceau. Appliquez avec un pinceau pour les surfaces irrégulières, les filets ou la liaison de peau.',
|
|
115
|
+
enzymeDestroyed: 'Enzyme Détruite: La température dépasse le seuil de dénaturation. La transglutaminase est dénaturée et ne liera pas.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'heures',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Quelle quantité de transglutaminase utiliser par kilo de viande ?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'La dose appropriée dépend du type de protéine et de la méthode d\'application. Pour la viande rouge, utilisez 0,75:1,0 % de TG en poids (7,5:10 g par kg). Pour la volaille, 1,0:1,2 %. Pour le poisson et les crustacés, 1,2:1,5 %. Appliquez en saupoudrage à sec pour les coupes plates ou mélangez avec 4 parts d\'eau en slurry pour les surfaces irrégulières. Entrez le poids de votre protéine dans le calculateur ci-dessus pour obtenir une mesure exacte.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Saupoudrage à sec ou slurry: quelle méthode choisir ?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Le saupoudrage à sec fonctionne mieux sur les surfaces planes et uniformes comme les steaks, les rôtis ou les escalopes. Saupoudrez la poudre de TG directement (0,75:1,5 % du poids de la viande) et pressez les morceaux ensemble. La méthode du slurry (1 part de TG pour 4 parts d\'eau) est préférable pour les coupes irrégulières, les filets avec peau ou les pétoncles délicats où une couverture uniforme est importante. Brossez la pâte, assemblez et emballez hermétiquement. Les deux méthodes nécessitent une incubation au froid pour compléter la liaison.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Pourquoi le contrôle de la température fait ou défait votre liaison',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'La transglutaminase fonctionne le mieux entre 2 °C et 5 °C, formant des ponts solides en 6:24 heures. À des températures de réfrigérateur plus élevées (5:15 °C), la réaction s\'accélère à 3:8 heures, mais les liaisons peuvent être moins profondes. Au-dessus de 40 °C, l\'enzyme se dénature rapidement, et à 60 °C elle est détruite instantanément: toute liaison existante cesse de se former et la viande se séparera pendant la cuisson. Surveillez toujours votre température de stockage au froid avec le thermomètre dans le visualiseur ci-dessus.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Protéine', 'Dose de TG (% du poids)', 'Méthode', 'Incubation (2:5 °C)', 'Solidité de la Liaison'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Bœuf, Agneau, Gibier', '0,75:1,0 %', 'Saupoudrage à sec', '6:12 h', 'Très solide'],
|
|
156
|
+
['Poulet, Dinde, Canard', '1,0:1,2 %', 'Les deux', '8:16 h', 'Solide'],
|
|
157
|
+
['Saumon, Cabillaud, Bar', '1,2:1,5 %', 'Slurry', '12:24 h', 'Modérée'],
|
|
158
|
+
['Pétoncles, Crevettes, Homard', '1,0:1,5 %', 'Slurry', '12:24 h', 'Modérée'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Erreurs courantes lors de la liaison de la viande avec la TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Trop d\'enzyme :</strong> Utiliser plus de 1,5 % de TG laisse un résidu blanc visible et une texture crayeuse. L\'excès ne renforce pas la liaison.',
|
|
170
|
+
'<strong>Graisse ou peau argentée en surface :</strong> La TG ne peut pas se lier à la graisse ou au tissu conjonctif. Taillez les surfaces à vif jusqu\'à voir les fibres musculaires nues avant d\'appliquer.',
|
|
171
|
+
'<strong>Sauter la période de repos :</strong> La réaction de pontage prend des heures. Cuire immédiatement après l\'assemblage éliminera l\'enzyme avant que les liaisons ne se forment.',
|
|
172
|
+
'<strong>Chaleur au-dessus de 60 °C pendant la cuisson :</strong> La liaison tient avec une cuisson douce (la cuisson sous vide à 55:58 °C est idéale), mais les températures de saisie élevées peuvent affaiblir l\'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 = 'Kalkulator Transglutaminase Perekat Daging: Panduan Dosis Gastronomi Molekuler';
|
|
5
|
+
const description = 'Hitung dosis transglutaminase (TG) yang tepat untuk merekatkan daging. Dapatkan rasio dry dusting atau slurry, waktu inkubasi, dan peringatan keamanan suhu.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Apa itu transglutaminase dan bagaimana cara merekatkan daging?',
|
|
10
|
+
answer: 'Transglutaminase (TG), juga dikenal sebagai "lem daging," adalah enzim yang mengkatalisis pembentukan ikatan kovalen antara asam amino glutamin dan lisin dalam protein. Ketika diaplikasikan pada permukaan daging, enzim ini menciptakan ikatan silang yang menyatukan potongan-potongan terpisah menjadi satu kesatuan yang padat. Reaksi ini membutuhkan waktu dan suhu dingin (2-5°C) untuk berkembang sempurna, biasanya 6 hingga 24 jam.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'Apa perbedaan antara dry dusting dan aplikasi slurry?',
|
|
14
|
+
answer: 'Dry dusting melibatkan penaburan bubuk TG langsung ke permukaan daging sebanyak 0,75-1,5% dari berat daging. Metode slurry mencampurkan satu bagian TG dengan empat bagian air untuk membuat pasta yang bisa dioleskan, ideal untuk melapisi permukaan yang tidak rata atau mengaplikasikan lapisan tipis dan merata pada daging panggang besar atau fillet berkulit.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Apakah suhu mempengaruhi aktivitas transglutaminase?',
|
|
18
|
+
answer: 'Ya. TG paling aktif antara 2°C dan 15°C. Pada suhu yang lebih tinggi (hingga 40°C) reaksi akan berakselerasi tetapi harus dipantau secara ketat. Di atas 60°C, enzim akan terdenaturasi dan menjadi tidak aktif secara permanen: reaksi ikatan silang berhenti total. Selalu jaga daging yang direkatkan dengan TG di bawah 60°C selama pemasakan untuk mempertahankan ikatan.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Bisakah saya menggunakan transglutaminase pada ikan atau kerang?',
|
|
22
|
+
answer: 'Ya, tetapi ikan dan kerang memiliki kadar lisin dan glutamin yang lebih rendah dalam protein ototnya dibandingkan daging merah dan unggas. Anda mungkin memerlukan rasio TG yang lebih tinggi (1,2-1,5%) dan waktu inkubasi yang lebih lama. Untuk kerang scallop yang lembut atau fillet ikan tipis, pertimbangkan metode slurry untuk cakupan yang lebih merata.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Pilih metode aplikasi',
|
|
29
|
+
text: 'Pilih Dry Dusting untuk permukaan rata seperti daging panggang dan steak. Pilih Slurry untuk potongan tidak rata, lapisan tipis, atau protein berkulit.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Masukkan berat daging',
|
|
33
|
+
text: 'Masukkan total berat daging atau protein yang ingin Anda rekatkan dalam gram.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Tentukan jenis protein',
|
|
37
|
+
text: 'Pilih jenis protein yang paling sesuai dengan potongan Anda. Daging merah membutuhkan lebih sedikit TG; ikan dan kerang membutuhkan lebih banyak.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Atur suhu inkubasi',
|
|
41
|
+
text: 'Masukkan suhu penyimpanan dingin (2-40°C). Kalkulator akan memperkirakan waktu pengikatan yang diperlukan.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Timbang dan aplikasikan TG',
|
|
45
|
+
text: 'Ukur bubuk TG yang telah dihitung. Aplikasikan dengan menaburkan atau mengoleskan slurry, lalu tekan permukaan protein bersama-sama dengan kuat.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Diamkan dan dinginkan',
|
|
49
|
+
text: 'Bungkus rapat dengan plastik wrap dan dinginkan selama periode inkubasi yang disarankan sebelum dimasak.',
|
|
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: 'kalkulator-transglutaminase-perekat-daging',
|
|
87
|
+
title: 'Kalkulator Transglutaminase Perekat Daging',
|
|
88
|
+
description: 'Hitung dosis transglutaminase (TG) yang tepat untuk merekatkan daging. Dapatkan rasio dry dusting atau slurry, waktu inkubasi, dan peringatan keamanan suhu.',
|
|
89
|
+
faqTitle: 'Pertanyaan yang Sering Diajukan',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Kalkulator Transglutaminase Perekat Daging',
|
|
92
|
+
subtitle: 'Presisi molekuler untuk ikatan silang protein',
|
|
93
|
+
methodLabel: 'Metode Aplikasi',
|
|
94
|
+
dryMethod: 'Dry Dusting',
|
|
95
|
+
slurryMethod: 'Slurry (Pasta yang Dapat Dioleskan)',
|
|
96
|
+
weightLabel: 'Berat Daging / Protein',
|
|
97
|
+
proteinLabel: 'Jenis Protein',
|
|
98
|
+
redMeat: 'Daging Merah (Sapi, Domba, Game)',
|
|
99
|
+
poultry: 'Unggas (Ayam, Kalkun, Bebek)',
|
|
100
|
+
fish: 'Ikan (Fillet Padat, Ikan Utuh)',
|
|
101
|
+
shellfish: 'Kerang (Scallop, Udang, Lobster)',
|
|
102
|
+
unitLabel: 'Sistem Pengukuran',
|
|
103
|
+
metricUnit: 'Metrik (g / °C)',
|
|
104
|
+
imperialUnit: 'Imperial (oz / °F)',
|
|
105
|
+
tempLabel: 'Suhu Inkubasi',
|
|
106
|
+
resultTitle: 'Hasil Dosis',
|
|
107
|
+
tgAmount: 'Transglutaminase (TG)',
|
|
108
|
+
waterAmount: 'Air (untuk Slurry)',
|
|
109
|
+
totalWeight: 'Total Berat yang Direkatkan',
|
|
110
|
+
ratioLabel: 'Rasio TG',
|
|
111
|
+
incubationLabel: 'Inkubasi yang Direkomendasikan',
|
|
112
|
+
incubationRange: '{min} jam hingga {max} jam',
|
|
113
|
+
dryDustingDesc: 'Taburkan bubuk TG secara merata di atas permukaan daging, lalu tekan potongan bersama-sama. Ideal untuk potongan datar dan daging panggang.',
|
|
114
|
+
slurryDesc: 'Campur TG dengan 4 bagian air untuk membuat pasta yang bisa dioleskan. Aplikasikan dengan kuas untuk permukaan tidak rata, fillet, atau perekatan kulit.',
|
|
115
|
+
enzymeDestroyed: 'Enzim Hancur: Suhu melebihi ambang denaturasi. Transglutaminase telah terdenaturasi dan tidak akan merekat.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'jam',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Berapa banyak transglutaminase yang harus digunakan per kilo daging?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'Dosis yang tepat tergantung pada jenis protein dan metode aplikasi. Untuk daging merah, gunakan 0,75:1,0% TG dari berat (7,5:10 g per kg). Untuk unggas, 1,0:1,2%. Untuk ikan dan kerang, 1,2:1,5%. Aplikasikan sebagai dry dust untuk potongan datar atau campur dengan 4 bagian air sebagai slurry untuk permukaan tidak rata. Masukkan berat protein Anda di kalkulator di atas untuk mendapatkan pengukuran yang tepat.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Dry dusting vs. slurry: metode mana yang harus Anda pilih?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Dry dusting paling baik digunakan pada permukaan datar dan rata seperti steak, daging panggang, atau cutlet. Taburkan bubuk TG langsung (0,75:1,5% dari berat daging) dan tekan potongan bersama-sama. Metode slurry (1 bagian TG dengan 4 bagian air) lebih baik untuk potongan tidak rata, fillet berkulit, atau kerang scallop yang lembut di mana cakupan merata sangat penting. Oleskan pasta, rakit, dan bungkus rapat. Kedua metode memerlukan inkubasi dingin untuk menyelesaikan ikatan.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Mengapa kontrol suhu menentukan keberhasilan atau kegagalan ikatan Anda',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Transglutaminase bekerja paling baik antara 2°C dan 5°C, membentuk ikatan silang yang kuat selama 6:24 jam. Pada suhu kulkas yang lebih tinggi (5:15°C) reaksi dipercepat menjadi 3:8 jam, tetapi ikatannya mungkin lebih dangkal. Di atas 40°C enzim terdenaturasi dengan cepat, dan pada 60°C enzim hancur seketika: ikatan yang ada berhenti terbentuk dan daging akan terpisah saat dimasak. Selalu pantau suhu penyimpanan dingin Anda dengan indikator di visualiser di atas.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Protein', 'Dosis TG (% dari berat)', 'Metode', 'Inkubasi (2:5°C)', 'Kekuatan Ikatan'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Sapi, Domba, Game', '0,75:1,0%', 'Dry dust', '6:12 jam', 'Sangat kuat'],
|
|
156
|
+
['Ayam, Kalkun, Bebek', '1,0:1,2%', 'Keduanya', '8:16 jam', 'Kuat'],
|
|
157
|
+
['Salmon, Kod, Sea Bass', '1,2:1,5%', 'Slurry', '12:24 jam', 'Sedang'],
|
|
158
|
+
['Scallop, Udang, Lobster', '1,0:1,5%', 'Slurry', '12:24 jam', 'Sedang'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Kesalahan umum saat merekatkan daging dengan TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Terlalu banyak enzim:</strong> Menggunakan lebih dari 1,5% TG meninggalkan residu putih yang terlihat dan tekstur berkapur. Kelebihan tidak membuat ikatan lebih kuat.',
|
|
170
|
+
'<strong>Lemak atau silver skin di permukaan:</strong> TG tidak dapat merekatkan lemak atau jaringan ikat. Bersihkan permukaan hingga terlihat serat otot sebelum mengaplikasikan.',
|
|
171
|
+
'<strong>Melewatkan waktu istirahat:</strong> Reaksi ikatan silang membutuhkan waktu berjam-jam. Memasak segera setelah perakitan akan menghanyutkan enzim sebelum ikatan terbentuk.',
|
|
172
|
+
'<strong>Panas di atas 60°C saat memasak:</strong> Ikatan bertahan melalui pemasakan lembut (sous vide pada 55:58°C ideal), tetapi suhu searing yang tinggi dapat melemahkan antarmuka.',
|
|
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 = 'Calcolatrice di Transglutaminasi per Legante di Carne: Guida al Dosaggio in Gastronomia Molecolare';
|
|
5
|
+
const description = 'Calcola il dosaggio preciso di transglutaminasi (TG) per il legante della carne. Ottieni rapporti per spolveratura a secco o pastella, tempo di incubazione e avvisi di sicurezza sulla temperatura.';
|
|
6
|
+
|
|
7
|
+
const faq = [
|
|
8
|
+
{
|
|
9
|
+
question: 'Cos\'è la transglutaminasi e come lega la carne?',
|
|
10
|
+
answer: 'La transglutaminasi (TG), nota anche come "colla per carne", è un enzima che catalizza la formazione di legami covalenti tra gli amminoacidi glutammina e lisina nelle proteine. Applicata sulle superfici della carne, crea ponti che fondono pezzi separati in un unico blocco coeso. La reazione richiede tempo e temperature fredde (2-5 °C) per svilupparsi completamente, tipicamente da 6 a 24 ore.',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
question: 'Qual è la differenza tra spolveratura a secco e applicazione in pastella?',
|
|
14
|
+
answer: 'La spolveratura a secco consiste nel cospargere la polvere di TG direttamente sulla superficie della carne allo 0,75-1,5% del peso della carne. Il metodo della pastella mescola una parte di TG con quattro parti di acqua per creare una pasta spalmabile, ideale per rivestire superfici irregolari o applicare strati sottili e uniformi su grandi arrosti o filetti con pelle.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'La temperatura influisce sull\'attività della transglutaminasi?',
|
|
18
|
+
answer: 'Sì. La TG è più attiva tra 2 °C e 15 °C. A temperature più elevate (fino a 40 °C) la reazione accelera ma deve essere monitorata attentamente. Sopra i 60 °C, l\'enzima si denatura e diventa permanentemente inattivo: la reazione di cross-linking si arresta completamente. Mantieni sempre la carne legata con TG al di sotto dei 60 °C durante la cottura per preservare il legame.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: 'Posso usare la transglutaminasi su pesce o crostacei?',
|
|
22
|
+
answer: 'Sì, ma il pesce e i crostacei hanno livelli più bassi di lisina e glutammina nelle loro proteine muscolari rispetto alla carne rossa e al pollame. Potresti aver bisogno di un rapporto di TG più alto (1,2-1,5%) e tempi di incubazione più lunghi. Per capesante delicate o filetti di pesce sottili, considera il metodo della pastella per una copertura più uniforme.',
|
|
23
|
+
},
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
const howTo = [
|
|
27
|
+
{
|
|
28
|
+
name: 'Scegli il metodo di applicazione',
|
|
29
|
+
text: 'Scegli la spolveratura a secco per superfici uniformi come arrosti e bistecche. Scegli la pastella per tagli irregolari, strati sottili o proteine con pelle.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Inserisci il peso della carne',
|
|
33
|
+
text: 'Inserisci il peso totale della carne o della proteina che vuoi legare in grammi.',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'Specifica il tipo di proteina',
|
|
37
|
+
text: 'Seleziona il tipo di proteina che meglio corrisponde al tuo taglio. Le carni rosse necessitano di meno TG; pesce e crostacei necessitano di più.',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Imposta la temperatura di incubazione',
|
|
41
|
+
text: 'Inserisci la temperatura di conservazione al freddo (2-40 °C). Il calcolatore stimerà il tempo di legatura richiesto.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Pesa e applica la TG',
|
|
45
|
+
text: 'Misura la polvere di TG calcolata. Applica spolverando a secco o spennellando la pastella, quindi premi saldamente le superfici proteiche insieme.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Riposo e refrigerazione',
|
|
49
|
+
text: 'Avvolgi stretto nella pellicola trasparente e refrigera per il periodo di incubazione raccomandato prima della cottura.',
|
|
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: 'calcolatrice-transglutaminase-legante-carne',
|
|
87
|
+
title: 'Calcolatrice di Transglutaminasi per Legante di Carne',
|
|
88
|
+
description: 'Calcola il dosaggio preciso di transglutaminasi (TG) per il legante della carne. Ottieni rapporti per spolveratura a secco o pastella, tempo di incubazione e avvisi di sicurezza sulla temperatura.',
|
|
89
|
+
faqTitle: 'Domande Frequenti',
|
|
90
|
+
ui: {
|
|
91
|
+
title: 'Calcolatrice di Transglutaminasi per Legante di Carne',
|
|
92
|
+
subtitle: 'Precisione molecolare per il cross:linking proteico',
|
|
93
|
+
methodLabel: 'Metodo di Applicazione',
|
|
94
|
+
dryMethod: 'Spolveratura a Secco',
|
|
95
|
+
slurryMethod: 'Pastella (Pasta Spalmabile)',
|
|
96
|
+
weightLabel: 'Peso Carne / Proteina',
|
|
97
|
+
proteinLabel: 'Tipo di Proteina',
|
|
98
|
+
redMeat: 'Carne Rossa (Manzo, Agnello, Selvaggina)',
|
|
99
|
+
poultry: 'Pollame (Pollo, Tacchino, Anatra)',
|
|
100
|
+
fish: 'Pesce (Filetti Sodi, Pesce Intero)',
|
|
101
|
+
shellfish: 'Crostacei (Capesante, Gamberi, Aragosta)',
|
|
102
|
+
unitLabel: 'Sistema di Misura',
|
|
103
|
+
metricUnit: 'Metrico (g / °C)',
|
|
104
|
+
imperialUnit: 'Imperiale (oz / °F)',
|
|
105
|
+
tempLabel: 'Temperatura di Incubazione',
|
|
106
|
+
resultTitle: 'Risultati del Dosaggio',
|
|
107
|
+
tgAmount: 'Transglutaminasi (TG)',
|
|
108
|
+
waterAmount: 'Acqua (per la Pastella)',
|
|
109
|
+
totalWeight: 'Peso Totale Legato',
|
|
110
|
+
ratioLabel: 'Rapporto TG',
|
|
111
|
+
incubationLabel: 'Incubazione Raccomandata',
|
|
112
|
+
incubationRange: '{min}h a {max}h',
|
|
113
|
+
dryDustingDesc: 'Spolvera la polvere di TG uniformemente sulla superficie della carne, quindi premi i pezzi insieme. Ideale per tagli piatti e arrosti.',
|
|
114
|
+
slurryDesc: 'Mescola la TG con 4 parti di acqua per creare una pasta spennellabile. Applica con un pennello per superfici irregolari, filetti o legatura di pelle.',
|
|
115
|
+
enzymeDestroyed: 'Enzima Distrutto: La temperatura supera la soglia di denaturazione. La transglutaminasi è denaturata e non legherà.',
|
|
116
|
+
noWarning: '',
|
|
117
|
+
hours: 'ore',
|
|
118
|
+
grams: 'g',
|
|
119
|
+
milliliters: 'ml',
|
|
120
|
+
},
|
|
121
|
+
faq,
|
|
122
|
+
howTo,
|
|
123
|
+
seo: [
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Quanta transglutaminasi dovresti usare per chilo di carne?',
|
|
127
|
+
level: 2,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'La dose giusta dipende dal tipo di proteina e dal metodo di applicazione. Per la carne rossa, usa lo 0,75:1,0% di TG in peso (7,5:10 g per kg). Per il pollame, 1,0:1,2%. Per pesce e crostacei, 1,2:1,5%. Applica come spolveratura a secco per tagli piatti o mescola con 4 parti di acqua come pastella per superfici irregolari. Inserisci il peso della tua proteina nel calcolatore qui sopra per ottenere una misurazione esatta.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Spolveratura a secco o pastella: quale metodo scegliere?',
|
|
136
|
+
level: 3,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'La spolveratura a secco funziona meglio su superfici piane e uniformi come bistecche, arrosti o cotolette. Cospargi la polvere di TG direttamente (0,75:1,5% del peso della carne) e premi i pezzi insieme. Il metodo della pastella (1 parte di TG per 4 parti di acqua) è migliore per tagli irregolari, filetti con pelle o capesante delicate dove la copertura uniforme è importante. Spennella la pasta, assembla e avvolgi stretto. Entrambi i metodi richiedono incubazione al freddo per completare il legame.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Perché il controllo della temperatura determina la riuscita del legame',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'La transglutaminasi funziona meglio tra 2 °C e 5 °C, formando forti ponti in 6:24 ore. A temperature di frigorifero più elevate (5:15 °C) la reazione accelera a 3:8 ore, ma i legami potrebbero essere meno profondi. Sopra i 40 °C l\'enzima si denatura rapidamente, e a 60 °C viene distrutto istantaneamente: qualsiasi legame esistente smette di formarsi e la carne si separerà durante la cottura. Controlla sempre la temperatura di conservazione al freddo con il termometro nel visualizzatore qui sopra.',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'table',
|
|
153
|
+
headers: ['Proteina', 'Dose di TG (% del peso)', 'Metodo', 'Incubazione (2:5 °C)', 'Resistenza del Legame'],
|
|
154
|
+
rows: [
|
|
155
|
+
['Manzo, Agnello, Selvaggina', '0,75:1,0%', 'Spolveratura a secco', '6:12 h', 'Molto forte'],
|
|
156
|
+
['Pollo, Tacchino, Anatra', '1,0:1,2%', 'Entrambi', '8:16 h', 'Forte'],
|
|
157
|
+
['Salmone, Merluzzo, Spigola', '1,2:1,5%', 'Pastella', '12:24 h', 'Moderata'],
|
|
158
|
+
['Capesante, Gamberi, Aragosta', '1,0:1,5%', 'Pastella', '12:24 h', 'Moderata'],
|
|
159
|
+
],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'title',
|
|
163
|
+
text: 'Errori comuni nel legare la carne con la TG',
|
|
164
|
+
level: 3,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'list',
|
|
168
|
+
items: [
|
|
169
|
+
'<strong>Troppo enzima:</strong> Usare più dell\'1,5% di TG lascia un residuo bianco visibile e una texture gessosa. L\'eccesso non rende il legame più forte.',
|
|
170
|
+
'<strong>Grasso o pelle argentata sulla superficie:</strong> La TG non può legarsi al grasso o al tessuto connettivo. Pulisci le superfici fino a vedere le fibre muscolari nude prima di applicare.',
|
|
171
|
+
'<strong>Saltare il periodo di riposo:</strong> La reazione di cross-linking richiede ore. Cuocere immediatamente dopo l\'assemblaggio laverà via l\'enzima prima che i legami si formino.',
|
|
172
|
+
'<strong>Calore sopra i 60 °C durante la cottura:</strong> Il legame resiste a cotture delicate (la cottura sottovuoto a 55:58 °C è ideale), ma le alte temperature di rosolatura possono indebolire l\'interfaccia.',
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
bibliography,
|
|
177
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
178
|
+
};
|