@jjlmoya/utils-science 1.19.0 → 1.21.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 (164) hide show
  1. package/package.json +2 -1
  2. package/src/category/i18n/de.ts +1 -1
  3. package/src/category/i18n/fr.ts +6 -6
  4. package/src/category/i18n/ru.ts +1 -1
  5. package/src/category/index.ts +3 -1
  6. package/src/category/seo.astro +2 -2
  7. package/src/entries.ts +5 -1
  8. package/src/index.ts +2 -0
  9. package/src/pages/[locale]/[slug].astro +32 -15
  10. package/src/tests/locale_completeness.test.ts +5 -22
  11. package/src/tests/no_en_dash.test.ts +70 -0
  12. package/src/tests/seo_length.test.ts +5 -3
  13. package/src/tests/shared-test-helpers.ts +56 -0
  14. package/src/tests/title_quality.test.ts +1 -1
  15. package/src/tests/tool_exports.test.ts +34 -0
  16. package/src/tests/tool_validation.test.ts +2 -2
  17. package/src/tool/asteroid-impact/bibliography.astro +2 -2
  18. package/src/tool/asteroid-impact/bibliography.ts +24 -0
  19. package/src/tool/asteroid-impact/component.astro +16 -9
  20. package/src/tool/asteroid-impact/i18n/de.ts +4 -24
  21. package/src/tool/asteroid-impact/i18n/en.ts +4 -24
  22. package/src/tool/asteroid-impact/i18n/es.ts +4 -24
  23. package/src/tool/asteroid-impact/i18n/fr.ts +10 -30
  24. package/src/tool/asteroid-impact/i18n/id.ts +4 -24
  25. package/src/tool/asteroid-impact/i18n/it.ts +4 -24
  26. package/src/tool/asteroid-impact/i18n/ja.ts +4 -24
  27. package/src/tool/asteroid-impact/i18n/ko.ts +4 -24
  28. package/src/tool/asteroid-impact/i18n/nl.ts +4 -24
  29. package/src/tool/asteroid-impact/i18n/pl.ts +4 -24
  30. package/src/tool/asteroid-impact/i18n/pt.ts +4 -24
  31. package/src/tool/asteroid-impact/i18n/ru.ts +8 -28
  32. package/src/tool/asteroid-impact/i18n/sv.ts +4 -24
  33. package/src/tool/asteroid-impact/i18n/tr.ts +4 -24
  34. package/src/tool/asteroid-impact/i18n/zh.ts +4 -24
  35. package/src/tool/asteroid-impact/index.ts +1 -0
  36. package/src/tool/asteroid-impact/script.ts +13 -7
  37. package/src/tool/asteroid-impact/seo.astro +1 -1
  38. package/src/tool/cellular-renewal/bibliography.astro +2 -2
  39. package/src/tool/cellular-renewal/bibliography.ts +24 -0
  40. package/src/tool/cellular-renewal/i18n/de.ts +3 -24
  41. package/src/tool/cellular-renewal/i18n/en.ts +3 -24
  42. package/src/tool/cellular-renewal/i18n/es.ts +3 -24
  43. package/src/tool/cellular-renewal/i18n/fr.ts +16 -37
  44. package/src/tool/cellular-renewal/i18n/id.ts +3 -24
  45. package/src/tool/cellular-renewal/i18n/it.ts +3 -24
  46. package/src/tool/cellular-renewal/i18n/ja.ts +3 -24
  47. package/src/tool/cellular-renewal/i18n/ko.ts +3 -24
  48. package/src/tool/cellular-renewal/i18n/nl.ts +3 -24
  49. package/src/tool/cellular-renewal/i18n/pl.ts +3 -24
  50. package/src/tool/cellular-renewal/i18n/pt.ts +3 -24
  51. package/src/tool/cellular-renewal/i18n/ru.ts +20 -41
  52. package/src/tool/cellular-renewal/i18n/sv.ts +3 -24
  53. package/src/tool/cellular-renewal/i18n/tr.ts +3 -24
  54. package/src/tool/cellular-renewal/i18n/zh.ts +12 -33
  55. package/src/tool/cellular-renewal/index.ts +1 -0
  56. package/src/tool/cellular-renewal/seo.astro +2 -1
  57. package/src/tool/colony-counter/bibliography.astro +2 -2
  58. package/src/tool/colony-counter/bibliography.ts +12 -0
  59. package/src/tool/colony-counter/i18n/de.ts +3 -12
  60. package/src/tool/colony-counter/i18n/en.ts +3 -12
  61. package/src/tool/colony-counter/i18n/es.ts +3 -12
  62. package/src/tool/colony-counter/i18n/fr.ts +3 -12
  63. package/src/tool/colony-counter/i18n/id.ts +3 -12
  64. package/src/tool/colony-counter/i18n/it.ts +3 -12
  65. package/src/tool/colony-counter/i18n/ja.ts +3 -12
  66. package/src/tool/colony-counter/i18n/ko.ts +3 -12
  67. package/src/tool/colony-counter/i18n/nl.ts +3 -12
  68. package/src/tool/colony-counter/i18n/pl.ts +3 -12
  69. package/src/tool/colony-counter/i18n/pt.ts +3 -12
  70. package/src/tool/colony-counter/i18n/ru.ts +8 -17
  71. package/src/tool/colony-counter/i18n/sv.ts +3 -12
  72. package/src/tool/colony-counter/i18n/tr.ts +3 -12
  73. package/src/tool/colony-counter/i18n/zh.ts +5 -14
  74. package/src/tool/colony-counter/index.ts +1 -0
  75. package/src/tool/colony-counter/seo.astro +1 -1
  76. package/src/tool/cosmic-inflation/bibliography.astro +14 -0
  77. package/src/tool/cosmic-inflation/bibliography.ts +12 -0
  78. package/src/tool/cosmic-inflation/component.astro +270 -0
  79. package/src/tool/cosmic-inflation/cosmic-inflation-calculator.css +277 -0
  80. package/src/tool/cosmic-inflation/entry.ts +26 -0
  81. package/src/tool/cosmic-inflation/i18n/de.ts +188 -0
  82. package/src/tool/cosmic-inflation/i18n/en.ts +188 -0
  83. package/src/tool/cosmic-inflation/i18n/es.ts +168 -0
  84. package/src/tool/cosmic-inflation/i18n/fr.ts +188 -0
  85. package/src/tool/cosmic-inflation/i18n/id.ts +188 -0
  86. package/src/tool/cosmic-inflation/i18n/it.ts +188 -0
  87. package/src/tool/cosmic-inflation/i18n/ja.ts +188 -0
  88. package/src/tool/cosmic-inflation/i18n/ko.ts +188 -0
  89. package/src/tool/cosmic-inflation/i18n/nl.ts +188 -0
  90. package/src/tool/cosmic-inflation/i18n/pl.ts +188 -0
  91. package/src/tool/cosmic-inflation/i18n/pt.ts +188 -0
  92. package/src/tool/cosmic-inflation/i18n/ru.ts +188 -0
  93. package/src/tool/cosmic-inflation/i18n/sv.ts +188 -0
  94. package/src/tool/cosmic-inflation/i18n/tr.ts +188 -0
  95. package/src/tool/cosmic-inflation/i18n/zh.ts +188 -0
  96. package/src/tool/cosmic-inflation/index.ts +11 -0
  97. package/src/tool/cosmic-inflation/logic/CosmicInflationEngine.ts +21 -0
  98. package/src/tool/cosmic-inflation/seo.astro +15 -0
  99. package/src/tool/microwave-detector/bibliography.astro +2 -2
  100. package/src/tool/microwave-detector/bibliography.ts +16 -0
  101. package/src/tool/microwave-detector/component.astro +9 -7
  102. package/src/tool/microwave-detector/i18n/de.ts +3 -16
  103. package/src/tool/microwave-detector/i18n/en.ts +3 -16
  104. package/src/tool/microwave-detector/i18n/es.ts +3 -16
  105. package/src/tool/microwave-detector/i18n/fr.ts +7 -20
  106. package/src/tool/microwave-detector/i18n/id.ts +3 -16
  107. package/src/tool/microwave-detector/i18n/it.ts +3 -16
  108. package/src/tool/microwave-detector/i18n/ja.ts +3 -16
  109. package/src/tool/microwave-detector/i18n/ko.ts +3 -16
  110. package/src/tool/microwave-detector/i18n/nl.ts +3 -16
  111. package/src/tool/microwave-detector/i18n/pl.ts +3 -16
  112. package/src/tool/microwave-detector/i18n/pt.ts +3 -16
  113. package/src/tool/microwave-detector/i18n/ru.ts +21 -34
  114. package/src/tool/microwave-detector/i18n/sv.ts +3 -16
  115. package/src/tool/microwave-detector/i18n/tr.ts +3 -16
  116. package/src/tool/microwave-detector/i18n/zh.ts +13 -26
  117. package/src/tool/microwave-detector/index.ts +1 -0
  118. package/src/tool/microwave-detector/logic/MicrowaveEngine.ts +5 -1
  119. package/src/tool/microwave-detector/microwave-leak-detector.css +22 -25
  120. package/src/tool/microwave-detector/seo.astro +2 -1
  121. package/src/tool/simulation-probability/bibliography.astro +2 -2
  122. package/src/tool/simulation-probability/bibliography.ts +24 -0
  123. package/src/tool/simulation-probability/i18n/de.ts +3 -24
  124. package/src/tool/simulation-probability/i18n/en.ts +3 -24
  125. package/src/tool/simulation-probability/i18n/es.ts +3 -24
  126. package/src/tool/simulation-probability/i18n/fr.ts +8 -29
  127. package/src/tool/simulation-probability/i18n/id.ts +3 -24
  128. package/src/tool/simulation-probability/i18n/it.ts +3 -24
  129. package/src/tool/simulation-probability/i18n/ja.ts +3 -24
  130. package/src/tool/simulation-probability/i18n/ko.ts +3 -24
  131. package/src/tool/simulation-probability/i18n/nl.ts +3 -24
  132. package/src/tool/simulation-probability/i18n/pl.ts +3 -24
  133. package/src/tool/simulation-probability/i18n/pt.ts +3 -24
  134. package/src/tool/simulation-probability/i18n/ru.ts +10 -31
  135. package/src/tool/simulation-probability/i18n/sv.ts +3 -24
  136. package/src/tool/simulation-probability/i18n/tr.ts +3 -24
  137. package/src/tool/simulation-probability/i18n/zh.ts +7 -28
  138. package/src/tool/simulation-probability/index.ts +1 -0
  139. package/src/tool/simulation-probability/seo.astro +2 -1
  140. package/src/tool/temperature-timeline/bibliography.astro +14 -0
  141. package/src/tool/temperature-timeline/bibliography.ts +12 -0
  142. package/src/tool/temperature-timeline/component.astro +289 -0
  143. package/src/tool/temperature-timeline/entry.ts +26 -0
  144. package/src/tool/temperature-timeline/i18n/de.ts +213 -0
  145. package/src/tool/temperature-timeline/i18n/en.ts +213 -0
  146. package/src/tool/temperature-timeline/i18n/es.ts +178 -0
  147. package/src/tool/temperature-timeline/i18n/fr.ts +213 -0
  148. package/src/tool/temperature-timeline/i18n/id.ts +213 -0
  149. package/src/tool/temperature-timeline/i18n/it.ts +213 -0
  150. package/src/tool/temperature-timeline/i18n/ja.ts +213 -0
  151. package/src/tool/temperature-timeline/i18n/ko.ts +213 -0
  152. package/src/tool/temperature-timeline/i18n/nl.ts +213 -0
  153. package/src/tool/temperature-timeline/i18n/pl.ts +213 -0
  154. package/src/tool/temperature-timeline/i18n/pt.ts +213 -0
  155. package/src/tool/temperature-timeline/i18n/ru.ts +213 -0
  156. package/src/tool/temperature-timeline/i18n/sv.ts +213 -0
  157. package/src/tool/temperature-timeline/i18n/tr.ts +213 -0
  158. package/src/tool/temperature-timeline/i18n/zh.ts +213 -0
  159. package/src/tool/temperature-timeline/index.ts +11 -0
  160. package/src/tool/temperature-timeline/logic/TemperatureTimelineEngine.ts +58 -0
  161. package/src/tool/temperature-timeline/planet-temperature-timeline.css +158 -0
  162. package/src/tool/temperature-timeline/seo.astro +15 -0
  163. package/src/tools.ts +4 -0
  164. package/src/types.ts +1 -3
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'その通りです。水晶体細胞は胚発生時に蓄積され、生涯維持されます。100歳になっても、水晶体の中央の細胞は胎内にいたときと同じである可能性があります。それは生物学的なタイムカプセルです。',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'よくある質問',
55
- bibliographyTitle: '参考文献',
56
55
  ui: {
57
56
  copied: 'コピー済み',
58
57
  noHistory: '履歴なし',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'スタンフォード哲学百科事典:テセウスの船と個人的同一性。',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: '맞습니다. 수정체 세포는 배아 발달 단계에서 형성되어 평생 유지됩니다. 100세가 되었을 때 수정체 중심 세포는 태중에 있을 때와 같을 수 있습니다. 일종의 생물학적 타임캡슐입니다.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: '자주 묻는 질문',
55
- bibliographyTitle: '참고 문헌',
56
55
  ui: {
57
56
  copied: '복사됨',
58
57
  noHistory: '내역 없음',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). 인체의 세포 회전율 분포. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). 인간 세포의 회고적 탄생 연도 측정. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). 인체 세포 수 추정. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: '스탠퍼드 철학 백과사전: 테세우스의 배와 개인적 정체성.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). 분열 속도에 따른 세포 및 조직 분류. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Klopt. Lenscellen worden aangemaakt tijdens de embryonale ontwikkeling en gaan een leven lang mee. Als je 100 bent, kunnen de centrale cellen van je lens nog steeds dezelfde zijn als toen je in de baarmoeder zat. Het is een biologische tijdcapsule.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Veelgestelde Vragen',
55
- bibliographyTitle: 'Bibliografie',
56
55
  ui: {
57
56
  copied: 'Gekopieerd',
58
57
  noHistory: 'Geen geschiedenis',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Stanford Encyclopedia of Philosophy: The Ship of Theseus and Personal Identity.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Zgadza się. Komórki soczewki powstają w trakcie rozwoju embrionalnego i pozostają na całe życie. W wieku 100 lat centralne komórki Twojej soczewki mogą być tymi samymi, które miałeś w łonie matki. To biologiczna kapsuła czasu.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Często Zadawane Pytania',
55
- bibliographyTitle: 'Bibliografia',
56
55
  ui: {
57
56
  copied: 'Skopiowano',
58
57
  noHistory: 'Brak historii',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., i in. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., i in. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Stanford Encyclopedia of Philosophy: The Ship of Theseus and Personal Identity.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Correto. As células do cristalino são depositadas durante o desenvolvimento embrionário e são mantidas para a vida toda. Aos 100 anos, as células centrais do seu cristalino podem ser as mesmas de quando estava no útero. É uma cápsula do tempo biológica.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Perguntas Frequentes',
55
- bibliographyTitle: 'Bibliografia',
56
55
  ui: {
57
56
  copied: 'Copiado',
58
57
  noHistory: 'Sem histórico',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Stanford Encyclopedia of Philosophy: The Ship of Theseus and Personal Identity.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -1,6 +1,6 @@
1
1
  const slug = 'kalkulyator-obnovleniya-kletok';
2
2
  const description = 'Рассчитайте процент вашего тела, который обновился с момента рождения. Оценки основаны на скорости деления клеток органов, костей и тканей. Парадокс Тесея, ставший осязаемым.';
3
- const title = 'Калькулятор обновления клеток: сколько осталось от оригинального «вас»?';
3
+ const title = 'Калькулятор обновления клеток: сколько осталось от оригинального "вас"?';
4
4
  const howTo = [
5
5
  {
6
6
  name: 'Укажите свой возраст',
@@ -8,7 +8,7 @@ const howTo = [
8
8
  },
9
9
  {
10
10
  name: 'Посмотрите на основной процент',
11
- text: 'Большое число в центре показывает, какой процент вашей текущей материи является «новым» (обновленным с момента рождения).',
11
+ text: 'Большое число в центре показывает, какой процент вашей текущей материи является "новым" (обновленным с момента рождения).',
12
12
  },
13
13
  {
14
14
  name: 'Изучите графики прогресса',
@@ -16,25 +16,25 @@ const howTo = [
16
16
  },
17
17
  {
18
18
  name: 'Задумайтесь о своей идентичности',
19
- text: 'Если 99% вас это новая материя, то кто вы на самом деле? Используйте этот инструмент как отправную точку для размышлений о преемственности личности и парадоксе Тесея.',
19
+ text: 'Если 99% вас - это новая материя, то кто вы на самом деле? Используйте этот инструмент как отправную точку для размышлений о преемственности личности и парадоксе Тесея.',
20
20
  },
21
21
  ];
22
22
  const faq = [
23
23
  {
24
- question: 'Что именно представляет собой «обновление клеток»?',
24
+ question: 'Что именно представляет собой "обновление клеток"?',
25
25
  answer: 'Это естественный процесс, при котором состарившиеся или поврежденные клетки умирают (апоптоз) и заменяются новыми клетками, образующимися в результате митотического деления. Этот цикл необходим для поддержания функциональности тканей и заживления повреждений.',
26
26
  },
27
27
  {
28
28
  question: 'Почему мозг обновляется так медленно?',
29
- answer: 'Нейроны в коре головного мозга образуются до рождения и, как правило, больше не делятся. Это обеспечивает неврологическую стабильность: ваша фундаментальная «проводка» остается неизменной. Однако глиальные (вспомогательные) клетки обновляются. Память хранится в связях, а не в атомах.',
29
+ answer: 'Нейроны в коре головного мозга образуются до рождения и, как правило, больше не делятся. Это обеспечивает неврологическую стабильность: ваша фундаментальная "проводка" остается неизменной. Однако глиальные (вспомогательные) клетки обновляются. Память хранится в связях, а не в атомах.',
30
30
  },
31
31
  {
32
- question: 'Правда ли, что каждые 7 лет мы становимся «новыми людьми»?',
33
- answer: 'Это упрощение, которое не совсем точно. Ваша кровь обновляется за 4 месяца, кожа за месяц, скелет за 10 лет. Ваш мозг остается практически неизменным. Число 7 лет является скорее историческим мифом (об этом упоминал еще Аристотель), но биологически это неточное среднее значение.',
32
+ question: 'Правда ли, что каждые 7 лет мы становимся "новыми людьми"?',
33
+ answer: 'Это упрощение, которое не совсем точно. Ваша кровь обновляется за 4 месяца, кожа - за месяц, скелет - за 10 лет. Ваш мозг остается практически неизменным. Число 7 лет является скорее историческим мифом (об этом упоминал еще Аристотель), но биологически это неточное среднее значение.',
34
34
  },
35
35
  {
36
36
  question: 'Если мое тело на 99% новое, я все еще тот же человек?',
37
- answer: 'Да. Идентичность это преемственность информации, сознания и памяти, а не атомов. Вы подобны реке: вода постоянно меняется, но река остается прежней. Парадокс Тесея предполагает, что идентичность заключается в паттерне, а не в материи.',
37
+ answer: 'Да. Идентичность - это преемственность информации, сознания и памяти, а не атомов. Вы подобны реке: вода постоянно меняется, но река остается прежней. Парадокс Тесея предполагает, что идентичность заключается в паттерне, а не в материи.',
38
38
  },
39
39
  {
40
40
  question: 'Какие ткани обновляются быстрее всего?',
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Верно. Клетки хрусталика закладываются во время эмбрионального развития и сохраняются на всю жизнь. В 100 лет центральные клетки вашего хрусталика могут быть теми же, что и во время вашего пребывания в утробе. Это биологическая капсула времени.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Часто задаваемые вопросы',
55
- bibliographyTitle: 'Библиография',
56
55
  ui: {
57
56
  copied: 'Скопировано',
58
57
  noHistory: 'История пуста',
@@ -66,21 +65,21 @@ export const content: ToolLocaleContent = {
66
65
  boneRemodeling: 'Перестройка костей',
67
66
  organicMatrix: 'Органическая матрица',
68
67
  perennialCells: 'Вечные клетки',
69
- disclaimerText: 'Расчеты основаны на средней продолжительности жизни клеток согласно изотопным исследованиям. В то время как кровь и кожа обновляются за недели, белки хрусталика глаза и большая часть коры головного мозга остаются с вами со времен эмбрионального развития. Физически вы динамическая структура в постоянном потоке.',
68
+ disclaimerText: 'Расчеты основаны на средней продолжительности жизни клеток согласно изотопным исследованиям. В то время как кровь и кожа обновляются за недели, белки хрусталика глаза и большая часть коры головного мозга остаются с вами со времен эмбрионального развития. Физически вы - динамическая структура в постоянном потоке.',
70
69
  },
71
70
  seo: [
72
71
  {
73
72
  type: 'title',
74
- text: 'Сколько в вас действительно «вашего»? Наука об обновлении клеток',
73
+ text: 'Сколько в вас действительно "вашего"? Наука об обновлении клеток',
75
74
  level: 2,
76
75
  },
77
76
  {
78
77
  type: 'paragraph',
79
- html: 'Ваше тело это река в постоянном движении. Каждую секунду миллионы клеток умирают и заменяются новыми. За семь лет практически каждый атом в вашем теле будет заменен. Однако эта статистика глубоко вводит в заблуждение, потому что разные части вашего организма обновляются с радикально разной скоростью.',
78
+ html: 'Ваше тело - это река в постоянном движении. Каждую секунду миллионы клеток умирают и заменяются новыми. За семь лет практически каждый атом в вашем теле будет заменен. Однако эта статистика глубоко вводит в заблуждение, потому что разные части вашего организма обновляются с радикально разной скоростью.',
80
79
  },
81
80
  {
82
81
  type: 'paragraph',
83
- html: 'Этот парадокс, известный как <strong>Парадокс корабля Тесея</strong>, ставит древний вопрос: если заменить все части чего-либо, останется ли оно прежним? В вашем случае это буквальный вопрос. Атомы, из которых сегодня состоит ваше тело, не те же самые, что были там 10 лет назад, но <em>вы</em> все еще вы.',
82
+ html: 'Этот парадокс, известный как <strong>Парадокс корабля Тесея</strong>, ставит древний вопрос: если заменить все части чего-либо, останется ли оно прежним? В вашем случае это буквальный вопрос. Атомы, из которых сегодня состоит ваше тело, - не те же самые, что были там 10 лет назад, но <em>вы</em> все еще вы.',
84
83
  },
85
84
  {
86
85
  type: 'title',
@@ -95,10 +94,10 @@ export const content: ToolLocaleContent = {
95
94
  type: 'table',
96
95
  headers: ['Ткань', 'Средняя жизнь клеток', 'Полное обновление', 'Описание'],
97
96
  rows: [
98
- ['<strong>Кровь</strong>', '120 дней', '4 месяца', 'Эритроциты рекордсмены скорости. Ваш костный мозг производит 200 миллиардов клеток ежедневно.'],
97
+ ['<strong>Кровь</strong>', '120 дней', '4 месяца', 'Эритроциты - рекордсмены скорости. Ваш костный мозг производит 200 миллиардов клеток ежедневно.'],
99
98
  ['<strong>Кожа</strong>', '2-4 недели', '1 месяц', 'Чрезвычайно быстрое обновление. Вы теряете около 30 000 клеток кожи в минуту.'],
100
99
  ['<strong>Кости</strong>', '10 лет', 'Десятилетие', 'Скелет более консервативен. Тем не менее, через 10 лет вы практически полностью обновите свой скелет.'],
101
- ['<strong>Органы</strong>', '15 лет', '1,5 десятилетия', 'Печень обновляется за месяцы. Сердце за годы. Мозаика ритмов.'],
100
+ ['<strong>Органы</strong>', '15 лет', '1,5 десятилетия', 'Печень обновляется за месяцы. Сердце - за годы. Мозаика ритмов.'],
102
101
  ['<strong>Мозг</strong>', '80+ лет (нейроны)', 'Почти никогда', 'Ваши корковые нейроны с вами с рождения. Но глия (вспомогательные клетки) обновляется.'],
103
102
  ],
104
103
  },
@@ -135,41 +134,20 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  {
137
136
  type: 'title',
138
- text: 'Философские выводы: идентичность это информация, а не материя',
137
+ text: 'Философские выводы: идентичность - это информация, а не материя',
139
138
  level: 3,
140
139
  },
141
140
  {
142
141
  type: 'paragraph',
143
- html: 'Если ваше тело полностью обновляется каждое десятилетие, почему это все еще «вы»? Ответ заключается в том, что идентичность заключается не в конкретных атомах, а в <strong>информационном паттерне</strong>, который эти атомы удерживают. Вы подобны песне: вибрирует не тот же самый воздух, но мелодия сохраняется.',
142
+ html: 'Если ваше тело полностью обновляется каждое десятилетие, почему это все еще "вы"? Ответ заключается в том, что идентичность заключается не в конкретных атомах, а в <strong>информационном паттерне</strong>, который эти атомы удерживают. Вы подобны песне: вибрирует не тот же самый воздух, но мелодия сохраняется.',
144
143
  },
145
144
  {
146
145
  type: 'paragraph',
147
- html: 'Это имеет глубокие последствия: ваше тело это процесс, а не вещь. Вы самоорганизующийся паттерн, который сохраняется в изменениях. Вы не владеете атомами; вы структура, которая временно направляет их.',
146
+ html: 'Это имеет глубокие последствия: ваше тело - это процесс, а не вещь. Вы - самоорганизующийся паттерн, который сохраняется в изменениях. Вы не владеете атомами; вы - структура, которая временно направляет их.',
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). Распределение клеточного оборота в организме человека. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). Ретроспективное определение даты рождения клеток у людей. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). Оценка количества клеток в организме человека. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Стэнфордская философская энциклопедия: Корабль Тесея и личная идентичность.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Классификация клеток и тканей по скорости их деления. В Обновлении жизни.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Stämmer. Linsceller bildas under fosterutvecklingen och behålls livet ut. Vid 100 års ålder kan de centrala cellerna i din lins vara desamma som när du låg i livmodern. Det är en biologisk tidskapsel.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Vanliga frågor',
55
- bibliographyTitle: 'Bibliografi',
56
55
  ui: {
57
56
  copied: 'Kopierad',
58
57
  noHistory: 'Ingen historik',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., et al. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., et al. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Stanford Encyclopedia of Philosophy: The Ship of Theseus and Personal Identity.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: 'Doğru. Mercek hücreleri embriyonik gelişim sırasında yerleşir ve ömür boyu korunur. 100 yaşında, merceğinizin merkezi hücreleri anne karnındakiyle aynı olabilir. Bu biyolojik bir zaman kapsülüdür.',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: 'Sıkça Sorulan Sorular',
55
- bibliographyTitle: 'Kaynakça',
56
55
  ui: {
57
56
  copied: 'Kopyalandı',
58
57
  noHistory: 'Geçmiş yok',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). The distribution of cellular turnover in the human body. Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., ve ark. (2005). Retrospective birth dating of cells in humans. Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., ve ark. (2013). An estimation of the number of cells in the human body. Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: 'Stanford Felsefe Ansiklopedisi: Theseus\'un Gemisi ve Kişisel Kimlik.',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). Classification of cell and tissue by the rate of their division. In Renewal of Life.',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -1,6 +1,6 @@
1
1
  const slug = 'cellular-renewal-calculator';
2
- const description = '计算自出生以来你身体更新的百分比。基于器官、骨骼和组织的细胞分裂率进行估算。让“忒修斯之船”悖论变得触手可及。';
3
- const title = '细胞更新计算器:最初的“你”还剩下多少?';
2
+ const description = '计算自出生以来你身体更新的百分比。基于器官、骨骼和组织的细胞分裂率进行估算。让"忒修斯之船"悖论变得触手可及。';
3
+ const title = '细胞更新计算器:最初的"你"还剩下多少?';
4
4
  const howTo = [
5
5
  {
6
6
  name: '调整你的年龄',
@@ -8,7 +8,7 @@ const howTo = [
8
8
  },
9
9
  {
10
10
  name: '观察核心百分比',
11
- text: '中间的大数字显示了你当前物质中有多少百分比是“新的”(自出生以来更新的部分)。',
11
+ text: '中间的大数字显示了你当前物质中有多少百分比是"新的"(自出生以来更新的部分)。',
12
12
  },
13
13
  {
14
14
  name: '分析进度条',
@@ -21,20 +21,20 @@ const howTo = [
21
21
  ];
22
22
  const faq = [
23
23
  {
24
- question: '到底什么是“细胞更新”?',
24
+ question: '到底什么是"细胞更新"?',
25
25
  answer: '这是一种自然过程,衰老或受损的细胞通过凋亡死亡,并由通过有丝分裂产生的新细胞取代。这个过程对于维持组织功能和修复损伤至关重要。',
26
26
  },
27
27
  {
28
28
  question: '为什么大脑更新如此缓慢?',
29
- answer: '大脑皮层的神经元产生于出生前,通常不会再分裂。这提供了神经系统的稳定性:你的基本“布线”保持不变。然而,神经胶质(支持)细胞确实会更新。记忆存储在连接中,而非原子中。',
29
+ answer: '大脑皮层的神经元产生于出生前,通常不会再分裂。这提供了神经系统的稳定性:你的基本"布线"保持不变。然而,神经胶质(支持)细胞确实会更新。记忆存储在连接中,而非原子中。',
30
30
  },
31
31
  {
32
- question: '每 7 年我们就变成“全新的人”是真的吗?',
32
+ question: '每 7 年我们就变成"全新的人"是真的吗?',
33
33
  answer: '这是一种简化,并不准确。你的血液在 4 个月内更新,皮肤在一个月内,骨架在 10 年内。你的大脑基本保持不变。7 年这个数字具有历史意义(亚里士多德提到过),但在生物学上是一个不精确的平均值。',
34
34
  },
35
35
  {
36
36
  question: '如果我的身体 99% 是新的,我依然是同一个人吗?',
37
- answer: '是的。身份是信息、意识和记忆的连续性,而非原子的连续性。你如同一条河:水流不断更替,但河依然是那条河。“忒修斯之船”悖论表明,身份存在于模式中,而非物质中。',
37
+ answer: '是的。身份是信息、意识和记忆的连续性,而非原子的连续性。你如同一条河:水流不断更替,但河依然是那条河。"忒修斯之船"悖论表明,身份存在于模式中,而非物质中。',
38
38
  },
39
39
  {
40
40
  question: '哪些组织更新最快?',
@@ -45,14 +45,13 @@ const faq = [
45
45
  answer: '正确。晶状体细胞是在胚胎发育期间沉积的并伴随终身。在 100 岁时,你晶状体中心的细胞可能和你还在子宫里时一样。它是一个生物时间胶囊。',
46
46
  },
47
47
  ];
48
+ import { bibliography } from '../bibliography';
48
49
  import type { ToolLocaleContent } from '../../../types';
49
50
 
50
51
  export const content: ToolLocaleContent = {
51
52
  slug,
52
53
  title,
53
54
  description,
54
- faqTitle: '常见问题',
55
- bibliographyTitle: '参考文献',
56
55
  ui: {
57
56
  copied: '已复制',
58
57
  noHistory: '无历史记录',
@@ -71,7 +70,7 @@ export const content: ToolLocaleContent = {
71
70
  seo: [
72
71
  {
73
72
  type: 'title',
74
- text: '你身体里有多少东西真正属于“你”?细胞更新的科学',
73
+ text: '你身体里有多少东西真正属于"你"?细胞更新的科学',
75
74
  level: 2,
76
75
  },
77
76
  {
@@ -140,7 +139,7 @@ export const content: ToolLocaleContent = {
140
139
  },
141
140
  {
142
141
  type: 'paragraph',
143
- html: '如果你的身体每十年都是全新的,为什么它还是“你”?答案是身份不在于特定的原子,而在于这些原子所承载的<strong>信息模式</strong>。你就如同一首歌:振动的空气已不相同,但旋律依然存在。',
142
+ html: '如果你的身体每十年都是全新的,为什么它还是"你"?答案是身份不在于特定的原子,而在于这些原子所承载的<strong>信息模式</strong>。你就如同一首歌:振动的空气已不相同,但旋律依然存在。',
144
143
  },
145
144
  {
146
145
  type: 'paragraph',
@@ -148,28 +147,7 @@ export const content: ToolLocaleContent = {
148
147
  },
149
148
  ],
150
149
  faq,
151
- bibliography: [
152
- {
153
- name: 'Sender, R., & Milo, R. (2021). 人体细胞周转的分布。Nature Medicine, 27(1), 45-48.',
154
- url: 'https://www.nature.com/articles/s41591-020-01182-9',
155
- },
156
- {
157
- name: 'Spalding, K. L., 等 (2005). 人类细胞的回溯性年龄测定。Cell, 122(1), 133-143.',
158
- url: 'https://pubmed.ncbi.nlm.nih.gov/16023133/',
159
- },
160
- {
161
- name: 'Bianconi, E., 等 (2013). 人体细胞数量的估算。Annals of Human Biology, 40(6), 463-471.',
162
- url: 'https://pubmed.ncbi.nlm.nih.gov/23829164/',
163
- },
164
- {
165
- name: '斯坦福哲学百科全书:忒修斯之船与个人身份。',
166
- url: 'https://plato.stanford.edu/entries/identity-relative/',
167
- },
168
- {
169
- name: 'Leblond, C. P. (1964). 根据分裂速度对细胞和组织进行分类。见《生命的更新》。',
170
- url: 'https://en.wikipedia.org/wiki/Cellular_renewal',
171
- },
172
- ],
150
+ bibliography,
173
151
  howTo,
174
152
 
175
153
  schemas: [
@@ -205,3 +183,4 @@ export const content: ToolLocaleContent = {
205
183
  },
206
184
  ],
207
185
  };
186
+
@@ -1,4 +1,5 @@
1
1
  import { cellularRenewal } from './entry';
2
+ import type { ToolDefinition } from '../../types';
2
3
  export * from './entry';
3
4
  export const CELLULAR_RENEWAL_TOOL: ToolDefinition = {
4
5
  entry: cellularRenewal,
@@ -9,6 +9,7 @@ interface Props {
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
11
  const content = await cellularRenewal.i18n[locale]?.();
12
+ if (!content) return null;
12
13
  ---
13
14
 
14
- {content && <SEORenderer content={{ sections: content.seo, locale }} />}
15
+ {content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}