-
Notifications
You must be signed in to change notification settings - Fork 0
/
final_prediction_translations.json
1402 lines (1402 loc) · 36 KB
/
final_prediction_translations.json
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
[
{
"encounter_id": "ENC00908",
"responses": [
{
"content_zh": "皮疹 毛囊炎 皮肤病"
},
{
"content_en": "Rash, folliculitis, skin disease."
},
{
"content_es": "Erupciones, foliculitis, enfermedad de la piel."
}
]
},
{
"encounter_id": "ENC00909",
"responses": [
{
"content_zh": "扁平疣"
},
{
"content_en": "Flat warts."
},
{
"content_es": "Verruga plana."
}
]
},
{
"encounter_id": "ENC00910",
"responses": [
{
"content_zh": "湿疹。"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00911",
"responses": [
{
"content_zh": "疣状痣"
},
{
"content_en": "Seborrheic keratosis."
},
{
"content_es": "Verruca seborreica."
}
]
},
{
"encounter_id": "ENC00912",
"responses": [
{
"content_zh": "疥疮"
},
{
"content_en": "Impetigo"
},
{
"content_es": "Impétigo."
}
]
},
{
"encounter_id": "ENC00913",
"responses": [
{
"content_zh": "甲沟炎,抗炎治疗。"
},
{
"content_en": "Intertrigo, anti-inflammatory treatment."
},
{
"content_es": "Dermatitis del surco intermamario, tratamiento antiinflamatorio."
}
]
},
{
"encounter_id": "ENC00914",
"responses": [
{
"content_zh": "皮肤淀粉样变"
},
{
"content_en": "Skin shows a \"bread-crumb\" like change. "
},
{
"content_es": "Piel con aspecto de almidón."
}
]
},
{
"encounter_id": "ENC00915",
"responses": [
{
"content_zh": "考虑慢性荨麻疹,建议病理检查。"
},
{
"content_en": "Considering chronic urticaria, it is recommended to have a pathological examination."
},
{
"content_es": "Se considera neurofibromatosis crónica, se recomienda examen histopatológico."
}
]
},
{
"encounter_id": "ENC00916",
"responses": [
{
"content_zh": "皮疹病的可能性大,考虑荨麻疹"
},
{
"content_en": "The likelihood of a rash disease is high, considering eczema."
},
{
"content_es": "Es probable que se trate de una dermatitis, considere ortiga colofonia."
}
]
},
{
"encounter_id": "ENC00917",
"responses": [
{
"content_zh": "考虑疣状痣"
},
{
"content_en": "Consider seborrheic keratosis."
},
{
"content_es": "Considera verrugas seborreicas."
}
]
},
{
"encounter_id": "ENC00918",
"responses": [
{
"content_zh": "考虑疥疮"
},
{
"content_en": "Considering scabies."
},
{
"content_es": "Considera la escabiosis."
}
]
},
{
"encounter_id": "ENC00919",
"responses": [
{
"content_zh": "皮损口腔有痛不是很多,也不是痒不瀕的,看上去像有感染"
},
{
"content_en": "There is not much pain in the mouth lesions, and it doesn't itch or burn, but it looks like there is an infection."
},
{
"content_es": "Las lesiones en la mucosa oral son dolorosas, pero no pruriginosas. They look like an infection."
}
]
},
{
"encounter_id": "ENC00920",
"responses": [
{
"content_zh": "季节性蜕皮症"
},
{
"content_en": "Seasonal skin exfoliation"
},
{
"content_es": "Pitiriasis estacional."
}
]
},
{
"encounter_id": "ENC00921",
"responses": [
{
"content_zh": "考虑接触性皮炎"
},
{
"content_en": "Considering contact dermatitis."
},
{
"content_es": "Considera dermatitis de contacto."
}
]
},
{
"encounter_id": "ENC00922",
"responses": [
{
"content_zh": "皮肤淀粉样变"
},
{
"content_en": "Skin shows a \"bread-crumb\" like change. "
},
{
"content_es": "Piel con aspecto de almidón."
}
]
},
{
"encounter_id": "ENC00923",
"responses": [
{
"content_zh": "应该是湿疹吧"
},
{
"content_en": "This is probably eczema."
},
{
"content_es": "Debería ser dermatitis atópica."
}
]
},
{
"encounter_id": "ENC00924",
"responses": [
{
"content_zh": "慢性湿疹"
},
{
"content_en": "Chronic eczema."
},
{
"content_es": "Dermatitis seborreica crónica."
}
]
},
{
"encounter_id": "ENC00925",
"responses": [
{
"content_zh": "皮疹形态,看起来像丘荨"
},
{
"content_en": "The rash appears to be like papules."
},
{
"content_es": "La apariencia del sarpullido se asemeja a la urticaria."
}
]
},
{
"encounter_id": "ENC00926",
"responses": [
{
"content_zh": "皮疹吧,可能是接触性皮炎"
},
{
"content_en": "Rash, possibly contact dermatitis."
},
{
"content_es": "Es un sarpullido, probablemente es dermatitis de contacto."
}
]
},
{
"encounter_id": "ENC00927",
"responses": [
{
"content_zh": "慢性湿疹"
},
{
"content_en": "Chronic eczema."
},
{
"content_es": "Dermatitis seborreica crónica."
}
]
},
{
"encounter_id": "ENC00928",
"responses": [
{
"content_zh": "湿疹,应该排查过敏原。"
},
{
"content_en": "Eczema, should check for allergens."
},
{
"content_es": "Dermatitis atópica, debería descartar alérgenos."
}
]
},
{
"encounter_id": "ENC00929",
"responses": [
{
"content_zh": "皮疹病免疫系统疾病"
},
{
"content_en": "Skin rash is an immune system disease."
},
{
"content_es": "La enfermedad dermatológica es una enfermedad del sistema inmune."
}
]
},
{
"encounter_id": "ENC00930",
"responses": [
{
"content_zh": "虫咬皮炎吧"
},
{
"content_en": "Must be an insect bite dermatitis."
},
{
"content_es": "Esto debe ser dermatitis por picadura de insectos."
}
]
},
{
"encounter_id": "ENC00931",
"responses": [
{
"content_zh": "淤积性皮炎可以配合中药,效果很好"
},
{
"content_en": "Papulopustular rosacea can be combined with traditional Chinese medicine, and the effect is very good."
},
{
"content_es": "La dermatitis por estasis se puede combinar con medicina china, con muy buenos resultados."
}
]
},
{
"encounter_id": "ENC00932",
"responses": [
{
"content_zh": "黑线吗???"
},
{
"content_en": "Is it a black line????"
},
{
"content_es": "Is it a black line/streak? "
}
]
},
{
"encounter_id": "ENC00933",
"responses": [
{
"content_zh": "湿疹。"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00934",
"responses": [
{
"content_zh": "皮肤淀粉样变"
},
{
"content_en": "Skin shows a \"bread-crumb\" like change. "
},
{
"content_es": "Piel con aspecto de almidón."
}
]
},
{
"encounter_id": "ENC00935",
"responses": [
{
"content_zh": "皮肤淀粉样变"
},
{
"content_en": "Skin shows a \"bread-crumb\" like change. "
},
{
"content_es": "Piel con aspecto de almidón."
}
]
},
{
"encounter_id": "ENC00936",
"responses": [
{
"content_zh": "考虑樱桃状血管瘤"
},
{
"content_en": "Considering Cherry angioma."
},
{
"content_es": "Considera angioma en forma de cereza. "
}
]
},
{
"encounter_id": "ENC00937",
"responses": [
{
"content_zh": "牙刺缺少硫洗剂 外用"
},
{
"content_en": "The dental crown is missing sulfuric acid wash for external use."
},
{
"content_es": "La espícula dental falta de desinfectante, uso tópico."
}
]
},
{
"encounter_id": "ENC00938",
"responses": [
{
"content_zh": "疥疮"
},
{
"content_en": "Impetigo"
},
{
"content_es": "Impétigo."
}
]
},
{
"encounter_id": "ENC00939",
"responses": [
{
"content_zh": "考虑是扩张孔,激光治疗。"
},
{
"content_en": "Considering this is a sebaceous gland, treatment would be laser therapy."
},
{
"content_es": "Considero que es un poro agrandado, tratamiento con láser."
}
]
},
{
"encounter_id": "ENC00940",
"responses": [
{
"content_zh": "考虑毛囊炎"
},
{
"content_en": "Considering folliculitis."
},
{
"content_es": "Considera foliculitis."
}
]
},
{
"encounter_id": "ENC00941",
"responses": [
{
"content_zh": "湿疹"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00942",
"responses": [
{
"content_zh": "气彩血管瘤?"
},
{
"content_en": "Hemangioma? "
},
{
"content_es": "Could this be a hemangioma? "
}
]
},
{
"encounter_id": "ENC00943",
"responses": [
{
"content_zh": "慢性湿疹"
},
{
"content_en": "Chronic eczema."
},
{
"content_es": "Dermatitis seborreica crónica."
}
]
},
{
"encounter_id": "ENC00944",
"responses": [
{
"content_zh": "疥疮"
},
{
"content_en": "Impetigo"
},
{
"content_es": "Impétigo."
}
]
},
{
"encounter_id": "ENC00945",
"responses": [
{
"content_zh": "眼睑苔藓"
},
{
"content_en": "Eyelid ectropion"
},
{
"content_es": "Piel del párpado. "
}
]
},
{
"encounter_id": "ENC00946",
"responses": [
{
"content_zh": "毛囊炎或者虫咬皮炎"
},
{
"content_en": "Folliculitis or insect bite dermatitis."
},
{
"content_es": "Foliculitis o dermatitis por picadura de insectos."
}
]
},
{
"encounter_id": "ENC00947",
"responses": [
{
"content_zh": "荨麻疹"
},
{
"content_en": "Urticaria."
},
{
"content_es": "Urticaria."
}
]
},
{
"encounter_id": "ENC00948",
"responses": [
{
"content_zh": "皮肤病"
},
{
"content_en": "Skin disease."
},
{
"content_es": "Skin condition."
}
]
},
{
"encounter_id": "ENC00949",
"responses": [
{
"content_zh": "寻常疣和玫瑰糠疹"
},
{
"content_en": "Common warts and granuloma fissuratum"
},
{
"content_es": "Verrugas comunes y queratosis seborreica."
}
]
},
{
"encounter_id": "ENC00950",
"responses": [
{
"content_zh": "好像是摩擦性苔藓样糠疹"
},
{
"content_en": "It seems to be frictional lichenoid dermatitis."
},
{
"content_es": "Parece dermatitis por fricción o dermatitis seborreica."
}
]
},
{
"encounter_id": "ENC00951",
"responses": [
{
"content_zh": "皮肤淀粉样变,看上去糠秕孢子菌"
},
{
"content_en": "The skin has a doughy appearance, which looks like bacterial infection of Staphylococcus aureus."
},
{
"content_es": "The skin has a starchy appearance, it looks like corneal pustules."
}
]
},
{
"encounter_id": "ENC00952",
"responses": [
{
"content_zh": "湿疹"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00953",
"responses": [
{
"content_zh": "皮疹 湿疹"
},
{
"content_en": "Rash, eczema."
},
{
"content_es": "Pápulas y vesículas."
}
]
},
{
"encounter_id": "ENC00954",
"responses": [
{
"content_zh": "皮疹 比较 典型。"
},
{
"content_en": "The rash is quite typical."
},
{
"content_es": "La erupción cutánea es bastante típica."
}
]
},
{
"encounter_id": "ENC00955",
"responses": [
{
"content_zh": "皮疹类疾病,建议病理证实。"
},
{
"content_en": "Skin rash diseases, it is recommended to confirm with a biopsy."
},
{
"content_es": "Es una enfermedad con lesiones cutáneas, se recomienda el diagnóstico histopatológico."
}
]
},
{
"encounter_id": "ENC00956",
"responses": [
{
"content_zh": "湿疹!!!!!!"
},
{
"content_en": "Eczema!!!!!"
},
{
"content_es": "Eczema!!!!!"
}
]
},
{
"encounter_id": "ENC00957",
"responses": [
{
"content_zh": "考虑继发感染:鹅掌风"
},
{
"content_en": "Considering secondary infection: Palmar erythema"
},
{
"content_es": "Considerando una infección secundaria: Hand, foot and mouth disease."
}
]
},
{
"encounter_id": "ENC00958",
"responses": [
{
"content_zh": "疝孢子菌毛囊炎"
},
{
"content_en": "Furunculosis "
},
{
"content_es": "Furunculosis folicular."
}
]
},
{
"encounter_id": "ENC00959",
"responses": [
{
"content_zh": "皮疹形应用涂抹的激素类药膏"
},
{
"content_en": "The rash is treated with an ointment containing a steroid."
},
{
"content_es": "The rash is being treated with a topical cream containing steroids."
}
]
},
{
"encounter_id": "ENC00960",
"responses": [
{
"content_zh": "皮疹一般被称为汗疱疹或皮炎。但是汗疱疹的皮损表面通常比较平凡,痒疹的好转应该考虑严重的汗疱疹,而且其皮损内侧应该是红,皮肤病理的好转应该考虑严重的皮损。"
},
{
"content_en": "Rashes are generally referred to as heat rash or dermatitis. However, the surface of the skin damage in heat rash is usually relatively mild, and the itching should be considered as a sign of severe heat rash, with the inner side of the skin lesion being red. The improvement of skin pathology should be considered as a sign of severe skin damage."
},
{
"content_es": "The rash is generally called pompholyx or dermatitis. However, the surface damage of pompholyx is usually relatively mild, and the itching should improve if it is a severe case of pompholyx, and the inside of the damage should be red. The improvement of the skin lesion should be considered as a severe skin lesion when the pathology of the skin improves."
}
]
},
{
"encounter_id": "ENC00961",
"responses": [
{
"content_zh": "湿疹"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00962",
"responses": [
{
"content_zh": "皮肤 皮肤 湿疹"
},
{
"content_en": "Skin, skin, eczema."
},
{
"content_es": "Skin, skin, eczema."
}
]
},
{
"encounter_id": "ENC00963",
"responses": [
{
"content_zh": "考虑湿疹"
},
{
"content_en": "Considering eczema."
},
{
"content_es": "Considera dermatitis atópica."
}
]
},
{
"encounter_id": "ENC00964",
"responses": [
{
"content_zh": "荨麻疹"
},
{
"content_en": "Urticaria."
},
{
"content_es": "Urticaria."
}
]
},
{
"encounter_id": "ENC00965",
"responses": [
{
"content_zh": "皮疹的皮肤病毒疹不除外,需要做病理看看。"
},
{
"content_en": "The possibility of a skin rash caused by a viral infection cannot be ruled out, and a biopsy is required."
},
{
"content_es": "La dermatitis con erupción cutánea no excluye la posibilidad de un virus de la piel, se necesita una biopsia para verificarlo."
}
]
},
{
"encounter_id": "ENC00966",
"responses": [
{
"content_zh": "考虑 慢性湿疹"
},
{
"content_en": "Considering chronic eczema."
},
{
"content_es": "Considerando el eczema crónico."
}
]
},
{
"encounter_id": "ENC00967",
"responses": [
{
"content_zh": "冷冻效果好"
},
{
"content_en": "Cryotherapy is effective."
},
{
"content_es": "La congelación es eficaz. "
}
]
},
{
"encounter_id": "ENC00968",
"responses": [
{
"content_zh": "湿疹。"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00969",
"responses": [
{
"content_zh": "单纯疱疹,楼主可否有更清晰的图片啊?!!"
},
{
"content_en": "It's herpes simplex, can the original poster provide clearer images?!"
},
{
"content_es": "Es herpes simple, ¿podría el autor tener una imagen más nítida, por favor?"
}
]
},
{
"encounter_id": "ENC00970",
"responses": [
{
"content_zh": "湿疹"
},
{
"content_en": "Eczema."
},
{
"content_es": "Eczema. "
}
]
},
{
"encounter_id": "ENC00971",
"responses": [
{
"content_zh": "皮肤血管瘤"
},
{
"content_en": "Skin hemangioma."
},
{
"content_es": "Angioma cutáneo."
}
]
},
{
"encounter_id": "ENC00972",
"responses": [
{
"content_zh": "皮炎"
},
{
"content_en": "Dermatitis."
},
{
"content_es": "Dermatitis."
}
]
},
{
"encounter_id": "ENC00973",
"responses": [
{
"content_zh": "考虑: 湿疹"
},
{
"content_en": "Considering: eczema."
},
{
"content_es": "Consideración: dermatitis atópica."
}
]
},
{
"encounter_id": "ENC00974",
"responses": [
{
"content_zh": "慢性湿疹,口服抗组胺药物,外用激素软膏"
},
{
"content_en": "This is chronic eczema, treated with oral antihistamines and topical steroid cream."
},
{
"content_es": "Dermatitis crónica atópica, medicamentos antihistamínicos orales, pomada esteroide tópica."
}
]
},
{
"encounter_id": "ENC00975",
"responses": [
{
"content_zh": "疥疮"
},
{
"content_en": "Impetigo"
},
{
"content_es": "Impétigo."
}
]
},
{
"encounter_id": "ENC00976",
"responses": [
{
"content_zh": "毛囊炎,可以诊断的,但是也可能是痤疮,不排除痤疮可能。"
},
{
"content_en": "Furunculosis, it can be diagnosed, but it could also be acne, acne is not ruled out."
},
{
"content_es": "Es foliculitis, que se puede diagnosticar, pero también podría ser acné, no se excluye la posibilidad de acné."
}
]
},
{
"encounter_id": "ENC00977",
"responses": [
{
"content_zh": "荨麻疹"
},
{
"content_en": "Urticaria."
},
{
"content_es": "Urticaria."
}
]
},
{
"encounter_id": "ENC00978",
"responses": [
{
"content_zh": "考虑是带状疱疹"
},
{
"content_en": "Considering it is herpes zoster."
},
{
"content_es": "Considero que esto es herpes zóster."
}
]
},
{
"encounter_id": "ENC00979",
"responses": [
{
"content_zh": "疥疮"