@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
@@ -1,5 +1,5 @@
1
1
  ---
2
- import { Bibliography } from '@jjlmoya/utils-shared';
2
+ import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
3
3
  import { colonyCounter } from './index';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
11
11
  const content = await colonyCounter.i18n[locale]?.();
12
12
  ---
13
13
 
14
- {content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
14
+ {content && <SharedBibliography links={content.bibliography} />}
@@ -0,0 +1,12 @@
1
+ import type { BibliographyEntry } from '../../types';
2
+
3
+ export const bibliography: BibliographyEntry[] = [
4
+ {
5
+ name: 'FDA - Bacteriological Analytical Manual',
6
+ url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
7
+ },
8
+ {
9
+ name: 'ISO 4833 - Colony Count Technique',
10
+ url: 'https://www.iso.org/standard/53728.html',
11
+ },
12
+ ];
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'In der Standardmikrobiologie gilt eine Platte als zu dicht besiedelt (Too Numerous To Count, TNTC), wenn sie mehr als 250-300 Kolonien aufweist. Die Daten sind dann aufgrund der Konkurrenz zwischen den Kolonien unzuverlässig.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'kolonienzaehler';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Häufig gestellte Fragen',
48
- bibliographyTitle: 'Literaturhinweise',
49
48
  ui: {
50
49
  uploadTitle: 'Klicken Sie hier, um Ihre Petri-Schale hochzuladen',
51
50
  uploadSubtitle: 'Laden Sie ein Foto Ihrer Schale hoch und beginnen Sie mit der Zählung der Kolonien',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'In standard microbiology, if there are more than 250-300 colonies, the plate is considered too crowded (Too Numerous To Count, TNTC) and the data is unreliable due to colony competition.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'colony-counter';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Frequently Asked Questions',
48
- bibliographyTitle: 'Bibliographic References',
49
48
  ui: {
50
49
  uploadTitle: 'Click to upload your Petri dish',
51
50
  uploadSubtitle: 'Upload a photo of your plate and start counting colonies',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'En microbiología estándar, si hay más de 250-300 colonias, la placa se considera demasiado poblada (Too Numerous To Count, TNTC) y los datos no son fiables debido a la competencia entre colonias.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'contador-colonias';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Preguntas Frecuentes',
48
- bibliographyTitle: 'Referencias Bibliográficas',
49
48
  ui: {
50
49
  uploadTitle: 'Haz clic para subir tu placa de Petri',
51
50
  uploadSubtitle: 'Sube una foto de tu placa y empieza a contar colonias',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'En microbiologie standard, s\'il y a plus de 250-300 colonies, la boîte est considérée comme trop peuplée (Trop Nombreuses à Compter, TNTC) et les données ne sont pas fiables en raison de la concurrence entre colonies.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'compteur-colonies';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Questions Fréquemment Posées',
48
- bibliographyTitle: 'Références Bibliographiques',
49
48
  ui: {
50
49
  uploadTitle: 'Cliquez pour télécharger votre boîte de Pétri',
51
50
  uploadSubtitle: 'Téléchargez une photo de votre boîte et commencez à compter les colonies',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Technique de Comptage des Colonies',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'Dalam standar mikrobiologi, jika terdapat lebih dari 250-300 koloni, cawan tersebut dianggap terlalu padat (Too Numerous To Count, TNTC) dan datanya tidak dapat diandalkan karena adanya kompetisi koloni.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'penghitung-koloni';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Pertanyaan yang Sering Diajukan',
48
- bibliographyTitle: 'Referensi Bibliografi',
49
48
  ui: {
50
49
  uploadTitle: 'Klik untuk mengunggah cawan Petri Anda',
51
50
  uploadSubtitle: 'Unggah foto cawan Anda dan mulai menghitung koloni',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Manual Analisis Bakteriologis',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Teknik Penghitungan Koloni',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'Nella microbiologia standard, se ci sono più di 250-300 colonie, la piastra è considerata troppo affollata (Too Numerous To Count, TNTC) e i dati sono inattendibili a causa della competizione tra le colonie.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'conta-colonie';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Domande Frequenti',
48
- bibliographyTitle: 'Riferimenti Bibliografici',
49
48
  ui: {
50
49
  uploadTitle: 'Clicca per caricare la tua piastra Petri',
51
50
  uploadSubtitle: 'Carica una foto della tua piastra e inizia a contare le colonie',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: '標準的な微生物学では、コロニーが250〜300個を超える場合、プレートは混みすぎている(Too Numerous To Count, TNTC)とみなされ、コロニー同士の競合によりデータは信頼できなくなります。',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'colony-counter';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'よくある質問',
48
- bibliographyTitle: '参考文献',
49
48
  ui: {
50
49
  uploadTitle: 'クリックしてシャーレの画像をアップロード',
51
50
  uploadSubtitle: 'プレートの写真をアップロードしてコロニーのカウントを開始',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - 細菌学的分析マニュアル',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - コロニーカウント技術',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: '표준 미생물학에서 콜로니 수가 250~300개를 초과하면 접시가 너무 혼잡한 것(Too Numerous To Count, TNTC)으로 간주하며, 콜로니 간의 경쟁으로 인해 데이터의 신뢰성이 떨어집니다.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'colony-counter';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: '자주 묻는 질문',
48
- bibliographyTitle: '참고 문헌',
49
48
  ui: {
50
49
  uploadTitle: '클릭하여 페트리 접시 이미지 업로드',
51
50
  uploadSubtitle: '접시 사진을 업로드하고 콜로니 측정을 시작하세요',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - 세균학 분석 매뉴얼',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - 콜로니 측정 기술',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'In de standaard microbiologie wordt een plaat als te vol beschouwd (Too Numerous To Count, TNTC) als er meer dan 250-300 kolonies zijn, en zijn de gegevens onbetrouwbaar vanwege concurrentie tussen de kolonies.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'kolonieteller';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Veelgestelde Vragen',
48
- bibliographyTitle: 'Bibliografische Referenties',
49
48
  ui: {
50
49
  uploadTitle: 'Klik om je petrischaal te uploaden',
51
50
  uploadSubtitle: 'Upload een foto van je plaat en begin met het tellen van kolonies',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'W standardowej mikrobiologii, jeśli na szalce znajduje się więcej niż 250-300 kolonii, uważa się ją za zbyt zagęszczoną (Too Numerous To Count, TNTC), a dane są niewiarygodne z powodu konkurencji między koloniami.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'licznik-kolonii';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Często Zadawane Pytania',
48
- bibliographyTitle: 'Referencje Bibliograficzne',
49
48
  ui: {
50
49
  uploadTitle: 'Kliknij, aby przesłać zdjęcie swojej szalki Petriego',
51
50
  uploadSubtitle: 'Prześlij zdjęcie szalki i zacznij liczyć kolonie',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Przewodnik po Analizie Bakteriologicznej',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Technika Liczenia Kolonii',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'Na microbiologia padrão, se houver mais de 250-300 colónias, a placa é considerada demasiado cheia (Too Numerous To Count, TNTC) e os dados não são fiáveis devido à competição entre as colónias.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'contador-de-colonias';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Perguntas Frequentes',
48
- bibliographyTitle: 'Referências Bibliográficas',
49
48
  ui: {
50
49
  uploadTitle: 'Clique para carregar a sua placa de Petri',
51
50
  uploadSubtitle: 'Carregue uma foto da sua placa e comece a contar as colónias',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -19,7 +19,7 @@ const howTo = [
19
19
  const faq = [
20
20
  {
21
21
  question: 'Что такое подсчет КОЕ?',
22
- answer: 'Колониеобразующие единицы (КОЕ) это показатель, позволяющий оценить количество жизнеспособных бактерий или грибков в образце. Предполагается, что каждая видимая колония выросла из одной клетки или группы клеток.',
22
+ answer: 'Колониеобразующие единицы (КОЕ) - это показатель, позволяющий оценить количество жизнеспособных бактерий или грибков в образце. Предполагается, что каждая видимая колония выросла из одной клетки или группы клеток.',
23
23
  },
24
24
  {
25
25
  question: 'Почему цифровой счетчик лучше ручного подсчета?',
@@ -30,10 +30,11 @@ const faq = [
30
30
  answer: 'Количество подсчитанных колоний умножается на обратный коэффициент разведения. Например, если вы насчитали 30 колоний при разведении 1:100, исходный образец содержит 3000 КОЕ/мл.',
31
31
  },
32
32
  {
33
- question: 'Когда чашка считается «неподлежащей подсчету»?',
34
- answer: 'В стандартной микробиологии, если на чашке более 250300 колоний, она считается слишком плотно заселенной (TNTC Too Numerous To Count), и данные считаются ненадежными из-за конкуренции между колониями.',
33
+ question: 'Когда чашка считается "неподлежащей подсчету"?',
34
+ answer: 'В стандартной микробиологии, если на чашке более 250-300 колоний, она считается слишком плотно заселенной (TNTC - Too Numerous To Count), и данные считаются ненадежными из-за конкуренции между колониями.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'schetchick-koloniy';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Часто задаваемые вопросы',
48
- bibliographyTitle: 'Библиографические ссылки',
49
48
  ui: {
50
49
  uploadTitle: 'Нажмите, чтобы загрузить изображение чашки Петри',
51
50
  uploadSubtitle: 'Загрузите фото вашей чашки и начните подсчет колоний',
@@ -69,7 +68,7 @@ export const content: ToolLocaleContent = {
69
68
  },
70
69
  {
71
70
  type: 'paragraph',
72
- html: 'Подсчет колоний бактерий в чашках Петри это фундаментальный метод микробиологии. Традиционно выполняемый с помощью ручного счетчика и маркера, он часто приводит к ошибкам, когда исследователь сбивается со счета или отмечает одну и ту же колонию дважды. Этот цифровой инструмент исключает такие ошибки и позволяет визуально различать типы колоний.',
71
+ html: 'Подсчет колоний бактерий в чашках Петри - это фундаментальный метод микробиологии. Традиционно выполняемый с помощью ручного счетчика и маркера, он часто приводит к ошибкам, когда исследователь сбивается со счета или отмечает одну и ту же колонию дважды. Этот цифровой инструмент исключает такие ошибки и позволяет визуально различать типы колоний.',
73
72
  },
74
73
  {
75
74
  type: 'title',
@@ -114,7 +113,7 @@ export const content: ToolLocaleContent = {
114
113
  },
115
114
  {
116
115
  type: 'paragraph',
117
- html: 'Идеальный диапазон для ручного подсчета составляет от <strong>30 до 300 колоний</strong> на чашку. Если колоний менее 30, статистическая погрешность слишком велика. Если более 300 колонии начинают сливаться, и их индивидуальное различение становится невозможным.',
116
+ html: 'Идеальный диапазон для ручного подсчета составляет от <strong>30 до 300 колоний</strong> на чашку. Если колоний менее 30, статистическая погрешность слишком велика. Если более 300 - колонии начинают сливаться, и их индивидуальное различение становится невозможным.',
118
117
  },
119
118
  {
120
119
  type: 'title',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA — Руководство по бактериологическому анализу',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 — Метод подсчета колоний',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'Inom standardmikrobiologi anses plattan vara för tät (Too Numerous To Count, TNTC) om det finns fler än 250-300 kolonier, och data blir otillförlitliga på grund av konkurrens mellan kolonierna.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'koloniraknare';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Vanliga frågor',
48
- bibliographyTitle: 'Bibliografiska referenser',
49
48
  ui: {
50
49
  uploadTitle: 'Klicka för att ladda upp din petriskål',
51
50
  uploadSubtitle: 'Ladda upp ett foto av din platta och börja räkna kolonier',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bacteriological Analytical Manual',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Colony Count Technique',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -34,6 +34,7 @@ const faq = [
34
34
  answer: 'Standart mikrobiyolojide, 250-300\'den fazla koloni varsa, kap çok kalabalık (Too Numerous To Count, TNTC) kabul edilir ve koloni rekabeti nedeniyle veriler güvenilir değildir.',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'koloni-sayaci';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: 'Sıkça Sorulan Sorular',
48
- bibliographyTitle: 'Bibliyografik Kaynaklar',
49
48
  ui: {
50
49
  uploadTitle: 'Petri kabınızı yüklemek için tıklayın',
51
50
  uploadSubtitle: 'Kabınızın fotoğrafını yükleyin ve kolonileri saymaya başlayın',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - Bakteriyolojik Analiz El Kitabı',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - Koloni Sayım Tekniği',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -23,17 +23,18 @@ const faq = [
23
23
  },
24
24
  {
25
25
  question: '为什么数字计数器比手动计数更好?',
26
- answer: '数字计数避免了在视觉标记菌落过程中“跟丢进度”的人为错误。此外,我们的工具允许按颜色区分菌落类型,从而简化了混合培养皿的分析。',
26
+ answer: '数字计数避免了在视觉标记菌落过程中"跟丢进度"的人为错误。此外,我们的工具允许按颜色区分菌落类型,从而简化了混合培养皿的分析。',
27
27
  },
28
28
  {
29
29
  question: '如何计算每毫升的 CFU?',
30
30
  answer: '将计得的菌落数乘以稀释倍数。例如,如果您在 1:100 稀释液中数得 30 个菌落,则原始样品含有 3000 CFU/ml。',
31
31
  },
32
32
  {
33
- question: '什么时候培养皿被认为是“不可计数的”?',
33
+ question: '什么时候培养皿被认为是"不可计数的"?',
34
34
  answer: '在标准微生物学中,如果菌落超过 250-300 个,则认为培养皿过于拥挤(多不可计,TNTC),且由于菌落竞争,数据不可靠。',
35
35
  },
36
36
  ];
37
+ import { bibliography } from '../bibliography';
37
38
  import type { ToolLocaleContent } from '../../../types';
38
39
 
39
40
  const slug = 'colony-counter';
@@ -44,8 +45,6 @@ export const content: ToolLocaleContent = {
44
45
  slug,
45
46
  title,
46
47
  description,
47
- faqTitle: '常见问题',
48
- bibliographyTitle: '参考文献',
49
48
  ui: {
50
49
  uploadTitle: '点击上传培养皿图像',
51
50
  uploadSubtitle: '上传培养皿照片并开始计数菌落',
@@ -138,16 +137,7 @@ export const content: ToolLocaleContent = {
138
137
  },
139
138
  ],
140
139
  faq,
141
- bibliography: [
142
- {
143
- name: 'FDA - 微生物分析手册',
144
- url: 'https://www.fda.gov/food/laboratory-methods-food/bacteriological-analytical-manual-bam',
145
- },
146
- {
147
- name: 'ISO 4833 - 菌落计数技术',
148
- url: 'https://www.iso.org/standard/53728.html',
149
- },
150
- ],
140
+ bibliography,
151
141
  howTo,
152
142
 
153
143
  schemas: [
@@ -183,3 +173,4 @@ export const content: ToolLocaleContent = {
183
173
  },
184
174
  ],
185
175
  };
176
+
@@ -1,4 +1,5 @@
1
1
  import { colonyCounter } from './entry';
2
+ import type { ToolDefinition } from '../../types';
2
3
  export * from './entry';
3
4
  export const COLONY_COUNTER_TOOL: ToolDefinition = {
4
5
  entry: colonyCounter,