@jjlmoya/utils-forensic-science 1.1.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 (316) hide show
  1. package/package.json +69 -0
  2. package/scripts/crystal-lattice-catalog-translations.mjs +459 -0
  3. package/scripts/postinstall.mjs +27 -0
  4. package/scripts/sync-crystal-lattice-i18n.mjs +50 -0
  5. package/src/category/i18n/de.ts +55 -0
  6. package/src/category/i18n/en.ts +55 -0
  7. package/src/category/i18n/es.ts +55 -0
  8. package/src/category/i18n/fr.ts +55 -0
  9. package/src/category/i18n/id.ts +55 -0
  10. package/src/category/i18n/it.ts +55 -0
  11. package/src/category/i18n/ja.ts +56 -0
  12. package/src/category/i18n/ko.ts +56 -0
  13. package/src/category/i18n/nl.ts +55 -0
  14. package/src/category/i18n/pl.ts +55 -0
  15. package/src/category/i18n/pt.ts +55 -0
  16. package/src/category/i18n/ru.ts +55 -0
  17. package/src/category/i18n/sv.ts +55 -0
  18. package/src/category/i18n/tr.ts +55 -0
  19. package/src/category/i18n/zh.ts +56 -0
  20. package/src/category/index.ts +48 -0
  21. package/src/category/seo.astro +15 -0
  22. package/src/components/PreviewNavSidebar.astro +116 -0
  23. package/src/components/PreviewToolbar.astro +143 -0
  24. package/src/data.ts +10 -0
  25. package/src/entries.ts +48 -0
  26. package/src/env.d.ts +5 -0
  27. package/src/index.ts +29 -0
  28. package/src/layouts/PreviewLayout.astro +117 -0
  29. package/src/pages/[locale]/[slug].astro +162 -0
  30. package/src/pages/[locale].astro +261 -0
  31. package/src/pages/index.astro +3 -0
  32. package/src/tests/diacritics_density.test.ts +140 -0
  33. package/src/tests/faq_count.test.ts +19 -0
  34. package/src/tests/i18n_coverage.test.ts +36 -0
  35. package/src/tests/inverted_punctuation.test.ts +84 -0
  36. package/src/tests/locale_completeness.test.ts +24 -0
  37. package/src/tests/mocks/astro_mock.js +2 -0
  38. package/src/tests/no_en_dash.test.ts +70 -0
  39. package/src/tests/no_h1_in_components.test.ts +48 -0
  40. package/src/tests/schemas_fulfillment.test.ts +23 -0
  41. package/src/tests/script_density.test.ts +94 -0
  42. package/src/tests/seo_length.test.ts +46 -0
  43. package/src/tests/shared-test-helpers.ts +56 -0
  44. package/src/tests/slug_language_code_format.test.ts +23 -0
  45. package/src/tests/slug_uniqueness.test.ts +81 -0
  46. package/src/tests/title_quality.test.ts +55 -0
  47. package/src/tests/tool_exports.test.ts +34 -0
  48. package/src/tests/tool_validation.test.ts +16 -0
  49. package/src/tests/widmark.test.ts +28 -0
  50. package/src/tool/forensic-age-estimator/bibliography.astro +14 -0
  51. package/src/tool/forensic-age-estimator/bibliography.ts +16 -0
  52. package/src/tool/forensic-age-estimator/component.astro +321 -0
  53. package/src/tool/forensic-age-estimator/dental-skeletal-third-molar-age-estimator.css +634 -0
  54. package/src/tool/forensic-age-estimator/entry.ts +32 -0
  55. package/src/tool/forensic-age-estimator/i18n/de.ts +245 -0
  56. package/src/tool/forensic-age-estimator/i18n/en.ts +245 -0
  57. package/src/tool/forensic-age-estimator/i18n/es.ts +245 -0
  58. package/src/tool/forensic-age-estimator/i18n/fr.ts +245 -0
  59. package/src/tool/forensic-age-estimator/i18n/id.ts +245 -0
  60. package/src/tool/forensic-age-estimator/i18n/it.ts +245 -0
  61. package/src/tool/forensic-age-estimator/i18n/ja.ts +245 -0
  62. package/src/tool/forensic-age-estimator/i18n/ko.ts +245 -0
  63. package/src/tool/forensic-age-estimator/i18n/nl.ts +245 -0
  64. package/src/tool/forensic-age-estimator/i18n/pl.ts +245 -0
  65. package/src/tool/forensic-age-estimator/i18n/pt.ts +245 -0
  66. package/src/tool/forensic-age-estimator/i18n/ru.ts +245 -0
  67. package/src/tool/forensic-age-estimator/i18n/sv.ts +245 -0
  68. package/src/tool/forensic-age-estimator/i18n/tr.ts +245 -0
  69. package/src/tool/forensic-age-estimator/i18n/zh.ts +246 -0
  70. package/src/tool/forensic-age-estimator/index.ts +11 -0
  71. package/src/tool/forensic-age-estimator/logic.ts +81 -0
  72. package/src/tool/forensic-age-estimator/seo.astro +15 -0
  73. package/src/tool/forensic-blood-test-simulator/bibliography.astro +6 -0
  74. package/src/tool/forensic-blood-test-simulator/bibliography.ts +12 -0
  75. package/src/tool/forensic-blood-test-simulator/component.astro +168 -0
  76. package/src/tool/forensic-blood-test-simulator/dom-utils.ts +40 -0
  77. package/src/tool/forensic-blood-test-simulator/entry.ts +32 -0
  78. package/src/tool/forensic-blood-test-simulator/forensic-presumptive-blood-testing-luminol-kastle-meyer-simulator.css +532 -0
  79. package/src/tool/forensic-blood-test-simulator/helpers.ts +16 -0
  80. package/src/tool/forensic-blood-test-simulator/i18n/de.ts +185 -0
  81. package/src/tool/forensic-blood-test-simulator/i18n/en.ts +185 -0
  82. package/src/tool/forensic-blood-test-simulator/i18n/es.ts +185 -0
  83. package/src/tool/forensic-blood-test-simulator/i18n/fr.ts +220 -0
  84. package/src/tool/forensic-blood-test-simulator/i18n/id.ts +220 -0
  85. package/src/tool/forensic-blood-test-simulator/i18n/it.ts +220 -0
  86. package/src/tool/forensic-blood-test-simulator/i18n/ja.ts +220 -0
  87. package/src/tool/forensic-blood-test-simulator/i18n/ko.ts +220 -0
  88. package/src/tool/forensic-blood-test-simulator/i18n/nl.ts +220 -0
  89. package/src/tool/forensic-blood-test-simulator/i18n/pl.ts +220 -0
  90. package/src/tool/forensic-blood-test-simulator/i18n/pt.ts +220 -0
  91. package/src/tool/forensic-blood-test-simulator/i18n/ru.ts +220 -0
  92. package/src/tool/forensic-blood-test-simulator/i18n/sv.ts +220 -0
  93. package/src/tool/forensic-blood-test-simulator/i18n/tr.ts +220 -0
  94. package/src/tool/forensic-blood-test-simulator/i18n/zh.ts +220 -0
  95. package/src/tool/forensic-blood-test-simulator/index.ts +11 -0
  96. package/src/tool/forensic-blood-test-simulator/logic.ts +174 -0
  97. package/src/tool/forensic-blood-test-simulator/script.ts +192 -0
  98. package/src/tool/forensic-blood-test-simulator/seo.astro +15 -0
  99. package/src/tool/forensic-fiber-comparison-microscope/bibliography.astro +6 -0
  100. package/src/tool/forensic-fiber-comparison-microscope/bibliography.ts +16 -0
  101. package/src/tool/forensic-fiber-comparison-microscope/component.astro +146 -0
  102. package/src/tool/forensic-fiber-comparison-microscope/entry.ts +32 -0
  103. package/src/tool/forensic-fiber-comparison-microscope/forensic-fiber-comparison-microscope.css +629 -0
  104. package/src/tool/forensic-fiber-comparison-microscope/i18n/de.ts +250 -0
  105. package/src/tool/forensic-fiber-comparison-microscope/i18n/en.ts +246 -0
  106. package/src/tool/forensic-fiber-comparison-microscope/i18n/es.ts +246 -0
  107. package/src/tool/forensic-fiber-comparison-microscope/i18n/fr.ts +246 -0
  108. package/src/tool/forensic-fiber-comparison-microscope/i18n/id.ts +250 -0
  109. package/src/tool/forensic-fiber-comparison-microscope/i18n/it.ts +246 -0
  110. package/src/tool/forensic-fiber-comparison-microscope/i18n/ja.ts +250 -0
  111. package/src/tool/forensic-fiber-comparison-microscope/i18n/ko.ts +246 -0
  112. package/src/tool/forensic-fiber-comparison-microscope/i18n/nl.ts +246 -0
  113. package/src/tool/forensic-fiber-comparison-microscope/i18n/pl.ts +250 -0
  114. package/src/tool/forensic-fiber-comparison-microscope/i18n/pt.ts +250 -0
  115. package/src/tool/forensic-fiber-comparison-microscope/i18n/ru.ts +250 -0
  116. package/src/tool/forensic-fiber-comparison-microscope/i18n/sv.ts +250 -0
  117. package/src/tool/forensic-fiber-comparison-microscope/i18n/tr.ts +246 -0
  118. package/src/tool/forensic-fiber-comparison-microscope/i18n/zh.ts +250 -0
  119. package/src/tool/forensic-fiber-comparison-microscope/index.ts +11 -0
  120. package/src/tool/forensic-fiber-comparison-microscope/logic.ts +244 -0
  121. package/src/tool/forensic-fiber-comparison-microscope/render.ts +265 -0
  122. package/src/tool/forensic-fiber-comparison-microscope/seo.astro +15 -0
  123. package/src/tool/forensic-fiber-comparison-microscope/view.ts +267 -0
  124. package/src/tool/forensic-glass-becke-line-simulator/bibliography.astro +6 -0
  125. package/src/tool/forensic-glass-becke-line-simulator/bibliography.ts +16 -0
  126. package/src/tool/forensic-glass-becke-line-simulator/component.astro +81 -0
  127. package/src/tool/forensic-glass-becke-line-simulator/entry.ts +32 -0
  128. package/src/tool/forensic-glass-becke-line-simulator/forensic-glass-becke-line-simulator.css +392 -0
  129. package/src/tool/forensic-glass-becke-line-simulator/i18n/de.ts +231 -0
  130. package/src/tool/forensic-glass-becke-line-simulator/i18n/en.ts +231 -0
  131. package/src/tool/forensic-glass-becke-line-simulator/i18n/es.ts +231 -0
  132. package/src/tool/forensic-glass-becke-line-simulator/i18n/fr.ts +231 -0
  133. package/src/tool/forensic-glass-becke-line-simulator/i18n/id.ts +231 -0
  134. package/src/tool/forensic-glass-becke-line-simulator/i18n/it.ts +231 -0
  135. package/src/tool/forensic-glass-becke-line-simulator/i18n/ja.ts +231 -0
  136. package/src/tool/forensic-glass-becke-line-simulator/i18n/ko.ts +231 -0
  137. package/src/tool/forensic-glass-becke-line-simulator/i18n/nl.ts +231 -0
  138. package/src/tool/forensic-glass-becke-line-simulator/i18n/pl.ts +231 -0
  139. package/src/tool/forensic-glass-becke-line-simulator/i18n/pt.ts +231 -0
  140. package/src/tool/forensic-glass-becke-line-simulator/i18n/ru.ts +231 -0
  141. package/src/tool/forensic-glass-becke-line-simulator/i18n/sv.ts +231 -0
  142. package/src/tool/forensic-glass-becke-line-simulator/i18n/tr.ts +231 -0
  143. package/src/tool/forensic-glass-becke-line-simulator/i18n/zh.ts +231 -0
  144. package/src/tool/forensic-glass-becke-line-simulator/index.ts +11 -0
  145. package/src/tool/forensic-glass-becke-line-simulator/logic.ts +100 -0
  146. package/src/tool/forensic-glass-becke-line-simulator/seo.astro +15 -0
  147. package/src/tool/forensic-glass-becke-line-simulator/view.ts +281 -0
  148. package/src/tool/forensic-image-authenticity-analyzer/bibliography.astro +9 -0
  149. package/src/tool/forensic-image-authenticity-analyzer/bibliography.ts +7 -0
  150. package/src/tool/forensic-image-authenticity-analyzer/component.astro +250 -0
  151. package/src/tool/forensic-image-authenticity-analyzer/entry.ts +29 -0
  152. package/src/tool/forensic-image-authenticity-analyzer/forensic-image-metadata-authenticity-analyzer.css +679 -0
  153. package/src/tool/forensic-image-authenticity-analyzer/i18n/de.ts +105 -0
  154. package/src/tool/forensic-image-authenticity-analyzer/i18n/en.ts +105 -0
  155. package/src/tool/forensic-image-authenticity-analyzer/i18n/es.ts +105 -0
  156. package/src/tool/forensic-image-authenticity-analyzer/i18n/fr.ts +105 -0
  157. package/src/tool/forensic-image-authenticity-analyzer/i18n/id.ts +76 -0
  158. package/src/tool/forensic-image-authenticity-analyzer/i18n/it.ts +105 -0
  159. package/src/tool/forensic-image-authenticity-analyzer/i18n/ja.ts +72 -0
  160. package/src/tool/forensic-image-authenticity-analyzer/i18n/ko.ts +72 -0
  161. package/src/tool/forensic-image-authenticity-analyzer/i18n/nl.ts +75 -0
  162. package/src/tool/forensic-image-authenticity-analyzer/i18n/pl.ts +75 -0
  163. package/src/tool/forensic-image-authenticity-analyzer/i18n/pt.ts +105 -0
  164. package/src/tool/forensic-image-authenticity-analyzer/i18n/ru.ts +75 -0
  165. package/src/tool/forensic-image-authenticity-analyzer/i18n/sv.ts +76 -0
  166. package/src/tool/forensic-image-authenticity-analyzer/i18n/tr.ts +76 -0
  167. package/src/tool/forensic-image-authenticity-analyzer/i18n/zh.ts +71 -0
  168. package/src/tool/forensic-image-authenticity-analyzer/index.ts +11 -0
  169. package/src/tool/forensic-image-authenticity-analyzer/logic.ts +283 -0
  170. package/src/tool/forensic-image-authenticity-analyzer/seo.astro +10 -0
  171. package/src/tool/forensic-microcrystal-drug-simulator/bibliography.astro +6 -0
  172. package/src/tool/forensic-microcrystal-drug-simulator/bibliography.ts +12 -0
  173. package/src/tool/forensic-microcrystal-drug-simulator/component.astro +240 -0
  174. package/src/tool/forensic-microcrystal-drug-simulator/entry.ts +32 -0
  175. package/src/tool/forensic-microcrystal-drug-simulator/forensic-microcrystal-drug-simulator.css +430 -0
  176. package/src/tool/forensic-microcrystal-drug-simulator/i18n/de.ts +244 -0
  177. package/src/tool/forensic-microcrystal-drug-simulator/i18n/en.ts +244 -0
  178. package/src/tool/forensic-microcrystal-drug-simulator/i18n/es.ts +244 -0
  179. package/src/tool/forensic-microcrystal-drug-simulator/i18n/fr.ts +244 -0
  180. package/src/tool/forensic-microcrystal-drug-simulator/i18n/id.ts +244 -0
  181. package/src/tool/forensic-microcrystal-drug-simulator/i18n/it.ts +244 -0
  182. package/src/tool/forensic-microcrystal-drug-simulator/i18n/ja.ts +244 -0
  183. package/src/tool/forensic-microcrystal-drug-simulator/i18n/ko.ts +244 -0
  184. package/src/tool/forensic-microcrystal-drug-simulator/i18n/nl.ts +244 -0
  185. package/src/tool/forensic-microcrystal-drug-simulator/i18n/pl.ts +244 -0
  186. package/src/tool/forensic-microcrystal-drug-simulator/i18n/pt.ts +244 -0
  187. package/src/tool/forensic-microcrystal-drug-simulator/i18n/ru.ts +244 -0
  188. package/src/tool/forensic-microcrystal-drug-simulator/i18n/sv.ts +244 -0
  189. package/src/tool/forensic-microcrystal-drug-simulator/i18n/tr.ts +244 -0
  190. package/src/tool/forensic-microcrystal-drug-simulator/i18n/zh.ts +244 -0
  191. package/src/tool/forensic-microcrystal-drug-simulator/index.ts +11 -0
  192. package/src/tool/forensic-microcrystal-drug-simulator/logic.ts +189 -0
  193. package/src/tool/forensic-microcrystal-drug-simulator/seo.astro +15 -0
  194. package/src/tool/forensic-sex-determinator/bibliography.astro +14 -0
  195. package/src/tool/forensic-sex-determinator/bibliography.ts +12 -0
  196. package/src/tool/forensic-sex-determinator/component.astro +463 -0
  197. package/src/tool/forensic-sex-determinator/entry.ts +32 -0
  198. package/src/tool/forensic-sex-determinator/forensic-sex-determinator.css +413 -0
  199. package/src/tool/forensic-sex-determinator/i18n/de.ts +211 -0
  200. package/src/tool/forensic-sex-determinator/i18n/en.ts +211 -0
  201. package/src/tool/forensic-sex-determinator/i18n/es.ts +211 -0
  202. package/src/tool/forensic-sex-determinator/i18n/fr.ts +211 -0
  203. package/src/tool/forensic-sex-determinator/i18n/id.ts +211 -0
  204. package/src/tool/forensic-sex-determinator/i18n/it.ts +211 -0
  205. package/src/tool/forensic-sex-determinator/i18n/ja.ts +211 -0
  206. package/src/tool/forensic-sex-determinator/i18n/ko.ts +211 -0
  207. package/src/tool/forensic-sex-determinator/i18n/nl.ts +211 -0
  208. package/src/tool/forensic-sex-determinator/i18n/pl.ts +211 -0
  209. package/src/tool/forensic-sex-determinator/i18n/pt.ts +211 -0
  210. package/src/tool/forensic-sex-determinator/i18n/ru.ts +211 -0
  211. package/src/tool/forensic-sex-determinator/i18n/sv.ts +211 -0
  212. package/src/tool/forensic-sex-determinator/i18n/tr.ts +211 -0
  213. package/src/tool/forensic-sex-determinator/i18n/zh.ts +211 -0
  214. package/src/tool/forensic-sex-determinator/index.ts +11 -0
  215. package/src/tool/forensic-sex-determinator/logic.ts +89 -0
  216. package/src/tool/forensic-sex-determinator/seo.astro +15 -0
  217. package/src/tool/forensic-stature-estimator/bibliography.astro +14 -0
  218. package/src/tool/forensic-stature-estimator/bibliography.ts +12 -0
  219. package/src/tool/forensic-stature-estimator/component.astro +49 -0
  220. package/src/tool/forensic-stature-estimator/components/EstimationPanel.astro +65 -0
  221. package/src/tool/forensic-stature-estimator/components/OsteometricBoard.astro +39 -0
  222. package/src/tool/forensic-stature-estimator/components/OsteometricSelector.astro +109 -0
  223. package/src/tool/forensic-stature-estimator/dom-utils.ts +71 -0
  224. package/src/tool/forensic-stature-estimator/entry.ts +32 -0
  225. package/src/tool/forensic-stature-estimator/forensic-stature-estimator.css +689 -0
  226. package/src/tool/forensic-stature-estimator/helpers.ts +51 -0
  227. package/src/tool/forensic-stature-estimator/i18n/de.ts +196 -0
  228. package/src/tool/forensic-stature-estimator/i18n/en.ts +196 -0
  229. package/src/tool/forensic-stature-estimator/i18n/es.ts +196 -0
  230. package/src/tool/forensic-stature-estimator/i18n/fr.ts +196 -0
  231. package/src/tool/forensic-stature-estimator/i18n/id.ts +196 -0
  232. package/src/tool/forensic-stature-estimator/i18n/it.ts +196 -0
  233. package/src/tool/forensic-stature-estimator/i18n/ja.ts +196 -0
  234. package/src/tool/forensic-stature-estimator/i18n/ko.ts +196 -0
  235. package/src/tool/forensic-stature-estimator/i18n/nl.ts +196 -0
  236. package/src/tool/forensic-stature-estimator/i18n/pl.ts +196 -0
  237. package/src/tool/forensic-stature-estimator/i18n/pt.ts +196 -0
  238. package/src/tool/forensic-stature-estimator/i18n/ru.ts +196 -0
  239. package/src/tool/forensic-stature-estimator/i18n/sv.ts +196 -0
  240. package/src/tool/forensic-stature-estimator/i18n/tr.ts +196 -0
  241. package/src/tool/forensic-stature-estimator/i18n/zh.ts +196 -0
  242. package/src/tool/forensic-stature-estimator/index.ts +11 -0
  243. package/src/tool/forensic-stature-estimator/logic.ts +119 -0
  244. package/src/tool/forensic-stature-estimator/script.ts +288 -0
  245. package/src/tool/forensic-stature-estimator/seo.astro +15 -0
  246. package/src/tool/forensic-tlc-ink-simulator/bibliography.astro +6 -0
  247. package/src/tool/forensic-tlc-ink-simulator/bibliography.ts +16 -0
  248. package/src/tool/forensic-tlc-ink-simulator/component.astro +245 -0
  249. package/src/tool/forensic-tlc-ink-simulator/entry.ts +32 -0
  250. package/src/tool/forensic-tlc-ink-simulator/forensic-tlc-ink-simulator.css +462 -0
  251. package/src/tool/forensic-tlc-ink-simulator/i18n/de.ts +243 -0
  252. package/src/tool/forensic-tlc-ink-simulator/i18n/en.ts +243 -0
  253. package/src/tool/forensic-tlc-ink-simulator/i18n/es.ts +243 -0
  254. package/src/tool/forensic-tlc-ink-simulator/i18n/fr.ts +243 -0
  255. package/src/tool/forensic-tlc-ink-simulator/i18n/id.ts +243 -0
  256. package/src/tool/forensic-tlc-ink-simulator/i18n/it.ts +243 -0
  257. package/src/tool/forensic-tlc-ink-simulator/i18n/ja.ts +235 -0
  258. package/src/tool/forensic-tlc-ink-simulator/i18n/ko.ts +235 -0
  259. package/src/tool/forensic-tlc-ink-simulator/i18n/nl.ts +243 -0
  260. package/src/tool/forensic-tlc-ink-simulator/i18n/pl.ts +243 -0
  261. package/src/tool/forensic-tlc-ink-simulator/i18n/pt.ts +243 -0
  262. package/src/tool/forensic-tlc-ink-simulator/i18n/ru.ts +243 -0
  263. package/src/tool/forensic-tlc-ink-simulator/i18n/sv.ts +243 -0
  264. package/src/tool/forensic-tlc-ink-simulator/i18n/tr.ts +243 -0
  265. package/src/tool/forensic-tlc-ink-simulator/i18n/zh.ts +235 -0
  266. package/src/tool/forensic-tlc-ink-simulator/index.ts +11 -0
  267. package/src/tool/forensic-tlc-ink-simulator/logic.ts +152 -0
  268. package/src/tool/forensic-tlc-ink-simulator/seo.astro +15 -0
  269. package/src/tool/gsr-dispersion-calculator/bibliography.astro +6 -0
  270. package/src/tool/gsr-dispersion-calculator/bibliography.ts +16 -0
  271. package/src/tool/gsr-dispersion-calculator/component.astro +294 -0
  272. package/src/tool/gsr-dispersion-calculator/entry.ts +32 -0
  273. package/src/tool/gsr-dispersion-calculator/gsr-dispersion-calculator.css +305 -0
  274. package/src/tool/gsr-dispersion-calculator/i18n/de.ts +272 -0
  275. package/src/tool/gsr-dispersion-calculator/i18n/en.ts +272 -0
  276. package/src/tool/gsr-dispersion-calculator/i18n/es.ts +272 -0
  277. package/src/tool/gsr-dispersion-calculator/i18n/fr.ts +272 -0
  278. package/src/tool/gsr-dispersion-calculator/i18n/id.ts +272 -0
  279. package/src/tool/gsr-dispersion-calculator/i18n/it.ts +272 -0
  280. package/src/tool/gsr-dispersion-calculator/i18n/ja.ts +272 -0
  281. package/src/tool/gsr-dispersion-calculator/i18n/ko.ts +272 -0
  282. package/src/tool/gsr-dispersion-calculator/i18n/nl.ts +272 -0
  283. package/src/tool/gsr-dispersion-calculator/i18n/pl.ts +272 -0
  284. package/src/tool/gsr-dispersion-calculator/i18n/pt.ts +272 -0
  285. package/src/tool/gsr-dispersion-calculator/i18n/ru.ts +272 -0
  286. package/src/tool/gsr-dispersion-calculator/i18n/sv.ts +272 -0
  287. package/src/tool/gsr-dispersion-calculator/i18n/tr.ts +272 -0
  288. package/src/tool/gsr-dispersion-calculator/i18n/zh.ts +272 -0
  289. package/src/tool/gsr-dispersion-calculator/index.ts +11 -0
  290. package/src/tool/gsr-dispersion-calculator/logic.ts +148 -0
  291. package/src/tool/gsr-dispersion-calculator/seo.astro +15 -0
  292. package/src/tool/widmark-alcohol-simulator/bibliography.astro +14 -0
  293. package/src/tool/widmark-alcohol-simulator/bibliography.ts +12 -0
  294. package/src/tool/widmark-alcohol-simulator/component.astro +453 -0
  295. package/src/tool/widmark-alcohol-simulator/entry.ts +32 -0
  296. package/src/tool/widmark-alcohol-simulator/i18n/de.ts +193 -0
  297. package/src/tool/widmark-alcohol-simulator/i18n/en.ts +206 -0
  298. package/src/tool/widmark-alcohol-simulator/i18n/es.ts +193 -0
  299. package/src/tool/widmark-alcohol-simulator/i18n/fr.ts +193 -0
  300. package/src/tool/widmark-alcohol-simulator/i18n/id.ts +193 -0
  301. package/src/tool/widmark-alcohol-simulator/i18n/it.ts +193 -0
  302. package/src/tool/widmark-alcohol-simulator/i18n/ja.ts +193 -0
  303. package/src/tool/widmark-alcohol-simulator/i18n/ko.ts +193 -0
  304. package/src/tool/widmark-alcohol-simulator/i18n/nl.ts +193 -0
  305. package/src/tool/widmark-alcohol-simulator/i18n/pl.ts +193 -0
  306. package/src/tool/widmark-alcohol-simulator/i18n/pt.ts +193 -0
  307. package/src/tool/widmark-alcohol-simulator/i18n/ru.ts +193 -0
  308. package/src/tool/widmark-alcohol-simulator/i18n/sv.ts +193 -0
  309. package/src/tool/widmark-alcohol-simulator/i18n/tr.ts +193 -0
  310. package/src/tool/widmark-alcohol-simulator/i18n/zh.ts +193 -0
  311. package/src/tool/widmark-alcohol-simulator/index.ts +11 -0
  312. package/src/tool/widmark-alcohol-simulator/logic.ts +97 -0
  313. package/src/tool/widmark-alcohol-simulator/seo.astro +15 -0
  314. package/src/tool/widmark-alcohol-simulator/widmark-alcohol-simulator.css +386 -0
  315. package/src/tools.ts +27 -0
  316. package/src/types.ts +70 -0
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "forensic-science",
5
+ title: "Forensic Science Tools",
6
+ description: "Forensic utilities for structured case triage, transparent calculations, and evidence-aware reporting.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Forensic science tools for evidence-aware calculations and case triage",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "This forensic science tools library is built for practical search intent: users need calculators and structured utilities that help them interpret evidence, document assumptions, and avoid false precision. The focus is not on replacing experts, laboratories, or validated protocols. The focus is on making early case review clearer: what data are available, what the calculation assumes, what the result can support, and where uncertainty remains.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Forensic work often involves high-stakes decisions, so every utility in this category should make limitations visible. A useful forensic calculator should show ranges instead of pretending certainty, separate screening from formal reporting, and help the user identify missing evidence before a conclusion is written.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "What belongs in this forensic utilities category",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "How to use forensic calculators responsibly",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Use these tools as decision-support and explanation aids. They can help students, developers, analysts, and forensic teams understand a method, compare scenarios, or prepare a case note. They should not be treated as final authority for criminal, civil, medical, immigration, safeguarding, or disaster victim identification decisions.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "ciencia-forense",
5
+ title: "Herramientas de ciencia forense",
6
+ description: "Utilidades forenses para triaje estructurado de casos, calculos transparentes e informes conscientes de la evidencia.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Herramientas de ciencia forense para calculos conscientes de la evidencia y triaje de casos",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Esta categoria de herramientas de ciencia forense responde a una intencion de busqueda practica: interpretar evidencia, documentar supuestos y evitar falsa precision. No sustituye a expertos, laboratorios ni protocolos validados; aclara la revision temprana de un caso: que datos existen, que asume el calculo, que puede apoyar el resultado y que incertidumbre permanece.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "El trabajo forense suele afectar decisiones de alto impacto, por eso cada utilidad debe mostrar sus limites. Una calculadora forense util muestra rangos en lugar de fingir certeza, separa cribado de informe formal y ayuda a detectar evidencia faltante antes de escribir una conclusion.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Que pertenece a esta categoria de utilidades forenses",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Como usar calculadoras forenses de forma responsable",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Usa estas herramientas como apoyo a decisiones y explicaciones, no como autoridad final para decisiones penales, civiles, medicas, migratorias, de proteccion o identificacion de victimas.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "science-forensique",
5
+ title: "Outils de science forensique",
6
+ description: "Utilitaires forensiques pour le triage structure des dossiers, les calculs transparents et les rapports attentifs aux preuves.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Outils de science forensique pour calculs fondes sur les preuves et triage des dossiers",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Cette categorie repond a une intention de recherche pratique: interpreter les preuves, documenter les hypotheses et eviter la fausse precision. Elle ne remplace pas les experts, les laboratoires ou les protocoles valides; elle clarifie l examen initial du dossier.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Le travail forensique peut influencer des decisions importantes. Chaque outil doit donc afficher des intervalles, des limites et les donnees manquantes avant toute conclusion formelle.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Ce qui appartient a cette categorie d utilitaires forensiques",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Utiliser les calculateurs forensiques de facon responsable",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Utilisez ces outils comme aides a la decision et a l explication, pas comme autorite finale pour des decisions juridiques, medicales, migratoires, de protection ou d identification.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "ilmu-forensik",
5
+ title: "Alat ilmu forensik",
6
+ description: "Utilitas forensik untuk triase kasus terstruktur, perhitungan transparan, dan pelaporan yang sadar bukti.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Alat ilmu forensik untuk perhitungan sadar bukti dan triase kasus",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Kategori ini dibuat untuk niat pencarian praktis: menafsirkan bukti, mendokumentasikan asumsi, dan menghindari presisi palsu. Kategori ini tidak menggantikan ahli atau protokol tervalidasi; tujuannya membuat tinjauan awal kasus lebih jelas.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Pekerjaan forensik dapat memengaruhi keputusan penting. Karena itu alat harus menampilkan rentang, batasan, dan data yang hilang sebelum kesimpulan ditulis.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Apa yang termasuk kategori utilitas forensik ini",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Menggunakan kalkulator forensik secara bertanggung jawab",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Gunakan alat ini sebagai bantuan keputusan dan penjelasan, bukan sebagai otoritas akhir untuk keputusan hukum, medis, migrasi, perlindungan, atau identifikasi.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "scienza-forense",
5
+ title: "Strumenti di scienza forense",
6
+ description: "Utilita forensi per triage strutturato dei casi, calcoli trasparenti e report consapevoli delle prove.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Strumenti di scienza forense per calcoli basati sulle prove e triage dei casi",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Questa categoria raccoglie calcolatori forensi e utilita strutturate per interpretare prove, documentare ipotesi ed evitare falsa precisione. Non sostituisce esperti o protocolli validati; chiarisce la revisione iniziale dei casi.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Il lavoro forense puo influenzare decisioni importanti. Questi strumenti devono quindi mostrare intervalli, limiti e dati mancanti prima di ogni conclusione.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Cosa appartiene a questa categoria di utilita forensi",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Usare responsabilmente i calcolatori forensi",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Usa questi strumenti come supporto a decisioni e spiegazioni, non come autorita finale per decisioni legali, mediche, migratorie o di identificazione.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,56 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "forensic-science",
5
+ title: "法科学ツール",
6
+ description: "構造化されたケーストリアージ、透明な計算、証拠を意識した報告のための法科学ユーティリティ。",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "証拠を意識した計算とケーストリアージのための法科学ツール",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "このカテゴリは、証拠を解釈し、前提を記録し、見せかけの精密さを避けるための法科学計算機と構造化ツールを集めています。専門家や検証済みプロトコルを置き換えるものではなく、初期のケースレビューを明確にします。",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "法科学の作業は重要な判断に影響します。そのため、結論を書く前に範囲、限界、不足データを示す必要があります。",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "このカテゴリに含まれるもの",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "法科学計算機を責任を持って使う",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "これらのツールは意思決定と説明の補助として使い、法的、医療、移民、身元確認の最終判断として使わないでください。",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
56
+
@@ -0,0 +1,56 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "forensic-science",
5
+ title: "법과학 도구",
6
+ description: "구조화된 사건 분류, 투명한 계산, 증거를 고려한 보고를 위한 법과학 유틸리티.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "증거 기반 계산과 사건 분류를 위한 법과학 도구",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "이 범주는 증거를 해석하고 가정을 문서화하며 거짓 정밀성을 피하기 위한 법과학 계산기와 구조화된 도구를 모읍니다. 전문가나 검증된 프로토콜을 대체하지 않고 초기 사건 검토를 더 명확하게 합니다.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "법과학 업무는 중요한 결정에 영향을 줄 수 있습니다. 따라서 도구는 결론 작성 전에 범위, 한계, 누락 데이터를 보여 주어야 합니다.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "이 범주에 포함되는 것",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "법과학 계산기를 책임 있게 사용하기",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "이 도구는 의사결정과 설명의 보조 수단으로 사용하고 법적, 의료, 이민, 신원확인 결정의 최종 권위로 사용하지 마십시오.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
56
+
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "forensische-wetenschap",
5
+ title: "Forensische hulpmiddelen",
6
+ description: "Forensische hulpmiddelen voor gestructureerde zaaktriage, transparante berekeningen en bewijsbewuste rapportage.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Forensische hulpmiddelen voor bewijsbewuste berekeningen en zaaktriage",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Deze categorie verzamelt forensische calculators en gestructureerde hulpmiddelen om bewijs te interpreteren, aannames te documenteren en schijnnauwkeurigheid te vermijden. Ze vervangt geen experts of gevalideerde protocollen; ze maakt vroege zaakbeoordeling duidelijker.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Forensisch werk kan belangrijke beslissingen beinvloeden. Daarom tonen deze tools bereiken, beperkingen en ontbrekende gegevens voordat een conclusie wordt geschreven.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Wat hoort in deze categorie forensische hulpmiddelen",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Forensische calculators verantwoord gebruiken",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Gebruik deze tools als beslis- en uitlegondersteuning, niet als eindautoriteit voor juridische, medische, migratie- of identificatiebeslissingen.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "nauka-sadowa",
5
+ title: "Narzedzia nauki sadowej",
6
+ description: "Narzedzia forensyczne do uporzadkowanej triage spraw, przejrzystych obliczen i raportowania swiadomego dowodow.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Narzedzia nauki sadowej do obliczen swiadomych dowodow i triage spraw",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Ta kategoria gromadzi kalkulatory forensyczne i uporzadkowane narzedzia do interpretacji dowodow, dokumentowania zalozen i unikania falszywej precyzji. Nie zastepuje ekspertow ani zwalidowanych protokolow; wyjasnia wczesna ocene sprawy.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Praca forensyczna moze wplywac na wazne decyzje. Dlatego te narzedzia powinny pokazywac zakresy, ograniczenia i brakujace dane przed napisaniem wniosku.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Co nalezy do tej kategorii narzedzi forensycznych",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Odpowiedzialne uzywanie kalkulatorow forensycznych",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Uzywaj tych narzedzi jako pomocy decyzyjnej i wyjasniajacej, nie jako ostatecznego autorytetu dla decyzji prawnych, medycznych, migracyjnych lub identyfikacyjnych.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "ciencia-forense",
5
+ title: "Ferramentas de ciencia forense",
6
+ description: "Utilitarios forenses para triagem estruturada de casos, calculos transparentes e relatorios conscientes das evidencias.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Ferramentas de ciencia forense para calculos conscientes das evidencias e triagem de casos",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Esta categoria reune calculadoras forenses e utilitarios estruturados para interpretar evidencias, documentar pressupostos e evitar falsa precisao. Ela nao substitui especialistas ou protocolos validados; torna a revisao inicial do caso mais clara.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "O trabalho forense pode influenciar decisoes importantes. Por isso, estas ferramentas devem mostrar intervalos, limites e dados ausentes antes de qualquer conclusao.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "O que pertence a esta categoria de utilitarios forenses",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Usar calculadoras forenses com responsabilidade",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Use estas ferramentas como apoio a decisao e explicacao, nao como autoridade final para decisoes legais, medicas, migratorias ou de identificacao.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };
@@ -0,0 +1,55 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: "sudebnaya-nauka",
5
+ title: "Инструменты судебной науки",
6
+ description: "Судебные утилиты для структурированной сортировки дел, прозрачных расчетов и отчетов с учетом доказательств.",
7
+ seo: [
8
+ {
9
+ type: 'title',
10
+ text: "Инструменты судебной науки для расчетов с учетом доказательств и сортировки дел",
11
+ level: 2,
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: "Эта категория собирает судебные калькуляторы и структурированные утилиты для интерпретации доказательств, документирования допущений и избегания ложной точности. Она не заменяет экспертов или валидированные протоколы, а делает первичный разбор дела понятнее.",
16
+ },
17
+ {
18
+ type: 'paragraph',
19
+ html: "Судебная работа может влиять на важные решения. Поэтому эти инструменты должны показывать диапазоны, ограничения и недостающие данные до написания вывода.",
20
+ },
21
+ {
22
+ type: 'title',
23
+ text: "Что входит в эту категорию судебных утилит",
24
+ level: 3,
25
+ },
26
+ {
27
+ type: 'list',
28
+ items: [
29
+ '<strong>Age assessment tools:</strong> dental, skeletal, and maturity indicators with explicit uncertainty.',
30
+ '<strong>Evidence interpretation tools:</strong> structured calculators that show assumptions, confidence, and limitations.',
31
+ '<strong>Case triage tools:</strong> fast workflows that help decide what data are missing before formal analysis.',
32
+ '<strong>Reporting support:</strong> outputs that encourage clear language, ranges, caveats, and traceable reasoning.',
33
+ ],
34
+ },
35
+ {
36
+ type: 'title',
37
+ text: "Ответственное использование судебных калькуляторов",
38
+ level: 3,
39
+ },
40
+ {
41
+ type: 'paragraph',
42
+ html: "Используйте эти инструменты как поддержку решений и объяснений, а не как окончательное основание для юридических, медицинских, миграционных или идентификационных решений.",
43
+ },
44
+ {
45
+ type: 'table',
46
+ headers: ['Good use', 'Poor use', 'Why it matters'],
47
+ rows: [
48
+ ["Screen a case file before specialist review.", "Replace specialist review with a calculator result.", "Forensic conclusions must be defensible and methodologically valid."],
49
+ ["Explain uncertainty to non-specialists.", "Report one exact answer without caveats.", "False precision can mislead legal or safeguarding decisions."],
50
+ ["Compare how assumptions affect a result.", "Hide assumptions from the report.", "Transparent assumptions make the result easier to audit."],
51
+ ["Identify missing evidence.", "Ignore poor data quality.", "Weak inputs can make even a correct formula unreliable."],
52
+ ],
53
+ },
54
+ ],
55
+ };