translation patches from Dr. Bosman and his crew
[openemr.git] / interface / forms / physical_exam / lines.php
blobda5b5983c32a5510d1db38aa4cf34ecb8845f66a
1 <?php
3 // The hash is overkill, but easy to traverse for presenting the form.
4 // The first level key is the displayed category name, and the second
5 // level is the line_id for the database. Be careful not to duplicate
6 // these IDs!
8 $pelines = array(
9 'GEN' => array(
10 'GENWELL' => xl('Appearance')),
11 'EYE' => array(
12 'EYECP' => xl('Conjuntiva, pupils')),
13 'ENT' => array(
14 'ENTTM' => xl('TMs/EAMs/EE, ext nose'),
15 'ENTNASAL' => xl('Nasal mucosa pink, septum midline'),
16 'ENTORAL' => xl('Oral mucosa pink, throat clear'),
17 'ENTNECK' => xl('Neck supple'),
18 'ENTTHY' => xl('Thyroid normal')),
19 'CV' => array(
20 'CVRRR' => xl('RRR without MOR'),
21 'CVNTOH' => xl('No thrills or heaves'),
22 'CVCP' => xl('Cartoid pulsations nl, pedal pulses nl'),
23 'CVNPE' => xl('No peripheral edema')),
24 'CHEST' => array(
25 'CHNSD' => xl('No skin dimpling or breast nodules')),
26 'RESP' => array(
27 'RECTAB' => xl('Chest CTAB'),
28 'REEFF' => xl('Respirator effort unlabored')),
29 'GI' => array(
30 'GIMASS' => xl('No masses, tenderness'),
31 'GIOG' => xl('No ogrganomegoly'),
32 'GIHERN' => xl('No hernia'),
33 'GIRECT' => xl('Anus nl, no rectal tenderness/mass')),
34 'GU' => array(
35 'GUTEST' => xl('No testicular tenderness, masses'),
36 'GUPROS' => xl('Prostate w/o enlrgmt, nodules, tender'),
37 'GUEG' => xl('Nl ext genitalia, vag mucosa, cervix'),
38 'GUAD' => xl('No adnexal tenderness/masses')),
39 'LYMPH' => array(
40 'LYAD' => xl('No adenopathy (2 areas required)')),
41 'MUSC' => array(
42 'MUSTR' => xl('Strength'),
43 'MUROM' => xl('ROM'),
44 'MUSTAB' => xl('Stability'),
45 'MUINSP' => xl('Inspection')),
46 'NEURO' => array(
47 'NEUCN2' => xl('CN2-12 intact'),
48 'NEUREF' => xl('Reflexes normal'),
49 'NEUSENS' => xl('Sensory exam normal')),
50 'PSYCH' => array(
51 'PSYOR' => xl('Orientated x 3'),
52 'PSYAFF' => xl('Affect normal')),
53 'SKIN' => array(
54 'SKRASH' => xl('No rash or abnormal lesions')),
55 'OTHER' => array(
56 'OTHER' => xl('Other')),
58 // These generate the Treatment lines:
59 '*' => array(
60 'TRTLABS' => xl('Labs'),
61 'TRTXRAY' => xl('X-ray'),
62 'TRTRET' => xl('Return Visit'))