-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslations.js
More file actions
2575 lines (2573 loc) · 201 KB
/
Copy pathtranslations.js
File metadata and controls
2575 lines (2573 loc) · 201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const translations = {
en: {
header: {
title: "Online Blood Test Converter: PDF & Image to Spreadsheets",
description: "Instantly convert blood test results (PDF, Word, photos) into clear, editable spreadsheets. Easily copy to Excel/Google Sheets or download your data.",
privacyNote: "Your medical data is private. <strong>Your file is never stored on our servers</strong> — it is processed in memory and immediately discarded. File content is sent to Google Gemini AI for extraction.",
googleCloudVision: "We use <strong>Google Gemini AI</strong> to extract and interpret your results. Your file content is transmitted to Google's servers for processing and is subject to Google's privacy policy. We do not store files on our own servers.",
},
fileUpload: {
fileAdded: "File {fileName} added!",
dragOrClick: "Drag a file here or click to select.",
releaseToUpload: "Release file to upload!",
selectFileButton: "Select Blood Test File",
supportedFormats: "Supported formats: PDF, DOCX, JPG, PNG, WebP"
},
loading: "Processing file...",
error: {
title: "Error!",
retryTime:"Please try again in {time} seconds.",
selectAnotherFile: "Select another file",
noMedicalData: "No medical analysis data found in the document.",
unexpectedData: "Unexpected data format received from server.",
networkError: "Network error or problem connecting to server: {message}"
},
tableDisplay: {
imageProcessingResult: "Image Processing Result:",
imageProcessingNote: "Please note: Image processing may provide a description rather than a structured table if the content is not tabular.",
copyTable: "Copy Table",
copySuccess: "Copied Successfully!",
downloadTable: "Download Table",
downloadSuccess: "Downloaded!",
copyError: "Failed to copy table. Please try again.",
downloadError: "No data available to download."
},
howItWorks: {
title: "How to Convert Blood Tests to Spreadsheet: Simple Steps",
step1: {
title: "Upload Your File:",
description: "Simply drag and drop your PDF, DOCX, JPG, PNG, or WebP file containing blood test results into the converter area, or click the \"Select Blood Test File\" button to choose a file from your device."
},
step2: {
title: "Automatic Conversion:",
description: "Our intelligent system will instantly process your analysis data and transform it into a clear, structured table. You'll see a preview directly on the page."
},
step3: {
title: "Use the Converted Table:",
description: "Once the conversion is complete, you'll have the option to <strong>copy the entire table</strong> with a single click to easily paste it directly into Microsoft Excel or Google Sheets. Additionally, for your convenience, you can <strong>download the ready spreadsheet file</strong> (in CSV or XLSX format) to your computer for offline use."
}
},
whyChooseUs: {
title: "Why Choose Our Online Blood Test Converter?",
accuracySpeed: "Maximum Accuracy & Speed: Thanks to advanced algorithms, we ensure fast and reliable conversion of your blood test data into a tabular format without errors.",
formatSupport: "Wide Format Support: Work with files in PDF, DOCX and popular image formats (JPG, PNG, WebP), making our tool versatile for any medical document.",
convenientExport: "Convenient Export for Analysis: Get a ready-to-use table that can be easily copied and pasted into Excel, Google Sheets, or directly downloaded. This is ideal for monitoring your health dynamics.",
dataSecurity: "Data Transparency: Your file is never stored on our servers. File content is processed by Google Gemini AI and immediately discarded. Saved results are stored securely in your private account.",
freeOnline: "Completely Free & Online: Use our converter anytime, anywhere without the need for registration, downloads, or software installation."
},
faq: {
title: "Frequently Asked Questions (FAQ)",
q1: "Is my medical data safe and secure?",
a1: "Yes, we take your data seriously. Your uploaded file is never stored on our servers — all file processing is temporary and happens in memory only. Your file content is sent to Google Gemini AI for extraction and interpretation, and is subject to Google's privacy policy. If you choose to save your results, they are stored securely in your private account using Firebase. For more details, see our <a href=\"/privacy-policy\" class=\"text-indigo-600 hover:underline font-medium\">privacy policy</a>.",
q2: "What types of blood tests can I convert?",
a2: "Our tool is designed for the effective conversion of a wide range of laboratory blood tests. This includes complete blood count (CBC), blood biochemistry analysis, hormonal indicators, lipid profile, tumor markers, and many other parameters that are presented in table formats, structured text, or images.",
q3: "In what format will I receive the table after conversion?",
a3: "After successful conversion, you will see a clear, structured table directly on the page. You'll have several convenient options: you can easily <strong>copy the entire table</strong> with a single click to paste it <strong>directly into Microsoft Excel, Google Sheets, or any other compatible spreadsheet editor</strong>. Additionally, you can <strong>download the ready-to-use table file</strong> to your computer in CSV (Comma Separated Values) or XLSX (for Excel) format.",
q4: "Do I need to register or install software to use it?",
a4: "No, absolutely not! Our blood test converter works completely online. You do not need to create an account, register, download, or install any additional software. Simply visit the page, upload your file, and start the conversion!",
q5: "How often do you update your tool?",
a5: "We are constantly working to improve our converter, adding support for new formats, increasing recognition accuracy, and expanding functionality. Updates are released regularly to ensure the best experience for our users.",
q6: "What if my document has multiple tables or mixed content?",
a6: "Our tool is primarily designed to identify and extract data from a single, prominent table of medical analysis results. If your document contains multiple tables or a mix of structured text and prose, the tool will prioritize what it identifies as the main table. For complex documents, you might need to process sections separately or review the output carefully.",
q7: "Can I use this tool on my mobile device?",
a7: "Yes! Our blood test converter is fully responsive and optimized for use on all devices, including smartphones and tablets. You can upload files directly from your mobile device and access your converted tables seamlessly on the go.",
q8: "Is there a file size limit for uploads?",
a8: "To ensure optimal performance and prevent abuse, files should not exceed <strong>10MB</strong>. If your file is larger, please try compressing it or splitting it into smaller sections if possible.",
q9: "What if the conversion result isn't accurate or misses some data?",
a9: "While our advanced algorithms strive for high accuracy, the quality of the original document (e.g., blurry images, complex layouts, handwritten notes) can affect the conversion. If you notice inaccuracies, you can easily <strong>edit the table directly on the page</strong> before copying or downloading it. If the issue persists, try re-uploading a clearer scan or photo of your document.",
q10: "How long does the conversion process take?",
a10: "Most conversions are completed within seconds, especially for well-structured PDF or DOCX files. Image files might take slightly longer due to the optical character recognition (OCR) process. You will see a loading indicator while your file is being processed.",
q11: "Do you support languages other than English for test results?",
a11: "Yes, we are committed to global accessibility! Our tool now supports test results and interface languages for the 7 most popular languages worldwide, including <strong>English, Spanish, Mandarin Chinese, Japanese, German, French, Ukrainian</strong>. This comprehensive support ensures that you can accurately convert blood test results regardless of the original document's language, and interact with our tool in your preferred language.",
q12: "Can I integrate this tool into my own application or website?",
a12: "This online converter is provided as a standalone web application for direct user use. We do not currently offer an API for third-party integrations."
},
nav: {
bloodTestConverter: "Blood Test Converter",
unitConverter: "Unit Converter",
biomarkers: "Biomarkers",
lang_en: "English",
lang_es: "Spanish",
lang_de: "German",
lang_fr: "French",
lang_uk: "Ukrainian",
lang_ja: "Japanese",
lang_zh: "Chinese",
signIn: 'Sign In',
signUp: 'Sign Up',
myTests: 'My Tests',
signOut: 'Sign Out',
menu: 'Menu',
},
footerSection: {
tagline: "Free AI-powered medical data converter.",
privacy: "Your data is never stored on our servers.",
toolsHeading: "Tools",
infoHeading: "Info",
bloodTestConverter: "Blood Test Converter",
unitConverter: "Unit Converter",
biomarkerHub: "Biomarker Hub",
about: "About",
privacyData: "Privacy & Data",
},
unitConverter: {
title: "Blood Biomarker Unit Converter",
aboutToolTitle: 'Discover Our Biomarker Unit Converter',
descriptionLong: 'Easily convert lab test results with our precise biomarker unit converter. Designed for medical professionals and individuals, this tool simplifies switching between units like mg/dL and mmol/L, ensuring accurate and reliable results for better health insights.',
selectBiomarkerLabel: "Select Biomarker",
inputValueLabel: "Enter Value",
nputValuePlaceholder: "Enter a value, e.g., 100",
sourceUnitLabel: "From Unit",
targetUnitLabel: "To Unit",
convertButton: "Convert",
resetButton: "Clear",
resultLabel: "Result",
selectPlaceholder: "Select a biomarker",
selectUnitPlaceholder: "Select a unit",
error: {
invalidValue: "Please enter a valid number.",
noBiomarkerSelected: "Please select a biomarker.",
selectUnits: "Please select both source and target units.",
conversionNotPossible: "Conversion not possible for these units/biomarker.",
},
faq: {
title: "Frequently Asked Questions (FAQ)",
q1_question: "What is this blood biomarker unit converter for?",
q1_answer: "This tool is designed to help you easily convert blood biomarker results between various measurement units, such as from conventional (e.g., mg/dL) to SI units (e.g., mmol/L) or vice versa. It's ideal for understanding lab results from different regions or sources.",
q2_question: "How accurate are the conversions provided by this tool?",
q2_answer: "Our conversions are based on widely accepted scientific formulas and molecular weights. While we strive for high accuracy, this tool is for **informational purposes only** and should not replace professional medical advice. Always consult a healthcare professional for the interpretation of your lab results.",
q3_question: "Which specific biomarkers and units are supported?",
q3_answer: "We support a broad range of common blood biomarkers like Glucose, Creatinine, Cholesterol, Thyroid Hormones, and many more. The available units (e.g., mmol/L, mg/dL, µmol/L, IU/L) will automatically appear in the dropdown menus once you select a biomarker. If a unit is not listed for a specific biomarker, it means that conversion is not typically standard or not currently supported.",
q4_question: "Is my personal or health data saved or stored?",
q4_answer: "No. Your privacy is paramount. This unit converter operates entirely **client-side in your browser**, meaning no personal health data, values entered, or conversion results are sent to or stored on our servers. All operations are temporary and secure.",
q5_question: "What if my specific unit or biomarker isn't listed?",
q5_answer: "If a biomarker or a specific unit for that biomarker is not available in the dropdown lists, it means our database currently does not support it. We are continuously working to expand our coverage. Please check back later or contact us if you have a suggestion.",
q6_question: "Can I use this converter for other types of unit conversions (e.g., weight, length)?",
q6_answer: "No, this converter specializes exclusively in converting **blood biomarker** measurement units. It is designed for medical purposes and the analysis of laboratory values.",
q7_question: "What is the difference between Conventional Units and SI units?",
q7_answer: "Conventional Units are often used in the U.S., while SI units (Système International d'Unités) are an international standard. For example, glucose levels might be measured in mg/dL (conventional) or mmol/L (SI). Our converter allows you to easily switch between these systems, which is critical for healthcare professionals and patients working with data from different sources.",
q8_question: "Is there a mobile version or app for this converter?",
q8_answer: "Our converter is fully optimized for mobile devices and works perfectly in any modern browser on a smartphone or tablet. There is no separate mobile app currently, but you can add the website to your device's home screen for quick access.",
q9_question: "How often is the biomarker and unit database updated?",
q9_answer: "We are constantly working to expand and update our database of biomarkers and their units. Updates are released regularly to ensure the accuracy and timeliness of the data. We appreciate your suggestions for adding new biomarkers or units.",
},
noJsTitle: "JavaScript is Disabled",
noJsMessage: "This unit converter requires JavaScript to function. Please enable JavaScript in your browser settings to use the tool.",
availableBiomarkers: "Available Biomarkers",
howItWorks: {
title: "How It Works",
step1: {
title: "Select Biomarker",
description: "Choose the desired blood biomarker from the dropdown list that you wish to convert.",
},
step2: {
title: "Enter Value & Choose Units",
description: "Enter the numerical value of your result in the 'Value to Convert' field, then select the source and target units.",
},
step3: {
title: "Get Converted Result",
description: "Click the 'Convert' button to instantly get the accurate biomarker value, translated into the chosen unit.",
},
},
},
biomarkers: {
"Glucose": "Glucose",
"Creatinine": "Creatinine",
"Urea": "Urea",
"Bilirubin (Total)": "Bilirubin (Total)",
"Total Cholesterol": "Total Cholesterol",
"HDL Cholesterol": "HDL Cholesterol",
"LDL Cholesterol": "LDL Cholesterol",
"Triglycerides": "Triglycerides",
"Uric Acid": "Uric Acid",
"Calcium (Total)": "Calcium (Total)",
"Phosphorus (Phosphate)": "Phosphorus (Phosphate)",
"Magnesium": "Magnesium",
"Sodium": "Sodium",
"Potassium": "Potassium",
"Chloride": "Chloride",
"Glycated Hemoglobin (HbA1c)": "Glycated Hemoglobin (HbA1c)",
"D-dimer": "D-dimer",
"Procalcitonin (PCT)": "Procalcitonin (PCT)",
"B-type Natriuretic Peptide (BNP)": "B-type Natriuretic Peptide (BNP)",
"N-terminal pro-brain natriuretic peptide (NT-proBNP)": "N-terminal pro-brain natriuretic peptide (NT-proBNP)",
"Homocysteine": "Homocysteine",
"Ferritin": "Ferritin",
"Vitamin B12 (Cobalamin)": "Vitamin B12 (Cobalamin)",
"Folic Acid (Folate)": "Folic Acid (Folate)",
"25-OH Vitamin D (Calcidiol)": "25-OH Vitamin D (Calcidiol)",
"TSH": "TSH",
"Free T3": "Free T3",
"Total T3": "Total T3",
"Free T4": "Free T4",
"Total T4": "Total T4",
"Cortisol": "Cortisol",
"Testosterone (Total)": "Testosterone (Total)",
"Estradiol": "Estradiol",
"Progesterone": "Progesterone",
"Prolactin": "Prolactin",
"Insulin": "Insulin",
"C-peptide": "C-peptide",
"Parathyroid hormone (PTH)": "Parathyroid hormone (PTH)",
"PSA (Total)": "PSA (Total)",
"PSA (Free)": "PSA (Free)",
"Fibrinogen": "Fibrinogen",
"Serum Iron": "Serum Iron",
"Red Blood Cell Count (RBC)": "Red Blood Cell Count (RBC)",
"Hemoglobin (HGB)": "Hemoglobin (HGB)",
"Hematocrit (HCT)": "Hematocrit (HCT)",
"Mean Corpuscular Volume (MCV)": "Mean Corpuscular Volume (MCV)",
"Mean Corpuscular Hemoglobin (MCH)": "Mean Corpuscular Hemoglobin (MCH)",
"Mean Corpuscular Hemoglobin Concentration (MCHC)": "Mean Corpuscular Hemoglobin Concentration (MCHC)",
"Red Cell Distribution Width (RDW)": "Red Cell Distribution Width (RDW)",
"White Blood Cell Count (WBC)": "White Blood Cell Count (WBC)",
"White Blood Cell Differential (Neutrophils, Lymphocytes, Monocytes, Eosinophils, Basophils)": "White Blood Cell Differential (Neutrophils, Lymphocytes, Monocytes, Eosinophils, Basophils)",
"Platelet Count (PLT)": "Platelet Count (PLT)",
"Mean Platelet Volume (MPV)": "Mean Platelet Volume (MPV)",
"Erythrocyte Sedimentation Rate (ESR)": "Erythrocyte Sedimentation Rate (ESR)",
"Total Protein": "Total Protein",
"Albumin": "Albumin",
"Bilirubin (Direct)": "Bilirubin (Direct)",
"Bilirubin (Indirect)": "Bilirubin (Indirect)",
"Alanine Aminotransferase (ALT)": "Alanine Aminotransferase (ALT)",
"Aspartate Aminotransferase (AST)": "Aspartate Aminotransferase (AST)",
"Gamma-glutamyl transferase (GGT)": "Gamma-glutamyl transferase (GGT)",
"Alkaline Phosphatase (ALP)": "Alkaline Phosphatase (ALP)",
"Amylase": "Amylase",
"Lipase": "Lipase",
"Calcium (Ionized)": "Calcium (Ionized)",
"Creatine Kinase (CK)": "Creatine Kinase (CK)",
"Creatine Kinase-MB (CK-MB)": "Creatine Kinase-MB (CK-MB)",
"Lactate Dehydrogenase (LDH)": "Lactate Dehydrogenase (LDH)",
"Adrenocorticotropic hormone (ACTH)": "Adrenocorticotropic hormone (ACTH)",
"Follicle-stimulating hormone (FSH)": "Follicle-stimulating hormone (FSH)",
"Luteinizing hormone (LH)": "Luteinizing hormone (LH)",
"C-reactive protein (CRP)": "C-reactive protein (CRP)",
"Rheumatoid Factor (RF)": "Rheumatoid Factor (RF)",
"Immunoglobulin A (IgA)": "Immunoglobulin A (IgA)",
"Immunoglobulin G (IgG)": "Immunoglobulin G (IgG)",
"Immunoglobulin M (IgM)": "Immunoglobulin M (IgM)",
"Troponin T": "Troponin T",
"Troponin I": "Troponin I",
"Lipoprotein (a) - Lp(a)": "Lipoprotein (a) - Lp(a)",
"CA-125": "CA-125",
"CEA": "CEA",
"AFP": "AFP",
"CA-19-9": "CA-19-9",
"CA-15-3": "CA-15-3",
"HCG": "HCG",
"Prothrombin Time (PT)": "Prothrombin Time (PT)",
"INR (International Normalized Ratio)": "INR (International Normalized Ratio)",
"Activated Partial Thromboplastin Time (aPTT)": "Activated Partial Thromboplastin Time (aPTT)",
"D-dimer (Coagulation)": "D-dimer (Coagulation)",
"Total Iron-Binding Capacity (TIBC)": "Total Iron-Binding Capacity (TIBC)"
},
biomarker: {
title: "Biomarkers",
description: "Explore a comprehensive guide to various health biomarkers.",
hubTitle: "Biomarker Information Hub",
hubDescription: "Discover detailed insights into various biomarkers, their normal ranges, causes of deviations, and health recommendations.",
searchPlaceholder: "Search for a biomarker (e.g., Glucose, Cholesterol)...",
noBiomarkerFoundTitle: "No Biomarker Found",
noBiomarkerFoundMessage: "Please try a different search term or check your spelling.",
viewDetails: "View Details",
showMoreButton: "Show More Biomarkers",
remainingText: "remaining",
"titles": "Other Biomarkers You Might Be Interested In",
"button_back": "Back to Biomarker Directory",
"button_view_details": "View Details"
},
disclaimer: {
title: "Important Disclaimer",
paragraph1: "This unit converter is provided for general informational purposes only and is not intended to be a substitute for professional medical advice, diagnosis, or treatment. Always seek the advice of your physician or other qualified health provider with any questions you may have regarding a medical condition.",
paragraph2: "The conversions provided are based on standard scientific formulas. While we strive for accuracy, results should always be confirmed by a healthcare professional. We do not guarantee the accuracy or completeness of the information presented.",
},
units: {
"mmol/L": "mmol/L",
"mg/dL": "mg/dL",
"µmol/L": "µmol/L",
"µg/mL": "µg/mL",
"nmol/L": "nmol/L",
"pmol/L": "pmol/L",
"mEq/L": "mEq/L",
"%": "%",
"ng/mL FEU": "ng/mL FEU",
"mg/L FEU": "mg/L FEU",
"µg/mL FEU": "µg/mL FEU",
"mg/L DDU": "mg/L DDU",
"ng/mL": "ng/mL",
"µg/L": "µg/L",
"pg/mL": "pg/mL",
"mIU/L": "mIU/L",
"x10^12/L": "x10^12/L",
"x10^6/µL": "x10^6/µL",
"Mln/µL": "Mln/µL",
"g/L": "g/L",
"L/L": "L/L",
"fL": "fL",
"pg": "pg",
"mm/hr": "mm/hr",
"x10^9/L": "x10^9/L",
"x10^3/µL": "x10^3/µL",
"Thous./µL": "Thous./µL",
"U/L": "U/L",
"IU/L": "IU/L",
"µkat/L": "µkat/L",
"s": "s",
"dimensionless unit": "dimensionless unit",
"IU/mL": "IU/mL",
"U/mL": "U/mL",
"mIU/mL": "mIU/mL",
"mU/L": "mU/L",
"µU/mL": "µU/mL",
"ng/dL": "ng/dL",
"µg/dL": "µg/dL",
"nmol/L": "nmol/L"
},
footer: {
copyright: "© {year} BloodTestConverter. All Rights Reserved."
},
languageNames: {
en: "English", es: "Español", de: "Deutsch", fr: "Français", uk: "Українська",
ja: "日本語", zh: "简体中文"
},
languageSelect: "Language",
myTestsPage: {
pageTitle: "My Tests — Blood Test Converter",
back: "Back",
heading: "My Tests",
newConversion: "+ New Conversion",
loadError: "Could not load your tests",
loadErrorHint: "Check the browser console for details. This is usually a Firestore security rules issue.",
noTests: "No saved tests yet.",
uploadFirst: "Upload your first blood test →",
untitled: "Untitled test",
biomarkers: "biomarkers",
outOfRange: "out of range",
allInRange: "All in range",
improved: "improved",
worsened: "worsened",
noChange: "No change",
deleteConfirm: "Delete?",
delete: "Delete",
cancel: "Cancel",
testNotFound: "Test not found.",
backToTests: "Back to My Tests",
whatDoResultsMean: "What do your results mean?",
analyzingResults: "Analyzing your results…",
disclaimer: "This is informational only. Always consult a healthcare professional.",
copied: "Copied!",
copyTable: "Copy table",
downloaded: "Downloaded!",
downloadCsv: "Download CSV",
compareMode: "Compare",
selectTwoTests: "Select 2 tests",
compareSelected: "Compare",
unchanged: "unchanged",
showRawData: "Show raw data",
hideRawData: "Hide raw data",
comparingWith: "Comparing with",
},
},
es: {
header: {
title: "Convertidor de Análisis de Sangre Online: PDF e Imagen a Hojas de Cálculo",
description: "Convierta instantáneamente los resultados de análisis de sangre (PDF, Word, fotos) en hojas de cálculo claras y editables. Copie fácilmente a Excel/Google Sheets o descargue sus datos.",
privacyNote: "Su información médica es privada. <strong>Su archivo nunca se almacena en nuestros servidores</strong> — se procesa en memoria y se descarta inmediatamente. El contenido del archivo se envía a Google Gemini AI para su extracción.",
googleCloudVision: "Utilizamos <strong>Google Gemini AI</strong> para extraer e interpretar sus resultados. El contenido de su archivo se transmite a los servidores de Google para su procesamiento y está sujeto a la política de privacidad de Google. No almacenamos archivos en nuestros propios servidores.",
},
fileUpload: {
fileAdded: "¡Archivo {fileName} añadido!",
dragOrClick: "Arrastre un archivo aquí o haga clic para seleccionar.",
releaseToUpload: "¡Suelte el archivo para cargar!",
selectFileButton: "Seleccionar Archivo de Análisis de Sangre",
supportedFormats: "Formatos soportados: PDF, DOCX, JPG, PNG, WebP"
},
loading: "Procesando archivo...",
error: {
title: "¡Error!",
retryTime:"Por favor, inténtelo de nuevo en {time} segundos.",
selectAnotherFile: "Seleccionar otro archivo",
noMedicalData: "No se encontraron datos de análisis médicos en el documento.",
unexpectedData: "Formato de datos inesperado recibido del servidor.",
networkError:"Error de red o problema de conexión con el servidor: {message}"
},
tableDisplay: {
imageProcessingResult: "Resultado del procesamiento de imagen:",
imageProcessingNote: "Tenga en cuenta: el procesamiento de imágenes puede proporcionar una descripción en lugar de una tabla estructurada si el contenido no es tabular.",
copyTable: "Copiar Tabla",
copySuccess: "¡Copiado con Éxito!",
downloadTable: "Descargar Tabla",
downloadSuccess: "¡Descargado!",
copyError: "No se pudo copiar la tabla. Inténtelo de nuevo.",
downloadError: "No hay datos disponibles para descargar."
},
howItWorks: {
title: "Cómo convertir análisis de sangre a hoja de cálculo: Pasos sencillos",
step1: {
title: "Sube tu archivo:",
description: "Simplemente arrastra y suelta tu archivo PDF, DOCX, JPG, PNG o WebP que contenga los resultados de los análisis de sangre en el área del convertidor, o haz clic en el botón \"Seleccionar archivo de análisis de sangre\" para elegir un archivo de tu dispositivo."
},
step2: {
title: "Conversión automática:",
description: "Nuestro sistema inteligente procesará instantáneamente los datos de tu análisis y los transformará en una tabla clara y estructurada. Verás una vista previa directamente en la página."
},
step3: {
title: "Usa la tabla convertida:",
description: "Una vez completada la conversión, tendrás la opción de <strong>copiar toda la tabla</strong> con un solo clic para pegarla fácilmente directamente en Microsoft Excel o Google Sheets. Además, para tu comodidad, puedes <strong>descargar el archivo de hoja de cálculo listo</strong> (en formato CSV o XLSX) a tu computadora para usarlo sin conexión."
}
},
whyChooseUs: {
title: "¿Por qué Elegir Nuestro Convertidor de Análisis de Sangre Online?",
accuracySpeed: "Máxima Precisión y Velocidad: Gracias a algoritmos avanzados, garantizamos una conversión rápida y confiable de los datos de su análisis de sangre a un formato tabular sin errores.",
formatSupport: "Amplio Soporte de Formatos: Trabaje con archivos en PDF, DOCX y formatos de imagen populares (JPG, PNG, WebP), lo que hace que nuestra herramienta sea versátil para cualquier documento médico.",
convenientExport: "Exportación Conveniente para el Análisis: Obtenga una tabla lista para usar que se puede copiar y pegar fácilmente en Excel, Google Sheets o descargar directamente. Esto es ideal para monitorear la dinámica de su salud.",
dataSecurity: "Transparencia de Datos: Su archivo nunca se almacena en nuestros servidores. El contenido del archivo es procesado por Google Gemini AI y descartado inmediatamente. Los resultados guardados se almacenan de forma segura en su cuenta privada.",
freeOnline: "Completamente Gratuito y Online: Use nuestro convertidor en cualquier momento y lugar sin necesidad de registro, descargas o instalación de software."
},
faq: {
title: "Preguntas Frecuentes (FAQ)",
q1: "¿Mis datos médicos están seguros y protegidos?",
a1: "Sí, tomamos sus datos en serio. El archivo cargado nunca se almacena en nuestros servidores — todo el procesamiento de archivos es temporal y ocurre solo en memoria. El contenido de su archivo se envía a Google Gemini AI para extracción e interpretación, y está sujeto a la política de privacidad de Google. Si elige guardar sus resultados, se almacenan de forma segura en su cuenta privada usando Firebase. Para más detalles, consulte nuestra <a href=\"/privacy-policy\" class=\"text-indigo-600 hover:underline font-medium\">política de privacidad</a>.",
q2: "¿Qué tipos de análisis de sangre puedo convertir?",
a2: "Nuestra herramienta está diseñada para la conversión eficaz de una amplia gama de análisis de sangre de laboratorio. Esto incluye hemogramas completos (CBC), análisis bioquímicos de sangre, indicadores hormonales, perfil lipídico, marcadores tumorales y muchos otros parámetros que se presentan en formatos de tabla, texto estructurado o imágenes.",
q3: "¿En qué formato recibiré la tabla después de la conversión?",
a3: "Después de una conversión exitosa, verá una tabla clara y estructurada directamente en la página. Tendrá varias opciones convenientes: puede <strong>copiar fácilmente la tabla completa</strong> con un solo clic para pegarla <strong>directamente en Microsoft Excel, Google Sheets o cualquier otro editor de hojas de cálculo compatible</strong>. Además, puede <strong>descargar el archivo de tabla listo para usar</strong> a su computadora en formato CSV (valores separados por comas) o XLSX (para Excel).",
q4: "¿Necesito registrarme o instalar software para usarlo?",
a4: "¡No, en absoluto! Nuestro convertidor de análisis de sangre funciona completamente en línea. No necesita crear una cuenta, registrarse, descargar ni instalar ningún software adicional. ¡Simplemente visite la página, cargue su archivo y comience la conversión!",
q5: "¿Con qué frecuencia actualizan su herramienta?",
a5: "Estamos constantemente trabajando para mejorar nuestro convertidor, agregando soporte para nuevos formatos, aumentando la precisión del reconocimiento y expandiendo la funcionalidad. Las actualizaciones se lanzan regularmente para garantizar la mejor experiencia para nuestros usuarios.",
q6: "¿Qué pasa si mi documento tiene varias tablas o contenido mixto?",
a6: "Nuestra herramienta está diseñada principalmente para identificar y extraer datos de una única tabla prominente de resultados de análisis médicos. Si su documento contiene varias tablas o una mezcla de texto estructurado y prosa, la herramienta priorizará lo que identifique como la tabla principal. Para documentos complejos, es posible que deba procesar secciones por separado o revisar cuidadosamente la salida.",
q7: "¿Puedo usar esta herramienta en mi dispositivo móvil?",
a7: "¡Sí! Nuestro convertidor de análisis de sangre es totalmente responsivo y está optimizado para su uso en todos los dispositivos, incluidos teléfonos inteligentes y tabletas. Puede cargar archivos directamente desde su dispositivo móvil y acceder a sus tablas convertidas sin problemas sobre la marcha.",
q8: "¿Hay un límite de tamaño de archivo para las cargas?",
a8: "Para garantizar un rendimiento óptimo y evitar abusos, los archivos no deben exceder los <strong>10MB</strong>. Si su archivo es más grande, intente comprimirlo o dividirlo en secciones más pequeñas si es posible.",
q9: "¿Qué pasa si el resultado de la conversión no es preciso o falta algún dato?",
a9: "Si bien nuestros algoritmos avanzados se esfuerzan por lograr una alta precisión, la calidad del documento original (por ejemplo, imágenes borrosas, diseños complejos, notas escritas a mano) puede afectar la conversión. Si nota imprecisiones, puede <strong>editar fácilmente la tabla directamente en la página</strong> antes de copiarla o descargarla. Si el problema persiste, intente volver a subir un escaneo o una foto más clara de su documento.",
q10: "¿Cuánto tiempo tarda el proceso de conversión?",
a10: "La mayoría de las conversiones se completan en segundos, especialmente para archivos PDF o DOCX bien estructurados. Los archivos de imagen pueden tardar un poco más debido al proceso de reconocimiento óptico de caracteres (OCR). Verá un indicador de carga mientras se procesa su archivo.",
q11: "¿Admiten otros idiomas además del inglés para los resultados de las pruebas?",
a11: "¡Sí, estamos comprometidos con la accesibilidad global! Nuestra herramienta ahora es compatible con los resultados de las pruebas y los idiomas de la interfaz para los 7 idiomas más populares en todo el mundo, incluidos <strong>inglés, español, chino mandarín, japonés, alemán, francés, ucraniano </strong>. Este soporte integral garantiza que pueda convertir con precisión los resultados de los análisis de sangre, independientemente del idioma del documento original, e interactuar con nuestra herramienta en su idioma preferido.",
q12: "¿Puedo integrar esta herramienta en mi propia aplicación o sitio web?",
a12: "Este convertidor en línea se proporciona como una aplicación web independiente para uso directo del usuario. Actualmente no ofrecemos una API para integraciones de terceros."
},
nav: {
bloodTestConverter: "Convertidor de Análisis de Sangre",
unitConverter: "Convertidor de Unidades",
biomarkers: "Biomarcadores",
lang_en: "English",
lang_es: "Español",
lang_de: "Deutsch",
lang_fr: "Français",
lang_uk: "Українська",
lang_ja: "日本語",
lang_zh: "简体中文",
signIn: 'Iniciar sesión',
signUp: 'Registrarse',
myTests: 'Mis análisis',
signOut: 'Cerrar sesión',
menu: 'Menú',
},
footerSection: {
tagline: "Convertidor médico gratuito impulsado por IA.",
privacy: "Sus datos nunca se almacenan en nuestros servidores.",
toolsHeading: "Herramientas",
infoHeading: "Información",
bloodTestConverter: "Convertidor de Análisis de Sangre",
unitConverter: "Convertidor de Unidades",
biomarkerHub: "Centro de Biomarcadores",
about: "Acerca de",
privacyData: "Privacidad y Datos",
},
unitConverter: {
title: "Convertidor de Unidades de Biomarcadores Sanguíneos",
aboutToolTitle: 'Descubre Nuestro Conversor de Unidades de Biomarcadores',
descriptionLong: 'Convierte fácilmente los resultados de pruebas de laboratorio con nuestro conversor de unidades de biomarcadores preciso. Diseñado para profesionales médicos y particulares, esta herramienta simplifica el cambio entre unidades como mg/dL y mmol/L, garantizando resultados precisos y confiables para mejores conocimientos de salud.',
selectBiomarkerLabel: "Seleccionar Biomarcador",
inputValueLabel: "Ingresar Valor",
inputValuePlaceholder: "Ingrese un valor, por ejemplo, 100",
sourceUnitLabel: "Unidad de Origen",
targetUnitLabel: "Unidad de Destino",
convertButton: "Convertir",
resetButton: "Borrar",
resultLabel: "Resultado",
selectPlaceholder: "Seleccionar un biomarcador",
selectUnitPlaceholder: "Seleccionar una unidad",
error: {
invalidValue: "Por favor, ingrese un número válido.",
noBiomarkerSelected: "Por favor, seleccione un biomarcador.",
selectUnits: "Por favor, seleccione las unidades de origen y destino.",
conversionNotPossible: "Conversión no posible para estas unidades/biomarcador.",
},
faq: {
title: "Preguntas Frecuentes (FAQ)",
q1_question: "¿Para qué sirve este convertidor de unidades de biomarcadores sanguíneos?",
q1_answer: "Esta herramienta está diseñada para ayudarle a convertir fácilmente los resultados de biomarcadores sanguíneos entre varias unidades de medida, como de unidades convencionales (por ejemplo, mg/dL) a unidades SI (por ejemplo, mmol/L) o viceversa. Es ideal para comprender los resultados de laboratorio de diferentes regiones o fuentes.",
q2_question: "¿Qué tan precisas son las conversiones proporcionadas por esta herramienta?",
q2_answer: "Nuestras conversiones se basan en fórmulas científicas y pesos moleculares ampliamente aceptados. Si bien nos esforzamos por una alta precisión, esta herramienta es solo para **fines informativos** y no debe reemplazar el consejo médico profesional. Siempre consulte a un profesional de la salud para la interpretación de sus resultados de laboratorio.",
q3_question: "¿Qué biomarcadores y unidades específicas son compatibles?",
q3_answer: "Admitimos una amplia gama de biomarcadores sanguíneos comunes como glucosa, creatinina, colesterol, hormonas tiroideas y muchos más. Las unidades disponibles (por ejemplo, mmol/L, mg/dL, µmol/L, UI/L) aparecerán automáticamente en los menús desplegables una vez que seleccione un biomarcador. Si una unidad no aparece en la lista para un biomarcador específico, significa que esa conversión no es típicamente estándar o no es compatible actualmente.",
q4_question: "¿Se guardan o almacenan mis datos personales o de salud?",
q4_answer: "No. Su privacidad es primordial. Este convertidor de unidades funciona completamente **del lado del cliente en su navegador**, lo que significa que no se envían ni se almacenan datos personales de salud, valores introducidos o resultados de conversión en nuestros servidores. Todas las operaciones son temporales y seguras.",
q5_question: "¿Qué hago si mi unidad o biomarcador específico no aparece en la lista?",
q5_answer: "Si un biomarcador o una unidad específica para ese biomarcador no está disponible en las listas desplegables, significa que nuestra base de datos no lo admite actualmente. Trabajamos continuamente para ampliar nuestra cobertura. Vuelva a consultar más tarde o contáctenos si tiene alguna sugerencia.",
q6_question: "¿Puedo usar este conversor para otros tipos de conversiones de unidades (por ejemplo, peso, longitud)?",
q6_answer: "No, este conversor se especializa exclusivamente en la conversión de unidades de medida de **biomarcadores sanguíneos**. Está diseñado para fines médicos y el análisis de valores de laboratorio.",
q7_question: "¿Cuál es la diferencia entre Unidades Convencionales y unidades SI?",
q7_answer: "Las Unidades Convencionales se utilizan a menudo en EE. UU., mientras que las unidades SI (Système International d'Unités) son un estándar internacional. Por ejemplo, los niveles de glucosa podrían medirse en mg/dL (convencional) o mmol/L (SI). Nuestro conversor te permite cambiar fácilmente entre estos sistemas, lo cual es fundamental para los profesionales de la salud y los pacientes que trabajan con datos de diferentes fuentes.",
q8_question: "¿Hay una versión móvil o una aplicación para este conversor?",
q8_answer: "Nuestro conversor está completamente optimizado para dispositivos móviles y funciona perfectamente en cualquier navegador moderno de un smartphone o tablet. Actualmente no hay una aplicación móvil separada, pero puedes añadir el sitio web a la pantalla de inicio de tu dispositivo para un acceso rápido.",
q9_question: "¿Con qué frecuencia se actualiza la base de datos de biomarcadores y unidades?",
q9_answer: "Estamos trabajando constantemente para expandir y actualizar nuestra base de datos de biomarcadores y sus unidades. Las actualizaciones se lanzan regularmente para garantizar la precisión y actualidad de los datos. Agradecemos tus sugerencias para añadir nuevos biomarcadores o unidades.",
},
howItWorks: {
title: "Cómo funciona",
step1: {
title: "Seleccionar Biomarcador",
description: "Elija el biomarcador sanguíneo deseado de la lista desplegable que desea convertir.",
},
step2: {
title: "Ingresar Valor y Elegir Unidades",
description: "Ingrese el valor numérico de su resultado en el campo 'Valor a Convertir' y luego seleccione las unidades de origen y de destino.",
},
step3: {
title: "Obtener Resultado Convertido",
description: "Haga clic en el botón 'Convertir' para obtener instantáneamente el valor exacto del biomarcador, convertido a la unidad elegida.",
},
},
},
biomarkers: {
"Glucose": "Glucosa",
"Creatinine": "Creatinina",
"Urea": "Urea",
"Bilirubin (Total)": "Bilirrubina (Total)",
"Total Cholesterol": "Colesterol Total",
"HDL Cholesterol": "Colesterol HDL",
"LDL Cholesterol": "Colesterol LDL",
"Triglycerides": "Triglicéridos",
"Uric Acid": "Ácido Úrico",
"Calcium (Total)": "Calcio (Total)",
"Phosphorus (Phosphate)": "Fósforo (Fosfato)",
"Magnesium": "Magnesio",
"Sodium": "Sodio",
"Potassium": "Potasio",
"Chloride": "Cloruro",
"Glycated Hemoglobin (HbA1c)": "Hemoglobina Glicosilada (HbA1c)",
"D-dimer": "D-dímero",
"Procalcitonin (PCT)": "Procalcitonina (PCT)",
"B-type Natriuretic Peptide (BNP)": "Péptido Natriurético tipo B (BNP)",
"N-terminal pro-brain natriuretic peptide (NT-proBNP)": "Péptido Natriurético Cerebral N-terminal (NT-proBNP)",
"Homocysteine": "Homocisteína",
"Ferritin": "Ferritina",
"Vitamin B12 (Cobalamin)": "Vitamina B12 (Cobalamina)",
"Folic Acid (Folate)": "Ácido Fólico (Folato)",
"25-OH Vitamin D (Calcidiol)": "25-OH Vitamina D (Calcidiol)",
"TSH": "TSH",
"Free T3": "T3 Libre",
"Total T3": "T3 Total",
"Free T4": "T4 Libre",
"Total T4": "T4 Total",
"Cortisol": "Cortisol",
"Testosterone (Total)": "Testosterona (Total)",
"Estradiol": "Estradiol",
"Progesterone": "Progesterona",
"Prolactin": "Prolactina",
"Insulin": "Insulina",
"C-peptide": "Péptido C",
"Parathyroid hormone (PTH)": "Hormona Paratiroidea (PTH)",
"PSA (Total)": "PSA (Total)",
"PSA (Free)": "PSA (Libre)",
"Fibrinogen": "Fibrinógeno",
"Serum Iron": "Hierro Sérico",
"Red Blood Cell Count (RBC)": "Recuento de Glóbulos Rojos (RBC)",
"Hemoglobin (HGB)": "Hemoglobina (HGB)",
"Hematocrit (HCT)": "Hematocrito (HCT)",
"Mean Corpuscular Volume (MCV)": "Volumen Corpuscular Medio (VCM)",
"Mean Corpuscular Hemoglobin (MCH)": "Hemoglobina Corpuscular Media (HCM)",
"Mean Corpuscular Hemoglobin Concentration (MCHC)": "Concentración de Hemoglobina Corpuscular Media (CHCM)",
"Red Cell Distribution Width (RDW)": "Amplitud de Distribución de Glóbulos Rojos (RDW)",
"White Blood Cell Count (WBC)": "Recuento de Glóbulos Blancos (WBC)",
"White Blood Cell Differential (Neutrophils, Lymphocytes, Monocytes, Eosinophils, Basophils)": "Diferencial de Glóbulos Blancos (Neutrófilos, Linfocitos, Monocitos, Eosinófilos, Basófilos)",
"Platelet Count (PLT)": "Recuento de Plaquetas (PLT)",
"Mean Platelet Volume (MPV)": "Volumen Plaquetario Medio (VPM)",
"Erythrocyte Sedimentation Rate (ESR)": "Velocidad de Sedimentación Globular (VSG)",
"Total Protein": "Proteína Total",
"Albumin": "Albúmina",
"Bilirubin (Direct)": "Bilirrubina (Directa)",
"Bilirubin (Indirect)": "Bilirrubina (Indirecta)",
"Alanine Aminotransferase (ALT)": "Alanina Aminotransferasa (ALT)",
"Aspartate Aminotransferase (AST)": "Aspartato Aminotransferasa (AST)",
"Gamma-glutamyl transferase (GGT)": "Gamma-glutamil transferasa (GGT)",
"Alkaline Phosphatase (ALP)": "Fosfatasa Alcalina (FA)",
"Amylase": "Amilasa",
"Lipase": "Lipasa",
"Calcium (Ionized)": "Calcio (Ionizado)",
"Creatine Kinase (CK)": "Creatina Kinasa (CK)",
"Creatine Kinase-MB (CK-MB)": "Creatina Kinasa-MB (CK-MB)",
"Lactate Dehydrogenase (LDH)": "Lactato Deshidrogenasa (LDH)",
"Adrenocorticotropic hormone (ACTH)": "Hormona Adrenocorticotrópica (ACTH)",
"Follicle-stimulating hormone (FSH)": "Hormona Folículo Estimulante (FSH)",
"Luteinizing hormone (LH)": "Hormona Luteinizante (LH)",
"C-reactive protein (CRP)": "Proteína C-reactiva (PCR)",
"Rheumatoid Factor (RF)": "Factor Reumatoide (FR)",
"Immunoglobulin A (IgA)": "Inmunoglobulina A (IgA)",
"Immunoglobulin G (IgG)": "Inmunoglobulina G (IgG)",
"Immunoglobulin M (IgM)": "Inmunoglobulina M (IgM)",
"Troponin T": "Troponina T",
"Troponin I": "Troponina I",
"Lipoprotein (a) - Lp(a)": "Lipoproteína (a) - Lp(a)",
"CA-125": "CA-125",
"CEA": "CEA",
"AFP": "AFP",
"CA-19-9": "CA-19-9",
"CA-15-3": "CA-15-3",
"HCG": "HCG",
"Prothrombin Time (PT)": "Tiempo de Protrombina (TP)",
"INR (International Normalized Ratio)": "INR (Relación Normalizada Internacional)",
"Activated Partial Thromboplastin Time (aPTT)": "Tiempo de Tromboplastina Parcial Activada (aPTT)",
"D-dimer (Coagulation)": "D-dímero (Coagulación)",
"Total Iron-Binding Capacity (TIBC)": "Capacidad Total de Fijación de Hierro (TIBC)"
},
biomarker: {
title: "Biomarcadores",
description: "Explore una guía completa de varios biomarcadores de salud.",
hubTitle: "Centro de Información de Biomarcadores",
hubDescription: "Descubra información detallada sobre varios biomarcadores, sus rangos normales, causas de desviaciones y recomendaciones de salud.",
searchPlaceholder: "Buscar un biomarcador (ej. Glucosa, Colesterol)...",
noBiomarkerFoundTitle: "No se encontró ningún biomarcador",
noBiomarkerFoundMessage: "Por favor, intente con un término de búsqueda diferente o revise su ortografía.",
viewDetails: "Ver detalles",
showMoreButton: "Mostrar más biomarcadores",
remainingText: "restantes",
"titles": "Otros Biomarcadores que Podrían Interesarte",
"button_back": "Volver al Directorio de Biomarcadores",
"button_view_details": "Ver Detalles"
},
disclaimer: {
title: "Aviso Legal Importante",
paragraph1: "Este convertidor de unidades se proporciona únicamente con fines informativos generales y no pretende ser un sustituto del consejo, diagnóstico o tratamiento médico profesional. Siempre busque el consejo de su médico u otro proveedor de salud calificado para cualquier pregunta que pueda tener con respecto a una condición médica.",
paragraph2: "Las conversiones proporcionadas se basan en fórmulas científicas estándar. Aunque nos esforzamos por la precisión, los resultados siempre deben ser confirmados por un profesional de la salud. No garantizamos la exactitud o integridad de la información presentada.",
},
units: {
"mmol/L": "mmol/L",
"mg/dL": "mg/dL",
"µmol/L": "µmol/L",
"µg/mL": "µg/mL",
"nmol/L": "nmol/L",
"pmol/L": "pmol/L",
"mEq/L": "mEq/L",
"%": "%",
"ng/mL FEU": "ng/mL FEU",
"mg/L FEU": "mg/L FEU",
"µg/mL FEU": "µg/mL FEU",
"mg/L DDU": "mg/L DDU",
"ng/mL": "ng/mL",
"µg/L": "µg/L",
"pg/mL": "pg/mL",
"mIU/L": "mIU/L",
"x10^12/L": "x10^12/L",
"x10^6/µL": "x10^6/µL",
"Mln/µL": "Mln/µL",
"g/L": "g/L",
"L/L": "L/L",
"fL": "fL",
"pg": "pg",
"mm/hr": "mm/hr",
"x10^9/L": "x10^9/L",
"x10^3/µL": "x10^3/µL",
"Thous./µL": "Thous./µL",
"U/L": "U/L",
"IU/L": "UI/L",
"µkat/L": "µkat/L",
"s": "s",
"dimensionless unit": "unidad adimensional",
"IU/mL": "UI/mL",
"U/mL": "U/mL",
"mIU/mL": "mIU/mL",
"mU/L": "mU/L",
"µU/mL": "µU/mL",
"ng/dL": "ng/dL",
"µg/dL": "µg/dL",
"nmol/L": "nmol/L"
},
footer: {
copyright: "© {year} BloodTestConverter. Todos los derechos reservados."
},
languageNames: {
en: "English", es: "Español", de: "Deutsch", fr: "Français", uk: "Українська",
ja: "日本語", zh: "简体中文"
},
languageSelect: "Idioma",
myTestsPage: {
pageTitle: "Mis análisis — Blood Test Converter",
back: "Volver",
heading: "Mis análisis",
newConversion: "+ Nueva conversión",
loadError: "No se pudieron cargar sus análisis",
loadErrorHint: "Revise la consola del navegador. Generalmente es un problema con las reglas de seguridad de Firestore.",
noTests: "Aún no hay análisis guardados.",
uploadFirst: "Sube tu primer análisis de sangre →",
untitled: "Análisis sin título",
biomarkers: "biomarcadores",
outOfRange: "fuera de rango",
allInRange: "Todo en rango",
improved: "mejorado",
worsened: "empeorado",
noChange: "Sin cambio",
deleteConfirm: "¿Eliminar?",
delete: "Eliminar",
cancel: "Cancelar",
testNotFound: "Análisis no encontrado.",
backToTests: "Volver a mis análisis",
whatDoResultsMean: "¿Qué significan sus resultados?",
analyzingResults: "Analizando sus resultados…",
disclaimer: "Solo informativo. Siempre consulte a un profesional de la salud.",
copied: "¡Copiado!",
copyTable: "Copiar tabla",
downloaded: "¡Descargado!",
downloadCsv: "Descargar CSV",
compareMode: "Comparar",
selectTwoTests: "Seleccionar 2 análisis",
compareSelected: "Comparar",
unchanged: "sin cambio",
showRawData: "Ver datos",
hideRawData: "Ocultar datos",
comparingWith: "Comparando con",
},
},
de: {
header: {
title: "Online-Bluttestergebnisse-Konverter: PDF & Bild zu Tabellen",
description: "Konvertieren Sie Bluttestergebnisse (PDF, Word, Fotos) sofort in klare, bearbeitbare Tabellen. Einfach in Excel/Google Sheets kopieren oder Ihre Daten herunterladen.",
privacyNote: "Ihre medizinischen Daten sind privat. <strong>Ihre Datei wird niemals auf unseren Servern gespeichert</strong> — sie wird im Arbeitsspeicher verarbeitet und sofort verworfen. Der Dateiinhalt wird zur Extraktion an Google Gemini AI übermittelt.",
googleCloudVision: "Wir verwenden <strong>Google Gemini AI</strong> zur Extraktion und Interpretation Ihrer Ergebnisse. Ihr Dateiinhalt wird zur Verarbeitung an die Server von Google übertragen und unterliegt den Datenschutzbestimmungen von Google. Wir speichern keine Dateien auf unseren eigenen Servern.",
},
fileUpload: {
fileAdded:"Datei „{fileName}“ hinzugefügt!",
dragOrClick: "Ziehen Sie eine Datei hierher oder klicken Sie, um auszuwählen.",
releaseToUpload: "Datei zum Hochladen freigeben!",
selectFileButton: "Bluttest-Datei auswählen",
supportedFormats: "Unterstützte Formate: PDF, DOCX, JPG, PNG, WebP"
},
loading: "Datei wird verarbeitet...",
error: {
title: "Fehler!",
retryTime: "Bitte versuchen Sie es in {time} Sekunden erneut.",
selectAnotherFile: "Andere Datei auswählen",
noMedicalData: "Keine medizinischen Analysedaten im Dokument gefunden.",
unexpectedData: "Unerwartetes Datenformat vom Server empfangen.",
networkError: "Netzwerkfehler oder Verbindungsproblem zum Server: {message}"
},
tableDisplay: {
imageProcessingResult: "Ergebnis der Bildverarbeitung:",
imageProcessingNote: "Bitte beachten Sie: Die Bildverarbeitung kann eine Beschreibung anstelle einer strukturierten Tabelle liefern, wenn der Inhalt nicht tabellarisch ist.",
copyTable: "Tabelle kopieren",
copySuccess: "Erfolgreich kopiert!",
downloadTable: "Tabelle herunterladen",
downloadSuccess: "Heruntergeladen!",
copyError: "Tabelle konnte nicht kopiert werden. Bitte versuchen Sie es erneut.",
downloadError: "Keine Daten zum Herunterladen verfügbar."
},
howItWorks: {
title: "Bluttestergebnisse in eine Tabelle umwandeln: Einfache Schritte",
step1: {
title: "Laden Sie Ihre Datei hoch:",
description: "Ziehen Sie einfach Ihre PDF-, DOCX-, JPG-, PNG- oder WebP-Datei mit den Bluttestergebnissen in den Konverterbereich oder klicken Sie auf die Schaltfläche „Bluttestdatei auswählen“, um eine Datei von Ihrem Gerät auszuwählen."
},
step2: {
title: "Automatische Konvertierung:",
description: "Unser intelligentes System verarbeitet Ihre Analysedaten sofort und wandelt sie in eine klare, strukturierte Tabelle um. Sie sehen eine Vorschau direkt auf der Seite."
},
step3: {
title: "Verwenden Sie die konvertierte Tabelle:",
description: "Nach Abschluss der Konvertierung haben Sie die Möglichkeit, <strong>die gesamte Tabelle</strong> mit einem einzigen Klick zu kopieren, um sie einfach direkt in Microsoft Excel oder Google Tabellen einzufügen. Zusätzlich können Sie zur Ihrer Bequemlichkeit die <strong>fertige Tabellendatei</strong> (im CSV- oder XLSX-Format) auf Ihren Computer herunterladen, um sie offline zu verwenden."
}
},
whyChooseUs: {
title: "Warum unseren Online-Bluttest-Konverter wählen?",
accuracySpeed: "Maximale Genauigkeit und Geschwindigkeit: Dank fortschrittlicher Algorithmen gewährleisten wir eine schnelle und zuverlässige Konvertierung Ihrer Bluttestdaten in ein tabellarisches Format ohne Fehler.",
formatSupport: "Breite Formatunterstützung: Arbeiten Sie mit Dateien im PDF-, DOCX- und gängigen Bildformaten (JPG, PNG, WebP), wodurch unser Tool vielseitig für jedes medizinische Dokument ist.",
convenientExport: "Bequemer Export zur Analyse: Erhalten Sie eine fertige Tabelle, die einfach in Excel, Google Sheets kopiert oder direkt heruntergeladen werden kann. Dies ist ideal zur Überwachung Ihrer Gesundheitsdynamik.",
dataSecurity: "Datentransparenz: Ihre Datei wird niemals auf unseren Servern gespeichert. Der Dateiinhalt wird von Google Gemini AI verarbeitet und sofort verworfen. Gespeicherte Ergebnisse werden sicher in Ihrem privaten Konto aufbewahrt.",
freeOnline: "Komplett kostenlos und online: Nutzen Sie unseren Konverter jederzeit und überall ohne Registrierung, Downloads oder Softwareinstallation."
},
faq: {
title: "Häufig gestellte Fragen (FAQ)",
q1: "Sind meine medizinischen Daten sicher und geschützt?",
a1: "Ja, wir nehmen Ihre Daten ernst. Ihre hochgeladene Datei wird niemals auf unseren Servern gespeichert — die gesamte Dateiverarbeitung ist temporär und erfolgt nur im Arbeitsspeicher. Ihr Dateiinhalt wird zur Extraktion und Interpretation an Google Gemini AI gesendet und unterliegt den Datenschutzbestimmungen von Google. Wenn Sie Ihre Ergebnisse speichern, werden diese sicher in Ihrem privaten Konto über Firebase gespeichert. Weitere Details finden Sie in unserer <a href=\"/privacy-policy\" class=\"text-indigo-600 hover:underline font-medium\">Datenschutzrichtlinie</a>.",
q2: "Welche Arten von Bluttests kann ich konvertieren?",
a2: "Unser Tool ist für die effektive Konvertierung einer breiten Palette von Laborbluttests konzipiert. Dazu gehören Blutbilder (CBC), Blutzuckeranalysen, Hormonindikatoren, Lipidprofile, Tumormarker und viele andere Parameter, die in Tabellenformaten, strukturiertem Text oder Bildern vorliegen.",
q3: "In welchem Format erhalte ich die Tabelle nach der Konvertierung?",
a3: "Nach erfolgreicher Konvertierung sehen Sie eine klare, strukturierte Tabelle direkt auf der Seite. Sie haben mehrere praktische Optionen: Sie können die <strong>gesamte Tabelle</strong> einfach mit einem Klick <strong>kopieren</strong>, um sie <strong>direkt in Microsoft Excel, Google Sheets oder einen anderen kompatiblen Tabellenkalkulationseditor</strong> einzufügen. Zusätzlich können Sie die <strong>fertige Tabellendatei</strong> (im CSV- oder XLSX-Format) auf Ihren Computer herunterladen, um sie offline zu verwenden.",
q4: "Muss ich mich registrieren oder Software installieren, um es zu nutzen?",
a4: "Nein, absolut nicht! Unser Bluttest-Konverter funktioniert vollständig online. Sie müssen kein Konto erstellen, sich registrieren, herunterladen oder zusätzliche Software installieren. Besuchen Sie einfach die Seite, laden Sie Ihre Datei hoch und starten Sie die Konvertierung!",
q5: "Wie oft aktualisieren Sie Ihr Tool?",
a5: "Wir arbeiten ständig daran, unseren Konverter zu verbessern, neue Formate zu unterstützen, die Erkennungsgenauigkeit zu erhöhen und die Funktionalität zu erweitern. Updates werden regelmäßig veröffentlicht, um die beste Erfahrung für unsere Benutzer zu gewährleisten.",
q6: "Was, wenn mein Dokument mehrere Tabellen oder gemischte Inhalte hat?",
a6: "Unser Tool ist primär darauf ausgelegt, Daten aus einer einzelnen, prominenten Tabelle mit medizinischen Analyseergebnissen zu identifizieren und zu extrahieren. Wenn Ihr Dokument mehrere Tabellen oder eine Mischung aus strukturiertem Text und Prosa enthält, priorisiert das Tool, was es als Haupttabelle identifiziert. Bei komplexen Dokumenten müssen Sie möglicherweise Abschnitte separat verarbeiten oder die Ausgabe sorgfältig überprüfen.",
q7: "Kann ich dieses Tool auf meinem Mobilgerät verwenden?",
a7: "Ja! Unser Bluttest-Konverter ist vollständig responsiv und für die Verwendung auf allen Geräten, einschließlich Smartphones und Tablets, optimiert. Sie können Dateien direkt von Ihrem Mobilgerät hochladen und nahtlos auf Ihre konvertierten Tabellen zugreifen, wo immer Sie sind.",
q8: "Gibt es eine Dateigrößenbeschränkung für Uploads?",
a8: "Um optimale Leistung zu gewährleisten und Missbrauch zu verhindern, sollten Dateien <strong>10 MB</strong> nicht überschreiten. Wenn Ihre Datei größer ist, versuchen Sie bitte, sie zu komprimieren oder in kleinere Abschnitte aufzuteilen, falls möglich.",
q9: "Was ist, wenn das Konvertierungsergebnis nicht genau ist oder Daten fehlen?",
a9: "Obwohl unsere fortschrittlichen Algorithmen eine hohe Genauigkeit anstreben, kann die Qualität des Originaldokuments (z. B. unscharfe Bilder, komplexe Layouts, handschriftliche Notizen) die Konvertierung beeinflussen. Wenn Sie Ungenauigkeiten bemerken, können Sie die <strong>Tabelle einfach direkt auf der Seite bearbeiten</strong>, bevor Sie sie kopieren oder herunterladen. Wenn das Problem weiterhin besteht, versuchen Sie, einen klareren Scan oder ein Foto Ihres Dokuments erneut hochzuladen.",
q10: "Wie lange dauert der Konvertierungsprozess?",
a10: "Die meisten Konvertierungen sind innerhalb von Sekunden abgeschlossen, insbesondere bei gut strukturierten PDF- oder DOCX-Dateien. Bilddateien können aufgrund des optischen Zeichenerkennungsprozesses (OCR) etwas länger dauern. Während der Verarbeitung Ihrer Datei wird ein Ladeindikator angezeigt.",
q11: "Unterstützen Sie andere Sprachen außer Englisch für Testergebnisse?",
a11: "Ja, wir setzen uns für globale Zugänglichkeit ein! Unser Tool unterstützt jetzt Testergebnisse und Oberflächensprachen für die 7 beliebtesten Sprachen weltweit, darunter <strong>Englisch, Spanisch, Mandarin-Chinesisch, Japanisch, Deutsch, Französisch, Ukrainisch </strong>. Diese umfassende Unterstützung stellt sicher, dass Sie Bluttestergebnisse unabhängig von der Originalsprache des Dokuments genau konvertieren und mit unserem Tool in Ihrer bevorzugten Sprache interagieren können.",
q12: "Kann ich dieses Tool in meine eigene Anwendung oder Website integrieren?",
a12: "Dieser Online-Konverter wird als eigenständige Webanwendung für die direkte Benutzernutzung bereitgestellt. Wir bieten derzeit keine API für die Integration durch Dritte an."
},nav: {
bloodTestConverter: "Bluttest-Konverter",
unitConverter: "Einheiten-Konverter",
biomarkers: "Biomarker",
lang_en: "English",
lang_es: "Español",
lang_de: "Deutsch",
lang_fr: "Français",
lang_uk: "Українська",
lang_ja: "日本語",
lang_zh: "简体中文",
signIn: 'Anmelden',
signUp: 'Registrieren',
myTests: 'Meine Tests',
signOut: 'Abmelden',
menu: 'Menü',
},
footerSection: {
tagline: "Kostenloser KI-gestützter medizinischer Datenkonverter.",
privacy: "Ihre Daten werden niemals auf unseren Servern gespeichert.",
toolsHeading: "Tools",
infoHeading: "Info",
bloodTestConverter: "Bluttest-Konverter",
unitConverter: "Einheiten-Konverter",
biomarkerHub: "Biomarker-Zentrum",
about: "Über uns",
privacyData: "Datenschutz & Daten",
},
unitConverter: {
title: "Blutbiomarker-Einheitenumrechner",
aboutToolTitle: 'Entdecken Sie Unseren Biomarkereinheiten-Konverter',
descriptionLong: 'Konvertieren Sie Laborergebnisse mühelos mit unserem präzisen Biomarkereinheiten-Konverter. Entwickelt für medizinisches Fachpersonal und Privatpersonen, erleichtert dieses Tool den Wechsel zwischen Einheiten wie mg/dL und mmol/L und liefert genaue und verlässliche Ergebnisse für bessere Gesundheitseinblicke.',
selectBiomarkerLabel: "Biomarker auswählen",
inputValueLabel: "Wert eingeben",
inputValuePlaceholder: "Geben Sie einen Wert ein, z. B. 100",
sourceUnitLabel: "Von Einheit",
targetUnitLabel: "Nach Einheit",
convertButton: "Umrechnen",
resultLabel: "Ergebnis",
selectPlaceholder: "Biomarker auswählen",
selectUnitPlaceholder: "Einheit auswählen",
error: {
invalidValue: "Bitte geben Sie eine gültige Zahl ein.",
noBiomarkerSelected: "Bitte wählen Sie einen Biomarker aus.",
selectUnits: "Bitte wählen Sie sowohl die Ausgangs- als auch die Zieleinheit aus.",
conversionNotPossible: "Umrechnung für diese Einheiten/Biomarker nicht möglich.",
},
faq: {
title: "Häufig gestellte Fragen (FAQ)",
q1_question: "Wofür ist dieser Blutbiomarker-Einheitenumrechner?",
q1_answer: "Dieses Tool wurde entwickelt, um Ihnen die einfache Umrechnung von Blutbiomarker-Ergebnissen zwischen verschiedenen Maßeinheiten zu erleichtern, z.B. von konventionellen (z.B. mg/dL) in SI-Einheiten (z.B. mmol/L) oder umgekehrt. Es ist ideal, um Laborergebnisse aus verschiedenen Regionen oder Quellen zu verstehen.",
q2_question: "Wie genau sind die Umrechnungen, die dieses Tool bereitstellt?",
q2_answer: "Unsere Umrechnungen basieren auf allgemein anerkannten wissenschaftlichen Formeln und Molekulargewichten. Obwohl wir uns um hohe Genauigkeit bemühen, dient dieses Tool nur zu **Informationszwecken** und sollte keinen professionellen medizinischen Rat ersetzen. Konsultieren Sie immer einen Arzt für die Interpretation Ihrer Laborergebnisse.",
q3_question: "Welche spezifischen Biomarker und Einheiten werden unterstützt?",
q3_answer: "Wir unterstützen eine breite Palette gängiger Blutbiomarker wie Glukose, Kreatinin, Cholesterin, Schilddrüsenhormone und viele mehr. Die verfügbaren Einheiten (z.B. mmol/L, mg/dL, µmol/L, IE/L) erscheinen automatisch in den Dropdown-Menüs, sobald Sie einen Biomarker auswählen. Wenn eine Einheit für einen bestimmten Biomarker nicht aufgeführt ist, bedeutet dies, dass diese Umrechnung typischerweise nicht standardisiert oder derzeit nicht unterstützt wird.",
q4_question: "Werden meine persönlichen oder Gesundheitsdaten gespeichert?",
q4_answer: "Nein. Ihre Privatsphäre ist von größter Bedeutung. Dieser Einheitenumrechner arbeitet vollständig **clientseitig in Ihrem Browser**, was bedeutet, dass keine persönlichen Gesundheitsdaten, eingegebenen Werte oder Umrechnungsergebnisse an unsere Server gesendet oder dort gespeichert werden. Alle Vorgänge sind temporär und sicher.",
q5_question: "Was, wenn meine spezifische Einheit oder mein Biomarker nicht aufgeführt ist?",
q5_answer: "Wenn ein Biomarker oder eine bestimmte Einheit für diesen Biomarker in den Dropdown-Listen nicht verfügbar ist, bedeutet dies, dass unsere Datenbank ihn derzeit nicht unterstützt. Wir arbeiten kontinuierlich daran, unsere Abdeckung zu erweitern. Bitte schauen Sie später noch einmal vorbei oder kontaktieren Sie uns, wenn Sie einen Vorschlag haben.",
q6_question: "Kann ich diesen Umrechner auch für andere Arten von Einheitenumrechnungen (z.B. Gewicht, Länge) verwenden?",
q6_answer: "Nein, dieser Umrechner ist ausschließlich auf die Umrechnung von Maßeinheiten für **Blutbiomarker** spezialisiert. Er wurde für medizinische Zwecke und die Analyse von Laborwerten entwickelt.",
q7_question: "Was ist der Unterschied zwischen konventionellen Einheiten und SI-Einheiten?",
q7_answer: "Konventionelle Einheiten werden oft in den USA verwendet, während SI-Einheiten (Système International d'Unités) ein internationaler Standard sind. Zum Beispiel könnten Glukosespiegel in mg/dL (konventionell) oder mmol/L (SI) gemessen werden. Unser Umrechner ermöglicht Ihnen den einfachen Wechsel zwischen diesen Systemen, was für medizinisches Fachpersonal und Patienten, die mit Daten aus verschiedenen Quellen arbeiten, von entscheidender Bedeutung ist.",
q8_question: "Gibt es eine mobile Version oder App für diesen Umrechner?",
q8_answer: "Unser Umrechner ist vollständig für mobile Geräte optimiert und funktioniert perfekt in jedem modernen Browser auf einem Smartphone oder Tablet. Eine separate mobile App gibt es derzeit nicht, aber Sie können die Website für schnellen Zugriff zu Ihrem Startbildschirm hinzufügen.",
q9_question: "Wie oft wird die Biomarker- und Einheiten-Datenbank aktualisiert?",
q9_answer: "Wir arbeiten ständig daran, unsere Datenbank mit Biomarkern und deren Einheiten zu erweitern und zu aktualisieren. Updates werden regelmäßig veröffentlicht, um die Genauigkeit und Aktualität der Daten zu gewährleisten. Wir freuen uns über Ihre Vorschläge zum Hinzufügen neuer Biomarker oder Einheiten.",
},
howItWorks: {
title: "So funktioniert's",
step1: {
title: "Biomarker auswählen",
description: "Wählen Sie den gewünschten Blutbiomarker aus der Dropdown-Liste aus, den Sie umrechnen möchten.",
},
step2: {
title: "Wert eingeben & Einheiten wählen",
description: "Geben Sie den numerischen Wert Ihres Ergebnisses in das Feld 'Umzurechnender Wert' ein und wählen Sie dann die Quell- und Zieleinheit aus.",
},
step3: {
title: "Umrechnungsergebnis erhalten",
description: "Klicken Sie auf die Schaltfläche 'Umrechnen', um den genauen Biomarkerwert sofort in die ausgewählte Einheit umgerechnet zu erhalten.",
},
},
},
biomarkers: {
"Glucose": "Glukose",
"Creatinine": "Kreatinin",
"Urea": "Harnstoff",
"Bilirubin (Total)": "Bilirubin (Gesamt)",
"Total Cholesterol": "Gesamtcholesterin",
"HDL Cholesterol": "HDL-Cholesterin",
"LDL Cholesterol": "LDL-Cholesterin",
"Triglycerides": "Triglyceride",
"Uric Acid": "Harnsäure",
"Calcium (Total)": "Kalzium (Gesamt)",
"Phosphorus (Phosphate)": "Phosphor (Phosphat)",
"Magnesium": "Magnesium",
"Sodium": "Natrium",
"Potassium": "Kalium",
"Chloride": "Chlorid",
"Glycated Hemoglobin (HbA1c)": "Glykiertes Hämoglobin (HbA1c)",
"D-dimer": "D-Dimer",
"Procalcitonin (PCT)": "Procalcitonin (PCT)",
"B-type Natriuretic Peptide (BNP)": "B-Typ Natriuretisches Peptid (BNP)",
"N-terminal pro-brain natriuretic peptide (NT-proBNP)": "N-terminales pro-Brain Natriuretisches Peptid (NT-proBNP)",
"Homocysteine": "Homocystein",
"Ferritin": "Ferritin",
"Vitamin B12 (Cobalamin)": "Vitamin B12 (Cobalamin)",
"Folic Acid (Folate)": "Folsäure (Folat)",
"25-OH Vitamin D (Calcidiol)": "25-OH Vitamin D (Calcidiol)",
"TSH": "TSH",
"Free T3": "Freies T3",
"Total T3": "Gesamt-T3",
"Free T4": "Freies T4",
"Total T4": "Gesamt-T4",
"Cortisol": "Cortisol",
"Testosterone (Total)": "Testosteron (Gesamt)",
"Estradiol": "Estradiol",
"Progesterone": "Progesteron",
"Prolactin": "Prolaktin",
"Insulin": "Insulin",
"C-peptide": "C-Peptid",
"Parathyroid hormone (PTH)": "Parathormon (PTH)",
"PSA (Total)": "PSA (Gesamt)",
"PSA (Free)": "PSA (Frei)",
"Fibrinogen": "Fibrinogen",
"Serum Iron": "Serumeisen",
"Red Blood Cell Count (RBC)": "Rote Blutkörperchenzahl (RBC)",
"Hemoglobin (HGB)": "Hämoglobin (HGB)",
"Hematocrit (HCT)": "Hämatokrit (HCT)",
"Mean Corpuscular Volume (MCV)": "Mittleres Korpuskuläres Volumen (MCV)",
"Mean Corpuscular Hemoglobin (MCH)": "Mittleres Korpuskuläres Hämoglobin (MCH)",
"Mean Corpuscular Hemoglobin Concentration (MCHC)": "Mittlere Korpuskuläre Hämoglobin-Konzentration (MCHC)",
"Red Cell Distribution Width (RDW)": "Rote Blutkörperchenverteilungsbreite (RDW)",
"White Blood Cell Count (WBC)": "Weiße Blutkörperchenzahl (WBC)",
"White Blood Cell Differential (Neutrophils, Lymphocytes, Monocytes, Eosinophils, Basophils)": "Differenzialblutbild (Neutrophile, Lymphozyten, Monozyten, Eosinophile, Basophile)",
"Platelet Count (PLT)": "Thrombozytenzahl (PLT)",
"Mean Platelet Volume (MPV)": "Mittleres Thrombozytenvolumen (MPV)",
"Erythrocyte Sedimentation Rate (ESR)": "Erythrozytensedimentationsrate (ESR)",
"Total Protein": "Gesamteiweiß",
"Albumin": "Albumin",
"Bilirubin (Direct)": "Bilirubin (Direkt)",
"Bilirubin (Indirect)": "Bilirubin (Indirekt)",
"Alanine Aminotransferase (ALT)": "Alanin-Aminotransferase (ALT)",
"Aspartate Aminotransferase (AST)": "Aspartat-Aminotransferase (AST)",
"Gamma-glutamyl transferase (GGT)": "Gamma-Glutamyl-Transferase (GGT)",
"Alkaline Phosphatase (ALP)": "Alkalische Phosphatase (ALP)",
"Amylase": "Amylase",
"Lipase": "Lipase",
"Calcium (Ionized)": "Kalzium (Ionisiert)",
"Creatine Kinase (CK)": "Kreatinkinase (CK)",
"Creatine Kinase-MB (CK-MB)": "Kreatinkinase-MB (CK-MB)",
"Lactate Dehydrogenase (LDH)": "Laktatdehydrogenase (LDH)",
"Adrenocorticotropic hormone (ACTH)": "Adrenocorticotropes Hormon (ACTH)",
"Follicle-stimulating hormone (FSH)": "Follikelstimulierendes Hormon (FSH)",
"Luteinizing hormone (LH)": "Luteinisierendes Hormon (LH)",
"C-reactive protein (CRP)": "C-reaktives Protein (CRP)",
"Rheumatoid Factor (RF)": "Rheumafaktor (RF)",
"Immunoglobulin A (IgA)": "Immunglobulin A (IgA)",
"Immunoglobulin G (IgG)": "Immunglobulin G (IgG)",
"Immunoglobulin M (IgM)": "Immunglobulin M (IgM)",
"Troponin T": "Troponin T",
"Troponin I": "Troponin I",
"Lipoprotein (a) - Lp(a)": "Lipoprotein (a) - Lp(a)",
"CA-125": "CA-125",
"CEA": "CEA",
"AFP": "AFP",
"CA-19-9": "CA-19-9",
"CA-15-3": "CA-15-3",
"HCG": "HCG",
"Prothrombin Time (PT)": "Prothrombinzeit (PT)",
"INR (International Normalized Ratio)": "INR (International Normalized Ratio)",
"Activated Partial Thromboplastin Time (aPTT)": "Aktivierte Partielle Thromboplastinzeit (aPTT)",
"D-dimer (Coagulation)": "D-Dimer (Koagulation)",
"Total Iron-Binding Capacity (TIBC)": "Totale Eisenbindungskapazität (TIBC)"
},
biomarker: {
title: "Biomarker",
description: "Entdecken Sie einen umfassenden Leitfaden zu verschiedenen Gesundheitsbiomarkern.",