@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
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Small impacts (like Russia in 2013) happen every decade. Catastrophic impacts (Tunguska-style) every few centuries. A global extinction event like Chicxulub happens approximately every 100 million years.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Frequently Asked Questions',
47
- bibliographyTitle: 'Bibliography',
48
47
  ui: {
49
48
  copied: 'Copied',
50
49
  noHistory: 'No history',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: A Web-based computer program for calculating the regional environmental consequences of a meteoroid impact on Earth.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Impactos pequeños (como el de Rusia en 2013) ocurren cada década. Impactos catastróficos (tipo Tunguska) cada pocos siglos. Un evento de extinción global como Chicxulub ocurre aproximadamente cada 100 millones de años.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Preguntas Frecuentes',
47
- bibliographyTitle: 'Bibliografía',
48
47
  ui: {
49
48
  copied: 'Copiado',
50
49
  noHistory: 'Sin historial',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: A Web-based computer program for calculating the regional environmental consequences of a meteoroid impact on Earth.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -1,5 +1,5 @@
1
1
  const description = 'Simulez l\'impact d\'astéroïdes avec la physique réelle. Calculez l\'énergie, le cratère, les radiations thermiques et l\'onde de choc. Survivriez-vous à Chicxulub ?';
2
- const title = 'Simulateur d\'Impact d\'Astéroïde : Calculateur d\'Apocalypse';
2
+ const title = 'Simulateur d\'Impact d\'Astéroïde: Calculateur d\'Apocalypse';
3
3
  const slug = 'simulateur-impact-asteroide';
4
4
  const howTo = [
5
5
  {
@@ -22,7 +22,7 @@ const howTo = [
22
22
  const faq = [
23
23
  {
24
24
  question: 'Comment l\'énergie d\'un impact est-elle calculée ?',
25
- answer: 'L\'énergie principale est cinétique : (1/2) * masse * vitesse². Nous utilisons des densités réalistes (ex. 3000 kg/m³ pour les astéroïdes rocheux) et des vitesses d\'entrée atmosphérique typiques (11 à 72 km/s). L\'énergie résultante est mesurée en mégatonnes de TNT.',
25
+ answer: 'L\'énergie principale est cinétique: (1/2) * masse * vitesse². Nous utilisons des densités réalistes (ex. 3000 kg/m³ pour les astéroïdes rocheux) et des vitesses d\'entrée atmosphérique typiques (11 à 72 km/s). L\'énergie résultante est mesurée en mégatonnes de TNT.',
26
26
  },
27
27
  {
28
28
  question: 'Qu\'est-ce que l\'onde de choc thermique ?',
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Les petits impacts (comme en Russie en 2013) se produisent chaque décennie. Les impacts catastrophiques (type Tunguska) tous les quelques siècles. Un événement d\'extinction mondiale comme Chicxulub se produit environ tous les 100 millions d\'années.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Questions Fréquemment Posées',
47
- bibliographyTitle: 'Bibliographie',
48
47
  ui: {
49
48
  copied: 'Copié',
50
49
  noHistory: 'Pas d\'historique',
@@ -81,7 +80,7 @@ export const content: ToolLocaleContent = {
81
80
  seo: [
82
81
  {
83
82
  type: 'title',
84
- text: 'Quand le Ciel Tombe : La Physique de l\'Apocalypse Cosmique',
83
+ text: 'Quand le Ciel Tombe: La Physique de l\'Apocalypse Cosmique',
85
84
  level: 2,
86
85
  },
87
86
  {
@@ -95,7 +94,7 @@ export const content: ToolLocaleContent = {
95
94
  },
96
95
  {
97
96
  type: 'paragraph',
98
- html: 'Tout commence par l\'énergie cinétique : <strong>E = ½mv²</strong>. Un astéroïde de 100 mètres voyageant à 20 km/s libère environ 0,5 mégatonne de TNT. Pour comparaison, la bombe d\'Hiroshima était de 0,015 mégatonne.',
97
+ html: 'Tout commence par l\'énergie cinétique: <strong>E = ½mv²</strong>. Un astéroïde de 100 mètres voyageant à 20 km/s libère environ 0,5 mégatonne de TNT. Pour comparaison, la bombe d\'Hiroshima était de 0,015 mégatonne.',
99
98
  },
100
99
  {
101
100
  type: 'paragraph',
@@ -107,7 +106,7 @@ export const content: ToolLocaleContent = {
107
106
  },
108
107
  {
109
108
  type: 'title',
110
- text: 'Anatomie de la Destruction : Les Couches Concentriques de l\'Apocalypse',
109
+ text: 'Anatomie de la Destruction: Les Couches Concentriques de l\'Apocalypse',
111
110
  level: 3,
112
111
  },
113
112
  {
@@ -121,7 +120,7 @@ export const content: ToolLocaleContent = {
121
120
  },
122
121
  {
123
122
  type: 'title',
124
- text: 'Impacts Historiques : Les Leçons du Passé',
123
+ text: 'Impacts Historiques: Les Leçons du Passé',
125
124
  level: 3,
126
125
  },
127
126
  {
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: A Web-based computer program for calculating the regional environmental consequences of a meteoroid impact on Earth.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Dampak kecil (seperti Rusia pada 2013) terjadi setiap dekade. Dampak bencana (gaya Tunguska) terjadi setiap beberapa abad. Peristiwa kepunahan global seperti Chicxulub terjadi sekitar setiap 100 juta tahun.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Pertanyaan yang Sering Diajukan',
47
- bibliographyTitle: 'Bibliografi',
48
47
  ui: {
49
48
  copied: 'Disalin',
50
49
  noHistory: 'Tidak ada riwayat',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., dkk. (2005). Program Efek Dampak Bumi: Sebuah program komputer berbasis web untuk menghitung konsekuensi lingkungan regional dari dampak meteoroid di Bumi.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., dkk. (1997). Gangguan lingkungan yang disebabkan oleh dampak asteroid dan komet. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Dampak pada Bumi oleh asteroid dan komet: menilai bahayanya. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., dkk. (2010). Dampak Asteroid Chicxulub dan Kepunahan Massal di Batas Kapas-Paleogen. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., dkk. (2013). Ledakan udara 500 kiloton di atas Chelyabinsk dan peningkatan bahaya dari penabrak kecil. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Piccoli impatti (come quello in Russia nel 2013) accadono ogni decennio. Impatti catastrofici (stile Tunguska) ogni pochi secoli. Un evento di estinzione globale come Chicxulub accade approssimativamente ogni 100 milioni di anni.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Domande Frequenti',
47
- bibliographyTitle: 'Bibliografia',
48
47
  ui: {
49
48
  copied: 'Copiato',
50
49
  noHistory: 'Nessuna cronologia',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: Un programma computerizzato via web per il calcolo delle conseguenze ambientali regionali dell\'impatto di un meteoroide sulla Terra.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: '小規模な衝突(2013年のロシアのようなもの)は10年ごとに発生します。壊滅的な衝突(ツングースカ級)は数世紀ごとです。チクシュルーブのような地球規模の絶滅イベントは、およそ1億年ごとに発生します。',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'よくある質問',
47
- bibliographyTitle: '参考文献',
48
47
  ui: {
49
48
  copied: 'コピー済み',
50
49
  noHistory: '履歴なし',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: 地球への流星体衝突による地域的な環境への影響を計算するためのWebベースのコンピュータプログラム。',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: '소규모 충돌(2013년 러시아 등)은 10년마다 발생합니다. 대규모 충돌(퉁구스카급)은 수 세기마다 발생합니다. 칙술루브와 같은 전 지구적 멸종 사건은 약 1억 년마다 발생합니다.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: '자주 묻는 질문',
47
- bibliographyTitle: '참고 문헌',
48
47
  ui: {
49
48
  copied: '복사됨',
50
49
  noHistory: '내역 없음',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: 소행성 충돌로 인한 지역적 환경 영향을 계산하기 위한 웹 기반 컴퓨터 프로그램.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Kleine inslagen (zoals in Rusland in 2013) gebeuren elk decennium. Catastrofale inslagen (à la Toengoeska) elke paar eeuwen. Een wereldwijde uitsterving zoals bij Chicxulub gebeurt ongeveer elke 100 miljoen jaar.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Veelgestelde Vragen',
47
- bibliographyTitle: 'Bibliografie',
48
47
  ui: {
49
48
  copied: 'Gekopieerd',
50
49
  noHistory: 'Geen geschiedenis',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: Een web-gebaseerd computerprogramma voor het berekenen van de regionale gevolgen voor het milieu van een meteorietinslag op de aarde.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Małe uderzenia (jak w Rosji w 2013 roku) zdarzają się co dekadę. Katastrofalne uderzenia (w stylu Tunguski) co kilka stuleci. Globalne wymieranie, takie jak po Chicxulub, zdarza się mniej więcej co 100 milionów lat.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Często Zadawane Pytania',
47
- bibliographyTitle: 'Bibliografia',
48
47
  ui: {
49
48
  copied: 'Skopiowano',
50
49
  noHistory: 'Brak historii',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., i in. (2005). Earth Impact Effects Program: Internetowy program komputerowy do obliczania regionalnych skutków środowiskowych uderzenia meteoroidu w Ziemię.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., i in. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., i Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., i in. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., i in. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -37,14 +37,13 @@ const faq = [
37
37
  answer: 'Pequenos impactos (como na Rússia em 2013) acontecem a cada década. Impactos catastróficos (estilo Tunguska) a cada poucos séculos. Um evento de extinção global como Chicxulub acontece aproximadamente a cada 100 milhões de anos.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Perguntas Frequentes',
47
- bibliographyTitle: 'Bibliografia',
48
47
  ui: {
49
48
  copied: 'Copiado',
50
49
  noHistory: 'Sem histórico',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: Um programa de computador baseado na web para calcular as consequências ambientais regionais de um impacto de meteorito na Terra.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+
@@ -4,11 +4,11 @@ const title = 'Симулятор столкновения с астероидо
4
4
  const howTo = [
5
5
  {
6
6
  name: 'Выберите размер объекта',
7
- text: 'Введите диаметр астероида: от небольшого 10-метрового метеорита до 10-километрового «убийцы планет».',
7
+ text: 'Введите диаметр астероида: от небольшого 10-метрового метеорита до 10-километрового "убийцы планет".',
8
8
  },
9
9
  {
10
10
  name: 'Настройте скорость и угол',
11
- text: 'Отрегулируйте скорость сближения и угол входа (45° статистически наиболее вероятное значение).',
11
+ text: 'Отрегулируйте скорость сближения и угол входа (45° - статистически наиболее вероятное значение).',
12
12
  },
13
13
  {
14
14
  name: 'Определите тип астероида',
@@ -34,17 +34,16 @@ const faq = [
34
34
  },
35
35
  {
36
36
  question: 'Какова реальная вероятность столкновения?',
37
- answer: 'Небольшие столкновения (как в России в 2013 году) происходят каждое десятилетие. Катастрофические столкновения (типа Тунгусского) каждые несколько столетий. Глобальное вымирание, подобное Чикшулубу, случается примерно раз в 100 миллионов лет.',
37
+ answer: 'Небольшие столкновения (как в России в 2013 году) происходят каждое десятилетие. Катастрофические столкновения (типа Тунгусского) - каждые несколько столетий. Глобальное вымирание, подобное Чикшулубу, случается примерно раз в 100 миллионов лет.',
38
38
  },
39
39
  ];
40
+ import { bibliography } from '../bibliography';
40
41
  import type { ToolLocaleContent } from '../../../types';
41
42
 
42
43
  export const content: ToolLocaleContent = {
43
44
  slug,
44
45
  title,
45
46
  description,
46
- faqTitle: 'Часто задаваемые вопросы',
47
- bibliographyTitle: 'Библиография',
48
47
  ui: {
49
48
  copied: 'Скопировано',
50
49
  noHistory: 'История пуста',
@@ -86,7 +85,7 @@ export const content: ToolLocaleContent = {
86
85
  },
87
86
  {
88
87
  type: 'paragraph',
89
- html: 'Астероиды это не просто космические булыжники. Это космические пули, летящие со скоростью 20 км/с и способные высвободить больше энергии, чем все ядерное оружие планеты вместе взятое. Этот симулятор переводит абстрактную физику в осязаемые человеческие последствия.',
88
+ html: 'Астероиды - это не просто космические булыжники. Это космические пули, летящие со скоростью 20 км/с и способные высвободить больше энергии, чем все ядерное оружие планеты вместе взятое. Этот симулятор переводит абстрактную физику в осязаемые человеческие последствия.',
90
89
  },
91
90
  {
92
91
  type: 'title',
@@ -135,28 +134,7 @@ export const content: ToolLocaleContent = {
135
134
  },
136
135
  ],
137
136
  faq,
138
- bibliography: [
139
- {
140
- name: 'Collins, G. S., et al. (2005). Earth Impact Effects Program: веб-программа для расчета региональных экологических последствий падения метеороида на Землю.',
141
- url: 'https://impact.ese.ic.ac.uk/ImpactEarth/',
142
- },
143
- {
144
- name: 'Toon, O. B., et al. (1997). Environmental perturbations caused by the impacts of asteroids and comets. Reviews of Geophysics.',
145
- url: 'https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/96RG03038',
146
- },
147
- {
148
- name: 'Chapman, C. R., & Morrison, D. (1994). Impacts on the Earth by asteroids and comets: assessing the hazard. Nature.',
149
- url: 'https://www.nature.com/articles/367033a0',
150
- },
151
- {
152
- name: 'Schulte, P., et al. (2010). The Chicxulub Asteroid Impact and Mass Extinction at the Cretaceous-Paleogene Boundary. Science.',
153
- url: 'https://www.science.org/doi/10.1126/science.1177265',
154
- },
155
- {
156
- name: 'Brown, P., et al. (2013). A 500-kiloton airburst over Chelyabinsk and an enhanced hazard from small impactors. Nature.',
157
- url: 'https://www.nature.com/articles/nature12741',
158
- },
159
- ],
137
+ bibliography,
160
138
  howTo,
161
139
 
162
140
  schemas: [
@@ -192,3 +170,5 @@ export const content: ToolLocaleContent = {
192
170
  },
193
171
  ],
194
172
  };
173
+
174
+