@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
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Depende de tus creencias sobre el futuro de la computación. Valores bajos (100-1000) asumen limitaciones de recursos. Valores altos (millones) asumen poder computacional prácticamente ilimitado. La mayoría de discusiones científicas usan valores entre 1000 y 1 billón.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Preguntas Frecuentes',
51
- bibliographyTitle: 'Bibliografía',
52
51
  ui: {
53
52
  copied: 'Copiado',
54
53
  noHistory: 'No historial',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -1,6 +1,6 @@
1
1
  const description = 'Analysez si notre réalité est une simulation en utilisant l\'argument du trilemme de Nick Bostrom. Calculez la probabilité existentielle avec 4 paramètres clés.';
2
2
  const slug = 'calculateur-probabilite-simulation';
3
- const title = 'Calculateur de Probabilité de Simulation : Vivez vous dans un univers virtuel ?';
3
+ const title = 'Calculateur de Probabilité de Simulation: Vivez vous dans un univers virtuel ?';
4
4
  const howTo = [
5
5
  {
6
6
  name: 'Ajuster le progrès technologique',
@@ -12,7 +12,7 @@ const howTo = [
12
12
  },
13
13
  {
14
14
  name: 'Évaluer l\'intérêt pour la simulation',
15
- text: 'Si l\'humanité atteignait le niveau post-humain, voudrait-elle créer des simulations de son passé ? Considérez les motivations : recherche scientifique, divertissement, préservation historique.',
15
+ text: 'Si l\'humanité atteignait le niveau post-humain, voudrait-elle créer des simulations de son passé ? Considérez les motivations: recherche scientifique, divertissement, préservation historique.',
16
16
  },
17
17
  {
18
18
  name: 'Interpréter le résultat',
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Cela dépend de vos convictions sur l\'avenir de l\'informatique. Des valeurs faibles (100-1000) supposent des limites de ressources. Des valeurs élevées (millions) supposent une puissance de calcul pratiquement illimitée. La plupart des discussions scientifiques utilisent des valeurs entre 1000 et 1 billion.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Questions Fréquemment Posées',
51
- bibliographyTitle: 'Bibliographie',
52
51
  ui: {
53
52
  copied: 'Copié',
54
53
  noHistory: 'Pas d\'historique',
@@ -65,9 +64,9 @@ export const content: ToolLocaleContent = {
65
64
  nSub: 'Échelle de Simulation',
66
65
  probabilityTitle: 'Probabilité de Simulation',
67
66
  trilemmaResult: 'Verdict du Trilemme',
68
- scenario1: 'Scénario 1 : Extinction',
69
- scenario2: 'Scénario 2 : Désintérêt',
70
- scenario3: 'Scénario 3 : Nous sommes simulés',
67
+ scenario1: 'Scénario 1: Extinction',
68
+ scenario2: 'Scénario 2: Désintérêt',
69
+ scenario3: 'Scénario 3: Nous sommes simulés',
71
70
  fpDescription: 'Probabilité que l\'humanité atteigne la capacité technique de simuler des univers avec conscience.',
72
71
  flDescription: 'Probabilité d\'éviter l\'effondrement (extinction, guerre) avant d\'atteindre le niveau post-humain.',
73
72
  fiDescription: 'Pourcentage de civilisations avancées qui décident de créer des simulations de leurs ancêtres.',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Itu tergantung pada keyakinan Anda tentang masa depan komputasi. Nilai rendah (100-1000) mengasumsikan keterbatasan sumber daya. Nilai tinggi (jutaan) mengasumsikan daya komputasi yang praktis tidak terbatas. Sebagian besar diskusi ilmiah menggunakan nilai antara 1000 dan 1 triliun.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Pertanyaan yang Sering Diajukan',
51
- bibliographyTitle: 'Bibliografi',
52
51
  ui: {
53
52
  copied: 'Disalin',
54
53
  noHistory: 'Tidak ada riwayat',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Dipende dalle tue convinzioni sul futuro dell\'informatica. Valori bassi (100-1000) presuppongono limitazioni delle risorse. Valori alti (milioni) presuppongono una potenza di calcolo praticamente illimitata. La maggior parte delle discussioni scientifiche utilizza valori compresi tra 1000 e 1 trilione.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Domande Frequenti',
51
- bibliographyTitle: 'Bibliografia',
52
51
  ui: {
53
52
  copied: 'Copiato',
54
53
  noHistory: 'Nessuna cronologia',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'コンピュータの未来に対するあなたの信念によります。低い値(100〜1000)はリソースの制限を想定しています。高い値(数百万)は、実質的に無制限の計算能力を想定しています。多くの科学的議論では、1000から1兆の間の値が使用されます。',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'よくある質問',
51
- bibliographyTitle: '参考文献',
52
51
  ui: {
53
52
  copied: 'コピー済み',
54
53
  noHistory: '履歴なし',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: '컴퓨팅의 미래에 대한 당신의 신념에 달려 있습니다. 낮은 값(100~1000)은 자원 제한을 가정한 것이고, 높은 값(수백만 이상)은 사실상 무제한의 컴퓨팅 파워를 가정한 것입니다. 대부분의 과학적 논의에서는 1,000에서 1조 사이의 값을 사용합니다.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: '자주 묻는 질문',
51
- bibliographyTitle: '참고 문헌',
52
51
  ui: {
53
52
  copied: '복사됨',
54
53
  noHistory: '내역 없음',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Het hangt af van je overtuigingen over de toekomst van computing. Lage waarden (100-1000) gaan uit van beperkte middelen. Hoge waarden (miljoenen) gaan uit van praktisch onbeperkte rekenkracht. De meeste wetenschappelijke discussies gebruiken waarden tussen 1000 en 1 biljoen.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Veelgestelde Vragen',
51
- bibliographyTitle: 'Bibliografie',
52
51
  ui: {
53
52
  copied: 'Gekopieerd',
54
53
  noHistory: 'Geen geschiedenis',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'To zależy od Twoich przekonań na temat przyszłości informatyki. Niskie wartości (100-1000) zakładają ograniczenia zasobów. Wysokie wartości (miliony) zakładają praktycznie nieograniczoną moc obliczeniową. Większość dyskusji naukowych operuje na wartościach między 1000 a 1 bilionem.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Często Zadawane Pytania',
51
- bibliographyTitle: 'Bibliografia',
52
51
  ui: {
53
52
  copied: 'Skopiowano',
54
53
  noHistory: 'Brak historii',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Depende das suas crenças sobre o futuro da computação. Valores baixos (100-1000) assumem limitações de recursos. Valores altos (milhões) assumem um poder de computação praticamente ilimitado. A maioria das discussões científicas utiliza valores entre 1000 e 1 bilião.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Perguntas Frequentes',
51
- bibliographyTitle: 'Bibliografia',
52
51
  ui: {
53
52
  copied: 'Copiado',
54
53
  noHistory: 'Sem histórico',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -4,7 +4,7 @@ const title = 'Калькулятор вероятности симуляции:
4
4
  const howTo = [
5
5
  {
6
6
  name: 'Настройте технологический прогресс',
7
- text: 'Оцените вероятность того, что человечество достигнет постчеловеческого уровня. 50% нейтрально; увеличивайте, если верите, что ИИ и вычисления продолжат расти экспоненциально.',
7
+ text: 'Оцените вероятность того, что человечество достигнет постчеловеческого уровня. 50% - нейтрально; увеличивайте, если верите, что ИИ и вычисления продолжат расти экспоненциально.',
8
8
  },
9
9
  {
10
10
  name: 'Установите выживаемость',
@@ -29,26 +29,25 @@ const faq = [
29
29
  answer: 'Нет. Высокие вероятности говорят о том, что это серьезная возможность, которую следует учитывать, но это не доказательство. Аргумент основан на предположениях о будущем технологий, которые могут и не реализоваться.',
30
30
  },
31
31
  {
32
- question: 'Как бы на нас повлияло знание того, что мы симуляция?',
32
+ question: 'Как бы на нас повлияло знание того, что мы - симуляция?',
33
33
  answer: 'Философски многие утверждают, что это ничего не меняет по существу. Если вы и ваши близкие симулируетесь вместе, ваши переживания, эмоции и отношения остаются реальными и ощущаемыми. Важен прожитый опыт, а не субстрат.',
34
34
  },
35
35
  {
36
36
  question: 'Есть ли научные доказательства того, что мы в симуляции?',
37
- answer: 'Убедительных доказательств нет. Некоторые физики указывают на аномалии в квантовой механике (квантование, запутанность) как на возможные «вычислительные оптимизации», но это лишь спекулятивные интерпретации.',
37
+ answer: 'Убедительных доказательств нет. Некоторые физики указывают на аномалии в квантовой механике (квантование, запутанность) как на возможные "вычислительные оптимизации", но это лишь спекулятивные интерпретации.',
38
38
  },
39
39
  {
40
- question: 'Какое значение мне следует присвоить «N» (масштабу симуляции)?',
41
- answer: 'Это зависит от ваших убеждений о будущем вычислительной техники. Низкие значения (1001000) предполагают ограниченность ресурсов. Высокие значения (миллионы) предполагают практически неограниченную вычислительную мощность. В большинстве научных дискуссий используются значения от 1000 до 1 триллиона.',
40
+ question: 'Какое значение мне следует присвоить "N" (масштабу симуляции)?',
41
+ answer: 'Это зависит от ваших убеждений о будущем вычислительной техники. Низкие значения (100-1000) предполагают ограниченность ресурсов. Высокие значения (миллионы) предполагают практически неограниченную вычислительную мощность. В большинстве научных дискуссий используются значения от 1000 до 1 триллиона.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Часто задаваемые вопросы',
51
- bibliographyTitle: 'Библиография',
52
51
  ui: {
53
52
  copied: 'Скопировано',
54
53
  noHistory: 'История пуста',
@@ -82,7 +81,7 @@ export const content: ToolLocaleContent = {
82
81
  },
83
82
  {
84
83
  type: 'paragraph',
85
- html: 'Идея о том, что наша реальность может быть искусственной конструкцией, чрезвычайно продвинутой компьютерной симуляцией, прошла путь от научной фантастики до серьезных философских и научных дебатов. В 2003 году философ Ник Бостром из Оксфордского университета опубликовал статью под названием <em>«Живете ли вы в компьютерной симуляции?»</em>, где предложил аргумент трилеммы, бросающий вызов нашему восприятию бытия.',
84
+ html: 'Идея о том, что наша реальность может быть искусственной конструкцией, чрезвычайно продвинутой компьютерной симуляцией, прошла путь от научной фантастики до серьезных философских и научных дебатов. В 2003 году философ Ник Бостром из Оксфордского университета опубликовал статью под названием <em>"Живете ли вы в компьютерной симуляции?"</em>, где предложил аргумент трилеммы, бросающий вызов нашему восприятию бытия.',
86
85
  },
87
86
  {
88
87
  type: 'paragraph',
@@ -140,7 +139,7 @@ export const content: ToolLocaleContent = {
140
139
  },
141
140
  {
142
141
  type: 'paragraph',
143
- html: 'От квантовой физики до космологии некоторые ученые ищут «глюки» или пределы в разрешении нашей реальности. Если у вселенной есть минимальная длина (Планковская длина) или поведение, похожее на оптимизацию кода (например, квантовая запутанность), гипотеза находит сторонников в области цифровой физики.',
142
+ html: 'От квантовой физики до космологии некоторые ученые ищут "глюки" или пределы в разрешении нашей реальности. Если у вселенной есть минимальная длина (Планковская длина) или поведение, похожее на оптимизацию кода (например, квантовая запутанность), гипотеза находит сторонников в области цифровой физики.',
144
143
  },
145
144
  {
146
145
  type: 'title',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+
@@ -41,14 +41,13 @@ const faq = [
41
41
  answer: 'Det beror på din övertygelse om datorernas framtid. Låga värden (100-1000) förutsätter resursbegränsningar. Höga värden (miljoner) förutsätter praktiskt taget obegränsad datorkraft. De flesta vetenskapliga diskussioner använder värden mellan 1000 och 1 biljon.',
42
42
  },
43
43
  ];
44
+ import { bibliography } from '../bibliography';
44
45
  import type { ToolLocaleContent } from '../../../types';
45
46
 
46
47
  export const content: ToolLocaleContent = {
47
48
  slug,
48
49
  title,
49
50
  description,
50
- faqTitle: 'Vanliga frågor',
51
- bibliographyTitle: 'Bibliografi',
52
51
  ui: {
53
52
  copied: 'Kopierad',
54
53
  noHistory: 'Ingen historik',
@@ -167,28 +166,7 @@ export const content: ToolLocaleContent = {
167
166
  },
168
167
  ],
169
168
  faq,
170
- bibliography: [
171
- {
172
- name: 'Bostrom, N. (2003). Are You Living in a Computer Simulation? The Philosophical Quarterly, 53(211), 243-255.',
173
- url: 'https://www.nickbostrom.com/sim.html',
174
- },
175
- {
176
- name: 'Chalmers, D. J. (2005). The Matrix as Metaphysics. Science Fiction and Philosophy, 132-142.',
177
- url: 'https://consc.net/papers/matrix.html',
178
- },
179
- {
180
- name: 'Gefter, A. (2014). The Man Who Tried to Redeem the World with Logic: The Life and Work of Kurt Gödel. Nautilus Magazine.',
181
- url: 'https://nautil.us/articles/the-man-who-tried-to-redeem-the-world-with-logic',
182
- },
183
- {
184
- name: 'Tegmark, M. (2014). Our Mathematical Universe: My Quest for the Ultimate Nature of Reality. Knopf.',
185
- url: 'https://space.mit.edu/home/tegmark/mathematical-universe.html',
186
- },
187
- {
188
- name: 'Tyson, N. deG. (2014). Welcome to the Universe: An Astrophysical Tour. Princeton University Press.',
189
- url: 'https://www.haydenplanetarium.org/',
190
- },
191
- ],
169
+ bibliography,
192
170
  howTo,
193
171
 
194
172
  schemas: [
@@ -224,3 +202,4 @@ export const content: ToolLocaleContent = {
224
202
  },
225
203
  ],
226
204
  };
205
+