-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlog.txt
1219 lines (1212 loc) · 115 KB
/
log.txt
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
Checking constants:
Following constant not same:
original- val:A place to document and display the patient's past medical history, family history, personal history
spreadsheet- ID:34 val:A place to document and display the patient\'s past medical history, family history, personal history
Following constant not same:
original- val:A provider or warehouse can be selected in the dropwdown box. For this option to be displayed 'Support provider in line item in fee sheet' box must be checked in Administration > Globals> Billing page
spreadsheet- ID:39 val:A provider or warehouse can be selected in the dropwdown box. For this option to be displayed \'Support provider in line item in fee sheet\' box must be checked in Administration > Globals> Billing page
Following constant not same:
original- val:A third alternative is to scan the results and save it as a document - TIFF, JPEG or PDF in the patient's chart under documents
spreadsheet- ID:54 val:A third alternative is to scan the results and save it as a document - TIFF, JPEG or PDF in the patient\'s chart under documents
Following constant not same:
original- val:Active Alert - that presents as a pop-up notification when a patient's chart is entered
spreadsheet- ID:168 val:Active Alert - that presents as a pop-up notification when a patient\'s chart is entered
Following constant not same:
original- val:Add desired privileges by moving items (ACOs) from the 'Inactive' column to the 'Active' column.
spreadsheet- ID:233 val:Add desired privileges by moving items (ACOs) from the \'Inactive\' column to the \'Active\' column.
Following constant not same:
original- val:After Uploading click the button "Import"
spreadsheet- ID:433 val:After Uploading click the button \"Import\"
Following constant not same:
original- val:After Uploading, click "Import"
spreadsheet- ID:434 val:After Uploading, click \"Import\"
Following constant not same:
original- val:After you filled in the spreadsheet with the relevant ICD categories and ICD codes go to Administration > Lists. Select 'Service Category' from the dropdown box
spreadsheet- ID:435 val:After you filled in the spreadsheet with the relevant ICD categories and ICD codes go to Administration > Lists. Select \'Service Category\' from the dropdown box
Following constant not same:
original- val:After you have finished entering all the ICD 10 codes go to Adminstration > Lists and select 'Code Types' from the dropdown box. Select 'ICD10 Diagnosis' from the last dropdown box under ICD 10
spreadsheet- ID:436 val:After you have finished entering all the ICD 10 codes go to Adminstration > Lists and select \'Code Types\' from the dropdown box. Select \'ICD10 Diagnosis\' from the last dropdown box under ICD 10
Following constant not same:
original- val:Age format for "age from" is not valid
spreadsheet- ID:446 val:Age format for \"age from\" is not valid
Following constant not same:
original- val:Age format for "age up to" is not valid
spreadsheet- ID:447 val:Age format for \"age up to\" is not valid
Following constant not same:
original- val:Allow Check In before the appointment's time.
spreadsheet- ID:534 val:Allow Check In before the appointment\'s time.
Following constant not same:
original- val:Alternatively, you may choose to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by first selecting the 'ERA upload' option in the initial 'Select Method' section. This brings up the 'ERA Upload' Section.
spreadsheet- ID:627 val:Alternatively, you may choose to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by first selecting the \'ERA upload\' option in the initial \'Select Method\' section. This brings up the \'ERA Upload\' Section.
Following constant not same:
original- val:An Issue concerns matters relating to the patient's health
spreadsheet- ID:687 val:An Issue concerns matters relating to the patient\'s health
Following constant not same:
original- val:Are you sure you'd like to quit without saving your answers?
spreadsheet- ID:876 val:Are you sure you\'d like to quit without saving your answers?
Following constant not same:
original- val:Aud URI (use this in the "aud" claim of your JWT)
spreadsheet- ID:949 val:Aud URI (use this in the \"aud\" claim of your JWT)
Following constant not same:
original- val:Automatically create a new encounter when appointment status is set to "@" (arrived).
spreadsheet- ID:1030 val:Automatically create a new encounter when appointment status is set to \"@\" (arrived).
Following constant not same:
original- val:Based on the individual practice's need the tests can be organized into various groups
spreadsheet- ID:1121 val:Based on the individual practice\'s need the tests can be organized into various groups
Following constant not same:
original- val:Being so restless that it's hard to sit still
spreadsheet- ID:1162 val:Being so restless that it\'s hard to sit still
Following constant not same:
original- val:button to clear Location selections, "Send" button to send templates to patient(s) or profiles
spreadsheet- ID:1373 val:button to clear Location selections, \"Send\" button to send templates to patient(s) or profiles
Following constant not same:
original- val:By default all codes are selected, uncheck the codes you do not want and click 'Add'. These codes will then be added to the current encounter
spreadsheet- ID:1377 val:By default all codes are selected, uncheck the codes you do not want and click \'Add\'. These codes will then be added to the current encounter
Following constant not same:
original- val:By selecting a payment method the rates calculated for that payment method will be automatically displayed in 'Selected Fee Sheet Codes and Charges for Current Encounter' section
spreadsheet- ID:1382 val:By selecting a payment method the rates calculated for that payment method will be automatically displayed in \'Selected Fee Sheet Codes and Charges for Current Encounter\' section
Following constant not same:
original- val:Can't find file!
spreadsheet- ID:1417 val:Can\'t find file!
Following constant not same:
original- val:Can't upload
spreadsheet- ID:1418 val:Can\'t upload
Following constant not same:
original- val:Click 'export' to export your Category, Subcategory, Item, Content data to a text file. Any resemblance of this file to an XML file is purely coincidental. The opening and closing tags must be on the same line, they must be lowercase with no spaces. To import, browse for a file and click 'import'. If the data is completely different, it will merge with your existing data. If there are similar item names, The old one will be kept and the new one saved with a number added to the end.
spreadsheet- ID:1782 val:Click \'export\' to export your Category, Subcategory, Item, Content data to a text file. Any resemblance of this file to an XML file is purely coincidental. The opening and closing tags must be on the same line, they must be lowercase with no spaces. To import, browse for a file and click \'import\'. If the data is completely different, it will merge with your existing data. If there are similar item names, The old one will be kept and the new one saved with a number added to the end.
Following constant not same:
original- val:Click 'Save'
spreadsheet- ID:1783 val:Click \'Save\'
Following constant not same:
original- val:Click 'Save'. Now you will be able to use the Search feature to search all ICD 10 codes
spreadsheet- ID:1784 val:Click \'Save\'. Now you will be able to use the Search feature to search all ICD 10 codes
Following constant not same:
original- val:Click on the 'Add Group' button to create this new group (ARO).
spreadsheet- ID:1852 val:Click on the \'Add Group\' button to create this new group (ARO).
Following constant not same:
original- val:Click on the icon next to the 'Access Control List Administration' title to go to the phpGACL page.
spreadsheet- ID:1864 val:Click on the icon next to the \'Access Control List Administration\' title to go to the phpGACL page.
Following constant not same:
original- val:Click the 'Add New Group' button to display the 'New Group Information' section.
spreadsheet- ID:1881 val:Click the \'Add New Group\' button to display the \'New Group Information\' section.
Following constant not same:
original- val:Click the 'Delete Group' button to completely remove this group.
spreadsheet- ID:1882 val:Click the \'Delete Group\' button to completely remove this group.
Following constant not same:
original- val:Click the 'Remove Group' button to display the 'Remove Group Form'.
spreadsheet- ID:1883 val:Click the \'Remove Group\' button to display the \'Remove Group Form\'.
Following constant not same:
original- val:Click the 'Yes' radio button.
spreadsheet- ID:1884 val:Click the \'Yes\' radio button.
Following constant not same:
original- val:Clicking on 'Review' will list all the codes entered for previous encounters
spreadsheet- ID:1968 val:Clicking on \'Review\' will list all the codes entered for previous encounters
Following constant not same:
original- val:Clicking on the icon next to the caption will display everyone's messages and the caption will change to All Messages
spreadsheet- ID:1978 val:Clicking on the icon next to the caption will display everyone\'s messages and the caption will change to All Messages
Following constant not same:
original- val:Clicking on the icon next to their name will bring up the 'Edit' window.
spreadsheet- ID:1979 val:Clicking on the icon next to their name will bring up the \'Edit\' window.
Following constant not same:
original- val:Clicking on the patient's name will reveal the message
spreadsheet- ID:1981 val:Clicking on the patient\'s name will reveal the message
Following constant not same:
original- val:Clicking the button will reveal a popup that will list the E/M codes, check the appropriate code and click 'OK'
spreadsheet- ID:1987 val:Clicking the button will reveal a popup that will list the E/M codes, check the appropriate code and click \'OK\'
Following constant not same:
original- val:Couldn't create backup dir:
spreadsheet- ID:2376 val:Couldn\'t create backup dir:
Following constant not same:
original- val:Couldn't remove dir:
spreadsheet- ID:2377 val:Couldn\'t remove dir:
Following constant not same:
original- val:Couldn't remove old backup file:
spreadsheet- ID:2378 val:Couldn\'t remove old backup file:
Following constant not same:
original- val:Couldn't remove old export file:
spreadsheet- ID:2379 val:Couldn\'t remove old export file:
Following constant not same:
original- val:Creates a report that contains various sections of the patient's medical record
spreadsheet- ID:2463 val:Creates a report that contains various sections of the patient\'s medical record
Following constant not same:
original- val:Date format for "appointment end" is not valid
spreadsheet- ID:2645 val:Date format for \"appointment end\" is not valid
Following constant not same:
original- val:Date format for "appointment start" is not valid
spreadsheet- ID:2646 val:Date format for \"appointment start\" is not valid
Following constant not same:
original- val:Date format for "Next Appointment" is not valid
spreadsheet- ID:2647 val:Date format for \"Next Appointment\" is not valid
Following constant not same:
original- val:Date format for "not seen since" is not valid
spreadsheet- ID:2648 val:Date format for \"not seen since\" is not valid
Following constant not same:
original- val:Date format for "seen before" is not valid
spreadsheet- ID:2649 val:Date format for \"seen before\" is not valid
Following constant not same:
original- val:Date format for "seen since" is not valid
spreadsheet- ID:2650 val:Date format for \"seen since\" is not valid
Following constant not same:
original- val:Date of Service is today's date by default. If needed it can be changed to any valid date
spreadsheet- ID:2679 val:Date of Service is today\'s date by default. If needed it can be changed to any valid date
Following constant not same:
original- val:Decide on the code categories and the order you want them to appear, these will be displayed on the buttons in the 'Select Codes' section
spreadsheet- ID:2759 val:Decide on the code categories and the order you want them to appear, these will be displayed on the buttons in the \'Select Codes\' section
Following constant not same:
original- val:Detail's group was saved successfully
spreadsheet- ID:2920 val:Detail\'s group was saved successfully
Following constant not same:
original- val:Developer error missing form 'patientForm'
spreadsheet- ID:2927 val:Developer error missing form \'patientForm\'
Following constant not same:
original- val:Developer error missing hidden form element 'selectedPatient'
spreadsheet- ID:2928 val:Developer error missing hidden form element \'selectedPatient\'
Following constant not same:
original- val:Display the patient's current glasses
spreadsheet- ID:3088 val:Display the patient\'s current glasses
Following constant not same:
original- val:Documents - a repository of the patient's scanned/faxed paper documents. It also the place to download patient specific templates
spreadsheet- ID:3202 val:Documents - a repository of the patient\'s scanned/faxed paper documents. It also the place to download patient specific templates
Following constant not same:
original- val:Don't Save
spreadsheet- ID:3218 val:Don\'t Save
Following constant not same:
original- val:Download report as a pdf file into the browser's download folder
spreadsheet- ID:3262 val:Download report as a pdf file into the browser\'s download folder
Following constant not same:
original- val:Empty value in "Email Hours"
spreadsheet- ID:3520 val:Empty value in \"Email Hours\"
Following constant not same:
original- val:Empty value in "Email Sender"
spreadsheet- ID:3521 val:Empty value in \"Email Sender\"
Following constant not same:
original- val:Empty value in "Email Subject"
spreadsheet- ID:3522 val:Empty value in \"Email Subject\"
Following constant not same:
original- val:Empty value in "Email Text"
spreadsheet- ID:3523 val:Empty value in \"Email Text\"
Following constant not same:
original- val:Empty value in "Name of Provider"
spreadsheet- ID:3524 val:Empty value in \"Name of Provider\"
Following constant not same:
original- val:Empty value in "Password"
spreadsheet- ID:3525 val:Empty value in \"Password\"
Following constant not same:
original- val:Empty value in "SMS Hours"
spreadsheet- ID:3526 val:Empty value in \"SMS Hours\"
Following constant not same:
original- val:Empty value in "SMS Text"
spreadsheet- ID:3527 val:Empty value in \"SMS Text\"
Following constant not same:
original- val:Empty value in "Username"
spreadsheet- ID:3528 val:Empty value in \"Username\"
Following constant not same:
original- val:Enter the category data in the appropriate fields and click 'Save'. These will be used to group the ICD codes and will be displayed on the buttons in the 'Select Codes' section
spreadsheet- ID:3814 val:Enter the category data in the appropriate fields and click \'Save\'. These will be used to group the ICD codes and will be displayed on the buttons in the \'Select Codes\' section
Following constant not same:
original- val:Error in "Gender" selection
spreadsheet- ID:3883 val:Error in \"Gender\" selection
Following constant not same:
original- val:Error in "HIPAA" selection
spreadsheet- ID:3884 val:Error in \"HIPAA\" selection
Following constant not same:
original- val:Error in "Process" selection
spreadsheet- ID:3885 val:Error in \"Process\" selection
Following constant not same:
original- val:Error in "SMS Gateway" selection
spreadsheet- ID:3886 val:Error in \"SMS Gateway\" selection
Following constant not same:
original- val:Error in "Sort By" selection
spreadsheet- ID:3887 val:Error in \"Sort By\" selection
Following constant not same:
original- val:Error: passwords don't match. Please check your typing.
spreadsheet- ID:3942 val:Error: passwords don\'t match. Please check your typing.
Following constant not same:
original- val:Facility ID's
spreadsheet- ID:4161 val:Facility ID\'s
Following constant not same:
original- val:FAILURE: Couldn't create the zip
spreadsheet- ID:4196 val:FAILURE: Couldn\'t create the zip
Following constant not same:
original- val:Family history - Documents the patient's family history, an ICD10 diagnosis can be linked to the medical conditions
spreadsheet- ID:4202 val:Family history - Documents the patient\'s family history, an ICD10 diagnosis can be linked to the medical conditions
Following constant not same:
original- val:Field 'name' cannot be NULL
spreadsheet- ID:4266 val:Field \'name\' cannot be NULL
Following constant not same:
original- val:Filename must end with ".pdf"
spreadsheet- ID:4296 val:Filename must end with \".pdf\"
Following constant not same:
original- val:Fill in any missing details or edit existing information. This will be saved in the patient's demographics page in openEMR
spreadsheet- ID:4306 val:Fill in any missing details or edit existing information. This will be saved in the patient\'s demographics page in openEMR
Following constant not same:
original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form.
spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form.
Following constant not same:
original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form.
spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form.
Following constant not same:
original- val:For each issue type there is a list of commonly selected titles which are customizable for your clinic's specific needs
spreadsheet- ID:4444 val:For each issue type there is a list of commonly selected titles which are customizable for your clinic\'s specific needs
Following constant not same:
original- val:For example: Privacy_Agreement.txt becomes "Privacy Agreement" button in Patient Documents.
spreadsheet- ID:4450 val:For example: Privacy_Agreement.txt becomes \"Privacy Agreement\" button in Patient Documents.
Following constant not same:
original- val:Go to Administration > Lists. Select 'Fee Sheet' from the dropdown box
spreadsheet- ID:4738 val:Go to Administration > Lists. Select \'Fee Sheet\' from the dropdown box
Following constant not same:
original- val:Go to Adminstration > Lists and select 'Code Types' from the dropdown box. Use either ICD 9 or ICD 10, inactivate ICD 9 and select 'No' in the last dropdown box under ICD 10
spreadsheet- ID:4740 val:Go to Adminstration > Lists and select \'Code Types\' from the dropdown box. Use either ICD 9 or ICD 10, inactivate ICD 9 and select \'No\' in the last dropdown box under ICD 10
Following constant not same:
original- val:Group's name
spreadsheet- ID:4801 val:Group\'s name
Following constant not same:
original- val:Guardian's Name
spreadsheet- ID:4817 val:Guardian\'s Name
Following constant not same:
original- val:History - patient's past medical history, family history, personal history
spreadsheet- ID:4961 val:History - patient\'s past medical history, family history, personal history
Following constant not same:
original- val:If a field's Data Col = 0 the data field will immediately follow its label field on the same line
spreadsheet- ID:5096 val:If a field\'s Data Col = 0 the data field will immediately follow its label field on the same line
Following constant not same:
original- val:If a field's Label Col = 0 the label will immediately follow the previous data field in the Order sequence, on the same line as the Data field.
spreadsheet- ID:5097 val:If a field\'s Label Col = 0 the label will immediately follow the previous data field in the Order sequence, on the same line as the Data field.
Following constant not same:
original- val:If a field's Label Col = 1 the label field will go to a new line unless the previous field's total column values (Label + Data) is less than number of Layout columns from Group Properties or Layout Properties.
spreadsheet- ID:5098 val:If a field\'s Label Col = 1 the label field will go to a new line unless the previous field\'s total column values (Label + Data) is less than number of Layout columns from Group Properties or Layout Properties.
Following constant not same:
original- val:If the csv file has been uploaded, then click on the "Import holiday events" button. NOTE that clicking on the button will remove all the existing rows in the calendar_external table
spreadsheet- ID:5129 val:If the csv file has been uploaded, then click on the \"Import holiday events\" button. NOTE that clicking on the button will remove all the existing rows in the calendar_external table
Following constant not same:
original- val:If the message is forwarded it will show up in the active messages list of the user to whom the message was forwarded and disappear from the current user's active messages list
spreadsheet- ID:5135 val:If the message is forwarded it will show up in the active messages list of the user to whom the message was forwarded and disappear from the current user\'s active messages list
Following constant not same:
original- val:If you choose to do a manual entry click the 'Invoice Search' radio button. It displays two sections 'Post Item' and 'Invoice Search'
spreadsheet- ID:5165 val:If you choose to do a manual entry click the \'Invoice Search\' radio button. It displays two sections \'Post Item\' and \'Invoice Search\'
Following constant not same:
original- val:If you choose to integrate lab results with the patient's record then some preliminary setup has to be performed
spreadsheet- ID:5166 val:If you choose to integrate lab results with the patient\'s record then some preliminary setup has to be performed
Following constant not same:
original- val:If you click on any user in the 'User Memberships' section you will now see these newly created group (ARO) in the 'Inactive' column. These can now be assigned in the usual fashion as needed.
spreadsheet- ID:5167 val:If you click on any user in the \'User Memberships\' section you will now see these newly created group (ARO) in the \'Inactive\' column. These can now be assigned in the usual fashion as needed.
Following constant not same:
original- val:If you click on the edit icon next to this newly created group (ARO) you will note that the 'Active' column contains only a single entry - Placeholder (Maintains empty ACLs). As yet this new group (ARO) has NO access to any part of the program as there are no ACOs assigned in the 'Active' column.
spreadsheet- ID:5168 val:If you click on the edit icon next to this newly created group (ARO) you will note that the \'Active\' column contains only a single entry - Placeholder (Maintains empty ACLs). As yet this new group (ARO) has NO access to any part of the program as there are no ACOs assigned in the \'Active\' column.
Following constant not same:
original- val:If you have already filled the calendar_external table, then click on "Synchronize" button to have the holidays in the calendar view. NOTE that clicking on the button will remove all the existing items in the calendar view related to holidays
spreadsheet- ID:5180 val:If you have already filled the calendar_external table, then click on \"Synchronize\" button to have the holidays in the calendar view. NOTE that clicking on the button will remove all the existing items in the calendar view related to holidays
Following constant not same:
original- val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the 'Process ERA File' button at the bottom of the page. This will produce a new window with a detailed report.
spreadsheet- ID:5183 val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the \'Process ERA File\' button at the bottom of the page. This will produce a new window with a detailed report.
Following constant not same:
original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc.
spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc.
Following constant not same:
original- val:In the 'Post Item' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done.
spreadsheet- ID:5304 val:In the \'Post Item\' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done.
Following constant not same:
original- val:Integrating lab results into a patient's chart in openEMR can be done manually i.e. both ordering tests and uploading the received results or electronically
spreadsheet- ID:5506 val:Integrating lab results into a patient\'s chart in openEMR can be done manually i.e. both ordering tests and uploading the received results or electronically
Following constant not same:
original- val:Internal error: encounter '
spreadsheet- ID:5526 val:Internal error: encounter \'
Following constant not same:
original- val:Invalid source designation "
spreadsheet- ID:5574 val:Invalid source designation \"
Following constant not same:
original- val:Issues - summarizes the patient's medical problems, allergies, medications, surgeries and dental issues
spreadsheet- ID:5681 val:Issues - summarizes the patient\'s medical problems, allergies, medications, surgeries and dental issues
Following constant not same:
original- val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in 'Select Codes'
spreadsheet- ID:5787 val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in \'Select Codes\'
Following constant not same:
original- val:k, here's the rest
spreadsheet- ID:5791 val:k, here\'s the rest
Following constant not same:
original- val:Lets you delete a line or row. Hit 'Refresh' and the line will have a strikethrough across it
spreadsheet- ID:6016 val:Lets you delete a line or row. Hit \'Refresh\' and the line will have a strikethrough across it
Following constant not same:
original- val:Lifestyle - lists the patient's use of Tobacco, Coffee, Alcohol, Recreational Drugs etc
spreadsheet- ID:6044 val:Lifestyle - lists the patient\'s use of Tobacco, Coffee, Alcohol, Recreational Drugs etc
Following constant not same:
original- val:Make sure "
spreadsheet- ID:6241 val:Make sure \"
Following constant not same:
original- val:Medical Problems - will show the patient's medical issues, Issues > Medical Problems
spreadsheet- ID:6374 val:Medical Problems - will show the patient\'s medical issues, Issues > Medical Problems
Following constant not same:
original- val:Mother's Name
spreadsheet- ID:6623 val:Mother\'s Name
Following constant not same:
original- val:Move the individual items from 'Active' to 'Inactive' or vice-versa by selecting the items and pressing the relevant button with the double chevron.
spreadsheet- ID:6632 val:Move the individual items from \'Active\' to \'Inactive\' or vice-versa by selecting the items and pressing the relevant button with the double chevron.
Following constant not same:
original- val:Note there is no 'Save' button.
spreadsheet- ID:7245 val:Note there is no \'Save\' button.
Following constant not same:
original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example '<i>file.jpg</i>' will become '<i>file.jpg.1</i>'. Filenames are considered unique per patient, not per category.
spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'<i>file.jpg</i>\' will become \'<i>file.jpg.1</i>\'. Filenames are considered unique per patient, not per category.
Following constant not same:
original- val:NPI - Enter the Provider's unique 10-digit National Provider Identifier or NPI identification number
spreadsheet- ID:7312 val:NPI - Enter the Provider\'s unique 10-digit National Provider Identifier or NPI identification number
Following constant not same:
original- val:Once this is done the shared secret key that is unique for each user should only exist in OpenEMR and on the user's authenticator app
spreadsheet- ID:7460 val:Once this is done the shared secret key that is unique for each user should only exist in OpenEMR and on the user\'s authenticator app
Following constant not same:
original- val:Participant's name
spreadsheet- ID:7787 val:Participant\'s name
Following constant not same:
original- val:Passwords Don't match!
spreadsheet- ID:7824 val:Passwords Don\'t match!
Following constant not same:
original- val:Patient's number
spreadsheet- ID:8055 val:Patient\'s number
Following constant not same:
original- val:Pay attention to the "Done with" checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
spreadsheet- ID:8068 val:Pay attention to the \"Done with\" checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
Following constant not same:
original- val:Pay attention to the 'Done with' checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
spreadsheet- ID:8069 val:Pay attention to the \'Done with\' checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
Following constant not same:
original- val:Please enter at least the item's name
spreadsheet- ID:8347 val:Please enter at least the item\'s name
Following constant not same:
original- val:Please enter at least the track's name
spreadsheet- ID:8348 val:Please enter at least the track\'s name
Following constant not same:
original- val:Please select a Primary Business Entity facility with 'Tax ID' as your facility Tax ID. If you are an individual practitioner, use your tax id. This is used for identifying you in the NewCrop system.
spreadsheet- ID:8406 val:Please select a Primary Business Entity facility with \'Tax ID\' as your facility Tax ID. If you are an individual practitioner, use your tax id. This is used for identifying you in the NewCrop system.
Following constant not same:
original- val:Received messages are processed and a new Patient Note is delivered to a specified user and appears in that user's Message Center
spreadsheet- ID:9107 val:Received messages are processed and a new Patient Note is delivered to a specified user and appears in that user\'s Message Center
Following constant not same:
original- val:Report - Generates and downloads the patient's Continuity of Care Record (CCR), Continuity of Care Document (CCD) and Patient Report
spreadsheet- ID:9368 val:Report - Generates and downloads the patient\'s Continuity of Care Record (CCR), Continuity of Care Document (CCD) and Patient Report
Following constant not same:
original- val:Reports consisting of various portions of the patient's medical record can be created here
spreadsheet- ID:9391 val:Reports consisting of various portions of the patient\'s medical record can be created here
Following constant not same:
original- val:Select 'Price Levels' and enter Credit Card and Cash
spreadsheet- ID:9845 val:Select \'Price Levels\' and enter Credit Card and Cash
Following constant not same:
original- val:Select the appropriate radio button. Enter the search term in the search box and click 'Search'
spreadsheet- ID:9951 val:Select the appropriate radio button. Enter the search term in the search box and click \'Search\'
Following constant not same:
original- val:Set which radio button is selected by default in 'Search for Additional Codes' section
spreadsheet- ID:10120 val:Set which radio button is selected by default in \'Search for Additional Codes\' section
Following constant not same:
original- val:SMART apps that display on the patient summary page can be enabled or disabled from this screen. Any OAUTH2 client requesting the 'launch' scope will allow EMR users to launch an app from within the EHR.
spreadsheet- ID:10329 val:SMART apps that display on the patient summary page can be enabled or disabled from this screen. Any OAUTH2 client requesting the \'launch\' scope will allow EMR users to launch an app from within the EHR.
Following constant not same:
original- val:Start by clicking the Browse button and selecting the file to upload, and then clicking 'Upload' to perform the upload and display the corresponding invoices. In this case the other parameters mentioned above do not apply and will be ignored. Uploading saves the file but does not yet process its contents -- that is done separately as described below.
spreadsheet- ID:10548 val:Start by clicking the Browse button and selecting the file to upload, and then clicking \'Upload\' to perform the upload and display the corresponding invoices. In this case the other parameters mentioned above do not apply and will be ignored. Uploading saves the file but does not yet process its contents -- that is done separately as described below.
Following constant not same:
original- val:The 'Clear' button will remove all annotations.
spreadsheet- ID:10954 val:The \'Clear\' button will remove all annotations.
Following constant not same:
original- val:The 'Edit' window is divided into two columns, 'Active' and 'Inactive'. The groups (AROs) that are listed in the active column are those groups that the user belongs to.
spreadsheet- ID:10955 val:The \'Edit\' window is divided into two columns, \'Active\' and \'Inactive\'. The groups (AROs) that are listed in the active column are those groups that the user belongs to.
Following constant not same:
original- val:The 'Select Codes' section will now have all the CPT and ICD codes that you entered grouped under the categories that you had decided upon
spreadsheet- ID:10956 val:The \'Select Codes\' section will now have all the CPT and ICD codes that you entered grouped under the categories that you had decided upon
Following constant not same:
original- val:The advantage of integrating the results with the patient's chart as structured data is the ability to manipulate it to see trends in one convenient location, to plot graphs with the data and use it in data analysis
spreadsheet- ID:10966 val:The advantage of integrating the results with the patient\'s chart as structured data is the ability to manipulate it to see trends in one convenient location, to plot graphs with the data and use it in data analysis
Following constant not same:
original- val:The advantage of scanning the results into the chart is simplicity - no setup is required other than defining a directory/folder in the patient's chart under Documents where the result will be stored. Being unstructured data it does not have the above advantages and will not fulfill Meaningful Use criteria for Computerized Provider Order Entry (CPOE)
spreadsheet- ID:10967 val:The advantage of scanning the results into the chart is simplicity - no setup is required other than defining a directory/folder in the patient\'s chart under Documents where the result will be stored. Being unstructured data it does not have the above advantages and will not fulfill Meaningful Use criteria for Computerized Provider Order Entry (CPOE)
Following constant not same:
original- val:The custmomized Fee Sheet can be used. If and when you come across a code that is not there in the custom 'Select Codes' section you can always use the 'Search for Additional Codes' section
spreadsheet- ID:11007 val:The custmomized Fee Sheet can be used. If and when you come across a code that is not there in the custom \'Select Codes\' section you can always use the \'Search for Additional Codes\' section
Following constant not same:
original- val:The dashboard is the central location for convenient access the patient's medical record
spreadsheet- ID:11010 val:The dashboard is the central location for convenient access the patient\'s medical record
Following constant not same:
original- val:The default has two buttons that is set for 'New Patient' and 'Established' patient
spreadsheet- ID:11019 val:The default has two buttons that is set for \'New Patient\' and \'Established\' patient
Following constant not same:
original- val:The default is 'Standard' usually used to reflect rates charged for insurance billing. You can have a different amount charged for credit card payment and for cash payment
spreadsheet- ID:11024 val:The default is \'Standard\' usually used to reflect rates charged for insurance billing. You can have a different amount charged for credit card payment and for cash payment
Following constant not same:
original- val:The Encounter Preview button is useful for showing encounter type layout forms as seen when using form in an encounter. Note, this feature is only useful for showing encounter forms and won't display system forms like Demographics
spreadsheet- ID:11043 val:The Encounter Preview button is useful for showing encounter type layout forms as seen when using form in an encounter. Note, this feature is only useful for showing encounter forms and won\'t display system forms like Demographics
Following constant not same:
original- val:The first ("target") chart is the one that is considered the most complete and accurate. Demographics, history and insurance sections for this one will be retained.
spreadsheet- ID:11071 val:The first (\"target\") chart is the one that is considered the most complete and accurate. Demographics, history and insurance sections for this one will be retained.
Following constant not same:
original- val:The first step is to plan what your Fee Sheet 'Select Codes' section should display
spreadsheet- ID:11082 val:The first step is to plan what your Fee Sheet \'Select Codes\' section should display
Following constant not same:
original- val:The group (ARO) that you created will now appear in alphabetical order in the 'Groups and Access Controls' section.
spreadsheet- ID:11107 val:The group (ARO) that you created will now appear in alphabetical order in the \'Groups and Access Controls\' section.
Following constant not same:
original- val:The header section will reveal patient specific information across most pages related to the patient's medical record
spreadsheet- ID:11109 val:The header section will reveal patient specific information across most pages related to the patient\'s medical record
Following constant not same:
original- val:The items listed in the 'Active' column delineate the privileges of this group (ARO) and constitutes this group's Access Control List (ACL).
spreadsheet- ID:11137 val:The items listed in the \'Active\' column delineate the privileges of this group (ARO) and constitutes this group\'s Access Control List (ACL).
Following constant not same:
original- val:The messaging center will open with the Messages tab activated and will display the logged in user's messages as indicated by the caption My Messages
spreadsheet- ID:11157 val:The messaging center will open with the Messages tab activated and will display the logged in user\'s messages as indicated by the caption My Messages
Following constant not same:
original- val:The most important issue that needs to be addressed is who you are trying to connect to and what needs to happen at their end. Most major labs will not deal with individuals practices, in such cases a third party vendor will act an an intermediary who will be responsible for setting up a connection between the practice and the lab through their (the intermediary's) interface
spreadsheet- ID:11161 val:The most important issue that needs to be addressed is who you are trying to connect to and what needs to happen at their end. Most major labs will not deal with individuals practices, in such cases a third party vendor will act an an intermediary who will be responsible for setting up a connection between the practice and the lab through their (the intermediary\'s) interface
Following constant not same:
original- val:The Nav Bar allows one to quickly navigate to various parts of the patient's medical record
spreadsheet- ID:11167 val:The Nav Bar allows one to quickly navigate to various parts of the patient\'s medical record
Following constant not same:
original- val:The Search results are displayed in the section 'Search Results'.
spreadsheet- ID:11234 val:The Search results are displayed in the section \'Search Results\'.
Following constant not same:
original- val:The second ("source") chart will have its demographics, history and insurance sections discarded. Its other data will be merged into the target chart.
spreadsheet- ID:11235 val:The second (\"source\") chart will have its demographics, history and insurance sections discarded. Its other data will be merged into the target chart.
Following constant not same:
original- val:The section labeled 'Invoice Search' is where you put in your search parameters. You can search by patient name, chart number, encounter number or date of service, or any combination of these. You may also select whether you want to see all invoices, open invoices, or only invoices that are due (by the patient). Click the 'Search' button to perform the search.
spreadsheet- ID:11240 val:The section labeled \'Invoice Search\' is where you put in your search parameters. You can search by patient name, chart number, encounter number or date of service, or any combination of these. You may also select whether you want to see all invoices, open invoices, or only invoices that are due (by the patient). Click the \'Search\' button to perform the search.
Following constant not same:
original- val:The selected codes will then appear in the 'Selected Fee Sheet Codes and Charges for Current Encounter' section
spreadsheet- ID:11242 val:The selected codes will then appear in the \'Selected Fee Sheet Codes and Charges for Current Encounter\' section
Following constant not same:
original- val:The Source and Date columns are copied from the first page, so normally you will not need to touch those. You can put a payment amount in the Pay column, an adjustment amount in the Adjust column, or both. You can also click the "W" on the right to automatically compute an adjustment value that writes off the remainder of the charge for that line item.
spreadsheet- ID:11248 val:The Source and Date columns are copied from the first page, so normally you will not need to touch those. You can put a payment amount in the Pay column, an adjustment amount in the Adjust column, or both. You can also click the \"W\" on the right to automatically compute an adjustment value that writes off the remainder of the charge for that line item.
Following constant not same:
original- val:The Source and Date columns are copied from the first page, so normally you will not need to touch those. You can put a payment amount in the Pay column, an adjustment amount in the Adjust column, or both. You can also click the 'W' on the right to automatically compute an adjustment value that writes off the remainder of the charge for that line item.
spreadsheet- ID:11249 val:The Source and Date columns are copied from the first page, so normally you will not need to touch those. You can put a payment amount in the Pay column, an adjustment amount in the Adjust column, or both. You can also click the \'W\' on the right to automatically compute an adjustment value that writes off the remainder of the charge for that line item.
Following constant not same:
original- val:The user's actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has.
spreadsheet- ID:11294 val:The user\'s actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has.
Following constant not same:
original- val:The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is
spreadsheet- ID:11304 val:The X12 files as well as the resulting HTML output reports are archived in the \"era\" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is
Following constant not same:
original- val:The X12 files as well as the resulting HTML output reports are archived in the 'era' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time.
spreadsheet- ID:11305 val:The X12 files as well as the resulting HTML output reports are archived in the \'era\' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time.
Following constant not same:
original- val:Then pass it's name as a value to the element
spreadsheet- ID:11310 val:Then pass it\'s name as a value to the element
Following constant not same:
original- val:There are three main types of reports that can be created, two pertain to continuity of ongoing care - Continuity of Care Record (CCR) and Continuity of Care Document (CCD) and the third - Patient Report that creates a document containing various sections of the patient's medical record including demographics, medical issues, procedures and encounters. It also has the ability to include all or any of the scanned documents in the patient's chart
spreadsheet- ID:11343 val:There are three main types of reports that can be created, two pertain to continuity of ongoing care - Continuity of Care Record (CCR) and Continuity of Care Document (CCD) and the third - Patient Report that creates a document containing various sections of the patient\'s medical record including demographics, medical issues, procedures and encounters. It also has the ability to include all or any of the scanned documents in the patient\'s chart
Following constant not same:
original- val:These three steps are essential before orders can be placed and received results linked to a patient's chart
spreadsheet- ID:11392 val:These three steps are essential before orders can be placed and received results linked to a patient\'s chart
Following constant not same:
original- val:This section lets you search for the needed code if it is not in the default or customized options in 'Select Code' section
spreadsheet- ID:11546 val:This section lets you search for the needed code if it is not in the default or customized options in \'Select Code\' section
Following constant not same:
original- val:This will be a "dry run" with no physical data updates.
spreadsheet- ID:11574 val:This will be a \"dry run\" with no physical data updates.
Following constant not same:
original- val:This will turn off use of safe apostrophe, which is done by converting \' and " to `.(it is highly recommended that this setting is turned off and that safe apostrophe\'s are used)
spreadsheet- ID:11605 val:This will turn off use of safe apostrophe, which is done by converting \' and \" to `.(it is highly recommended that this setting is turned off and that safe apostrophe\'s are used)
Following constant not same:
original- val:To add a copay click the 'Add Copay' button
spreadsheet- ID:11674 val:To add a copay click the \'Add Copay\' button
Following constant not same:
original- val:To add more options to the dropdown menu go to Administration > Lists > Manage Lists and select 'Price Level' in the dropdown box and enter the types e.g: Credit Card, Cash etc.
spreadsheet- ID:11676 val:To add more options to the dropdown menu go to Administration > Lists > Manage Lists and select \'Price Level\' in the dropdown box and enter the types e.g: Credit Card, Cash etc.
Following constant not same:
original- val:To allow for each procedure line to have a separate provider you have to check the 'Support provider in line item in fee sheet' checkbox in Administration > Globals > Billing. If not checked the rendering provider in this section will be used for all claims
spreadsheet- ID:11681 val:To allow for each procedure line to have a separate provider you have to check the \'Support provider in line item in fee sheet\' checkbox in Administration > Globals > Billing. If not checked the rendering provider in this section will be used for all claims
Following constant not same:
original- val:To ded'ble
spreadsheet- ID:11695 val:To ded\'ble
Following constant not same:
original- val:To display the copay amount it must have been entered in the patient's insurance under Edit > Demographics
spreadsheet- ID:11703 val:To display the copay amount it must have been entered in the patient\'s insurance under Edit > Demographics
Following constant not same:
original- val:To fully delete hit 'Save'
spreadsheet- ID:11718 val:To fully delete hit \'Save\'
Following constant not same:
original- val:To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload'
spreadsheet- ID:11719 val:To get started you choose one of the two radio buttons. \'Invoice Search\' or \'ERA Upload\'
Following constant not same:
original- val:To include the scanned documents that are a part of the patient's record select the desired records by check the relevant check-boxes
spreadsheet- ID:11724 val:To include the scanned documents that are a part of the patient\'s record select the desired records by check the relevant check-boxes
Following constant not same:
original- val:To select multiple groups hold down the 'Shift' or 'Ctrl' keys while clicking.
spreadsheet- ID:11745 val:To select multiple groups hold down the \'Shift\' or \'Ctrl\' keys while clicking.
Following constant not same:
original- val:Transactions - lists various notes about happenings in a patient's chart with respect to billing, legal, patient request, physician request and also generates a patient referral or counter-referral
spreadsheet- ID:11918 val:Transactions - lists various notes about happenings in a patient\'s chart with respect to billing, legal, patient request, physician request and also generates a patient referral or counter-referral
Following constant not same:
original- val:Upon clicking an invoice number the "manual posting window" appears. Here you can change the due date and notes for the invoice, select the party for whom you are posting, and select the insurances for which all expected paymants have been received. Most importantly, for each billing code for which an amount was charged, you can enter payment and adjustment information.
spreadsheet- ID:12211 val:Upon clicking an invoice number the \"manual posting window\" appears. Here you can change the due date and notes for the invoice, select the party for whom you are posting, and select the insurances for which all expected paymants have been received. Most importantly, for each billing code for which an amount was charged, you can enter payment and adjustment information.
Following constant not same:
original- val:Upon clicking an invoice number the 'manual posting window' appears. Here you can change the due date and notes for the invoice, select the party for whom you are posting, and select the insurances for which all expected payments have been received. Most importantly, for each billing code for which an amount was charged, you can enter payment and adjustment information.
spreadsheet- ID:12212 val:Upon clicking an invoice number the \'manual posting window\' appears. Here you can change the due date and notes for the invoice, select the party for whom you are posting, and select the insurances for which all expected payments have been received. Most importantly, for each billing code for which an amount was charged, you can enter payment and adjustment information.
Following constant not same:
original- val:URL of ASSE SOAP server. Must be blank if not a Uruguay site. Enter "test" for dummy data.
spreadsheet- ID:12239 val:URL of ASSE SOAP server. Must be blank if not a Uruguay site. Enter \"test\" for dummy data.
Following constant not same:
original- val:uses php <a href="http://php.net/strftime">strftime</a> format
spreadsheet- ID:12377 val:uses php <a href=\"http://php.net/strftime\">strftime</a> format
Following constant not same:
original- val:When checked, messages are processed for patients with Patient Demographic Choice: "Hipaa Notice Received" set to "Unassigned" or "Yes". When unchecked, this choice must = "YES" to process the patient reminder. For patients with Choice ="No", Reminders will need to be processed manually.
spreadsheet- ID:12703 val:When checked, messages are processed for patients with Patient Demographic Choice: \"Hipaa Notice Received\" set to \"Unassigned\" or \"Yes\". When unchecked, this choice must = \"YES\" to process the patient reminder. For patients with Choice =\"No\", Reminders will need to be processed manually.
Following constant not same:
original- val:You can click on the patient name to quickly access the patient's chart
spreadsheet- ID:12870 val:You can click on the patient name to quickly access the patient\'s chart
Following constant not same:
original- val:You can close the edit box by clicking on the 'slashed eye' icon next to the group's name.
spreadsheet- ID:12872 val:You can close the edit box by clicking on the \'slashed eye\' icon next to the group\'s name.
Following constant not same:
original- val:You can not change status to 'Arrive' before the appointment's time
spreadsheet- ID:12880 val:You can not change status to \'Arrive\' before the appointment\'s time
Following constant not same:
original- val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, '/*lock::*/'
spreadsheet- ID:12902 val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, \'/*lock::*/\'
Following constant not same:
original- val:" for code
spreadsheet- ID:13072 val:\" for code
Following constant not same:
original- val:" is CHECKED in PostCalendar Settings!
spreadsheet- ID:13073 val:\" is CHECKED in PostCalendar Settings!
Following constant not same:
original- val:' should exist but does not.
spreadsheet- ID:13082 val:\' should exist but does not.
Following constant not same:
original- val:= Took Place
spreadsheet- ID:13207 val:\'= took place
Done checking constants:
190 mismatches found (known is 190)
Good, constants weren't modified by translators
Checking constants:
Following constant not same:
original- val:A place to document and display the patient's past medical history, family history, personal history
spreadsheet- ID:34 val:A place to document and display the patient\'s past medical history, family history, personal history
Following constant not same:
original- val:A provider or warehouse can be selected in the dropwdown box. For this option to be displayed 'Support provider in line item in fee sheet' box must be checked in Administration > Globals> Billing page
spreadsheet- ID:39 val:A provider or warehouse can be selected in the dropwdown box. For this option to be displayed \'Support provider in line item in fee sheet\' box must be checked in Administration > Globals> Billing page
Following constant not same:
original- val:A third alternative is to scan the results and save it as a document - TIFF, JPEG or PDF in the patient's chart under documents
spreadsheet- ID:54 val:A third alternative is to scan the results and save it as a document - TIFF, JPEG or PDF in the patient\'s chart under documents
Following constant not same:
original- val:Active Alert - that presents as a pop-up notification when a patient's chart is entered
spreadsheet- ID:168 val:Active Alert - that presents as a pop-up notification when a patient\'s chart is entered
Following constant not same:
original- val:Add desired privileges by moving items (ACOs) from the 'Inactive' column to the 'Active' column.
spreadsheet- ID:233 val:Add desired privileges by moving items (ACOs) from the \'Inactive\' column to the \'Active\' column.
Following constant not same:
original- val:After Uploading click the button "Import"
spreadsheet- ID:433 val:After Uploading click the button \"Import\"
Following constant not same:
original- val:After Uploading, click "Import"
spreadsheet- ID:434 val:After Uploading, click \"Import\"
Following constant not same:
original- val:After you filled in the spreadsheet with the relevant ICD categories and ICD codes go to Administration > Lists. Select 'Service Category' from the dropdown box
spreadsheet- ID:435 val:After you filled in the spreadsheet with the relevant ICD categories and ICD codes go to Administration > Lists. Select \'Service Category\' from the dropdown box
Following constant not same:
original- val:After you have finished entering all the ICD 10 codes go to Adminstration > Lists and select 'Code Types' from the dropdown box. Select 'ICD10 Diagnosis' from the last dropdown box under ICD 10
spreadsheet- ID:436 val:After you have finished entering all the ICD 10 codes go to Adminstration > Lists and select \'Code Types\' from the dropdown box. Select \'ICD10 Diagnosis\' from the last dropdown box under ICD 10
Following constant not same:
original- val:Age format for "age from" is not valid
spreadsheet- ID:446 val:Age format for \"age from\" is not valid
Following constant not same:
original- val:Age format for "age up to" is not valid
spreadsheet- ID:447 val:Age format for \"age up to\" is not valid
Following constant not same:
original- val:Allow Check In before the appointment's time.
spreadsheet- ID:534 val:Allow Check In before the appointment\'s time.
Following constant not same:
original- val:Alternatively, you may choose to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by first selecting the 'ERA upload' option in the initial 'Select Method' section. This brings up the 'ERA Upload' Section.
spreadsheet- ID:627 val:Alternatively, you may choose to upload an electronic remittance (X12 835) file that you have obtained from your payer or clearinghouse. You can do this by first selecting the \'ERA upload\' option in the initial \'Select Method\' section. This brings up the \'ERA Upload\' Section.
Following constant not same:
original- val:An Issue concerns matters relating to the patient's health
spreadsheet- ID:687 val:An Issue concerns matters relating to the patient\'s health
Following constant not same:
original- val:Are you sure you'd like to quit without saving your answers?
spreadsheet- ID:876 val:Are you sure you\'d like to quit without saving your answers?
Following constant not same:
original- val:Aud URI (use this in the "aud" claim of your JWT)
spreadsheet- ID:949 val:Aud URI (use this in the \"aud\" claim of your JWT)
Following constant not same:
original- val:Automatically create a new encounter when appointment status is set to "@" (arrived).
spreadsheet- ID:1030 val:Automatically create a new encounter when appointment status is set to \"@\" (arrived).
Following constant not same:
original- val:Based on the individual practice's need the tests can be organized into various groups
spreadsheet- ID:1121 val:Based on the individual practice\'s need the tests can be organized into various groups
Following constant not same:
original- val:Being so restless that it's hard to sit still
spreadsheet- ID:1162 val:Being so restless that it\'s hard to sit still
Following constant not same:
original- val:button to clear Location selections, "Send" button to send templates to patient(s) or profiles
spreadsheet- ID:1373 val:button to clear Location selections, \"Send\" button to send templates to patient(s) or profiles
Following constant not same:
original- val:By default all codes are selected, uncheck the codes you do not want and click 'Add'. These codes will then be added to the current encounter
spreadsheet- ID:1377 val:By default all codes are selected, uncheck the codes you do not want and click \'Add\'. These codes will then be added to the current encounter
Following constant not same:
original- val:By selecting a payment method the rates calculated for that payment method will be automatically displayed in 'Selected Fee Sheet Codes and Charges for Current Encounter' section
spreadsheet- ID:1382 val:By selecting a payment method the rates calculated for that payment method will be automatically displayed in \'Selected Fee Sheet Codes and Charges for Current Encounter\' section
Following constant not same:
original- val:Can't find file!
spreadsheet- ID:1417 val:Can\'t find file!
Following constant not same:
original- val:Can't upload
spreadsheet- ID:1418 val:Can\'t upload
Following constant not same:
original- val:Click 'export' to export your Category, Subcategory, Item, Content data to a text file. Any resemblance of this file to an XML file is purely coincidental. The opening and closing tags must be on the same line, they must be lowercase with no spaces. To import, browse for a file and click 'import'. If the data is completely different, it will merge with your existing data. If there are similar item names, The old one will be kept and the new one saved with a number added to the end.
spreadsheet- ID:1782 val:Click \'export\' to export your Category, Subcategory, Item, Content data to a text file. Any resemblance of this file to an XML file is purely coincidental. The opening and closing tags must be on the same line, they must be lowercase with no spaces. To import, browse for a file and click \'import\'. If the data is completely different, it will merge with your existing data. If there are similar item names, The old one will be kept and the new one saved with a number added to the end.
Following constant not same:
original- val:Click 'Save'
spreadsheet- ID:1783 val:Click \'Save\'
Following constant not same:
original- val:Click 'Save'. Now you will be able to use the Search feature to search all ICD 10 codes
spreadsheet- ID:1784 val:Click \'Save\'. Now you will be able to use the Search feature to search all ICD 10 codes
Following constant not same:
original- val:Click on the 'Add Group' button to create this new group (ARO).
spreadsheet- ID:1852 val:Click on the \'Add Group\' button to create this new group (ARO).
Following constant not same:
original- val:Click on the icon next to the 'Access Control List Administration' title to go to the phpGACL page.
spreadsheet- ID:1864 val:Click on the icon next to the \'Access Control List Administration\' title to go to the phpGACL page.
Following constant not same:
original- val:Click the 'Add New Group' button to display the 'New Group Information' section.
spreadsheet- ID:1881 val:Click the \'Add New Group\' button to display the \'New Group Information\' section.
Following constant not same:
original- val:Click the 'Delete Group' button to completely remove this group.
spreadsheet- ID:1882 val:Click the \'Delete Group\' button to completely remove this group.
Following constant not same:
original- val:Click the 'Remove Group' button to display the 'Remove Group Form'.
spreadsheet- ID:1883 val:Click the \'Remove Group\' button to display the \'Remove Group Form\'.
Following constant not same:
original- val:Click the 'Yes' radio button.
spreadsheet- ID:1884 val:Click the \'Yes\' radio button.
Following constant not same:
original- val:Clicking on 'Review' will list all the codes entered for previous encounters
spreadsheet- ID:1968 val:Clicking on \'Review\' will list all the codes entered for previous encounters
Following constant not same:
original- val:Clicking on the icon next to the caption will display everyone's messages and the caption will change to All Messages
spreadsheet- ID:1978 val:Clicking on the icon next to the caption will display everyone\'s messages and the caption will change to All Messages
Following constant not same:
original- val:Clicking on the icon next to their name will bring up the 'Edit' window.
spreadsheet- ID:1979 val:Clicking on the icon next to their name will bring up the \'Edit\' window.
Following constant not same:
original- val:Clicking on the patient's name will reveal the message
spreadsheet- ID:1981 val:Clicking on the patient\'s name will reveal the message
Following constant not same:
original- val:Clicking the button will reveal a popup that will list the E/M codes, check the appropriate code and click 'OK'
spreadsheet- ID:1987 val:Clicking the button will reveal a popup that will list the E/M codes, check the appropriate code and click \'OK\'
Following constant not same:
original- val:Couldn't create backup dir:
spreadsheet- ID:2376 val:Couldn\'t create backup dir:
Following constant not same:
original- val:Couldn't remove dir:
spreadsheet- ID:2377 val:Couldn\'t remove dir:
Following constant not same:
original- val:Couldn't remove old backup file:
spreadsheet- ID:2378 val:Couldn\'t remove old backup file:
Following constant not same:
original- val:Couldn't remove old export file:
spreadsheet- ID:2379 val:Couldn\'t remove old export file:
Following constant not same:
original- val:Creates a report that contains various sections of the patient's medical record
spreadsheet- ID:2463 val:Creates a report that contains various sections of the patient\'s medical record
Following constant not same:
original- val:Date format for "appointment end" is not valid
spreadsheet- ID:2645 val:Date format for \"appointment end\" is not valid
Following constant not same:
original- val:Date format for "appointment start" is not valid
spreadsheet- ID:2646 val:Date format for \"appointment start\" is not valid
Following constant not same:
original- val:Date format for "Next Appointment" is not valid
spreadsheet- ID:2647 val:Date format for \"Next Appointment\" is not valid
Following constant not same:
original- val:Date format for "not seen since" is not valid
spreadsheet- ID:2648 val:Date format for \"not seen since\" is not valid
Following constant not same:
original- val:Date format for "seen before" is not valid
spreadsheet- ID:2649 val:Date format for \"seen before\" is not valid
Following constant not same:
original- val:Date format for "seen since" is not valid
spreadsheet- ID:2650 val:Date format for \"seen since\" is not valid
Following constant not same:
original- val:Date of Service is today's date by default. If needed it can be changed to any valid date
spreadsheet- ID:2679 val:Date of Service is today\'s date by default. If needed it can be changed to any valid date
Following constant not same:
original- val:Decide on the code categories and the order you want them to appear, these will be displayed on the buttons in the 'Select Codes' section
spreadsheet- ID:2759 val:Decide on the code categories and the order you want them to appear, these will be displayed on the buttons in the \'Select Codes\' section
Following constant not same:
original- val:Detail's group was saved successfully
spreadsheet- ID:2920 val:Detail\'s group was saved successfully
Following constant not same:
original- val:Developer error missing form 'patientForm'
spreadsheet- ID:2927 val:Developer error missing form \'patientForm\'
Following constant not same:
original- val:Developer error missing hidden form element 'selectedPatient'
spreadsheet- ID:2928 val:Developer error missing hidden form element \'selectedPatient\'
Following constant not same:
original- val:Display the patient's current glasses
spreadsheet- ID:3088 val:Display the patient\'s current glasses
Following constant not same:
original- val:Documents - a repository of the patient's scanned/faxed paper documents. It also the place to download patient specific templates
spreadsheet- ID:3202 val:Documents - a repository of the patient\'s scanned/faxed paper documents. It also the place to download patient specific templates
Following constant not same:
original- val:Don't Save
spreadsheet- ID:3218 val:Don\'t Save
Following constant not same:
original- val:Download report as a pdf file into the browser's download folder
spreadsheet- ID:3262 val:Download report as a pdf file into the browser\'s download folder
Following constant not same:
original- val:Empty value in "Email Hours"
spreadsheet- ID:3520 val:Empty value in \"Email Hours\"
Following constant not same:
original- val:Empty value in "Email Sender"
spreadsheet- ID:3521 val:Empty value in \"Email Sender\"
Following constant not same:
original- val:Empty value in "Email Subject"
spreadsheet- ID:3522 val:Empty value in \"Email Subject\"
Following constant not same:
original- val:Empty value in "Email Text"
spreadsheet- ID:3523 val:Empty value in \"Email Text\"
Following constant not same:
original- val:Empty value in "Name of Provider"
spreadsheet- ID:3524 val:Empty value in \"Name of Provider\"
Following constant not same:
original- val:Empty value in "Password"
spreadsheet- ID:3525 val:Empty value in \"Password\"
Following constant not same:
original- val:Empty value in "SMS Hours"
spreadsheet- ID:3526 val:Empty value in \"SMS Hours\"
Following constant not same:
original- val:Empty value in "SMS Text"
spreadsheet- ID:3527 val:Empty value in \"SMS Text\"
Following constant not same:
original- val:Empty value in "Username"
spreadsheet- ID:3528 val:Empty value in \"Username\"
Following constant not same:
original- val:Enter the category data in the appropriate fields and click 'Save'. These will be used to group the ICD codes and will be displayed on the buttons in the 'Select Codes' section
spreadsheet- ID:3814 val:Enter the category data in the appropriate fields and click \'Save\'. These will be used to group the ICD codes and will be displayed on the buttons in the \'Select Codes\' section
Following constant not same:
original- val:Error in "Gender" selection
spreadsheet- ID:3883 val:Error in \"Gender\" selection
Following constant not same:
original- val:Error in "HIPAA" selection
spreadsheet- ID:3884 val:Error in \"HIPAA\" selection
Following constant not same:
original- val:Error in "Process" selection
spreadsheet- ID:3885 val:Error in \"Process\" selection
Following constant not same:
original- val:Error in "SMS Gateway" selection
spreadsheet- ID:3886 val:Error in \"SMS Gateway\" selection
Following constant not same:
original- val:Error in "Sort By" selection
spreadsheet- ID:3887 val:Error in \"Sort By\" selection
Following constant not same:
original- val:Error: passwords don't match. Please check your typing.
spreadsheet- ID:3942 val:Error: passwords don\'t match. Please check your typing.
Following constant not same:
original- val:Facility ID's
spreadsheet- ID:4161 val:Facility ID\'s
Following constant not same:
original- val:FAILURE: Couldn't create the zip
spreadsheet- ID:4196 val:FAILURE: Couldn\'t create the zip
Following constant not same:
original- val:Family history - Documents the patient's family history, an ICD10 diagnosis can be linked to the medical conditions
spreadsheet- ID:4202 val:Family history - Documents the patient\'s family history, an ICD10 diagnosis can be linked to the medical conditions
Following constant not same:
original- val:Field 'name' cannot be NULL
spreadsheet- ID:4266 val:Field \'name\' cannot be NULL
Following constant not same:
original- val:Filename must end with ".pdf"
spreadsheet- ID:4296 val:Filename must end with \".pdf\"
Following constant not same:
original- val:Fill in any missing details or edit existing information. This will be saved in the patient's demographics page in openEMR
spreadsheet- ID:4306 val:Fill in any missing details or edit existing information. This will be saved in the patient\'s demographics page in openEMR
Following constant not same:
original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form.
spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form.
Following constant not same:
original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form.
spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form.
Following constant not same:
original- val:For each issue type there is a list of commonly selected titles which are customizable for your clinic's specific needs
spreadsheet- ID:4444 val:For each issue type there is a list of commonly selected titles which are customizable for your clinic\'s specific needs
Following constant not same:
original- val:For example: Privacy_Agreement.txt becomes "Privacy Agreement" button in Patient Documents.
spreadsheet- ID:4450 val:For example: Privacy_Agreement.txt becomes \"Privacy Agreement\" button in Patient Documents.
Following constant not same:
original- val:Go to Administration > Lists. Select 'Fee Sheet' from the dropdown box
spreadsheet- ID:4738 val:Go to Administration > Lists. Select \'Fee Sheet\' from the dropdown box
Following constant not same:
original- val:Go to Adminstration > Lists and select 'Code Types' from the dropdown box. Use either ICD 9 or ICD 10, inactivate ICD 9 and select 'No' in the last dropdown box under ICD 10
spreadsheet- ID:4740 val:Go to Adminstration > Lists and select \'Code Types\' from the dropdown box. Use either ICD 9 or ICD 10, inactivate ICD 9 and select \'No\' in the last dropdown box under ICD 10
Following constant not same:
original- val:Group's name
spreadsheet- ID:4801 val:Group\'s name
Following constant not same:
original- val:Guardian's Name
spreadsheet- ID:4817 val:Guardian\'s Name
Following constant not same:
original- val:History - patient's past medical history, family history, personal history
spreadsheet- ID:4961 val:History - patient\'s past medical history, family history, personal history
Following constant not same:
original- val:If a field's Data Col = 0 the data field will immediately follow its label field on the same line
spreadsheet- ID:5096 val:If a field\'s Data Col = 0 the data field will immediately follow its label field on the same line
Following constant not same:
original- val:If a field's Label Col = 0 the label will immediately follow the previous data field in the Order sequence, on the same line as the Data field.
spreadsheet- ID:5097 val:If a field\'s Label Col = 0 the label will immediately follow the previous data field in the Order sequence, on the same line as the Data field.
Following constant not same:
original- val:If a field's Label Col = 1 the label field will go to a new line unless the previous field's total column values (Label + Data) is less than number of Layout columns from Group Properties or Layout Properties.
spreadsheet- ID:5098 val:If a field\'s Label Col = 1 the label field will go to a new line unless the previous field\'s total column values (Label + Data) is less than number of Layout columns from Group Properties or Layout Properties.
Following constant not same:
original- val:If the csv file has been uploaded, then click on the "Import holiday events" button. NOTE that clicking on the button will remove all the existing rows in the calendar_external table
spreadsheet- ID:5129 val:If the csv file has been uploaded, then click on the \"Import holiday events\" button. NOTE that clicking on the button will remove all the existing rows in the calendar_external table
Following constant not same:
original- val:If the message is forwarded it will show up in the active messages list of the user to whom the message was forwarded and disappear from the current user's active messages list
spreadsheet- ID:5135 val:If the message is forwarded it will show up in the active messages list of the user to whom the message was forwarded and disappear from the current user\'s active messages list
Following constant not same:
original- val:If you choose to do a manual entry click the 'Invoice Search' radio button. It displays two sections 'Post Item' and 'Invoice Search'
spreadsheet- ID:5165 val:If you choose to do a manual entry click the \'Invoice Search\' radio button. It displays two sections \'Post Item\' and \'Invoice Search\'
Following constant not same:
original- val:If you choose to integrate lab results with the patient's record then some preliminary setup has to be performed
spreadsheet- ID:5166 val:If you choose to integrate lab results with the patient\'s record then some preliminary setup has to be performed
Following constant not same:
original- val:If you click on any user in the 'User Memberships' section you will now see these newly created group (ARO) in the 'Inactive' column. These can now be assigned in the usual fashion as needed.
spreadsheet- ID:5167 val:If you click on any user in the \'User Memberships\' section you will now see these newly created group (ARO) in the \'Inactive\' column. These can now be assigned in the usual fashion as needed.
Following constant not same:
original- val:If you click on the edit icon next to this newly created group (ARO) you will note that the 'Active' column contains only a single entry - Placeholder (Maintains empty ACLs). As yet this new group (ARO) has NO access to any part of the program as there are no ACOs assigned in the 'Active' column.
spreadsheet- ID:5168 val:If you click on the edit icon next to this newly created group (ARO) you will note that the \'Active\' column contains only a single entry - Placeholder (Maintains empty ACLs). As yet this new group (ARO) has NO access to any part of the program as there are no ACOs assigned in the \'Active\' column.
Following constant not same:
original- val:If you have already filled the calendar_external table, then click on "Synchronize" button to have the holidays in the calendar view. NOTE that clicking on the button will remove all the existing items in the calendar view related to holidays
spreadsheet- ID:5180 val:If you have already filled the calendar_external table, then click on \"Synchronize\" button to have the holidays in the calendar view. NOTE that clicking on the button will remove all the existing items in the calendar view related to holidays
Following constant not same:
original- val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the 'Process ERA File' button at the bottom of the page. This will produce a new window with a detailed report.
spreadsheet- ID:5183 val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the \'Process ERA File\' button at the bottom of the page. This will produce a new window with a detailed report.
Following constant not same:
original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc.
spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc.
Following constant not same:
original- val:In the 'Post Item' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done.
spreadsheet- ID:5304 val:In the \'Post Item\' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done.
Following constant not same:
original- val:Integrating lab results into a patient's chart in openEMR can be done manually i.e. both ordering tests and uploading the received results or electronically
spreadsheet- ID:5506 val:Integrating lab results into a patient\'s chart in openEMR can be done manually i.e. both ordering tests and uploading the received results or electronically
Following constant not same:
original- val:Internal error: encounter '
spreadsheet- ID:5526 val:Internal error: encounter \'
Following constant not same:
original- val:Invalid source designation "
spreadsheet- ID:5574 val:Invalid source designation \"
Following constant not same:
original- val:Issues - summarizes the patient's medical problems, allergies, medications, surgeries and dental issues
spreadsheet- ID:5681 val:Issues - summarizes the patient\'s medical problems, allergies, medications, surgeries and dental issues
Following constant not same:
original- val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in 'Select Codes'
spreadsheet- ID:5787 val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in \'Select Codes\'
Following constant not same:
original- val:k, here's the rest
spreadsheet- ID:5791 val:k, here\'s the rest
Following constant not same:
original- val:Lets you delete a line or row. Hit 'Refresh' and the line will have a strikethrough across it
spreadsheet- ID:6016 val:Lets you delete a line or row. Hit \'Refresh\' and the line will have a strikethrough across it
Following constant not same:
original- val:Lifestyle - lists the patient's use of Tobacco, Coffee, Alcohol, Recreational Drugs etc
spreadsheet- ID:6044 val:Lifestyle - lists the patient\'s use of Tobacco, Coffee, Alcohol, Recreational Drugs etc
Following constant not same:
original- val:Make sure "
spreadsheet- ID:6241 val:Make sure \"
Following constant not same:
original- val:Medical Problems - will show the patient's medical issues, Issues > Medical Problems
spreadsheet- ID:6374 val:Medical Problems - will show the patient\'s medical issues, Issues > Medical Problems
Following constant not same:
original- val:Mother's Name
spreadsheet- ID:6623 val:Mother\'s Name
Following constant not same:
original- val:Move the individual items from 'Active' to 'Inactive' or vice-versa by selecting the items and pressing the relevant button with the double chevron.
spreadsheet- ID:6632 val:Move the individual items from \'Active\' to \'Inactive\' or vice-versa by selecting the items and pressing the relevant button with the double chevron.
Following constant not same:
original- val:Note there is no 'Save' button.
spreadsheet- ID:7245 val:Note there is no \'Save\' button.
Following constant not same:
original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example '<i>file.jpg</i>' will become '<i>file.jpg.1</i>'. Filenames are considered unique per patient, not per category.
spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'<i>file.jpg</i>\' will become \'<i>file.jpg.1</i>\'. Filenames are considered unique per patient, not per category.
Following constant not same:
original- val:NPI - Enter the Provider's unique 10-digit National Provider Identifier or NPI identification number
spreadsheet- ID:7312 val:NPI - Enter the Provider\'s unique 10-digit National Provider Identifier or NPI identification number
Following constant not same:
original- val:Once this is done the shared secret key that is unique for each user should only exist in OpenEMR and on the user's authenticator app
spreadsheet- ID:7460 val:Once this is done the shared secret key that is unique for each user should only exist in OpenEMR and on the user\'s authenticator app
Following constant not same:
original- val:Participant's name
spreadsheet- ID:7787 val:Participant\'s name
Following constant not same:
original- val:Passwords Don't match!
spreadsheet- ID:7824 val:Passwords Don\'t match!
Following constant not same:
original- val:Patient's number
spreadsheet- ID:8055 val:Patient\'s number
Following constant not same:
original- val:Pay attention to the "Done with" checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
spreadsheet- ID:8068 val:Pay attention to the \"Done with\" checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
Following constant not same:
original- val:Pay attention to the 'Done with' checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
spreadsheet- ID:8069 val:Pay attention to the \'Done with\' checkboxes. After the insurances are marked complete then we will start asking the patient to pay the remaining balance; if you fail to mark all of the insurances complete then the remaining amount will not be collected! Also if there is a balance that the patient should pay, then set the due date appropriately, as this will affect the language that appears on patient statements.
Following constant not same:
original- val:Please enter at least the item's name
spreadsheet- ID:8347 val:Please enter at least the item\'s name
Following constant not same:
original- val:Please enter at least the track's name
spreadsheet- ID:8348 val:Please enter at least the track\'s name
Following constant not same:
original- val:Please select a Primary Business Entity facility with 'Tax ID' as your facility Tax ID. If you are an individual practitioner, use your tax id. This is used for identifying you in the NewCrop system.
spreadsheet- ID:8406 val:Please select a Primary Business Entity facility with \'Tax ID\' as your facility Tax ID. If you are an individual practitioner, use your tax id. This is used for identifying you in the NewCrop system.
Following constant not same:
original- val:Received messages are processed and a new Patient Note is delivered to a specified user and appears in that user's Message Center
spreadsheet- ID:9107 val:Received messages are processed and a new Patient Note is delivered to a specified user and appears in that user\'s Message Center
Following constant not same:
original- val:Report - Generates and downloads the patient's Continuity of Care Record (CCR), Continuity of Care Document (CCD) and Patient Report
spreadsheet- ID:9368 val:Report - Generates and downloads the patient\'s Continuity of Care Record (CCR), Continuity of Care Document (CCD) and Patient Report
Following constant not same:
original- val:Reports consisting of various portions of the patient's medical record can be created here
spreadsheet- ID:9391 val:Reports consisting of various portions of the patient\'s medical record can be created here
Following constant not same:
original- val:Select 'Price Levels' and enter Credit Card and Cash
spreadsheet- ID:9845 val:Select \'Price Levels\' and enter Credit Card and Cash
Following constant not same:
original- val:Select the appropriate radio button. Enter the search term in the search box and click 'Search'
spreadsheet- ID:9951 val:Select the appropriate radio button. Enter the search term in the search box and click \'Search\'
Following constant not same:
original- val:Set which radio button is selected by default in 'Search for Additional Codes' section
spreadsheet- ID:10120 val:Set which radio button is selected by default in \'Search for Additional Codes\' section
Following constant not same:
original- val:SMART apps that display on the patient summary page can be enabled or disabled from this screen. Any OAUTH2 client requesting the 'launch' scope will allow EMR users to launch an app from within the EHR.
spreadsheet- ID:10329 val:SMART apps that display on the patient summary page can be enabled or disabled from this screen. Any OAUTH2 client requesting the \'launch\' scope will allow EMR users to launch an app from within the EHR.
Following constant not same:
original- val:Start by clicking the Browse button and selecting the file to upload, and then clicking 'Upload' to perform the upload and display the corresponding invoices. In this case the other parameters mentioned above do not apply and will be ignored. Uploading saves the file but does not yet process its contents -- that is done separately as described below.
spreadsheet- ID:10548 val:Start by clicking the Browse button and selecting the file to upload, and then clicking \'Upload\' to perform the upload and display the corresponding invoices. In this case the other parameters mentioned above do not apply and will be ignored. Uploading saves the file but does not yet process its contents -- that is done separately as described below.
Following constant not same:
original- val:The 'Clear' button will remove all annotations.
spreadsheet- ID:10954 val:The \'Clear\' button will remove all annotations.
Following constant not same:
original- val:The 'Edit' window is divided into two columns, 'Active' and 'Inactive'. The groups (AROs) that are listed in the active column are those groups that the user belongs to.
spreadsheet- ID:10955 val:The \'Edit\' window is divided into two columns, \'Active\' and \'Inactive\'. The groups (AROs) that are listed in the active column are those groups that the user belongs to.
Following constant not same:
original- val:The 'Select Codes' section will now have all the CPT and ICD codes that you entered grouped under the categories that you had decided upon
spreadsheet- ID:10956 val:The \'Select Codes\' section will now have all the CPT and ICD codes that you entered grouped under the categories that you had decided upon
Following constant not same:
original- val:The advantage of integrating the results with the patient's chart as structured data is the ability to manipulate it to see trends in one convenient location, to plot graphs with the data and use it in data analysis
spreadsheet- ID:10966 val:The advantage of integrating the results with the patient\'s chart as structured data is the ability to manipulate it to see trends in one convenient location, to plot graphs with the data and use it in data analysis
Following constant not same:
original- val:The advantage of scanning the results into the chart is simplicity - no setup is required other than defining a directory/folder in the patient's chart under Documents where the result will be stored. Being unstructured data it does not have the above advantages and will not fulfill Meaningful Use criteria for Computerized Provider Order Entry (CPOE)
spreadsheet- ID:10967 val:The advantage of scanning the results into the chart is simplicity - no setup is required other than defining a directory/folder in the patient\'s chart under Documents where the result will be stored. Being unstructured data it does not have the above advantages and will not fulfill Meaningful Use criteria for Computerized Provider Order Entry (CPOE)
Following constant not same:
original- val:The custmomized Fee Sheet can be used. If and when you come across a code that is not there in the custom 'Select Codes' section you can always use the 'Search for Additional Codes' section
spreadsheet- ID:11007 val:The custmomized Fee Sheet can be used. If and when you come across a code that is not there in the custom \'Select Codes\' section you can always use the \'Search for Additional Codes\' section
Following constant not same: