@jjlmoya/utils-cooking 1.24.0 → 1.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (249) hide show
  1. package/package.json +1 -1
  2. package/src/entries.ts +3 -1
  3. package/src/index.ts +1 -0
  4. package/src/pages/[locale]/[slug].astro +56 -19
  5. package/src/tests/i18n-titles.test.ts +5 -17
  6. package/src/tests/locale_completeness.test.ts +2 -13
  7. package/src/tests/shared-test-helpers.ts +56 -0
  8. package/src/tests/tool_exports.test.ts +34 -0
  9. package/src/tests/tool_validation.test.ts +2 -2
  10. package/src/tool/american-kitchen-converter/bibliography.astro +3 -3
  11. package/src/tool/american-kitchen-converter/bibliography.ts +10 -0
  12. package/src/tool/american-kitchen-converter/i18n/de.ts +2 -11
  13. package/src/tool/american-kitchen-converter/i18n/en.ts +2 -11
  14. package/src/tool/american-kitchen-converter/i18n/es.ts +40 -49
  15. package/src/tool/american-kitchen-converter/i18n/fr.ts +2 -21
  16. package/src/tool/american-kitchen-converter/i18n/id.ts +2 -11
  17. package/src/tool/american-kitchen-converter/i18n/it.ts +2 -11
  18. package/src/tool/american-kitchen-converter/i18n/ja.ts +2 -11
  19. package/src/tool/american-kitchen-converter/i18n/ko.ts +2 -11
  20. package/src/tool/american-kitchen-converter/i18n/nl.ts +2 -11
  21. package/src/tool/american-kitchen-converter/i18n/pl.ts +2 -11
  22. package/src/tool/american-kitchen-converter/i18n/pt.ts +2 -11
  23. package/src/tool/american-kitchen-converter/i18n/ru.ts +2 -11
  24. package/src/tool/american-kitchen-converter/i18n/sv.ts +2 -11
  25. package/src/tool/american-kitchen-converter/i18n/tr.ts +2 -11
  26. package/src/tool/american-kitchen-converter/i18n/zh.ts +2 -11
  27. package/src/tool/american-kitchen-converter/seo.astro +11 -4
  28. package/src/tool/banana-ripeness/bibliography.astro +3 -3
  29. package/src/tool/banana-ripeness/bibliography.ts +10 -0
  30. package/src/tool/banana-ripeness/i18n/de.ts +2 -15
  31. package/src/tool/banana-ripeness/i18n/en.ts +36 -49
  32. package/src/tool/banana-ripeness/i18n/es.ts +36 -49
  33. package/src/tool/banana-ripeness/i18n/fr.ts +36 -49
  34. package/src/tool/banana-ripeness/i18n/id.ts +2 -15
  35. package/src/tool/banana-ripeness/i18n/it.ts +2 -15
  36. package/src/tool/banana-ripeness/i18n/ja.ts +2 -15
  37. package/src/tool/banana-ripeness/i18n/ko.ts +2 -15
  38. package/src/tool/banana-ripeness/i18n/nl.ts +2 -15
  39. package/src/tool/banana-ripeness/i18n/pl.ts +2 -15
  40. package/src/tool/banana-ripeness/i18n/pt.ts +2 -15
  41. package/src/tool/banana-ripeness/i18n/ru.ts +2 -15
  42. package/src/tool/banana-ripeness/i18n/sv.ts +2 -15
  43. package/src/tool/banana-ripeness/i18n/tr.ts +2 -15
  44. package/src/tool/banana-ripeness/i18n/zh.ts +2 -15
  45. package/src/tool/banana-ripeness/seo.astro +10 -3
  46. package/src/tool/brine/bibliography.astro +3 -3
  47. package/src/tool/brine/bibliography.ts +6 -0
  48. package/src/tool/brine/i18n/de.ts +4 -19
  49. package/src/tool/brine/i18n/en.ts +3 -17
  50. package/src/tool/brine/i18n/es.ts +4 -19
  51. package/src/tool/brine/i18n/fr.ts +3 -17
  52. package/src/tool/brine/i18n/id.ts +4 -19
  53. package/src/tool/brine/i18n/it.ts +4 -19
  54. package/src/tool/brine/i18n/ja.ts +4 -19
  55. package/src/tool/brine/i18n/ko.ts +4 -19
  56. package/src/tool/brine/i18n/nl.ts +4 -19
  57. package/src/tool/brine/i18n/pl.ts +4 -19
  58. package/src/tool/brine/i18n/pt.ts +4 -19
  59. package/src/tool/brine/i18n/ru.ts +4 -19
  60. package/src/tool/brine/i18n/sv.ts +4 -19
  61. package/src/tool/brine/i18n/tr.ts +4 -19
  62. package/src/tool/brine/i18n/zh.ts +4 -19
  63. package/src/tool/brine/seo.astro +11 -4
  64. package/src/tool/cookware-guide/bibliography.astro +2 -2
  65. package/src/tool/cookware-guide/bibliography.ts +10 -0
  66. package/src/tool/cookware-guide/i18n/de.ts +3 -17
  67. package/src/tool/cookware-guide/i18n/en.ts +3 -17
  68. package/src/tool/cookware-guide/i18n/es.ts +3 -17
  69. package/src/tool/cookware-guide/i18n/fr.ts +3 -17
  70. package/src/tool/cookware-guide/i18n/id.ts +3 -17
  71. package/src/tool/cookware-guide/i18n/it.ts +3 -17
  72. package/src/tool/cookware-guide/i18n/ja.ts +3 -17
  73. package/src/tool/cookware-guide/i18n/ko.ts +3 -17
  74. package/src/tool/cookware-guide/i18n/nl.ts +3 -17
  75. package/src/tool/cookware-guide/i18n/pl.ts +3 -17
  76. package/src/tool/cookware-guide/i18n/pt.ts +3 -17
  77. package/src/tool/cookware-guide/i18n/ru.ts +3 -17
  78. package/src/tool/cookware-guide/i18n/sv.ts +3 -17
  79. package/src/tool/cookware-guide/i18n/tr.ts +3 -17
  80. package/src/tool/cookware-guide/i18n/zh.ts +3 -17
  81. package/src/tool/cookware-guide/seo.astro +11 -4
  82. package/src/tool/egg-timer/bibliography.astro +3 -11
  83. package/src/tool/egg-timer/bibliography.ts +10 -0
  84. package/src/tool/egg-timer/i18n/de.ts +3 -17
  85. package/src/tool/egg-timer/i18n/en.ts +2 -15
  86. package/src/tool/egg-timer/i18n/es.ts +127 -141
  87. package/src/tool/egg-timer/i18n/fr.ts +2 -15
  88. package/src/tool/egg-timer/i18n/id.ts +4 -18
  89. package/src/tool/egg-timer/i18n/it.ts +3 -17
  90. package/src/tool/egg-timer/i18n/ja.ts +3 -17
  91. package/src/tool/egg-timer/i18n/ko.ts +3 -17
  92. package/src/tool/egg-timer/i18n/nl.ts +3 -17
  93. package/src/tool/egg-timer/i18n/pl.ts +3 -17
  94. package/src/tool/egg-timer/i18n/pt.ts +3 -17
  95. package/src/tool/egg-timer/i18n/ru.ts +3 -17
  96. package/src/tool/egg-timer/i18n/sv.ts +3 -17
  97. package/src/tool/egg-timer/i18n/tr.ts +3 -17
  98. package/src/tool/egg-timer/i18n/zh.ts +3 -17
  99. package/src/tool/egg-timer/seo.astro +5 -29
  100. package/src/tool/ingredient-rescaler/bibliography.astro +3 -3
  101. package/src/tool/ingredient-rescaler/bibliography.ts +6 -0
  102. package/src/tool/ingredient-rescaler/i18n/de.ts +3 -17
  103. package/src/tool/ingredient-rescaler/i18n/en.ts +3 -18
  104. package/src/tool/ingredient-rescaler/i18n/es.ts +4 -19
  105. package/src/tool/ingredient-rescaler/i18n/fr.ts +2 -15
  106. package/src/tool/ingredient-rescaler/i18n/id.ts +3 -17
  107. package/src/tool/ingredient-rescaler/i18n/it.ts +3 -17
  108. package/src/tool/ingredient-rescaler/i18n/ja.ts +3 -17
  109. package/src/tool/ingredient-rescaler/i18n/ko.ts +3 -17
  110. package/src/tool/ingredient-rescaler/i18n/nl.ts +3 -17
  111. package/src/tool/ingredient-rescaler/i18n/pl.ts +3 -17
  112. package/src/tool/ingredient-rescaler/i18n/pt.ts +3 -17
  113. package/src/tool/ingredient-rescaler/i18n/ru.ts +3 -17
  114. package/src/tool/ingredient-rescaler/i18n/sv.ts +3 -17
  115. package/src/tool/ingredient-rescaler/i18n/tr.ts +3 -17
  116. package/src/tool/ingredient-rescaler/i18n/zh.ts +3 -17
  117. package/src/tool/ingredient-rescaler/seo.astro +11 -4
  118. package/src/tool/kitchen-timer/bibliography.astro +3 -3
  119. package/src/tool/kitchen-timer/bibliography.ts +10 -0
  120. package/src/tool/kitchen-timer/i18n/de.ts +3 -13
  121. package/src/tool/kitchen-timer/i18n/en.ts +6 -22
  122. package/src/tool/kitchen-timer/i18n/es.ts +6 -22
  123. package/src/tool/kitchen-timer/i18n/fr.ts +6 -22
  124. package/src/tool/kitchen-timer/i18n/id.ts +3 -13
  125. package/src/tool/kitchen-timer/i18n/it.ts +3 -13
  126. package/src/tool/kitchen-timer/i18n/ja.ts +3 -13
  127. package/src/tool/kitchen-timer/i18n/ko.ts +3 -13
  128. package/src/tool/kitchen-timer/i18n/nl.ts +3 -13
  129. package/src/tool/kitchen-timer/i18n/pl.ts +3 -13
  130. package/src/tool/kitchen-timer/i18n/pt.ts +3 -13
  131. package/src/tool/kitchen-timer/i18n/ru.ts +3 -13
  132. package/src/tool/kitchen-timer/i18n/sv.ts +3 -13
  133. package/src/tool/kitchen-timer/i18n/tr.ts +3 -13
  134. package/src/tool/kitchen-timer/i18n/zh.ts +3 -13
  135. package/src/tool/kitchen-timer/seo.astro +10 -3
  136. package/src/tool/meringue-peak/bibliography.astro +3 -3
  137. package/src/tool/meringue-peak/bibliography.ts +14 -0
  138. package/src/tool/meringue-peak/i18n/de.ts +3 -13
  139. package/src/tool/meringue-peak/i18n/en.ts +2 -15
  140. package/src/tool/meringue-peak/i18n/es.ts +135 -149
  141. package/src/tool/meringue-peak/i18n/fr.ts +2 -15
  142. package/src/tool/meringue-peak/i18n/id.ts +3 -13
  143. package/src/tool/meringue-peak/i18n/it.ts +3 -13
  144. package/src/tool/meringue-peak/i18n/ja.ts +3 -13
  145. package/src/tool/meringue-peak/i18n/ko.ts +3 -13
  146. package/src/tool/meringue-peak/i18n/nl.ts +3 -13
  147. package/src/tool/meringue-peak/i18n/pl.ts +3 -13
  148. package/src/tool/meringue-peak/i18n/pt.ts +3 -13
  149. package/src/tool/meringue-peak/i18n/ru.ts +3 -13
  150. package/src/tool/meringue-peak/i18n/sv.ts +3 -13
  151. package/src/tool/meringue-peak/i18n/tr.ts +3 -13
  152. package/src/tool/meringue-peak/i18n/zh.ts +3 -13
  153. package/src/tool/meringue-peak/seo.astro +10 -3
  154. package/src/tool/mold-scaler/bibliography.astro +3 -3
  155. package/src/tool/mold-scaler/bibliography.ts +10 -0
  156. package/src/tool/mold-scaler/i18n/de.ts +5 -17
  157. package/src/tool/mold-scaler/i18n/en.ts +5 -20
  158. package/src/tool/mold-scaler/i18n/es.ts +5 -20
  159. package/src/tool/mold-scaler/i18n/fr.ts +5 -20
  160. package/src/tool/mold-scaler/i18n/id.ts +5 -17
  161. package/src/tool/mold-scaler/i18n/it.ts +5 -17
  162. package/src/tool/mold-scaler/i18n/ja.ts +5 -17
  163. package/src/tool/mold-scaler/i18n/ko.ts +5 -17
  164. package/src/tool/mold-scaler/i18n/nl.ts +5 -17
  165. package/src/tool/mold-scaler/i18n/pl.ts +5 -17
  166. package/src/tool/mold-scaler/i18n/pt.ts +5 -17
  167. package/src/tool/mold-scaler/i18n/ru.ts +5 -17
  168. package/src/tool/mold-scaler/i18n/sv.ts +5 -17
  169. package/src/tool/mold-scaler/i18n/tr.ts +5 -17
  170. package/src/tool/mold-scaler/i18n/zh.ts +5 -17
  171. package/src/tool/mold-scaler/seo.astro +10 -3
  172. package/src/tool/pizza/bibliography.astro +3 -3
  173. package/src/tool/pizza/bibliography.ts +18 -0
  174. package/src/tool/pizza/i18n/de.ts +3 -13
  175. package/src/tool/pizza/i18n/en.ts +58 -75
  176. package/src/tool/pizza/i18n/es.ts +2 -20
  177. package/src/tool/pizza/i18n/fr.ts +58 -75
  178. package/src/tool/pizza/i18n/id.ts +3 -9
  179. package/src/tool/pizza/i18n/it.ts +3 -13
  180. package/src/tool/pizza/i18n/ja.ts +3 -9
  181. package/src/tool/pizza/i18n/ko.ts +3 -9
  182. package/src/tool/pizza/i18n/nl.ts +3 -9
  183. package/src/tool/pizza/i18n/pl.ts +3 -9
  184. package/src/tool/pizza/i18n/pt.ts +3 -9
  185. package/src/tool/pizza/i18n/ru.ts +28 -34
  186. package/src/tool/pizza/i18n/sv.ts +3 -9
  187. package/src/tool/pizza/i18n/tr.ts +3 -9
  188. package/src/tool/pizza/i18n/zh.ts +3 -9
  189. package/src/tool/pizza/seo.astro +11 -4
  190. package/src/tool/roux-guide/bibliography.astro +3 -3
  191. package/src/tool/roux-guide/bibliography.ts +14 -0
  192. package/src/tool/roux-guide/i18n/de.ts +3 -9
  193. package/src/tool/roux-guide/i18n/en.ts +2 -15
  194. package/src/tool/roux-guide/i18n/es.ts +3 -17
  195. package/src/tool/roux-guide/i18n/fr.ts +2 -15
  196. package/src/tool/roux-guide/i18n/id.ts +3 -9
  197. package/src/tool/roux-guide/i18n/it.ts +3 -9
  198. package/src/tool/roux-guide/i18n/ja.ts +3 -9
  199. package/src/tool/roux-guide/i18n/ko.ts +3 -9
  200. package/src/tool/roux-guide/i18n/nl.ts +3 -9
  201. package/src/tool/roux-guide/i18n/pl.ts +3 -9
  202. package/src/tool/roux-guide/i18n/pt.ts +3 -9
  203. package/src/tool/roux-guide/i18n/ru.ts +3 -9
  204. package/src/tool/roux-guide/i18n/sv.ts +3 -9
  205. package/src/tool/roux-guide/i18n/tr.ts +3 -9
  206. package/src/tool/roux-guide/i18n/zh.ts +3 -9
  207. package/src/tool/roux-guide/seo.astro +11 -4
  208. package/src/tool/sourdough-calculator/bibliography.astro +3 -3
  209. package/src/tool/sourdough-calculator/bibliography.ts +14 -0
  210. package/src/tool/sourdough-calculator/i18n/de.ts +3 -9
  211. package/src/tool/sourdough-calculator/i18n/en.ts +3 -17
  212. package/src/tool/sourdough-calculator/i18n/es.ts +4 -18
  213. package/src/tool/sourdough-calculator/i18n/fr.ts +2 -15
  214. package/src/tool/sourdough-calculator/i18n/id.ts +3 -9
  215. package/src/tool/sourdough-calculator/i18n/it.ts +3 -9
  216. package/src/tool/sourdough-calculator/i18n/ja.ts +3 -9
  217. package/src/tool/sourdough-calculator/i18n/ko.ts +3 -9
  218. package/src/tool/sourdough-calculator/i18n/nl.ts +3 -9
  219. package/src/tool/sourdough-calculator/i18n/pl.ts +3 -9
  220. package/src/tool/sourdough-calculator/i18n/pt.ts +3 -9
  221. package/src/tool/sourdough-calculator/i18n/ru.ts +3 -9
  222. package/src/tool/sourdough-calculator/i18n/sv.ts +3 -9
  223. package/src/tool/sourdough-calculator/i18n/tr.ts +3 -9
  224. package/src/tool/sourdough-calculator/i18n/zh.ts +3 -9
  225. package/src/tool/sourdough-calculator/seo.astro +11 -4
  226. package/src/tool/yeast-converter/bibliography.astro +6 -0
  227. package/src/tool/yeast-converter/bibliography.ts +6 -0
  228. package/src/tool/yeast-converter/component.astro +96 -0
  229. package/src/tool/yeast-converter/entry.ts +26 -0
  230. package/src/tool/yeast-converter/i18n/de.ts +235 -0
  231. package/src/tool/yeast-converter/i18n/en.ts +234 -0
  232. package/src/tool/yeast-converter/i18n/es.ts +235 -0
  233. package/src/tool/yeast-converter/i18n/fr.ts +235 -0
  234. package/src/tool/yeast-converter/i18n/id.ts +235 -0
  235. package/src/tool/yeast-converter/i18n/it.ts +235 -0
  236. package/src/tool/yeast-converter/i18n/ja.ts +235 -0
  237. package/src/tool/yeast-converter/i18n/ko.ts +235 -0
  238. package/src/tool/yeast-converter/i18n/nl.ts +235 -0
  239. package/src/tool/yeast-converter/i18n/pl.ts +235 -0
  240. package/src/tool/yeast-converter/i18n/pt.ts +235 -0
  241. package/src/tool/yeast-converter/i18n/ru.ts +235 -0
  242. package/src/tool/yeast-converter/i18n/sv.ts +235 -0
  243. package/src/tool/yeast-converter/i18n/tr.ts +235 -0
  244. package/src/tool/yeast-converter/i18n/zh.ts +235 -0
  245. package/src/tool/yeast-converter/index.ts +11 -0
  246. package/src/tool/yeast-converter/init.ts +277 -0
  247. package/src/tool/yeast-converter/seo.astro +15 -0
  248. package/src/tool/yeast-converter/yeast-converter-fresh-dry-sourdough-starter.css +388 -0
  249. package/src/tools.ts +2 -0
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from "../../../types";
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "平衡盐水计算器";
4
5
  const description = "实现多汁肉类与完美发酵的平衡科学。根据食材和水的总重量计算精确的盐度。";
@@ -104,25 +105,8 @@ export const content: ToolLocaleContent = {
104
105
  timePreservesLabel: "时长(保存食品)",
105
106
  timePreservesDuration: "1 个月以上",
106
107
  },
107
- faqTitle: "常见问题",
108
- bibliographyTitle: "来源与参考文献",
109
- faq,
110
- howTo,
111
- bibliography: [
112
- {
113
- name: "The Noma Guide to Fermentation - René Redzepi & David Zilber",
114
- url: "https://www.nomacph.com/",
115
- },
116
- {
117
- name: "Salt, Fat, Acid, Heat - Samin Nosrat",
118
- url: "https://www.saltfatacidheat.com/",
119
- },
120
- {
121
- name: "Pollan, Michael - Cooked",
122
- url: "https://michaelpollan.com/",
123
- },
124
- ],
125
- seo: [
108
+ faqTitle: "常见问题", faq,
109
+ howTo, seo: [
126
110
  {
127
111
  type: 'title',
128
112
  text: '平衡盐水与发酵大师指南',
@@ -249,5 +233,6 @@ export const content: ToolLocaleContent = {
249
233
  html: '我们的平衡计算器为您排除配方中的不确定因素,让您像专业大厨一样充满信心地烹饪。',
250
234
  },
251
235
  ],
236
+ bibliography,
252
237
  schemas: [faqSchema, howToSchema, appSchema],
253
238
  };
@@ -1,8 +1,15 @@
1
1
  ---
2
- import { SEORenderer } from "@jjlmoya/utils-shared";
3
- import { content } from "./i18n/es";
2
+ import { SEORenderer } from '@jjlmoya/utils-shared';
3
+ import { brine } from './entry';
4
+ import type { KnownLocale } from '../../types';
4
5
 
5
- const locale = "es";
6
+ interface Props {
7
+ locale?: KnownLocale;
8
+ }
9
+
10
+ const { locale = 'es' } = Astro.props;
11
+ const content = await brine.i18n[locale]?.();
12
+ if (!content) return null;
6
13
  ---
7
14
 
8
- <SEORenderer content={{ sections: content.seo, locale }} />
15
+ {content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { Bibliography as BibliographyComponent } from '@jjlmoya/utils-shared';
3
- import { content } from './i18n/es';
3
+ import { bibliography } from './bibliography';
4
4
  ---
5
5
 
6
- <BibliographyComponent links={content.bibliography} />
6
+ <BibliographyComponent links={bibliography} />
@@ -0,0 +1,10 @@
1
+ export const bibliography = [
2
+ {
3
+ name: 'The Best Cookware, According to Science',
4
+ url: 'https://www.discovermagazine.com/the-best-cookware-according-to-science-42175',
5
+ },
6
+ {
7
+ name: 'Guide to Cookware Materials',
8
+ url: 'https://www.everythingkitchens.com/blog/guide-to-cookware-material-best-pots-pans-material-for-the-kitchen.html',
9
+ },
10
+ ];
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Intelligenter Pfannen Finder: Kochgeschirr Leitfaden";
4
5
  const description = "Interaktiver Leitfaden zur Auswahl der besten Pfanne oder des besten Topfes passend zu Ihrem Kochstil. Eisen vs. Stahl vs. Teflon. Finden Sie Ihr perfektes Werkzeug.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Intelligenter Pfannen Finder: Kochgeschirr Leitfaden',
77
78
  description: 'Interaktiver Leitfaden zur Auswahl der besten Pfanne oder des besten Topfes passend zu Ihrem Kochstil. Eisen vs. Stahl vs. Teflon. Finden Sie Ihr perfektes Werkzeug.',
78
79
  faqTitle: 'Häufig gestellte Fragen',
79
- faq,
80
- bibliographyTitle: 'Bibliographie',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Sehr teuer. Emaille ist stoßempfindlich.',
197
182
  enamelTip: 'Perfekt für endlose Schmorgerichte. Die Emaille erlaubt problemloses Kochen mit Säuren (Tomate).',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Smart Cookware Selector: Kitchen Utensils Guide";
4
5
  const description = "Interactive guide to choose the best pan or pot based on your cooking style. Iron vs Stainless Steel vs Teflon. Find your perfect tool.";
@@ -97,23 +98,7 @@ export const content: ToolLocaleContent = {
97
98
  question: 'How much should I spend on a good pan?',
98
99
  answer: 'A set of 2-3 medium-high quality pans (stainless or iron) can last 20+ years. It\'s better to invest well in one pan than to buy 5 cheap ones lasting 2 years. Quality over quantity.',
99
100
  },
100
- ],
101
- bibliographyTitle: 'Bibliography',
102
- bibliography: [
103
- {
104
- name: 'The Flavor Bible - Pairing and Progress in Food',
105
- url: 'https://www.flavorprints.com/',
106
- },
107
- {
108
- name: 'On Food and Cooking - Harold McGee (The Science of Cooking)',
109
- url: 'https://www.foodscience.org/',
110
- },
111
- {
112
- name: 'Salt Fat Acid Heat - Samin Nosrat',
113
- url: 'https://www.saltfatacidheat.com/',
114
- },
115
- ],
116
- howTo: [
101
+ ], howTo: [
117
102
  {
118
103
  name: 'Select your cooking style',
119
104
  text: 'Choose between high heat (searing), delicate (eggs), stews (slow cooking) or quick cooking. Each style has distinct requirements.',
@@ -230,5 +215,6 @@ export const content: ToolLocaleContent = {
230
215
  enamelCon: 'Very expensive. Enamel fragile to hard impacts.',
231
216
  enamelTip: 'Perfect for endless braises. Enamel handles acids (tomato) without issues.',
232
217
  },
218
+ bibliography,
233
219
  schemas: [faqSchema, howToSchema, appSchema],
234
220
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Selector de Sartenes Inteligente: Guía de Utensilios de Cocina";
4
5
  const description = "Guía interactiva para elegir la mejor sartén u olla según tu estilo de cocina. Hierro vs Acero vs Teflón. Encuentra tu herramienta perfecta.";
@@ -97,23 +98,7 @@ export const content: ToolLocaleContent = {
97
98
  question: '¿Cuánto debo gastar en una buena sartén?',
98
99
  answer: 'Un set de 2-3 sartenes de calidad media-alta (acero inoxidable o hierro) puede durar 20+ años. Es mejor invertir bien una sola sartén que comprar 5 baratas que duran 2 años. Calidad sobre cantidad.',
99
100
  },
100
- ],
101
- bibliographyTitle: 'Bibliografía',
102
- bibliography: [
103
- {
104
- name: 'The Flavor Bible - Pairing, and Progress in Food',
105
- url: 'https://www.flavorprints.com/',
106
- },
107
- {
108
- name: 'On Food and Cooking - Harold McGee (La Ciencia de la Cocina)',
109
- url: 'https://www.foodscience.org/',
110
- },
111
- {
112
- name: 'Salt Fat Acid Heat - Samin Nosrat',
113
- url: 'https://www.saltfatacidheat.com/',
114
- },
115
- ],
116
- howTo: [
101
+ ], howTo: [
117
102
  {
118
103
  name: 'Selecciona tu estilo de cocina',
119
104
  text: 'Elige entre fuego alto (dorar), delicado (huevos), guisos (cocción lenta) o cocina rápida. Cada estilo tiene requirements distintos.',
@@ -230,5 +215,6 @@ export const content: ToolLocaleContent = {
230
215
  enamelCon: 'Muy cara. Esmalte frágil a golpes secos.',
231
216
  enamelTip: 'Perfecta para guisos interminables. El esmalte permite cocinar ácidos (tomate) sin problemas.',
232
217
  },
218
+ bibliography,
233
219
  schemas: [faqSchema, howToSchema, appSchema],
234
220
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Sélecteur d'Ustensiles Connecté Guide de Cuisine";
4
5
  const description = "Guide interactif pour choisir la meilleure poêle ou casserole selon votre style de cuisine. Fonte vs Acier Inoxydable vs Téflon. Trouvez votre outil parfait.";
@@ -75,9 +76,7 @@ export const content: ToolLocaleContent = {
75
76
  slug: 'selecteur-ustensiles',
76
77
  title: 'Sélecteur d\'Ustensiles Connecté Guide de Cuisine',
77
78
  description: 'Guide interactif pour choisir la meilleure poêle ou casserole selon votre style de cuisine. Fonte vs Acier Inoxydable vs Téflon. Trouvez votre outil parfait.',
78
- faqTitle: 'Questions Fréquemment Posées',
79
- bibliographyTitle: 'Sources et Bibliographie',
80
- faq: [
79
+ faqTitle: 'Questions Fréquemment Posées', faq: [
81
80
  {
82
81
  question: 'Quelle est la meilleure poêle pour un usage quotidien ?',
83
82
  answer: "Pour la plupart des gens, une poêle en acier inoxydable de haute qualité ou eine fonte bien culottée sont les meilleures options. L'inox est polyvalent et éternel, tandis que la fonte offre un anti-adhésif naturel sans produits chimiques.",
@@ -99,20 +98,6 @@ export const content: ToolLocaleContent = {
99
98
  answer: 'Un ensemble de 2-3 poêles de qualité moyenne-haute (inox ou fonte) peut durer plus de 20 ans. Il vaut mieux investir dans une bonne poêle que d\'en acheter 5 bon marché qui durent 2 ans. La qualité avant la quantité.',
100
99
  },
101
100
  ],
102
- bibliography: [
103
- {
104
- name: 'The Flavor Bible - Association et Progrès en Cuisine',
105
- url: 'https://www.flavorprints.com/',
106
- },
107
- {
108
- name: 'On Food and Cooking - Harold McGee (La Science de la Cuisine)',
109
- url: 'https://www.foodscience.org/',
110
- },
111
- {
112
- name: 'Salt Fat Acid Heat - Samin Nosrat',
113
- url: 'https://www.saltfatacidheat.com/',
114
- },
115
- ],
116
101
  howTo: [
117
102
  {
118
103
  name: 'Sélectionnez votre style de cuisine',
@@ -230,5 +215,6 @@ export const content: ToolLocaleContent = {
230
215
  enamelCon: 'Très chère. Émail fragile aux chocs violents.',
231
216
  enamelTip: 'Parfait pour les braisés sans fin. L\'émail supporte les acides (tomate) sans problème.',
232
217
  },
218
+ bibliography,
233
219
  schemas: [faqSchema, howToSchema, appSchema],
234
220
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Pemilih Wajan Pintar: Panduan Peralatan Masak";
4
5
  const description = "Panduan interaktif untuk memilih wajan atau panci terbaik sesuai gaya memasak Anda. Besi vs Baja vs Teflon. Temukan alat masak yang sempurna.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Pemilih Wajan Pintar: Panduan Peralatan Masak',
77
78
  description: 'Panduan interaktif untuk memilih wajan atau panci terbaik sesuai gaya memasak Anda. Besi vs Baja vs Teflon. Temukan alat masak yang sempurna.',
78
79
  faqTitle: 'Pertanyaan yang Sering Diajukan',
79
- faq,
80
- bibliographyTitle: 'Bibliografi',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Sangat mahal. Lapisan enamel rapuh terhadap benturan keras.',
197
182
  enamelTip: 'Sangat cocok untuk semur yang lama. Lapisan enamel memungkinkan memasak bahan asam (tomat) tanpa masalah.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Selettore di Padelle Intelligente: Guida agli Utensili da Cucina";
4
5
  const description = "Guida interattiva per scegliere la migliore padella o pentola in base al tuo stile di cucina. Ferro vs Acciaio vs Teflon. Trova il tuo strumento perfetto.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Selettore di Padelle Intelligente: Guida agli Utensili da Cucina',
77
78
  description: 'Guida interattiva per scegliere la migliore padella o pentola in base al tuo stile di cucina. Ferro vs Acciaio vs Teflon. Trova il tuo strumento perfetto.',
78
79
  faqTitle: 'Domande Frequenti',
79
- faq,
80
- bibliographyTitle: 'Bibliografia',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Molto cara. Smalto fragile agli urti secchi.',
197
182
  enamelTip: 'Perfetta per stufati interminabili. Lo smalto permette di cucinare acidi (pomodoro) senza problemi.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "スマート・フライパン・セレクター:調理器具ガイド";
4
5
  const description = "あなたの料理スタイルに合わせて最適なフライパンや鍋を選ぶためのインタラクティブガイド。鋳鉄 vs ステンレス vs テフロン。理想の道具を見つけましょう。";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'スマート・フライパン・セレクター:調理器具ガイド',
77
78
  description: 'あなたの料理スタイルに合わせて最適なフライパンや鍋を選ぶためのインタラクティブガイド。鋳鉄 vs ステンレス vs テフロン。理想の道具を見つけましょう。',
78
79
  faqTitle: 'よくある質問',
79
- faq,
80
- bibliographyTitle: '参考文献',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee (料理の科学)',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: '高価。ホーロー層は衝撃に弱い。',
197
182
  enamelTip: '長時間の煮込み料理に完璧。ホーロー加工により酸性食材(トマト)も問題なく調理できます。',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "스마트 프라이팬 선택기: 조리 도구 가이드";
4
5
  const description = "요리 스타일에 맞춰 가장 적합한 팬이나 냄비를 선택하기 위한 인터랙티브 가이드. 주물 vs 스테인리스 vs 테플론. 나에게 완벽한 도구를 찾아보세요.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: '스마트 프라이팬 선택기: 조리 도구 가이드',
77
78
  description: '요리 스타일에 맞춰 가장 적합한 팬이나 냄비를 선택하기 위한 인터랙티브 가이드. 주물 vs 스테인리스 vs 테플론. 나에게 완벽한 도구를 찾아보세요.',
78
79
  faqTitle: '자주 묻는 질문',
79
- faq,
80
- bibliographyTitle: '참고 문헌',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: '가격이 매우 높음. 에나멜 코팅은 충격에 취약함.',
197
182
  enamelTip: '장시간 끓이는 요리에 완벽합니다. 에나멜 코팅 덕분에 산성 재료(토마토) 요리도 문제없습니다.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Intelligente Pannenselector: Gids voor Kookgerei";
4
5
  const description = "Interactieve gids voor het kiezen van de beste pan of pot op basis van uw kookstijl. Gietijzer vs Staal vs Teflon. Vind uw perfecte gereedschap.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Intelligente Pannenselector: Gids voor Kookgerei',
77
78
  description: 'Interactieve gids voor het kiezen van de beste pan of pot op basis van uw kookstijl. Gietijzer vs Staal vs Teflon. Vind uw perfecte gereedschap.',
78
79
  faqTitle: 'Veelgestelde Vragen',
79
- faq,
80
- bibliographyTitle: 'Bibliografie',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Heel duur. Emaille is kwetsbaar voor stoten.',
197
182
  enamelTip: 'Perfect voor eindeloze stoofschotels. De emaille laag maakt koken met zuren (tomaat) probleemloos.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Inteligentny Dobór Patelni: Przewodnik po Naczyniach Kuchennych";
4
5
  const description = "Interaktywny przewodnik pomagający wybrać najlepszą patelnię lub garnek zależnie od stylu gotowania. Żeliwo vs Stal vs Teflon. Znajdź swoje idealne narzędzie.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Inteligentny Dobór Patelni: Przewodnik po Naczyniach Kuchennych',
77
78
  description: 'Interaktywny przewodnik pomagający wybrać najlepszą patelnię lub garnek zależnie od stylu gotowania. Żeliwo vs Stal vs Teflon. Znajdź swoje idealne narzędzie.',
78
79
  faqTitle: 'Często Zadawane Pytania',
79
- faq,
80
- bibliographyTitle: 'Bibliografia',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Bardzo droga. Emalia wrażliwa na uderzenia punktowe.',
197
182
  enamelTip: 'Idealna do długich gulaszy. Emalia pozwala na gotowanie kwasów (pomidorów) bez problemów.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Seletor de Frigideiras Inteligente: Guia de Utensílios de Cozinha";
4
5
  const description = "Guia interativo para escolher a melhor frigideira ou panela de acordo com o seu estilo de cozinha. Ferro vs Aço vs Teflon. Encontre a ferramenta perfeita.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Seletor de Frigideiras Inteligente: Guia de Utensílios de Cozinha',
77
78
  description: 'Guia interativo para escolher a melhor frigideira ou panela de acordo com o seu estilo de cozinha. Ferro vs Aço vs Teflon. Encontre a ferramenta perfeita.',
78
79
  faqTitle: 'Perguntas Frequentes',
79
- faq,
80
- bibliographyTitle: 'Bibliografia',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Muito cara. Esmalte frágil a impactos secos.',
197
182
  enamelTip: 'Perfeita para guisados intermináveis. O esmalte permite cozinhar ácidos (tomate) sem problemas.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Умный выбор сковород: Гид по кухонной утвари";
4
5
  const description = "Интерактивное руководство по выбору лучшей сковороды или кастрюли в зависимости от вашего стиля кулинарии. Чугун против Стали против Тефлона. Найдите свой идеальный инструмент.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Умный выбор сковород: Гид по кухонной утвари',
77
78
  description: 'Интерактивное руководство по выбору лучшей сковороды или кастрюли в зависимости от вашего стиля кулинарии. Чугун против Стали против Тефлона. Найдите свой идеальный инструмент.',
78
79
  faqTitle: 'Часто задаваемые вопросы',
79
- faq,
80
- bibliographyTitle: 'Библиография',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Очень дорогая. Эмаль боится сильных ударов.',
197
182
  enamelTip: 'Идеальна для долгих рагу. Эмаль позволяет готовить кислые блюда (томаты) без проблем.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Smart Pannväljare: Guide för Köksredskap";
4
5
  const description = "Interaktiv guide för att välja den bästa pannan eller grytan baserat på din matlagningsstil. Gjutjärn vs Stål vs Teflon. Hitta ditt perfekta verktyg.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Smart Pannväljare: Guide för Köksredskap',
77
78
  description: 'Interaktiv guide för att välja den bästa pannan eller grytan baserat på din matlagningsstil. Gjutjärn vs Stål vs Teflon. Hitta ditt perfekta verktyg.',
78
79
  faqTitle: 'Vanliga Frågor',
79
- faq,
80
- bibliographyTitle: 'Bibliografi',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Väldigt dyr. Emaljen är känslig för slag.',
197
182
  enamelTip: 'Perfekt för oändliga grytor. Emaljen tillåter tillagning med syror (tomat) utan problem.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "Akıllı Tencere Seçici: Mutfak Gereçleri Rehberi";
4
5
  const description = "Pişirme tarzınıza göre en iyi tava veya tencereyi seçmeniz için etkileşimli rehber. Döküm vs Çelik vs Teflon. Mükemmel aracınızı bulun.";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: 'Akıllı Tencere Seçici: Mutfak Gereçleri Rehberi',
77
78
  description: 'Pişirme tarzınıza göre en iyi tava veya tencereyi seçmeniz için etkileşimli rehber. Döküm vs Çelik vs Teflon. Mükemmel aracınızı bulun.',
78
79
  faqTitle: 'Sıkça Sorulan Sorular',
79
- faq,
80
- bibliographyTitle: 'Kaynakça',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: 'Çok pahalıdır. Emaye sert darbelere karşı kırılgandır.',
197
182
  enamelTip: 'Bitmek bilmeyen tencere yemekleri için mükemmeldir. Emaye sayesinde asidik (domates) gıdalar sorunsuz pişirilir.',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };
@@ -1,4 +1,5 @@
1
1
  import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
2
3
 
3
4
  const title = "智能锅具选择器:炊具指南";
4
5
  const description = "根据您的烹饪风格选择最佳锅具的互动指南。铸铁 vs 不锈钢 vs 特氟龙。找到您完美的烹饪工具。";
@@ -76,23 +77,7 @@ export const content: ToolLocaleContent = {
76
77
  title: '智能锅具选择器:炊具指南',
77
78
  description: '根据您的烹饪风格选择最佳锅具的互动指南。铸铁 vs 不锈钢 vs 特氟龙。找到您完美的烹饪工具。',
78
79
  faqTitle: '常见问题',
79
- faq,
80
- bibliographyTitle: '参考文献',
81
- bibliography: [
82
- {
83
- name: 'The Flavor Bible - Pairing, and Progress in Food',
84
- url: 'https://www.flavorprints.com/',
85
- },
86
- {
87
- name: 'On Food and Cooking - Harold McGee (食物与烹饪)',
88
- url: 'https://www.foodscience.org/',
89
- },
90
- {
91
- name: 'Salt Fat Acid Heat - Samin Nosrat',
92
- url: 'https://www.saltfatacidheat.com/',
93
- },
94
- ],
95
- howTo,
80
+ faq, howTo,
96
81
  seo: [
97
82
  {
98
83
  type: 'title',
@@ -196,5 +181,6 @@ export const content: ToolLocaleContent = {
196
181
  enamelCon: '价格昂贵。珐琅层较脆,怕猛烈磕碰。',
197
182
  enamelTip: '完美适于长时间炖煮。珐琅层可让您无忧烹饪酸性食物(如番茄)。',
198
183
  },
184
+ bibliography,
199
185
  schemas: [faqSchema, howToSchema, appSchema],
200
186
  };