@jjlmoya/utils-science 1.9.0 → 1.11.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 (100) hide show
  1. package/package.json +63 -62
  2. package/src/category/i18n/de.ts +96 -0
  3. package/src/category/i18n/id.ts +96 -0
  4. package/src/category/i18n/it.ts +96 -0
  5. package/src/category/i18n/ja.ts +96 -0
  6. package/src/category/i18n/ko.ts +96 -0
  7. package/src/category/i18n/nl.ts +96 -0
  8. package/src/category/i18n/pl.ts +96 -0
  9. package/src/category/i18n/pt.ts +96 -0
  10. package/src/category/i18n/ru.ts +96 -0
  11. package/src/category/i18n/sv.ts +96 -0
  12. package/src/category/i18n/tr.ts +96 -0
  13. package/src/category/i18n/zh.ts +96 -0
  14. package/src/category/index.ts +12 -0
  15. package/src/tests/i18n_coverage.test.ts +36 -0
  16. package/src/tests/locale_completeness.test.ts +2 -2
  17. package/src/tests/schemas_fulfillment.test.ts +23 -0
  18. package/src/tests/slug_uniqueness.test.ts +81 -0
  19. package/src/tests/title_quality.test.ts +55 -0
  20. package/src/tool/asteroid-impact/component.astro +1 -1
  21. package/src/tool/asteroid-impact/i18n/de.ts +194 -0
  22. package/src/tool/asteroid-impact/i18n/en.ts +75 -38
  23. package/src/tool/asteroid-impact/i18n/es.ts +75 -38
  24. package/src/tool/asteroid-impact/i18n/fr.ts +75 -38
  25. package/src/tool/asteroid-impact/i18n/id.ts +194 -0
  26. package/src/tool/asteroid-impact/i18n/it.ts +194 -0
  27. package/src/tool/asteroid-impact/i18n/ja.ts +194 -0
  28. package/src/tool/asteroid-impact/i18n/ko.ts +194 -0
  29. package/src/tool/asteroid-impact/i18n/nl.ts +194 -0
  30. package/src/tool/asteroid-impact/i18n/pl.ts +194 -0
  31. package/src/tool/asteroid-impact/i18n/pt.ts +194 -0
  32. package/src/tool/asteroid-impact/i18n/ru.ts +194 -0
  33. package/src/tool/asteroid-impact/i18n/sv.ts +194 -0
  34. package/src/tool/asteroid-impact/i18n/tr.ts +194 -0
  35. package/src/tool/asteroid-impact/i18n/zh.ts +194 -0
  36. package/src/tool/asteroid-impact/index.ts +13 -1
  37. package/src/tool/cellular-renewal/i18n/de.ts +207 -0
  38. package/src/tool/cellular-renewal/i18n/en.ts +83 -46
  39. package/src/tool/cellular-renewal/i18n/es.ts +83 -46
  40. package/src/tool/cellular-renewal/i18n/fr.ts +83 -46
  41. package/src/tool/cellular-renewal/i18n/id.ts +207 -0
  42. package/src/tool/cellular-renewal/i18n/it.ts +207 -0
  43. package/src/tool/cellular-renewal/i18n/ja.ts +207 -0
  44. package/src/tool/cellular-renewal/i18n/ko.ts +207 -0
  45. package/src/tool/cellular-renewal/i18n/nl.ts +207 -0
  46. package/src/tool/cellular-renewal/i18n/pl.ts +207 -0
  47. package/src/tool/cellular-renewal/i18n/pt.ts +207 -0
  48. package/src/tool/cellular-renewal/i18n/ru.ts +207 -0
  49. package/src/tool/cellular-renewal/i18n/sv.ts +207 -0
  50. package/src/tool/cellular-renewal/i18n/tr.ts +207 -0
  51. package/src/tool/cellular-renewal/i18n/zh.ts +207 -0
  52. package/src/tool/cellular-renewal/index.ts +13 -1
  53. package/src/tool/colony-counter/i18n/de.ts +185 -0
  54. package/src/tool/colony-counter/i18n/en.ts +69 -35
  55. package/src/tool/colony-counter/i18n/es.ts +69 -35
  56. package/src/tool/colony-counter/i18n/fr.ts +69 -35
  57. package/src/tool/colony-counter/i18n/id.ts +185 -0
  58. package/src/tool/colony-counter/i18n/it.ts +185 -0
  59. package/src/tool/colony-counter/i18n/ja.ts +185 -0
  60. package/src/tool/colony-counter/i18n/ko.ts +185 -0
  61. package/src/tool/colony-counter/i18n/nl.ts +185 -0
  62. package/src/tool/colony-counter/i18n/pl.ts +185 -0
  63. package/src/tool/colony-counter/i18n/pt.ts +185 -0
  64. package/src/tool/colony-counter/i18n/ru.ts +185 -0
  65. package/src/tool/colony-counter/i18n/sv.ts +185 -0
  66. package/src/tool/colony-counter/i18n/tr.ts +185 -0
  67. package/src/tool/colony-counter/i18n/zh.ts +185 -0
  68. package/src/tool/colony-counter/index.ts +12 -0
  69. package/src/tool/microwave-detector/i18n/de.ts +204 -0
  70. package/src/tool/microwave-detector/i18n/en.ts +75 -38
  71. package/src/tool/microwave-detector/i18n/es.ts +75 -38
  72. package/src/tool/microwave-detector/i18n/fr.ts +75 -38
  73. package/src/tool/microwave-detector/i18n/id.ts +204 -0
  74. package/src/tool/microwave-detector/i18n/it.ts +204 -0
  75. package/src/tool/microwave-detector/i18n/ja.ts +204 -0
  76. package/src/tool/microwave-detector/i18n/ko.ts +204 -0
  77. package/src/tool/microwave-detector/i18n/nl.ts +204 -0
  78. package/src/tool/microwave-detector/i18n/pl.ts +204 -0
  79. package/src/tool/microwave-detector/i18n/pt.ts +204 -0
  80. package/src/tool/microwave-detector/i18n/ru.ts +204 -0
  81. package/src/tool/microwave-detector/i18n/sv.ts +204 -0
  82. package/src/tool/microwave-detector/i18n/tr.ts +204 -0
  83. package/src/tool/microwave-detector/i18n/zh.ts +204 -0
  84. package/src/tool/microwave-detector/index.ts +13 -1
  85. package/src/tool/simulation-probability/i18n/de.ts +226 -0
  86. package/src/tool/simulation-probability/i18n/en.ts +79 -42
  87. package/src/tool/simulation-probability/i18n/es.ts +79 -42
  88. package/src/tool/simulation-probability/i18n/fr.ts +79 -42
  89. package/src/tool/simulation-probability/i18n/id.ts +226 -0
  90. package/src/tool/simulation-probability/i18n/it.ts +226 -0
  91. package/src/tool/simulation-probability/i18n/ja.ts +226 -0
  92. package/src/tool/simulation-probability/i18n/ko.ts +226 -0
  93. package/src/tool/simulation-probability/i18n/nl.ts +226 -0
  94. package/src/tool/simulation-probability/i18n/pl.ts +226 -0
  95. package/src/tool/simulation-probability/i18n/pt.ts +226 -0
  96. package/src/tool/simulation-probability/i18n/ru.ts +226 -0
  97. package/src/tool/simulation-probability/i18n/sv.ts +226 -0
  98. package/src/tool/simulation-probability/i18n/tr.ts +226 -0
  99. package/src/tool/simulation-probability/i18n/zh.ts +227 -0
  100. package/src/tool/simulation-probability/index.ts +13 -1
@@ -0,0 +1,185 @@
1
+ const howTo = [
2
+ {
3
+ name: 'Siapkan gambar cawan',
4
+ text: 'Letakkan cawan Petri Anda di atas latar belakang gelap atau gunakan trans-iluminator agar koloni terlihat kontras dengan jelas.',
5
+ },
6
+ {
7
+ name: 'Identifikasi tipe koloni',
8
+ text: 'Gunakan warna penanda yang berbeda untuk mengelompokkan koloni berdasarkan morfologi, warna, atau ukuran.',
9
+ },
10
+ {
11
+ name: 'Tandai setiap koloni',
12
+ text: 'Klik pada setiap koloni yang terlihat. Alat ini secara otomatis memberi nomor pada setiap klik untuk mencegah pengulangan atau terlewatnya koloni.',
13
+ },
14
+ {
15
+ name: 'Hitung konsentrasi akhir',
16
+ text: 'Masukkan volume yang ditanam dan faktor pengenceran untuk mendapatkan hasil akhir dalam CFU/ml atau CFU/g.',
17
+ },
18
+ ];
19
+ const faq = [
20
+ {
21
+ question: 'Apa itu penghitungan CFU?',
22
+ answer: 'Satuan Pembentuk Koloni (CFU) adalah pengukuran yang memperkirakan jumlah bakteri atau sel jamur yang hidup dalam sebuah sampel. Diasumsikan bahwa setiap koloni yang terlihat berasal dari satu sel atau kelompok sel tunggal.',
23
+ },
24
+ {
25
+ question: 'Mengapa penghitung digital lebih baik daripada penghitungan manual?',
26
+ answer: 'Penghitungan digital menghindari kesalahan manusia dalam "kehilangan jejak" saat menandai koloni secara visual. Alat kami juga memungkinkan diferensiasi tipe koloni berdasarkan warna, memfasilitasi analisis cawan campuran.',
27
+ },
28
+ {
29
+ question: 'Bagaimana cara menghitung CFU per mililiter?',
30
+ answer: 'Jumlah koloni yang dihitung dikalikan dengan faktor pengenceran terbalik. Misalnya, jika Anda menghitung 30 koloni dalam pengenceran 1:100, sampel asli mengandung 3000 CFU/ml.',
31
+ },
32
+ {
33
+ question: 'Kapan cawan dianggap "tidak dapat dihitung"?',
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
+ },
36
+ ];
37
+ import type { ToolLocaleContent } from '../../../types';
38
+
39
+ const slug = 'penghitung-koloni';
40
+ const title = 'Penghitung Koloni: Alat Penghitung CFU Digital untuk Cawan Petri';
41
+ const description = 'Alat digital untuk menghitung koloni bakteri pada cawan Petri. Membedakan jenis, menghindari kesalahan, dan menghitung CFU dengan presisi.';
42
+
43
+ export const content: ToolLocaleContent = {
44
+ slug,
45
+ title,
46
+ description,
47
+ faqTitle: 'Pertanyaan yang Sering Diajukan',
48
+ bibliographyTitle: 'Referensi Bibliografi',
49
+ ui: {
50
+ uploadTitle: 'Klik untuk mengunggah cawan Petri Anda',
51
+ uploadSubtitle: 'Unggah foto cawan Anda dan mulai menghitung koloni',
52
+ currentModeLabel: 'Mode Saat Ini',
53
+ typeA: 'Tipe A',
54
+ typeB: 'Tipe B',
55
+ colonyType: 'Tipe Koloni',
56
+ counting: 'Penghitungan',
57
+ totalCFU: 'Total CFU',
58
+ undo: 'Urungkan',
59
+ clearAll: 'Hapus Semua',
60
+ infoClick: 'Klik pada cawan untuk menandai koloni',
61
+ infoChange: 'Ubah tipe sebelum menandai',
62
+ confirmClear: 'Apakah Anda yakin ingin menghapus semua koloni yang ditandai?',
63
+ },
64
+ seo: [
65
+ {
66
+ type: 'title',
67
+ text: 'Mikrobiologi Digital: Penghitungan Koloni yang Presisi',
68
+ level: 2,
69
+ },
70
+ {
71
+ type: 'paragraph',
72
+ html: 'Menghitung koloni bakteri pada cawan Petri adalah teknik dasar dalam mikrobiologi. Secara tradisional dilakukan dengan penghitung manual dan spidol, namun sangat mudah untuk salah hitung atau menandai koloni yang sama dua kali. Alat digital ini menghilangkan kesalahan tersebut dan memungkinkan diferensiasi visual antar tipe koloni.',
73
+ },
74
+ {
75
+ type: 'title',
76
+ text: 'Mengapa Penghitungan Koloni Itu Penting',
77
+ level: 3,
78
+ },
79
+ {
80
+ type: 'paragraph',
81
+ html: 'Jumlah koloni pada cawan berbanding lurus dengan konsentrasi mikroorganisme yang hidup dalam sampel asli. Data ini sangat penting dalam:',
82
+ },
83
+ {
84
+ type: 'list',
85
+ items: [
86
+ '<strong>Kontrol Kualitas Makanan:</strong> Mendeteksi kontaminasi bakteri.',
87
+ '<strong>Penelitian Farmasi:</strong> Mengevaluasi kemanjuran antibiotik.',
88
+ '<strong>Diagnosis Klinis:</strong> Mengukur infeksi dalam sampel pasien.',
89
+ '<strong>Bioteknologi:</strong> Mengoptimalkan kultur produksi untuk protein rekombinan.',
90
+ ],
91
+ },
92
+ {
93
+ type: 'title',
94
+ text: 'Satuan Pembentuk Koloni (CFU)',
95
+ level: 3,
96
+ },
97
+ {
98
+ type: 'paragraph',
99
+ html: 'Setiap koloni yang terlihat pada cawan diasumsikan berasal dari satu sel yang hidup. Itulah sebabnya mereka disebut <strong>CFU</strong> (Colony Forming Units).',
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: '<strong>Rumus Konsentrasi:</strong><br><code>CFU/mL = (Koloni yang Dihitung × Faktor Pengenceran) / Volume yang Ditanam</code>',
104
+ },
105
+ {
106
+ type: 'title',
107
+ text: 'Praktik Terbaik untuk Penghitungan',
108
+ level: 3,
109
+ },
110
+ {
111
+ type: 'title',
112
+ text: 'Rentang yang Dapat Dihitung',
113
+ level: 4,
114
+ },
115
+ {
116
+ type: 'paragraph',
117
+ html: 'Rentang ideal untuk penghitungan manual adalah <strong>30 hingga 300 koloni</strong> per cawan. Di bawah 30, kesalahan statistik terlalu tinggi. Di atas 300, koloni mulai menyatu dan perbedaan individu menjadi tidak mungkin dilakukan.',
118
+ },
119
+ {
120
+ type: 'title',
121
+ text: 'Tipe Koloni',
122
+ level: 4,
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Pada media selektif atau diferensial, umum untuk melihat beberapa morfologi koloni:',
127
+ },
128
+ {
129
+ type: 'list',
130
+ items: [
131
+ '<strong>Tipe A (Teal/Hijau):</strong> Koloni besar berlendir, khas bakteri Gram-negatif yang memfermentasi laktosa.',
132
+ '<strong>Tipe B (Merah Muda/Ungu):</strong> Koloni kecil transparan, non-fermenter.',
133
+ ],
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: 'Alat kami memungkinkan diferensiasi hingga dua tipe koloni dengan warna berbeda, memfasilitasi penghitungan diferensial tanpa memerlukan penanda fisik.',
138
+ },
139
+ ],
140
+ 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
+ ],
151
+ howTo,
152
+
153
+ schemas: [
154
+ {
155
+ '@context': 'https://schema.org',
156
+ '@type': 'SoftwareApplication',
157
+ name: title,
158
+ description: description,
159
+ applicationCategory: 'ScientificApplication',
160
+ operatingSystem: 'Any',
161
+ },
162
+ {
163
+ '@context': 'https://schema.org',
164
+ '@type': 'FAQPage',
165
+ mainEntity: faq.map((item) => ({
166
+ '@type': 'Question',
167
+ name: item.question,
168
+ acceptedAnswer: {
169
+ '@type': 'Answer',
170
+ text: item.answer,
171
+ },
172
+ })),
173
+ },
174
+ {
175
+ '@context': 'https://schema.org',
176
+ '@type': 'HowTo',
177
+ name: title,
178
+ step: howTo.map((step) => ({
179
+ '@type': 'HowToStep',
180
+ name: step.name,
181
+ text: step.text,
182
+ })),
183
+ },
184
+ ],
185
+ };
@@ -0,0 +1,185 @@
1
+ const howTo = [
2
+ {
3
+ name: 'Prepara l\'immagine della piastra',
4
+ text: 'Posiziona la tua piastra Petri su uno sfondo scuro o usa un transilluminatore in modo che le colonie contrastino chiaramente.',
5
+ },
6
+ {
7
+ name: 'Identifica i tipi di colonie',
8
+ text: 'Usa diversi colori di marcatura per raggruppare le colonie per morfologia, colore o dimensione.',
9
+ },
10
+ {
11
+ name: 'Contrassegna ogni colonia',
12
+ text: 'Clicca su ogni colonia visibile. Lo strumento numera automaticamente ogni clic per evitare ripetizioni o omissioni.',
13
+ },
14
+ {
15
+ name: 'Calcola la concentrazione finale',
16
+ text: 'Inserisci il volume inoculato e il fattore di diluizione per ottenere il risultato finale in UFC/ml o UFC/g.',
17
+ },
18
+ ];
19
+ const faq = [
20
+ {
21
+ question: 'Cos\'è il conteggio delle UFC?',
22
+ answer: 'Le Unità Formanti Colonia (UFC) sono una misura che stima il numero di batteri o cellule fungine vitali in un campione. Si presuppone che ogni colonia visibile provenga da una singola cellula o da un gruppo di cellule.',
23
+ },
24
+ {
25
+ question: 'Perché un contatore digitale è migliore del conteggio manuale?',
26
+ answer: 'Il conteggio digitale evita l\'errore umano di "perdere il segno" mentre si contrassegnano visivamente le colonie. Il nostro strumento consente inoltre di differenziare i tipi di colonie per colore, facilitando l\'analisi di piastre miste.',
27
+ },
28
+ {
29
+ question: 'Come si calcolano le UFC per millilitro?',
30
+ answer: 'Il numero di colonie contate viene moltiplicato per l\'inverso del fattore di diluizione. Ad esempio, se si contano 30 colonie in una diluizione 1:100, il campione originale contiene 3000 UFC/ml.',
31
+ },
32
+ {
33
+ question: 'Quando una piastra è considerata "non contabile"?',
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
+ },
36
+ ];
37
+ import type { ToolLocaleContent } from '../../../types';
38
+
39
+ const slug = 'conta-colonie';
40
+ const title = 'Conta Colonie: Strumento Digitale per il Conteggio delle UFC su Piastre Petri';
41
+ const description = 'Strumento digitale per contare le colonie batteriche su piastre Petri. Differenzia i tipi, evita errori e calcola le UFC con precisione.';
42
+
43
+ export const content: ToolLocaleContent = {
44
+ slug,
45
+ title,
46
+ description,
47
+ faqTitle: 'Domande Frequenti',
48
+ bibliographyTitle: 'Riferimenti Bibliografici',
49
+ ui: {
50
+ uploadTitle: 'Clicca per caricare la tua piastra Petri',
51
+ uploadSubtitle: 'Carica una foto della tua piastra e inizia a contare le colonie',
52
+ currentModeLabel: 'Modalità Corrente',
53
+ typeA: 'Tipo A',
54
+ typeB: 'Tipo B',
55
+ colonyType: 'Tipo di Colonia',
56
+ counting: 'Conteggio',
57
+ totalCFU: 'UFC Totali',
58
+ undo: 'Annulla Ultimo',
59
+ clearAll: 'Cancella Tutto',
60
+ infoClick: 'Clicca sulla piastra per contrassegnare le colonie',
61
+ infoChange: 'Cambia tipo prima di contrassegnare',
62
+ confirmClear: 'Sei sicuro di voler cancellare tutte le colonie contrassegnate?',
63
+ },
64
+ seo: [
65
+ {
66
+ type: 'title',
67
+ text: 'Microbiologia Digitale: Conteggio Preciso delle Colonie',
68
+ level: 2,
69
+ },
70
+ {
71
+ type: 'paragraph',
72
+ html: 'Il conteggio delle colonie batteriche su piastre Petri è una tecnica fondamentale in microbiologia. Tradizionalmente eseguita con un contatore manuale e un pennarello, è facile perdere il conto o contrassegnare la stessa colonia due volte. Questo strumento digitale elimina tali errori e consente la differenziazione visiva tra i tipi di colonie.',
73
+ },
74
+ {
75
+ type: 'title',
76
+ text: 'Perché il Conteggio delle Colonie è Importante',
77
+ level: 3,
78
+ },
79
+ {
80
+ type: 'paragraph',
81
+ html: 'Il numero di colonie su una piastra è direttamente proporzionale alla concentrazione di microrganismi vitali nel campione originale. Questi dati sono critici in:',
82
+ },
83
+ {
84
+ type: 'list',
85
+ items: [
86
+ '<strong>Controllo Qualità Alimentare:</strong> Rilevamento di contaminazioni batteriche.',
87
+ '<strong>Ricerca Farmaceutica:</strong> Valutazione dell\'efficacia degli antibiotici.',
88
+ '<strong>Diagnosi Clinica:</strong> Quantificazione delle infezioni nei campioni dei pazienti.',
89
+ '<strong>Biotecnologia:</strong> Ottimizzazione delle colture di produzione per proteine ricombinanti.',
90
+ ],
91
+ },
92
+ {
93
+ type: 'title',
94
+ text: 'Unità Formanti Colonia (UFC)',
95
+ level: 3,
96
+ },
97
+ {
98
+ type: 'paragraph',
99
+ html: 'Si assume che ogni colonia visibile su una piastra provenga da una singola cellula vitale. Ecco perché sono chiamate <strong>UFC</strong> (Unità Formanti Colonia).',
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: '<strong>Formula della Concentrazione:</strong><br><code>UFC/mL = (Colonie Contate × Fattore di Diluizione) / Volume Inoculato</code>',
104
+ },
105
+ {
106
+ type: 'title',
107
+ text: 'Migliori Pratiche per il Conteggio',
108
+ level: 3,
109
+ },
110
+ {
111
+ type: 'title',
112
+ text: 'Intervallo di Conteggio',
113
+ level: 4,
114
+ },
115
+ {
116
+ type: 'paragraph',
117
+ html: 'L\'intervallo ideale per il conteggio manuale è compreso tra <strong>30 e 300 colonie</strong> per piastra. Al di sotto di 30, l\'errore statistico è troppo elevato. Al di sopra di 300, le colonie iniziano a fondersi e la distinzione individuale diventa impossibile.',
118
+ },
119
+ {
120
+ type: 'title',
121
+ text: 'Tipi di Colonie',
122
+ level: 4,
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Sui terreni selettivi o differenziali, è comune osservare diverse morfologie di colonie:',
127
+ },
128
+ {
129
+ type: 'list',
130
+ items: [
131
+ '<strong>Tipo A (Verde acqua/Verde):</strong> Colonie grandi e mucoidi, tipiche dei batteri Gram-negativi fermentanti il lattosio.',
132
+ '<strong>Tipo B (Rosa/Viola):</strong> Colonie piccole e traslucide, non fermentanti.',
133
+ ],
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: 'Il nostro strumento consente di differenziare fino a due tipi di colonie con colori distinti, facilitando il conteggio differenziale senza la necessità di marcatori fisici.',
138
+ },
139
+ ],
140
+ 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
+ ],
151
+ howTo,
152
+
153
+ schemas: [
154
+ {
155
+ '@context': 'https://schema.org',
156
+ '@type': 'SoftwareApplication',
157
+ name: title,
158
+ description: description,
159
+ applicationCategory: 'ScientificApplication',
160
+ operatingSystem: 'Any',
161
+ },
162
+ {
163
+ '@context': 'https://schema.org',
164
+ '@type': 'FAQPage',
165
+ mainEntity: faq.map((item) => ({
166
+ '@type': 'Question',
167
+ name: item.question,
168
+ acceptedAnswer: {
169
+ '@type': 'Answer',
170
+ text: item.answer,
171
+ },
172
+ })),
173
+ },
174
+ {
175
+ '@context': 'https://schema.org',
176
+ '@type': 'HowTo',
177
+ name: title,
178
+ step: howTo.map((step) => ({
179
+ '@type': 'HowToStep',
180
+ name: step.name,
181
+ text: step.text,
182
+ })),
183
+ },
184
+ ],
185
+ };
@@ -0,0 +1,185 @@
1
+ const howTo = [
2
+ {
3
+ name: 'プレートの画像を準備する',
4
+ text: 'コロニーがはっきりとコントラストを成すように、シャーレを暗い背景に置くか、透過照明装置を使用してください。',
5
+ },
6
+ {
7
+ name: 'コロニータイプを特定する',
8
+ text: '形態、色、またはサイズによってコロニーをグループ化するために、異なるマーカーの色を使用します。',
9
+ },
10
+ {
11
+ name: '各コロニーをマークする',
12
+ text: '目に見える各コロニーをクリックします。ツールは自動的に各クリックに番号を付け、重複や数え漏れを防ぎます。',
13
+ },
14
+ {
15
+ name: '最終濃度を計算する',
16
+ text: '塗抹量と希釈倍率を入力して、CFU/mlまたはCFU/gの最終結果を取得します。',
17
+ },
18
+ ];
19
+ const faq = [
20
+ {
21
+ question: 'CFUカウントとは何ですか?',
22
+ answer: 'コロニー形成単位(CFU)は、サンプル中の生存している細菌や真菌細胞の数を推定する測定値です。目に見える各コロニーは、単一の細胞または細胞のグループから始まったとみなされます。',
23
+ },
24
+ {
25
+ question: 'なぜデジタルカウンターは手動カウントより優れているのですか?',
26
+ answer: 'デジタルカウントは、コロニーを視覚的にマークする際に「どこまで数えたか分からなくなる」というヒューマンエラーを回避します。また、当ツールではコロニータイプを色で区別できるため、混合プレートの分析が容易になります。',
27
+ },
28
+ {
29
+ question: '1ミリリットルあたりのCFUはどのように計算されますか?',
30
+ answer: 'カウントされたコロニー数に希釈倍率の逆数を掛けます。例えば、1:100希釈で30個のコロニーをカウントした場合、元のサンプルには3000 CFU/mlが含まれています。',
31
+ },
32
+ {
33
+ question: 'プレートが「カウント不能」とみなされるのはいつですか?',
34
+ answer: '標準的な微生物学では、コロニーが250〜300個を超える場合、プレートは混みすぎている(Too Numerous To Count, TNTC)とみなされ、コロニー同士の競合によりデータは信頼できなくなります。',
35
+ },
36
+ ];
37
+ import type { ToolLocaleContent } from '../../../types';
38
+
39
+ const slug = 'colony-counter';
40
+ const title = 'コロニーカウンター:シャーレ用デジタルCFUカウントツール';
41
+ const description = 'シャーレ上の細菌コロニーをカウントするためのデジタルツール。タイプの区別、エラーの回避、CFUの正確な計算が可能です。';
42
+
43
+ export const content: ToolLocaleContent = {
44
+ slug,
45
+ title,
46
+ description,
47
+ faqTitle: 'よくある質問',
48
+ bibliographyTitle: '参考文献',
49
+ ui: {
50
+ uploadTitle: 'クリックしてシャーレの画像をアップロード',
51
+ uploadSubtitle: 'プレートの写真をアップロードしてコロニーのカウントを開始',
52
+ currentModeLabel: '現在のモード',
53
+ typeA: 'タイプA',
54
+ typeB: 'タイプB',
55
+ colonyType: 'コロニータイプ',
56
+ counting: 'カウント中',
57
+ totalCFU: '合計CFU',
58
+ undo: '一つ戻る',
59
+ clearAll: 'すべてクリア',
60
+ infoClick: 'プレートをクリックしてコロニーをマーク',
61
+ infoChange: 'マークする前にタイプを変更',
62
+ confirmClear: 'マークされたすべてのコロニーをクリアしてもよろしいですか?',
63
+ },
64
+ seo: [
65
+ {
66
+ type: 'title',
67
+ text: 'デジタル微生物学:正確なコロニーカウント',
68
+ level: 2,
69
+ },
70
+ {
71
+ type: 'paragraph',
72
+ html: 'シャーレ上の細菌コロニーをカウントすることは、微生物学における基本的な技術です。伝統的にはハンドカウンターとマーカーで行われてきましたが、カウントミスや同じコロニーを2回マークしてしまうことが容易に起こります。このデジタルツールはそれらのエラーを排除し、コロニータイプ間の視覚的な区別を可能にします。',
73
+ },
74
+ {
75
+ type: 'title',
76
+ text: 'なぜコロニーカウントが重要なのか',
77
+ level: 3,
78
+ },
79
+ {
80
+ type: 'paragraph',
81
+ html: 'プレート上のコロニー数は、元のサンプル中の生存微生物の濃度に正比例します。このデータは以下の分野で極めて重要です:',
82
+ },
83
+ {
84
+ type: 'list',
85
+ items: [
86
+ '<strong>食品品質管理:</strong> 細菌汚染の検出。',
87
+ '<strong>医薬品研究:</strong> 抗生物質の有効性評価。',
88
+ '<strong>臨床診断:</strong> 患者サンプルの感染症の定量化。',
89
+ '<strong>バイオテクノロジー:</strong> 組換えタンパク質の生産培養の最適化。',
90
+ ],
91
+ },
92
+ {
93
+ type: 'title',
94
+ text: 'コロニー形成単位 (CFU)',
95
+ level: 3,
96
+ },
97
+ {
98
+ type: 'paragraph',
99
+ html: 'プレート上の各目に見えるコロニーは、単一の生存細胞に由来すると想定されます。そのため、これらは<strong>CFU</strong>(Colony Forming Units:コロニー形成単位)と呼ばれます。',
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: '<strong>濃度計算式:</strong><br><code>CFU/mL = (カウントされたコロニー数 × 希釈倍率) / 塗抹量</code>',
104
+ },
105
+ {
106
+ type: 'title',
107
+ text: 'カウントのベストプラクティス',
108
+ level: 3,
109
+ },
110
+ {
111
+ type: 'title',
112
+ text: 'カウント可能な範囲',
113
+ level: 4,
114
+ },
115
+ {
116
+ type: 'paragraph',
117
+ html: '手動カウントの理想的な範囲は、1プレートあたり<strong>30〜300コロニー</strong>です。30未満では統計的誤差が大きすぎます。300を超えると、コロニーが融合し始め、個別の判別が不可能になります。',
118
+ },
119
+ {
120
+ type: 'title',
121
+ text: 'コロニータイプ',
122
+ level: 4,
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: '選択培地や鑑別培地では、複数のコロニー形態が見られるのが一般的です:',
127
+ },
128
+ {
129
+ type: 'list',
130
+ items: [
131
+ '<strong>タイプA (ティール/グリーン):</strong> 大きく粘液状のコロニー。乳糖分解性のグラム陰性菌に典型的。',
132
+ '<strong>タイプB (ピンク/パープル):</strong> 小さく半透明のコロニー。非分解菌。',
133
+ ],
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: '当ツールでは、異なる色の最大2つのコロニータイプを区別できるため、物理的なマーカーを必要とせずに鑑別カウントが容易になります。',
138
+ },
139
+ ],
140
+ 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
+ ],
151
+ howTo,
152
+
153
+ schemas: [
154
+ {
155
+ '@context': 'https://schema.org',
156
+ '@type': 'SoftwareApplication',
157
+ name: title,
158
+ description: description,
159
+ applicationCategory: 'ScientificApplication',
160
+ operatingSystem: 'Any',
161
+ },
162
+ {
163
+ '@context': 'https://schema.org',
164
+ '@type': 'FAQPage',
165
+ mainEntity: faq.map((item) => ({
166
+ '@type': 'Question',
167
+ name: item.question,
168
+ acceptedAnswer: {
169
+ '@type': 'Answer',
170
+ text: item.answer,
171
+ },
172
+ })),
173
+ },
174
+ {
175
+ '@context': 'https://schema.org',
176
+ '@type': 'HowTo',
177
+ name: title,
178
+ step: howTo.map((step) => ({
179
+ '@type': 'HowToStep',
180
+ name: step.name,
181
+ text: step.text,
182
+ })),
183
+ },
184
+ ],
185
+ };